diff options
author | Alan Huang <alan-huang@quanta.corp-partner.google.com> | 2021-11-10 10:59:13 +0800 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-12-03 15:49:02 +0000 |
commit | 769994cbf6cf1f136e00f8371c704a38c2e27e63 (patch) | |
tree | 1ceb4693751227d7a6a330502a86340ac489ac39 /src/drivers | |
parent | fc69b9d5efd2df202d6fe21f1e2c1abda1e6dbfa (diff) |
drivers/net/r8168: Add support for Realtek RT8125
The Realtek RT8168 and RT8125 have a similar programming interface,
therefore add the PCI device ID for the RT8125 into driver for support.
BUG=b:193750191
TEST=emerge-brask coreboot chromeos-bootimage. Test on brask whose NIC
is RT8125. Check if the default MAC is written into the NIC.
Signed-off-by: Alan Huang <alan-huang@quanta.corp-partner.google.com>
Change-Id: Iaa4c41f94fd6e5fd6393abbb30bfc22a149f5d71
Reviewed-on: https://review.coreboot.org/c/coreboot/+/59086
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Zhuohao Lee <zhuohao@google.com>
Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
Diffstat (limited to 'src/drivers')
-rw-r--r-- | src/drivers/net/r8168.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/drivers/net/r8168.c b/src/drivers/net/r8168.c index 18e2aff7c5..5606859489 100644 --- a/src/drivers/net/r8168.c +++ b/src/drivers/net/r8168.c @@ -17,6 +17,7 @@ #include <device/pci.h> #include <device/pci_ops.h> #include <device/pci_def.h> +#include <device/pci_ids.h> #include <delay.h> #include <fmap.h> #include <types.h> @@ -360,10 +361,16 @@ static struct device_operations r8168_ops = { #endif }; +static const unsigned short pci_device_ids[] = { + PCI_DEVICE_ID_REALTEK_8168, + PCI_DEVICE_ID_REALTEK_8125, + 0 +}; + static const struct pci_driver r8168_driver __pci_driver = { .ops = &r8168_ops, - .vendor = 0x10ec, - .device = 0x8168, + .vendor = PCI_VENDOR_ID_REALTEK, + .devices = pci_device_ids, }; struct chip_operations drivers_net_ops = { |