Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef _LMC_H_ |
| 2 | #define _LMC_H_ |
| 3 | |
| 4 | #include "lmc_var.h" |
| 5 | |
| 6 | /* |
| 7 | * prototypes for everyone |
| 8 | */ |
| 9 | int lmc_probe(struct net_device * dev); |
| 10 | unsigned lmc_mii_readreg(lmc_softc_t * const sc, unsigned |
| 11 | devaddr, unsigned regno); |
| 12 | void lmc_mii_writereg(lmc_softc_t * const sc, unsigned devaddr, |
| 13 | unsigned regno, unsigned data); |
Krzysztof Hałasa | 867240f | 2008-07-03 00:39:46 +0200 | [diff] [blame] | 14 | void lmc_led_on(lmc_softc_t * const, u32); |
| 15 | void lmc_led_off(lmc_softc_t * const, u32); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | unsigned lmc_mii_readreg(lmc_softc_t * const, unsigned, unsigned); |
| 17 | void lmc_mii_writereg(lmc_softc_t * const, unsigned, unsigned, unsigned); |
Krzysztof Hałasa | 867240f | 2008-07-03 00:39:46 +0200 | [diff] [blame] | 18 | void lmc_gpio_mkinput(lmc_softc_t * const sc, u32 bits); |
| 19 | void lmc_gpio_mkoutput(lmc_softc_t * const sc, u32 bits); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | |
| 21 | int lmc_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd); |
| 22 | |
| 23 | extern lmc_media_t lmc_ds3_media; |
| 24 | extern lmc_media_t lmc_ssi_media; |
| 25 | extern lmc_media_t lmc_t1_media; |
| 26 | extern lmc_media_t lmc_hssi_media; |
| 27 | |
| 28 | #ifdef _DBG_EVENTLOG |
Krzysztof Hałasa | 867240f | 2008-07-03 00:39:46 +0200 | [diff] [blame] | 29 | static void lmcEventLog(u32 EventNum, u32 arg2, u32 arg3); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #endif |
| 31 | |
| 32 | #endif |