| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 1 | /* | 
|  | 2 | * Copyright (c) 2008-2009 Nuvoton technology corporation. | 
|  | 3 | * | 
|  | 4 | * Wan ZongShun <mcuos.com@gmail.com> | 
|  | 5 | * | 
|  | 6 | * This program is free software; you can redistribute it and/or modify | 
|  | 7 | * it under the terms of the GNU General Public License as published by | 
|  | 8 | * the Free Software Foundation;version 2 of the License. | 
|  | 9 | * | 
|  | 10 | */ | 
|  | 11 |  | 
|  | 12 | #include <linux/module.h> | 
|  | 13 | #include <linux/init.h> | 
|  | 14 | #include <linux/mii.h> | 
|  | 15 | #include <linux/netdevice.h> | 
|  | 16 | #include <linux/etherdevice.h> | 
|  | 17 | #include <linux/skbuff.h> | 
|  | 18 | #include <linux/ethtool.h> | 
|  | 19 | #include <linux/platform_device.h> | 
|  | 20 | #include <linux/clk.h> | 
|  | 21 |  | 
|  | 22 | #define DRV_MODULE_NAME		"w90p910-emc" | 
|  | 23 | #define DRV_MODULE_VERSION	"0.1" | 
|  | 24 |  | 
|  | 25 | /* Ethernet MAC Registers */ | 
|  | 26 | #define REG_CAMCMR		0x00 | 
|  | 27 | #define REG_CAMEN		0x04 | 
|  | 28 | #define REG_CAMM_BASE		0x08 | 
|  | 29 | #define REG_CAML_BASE		0x0c | 
|  | 30 | #define REG_TXDLSA		0x88 | 
|  | 31 | #define REG_RXDLSA		0x8C | 
|  | 32 | #define REG_MCMDR		0x90 | 
|  | 33 | #define REG_MIID		0x94 | 
|  | 34 | #define REG_MIIDA		0x98 | 
|  | 35 | #define REG_FFTCR		0x9C | 
|  | 36 | #define REG_TSDR		0xa0 | 
|  | 37 | #define REG_RSDR		0xa4 | 
|  | 38 | #define REG_DMARFC		0xa8 | 
|  | 39 | #define REG_MIEN		0xac | 
|  | 40 | #define REG_MISTA		0xb0 | 
|  | 41 | #define REG_CTXDSA		0xcc | 
|  | 42 | #define REG_CTXBSA		0xd0 | 
|  | 43 | #define REG_CRXDSA		0xd4 | 
|  | 44 | #define REG_CRXBSA		0xd8 | 
|  | 45 |  | 
|  | 46 | /* mac controller bit */ | 
|  | 47 | #define MCMDR_RXON		0x01 | 
|  | 48 | #define MCMDR_ACP		(0x01 << 3) | 
|  | 49 | #define MCMDR_SPCRC		(0x01 << 5) | 
|  | 50 | #define MCMDR_TXON		(0x01 << 8) | 
|  | 51 | #define MCMDR_FDUP		(0x01 << 18) | 
|  | 52 | #define MCMDR_ENMDC		(0x01 << 19) | 
|  | 53 | #define MCMDR_OPMOD		(0x01 << 20) | 
|  | 54 | #define SWR			(0x01 << 24) | 
|  | 55 |  | 
|  | 56 | /* cam command regiser */ | 
|  | 57 | #define CAMCMR_AUP		0x01 | 
|  | 58 | #define CAMCMR_AMP		(0x01 << 1) | 
|  | 59 | #define CAMCMR_ABP		(0x01 << 2) | 
|  | 60 | #define CAMCMR_CCAM		(0x01 << 3) | 
|  | 61 | #define CAMCMR_ECMP		(0x01 << 4) | 
|  | 62 | #define CAM0EN			0x01 | 
|  | 63 |  | 
|  | 64 | /* mac mii controller bit */ | 
|  | 65 | #define MDCCR			(0x0a << 20) | 
|  | 66 | #define PHYAD			(0x01 << 8) | 
|  | 67 | #define PHYWR			(0x01 << 16) | 
|  | 68 | #define PHYBUSY			(0x01 << 17) | 
|  | 69 | #define PHYPRESP		(0x01 << 18) | 
|  | 70 | #define CAM_ENTRY_SIZE		0x08 | 
|  | 71 |  | 
|  | 72 | /* rx and tx status */ | 
|  | 73 | #define TXDS_TXCP		(0x01 << 19) | 
|  | 74 | #define RXDS_CRCE		(0x01 << 17) | 
|  | 75 | #define RXDS_PTLE		(0x01 << 19) | 
|  | 76 | #define RXDS_RXGD		(0x01 << 20) | 
|  | 77 | #define RXDS_ALIE		(0x01 << 21) | 
|  | 78 | #define RXDS_RP			(0x01 << 22) | 
|  | 79 |  | 
|  | 80 | /* mac interrupt status*/ | 
|  | 81 | #define MISTA_EXDEF		(0x01 << 19) | 
|  | 82 | #define MISTA_TXBERR		(0x01 << 24) | 
|  | 83 | #define MISTA_TDU		(0x01 << 23) | 
|  | 84 | #define MISTA_RDU		(0x01 << 10) | 
|  | 85 | #define MISTA_RXBERR		(0x01 << 11) | 
|  | 86 |  | 
|  | 87 | #define ENSTART			0x01 | 
|  | 88 | #define ENRXINTR		0x01 | 
|  | 89 | #define ENRXGD			(0x01 << 4) | 
|  | 90 | #define ENRXBERR		(0x01 << 11) | 
|  | 91 | #define ENTXINTR		(0x01 << 16) | 
|  | 92 | #define ENTXCP			(0x01 << 18) | 
|  | 93 | #define ENTXABT			(0x01 << 21) | 
|  | 94 | #define ENTXBERR		(0x01 << 24) | 
|  | 95 | #define ENMDC			(0x01 << 19) | 
|  | 96 | #define PHYBUSY			(0x01 << 17) | 
|  | 97 | #define MDCCR_VAL		0xa00000 | 
|  | 98 |  | 
|  | 99 | /* rx and tx owner bit */ | 
|  | 100 | #define RX_OWEN_DMA		(0x01 << 31) | 
|  | 101 | #define RX_OWEN_CPU		(~(0x03 << 30)) | 
|  | 102 | #define TX_OWEN_DMA		(0x01 << 31) | 
|  | 103 | #define TX_OWEN_CPU		(~(0x01 << 31)) | 
|  | 104 |  | 
|  | 105 | /* tx frame desc controller bit */ | 
|  | 106 | #define MACTXINTEN		0x04 | 
|  | 107 | #define CRCMODE			0x02 | 
|  | 108 | #define PADDINGMODE		0x01 | 
|  | 109 |  | 
|  | 110 | /* fftcr controller bit */ | 
|  | 111 | #define TXTHD 			(0x03 << 8) | 
|  | 112 | #define BLENGTH			(0x01 << 20) | 
|  | 113 |  | 
|  | 114 | /* global setting for driver */ | 
|  | 115 | #define RX_DESC_SIZE		50 | 
|  | 116 | #define TX_DESC_SIZE		10 | 
|  | 117 | #define MAX_RBUFF_SZ		0x600 | 
|  | 118 | #define MAX_TBUFF_SZ		0x600 | 
|  | 119 | #define TX_TIMEOUT		50 | 
|  | 120 | #define DELAY			1000 | 
|  | 121 | #define CAM0			0x0 | 
|  | 122 |  | 
|  | 123 | static int w90p910_mdio_read(struct net_device *dev, int phy_id, int reg); | 
|  | 124 |  | 
|  | 125 | struct w90p910_rxbd { | 
|  | 126 | unsigned int sl; | 
|  | 127 | unsigned int buffer; | 
|  | 128 | unsigned int reserved; | 
|  | 129 | unsigned int next; | 
|  | 130 | }; | 
|  | 131 |  | 
|  | 132 | struct w90p910_txbd { | 
|  | 133 | unsigned int mode; | 
|  | 134 | unsigned int buffer; | 
|  | 135 | unsigned int sl; | 
|  | 136 | unsigned int next; | 
|  | 137 | }; | 
|  | 138 |  | 
|  | 139 | struct recv_pdesc { | 
|  | 140 | struct w90p910_rxbd desclist[RX_DESC_SIZE]; | 
|  | 141 | char recv_buf[RX_DESC_SIZE][MAX_RBUFF_SZ]; | 
|  | 142 | }; | 
|  | 143 |  | 
|  | 144 | struct tran_pdesc { | 
|  | 145 | struct w90p910_txbd desclist[TX_DESC_SIZE]; | 
| Wan ZongShun | 1e5053b | 2009-08-09 03:06:19 +0000 | [diff] [blame] | 146 | char tran_buf[TX_DESC_SIZE][MAX_TBUFF_SZ]; | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 147 | }; | 
|  | 148 |  | 
|  | 149 | struct  w90p910_ether { | 
|  | 150 | struct recv_pdesc *rdesc; | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 151 | struct tran_pdesc *tdesc; | 
| Wan ZongShun | 1e5053b | 2009-08-09 03:06:19 +0000 | [diff] [blame] | 152 | dma_addr_t rdesc_phys; | 
|  | 153 | dma_addr_t tdesc_phys; | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 154 | struct net_device_stats stats; | 
|  | 155 | struct platform_device *pdev; | 
| Wan ZongShun | 1e5053b | 2009-08-09 03:06:19 +0000 | [diff] [blame] | 156 | struct resource *res; | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 157 | struct sk_buff *skb; | 
|  | 158 | struct clk *clk; | 
|  | 159 | struct clk *rmiiclk; | 
|  | 160 | struct mii_if_info mii; | 
|  | 161 | struct timer_list check_timer; | 
|  | 162 | void __iomem *reg; | 
| Wan ZongShun | ddb1417 | 2009-11-11 04:35:22 +0000 | [diff] [blame] | 163 | int rxirq; | 
|  | 164 | int txirq; | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 165 | unsigned int cur_tx; | 
|  | 166 | unsigned int cur_rx; | 
|  | 167 | unsigned int finish_tx; | 
|  | 168 | unsigned int rx_packets; | 
|  | 169 | unsigned int rx_bytes; | 
|  | 170 | unsigned int start_tx_ptr; | 
|  | 171 | unsigned int start_rx_ptr; | 
|  | 172 | unsigned int linkflag; | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 173 | }; | 
|  | 174 |  | 
|  | 175 | static void update_linkspeed_register(struct net_device *dev, | 
|  | 176 | unsigned int speed, unsigned int duplex) | 
|  | 177 | { | 
|  | 178 | struct w90p910_ether *ether = netdev_priv(dev); | 
|  | 179 | unsigned int val; | 
|  | 180 |  | 
|  | 181 | val = __raw_readl(ether->reg + REG_MCMDR); | 
|  | 182 |  | 
|  | 183 | if (speed == SPEED_100) { | 
|  | 184 | /* 100 full/half duplex */ | 
|  | 185 | if (duplex == DUPLEX_FULL) { | 
|  | 186 | val |= (MCMDR_OPMOD | MCMDR_FDUP); | 
|  | 187 | } else { | 
|  | 188 | val |= MCMDR_OPMOD; | 
|  | 189 | val &= ~MCMDR_FDUP; | 
|  | 190 | } | 
|  | 191 | } else { | 
|  | 192 | /* 10 full/half duplex */ | 
|  | 193 | if (duplex == DUPLEX_FULL) { | 
|  | 194 | val |= MCMDR_FDUP; | 
|  | 195 | val &= ~MCMDR_OPMOD; | 
|  | 196 | } else { | 
|  | 197 | val &= ~(MCMDR_FDUP | MCMDR_OPMOD); | 
|  | 198 | } | 
|  | 199 | } | 
|  | 200 |  | 
|  | 201 | __raw_writel(val, ether->reg + REG_MCMDR); | 
|  | 202 | } | 
|  | 203 |  | 
|  | 204 | static void update_linkspeed(struct net_device *dev) | 
|  | 205 | { | 
|  | 206 | struct w90p910_ether *ether = netdev_priv(dev); | 
|  | 207 | struct platform_device *pdev; | 
|  | 208 | unsigned int bmsr, bmcr, lpa, speed, duplex; | 
|  | 209 |  | 
|  | 210 | pdev = ether->pdev; | 
|  | 211 |  | 
|  | 212 | if (!mii_link_ok(ðer->mii)) { | 
|  | 213 | ether->linkflag = 0x0; | 
|  | 214 | netif_carrier_off(dev); | 
|  | 215 | dev_warn(&pdev->dev, "%s: Link down.\n", dev->name); | 
|  | 216 | return; | 
|  | 217 | } | 
|  | 218 |  | 
|  | 219 | if (ether->linkflag == 1) | 
|  | 220 | return; | 
|  | 221 |  | 
|  | 222 | bmsr = w90p910_mdio_read(dev, ether->mii.phy_id, MII_BMSR); | 
|  | 223 | bmcr = w90p910_mdio_read(dev, ether->mii.phy_id, MII_BMCR); | 
|  | 224 |  | 
|  | 225 | if (bmcr & BMCR_ANENABLE) { | 
|  | 226 | if (!(bmsr & BMSR_ANEGCOMPLETE)) | 
|  | 227 | return; | 
|  | 228 |  | 
|  | 229 | lpa = w90p910_mdio_read(dev, ether->mii.phy_id, MII_LPA); | 
|  | 230 |  | 
|  | 231 | if ((lpa & LPA_100FULL) || (lpa & LPA_100HALF)) | 
|  | 232 | speed = SPEED_100; | 
|  | 233 | else | 
|  | 234 | speed = SPEED_10; | 
|  | 235 |  | 
|  | 236 | if ((lpa & LPA_100FULL) || (lpa & LPA_10FULL)) | 
|  | 237 | duplex = DUPLEX_FULL; | 
|  | 238 | else | 
|  | 239 | duplex = DUPLEX_HALF; | 
|  | 240 |  | 
|  | 241 | } else { | 
|  | 242 | speed = (bmcr & BMCR_SPEED100) ? SPEED_100 : SPEED_10; | 
|  | 243 | duplex = (bmcr & BMCR_FULLDPLX) ? DUPLEX_FULL : DUPLEX_HALF; | 
|  | 244 | } | 
|  | 245 |  | 
|  | 246 | update_linkspeed_register(dev, speed, duplex); | 
|  | 247 |  | 
|  | 248 | dev_info(&pdev->dev, "%s: Link now %i-%s\n", dev->name, speed, | 
|  | 249 | (duplex == DUPLEX_FULL) ? "FullDuplex" : "HalfDuplex"); | 
|  | 250 | ether->linkflag = 0x01; | 
|  | 251 |  | 
|  | 252 | netif_carrier_on(dev); | 
|  | 253 | } | 
|  | 254 |  | 
|  | 255 | static void w90p910_check_link(unsigned long dev_id) | 
|  | 256 | { | 
|  | 257 | struct net_device *dev = (struct net_device *) dev_id; | 
|  | 258 | struct w90p910_ether *ether = netdev_priv(dev); | 
|  | 259 |  | 
|  | 260 | update_linkspeed(dev); | 
|  | 261 | mod_timer(ðer->check_timer, jiffies + msecs_to_jiffies(1000)); | 
|  | 262 | } | 
|  | 263 |  | 
|  | 264 | static void w90p910_write_cam(struct net_device *dev, | 
|  | 265 | unsigned int x, unsigned char *pval) | 
|  | 266 | { | 
|  | 267 | struct w90p910_ether *ether = netdev_priv(dev); | 
|  | 268 | unsigned int msw, lsw; | 
|  | 269 |  | 
|  | 270 | msw = (pval[0] << 24) | (pval[1] << 16) | (pval[2] << 8) | pval[3]; | 
|  | 271 |  | 
|  | 272 | lsw = (pval[4] << 24) | (pval[5] << 16); | 
|  | 273 |  | 
|  | 274 | __raw_writel(lsw, ether->reg + REG_CAML_BASE + x * CAM_ENTRY_SIZE); | 
|  | 275 | __raw_writel(msw, ether->reg + REG_CAMM_BASE + x * CAM_ENTRY_SIZE); | 
|  | 276 | } | 
|  | 277 |  | 
| Wan ZongShun | 1e5053b | 2009-08-09 03:06:19 +0000 | [diff] [blame] | 278 | static int w90p910_init_desc(struct net_device *dev) | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 279 | { | 
|  | 280 | struct w90p910_ether *ether; | 
| Wan ZongShun | 1e5053b | 2009-08-09 03:06:19 +0000 | [diff] [blame] | 281 | struct w90p910_txbd  *tdesc; | 
|  | 282 | struct w90p910_rxbd  *rdesc; | 
|  | 283 | struct platform_device *pdev; | 
|  | 284 | unsigned int i; | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 285 |  | 
|  | 286 | ether = netdev_priv(dev); | 
| Wan ZongShun | 1e5053b | 2009-08-09 03:06:19 +0000 | [diff] [blame] | 287 | pdev = ether->pdev; | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 288 |  | 
|  | 289 | ether->tdesc = (struct tran_pdesc *) | 
| Wan ZongShun | 1e5053b | 2009-08-09 03:06:19 +0000 | [diff] [blame] | 290 | dma_alloc_coherent(&pdev->dev, sizeof(struct tran_pdesc), | 
|  | 291 | ðer->tdesc_phys, GFP_KERNEL); | 
|  | 292 |  | 
|  | 293 | if (!ether->tdesc) { | 
|  | 294 | dev_err(&pdev->dev, "Failed to allocate memory for tx desc\n"); | 
|  | 295 | return -ENOMEM; | 
|  | 296 | } | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 297 |  | 
|  | 298 | ether->rdesc = (struct recv_pdesc *) | 
| Wan ZongShun | 1e5053b | 2009-08-09 03:06:19 +0000 | [diff] [blame] | 299 | dma_alloc_coherent(&pdev->dev, sizeof(struct recv_pdesc), | 
|  | 300 | ðer->rdesc_phys, GFP_KERNEL); | 
|  | 301 |  | 
|  | 302 | if (!ether->rdesc) { | 
|  | 303 | dev_err(&pdev->dev, "Failed to allocate memory for rx desc\n"); | 
|  | 304 | dma_free_coherent(&pdev->dev, sizeof(struct tran_pdesc), | 
|  | 305 | ether->tdesc, ether->tdesc_phys); | 
|  | 306 | return -ENOMEM; | 
|  | 307 | } | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 308 |  | 
|  | 309 | for (i = 0; i < TX_DESC_SIZE; i++) { | 
| Wan ZongShun | 1e5053b | 2009-08-09 03:06:19 +0000 | [diff] [blame] | 310 | unsigned int offset; | 
|  | 311 |  | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 312 | tdesc = &(ether->tdesc->desclist[i]); | 
|  | 313 |  | 
| Wan ZongShun | 1e5053b | 2009-08-09 03:06:19 +0000 | [diff] [blame] | 314 | if (i == TX_DESC_SIZE - 1) | 
|  | 315 | offset = offsetof(struct tran_pdesc, desclist[0]); | 
|  | 316 | else | 
|  | 317 | offset = offsetof(struct tran_pdesc, desclist[i + 1]); | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 318 |  | 
| Wan ZongShun | 1e5053b | 2009-08-09 03:06:19 +0000 | [diff] [blame] | 319 | tdesc->next = ether->tdesc_phys + offset; | 
|  | 320 | tdesc->buffer = ether->tdesc_phys + | 
|  | 321 | offsetof(struct tran_pdesc, tran_buf[i]); | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 322 | tdesc->sl = 0; | 
|  | 323 | tdesc->mode = 0; | 
|  | 324 | } | 
|  | 325 |  | 
| Wan ZongShun | 1e5053b | 2009-08-09 03:06:19 +0000 | [diff] [blame] | 326 | ether->start_tx_ptr = ether->tdesc_phys; | 
|  | 327 |  | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 328 | for (i = 0; i < RX_DESC_SIZE; i++) { | 
| Wan ZongShun | 1e5053b | 2009-08-09 03:06:19 +0000 | [diff] [blame] | 329 | unsigned int offset; | 
|  | 330 |  | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 331 | rdesc = &(ether->rdesc->desclist[i]); | 
|  | 332 |  | 
| Wan ZongShun | 1e5053b | 2009-08-09 03:06:19 +0000 | [diff] [blame] | 333 | if (i == RX_DESC_SIZE - 1) | 
|  | 334 | offset = offsetof(struct recv_pdesc, desclist[0]); | 
|  | 335 | else | 
|  | 336 | offset = offsetof(struct recv_pdesc, desclist[i + 1]); | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 337 |  | 
| Wan ZongShun | 1e5053b | 2009-08-09 03:06:19 +0000 | [diff] [blame] | 338 | rdesc->next = ether->rdesc_phys + offset; | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 339 | rdesc->sl = RX_OWEN_DMA; | 
| Wan ZongShun | 1e5053b | 2009-08-09 03:06:19 +0000 | [diff] [blame] | 340 | rdesc->buffer = ether->rdesc_phys + | 
|  | 341 | offsetof(struct recv_pdesc, recv_buf[i]); | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 342 | } | 
| Wan ZongShun | 1e5053b | 2009-08-09 03:06:19 +0000 | [diff] [blame] | 343 |  | 
|  | 344 | ether->start_rx_ptr = ether->rdesc_phys; | 
|  | 345 |  | 
|  | 346 | return 0; | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 347 | } | 
|  | 348 |  | 
|  | 349 | static void w90p910_set_fifo_threshold(struct net_device *dev) | 
|  | 350 | { | 
|  | 351 | struct w90p910_ether *ether = netdev_priv(dev); | 
|  | 352 | unsigned int val; | 
|  | 353 |  | 
|  | 354 | val = TXTHD | BLENGTH; | 
|  | 355 | __raw_writel(val, ether->reg + REG_FFTCR); | 
|  | 356 | } | 
|  | 357 |  | 
|  | 358 | static void w90p910_return_default_idle(struct net_device *dev) | 
|  | 359 | { | 
|  | 360 | struct w90p910_ether *ether = netdev_priv(dev); | 
|  | 361 | unsigned int val; | 
|  | 362 |  | 
|  | 363 | val = __raw_readl(ether->reg + REG_MCMDR); | 
|  | 364 | val |= SWR; | 
|  | 365 | __raw_writel(val, ether->reg + REG_MCMDR); | 
|  | 366 | } | 
|  | 367 |  | 
|  | 368 | static void w90p910_trigger_rx(struct net_device *dev) | 
|  | 369 | { | 
|  | 370 | struct w90p910_ether *ether = netdev_priv(dev); | 
|  | 371 |  | 
|  | 372 | __raw_writel(ENSTART, ether->reg + REG_RSDR); | 
|  | 373 | } | 
|  | 374 |  | 
|  | 375 | static void w90p910_trigger_tx(struct net_device *dev) | 
|  | 376 | { | 
|  | 377 | struct w90p910_ether *ether = netdev_priv(dev); | 
|  | 378 |  | 
|  | 379 | __raw_writel(ENSTART, ether->reg + REG_TSDR); | 
|  | 380 | } | 
|  | 381 |  | 
|  | 382 | static void w90p910_enable_mac_interrupt(struct net_device *dev) | 
|  | 383 | { | 
|  | 384 | struct w90p910_ether *ether = netdev_priv(dev); | 
|  | 385 | unsigned int val; | 
|  | 386 |  | 
|  | 387 | val = ENTXINTR | ENRXINTR | ENRXGD | ENTXCP; | 
|  | 388 | val |= ENTXBERR | ENRXBERR | ENTXABT; | 
|  | 389 |  | 
|  | 390 | __raw_writel(val, ether->reg + REG_MIEN); | 
|  | 391 | } | 
|  | 392 |  | 
|  | 393 | static void w90p910_get_and_clear_int(struct net_device *dev, | 
|  | 394 | unsigned int *val) | 
|  | 395 | { | 
|  | 396 | struct w90p910_ether *ether = netdev_priv(dev); | 
|  | 397 |  | 
|  | 398 | *val = __raw_readl(ether->reg + REG_MISTA); | 
|  | 399 | __raw_writel(*val, ether->reg + REG_MISTA); | 
|  | 400 | } | 
|  | 401 |  | 
|  | 402 | static void w90p910_set_global_maccmd(struct net_device *dev) | 
|  | 403 | { | 
|  | 404 | struct w90p910_ether *ether = netdev_priv(dev); | 
|  | 405 | unsigned int val; | 
|  | 406 |  | 
|  | 407 | val = __raw_readl(ether->reg + REG_MCMDR); | 
|  | 408 | val |= MCMDR_SPCRC | MCMDR_ENMDC | MCMDR_ACP | ENMDC; | 
|  | 409 | __raw_writel(val, ether->reg + REG_MCMDR); | 
|  | 410 | } | 
|  | 411 |  | 
|  | 412 | static void w90p910_enable_cam(struct net_device *dev) | 
|  | 413 | { | 
|  | 414 | struct w90p910_ether *ether = netdev_priv(dev); | 
|  | 415 | unsigned int val; | 
|  | 416 |  | 
|  | 417 | w90p910_write_cam(dev, CAM0, dev->dev_addr); | 
|  | 418 |  | 
|  | 419 | val = __raw_readl(ether->reg + REG_CAMEN); | 
|  | 420 | val |= CAM0EN; | 
|  | 421 | __raw_writel(val, ether->reg + REG_CAMEN); | 
|  | 422 | } | 
|  | 423 |  | 
|  | 424 | static void w90p910_enable_cam_command(struct net_device *dev) | 
|  | 425 | { | 
|  | 426 | struct w90p910_ether *ether = netdev_priv(dev); | 
|  | 427 | unsigned int val; | 
|  | 428 |  | 
|  | 429 | val = CAMCMR_ECMP | CAMCMR_ABP | CAMCMR_AMP; | 
|  | 430 | __raw_writel(val, ether->reg + REG_CAMCMR); | 
|  | 431 | } | 
|  | 432 |  | 
|  | 433 | static void w90p910_enable_tx(struct net_device *dev, unsigned int enable) | 
|  | 434 | { | 
|  | 435 | struct w90p910_ether *ether = netdev_priv(dev); | 
|  | 436 | unsigned int val; | 
|  | 437 |  | 
|  | 438 | val = __raw_readl(ether->reg + REG_MCMDR); | 
|  | 439 |  | 
|  | 440 | if (enable) | 
|  | 441 | val |= MCMDR_TXON; | 
|  | 442 | else | 
|  | 443 | val &= ~MCMDR_TXON; | 
|  | 444 |  | 
|  | 445 | __raw_writel(val, ether->reg + REG_MCMDR); | 
|  | 446 | } | 
|  | 447 |  | 
|  | 448 | static void w90p910_enable_rx(struct net_device *dev, unsigned int enable) | 
|  | 449 | { | 
|  | 450 | struct w90p910_ether *ether = netdev_priv(dev); | 
|  | 451 | unsigned int val; | 
|  | 452 |  | 
|  | 453 | val = __raw_readl(ether->reg + REG_MCMDR); | 
|  | 454 |  | 
|  | 455 | if (enable) | 
|  | 456 | val |= MCMDR_RXON; | 
|  | 457 | else | 
|  | 458 | val &= ~MCMDR_RXON; | 
|  | 459 |  | 
|  | 460 | __raw_writel(val, ether->reg + REG_MCMDR); | 
|  | 461 | } | 
|  | 462 |  | 
|  | 463 | static void w90p910_set_curdest(struct net_device *dev) | 
|  | 464 | { | 
|  | 465 | struct w90p910_ether *ether = netdev_priv(dev); | 
|  | 466 |  | 
|  | 467 | __raw_writel(ether->start_rx_ptr, ether->reg + REG_RXDLSA); | 
|  | 468 | __raw_writel(ether->start_tx_ptr, ether->reg + REG_TXDLSA); | 
|  | 469 | } | 
|  | 470 |  | 
|  | 471 | static void w90p910_reset_mac(struct net_device *dev) | 
|  | 472 | { | 
|  | 473 | struct w90p910_ether *ether = netdev_priv(dev); | 
|  | 474 |  | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 475 | w90p910_enable_tx(dev, 0); | 
|  | 476 | w90p910_enable_rx(dev, 0); | 
|  | 477 | w90p910_set_fifo_threshold(dev); | 
|  | 478 | w90p910_return_default_idle(dev); | 
|  | 479 |  | 
|  | 480 | if (!netif_queue_stopped(dev)) | 
|  | 481 | netif_stop_queue(dev); | 
|  | 482 |  | 
|  | 483 | w90p910_init_desc(dev); | 
|  | 484 |  | 
|  | 485 | dev->trans_start = jiffies; | 
|  | 486 | ether->cur_tx = 0x0; | 
|  | 487 | ether->finish_tx = 0x0; | 
|  | 488 | ether->cur_rx = 0x0; | 
|  | 489 |  | 
|  | 490 | w90p910_set_curdest(dev); | 
|  | 491 | w90p910_enable_cam(dev); | 
|  | 492 | w90p910_enable_cam_command(dev); | 
|  | 493 | w90p910_enable_mac_interrupt(dev); | 
|  | 494 | w90p910_enable_tx(dev, 1); | 
|  | 495 | w90p910_enable_rx(dev, 1); | 
|  | 496 | w90p910_trigger_tx(dev); | 
|  | 497 | w90p910_trigger_rx(dev); | 
|  | 498 |  | 
|  | 499 | dev->trans_start = jiffies; | 
|  | 500 |  | 
|  | 501 | if (netif_queue_stopped(dev)) | 
|  | 502 | netif_wake_queue(dev); | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 503 | } | 
|  | 504 |  | 
|  | 505 | static void w90p910_mdio_write(struct net_device *dev, | 
|  | 506 | int phy_id, int reg, int data) | 
|  | 507 | { | 
|  | 508 | struct w90p910_ether *ether = netdev_priv(dev); | 
|  | 509 | struct platform_device *pdev; | 
|  | 510 | unsigned int val, i; | 
|  | 511 |  | 
|  | 512 | pdev = ether->pdev; | 
|  | 513 |  | 
|  | 514 | __raw_writel(data, ether->reg + REG_MIID); | 
|  | 515 |  | 
|  | 516 | val = (phy_id << 0x08) | reg; | 
|  | 517 | val |= PHYBUSY | PHYWR | MDCCR_VAL; | 
|  | 518 | __raw_writel(val, ether->reg + REG_MIIDA); | 
|  | 519 |  | 
|  | 520 | for (i = 0; i < DELAY; i++) { | 
|  | 521 | if ((__raw_readl(ether->reg + REG_MIIDA) & PHYBUSY) == 0) | 
|  | 522 | break; | 
|  | 523 | } | 
|  | 524 |  | 
|  | 525 | if (i == DELAY) | 
|  | 526 | dev_warn(&pdev->dev, "mdio write timed out\n"); | 
|  | 527 | } | 
|  | 528 |  | 
|  | 529 | static int w90p910_mdio_read(struct net_device *dev, int phy_id, int reg) | 
|  | 530 | { | 
|  | 531 | struct w90p910_ether *ether = netdev_priv(dev); | 
|  | 532 | struct platform_device *pdev; | 
|  | 533 | unsigned int val, i, data; | 
|  | 534 |  | 
|  | 535 | pdev = ether->pdev; | 
|  | 536 |  | 
|  | 537 | val = (phy_id << 0x08) | reg; | 
|  | 538 | val |= PHYBUSY | MDCCR_VAL; | 
|  | 539 | __raw_writel(val, ether->reg + REG_MIIDA); | 
|  | 540 |  | 
|  | 541 | for (i = 0; i < DELAY; i++) { | 
|  | 542 | if ((__raw_readl(ether->reg + REG_MIIDA) & PHYBUSY) == 0) | 
|  | 543 | break; | 
|  | 544 | } | 
|  | 545 |  | 
|  | 546 | if (i == DELAY) { | 
|  | 547 | dev_warn(&pdev->dev, "mdio read timed out\n"); | 
|  | 548 | data = 0xffff; | 
|  | 549 | } else { | 
|  | 550 | data = __raw_readl(ether->reg + REG_MIID); | 
|  | 551 | } | 
|  | 552 |  | 
|  | 553 | return data; | 
|  | 554 | } | 
|  | 555 |  | 
| Wan ZongShun | 1e5053b | 2009-08-09 03:06:19 +0000 | [diff] [blame] | 556 | static int w90p910_set_mac_address(struct net_device *dev, void *addr) | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 557 | { | 
|  | 558 | struct sockaddr *address = addr; | 
|  | 559 |  | 
|  | 560 | if (!is_valid_ether_addr(address->sa_data)) | 
|  | 561 | return -EADDRNOTAVAIL; | 
|  | 562 |  | 
|  | 563 | memcpy(dev->dev_addr, address->sa_data, dev->addr_len); | 
|  | 564 | w90p910_write_cam(dev, CAM0, dev->dev_addr); | 
|  | 565 |  | 
|  | 566 | return 0; | 
|  | 567 | } | 
|  | 568 |  | 
|  | 569 | static int w90p910_ether_close(struct net_device *dev) | 
|  | 570 | { | 
|  | 571 | struct w90p910_ether *ether = netdev_priv(dev); | 
| Wan ZongShun | 1e5053b | 2009-08-09 03:06:19 +0000 | [diff] [blame] | 572 | struct platform_device *pdev; | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 573 |  | 
| Wan ZongShun | 1e5053b | 2009-08-09 03:06:19 +0000 | [diff] [blame] | 574 | pdev = ether->pdev; | 
|  | 575 |  | 
|  | 576 | dma_free_coherent(&pdev->dev, sizeof(struct recv_pdesc), | 
|  | 577 | ether->rdesc, ether->rdesc_phys); | 
|  | 578 | dma_free_coherent(&pdev->dev, sizeof(struct tran_pdesc), | 
|  | 579 | ether->tdesc, ether->tdesc_phys); | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 580 |  | 
|  | 581 | netif_stop_queue(dev); | 
|  | 582 |  | 
|  | 583 | del_timer_sync(ðer->check_timer); | 
|  | 584 | clk_disable(ether->rmiiclk); | 
|  | 585 | clk_disable(ether->clk); | 
|  | 586 |  | 
|  | 587 | free_irq(ether->txirq, dev); | 
|  | 588 | free_irq(ether->rxirq, dev); | 
|  | 589 |  | 
|  | 590 | return 0; | 
|  | 591 | } | 
|  | 592 |  | 
|  | 593 | static struct net_device_stats *w90p910_ether_stats(struct net_device *dev) | 
|  | 594 | { | 
|  | 595 | struct w90p910_ether *ether; | 
|  | 596 |  | 
|  | 597 | ether = netdev_priv(dev); | 
|  | 598 |  | 
|  | 599 | return ðer->stats; | 
|  | 600 | } | 
|  | 601 |  | 
|  | 602 | static int w90p910_send_frame(struct net_device *dev, | 
|  | 603 | unsigned char *data, int length) | 
|  | 604 | { | 
|  | 605 | struct w90p910_ether *ether; | 
|  | 606 | struct w90p910_txbd *txbd; | 
|  | 607 | struct platform_device *pdev; | 
|  | 608 | unsigned char *buffer; | 
|  | 609 |  | 
|  | 610 | ether = netdev_priv(dev); | 
|  | 611 | pdev = ether->pdev; | 
|  | 612 |  | 
|  | 613 | txbd = ðer->tdesc->desclist[ether->cur_tx]; | 
|  | 614 | buffer = ether->tdesc->tran_buf[ether->cur_tx]; | 
| Wan ZongShun | 1e5053b | 2009-08-09 03:06:19 +0000 | [diff] [blame] | 615 |  | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 616 | if (length > 1514) { | 
|  | 617 | dev_err(&pdev->dev, "send data %d bytes, check it\n", length); | 
|  | 618 | length = 1514; | 
|  | 619 | } | 
|  | 620 |  | 
|  | 621 | txbd->sl = length & 0xFFFF; | 
|  | 622 |  | 
|  | 623 | memcpy(buffer, data, length); | 
|  | 624 |  | 
|  | 625 | txbd->mode = TX_OWEN_DMA | PADDINGMODE | CRCMODE | MACTXINTEN; | 
|  | 626 |  | 
|  | 627 | w90p910_enable_tx(dev, 1); | 
|  | 628 |  | 
|  | 629 | w90p910_trigger_tx(dev); | 
|  | 630 |  | 
| Wan ZongShun | 1e5053b | 2009-08-09 03:06:19 +0000 | [diff] [blame] | 631 | if (++ether->cur_tx >= TX_DESC_SIZE) | 
|  | 632 | ether->cur_tx = 0; | 
|  | 633 |  | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 634 | txbd = ðer->tdesc->desclist[ether->cur_tx]; | 
|  | 635 |  | 
|  | 636 | dev->trans_start = jiffies; | 
|  | 637 |  | 
|  | 638 | if (txbd->mode & TX_OWEN_DMA) | 
|  | 639 | netif_stop_queue(dev); | 
|  | 640 |  | 
|  | 641 | return 0; | 
|  | 642 | } | 
|  | 643 |  | 
|  | 644 | static int w90p910_ether_start_xmit(struct sk_buff *skb, struct net_device *dev) | 
|  | 645 | { | 
|  | 646 | struct w90p910_ether *ether = netdev_priv(dev); | 
|  | 647 |  | 
|  | 648 | if (!(w90p910_send_frame(dev, skb->data, skb->len))) { | 
|  | 649 | ether->skb = skb; | 
|  | 650 | dev_kfree_skb_irq(skb); | 
|  | 651 | return 0; | 
|  | 652 | } | 
| Wan ZongShun | 1e5053b | 2009-08-09 03:06:19 +0000 | [diff] [blame] | 653 | return -EAGAIN; | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 654 | } | 
|  | 655 |  | 
|  | 656 | static irqreturn_t w90p910_tx_interrupt(int irq, void *dev_id) | 
|  | 657 | { | 
|  | 658 | struct w90p910_ether *ether; | 
|  | 659 | struct w90p910_txbd  *txbd; | 
|  | 660 | struct platform_device *pdev; | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 661 | struct net_device *dev; | 
|  | 662 | unsigned int cur_entry, entry, status; | 
|  | 663 |  | 
| Wan ZongShun | 1e5053b | 2009-08-09 03:06:19 +0000 | [diff] [blame] | 664 | dev = dev_id; | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 665 | ether = netdev_priv(dev); | 
|  | 666 | pdev = ether->pdev; | 
|  | 667 |  | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 668 | w90p910_get_and_clear_int(dev, &status); | 
|  | 669 |  | 
|  | 670 | cur_entry = __raw_readl(ether->reg + REG_CTXDSA); | 
|  | 671 |  | 
| Wan ZongShun | 1e5053b | 2009-08-09 03:06:19 +0000 | [diff] [blame] | 672 | entry = ether->tdesc_phys + | 
|  | 673 | offsetof(struct tran_pdesc, desclist[ether->finish_tx]); | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 674 |  | 
|  | 675 | while (entry != cur_entry) { | 
|  | 676 | txbd = ðer->tdesc->desclist[ether->finish_tx]; | 
|  | 677 |  | 
| Wan ZongShun | 1e5053b | 2009-08-09 03:06:19 +0000 | [diff] [blame] | 678 | if (++ether->finish_tx >= TX_DESC_SIZE) | 
|  | 679 | ether->finish_tx = 0; | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 680 |  | 
|  | 681 | if (txbd->sl & TXDS_TXCP) { | 
|  | 682 | ether->stats.tx_packets++; | 
|  | 683 | ether->stats.tx_bytes += txbd->sl & 0xFFFF; | 
|  | 684 | } else { | 
|  | 685 | ether->stats.tx_errors++; | 
|  | 686 | } | 
|  | 687 |  | 
|  | 688 | txbd->sl = 0x0; | 
|  | 689 | txbd->mode = 0x0; | 
|  | 690 |  | 
|  | 691 | if (netif_queue_stopped(dev)) | 
|  | 692 | netif_wake_queue(dev); | 
|  | 693 |  | 
| Wan ZongShun | 1e5053b | 2009-08-09 03:06:19 +0000 | [diff] [blame] | 694 | entry = ether->tdesc_phys + | 
|  | 695 | offsetof(struct tran_pdesc, desclist[ether->finish_tx]); | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 696 | } | 
|  | 697 |  | 
|  | 698 | if (status & MISTA_EXDEF) { | 
|  | 699 | dev_err(&pdev->dev, "emc defer exceed interrupt\n"); | 
|  | 700 | } else if (status & MISTA_TXBERR) { | 
| Wan ZongShun | 1e5053b | 2009-08-09 03:06:19 +0000 | [diff] [blame] | 701 | dev_err(&pdev->dev, "emc bus error interrupt\n"); | 
|  | 702 | w90p910_reset_mac(dev); | 
|  | 703 | } else if (status & MISTA_TDU) { | 
|  | 704 | if (netif_queue_stopped(dev)) | 
|  | 705 | netif_wake_queue(dev); | 
|  | 706 | } | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 707 |  | 
|  | 708 | return IRQ_HANDLED; | 
|  | 709 | } | 
|  | 710 |  | 
|  | 711 | static void netdev_rx(struct net_device *dev) | 
|  | 712 | { | 
|  | 713 | struct w90p910_ether *ether; | 
|  | 714 | struct w90p910_rxbd *rxbd; | 
|  | 715 | struct platform_device *pdev; | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 716 | struct sk_buff *skb; | 
|  | 717 | unsigned char *data; | 
|  | 718 | unsigned int length, status, val, entry; | 
|  | 719 |  | 
|  | 720 | ether = netdev_priv(dev); | 
|  | 721 | pdev = ether->pdev; | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 722 |  | 
|  | 723 | rxbd = ðer->rdesc->desclist[ether->cur_rx]; | 
|  | 724 |  | 
|  | 725 | do { | 
|  | 726 | val = __raw_readl(ether->reg + REG_CRXDSA); | 
| Wan ZongShun | 1e5053b | 2009-08-09 03:06:19 +0000 | [diff] [blame] | 727 |  | 
|  | 728 | entry = ether->rdesc_phys + | 
|  | 729 | offsetof(struct recv_pdesc, desclist[ether->cur_rx]); | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 730 |  | 
|  | 731 | if (val == entry) | 
|  | 732 | break; | 
|  | 733 |  | 
|  | 734 | status = rxbd->sl; | 
|  | 735 | length = status & 0xFFFF; | 
|  | 736 |  | 
|  | 737 | if (status & RXDS_RXGD) { | 
|  | 738 | data = ether->rdesc->recv_buf[ether->cur_rx]; | 
|  | 739 | skb = dev_alloc_skb(length+2); | 
|  | 740 | if (!skb) { | 
|  | 741 | dev_err(&pdev->dev, "get skb buffer error\n"); | 
|  | 742 | ether->stats.rx_dropped++; | 
|  | 743 | return; | 
|  | 744 | } | 
|  | 745 |  | 
|  | 746 | skb->dev = dev; | 
|  | 747 | skb_reserve(skb, 2); | 
|  | 748 | skb_put(skb, length); | 
|  | 749 | skb_copy_to_linear_data(skb, data, length); | 
|  | 750 | skb->protocol = eth_type_trans(skb, dev); | 
|  | 751 | ether->stats.rx_packets++; | 
|  | 752 | ether->stats.rx_bytes += length; | 
|  | 753 | netif_rx(skb); | 
|  | 754 | } else { | 
|  | 755 | ether->stats.rx_errors++; | 
|  | 756 |  | 
|  | 757 | if (status & RXDS_RP) { | 
|  | 758 | dev_err(&pdev->dev, "rx runt err\n"); | 
|  | 759 | ether->stats.rx_length_errors++; | 
|  | 760 | } else if (status & RXDS_CRCE) { | 
| Wan ZongShun | 1e5053b | 2009-08-09 03:06:19 +0000 | [diff] [blame] | 761 | dev_err(&pdev->dev, "rx crc err\n"); | 
|  | 762 | ether->stats.rx_crc_errors++; | 
|  | 763 | } else if (status & RXDS_ALIE) { | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 764 | dev_err(&pdev->dev, "rx aligment err\n"); | 
|  | 765 | ether->stats.rx_frame_errors++; | 
|  | 766 | } else if (status & RXDS_PTLE) { | 
| Wan ZongShun | 1e5053b | 2009-08-09 03:06:19 +0000 | [diff] [blame] | 767 | dev_err(&pdev->dev, "rx longer err\n"); | 
|  | 768 | ether->stats.rx_over_errors++; | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 769 | } | 
| Wan ZongShun | 1e5053b | 2009-08-09 03:06:19 +0000 | [diff] [blame] | 770 | } | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 771 |  | 
|  | 772 | rxbd->sl = RX_OWEN_DMA; | 
|  | 773 | rxbd->reserved = 0x0; | 
| Wan ZongShun | 1e5053b | 2009-08-09 03:06:19 +0000 | [diff] [blame] | 774 |  | 
|  | 775 | if (++ether->cur_rx >= RX_DESC_SIZE) | 
|  | 776 | ether->cur_rx = 0; | 
|  | 777 |  | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 778 | rxbd = ðer->rdesc->desclist[ether->cur_rx]; | 
|  | 779 |  | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 780 | } while (1); | 
|  | 781 | } | 
|  | 782 |  | 
|  | 783 | static irqreturn_t w90p910_rx_interrupt(int irq, void *dev_id) | 
|  | 784 | { | 
|  | 785 | struct net_device *dev; | 
|  | 786 | struct w90p910_ether  *ether; | 
|  | 787 | struct platform_device *pdev; | 
|  | 788 | unsigned int status; | 
|  | 789 |  | 
| Wan ZongShun | 1e5053b | 2009-08-09 03:06:19 +0000 | [diff] [blame] | 790 | dev = dev_id; | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 791 | ether = netdev_priv(dev); | 
|  | 792 | pdev = ether->pdev; | 
|  | 793 |  | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 794 | w90p910_get_and_clear_int(dev, &status); | 
|  | 795 |  | 
|  | 796 | if (status & MISTA_RDU) { | 
|  | 797 | netdev_rx(dev); | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 798 | w90p910_trigger_rx(dev); | 
|  | 799 |  | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 800 | return IRQ_HANDLED; | 
|  | 801 | } else if (status & MISTA_RXBERR) { | 
| Wan ZongShun | 1e5053b | 2009-08-09 03:06:19 +0000 | [diff] [blame] | 802 | dev_err(&pdev->dev, "emc rx bus error\n"); | 
|  | 803 | w90p910_reset_mac(dev); | 
|  | 804 | } | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 805 |  | 
|  | 806 | netdev_rx(dev); | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 807 | return IRQ_HANDLED; | 
|  | 808 | } | 
|  | 809 |  | 
|  | 810 | static int w90p910_ether_open(struct net_device *dev) | 
|  | 811 | { | 
|  | 812 | struct w90p910_ether *ether; | 
|  | 813 | struct platform_device *pdev; | 
|  | 814 |  | 
|  | 815 | ether = netdev_priv(dev); | 
|  | 816 | pdev = ether->pdev; | 
|  | 817 |  | 
|  | 818 | w90p910_reset_mac(dev); | 
|  | 819 | w90p910_set_fifo_threshold(dev); | 
|  | 820 | w90p910_set_curdest(dev); | 
|  | 821 | w90p910_enable_cam(dev); | 
|  | 822 | w90p910_enable_cam_command(dev); | 
|  | 823 | w90p910_enable_mac_interrupt(dev); | 
|  | 824 | w90p910_set_global_maccmd(dev); | 
|  | 825 | w90p910_enable_rx(dev, 1); | 
|  | 826 |  | 
|  | 827 | ether->rx_packets = 0x0; | 
|  | 828 | ether->rx_bytes = 0x0; | 
|  | 829 |  | 
|  | 830 | if (request_irq(ether->txirq, w90p910_tx_interrupt, | 
|  | 831 | 0x0, pdev->name, dev)) { | 
|  | 832 | dev_err(&pdev->dev, "register irq tx failed\n"); | 
|  | 833 | return -EAGAIN; | 
|  | 834 | } | 
|  | 835 |  | 
|  | 836 | if (request_irq(ether->rxirq, w90p910_rx_interrupt, | 
|  | 837 | 0x0, pdev->name, dev)) { | 
|  | 838 | dev_err(&pdev->dev, "register irq rx failed\n"); | 
| Wan ZongShun | 1e5053b | 2009-08-09 03:06:19 +0000 | [diff] [blame] | 839 | free_irq(ether->txirq, dev); | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 840 | return -EAGAIN; | 
|  | 841 | } | 
|  | 842 |  | 
|  | 843 | mod_timer(ðer->check_timer, jiffies + msecs_to_jiffies(1000)); | 
|  | 844 | netif_start_queue(dev); | 
|  | 845 | w90p910_trigger_rx(dev); | 
|  | 846 |  | 
|  | 847 | dev_info(&pdev->dev, "%s is OPENED\n", dev->name); | 
|  | 848 |  | 
|  | 849 | return 0; | 
|  | 850 | } | 
|  | 851 |  | 
|  | 852 | static void w90p910_ether_set_multicast_list(struct net_device *dev) | 
|  | 853 | { | 
|  | 854 | struct w90p910_ether *ether; | 
|  | 855 | unsigned int rx_mode; | 
|  | 856 |  | 
|  | 857 | ether = netdev_priv(dev); | 
|  | 858 |  | 
|  | 859 | if (dev->flags & IFF_PROMISC) | 
|  | 860 | rx_mode = CAMCMR_AUP | CAMCMR_AMP | CAMCMR_ABP | CAMCMR_ECMP; | 
|  | 861 | else if ((dev->flags & IFF_ALLMULTI) || dev->mc_list) | 
|  | 862 | rx_mode = CAMCMR_AMP | CAMCMR_ABP | CAMCMR_ECMP; | 
|  | 863 | else | 
|  | 864 | rx_mode = CAMCMR_ECMP | CAMCMR_ABP; | 
|  | 865 | __raw_writel(rx_mode, ether->reg + REG_CAMCMR); | 
|  | 866 | } | 
|  | 867 |  | 
|  | 868 | static int w90p910_ether_ioctl(struct net_device *dev, | 
|  | 869 | struct ifreq *ifr, int cmd) | 
|  | 870 | { | 
|  | 871 | struct w90p910_ether *ether = netdev_priv(dev); | 
|  | 872 | struct mii_ioctl_data *data = if_mii(ifr); | 
|  | 873 |  | 
|  | 874 | return generic_mii_ioctl(ðer->mii, data, cmd, NULL); | 
|  | 875 | } | 
|  | 876 |  | 
|  | 877 | static void w90p910_get_drvinfo(struct net_device *dev, | 
|  | 878 | struct ethtool_drvinfo *info) | 
|  | 879 | { | 
|  | 880 | strcpy(info->driver, DRV_MODULE_NAME); | 
|  | 881 | strcpy(info->version, DRV_MODULE_VERSION); | 
|  | 882 | } | 
|  | 883 |  | 
|  | 884 | static int w90p910_get_settings(struct net_device *dev, struct ethtool_cmd *cmd) | 
|  | 885 | { | 
|  | 886 | struct w90p910_ether *ether = netdev_priv(dev); | 
|  | 887 | return mii_ethtool_gset(ðer->mii, cmd); | 
|  | 888 | } | 
|  | 889 |  | 
|  | 890 | static int w90p910_set_settings(struct net_device *dev, struct ethtool_cmd *cmd) | 
|  | 891 | { | 
|  | 892 | struct w90p910_ether *ether = netdev_priv(dev); | 
|  | 893 | return mii_ethtool_sset(ðer->mii, cmd); | 
|  | 894 | } | 
|  | 895 |  | 
|  | 896 | static int w90p910_nway_reset(struct net_device *dev) | 
|  | 897 | { | 
|  | 898 | struct w90p910_ether *ether = netdev_priv(dev); | 
|  | 899 | return mii_nway_restart(ðer->mii); | 
|  | 900 | } | 
|  | 901 |  | 
|  | 902 | static u32 w90p910_get_link(struct net_device *dev) | 
|  | 903 | { | 
|  | 904 | struct w90p910_ether *ether = netdev_priv(dev); | 
|  | 905 | return mii_link_ok(ðer->mii); | 
|  | 906 | } | 
|  | 907 |  | 
|  | 908 | static const struct ethtool_ops w90p910_ether_ethtool_ops = { | 
|  | 909 | .get_settings	= w90p910_get_settings, | 
|  | 910 | .set_settings	= w90p910_set_settings, | 
|  | 911 | .get_drvinfo	= w90p910_get_drvinfo, | 
|  | 912 | .nway_reset	= w90p910_nway_reset, | 
|  | 913 | .get_link	= w90p910_get_link, | 
|  | 914 | }; | 
|  | 915 |  | 
|  | 916 | static const struct net_device_ops w90p910_ether_netdev_ops = { | 
|  | 917 | .ndo_open		= w90p910_ether_open, | 
|  | 918 | .ndo_stop		= w90p910_ether_close, | 
|  | 919 | .ndo_start_xmit		= w90p910_ether_start_xmit, | 
|  | 920 | .ndo_get_stats		= w90p910_ether_stats, | 
|  | 921 | .ndo_set_multicast_list	= w90p910_ether_set_multicast_list, | 
| Wan ZongShun | 1e5053b | 2009-08-09 03:06:19 +0000 | [diff] [blame] | 922 | .ndo_set_mac_address	= w90p910_set_mac_address, | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 923 | .ndo_do_ioctl		= w90p910_ether_ioctl, | 
|  | 924 | .ndo_validate_addr	= eth_validate_addr, | 
|  | 925 | .ndo_change_mtu		= eth_change_mtu, | 
|  | 926 | }; | 
|  | 927 |  | 
|  | 928 | static void __init get_mac_address(struct net_device *dev) | 
|  | 929 | { | 
|  | 930 | struct w90p910_ether *ether = netdev_priv(dev); | 
|  | 931 | struct platform_device *pdev; | 
|  | 932 | char addr[6]; | 
|  | 933 |  | 
|  | 934 | pdev = ether->pdev; | 
|  | 935 |  | 
|  | 936 | addr[0] = 0x00; | 
|  | 937 | addr[1] = 0x02; | 
|  | 938 | addr[2] = 0xac; | 
|  | 939 | addr[3] = 0x55; | 
|  | 940 | addr[4] = 0x88; | 
|  | 941 | addr[5] = 0xa8; | 
|  | 942 |  | 
|  | 943 | if (is_valid_ether_addr(addr)) | 
|  | 944 | memcpy(dev->dev_addr, &addr, 0x06); | 
|  | 945 | else | 
|  | 946 | dev_err(&pdev->dev, "invalid mac address\n"); | 
|  | 947 | } | 
|  | 948 |  | 
|  | 949 | static int w90p910_ether_setup(struct net_device *dev) | 
|  | 950 | { | 
|  | 951 | struct w90p910_ether *ether = netdev_priv(dev); | 
|  | 952 |  | 
|  | 953 | ether_setup(dev); | 
|  | 954 | dev->netdev_ops = &w90p910_ether_netdev_ops; | 
|  | 955 | dev->ethtool_ops = &w90p910_ether_ethtool_ops; | 
|  | 956 |  | 
|  | 957 | dev->tx_queue_len = 16; | 
|  | 958 | dev->dma = 0x0; | 
|  | 959 | dev->watchdog_timeo = TX_TIMEOUT; | 
|  | 960 |  | 
|  | 961 | get_mac_address(dev); | 
|  | 962 |  | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 963 | ether->cur_tx = 0x0; | 
|  | 964 | ether->cur_rx = 0x0; | 
|  | 965 | ether->finish_tx = 0x0; | 
|  | 966 | ether->linkflag = 0x0; | 
|  | 967 | ether->mii.phy_id = 0x01; | 
|  | 968 | ether->mii.phy_id_mask = 0x1f; | 
|  | 969 | ether->mii.reg_num_mask = 0x1f; | 
|  | 970 | ether->mii.dev = dev; | 
|  | 971 | ether->mii.mdio_read = w90p910_mdio_read; | 
|  | 972 | ether->mii.mdio_write = w90p910_mdio_write; | 
|  | 973 |  | 
|  | 974 | setup_timer(ðer->check_timer, w90p910_check_link, | 
|  | 975 | (unsigned long)dev); | 
|  | 976 |  | 
|  | 977 | return 0; | 
|  | 978 | } | 
|  | 979 |  | 
|  | 980 | static int __devinit w90p910_ether_probe(struct platform_device *pdev) | 
|  | 981 | { | 
|  | 982 | struct w90p910_ether *ether; | 
|  | 983 | struct net_device *dev; | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 984 | int error; | 
|  | 985 |  | 
|  | 986 | dev = alloc_etherdev(sizeof(struct w90p910_ether)); | 
|  | 987 | if (!dev) | 
|  | 988 | return -ENOMEM; | 
|  | 989 |  | 
| Wan ZongShun | 1e5053b | 2009-08-09 03:06:19 +0000 | [diff] [blame] | 990 | ether = netdev_priv(dev); | 
|  | 991 |  | 
|  | 992 | ether->res = platform_get_resource(pdev, IORESOURCE_MEM, 0); | 
|  | 993 | if (ether->res == NULL) { | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 994 | dev_err(&pdev->dev, "failed to get I/O memory\n"); | 
|  | 995 | error = -ENXIO; | 
|  | 996 | goto failed_free; | 
|  | 997 | } | 
|  | 998 |  | 
| Wan ZongShun | 1e5053b | 2009-08-09 03:06:19 +0000 | [diff] [blame] | 999 | if (!request_mem_region(ether->res->start, | 
|  | 1000 | resource_size(ether->res), pdev->name)) { | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 1001 | dev_err(&pdev->dev, "failed to request I/O memory\n"); | 
|  | 1002 | error = -EBUSY; | 
|  | 1003 | goto failed_free; | 
|  | 1004 | } | 
|  | 1005 |  | 
| Wan ZongShun | 1e5053b | 2009-08-09 03:06:19 +0000 | [diff] [blame] | 1006 | ether->reg = ioremap(ether->res->start, resource_size(ether->res)); | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 1007 | if (ether->reg == NULL) { | 
|  | 1008 | dev_err(&pdev->dev, "failed to remap I/O memory\n"); | 
|  | 1009 | error = -ENXIO; | 
|  | 1010 | goto failed_free_mem; | 
|  | 1011 | } | 
|  | 1012 |  | 
|  | 1013 | ether->txirq = platform_get_irq(pdev, 0); | 
|  | 1014 | if (ether->txirq < 0) { | 
|  | 1015 | dev_err(&pdev->dev, "failed to get ether tx irq\n"); | 
|  | 1016 | error = -ENXIO; | 
|  | 1017 | goto failed_free_io; | 
|  | 1018 | } | 
|  | 1019 |  | 
|  | 1020 | ether->rxirq = platform_get_irq(pdev, 1); | 
|  | 1021 | if (ether->rxirq < 0) { | 
|  | 1022 | dev_err(&pdev->dev, "failed to get ether rx irq\n"); | 
|  | 1023 | error = -ENXIO; | 
|  | 1024 | goto failed_free_txirq; | 
|  | 1025 | } | 
|  | 1026 |  | 
|  | 1027 | platform_set_drvdata(pdev, dev); | 
|  | 1028 |  | 
|  | 1029 | ether->clk = clk_get(&pdev->dev, NULL); | 
|  | 1030 | if (IS_ERR(ether->clk)) { | 
|  | 1031 | dev_err(&pdev->dev, "failed to get ether clock\n"); | 
|  | 1032 | error = PTR_ERR(ether->clk); | 
|  | 1033 | goto failed_free_rxirq; | 
|  | 1034 | } | 
|  | 1035 |  | 
|  | 1036 | ether->rmiiclk = clk_get(&pdev->dev, "RMII"); | 
|  | 1037 | if (IS_ERR(ether->rmiiclk)) { | 
|  | 1038 | dev_err(&pdev->dev, "failed to get ether clock\n"); | 
|  | 1039 | error = PTR_ERR(ether->rmiiclk); | 
|  | 1040 | goto failed_put_clk; | 
|  | 1041 | } | 
|  | 1042 |  | 
|  | 1043 | ether->pdev = pdev; | 
|  | 1044 |  | 
|  | 1045 | w90p910_ether_setup(dev); | 
|  | 1046 |  | 
|  | 1047 | error = register_netdev(dev); | 
|  | 1048 | if (error != 0) { | 
|  | 1049 | dev_err(&pdev->dev, "Regiter EMC w90p910 FAILED\n"); | 
|  | 1050 | error = -ENODEV; | 
|  | 1051 | goto failed_put_rmiiclk; | 
|  | 1052 | } | 
|  | 1053 |  | 
|  | 1054 | return 0; | 
|  | 1055 | failed_put_rmiiclk: | 
|  | 1056 | clk_put(ether->rmiiclk); | 
|  | 1057 | failed_put_clk: | 
|  | 1058 | clk_put(ether->clk); | 
|  | 1059 | failed_free_rxirq: | 
|  | 1060 | free_irq(ether->rxirq, pdev); | 
|  | 1061 | platform_set_drvdata(pdev, NULL); | 
|  | 1062 | failed_free_txirq: | 
|  | 1063 | free_irq(ether->txirq, pdev); | 
|  | 1064 | failed_free_io: | 
|  | 1065 | iounmap(ether->reg); | 
|  | 1066 | failed_free_mem: | 
| Wan ZongShun | 1e5053b | 2009-08-09 03:06:19 +0000 | [diff] [blame] | 1067 | release_mem_region(ether->res->start, resource_size(ether->res)); | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 1068 | failed_free: | 
|  | 1069 | free_netdev(dev); | 
|  | 1070 | return error; | 
|  | 1071 | } | 
|  | 1072 |  | 
|  | 1073 | static int __devexit w90p910_ether_remove(struct platform_device *pdev) | 
|  | 1074 | { | 
|  | 1075 | struct net_device *dev = platform_get_drvdata(pdev); | 
|  | 1076 | struct w90p910_ether *ether = netdev_priv(dev); | 
|  | 1077 |  | 
|  | 1078 | unregister_netdev(dev); | 
| Wan ZongShun | 1e5053b | 2009-08-09 03:06:19 +0000 | [diff] [blame] | 1079 |  | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 1080 | clk_put(ether->rmiiclk); | 
|  | 1081 | clk_put(ether->clk); | 
| Wan ZongShun | 1e5053b | 2009-08-09 03:06:19 +0000 | [diff] [blame] | 1082 |  | 
|  | 1083 | iounmap(ether->reg); | 
|  | 1084 | release_mem_region(ether->res->start, resource_size(ether->res)); | 
|  | 1085 |  | 
|  | 1086 | free_irq(ether->txirq, dev); | 
|  | 1087 | free_irq(ether->rxirq, dev); | 
|  | 1088 |  | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 1089 | del_timer_sync(ðer->check_timer); | 
|  | 1090 | platform_set_drvdata(pdev, NULL); | 
| Wan ZongShun | 1e5053b | 2009-08-09 03:06:19 +0000 | [diff] [blame] | 1091 |  | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 1092 | free_netdev(dev); | 
|  | 1093 | return 0; | 
|  | 1094 | } | 
|  | 1095 |  | 
|  | 1096 | static struct platform_driver w90p910_ether_driver = { | 
|  | 1097 | .probe		= w90p910_ether_probe, | 
|  | 1098 | .remove		= __devexit_p(w90p910_ether_remove), | 
|  | 1099 | .driver		= { | 
| Wan ZongShun | 456d899 | 2009-08-18 23:34:58 -0700 | [diff] [blame] | 1100 | .name	= "nuc900-emc", | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 1101 | .owner	= THIS_MODULE, | 
|  | 1102 | }, | 
|  | 1103 | }; | 
|  | 1104 |  | 
|  | 1105 | static int __init w90p910_ether_init(void) | 
|  | 1106 | { | 
|  | 1107 | return platform_driver_register(&w90p910_ether_driver); | 
|  | 1108 | } | 
|  | 1109 |  | 
|  | 1110 | static void __exit w90p910_ether_exit(void) | 
|  | 1111 | { | 
|  | 1112 | platform_driver_unregister(&w90p910_ether_driver); | 
|  | 1113 | } | 
|  | 1114 |  | 
|  | 1115 | module_init(w90p910_ether_init); | 
|  | 1116 | module_exit(w90p910_ether_exit); | 
|  | 1117 |  | 
|  | 1118 | MODULE_AUTHOR("Wan ZongShun <mcuos.com@gmail.com>"); | 
|  | 1119 | MODULE_DESCRIPTION("w90p910 MAC driver!"); | 
|  | 1120 | MODULE_LICENSE("GPL"); | 
| Wan ZongShun | 456d899 | 2009-08-18 23:34:58 -0700 | [diff] [blame] | 1121 | MODULE_ALIAS("platform:nuc900-emc"); | 
| Wan ZongShun | a50a97d | 2009-07-16 02:55:05 +0000 | [diff] [blame] | 1122 |  |