1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-19 10:53:58 +00:00

Add NEC uPD72873.

Submitted by: Christian Laursen <xi@borderworlds.dk>
This commit is contained in:
Hidetoshi Shimokawa 2004-01-30 14:30:19 +00:00
parent b180671ce4
commit dbc80c7bf2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=125239
2 changed files with 5 additions and 0 deletions

View File

@ -95,6 +95,10 @@ fwohci_pci_probe( device_t dev )
device_set_desc(dev, "NEC uPD72870");
return 0;
}
if (id == (FW_VENDORID_NEC | FW_DEVICE_UPD72873)) {
device_set_desc(dev, "NEC uPD72873");
return 0;
}
if (id == (FW_VENDORID_NEC | FW_DEVICE_UPD72874)) {
device_set_desc(dev, "NEC uPD72874");
return 0;

View File

@ -47,6 +47,7 @@
#define FW_DEVICE_UPD861 (0x0063 << 16)
#define FW_DEVICE_UPD871 (0x00ce << 16)
#define FW_DEVICE_UPD72870 (0x00cd << 16)
#define FW_DEVICE_UPD72873 (0x00e7 << 16)
#define FW_DEVICE_UPD72874 (0x00f2 << 16)
#define FW_DEVICE_TITSB22 (0x8009 << 16)
#define FW_DEVICE_TITSB23 (0x8019 << 16)