summaryrefslogtreecommitdiffstats
path: root/src/soc/intel/braswell/acpi/irqroute.asl
blob: e30b173a9f96793c5bd47146528a5b4d0458740f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

/* 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
		})
	}
}