xref: /illumos-gate/usr/src/cmd/mdb/common/modules/genunix/devinfo.h (revision e386d4dde2e66dfdb5d0ac143d970d0a77af2786)
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 /*
2326947304SEvan Yan  * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
247c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
25*e386d4ddSRobert Mustacchi  * Copyright 2019, Joyent, Inc.
267c478bd9Sstevel@tonic-gate  */
277c478bd9Sstevel@tonic-gate 
287c478bd9Sstevel@tonic-gate #ifndef	_DEVINFO_H
297c478bd9Sstevel@tonic-gate #define	_DEVINFO_H
307c478bd9Sstevel@tonic-gate 
317c478bd9Sstevel@tonic-gate #ifdef	__cplusplus
327c478bd9Sstevel@tonic-gate extern "C" {
337c478bd9Sstevel@tonic-gate #endif
347c478bd9Sstevel@tonic-gate 
357c478bd9Sstevel@tonic-gate #include <mdb/mdb_modapi.h>
367c478bd9Sstevel@tonic-gate 
3726947304SEvan Yan /*
3826947304SEvan Yan  * Options for prtconf/devinfo/hotplug dcmd.
3926947304SEvan Yan  */
4026947304SEvan Yan #define	DEVINFO_VERBOSE		0x1
4126947304SEvan Yan #define	DEVINFO_PARENT		0x2
4226947304SEvan Yan #define	DEVINFO_CHILD		0x4
4326947304SEvan Yan #define	DEVINFO_ALLBOLD		0x8
4426947304SEvan Yan #define	DEVINFO_SUMMARY		0x10
4526947304SEvan Yan #define	DEVINFO_HP_PHYSICAL	0x20
4620c06695SRobert Mustacchi #define	DEVINFO_PIPE		0x40
47*e386d4ddSRobert Mustacchi #define	DEVINFO_DRIVER		0x80
4826947304SEvan Yan 
4926947304SEvan Yan typedef struct devinfo_cb_data {
5026947304SEvan Yan 	uintptr_t	di_base;
5126947304SEvan Yan 	uint_t		di_flags;
5220c06695SRobert Mustacchi 	char		*di_filter;
53*e386d4ddSRobert Mustacchi 	uint64_t	di_instance;
5426947304SEvan Yan } devinfo_cb_data_t;
5526947304SEvan Yan 
567c478bd9Sstevel@tonic-gate extern int devinfo_walk_init(mdb_walk_state_t *);
577c478bd9Sstevel@tonic-gate extern int devinfo_walk_step(mdb_walk_state_t *);
587c478bd9Sstevel@tonic-gate extern void devinfo_walk_fini(mdb_walk_state_t *);
597c478bd9Sstevel@tonic-gate 
607c478bd9Sstevel@tonic-gate extern int devinfo_parents_walk_init(mdb_walk_state_t *);
617c478bd9Sstevel@tonic-gate extern int devinfo_parents_walk_step(mdb_walk_state_t *);
627c478bd9Sstevel@tonic-gate extern void devinfo_parents_walk_fini(mdb_walk_state_t *);
637c478bd9Sstevel@tonic-gate 
647c478bd9Sstevel@tonic-gate extern int devinfo_children_walk_init(mdb_walk_state_t *);
657c478bd9Sstevel@tonic-gate extern int devinfo_children_walk_step(mdb_walk_state_t *);
667c478bd9Sstevel@tonic-gate extern void devinfo_children_walk_fini(mdb_walk_state_t *);
677c478bd9Sstevel@tonic-gate 
687c478bd9Sstevel@tonic-gate extern int devinfo2driver(uintptr_t, uint_t, int, const mdb_arg_t *);
697c478bd9Sstevel@tonic-gate 
707c478bd9Sstevel@tonic-gate extern int devnames_walk_init(mdb_walk_state_t *);
717c478bd9Sstevel@tonic-gate extern int devnames_walk_step(mdb_walk_state_t *);
727c478bd9Sstevel@tonic-gate extern void devnames_walk_fini(mdb_walk_state_t *);
737c478bd9Sstevel@tonic-gate 
747c478bd9Sstevel@tonic-gate extern int devinfo_siblings_walk_init(mdb_walk_state_t *);
757c478bd9Sstevel@tonic-gate extern int devinfo_siblings_walk_step(mdb_walk_state_t *);
767c478bd9Sstevel@tonic-gate 
777c478bd9Sstevel@tonic-gate extern int devi_next_walk_step(mdb_walk_state_t *);
787c478bd9Sstevel@tonic-gate 
797c478bd9Sstevel@tonic-gate extern int prtconf(uintptr_t, uint_t, int, const mdb_arg_t *);
807c478bd9Sstevel@tonic-gate extern int devinfo(uintptr_t, uint_t, int, const mdb_arg_t *);
817c478bd9Sstevel@tonic-gate extern int modctl2devinfo(uintptr_t, uint_t, int, const mdb_arg_t *);
827c478bd9Sstevel@tonic-gate extern int devnames(uintptr_t, uint_t, int, const mdb_arg_t *);
837c478bd9Sstevel@tonic-gate extern int devbindings(uintptr_t, uint_t, int, const mdb_arg_t *);
847c478bd9Sstevel@tonic-gate extern int name2major(uintptr_t, uint_t, int, const mdb_arg_t *);
857c478bd9Sstevel@tonic-gate extern int major2name(uintptr_t, uint_t, int, const mdb_arg_t *);
867c478bd9Sstevel@tonic-gate extern int major2snode(uintptr_t, uint_t, int, const mdb_arg_t *);
877c478bd9Sstevel@tonic-gate extern int dev2major(uintptr_t, uint_t, int, const mdb_arg_t *);
887c478bd9Sstevel@tonic-gate extern int dev2minor(uintptr_t, uint_t, int, const mdb_arg_t *);
897c478bd9Sstevel@tonic-gate extern int dev2snode(uintptr_t, uint_t, int, const mdb_arg_t *);
907c478bd9Sstevel@tonic-gate extern int devt(uintptr_t, uint_t, int, const mdb_arg_t *);
917c478bd9Sstevel@tonic-gate extern int softstate(uintptr_t, uint_t, int, const mdb_arg_t *);
927c478bd9Sstevel@tonic-gate extern int devinfo_fm(uintptr_t, uint_t, int, const mdb_arg_t *);
937c478bd9Sstevel@tonic-gate extern int devinfo_fmce(uintptr_t, uint_t, int, const mdb_arg_t *);
94*e386d4ddSRobert Mustacchi extern int devinfo2bus(uintptr_t, uint_t, int, const mdb_arg_t *);
957c478bd9Sstevel@tonic-gate 
967c478bd9Sstevel@tonic-gate extern int soft_state_walk_init(mdb_walk_state_t *);
977c478bd9Sstevel@tonic-gate extern int soft_state_walk_step(mdb_walk_state_t *);
987c478bd9Sstevel@tonic-gate extern int soft_state_all_walk_step(mdb_walk_state_t *);
997c478bd9Sstevel@tonic-gate extern void soft_state_walk_fini(mdb_walk_state_t *);
1007c478bd9Sstevel@tonic-gate 
1017c478bd9Sstevel@tonic-gate extern int devinfo_fmc_walk_init(mdb_walk_state_t *);
1027c478bd9Sstevel@tonic-gate extern int devinfo_fmc_walk_step(mdb_walk_state_t *);
1037c478bd9Sstevel@tonic-gate 
1047c478bd9Sstevel@tonic-gate extern int binding_hash_walk_init(mdb_walk_state_t *);
1057c478bd9Sstevel@tonic-gate extern int binding_hash_walk_step(mdb_walk_state_t *);
1067c478bd9Sstevel@tonic-gate extern void binding_hash_walk_fini(mdb_walk_state_t *);
1077c478bd9Sstevel@tonic-gate extern int binding_hash_entry(uintptr_t, uint_t, int, const mdb_arg_t *);
1087c478bd9Sstevel@tonic-gate 
1097c478bd9Sstevel@tonic-gate extern int devinfo_audit(uintptr_t, uint_t, int, const mdb_arg_t *);
1107c478bd9Sstevel@tonic-gate 
1117c478bd9Sstevel@tonic-gate extern int devinfo_audit_log_walk_init(mdb_walk_state_t *);
1127c478bd9Sstevel@tonic-gate extern int devinfo_audit_log_walk_step(mdb_walk_state_t *);
1137c478bd9Sstevel@tonic-gate extern void devinfo_audit_log_walk_fini(mdb_walk_state_t *);
1147c478bd9Sstevel@tonic-gate extern int devinfo_audit_log(uintptr_t, uint_t, int, const mdb_arg_t *);
1157c478bd9Sstevel@tonic-gate 
1167c478bd9Sstevel@tonic-gate extern int devinfo_audit_node_walk_init(mdb_walk_state_t *);
1177c478bd9Sstevel@tonic-gate extern int devinfo_audit_node_walk_step(mdb_walk_state_t *);
1187c478bd9Sstevel@tonic-gate extern void devinfo_audit_node_walk_fini(mdb_walk_state_t *);
1197c478bd9Sstevel@tonic-gate extern int devinfo_audit_node(uintptr_t, uint_t, int, const mdb_arg_t *);
1207c478bd9Sstevel@tonic-gate 
1217c478bd9Sstevel@tonic-gate extern int minornode_walk_init(mdb_walk_state_t *);
1227c478bd9Sstevel@tonic-gate extern int minornode_walk_step(mdb_walk_state_t *);
1237c478bd9Sstevel@tonic-gate extern int minornodes(uintptr_t, uint_t, int, const mdb_arg_t *);
1247c478bd9Sstevel@tonic-gate 
1257c478bd9Sstevel@tonic-gate extern void prtconf_help(void);
1267c478bd9Sstevel@tonic-gate extern void devinfo_help(void);
127*e386d4ddSRobert Mustacchi extern void devinfo2bus_help(void);
1287c478bd9Sstevel@tonic-gate 
1297c478bd9Sstevel@tonic-gate #ifdef	__cplusplus
1307c478bd9Sstevel@tonic-gate }
1317c478bd9Sstevel@tonic-gate #endif
1327c478bd9Sstevel@tonic-gate 
1337c478bd9Sstevel@tonic-gate #endif	/* _DEVINFO_H */
134