aboutsummaryrefslogtreecommitdiff
path: root/util/autoport
diff options
context:
space:
mode:
authorDan Elkouby <streetwalkermc@gmail.com>2018-03-24 21:15:08 +0300
committerPatrick Georgi <pgeorgi@google.com>2018-04-16 08:33:43 +0000
commit3781e1fda9427a1f4258c1d52780161699117bbb (patch)
tree331092d42628c1c365daed147429f00568b43a29 /util/autoport
parentf8d13d565819f975bfd6d4fb03fc04e6ecf198d2 (diff)
autoport: add missing PCI IDs
As seen on ASUS P8Z77-V Pro Change-Id: I9fce9a35174b5120f67c2345a0807db1b843eb48 Signed-off-by: Dan Elkouby <streetwalkermc@gmail.com> Reviewed-on: https://review.coreboot.org/25661 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Rudolph <siro@das-labor.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'util/autoport')
-rw-r--r--util/autoport/bd82x6x.go12
1 files changed, 7 insertions, 5 deletions
diff --git a/util/autoport/bd82x6x.go b/util/autoport/bd82x6x.go
index 26c8b91b82..31f7ced273 100644
--- a/util/autoport/bd82x6x.go
+++ b/util/autoport/bd82x6x.go
@@ -433,11 +433,12 @@ func init() {
/* PCIe bridge */
for _, id := range []uint16{
- 0x0151, 0x1c10, 0x1c12, 0x1c14,
- 0x1c16, 0x1c18, 0x1c1a, 0x1c1c,
- 0x1c1e, 0x1e10, 0x1e12, 0x1e14,
- 0x1e16, 0x1e18, 0x1e1a, 0x1e1c,
- 0x1e1e, 0x1e25, 0x244e, 0x2448,
+ 0x0151, 0x0155, 0x1c10, 0x1c12,
+ 0x1c14, 0x1c16, 0x1c18, 0x1c1a,
+ 0x1c1c, 0x1c1e, 0x1e10, 0x1e12,
+ 0x1e14, 0x1e16, 0x1e18, 0x1e1a,
+ 0x1e1c, 0x1e1e, 0x1e25, 0x244e,
+ 0x2448,
} {
RegisterPCI(0x8086, id, GenericPCI{})
}
@@ -474,5 +475,6 @@ func init() {
/* Ethernet */
RegisterPCI(0x8086, 0x1502, GenericPCI{})
+ RegisterPCI(0x8086, 0x1503, GenericPCI{})
}