aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/baytrail/acpi/irqroute.asl
blob: e1adaabf2950eaa72842c2fc0dbd3ebdd254474f (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/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
		})
	}
}