aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/baytrail/acpi/irqroute.asl
blob: 41c660f71bd21f9b9320b5df1d07ad645aefb379 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* SPDX-License-Identifier: GPL-2.0-only */

/* PCI Interrupt Routing */
Method(_PRT)
{
	If (PICM) {
		Return (Package() {
			#undef PIC_MODE
			#include <soc/intel/baytrail/acpi/irq_helper.h>
			PCI_DEV_PIRQ_ROUTES
		})
	} Else {
		Return (Package() {
			#define PIC_MODE
			#include <soc/intel/baytrail/acpi/irq_helper.h>
			PCI_DEV_PIRQ_ROUTES
		})
	}
}