nb/intel: Add Ivy Bridge Server (Xeon-E3v2) PCI IDs
Change-Id: I1899dbe9498a0cc83b65b4bc1c6c0a555637fd05 Signed-off-by: Vagiz Tarkhanov <rakkin@autistici.org> Reviewed-on: https://review.coreboot.org/21753 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de>
This commit is contained in:
parent
c06a3f72f8
commit
1dd448c0cf
|
@ -98,6 +98,7 @@ static void sandybridge_setup_graphics(void)
|
||||||
case 0x0156: /* IvyBridge */
|
case 0x0156: /* IvyBridge */
|
||||||
case 0x0162: /* IvyBridge */
|
case 0x0162: /* IvyBridge */
|
||||||
case 0x0166: /* IvyBridge */
|
case 0x0166: /* IvyBridge */
|
||||||
|
case 0x016a: /* IvyBridge */
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
printk(BIOS_DEBUG, "Graphics not supported by this CPU/chipset.\n");
|
printk(BIOS_DEBUG, "Graphics not supported by this CPU/chipset.\n");
|
||||||
|
|
|
@ -271,6 +271,7 @@ u32 map_oprom_vendev(u32 vendev)
|
||||||
case 0x80860156: /* IVB GT1 Mobile */
|
case 0x80860156: /* IVB GT1 Mobile */
|
||||||
case 0x80860162: /* IVB GT2 Desktop */
|
case 0x80860162: /* IVB GT2 Desktop */
|
||||||
case 0x80860166: /* IVB GT2 Mobile */
|
case 0x80860166: /* IVB GT2 Mobile */
|
||||||
|
case 0x8086016a: /* IVB GT2 Server */
|
||||||
new_vendev = 0x80860106;/* SNB GT1 Mobile */
|
new_vendev = 0x80860106;/* SNB GT1 Mobile */
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -756,7 +757,7 @@ static struct device_operations gma_func0_ops = {
|
||||||
|
|
||||||
static const unsigned short pci_device_ids[] = { 0x0102, 0x0106, 0x010a, 0x0112,
|
static const unsigned short pci_device_ids[] = { 0x0102, 0x0106, 0x010a, 0x0112,
|
||||||
0x0116, 0x0122, 0x0126, 0x0156,
|
0x0116, 0x0122, 0x0126, 0x0156,
|
||||||
0x0166, 0x0162, 0x0152,
|
0x0166, 0x0162, 0x016a, 0x0152,
|
||||||
0 };
|
0 };
|
||||||
|
|
||||||
static const struct pci_driver gma __pci_driver = {
|
static const struct pci_driver gma __pci_driver = {
|
||||||
|
|
|
@ -517,6 +517,12 @@ static const struct pci_driver mc_driver_1 __pci_driver = {
|
||||||
.device = 0x0154, /* Ivy bridge */
|
.device = 0x0154, /* Ivy bridge */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static const struct pci_driver mc_driver_158 __pci_driver = {
|
||||||
|
.ops = &mc_ops,
|
||||||
|
.vendor = PCI_VENDOR_ID_INTEL,
|
||||||
|
.device = 0x0158, /* Ivy bridge */
|
||||||
|
};
|
||||||
|
|
||||||
static void cpu_bus_init(device_t dev)
|
static void cpu_bus_init(device_t dev)
|
||||||
{
|
{
|
||||||
initialize_cpus(dev->link_list);
|
initialize_cpus(dev->link_list);
|
||||||
|
|
Loading…
Reference in New Issue