* removed miidevs.h as it's now generated

* added brgphy.c it seems to be useful for bcm570x


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@28636 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Jérôme Duval 2008-11-12 22:21:13 +00:00
parent 86c86537bc
commit be1f32a73c
6 changed files with 7747 additions and 26 deletions

View File

@ -12,3 +12,6 @@ KernelStaticLibrary broadcom440x_mii.a
bmtphy.c bmtphy.c
; ;
ObjectHdrs [ FGristFiles bmtphy$(SUFOBJ) ]
: [ FDirName $(TARGET_COMMON_DEBUG_OBJECT_DIR) libs compat freebsd_network ] ;
Includes [ FGristFiles bmtphy.c ] : <src!libs!compat!freebsd_network>miidevs.h ;

View File

@ -1,14 +0,0 @@
#define MII_OUI_BROADCOM 0x001018
#define MII_MODEL_BROADCOM_BCM4401 0x0036
#define MII_MODEL_BROADCOM_BCM5201 0x0021
#define MII_MODEL_BROADCOM_BCM5221 0x001e
#define MII_MODEL_BROADCOM_3C905B 0x0012
#define MII_MODEL_BROADCOM_3C905C 0x0017
#define MII_STR_BROADCOM_BCM4401 "BCM4401 10/100baseTX PHY"
#define MII_STR_BROADCOM_BCM5201 "BCM5201 10/100baseTX PHY"
#define MII_STR_BROADCOM_BCM5221 "BCM5221 10/100baseTX PHY"
#define MII_STR_BROADCOM_3C905B "3c905B 10/100 internal PHY"
#define MII_STR_BROADCOM_3C905C "3c905C 10/100 internal PHY"

File diff suppressed because it is too large Load Diff

View File

@ -9,7 +9,11 @@ SubDirCcFlags [ FDefines _KERNEL=1 FBSD_DRIVER=1 ] ;
KernelStaticLibrary broadcom570x_mii.a KernelStaticLibrary broadcom570x_mii.a
: :
brgphy.c
ukphy.c ukphy.c
ukphy_subr.c ukphy_subr.c
; ;
ObjectHdrs [ FGristFiles brgphy$(SUFOBJ) ]
: [ FDirName $(TARGET_COMMON_DEBUG_OBJECT_DIR) libs compat freebsd_network ] ;
Includes [ FGristFiles brgphy.c ] : <src!libs!compat!freebsd_network>miidevs.h ;

File diff suppressed because it is too large Load Diff

View File

@ -1,12 +0,0 @@
#define MII_OUI_BROADCOM 0x001018
#define MII_MODEL_BROADCOM_3C905B 0x0012
#define MII_MODEL_BROADCOM_3C905C 0x0017
#define MII_MODEL_BROADCOM_BCM5201 0x0021
#define MII_MODEL_BROADCOM_BCM5221 0x001e
#define MII_MODEL_BROADCOM_BCM4401 0x0036
#define MII_STR_BROADCOM_3C905B "3C905B"
#define MII_STR_BROADCOM_3C905C "3C905C"
#define MII_STR_BROADCOM_BCM5201 "BCM5201"
#define MII_STR_BROADCOM_BCM5221 "BCM5221"
#define MII_STR_BROADCOM_BCM4401 "BCM4401"