blob: 41c660f71bd21f9b9320b5df1d07ad645aefb379 [file] [log] [blame]
Angel Ponsc3f58f62020-04-05 15:46:41 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Aaron Durbin3bde3d72013-11-04 21:45:52 -06002
Angel Pons26b49cc2020-07-07 17:17:51 +02003/* PCI Interrupt Routing */
Aaron Durbin3bde3d72013-11-04 21:45:52 -06004Method(_PRT)
5{
6 If (PICM) {
7 Return (Package() {
8 #undef PIC_MODE
9 #include <soc/intel/baytrail/acpi/irq_helper.h>
10 PCI_DEV_PIRQ_ROUTES
11 })
12 } Else {
13 Return (Package() {
14 #define PIC_MODE
15 #include <soc/intel/baytrail/acpi/irq_helper.h>
16 PCI_DEV_PIRQ_ROUTES
17 })
18 }
19}