coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
amd_pci_int_types.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef AMD_PCI_INT_TYPES_H
4 #define AMD_PCI_INT_TYPES_H
5 
6 const char *intr_types[] = {
7  [0x00] = "INTA#\t", "INTB#\t", "INTC#\t", "INTD#\t", "INTE#\t", "INTF#\t", "INTG#\t", "INTH#\t",
8  [0x08] = "Misc\t", "Misc0\t", "Misc1\t", "Misc2\t", "Ser IRQ INTA", "Ser IRQ INTB", "Ser IRQ INTC", "Ser IRQ INTD",
9  [0x10] = "SCI\t", "SMBUS0\t", "ASF\t", "HDA\t", "FC\t\t", "GEC\t", "PerMon\t", "SD\t\t",
10  [0x20] = "IMC INT0\t", "IMC INT1\t", "IMC INT2\t", "IMC INT3\t", "IMC INT4\t", "IMC INT5\t",
11  [0x30] = "Dev18.0 INTA", "Dev18.2 INTB", "Dev19.0 INTA", "Dev19.2 INTB", "Dev22.0 INTA", "Dev22.2 INTB", "Dev20.5 INTC",
12  [0x7F] = "RSVD\t",
13 #if CONFIG(SOUTHBRIDGE_AMD_PI_AVALON)
14  [0x40] = "RSVD\t", "SATA\t",
15  [0x60] = "RSVD\t", "RSVD\t", "GPIO\t",
16 #elif CONFIG(SOUTHBRIDGE_AMD_PI_KERN)
17  [0x40] = "IDE\t", "SATA\t",
18  [0x50] = "GPPInt0\t", "GPPInt1\t", "GPPInt2\t", "GPPInt3\t",
19  [0x62] = "GPIO\t",
20  [0x70] = "I2C0\t", "I2C1\t", "I2C2\t","I2C3\t", "UART0\t", "UART1\t",
21 #endif
22 };
23 
24 #endif /* AMD_PCI_INT_TYPES_H */
const char * intr_types[]