repo.or.cz
/
coreboot.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
mb/system76/cml-u/dt: Make use of chipset devicetree
[coreboot.git]
/
src
/
soc
/
intel
/
braswell
/
acpi
/
irqroute.asl
blob
eddf0b5facec9b148bf63f86cc64ac65e6a64bc8
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
3
/* PCI Interrupt Routing */
4
Method(_PRT)
5
{
6
If (PICM) {
7
Return (Package() {
8
#undef PIC_MODE
9
#include <soc/intel/braswell/acpi/irq_helper.h>
10
PCI_DEV_PIRQ_ROUTES
11
})
12
} Else {
13
Return (Package() {
14
#define PIC_MODE
15
#include <soc/intel/braswell/acpi/irq_helper.h>
16
PCI_DEV_PIRQ_ROUTES
17
})
18
}
19
}