#ifndef MARVELLMDIO_INC #define MARVELLMDIO_INC #define NWAY_FD100 (1<<8) #define NWAY_HD100 (1<<7) #define NWAY_FD10 (1<<6) #define NWAY_HD10 (1<<5) #define NWAY_AUTO (1<<0) #include /*Called once at the begining of time */ void EmacMdioInit(u32 macbase, u32 phy_address, u32 *PhyState, u32 cpufreq,int verbose); /*Called every 10 mili Seconds, returns TRUE if there has been a mode change */ int EmacMdioTic(u32 macbase,u32 *PhyState); /*Called to set Phy mode */ void EmacMdioSetPhyMode(u32 macbase,u32 *PhyState,u32 PhyMode); /*Calls to retreive info after a mode change! */ int EmacMdioGetDuplex(u32 macbase,u32 *PhyState); /*Get The Duplex info */ int EmacMdioGetSpeed(u32 macbase,u32 *PhyState); /*Get the Speed Info */ int EmacMdioGetPhyNum(u32 macbase,u32 *PhyState); /*Get The Phy Number */ int EmacMdioGetLinked(u32 macbase,u32 *PhyState); /*Get The Phy Linked State*/ void EmacMdioLinkChange(u32 macbase,u32 *PhyState); /*Used to report a link change event!*/ /* Added these routines to access the Marvell MII registers... */ int marvell_phy_read (u32 macbase, u32 phyAddr, u32 regAddr); void marvell_phy_write (u32 macbase, u32 phyAddr, u32 regAddr, u16 data); /* Added these routines to access the Marvell MII registers */ #ifdef CONFIG_MIPS_AR5W01 /* EmacMdioProbe is called to probe for Marvell switch and determine the board type */ int EmacMdioProbe(u32 macbase, u32 cpufreq); #endif #endif