tree: drop last paragraph of GPL copyright header
[coreboot.git] / src / mainboard / lenovo / t60 / acpi / i945_pci_irqs.asl
blobf0d76db435ea70cfc501cca9b4804591d98a84da
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2011 Sven Schnelle <svens@stackframe.org>
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License as
8  * published by the Free Software Foundation; version 2 of
9  * the License.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  */
17 /* This is board specific information: IRQ routing for the
18  * i945
19  */
22 // PCI Interrupt Routing
23 Method(_PRT)
25         If (PICM) {
26                 Return (Package() {
27                         Package() { 0x0002ffff, 0, 0, 0x10 }, // VGA
28                         Package() { 0x001bffff, 1, 0, 0x11 }, // Audio
29                         Package() { 0x001cffff, 0, 0, 0x14 }, // PCI bridge
30                         Package() { 0x001cffff, 1, 0, 0x15 }, // PCI bridge
31                         Package() { 0x001cffff, 2, 0, 0x16 }, // PCI bridge
32                         Package() { 0x001cffff, 3, 0, 0x17 }, // PCI bridge
33                         Package() { 0x001dffff, 0, 0, 0x10 }, // USB
34                         Package() { 0x001dffff, 1, 0, 0x11 }, // USB
35                         Package() { 0x001dffff, 2, 0, 0x12 }, // USB
36                         Package() { 0x001dffff, 3, 0, 0x13 }, // USB
37                         Package() { 0x001fffff, 0, 0, 0x17 }, // LPC
38                         Package() { 0x001fffff, 1, 0, 0x10 }, // IDE
39                         Package() { 0x001fffff, 2, 0, 0x10 }  // SATA
40                 })
41         } Else {
42                 Return (Package() {
43                         Package() { 0x0002ffff, 0, \_SB.PCI0.LPCB.LNKA, 0 }, // VGA
44                         Package() { 0x001bffff, 1, \_SB.PCI0.LPCB.LNKB, 0 }, // Audio
45                         Package() { 0x001cffff, 0, \_SB.PCI0.LPCB.LNKE, 0 }, // PCI
46                         Package() { 0x001cffff, 1, \_SB.PCI0.LPCB.LNKF, 0 }, // PCI
47                         Package() { 0x001cffff, 2, \_SB.PCI0.LPCB.LNKG, 0 }, // PCI
48                         Package() { 0x001cffff, 3, \_SB.PCI0.LPCB.LNKH, 0 }, // PCI
49                         Package() { 0x001dffff, 0, \_SB.PCI0.LPCB.LNKA, 0 }, // USB
50                         Package() { 0x001dffff, 1, \_SB.PCI0.LPCB.LNKB, 0 }, // USB
51                         Package() { 0x001dffff, 2, \_SB.PCI0.LPCB.LNKC, 0 }, // USB
52                         Package() { 0x001dffff, 3, \_SB.PCI0.LPCB.LNKD, 0 }, // USB
53                         Package() { 0x001fffff, 0, \_SB.PCI0.LPCB.LNKH, 0 }, // LPC
54                         Package() { 0x001fffff, 1, \_SB.PCI0.LPCB.LNKA, 0 }, // IDE
55                         Package() { 0x001fffff, 2, \_SB.PCI0.LPCB.LNKA, 0 }  // SATA
56                 })
57         }