aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/braswell/acpi/irqroute.asl
blob: eddf0b5facec9b148bf63f86cc64ac65e6a64bc8 (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/braswell/acpi/irq_helper.h>
			PCI_DEV_PIRQ_ROUTES
		})
	} Else {
		Return (Package() {
			#define PIC_MODE
			#include <soc/intel/braswell/acpi/irq_helper.h>
			PCI_DEV_PIRQ_ROUTES
		})
	}
}