Jonathan Kollasch has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/38865 )
Change subject: nb/intel/sandybridge: Add Xeon E3-1200 (v1) hostbridge PCI ID ......................................................................
nb/intel/sandybridge: Add Xeon E3-1200 (v1) hostbridge PCI ID
Change-Id: I70187d09ecdaa8149299cdd8f6f8fc9517b05e15 Signed-off-by: Jonathan A. Kollasch jakllsch@kollasch.net --- M src/northbridge/intel/sandybridge/northbridge.c 1 file changed, 6 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/65/38865/1
diff --git a/src/northbridge/intel/sandybridge/northbridge.c b/src/northbridge/intel/sandybridge/northbridge.c index a9b1c25..d679eaa 100644 --- a/src/northbridge/intel/sandybridge/northbridge.c +++ b/src/northbridge/intel/sandybridge/northbridge.c @@ -472,6 +472,12 @@ .device = 0x0104, /* Sandy bridge */ };
+static const struct pci_driver mc_driver_108 __pci_driver = { + .ops = &mc_ops, + .vendor = PCI_VENDOR_ID_INTEL, + .device = 0x0108, /* Sandy bridge */ +}; + static const struct pci_driver mc_driver_150 __pci_driver = { .ops = &mc_ops, .vendor = PCI_VENDOR_ID_INTEL,
Hello Patrick Rudolph, build bot (Jenkins),
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/38865
to look at the new patch set (#2).
Change subject: nb/intel/sandybridge: Add Xeon E3-1200 (v1) hostbridge PCI ID ......................................................................
nb/intel/sandybridge: Add Xeon E3-1200 (v1) hostbridge PCI ID
Change-Id: I70187d09ecdaa8149299cdd8f6f8fc9517b05e15 Signed-off-by: Jonathan A. Kollasch jakllsch@kollasch.net --- M src/northbridge/intel/sandybridge/northbridge.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/65/38865/2
Paul Menzel has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/38865 )
Change subject: nb/intel/sandybridge: Add Xeon E3-1200 (v1) hostbridge PCI ID ......................................................................
Patch Set 2: Code-Review+1
Patrick Rudolph has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/38865 )
Change subject: nb/intel/sandybridge: Add Xeon E3-1200 (v1) hostbridge PCI ID ......................................................................
Patch Set 2: Code-Review+2
Angel Pons has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/38865 )
Change subject: nb/intel/sandybridge: Add Xeon E3-1200 (v1) hostbridge PCI ID ......................................................................
Patch Set 2: Code-Review+1
(1 comment)
You probably want to re-upload this so that the build bot verifies it. While you're at it, there's a minor thing.
https://review.coreboot.org/c/coreboot/+/38865/2/src/northbridge/intel/sandy... File src/northbridge/intel/sandybridge/northbridge.c:
https://review.coreboot.org/c/coreboot/+/38865/2/src/northbridge/intel/sandy... PS2, Line 464: That's a tab, should be a space.
Hello Patrick Rudolph, Angel Pons, Paul Menzel, build bot (Jenkins),
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/38865
to look at the new patch set (#3).
Change subject: nb/intel/sandybridge: Add Xeon E3-1200 (v1) hostbridge PCI ID ......................................................................
nb/intel/sandybridge: Add Xeon E3-1200 (v1) hostbridge PCI ID
Change-Id: I70187d09ecdaa8149299cdd8f6f8fc9517b05e15 Signed-off-by: Jonathan A. Kollasch jakllsch@kollasch.net --- M src/northbridge/intel/sandybridge/northbridge.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/65/38865/3
Patrick Georgi has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/38865 )
Change subject: nb/intel/sandybridge: Add Xeon E3-1200 (v1) hostbridge PCI ID ......................................................................
Patch Set 3: Code-Review+2
Patrick Georgi has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/38865 )
Change subject: nb/intel/sandybridge: Add Xeon E3-1200 (v1) hostbridge PCI ID ......................................................................
Patch Set 3:
(1 comment)
https://review.coreboot.org/c/coreboot/+/38865/2/src/northbridge/intel/sandy... File src/northbridge/intel/sandybridge/northbridge.c:
https://review.coreboot.org/c/coreboot/+/38865/2/src/northbridge/intel/sandy... PS2, Line 464:
That's a tab, should be a space.
Done
Patrick Georgi has submitted this change. ( https://review.coreboot.org/c/coreboot/+/38865 )
Change subject: nb/intel/sandybridge: Add Xeon E3-1200 (v1) hostbridge PCI ID ......................................................................
nb/intel/sandybridge: Add Xeon E3-1200 (v1) hostbridge PCI ID
Change-Id: I70187d09ecdaa8149299cdd8f6f8fc9517b05e15 Signed-off-by: Jonathan A. Kollasch jakllsch@kollasch.net Reviewed-on: https://review.coreboot.org/c/coreboot/+/38865 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Patrick Georgi pgeorgi@google.com --- M src/northbridge/intel/sandybridge/northbridge.c 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: build bot (Jenkins): Verified Patrick Georgi: Looks good to me, approved
diff --git a/src/northbridge/intel/sandybridge/northbridge.c b/src/northbridge/intel/sandybridge/northbridge.c index 68f8411..cc8a62c 100644 --- a/src/northbridge/intel/sandybridge/northbridge.c +++ b/src/northbridge/intel/sandybridge/northbridge.c @@ -461,7 +461,7 @@ };
static const unsigned short pci_device_ids[] = { - 0x0100, 0x0104, /* Sandy Bridge */ + 0x0100, 0x0104, 0x0108, /* Sandy Bridge */ 0x0150, 0x0154, 0x0158, /* Ivy Bridge */ 0 };