1 /* 2 * CDDL HEADER START 3 * 4 * The contents of this file are subject to the terms of the 5 * Common Development and Distribution License (the "License"). 6 * You may not use this file except in compliance with the License. 7 * 8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9 * or http://www.opensolaris.org/os/licensing. 10 * See the License for the specific language governing permissions 11 * and limitations under the License. 12 * 13 * When distributing Covered Code, include this CDDL HEADER in each 14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15 * If applicable, add the following below this CDDL HEADER, with the 16 * fields enclosed by brackets "[]" replaced with your own identifying 17 * information: Portions Copyright [yyyy] [name of copyright owner] 18 * 19 * CDDL HEADER END 20 */ 21 /* 22 * Copyright 2008 Sun Microsystems, Inc. All rights reserved. 23 * Use is subject to license terms. 24 */ 25 26 #ifndef _SYS_INSTANCE_H 27 #define _SYS_INSTANCE_H 28 29 #pragma ident "%Z%%M% %I% %E% SMI" 30 31 /* 32 * Instance number assignment data structures 33 */ 34 35 #include <sys/types.h> 36 #include <sys/param.h> 37 #include <sys/dditypes.h> 38 39 #ifdef __cplusplus 40 extern "C" { 41 #endif 42 43 #define INSTANCE_FILE "/etc/path_to_inst" 44 #define INSTANCE_FILE_SUFFIX ".old" 45 46 #if defined(_KERNEL) || defined(_KMEMUSER) 47 48 /* 49 * The form of a node; These form a tree that is parallel to the 50 * dev_info tree, but always fully populated. The tree is rooted in 51 * the in_softstate struct (e_ddi_inst_state.ins_root). 52 * 53 * Each node has one or more in_drv entries hanging from it. 54 * (It will have more than one if it has been driven by more than one driver 55 * over its lifetime. This can happen due to a generic name 56 * or to a "compatible" name giving a more specific driver). 57 */ 58 59 typedef struct in_node { 60 char *in_node_name; /* devi_node_name of this node */ 61 char *in_unit_addr; /* address part of name */ 62 struct in_node *in_child; /* children of this node */ 63 struct in_node *in_sibling; /* "peers" of this node */ 64 struct in_drv *in_drivers; /* drivers bound to this node */ 65 struct in_node *in_parent; /* parent of this node */ 66 } in_node_t; 67 68 typedef struct in_drv { 69 char *ind_driver_name; /* canonical name of driver */ 70 int ind_instance; /* current instance number */ 71 int ind_state; /* see below */ 72 /* 73 * The following field is used to link instance numbers for the 74 * same driver off of devnamesp or in_no_major or in_no_instance 75 */ 76 struct in_drv *ind_next; /* next for this driver */ 77 struct in_drv *ind_next_drv; /* next driver this node */ 78 struct in_node *ind_node; /* node that these hang on */ 79 } in_drv_t; 80 81 /* 82 * Values for in_state 83 */ 84 #define IN_PROVISIONAL 0x1 /* provisional instance number assigned */ 85 #define IN_PERMANENT 0x2 /* instance number has been confirmed */ 86 #define IN_UNKNOWN 0x3 /* instance number not yet assigned */ 87 88 /* 89 * special value for dn_instance 90 */ 91 #define IN_SEARCHME (-1) 92 93 #endif /* defined(_KERNEL) || defined(_KMEMUSER) */ 94 95 #ifdef _KERNEL 96 void e_ddi_instance_init(void); 97 uint_t e_ddi_assign_instance(dev_info_t *dip); 98 void e_ddi_keep_instance(dev_info_t *dip); 99 void e_ddi_free_instance(dev_info_t *dip, char *addr); 100 int e_ddi_instance_majorinstance_to_path(major_t major, 101 uint_t instance, char *path); 102 void e_ddi_unorphan_instance_nos(void); 103 void e_ddi_enter_instance(void); 104 void e_ddi_exit_instance(void); 105 in_node_t *e_ddi_instance_root(void); 106 int e_ddi_instance_is_clean(void); 107 void e_ddi_instance_set_clean(void); 108 109 /* Platform instance override functions */ 110 uint_t impl_assign_instance(dev_info_t *dip); 111 int impl_keep_instance(dev_info_t *dip); 112 int impl_free_instance(dev_info_t *dip); 113 114 /* walk the instance tree */ 115 int e_ddi_walk_instances(int (*)(const char *, 116 in_node_t *, in_drv_t *, void *), void *); 117 118 /* return values from e_ddi_walk_instances callback */ 119 #define INST_WALK_CONTINUE 0 120 #define INST_WALK_TERMINATE 1 121 122 123 #else /* _KERNEL */ 124 #ifdef __STDC__ 125 extern int inst_sync(char *pathname, int flags); 126 #else 127 extern int inst_sync(); 128 #endif /* __STDC__ */ 129 #endif /* _KERNEL */ 130 131 #define INST_SYNC_IF_REQUIRED 0 132 #define INST_SYNC_ALWAYS 1 133 134 #ifdef __cplusplus 135 } 136 #endif 137 138 #endif /* _SYS_INSTANCE_H */ 139