i210: Add additional PCI-ID to the i210 driver

When the i210 MACPHY is operated in the SERDES Backplane mode (which
depends on the programmed firmware image), its PCI-ID will be 0x1537.
This does however not change the programming interface for the MAC
address.
Therefore add this new PCI-ID to the driver so that the MAC address can
be programmed in this operation mode as well.

Change-Id: I608535202c49e40690381c2b2ab26322d62cfb37
Signed-off-by: Werner Zeh <werner.zeh@siemens.com>
Reviewed-on: https://review.coreboot.org/26683
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Mario Scheithauer <mario.scheithauer@siemens.com>
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
This commit is contained in:
Werner Zeh 2018-05-30 07:05:26 +02:00 committed by Martin Roth
parent ecb4491899
commit 7731932937
1 changed files with 1 additions and 1 deletions

View File

@ -234,7 +234,7 @@ static struct device_operations i210_ops = {
.ops_pci = 0, .ops_pci = 0,
}; };
static const unsigned short i210_device_ids[] = { 0x1538, 0x1533, 0 }; static const unsigned short i210_device_ids[] = { 0x1537, 0x1538, 0x1533, 0 };
static const struct pci_driver i210_driver __pci_driver = { static const struct pci_driver i210_driver __pci_driver = {
.ops = &i210_ops, .ops = &i210_ops,