diff options
author | Wim Vervoorn <wvervoorn@eltan.com> | 2019-12-13 11:03:25 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-12-17 13:16:21 +0000 |
commit | f4b9ec67842fa169134d87e3e236c1f8525b8cdc (patch) | |
tree | fccf7fdcfbfb5aae02b68cac91d29f1e082ee157 | |
parent | 542919f3707916d00c5a0f4b414e8415b400264a (diff) |
soc/intel/skylake: Add irq 11 to the LNK* _PRS
The _PRS for the LNK* items don't contain irq 11. So this is not
supposed to be used.
Add irq 11 to the list as there is no reason not to allow this.
BUG=N/A
TEST=tested on facebook monolith
Change-Id: I634d0ea8506a5e93359c652f74131231f5c13b02
Signed-off-by: Wim Vervoorn <wvervoorn@eltan.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/37690
Reviewed-by: Frans Hendriks <fhendriks@eltan.com>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r-- | src/soc/intel/skylake/acpi/irqlinks.asl | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/soc/intel/skylake/acpi/irqlinks.asl b/src/soc/intel/skylake/acpi/irqlinks.asl index 1dd50ba2f7..b83c1cb84c 100644 --- a/src/soc/intel/skylake/acpi/irqlinks.asl +++ b/src/soc/intel/skylake/acpi/irqlinks.asl @@ -51,7 +51,7 @@ Device (LNKA) Name (_PRS, ResourceTemplate () { IRQ (Level, ActiveLow, Shared) - { 3, 4, 5, 6, 10, 12, 14, 15 } + { 3, 4, 5, 6, 10, 11, 12, 14, 15 } }) Method (_CRS, 0, Serialized) @@ -100,7 +100,7 @@ Device (LNKB) Name (_PRS, ResourceTemplate () { IRQ (Level, ActiveLow, Shared) - { 3, 4, 5, 6, 10, 12, 14, 15 } + { 3, 4, 5, 6, 10, 11, 12, 14, 15 } }) Method (_CRS, 0, Serialized) @@ -149,7 +149,7 @@ Device (LNKC) Name (_PRS, ResourceTemplate () { IRQ (Level, ActiveLow, Shared) - { 3, 4, 5, 6, 10, 12, 14, 15 } + { 3, 4, 5, 6, 10, 11, 12, 14, 15 } }) Method (_CRS, 0, Serialized) @@ -198,7 +198,7 @@ Device (LNKD) Name (_PRS, ResourceTemplate () { IRQ (Level, ActiveLow, Shared) - { 3, 4, 5, 6, 10, 12, 14, 15 } + { 3, 4, 5, 6, 10, 11, 12, 14, 15 } }) Method (_CRS, 0, Serialized) @@ -247,7 +247,7 @@ Device (LNKE) Name (_PRS, ResourceTemplate () { IRQ (Level, ActiveLow, Shared) - { 3, 4, 5, 6, 10, 12, 14, 15 } + { 3, 4, 5, 6, 10, 11, 12, 14, 15 } }) Method (_CRS, 0, Serialized) @@ -296,7 +296,7 @@ Device (LNKF) Name (_PRS, ResourceTemplate () { IRQ (Level, ActiveLow, Shared) - { 3, 4, 5, 6, 10, 12, 14, 15 } + { 3, 4, 5, 6, 10, 11, 12, 14, 15 } }) Method (_CRS, 0, Serialized) @@ -345,7 +345,7 @@ Device (LNKG) Name (_PRS, ResourceTemplate () { IRQ (Level, ActiveLow, Shared) - { 3, 4, 5, 6, 10, 12, 14, 15 } + { 3, 4, 5, 6, 10, 11, 12, 14, 15 } }) Method (_CRS, 0, Serialized) @@ -394,7 +394,7 @@ Device (LNKH) Name (_PRS, ResourceTemplate () { IRQ (Level, ActiveLow, Shared) - { 3, 4, 5, 6, 10, 12, 14, 15 } + { 3, 4, 5, 6, 10, 11, 12, 14, 15 } }) Method (_CRS, 0, Serialized) |