uppc.c revision abf601c9b581ed63a268ad83f92233cd0885090a
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2006 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
#include <stddef.h>
#include <sys/mdb_modapi.h>
#include <mdb/mdb_ks.h>
#include <sys/modctl.h>
#include <sys/avintr.h>
#include <sys/psm_common.h>
#include <sys/pic.h>
static struct av_head avec_tbl[256];
static uint16_t shared_tbl[MAX_ISA_IRQ + 1];
/*
* Option usage
*/
#define INTR_DISPLAY_DRVR_INST 0x1 /* -d option */
#define INTR_DISPLAY_INTRSTAT 0x2 /* -i option */
int option_flags;
void
interrupt_help(void)
{
mdb_printf("Prints the interrupt usage on the system.\n"
"By default, only interrupt service routine names are printed.\n\n"
"Switches:\n"
" -d instead of ISR, print <driver_name><instance#>\n"
" -i show like intrstat, cpu# ISR/<driver_name><instance#>\n");
}
static char *
interrupt_print_bus(uintptr_t dip_addr)
{
char bind_name[MODMAXNAMELEN + 1];
struct dev_info dev_info;
if (mdb_vread(&dev_info, sizeof (dev_info), dip_addr) == -1) {
mdb_warn("failed to read child dip");
return ("-");
}
while (dev_info.devi_parent != 0) {
if (mdb_vread(&dev_info, sizeof (dev_info),
(uintptr_t)dev_info.devi_parent) == -1)
break;
(void) mdb_readstr(bind_name, sizeof (bind_name),
(uintptr_t)dev_info.devi_binding_name);
if (strcmp(bind_name, "isa") == 0)
return ("ISA");
else if (strcmp(bind_name, "pci") == 0 ||
strcmp(bind_name, "npe") == 0)
return ("PCI");
}
return ("-");
}
static void
interrupt_print_isr(struct autovec avhp)
{
char driver_name[MODMAXNAMELEN + 1];
uintptr_t dip_addr = (uintptr_t)avhp.av_dip;
struct dev_info dev_info;
if (option_flags & INTR_DISPLAY_DRVR_INST) {
if (dip_addr && mdb_devinfo2driver(dip_addr, driver_name,
sizeof (driver_name)) == 0) {
(void) mdb_vread(&dev_info, sizeof (dev_info),
dip_addr);
mdb_printf("%s#%d", driver_name,
dev_info.devi_instance);
} else
mdb_printf("%a", avhp.av_vector);
} else
mdb_printf("%a", avhp.av_vector);
}
/*
* uppc_interrupt_dump:
* Dump uppc(7d) interrupt information.
*/
/* ARGSUSED */
int
uppc_interrupt_dump(uintptr_t addr, uint_t flags, int argc,
const mdb_arg_t *argv)
{
int i, share_cnt;
boolean_t found = B_FALSE;
struct autovec avhp;
option_flags = 0;
if (mdb_getopts(argc, argv,
'd', MDB_OPT_SETBITS, INTR_DISPLAY_DRVR_INST, &option_flags,
'i', MDB_OPT_SETBITS, INTR_DISPLAY_INTRSTAT, &option_flags,
NULL) != argc)
return (DCMD_USAGE);
if (mdb_readvar(&avec_tbl, "autovect") == -1) {
mdb_warn("failed to read autovect");
return (DCMD_ERR);
}
if (mdb_readvar(&shared_tbl, "uppc_irq_shared_table") == -1) {
mdb_warn("failed to read uppc_irq_shared_table");
return (DCMD_ERR);
}
/*
* All x86 systems load uppc(7d) by default.
* Now, this becomes interesting on APIC based systems.
* 'interrupts' dcmd is supported by both the .so modules
* So, uppc(7d) needs to be unloaded somehow on APIC based systems
* Here a check for shared_tbl[i] and returning NULL takes care of that
*/
for (i = 0; i < MAX_ISA_IRQ + 1; i++)
if (shared_tbl[i]) {
found = B_TRUE;
break;
}
if (found == B_FALSE) {
if (mdb_lookup_by_obj("pcplusmp", "apic_irq_table",
NULL) == 0) {
return (mdb_call_dcmd("pcplusmp`interrupts",
addr, flags, argc, argv));
}
}
/* Print the header first */
if (option_flags & INTR_DISPLAY_INTRSTAT)
mdb_printf("%<u>CPU\t ");
else
mdb_printf("%<u>IRQ Vector IPL(lo/hi) Bus Share ");
mdb_printf("%s %</u>\n", option_flags & INTR_DISPLAY_DRVR_INST ?
"Driver Name(s)" : "ISR(s)");
/* Walk all the entries */
for (i = 0; i < MAX_ISA_IRQ + 1; i++) {
/* Read the entry, if invalid continue */
if (mdb_vread(&avhp, sizeof (struct autovec),
(uintptr_t)avec_tbl[i].avh_link) == -1)
continue;
/* Print each interrupt entry */
share_cnt = shared_tbl[i];
if (option_flags & INTR_DISPLAY_INTRSTAT)
mdb_printf("cpu0\t");
else
mdb_printf("%3d 0x%2x %4d/%-2d %-4s %3d ",
i, i + PIC_VECTBASE, avec_tbl[i].avh_lo_pri,
avec_tbl[i].avh_hi_pri, avhp.av_dip ?
interrupt_print_bus((uintptr_t)avhp.av_dip) : " - ",
share_cnt);
if (share_cnt)
interrupt_print_isr(avhp);
while (share_cnt-- > 0) {
if (mdb_vread(&avhp, sizeof (struct autovec),
(uintptr_t)avhp.av_link) != -1) {
mdb_printf(", ");
interrupt_print_isr(avhp);
}
}
mdb_printf("\n");
}
return (DCMD_OK);
}
/*
* MDB module linkage information:
*/
static const mdb_dcmd_t dcmds[] = {
{ "interrupts", "?[-di]", "print interrupts", uppc_interrupt_dump,
interrupt_help},
{ NULL }
};
static const mdb_modinfo_t modinfo = { MDB_API_VERSION, dcmds, NULL };
const mdb_modinfo_t *
_mdb_init(void)
{
return (&modinfo);
}