17c478bd9Sstevel@tonic-gate /* 27c478bd9Sstevel@tonic-gate * CDDL HEADER START 37c478bd9Sstevel@tonic-gate * 47c478bd9Sstevel@tonic-gate * The contents of this file are subject to the terms of the 514ef2b2fSdmick * Common Development and Distribution License (the "License"). 614ef2b2fSdmick * You may not use this file except in compliance with the License. 77c478bd9Sstevel@tonic-gate * 87c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 97c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 107c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions 117c478bd9Sstevel@tonic-gate * and limitations under the License. 127c478bd9Sstevel@tonic-gate * 137c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 147c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 157c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 167c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 177c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 187c478bd9Sstevel@tonic-gate * 197c478bd9Sstevel@tonic-gate * CDDL HEADER END 207c478bd9Sstevel@tonic-gate */ 2114ef2b2fSdmick 227c478bd9Sstevel@tonic-gate /* 23*26947304SEvan Yan * Copyright 2009 Sun Microsystems, Inc. All rights reserved. 247c478bd9Sstevel@tonic-gate * Use is subject to license terms. 257c478bd9Sstevel@tonic-gate */ 267c478bd9Sstevel@tonic-gate 277c478bd9Sstevel@tonic-gate #ifndef _DEVINFO_H 287c478bd9Sstevel@tonic-gate #define _DEVINFO_H 297c478bd9Sstevel@tonic-gate 307c478bd9Sstevel@tonic-gate #ifdef __cplusplus 317c478bd9Sstevel@tonic-gate extern "C" { 327c478bd9Sstevel@tonic-gate #endif 337c478bd9Sstevel@tonic-gate 347c478bd9Sstevel@tonic-gate #include <mdb/mdb_modapi.h> 357c478bd9Sstevel@tonic-gate 36*26947304SEvan Yan /* 37*26947304SEvan Yan * Options for prtconf/devinfo/hotplug dcmd. 38*26947304SEvan Yan */ 39*26947304SEvan Yan #define DEVINFO_VERBOSE 0x1 40*26947304SEvan Yan #define DEVINFO_PARENT 0x2 41*26947304SEvan Yan #define DEVINFO_CHILD 0x4 42*26947304SEvan Yan #define DEVINFO_ALLBOLD 0x8 43*26947304SEvan Yan #define DEVINFO_SUMMARY 0x10 44*26947304SEvan Yan #define DEVINFO_HP_PHYSICAL 0x20 45*26947304SEvan Yan 46*26947304SEvan Yan typedef struct devinfo_cb_data { 47*26947304SEvan Yan uintptr_t di_base; 48*26947304SEvan Yan uint_t di_flags; 49*26947304SEvan Yan } devinfo_cb_data_t; 50*26947304SEvan Yan 517c478bd9Sstevel@tonic-gate extern int devinfo_walk_init(mdb_walk_state_t *); 527c478bd9Sstevel@tonic-gate extern int devinfo_walk_step(mdb_walk_state_t *); 537c478bd9Sstevel@tonic-gate extern void devinfo_walk_fini(mdb_walk_state_t *); 547c478bd9Sstevel@tonic-gate 557c478bd9Sstevel@tonic-gate extern int devinfo_parents_walk_init(mdb_walk_state_t *); 567c478bd9Sstevel@tonic-gate extern int devinfo_parents_walk_step(mdb_walk_state_t *); 577c478bd9Sstevel@tonic-gate extern void devinfo_parents_walk_fini(mdb_walk_state_t *); 587c478bd9Sstevel@tonic-gate 597c478bd9Sstevel@tonic-gate extern int devinfo_children_walk_init(mdb_walk_state_t *); 607c478bd9Sstevel@tonic-gate extern int devinfo_children_walk_step(mdb_walk_state_t *); 617c478bd9Sstevel@tonic-gate extern void devinfo_children_walk_fini(mdb_walk_state_t *); 627c478bd9Sstevel@tonic-gate 637c478bd9Sstevel@tonic-gate extern int devinfo2driver(uintptr_t, uint_t, int, const mdb_arg_t *); 647c478bd9Sstevel@tonic-gate 657c478bd9Sstevel@tonic-gate extern int devnames_walk_init(mdb_walk_state_t *); 667c478bd9Sstevel@tonic-gate extern int devnames_walk_step(mdb_walk_state_t *); 677c478bd9Sstevel@tonic-gate extern void devnames_walk_fini(mdb_walk_state_t *); 687c478bd9Sstevel@tonic-gate 697c478bd9Sstevel@tonic-gate extern int devinfo_siblings_walk_init(mdb_walk_state_t *); 707c478bd9Sstevel@tonic-gate extern int devinfo_siblings_walk_step(mdb_walk_state_t *); 717c478bd9Sstevel@tonic-gate 727c478bd9Sstevel@tonic-gate extern int devi_next_walk_step(mdb_walk_state_t *); 737c478bd9Sstevel@tonic-gate 747c478bd9Sstevel@tonic-gate extern int prtconf(uintptr_t, uint_t, int, const mdb_arg_t *); 757c478bd9Sstevel@tonic-gate extern int devinfo(uintptr_t, uint_t, int, const mdb_arg_t *); 767c478bd9Sstevel@tonic-gate extern int modctl2devinfo(uintptr_t, uint_t, int, const mdb_arg_t *); 777c478bd9Sstevel@tonic-gate extern int devnames(uintptr_t, uint_t, int, const mdb_arg_t *); 787c478bd9Sstevel@tonic-gate extern int devbindings(uintptr_t, uint_t, int, const mdb_arg_t *); 797c478bd9Sstevel@tonic-gate extern int name2major(uintptr_t, uint_t, int, const mdb_arg_t *); 807c478bd9Sstevel@tonic-gate extern int major2name(uintptr_t, uint_t, int, const mdb_arg_t *); 817c478bd9Sstevel@tonic-gate extern int major2snode(uintptr_t, uint_t, int, const mdb_arg_t *); 827c478bd9Sstevel@tonic-gate extern int dev2major(uintptr_t, uint_t, int, const mdb_arg_t *); 837c478bd9Sstevel@tonic-gate extern int dev2minor(uintptr_t, uint_t, int, const mdb_arg_t *); 847c478bd9Sstevel@tonic-gate extern int dev2snode(uintptr_t, uint_t, int, const mdb_arg_t *); 857c478bd9Sstevel@tonic-gate extern int devt(uintptr_t, uint_t, int, const mdb_arg_t *); 867c478bd9Sstevel@tonic-gate extern int softstate(uintptr_t, uint_t, int, const mdb_arg_t *); 877c478bd9Sstevel@tonic-gate extern int devinfo_fm(uintptr_t, uint_t, int, const mdb_arg_t *); 887c478bd9Sstevel@tonic-gate extern int devinfo_fmce(uintptr_t, uint_t, int, const mdb_arg_t *); 897c478bd9Sstevel@tonic-gate 907c478bd9Sstevel@tonic-gate extern int soft_state_walk_init(mdb_walk_state_t *); 917c478bd9Sstevel@tonic-gate extern int soft_state_walk_step(mdb_walk_state_t *); 927c478bd9Sstevel@tonic-gate extern int soft_state_all_walk_step(mdb_walk_state_t *); 937c478bd9Sstevel@tonic-gate extern void soft_state_walk_fini(mdb_walk_state_t *); 947c478bd9Sstevel@tonic-gate 957c478bd9Sstevel@tonic-gate extern int devinfo_fmc_walk_init(mdb_walk_state_t *); 967c478bd9Sstevel@tonic-gate extern int devinfo_fmc_walk_step(mdb_walk_state_t *); 977c478bd9Sstevel@tonic-gate 987c478bd9Sstevel@tonic-gate extern int binding_hash_walk_init(mdb_walk_state_t *); 997c478bd9Sstevel@tonic-gate extern int binding_hash_walk_step(mdb_walk_state_t *); 1007c478bd9Sstevel@tonic-gate extern void binding_hash_walk_fini(mdb_walk_state_t *); 1017c478bd9Sstevel@tonic-gate extern int binding_hash_entry(uintptr_t, uint_t, int, const mdb_arg_t *); 1027c478bd9Sstevel@tonic-gate 1037c478bd9Sstevel@tonic-gate extern int devinfo_audit(uintptr_t, uint_t, int, const mdb_arg_t *); 1047c478bd9Sstevel@tonic-gate 1057c478bd9Sstevel@tonic-gate extern int devinfo_audit_log_walk_init(mdb_walk_state_t *); 1067c478bd9Sstevel@tonic-gate extern int devinfo_audit_log_walk_step(mdb_walk_state_t *); 1077c478bd9Sstevel@tonic-gate extern void devinfo_audit_log_walk_fini(mdb_walk_state_t *); 1087c478bd9Sstevel@tonic-gate extern int devinfo_audit_log(uintptr_t, uint_t, int, const mdb_arg_t *); 1097c478bd9Sstevel@tonic-gate 1107c478bd9Sstevel@tonic-gate extern int devinfo_audit_node_walk_init(mdb_walk_state_t *); 1117c478bd9Sstevel@tonic-gate extern int devinfo_audit_node_walk_step(mdb_walk_state_t *); 1127c478bd9Sstevel@tonic-gate extern void devinfo_audit_node_walk_fini(mdb_walk_state_t *); 1137c478bd9Sstevel@tonic-gate extern int devinfo_audit_node(uintptr_t, uint_t, int, const mdb_arg_t *); 1147c478bd9Sstevel@tonic-gate 1157c478bd9Sstevel@tonic-gate extern int minornode_walk_init(mdb_walk_state_t *); 1167c478bd9Sstevel@tonic-gate extern int minornode_walk_step(mdb_walk_state_t *); 1177c478bd9Sstevel@tonic-gate extern int minornodes(uintptr_t, uint_t, int, const mdb_arg_t *); 1187c478bd9Sstevel@tonic-gate 1197c478bd9Sstevel@tonic-gate extern void prtconf_help(void); 1207c478bd9Sstevel@tonic-gate extern void devinfo_help(void); 1217c478bd9Sstevel@tonic-gate 1227c478bd9Sstevel@tonic-gate #ifdef __cplusplus 1237c478bd9Sstevel@tonic-gate } 1247c478bd9Sstevel@tonic-gate #endif 1257c478bd9Sstevel@tonic-gate 1267c478bd9Sstevel@tonic-gate #endif /* _DEVINFO_H */ 127