diff options
| author | Markus Klotzbuecher <[email protected]> | 2006-07-12 08:48:24 +0200 |
|---|---|---|
| committer | Markus Klotzbuecher <[email protected]> | 2006-07-12 08:48:24 +0200 |
| commit | b02d0177c1ef5be98576dade8f1cd0aed063bae5 (patch) | |
| tree | eb85c7bbb240a27e79018b11696a9e9e8748a6f3 /cpu/mpc8xx/fec.c | |
| parent | 87791f3bf2bad751054c98c390e2a0265036de1c (diff) | |
Support for spc1920 board.
Patch by Markus Klotzbuecher, 12 Jul 2006
Diffstat (limited to 'cpu/mpc8xx/fec.c')
| -rw-r--r-- | cpu/mpc8xx/fec.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cpu/mpc8xx/fec.c b/cpu/mpc8xx/fec.c index 6006478f97c..21c9070d21f 100644 --- a/cpu/mpc8xx/fec.c +++ b/cpu/mpc8xx/fec.c @@ -822,6 +822,7 @@ static void fec_halt(struct eth_device* dev) #define PHY_ID_LSI80225 0x0016f870 /* LSI 80225 */ #define PHY_ID_LSI80225B 0x0016f880 /* LSI 80225/B */ #define PHY_ID_DM9161 0x0181B880 /* Davicom DM9161 */ +#define PHY_ID_KSM8995M 0x00221450 /* MICREL KS8995MA */ /* send command to phy using mii, wait for result */ static uint @@ -907,6 +908,9 @@ static int mii_discover_phy(struct eth_device *dev) case PHY_ID_DM9161: printf("Davicom DM9161\n"); break; + case PHY_ID_KSM8995M: + printf("MICREL KS8995M\n"); + break; default: printf("0x%08x\n", phytype); break; |
