blob: 8061bf7349632eea3f6823b3205f4ecb3f05f4c7 [file] [log] [blame]
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +03001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2014 Sage Electronic Engineering, LLC.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +030014 */
15
16#ifndef AMD_PCI_INT_TYPES_H
17#define AMD_PCI_INT_TYPES_H
18
Elyes HAOUAS251279c2018-07-08 12:41:56 +020019const char *intr_types[] = {
Dave Frodin9cfa7422015-01-27 07:19:48 -070020 [0x00] = "INTA#\t", "INTB#\t", "INTC#\t", "INTD#\t", "INTE#\t", "INTF#\t", "INTG#\t", "INTH#\t",
21 [0x08] = "Misc\t", "Misc0\t", "Misc1\t", "Misc2\t", "Ser IRQ INTA", "Ser IRQ INTB", "Ser IRQ INTC", "Ser IRQ INTD",
Dave Frodin4675c598a2015-02-06 07:25:11 -070022 [0x10] = "SCI\t", "SMBUS0\t", "ASF\t", "HDA\t", "FC\t\t", "GEC\t", "PerMon\t", "SD\t\t",
Dave Frodin9cfa7422015-01-27 07:19:48 -070023 [0x20] = "IMC INT0\t", "IMC INT1\t", "IMC INT2\t", "IMC INT3\t", "IMC INT4\t", "IMC INT5\t",
24 [0x30] = "Dev18.0 INTA", "Dev18.2 INTB", "Dev19.0 INTA", "Dev19.2 INTB", "Dev22.0 INTA", "Dev22.2 INTB", "Dev20.5 INTC",
Dave Frodin4675c598a2015-02-06 07:25:11 -070025 [0x7F] = "RSVD\t",
26#if IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_PI_AVALON)
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +030027 [0x40] = "RSVD\t", "SATA\t",
28 [0x60] = "RSVD\t", "RSVD\t", "GPIO\t",
Dave Frodin4675c598a2015-02-06 07:25:11 -070029#elif IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_PI_BOLTON)
30 [0x40] = "IDE\t", "SATA\t",
31 [0x50] = "GPPInt0\t", "GPPInt1\t", "GPPInt2\t", "GPPInt3\t",
WANG Siyuanf2dfef02015-05-20 14:41:01 +080032#elif IS_ENABLED(CONFIG_SOUTHBRIDGE_AMD_PI_KERN)
33 [0x40] = "IDE\t", "SATA\t",
34 [0x50] = "GPPInt0\t", "GPPInt1\t", "GPPInt2\t", "GPPInt3\t",
WANG Siyuan839d68f2015-08-18 06:22:22 +080035 [0x62] = "GPIO\t",
36 [0x70] = "I2C0\t", "I2C1\t", "I2C2\t","I2C3\t", "UART0\t", "UART1\t",
Dave Frodin9cfa7422015-01-27 07:19:48 -070037#endif
Dave Frodin4675c598a2015-02-06 07:25:11 -070038};
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +030039
40#endif /* AMD_PCI_INT_TYPES_H */