9805 i40e should read SFP data when firmware supports it
[unleashed.git] / usr / src / uts / intel / sys / prom_emul.h
blobfd5930bf34aff6e4313c4d50d84ab3bc50614e25
1 /*
2 * CDDL HEADER START
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License, Version 1.0 only
6 * (the "License"). You may not use this file except in compliance
7 * with the License.
9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 * or http://www.opensolaris.org/os/licensing.
11 * See the License for the specific language governing permissions
12 * and limitations under the License.
14 * When distributing Covered Code, include this CDDL HEADER in each
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 * If applicable, add the following below this CDDL HEADER, with the
17 * fields enclosed by brackets "[]" replaced with your own identifying
18 * information: Portions Copyright [yyyy] [name of copyright owner]
20 * CDDL HEADER END
23 * Copyright 2005 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
27 #ifndef _SYS_PROM_EMUL_H
28 #define _SYS_PROM_EMUL_H
30 #pragma ident "%Z%%M% %I% %E% SMI"
32 #ifdef __cplusplus
33 extern "C" {
34 #endif
37 * The following structure describes a property attached to a node
38 * in the in-kernel copy of the PROM device tree.
40 struct prom_prop {
41 struct prom_prop *pp_next;
42 char *pp_name;
43 int pp_len;
44 void *pp_val;
48 * The following structure describes a node in the in-kernel copy
49 * of the PROM device tree.
51 struct prom_node {
52 pnode_t pn_nodeid;
53 struct prom_prop *pn_propp;
54 struct prom_node *pn_child;
55 struct prom_node *pn_sibling;
58 typedef struct prom_node prom_node_t;
61 * These are promif emulation functions, intended only for promif use
63 extern void promif_create_device_tree(void);
65 extern pnode_t promif_findnode_byname(pnode_t n, char *name);
66 extern pnode_t promif_nextnode(pnode_t n);
67 extern pnode_t promif_childnode(pnode_t n);
69 extern int promif_getproplen(pnode_t n, char *name);
70 extern int promif_getprop(pnode_t n, char *name, void *value);
71 extern int promif_bounded_getprop(pnode_t, char *name, void *value, int len);
72 char *promif_nextprop(pnode_t n, char *previous, char *next);
75 * XXX: The following functions are unsafe and unecessary, and should be
76 * XXX: removed. OS created nodes belong in the OS copy of the device tree.
77 * XXX: The OS should not be creating nodes in the prom's device tree!
79 extern pnode_t promif_add_child(pnode_t parent, pnode_t child, char *name);
80 extern void promif_create_prop_external(pnode_t, char *name, void *, int);
82 #ifdef __cplusplus
84 #endif
86 #endif /* _SYS_PROM_EMUL_H */