summaryrefslogtreecommitdiffstats
path: root/sys/dev
diff options
context:
space:
mode:
authorwpaul <wpaul@FreeBSD.org>2000-09-21 20:01:57 +0000
committerwpaul <wpaul@FreeBSD.org>2000-09-21 20:01:57 +0000
commit61832b06a8b8016392c44f38cd2f0c50cab2e793 (patch)
tree12bb4311236a131ca4dee761c83a6339e613385e /sys/dev
parent40aced84380b37dca254a6c503c538ae5cb59e0d (diff)
downloadFreeBSD-src-61832b06a8b8016392c44f38cd2f0c50cab2e793.zip
FreeBSD-src-61832b06a8b8016392c44f38cd2f0c50cab2e793.tar.gz
Add the PCI device ID for the on-board ethernet controllers on the
Intel 815E motherboard, which I believe is an i82562. Seems to work just fine with the fxp driver.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/fxp/if_fxp.c3
-rw-r--r--sys/dev/fxp/if_fxpreg.h1
2 files changed, 4 insertions, 0 deletions
diff --git a/sys/dev/fxp/if_fxp.c b/sys/dev/fxp/if_fxp.c
index d651180..9a138f7 100644
--- a/sys/dev/fxp/if_fxp.c
+++ b/sys/dev/fxp/if_fxp.c
@@ -298,6 +298,9 @@ fxp_probe(device_t dev)
case FXP_DEVICEID_i82559ER:
device_set_desc(dev, "Intel Embedded 10/100 Ethernet");
return 0;
+ case FXP_DEVICEID_i82562:
+ device_set_desc(dev, "Intel PLC 10/100 Ethernet");
+ return 0;
default:
break;
}
diff --git a/sys/dev/fxp/if_fxpreg.h b/sys/dev/fxp/if_fxpreg.h
index 9ca2f7e..6cbcd40 100644
--- a/sys/dev/fxp/if_fxpreg.h
+++ b/sys/dev/fxp/if_fxpreg.h
@@ -31,6 +31,7 @@
#define FXP_DEVICEID_i82557 0x1229 /* 82557 - 82559 "classic" */
#define FXP_DEVICEID_i82559 0x1030 /* New 82559 device id.. */
#define FXP_DEVICEID_i82559ER 0x1209 /* 82559 for embedded applications */
+#define FXP_DEVICEID_i82562 0x2449 /* 82562 PLC devices */
#define FXP_PCI_MMBA 0x10
#define FXP_PCI_IOBA 0x14
OpenPOWER on IntegriCloud