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
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]
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"
37 * The following structure describes a property attached to a node
38 * in the in-kernel copy of the PROM device tree.
41 struct prom_prop
*pp_next
;
48 * The following structure describes a node in the in-kernel copy
49 * of the PROM device tree.
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);
86 #endif /* _SYS_PROM_EMUL_H */