Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1 | /* |
Mike Frysinger | 2fb9d6f | 2008-01-30 16:52:24 +0800 | [diff] [blame] | 2 | * Blackfin On-Chip MAC Driver |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 3 | * |
Mike Frysinger | 2fb9d6f | 2008-01-30 16:52:24 +0800 | [diff] [blame] | 4 | * Copyright 2004-2007 Analog Devices Inc. |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 5 | * |
Mike Frysinger | 2fb9d6f | 2008-01-30 16:52:24 +0800 | [diff] [blame] | 6 | * Enter bugs at http://blackfin.uclinux.org/ |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 7 | * |
Mike Frysinger | 2fb9d6f | 2008-01-30 16:52:24 +0800 | [diff] [blame] | 8 | * Licensed under the GPL-2 or later. |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #include <linux/init.h> |
| 12 | #include <linux/module.h> |
| 13 | #include <linux/kernel.h> |
| 14 | #include <linux/sched.h> |
| 15 | #include <linux/slab.h> |
| 16 | #include <linux/delay.h> |
| 17 | #include <linux/timer.h> |
| 18 | #include <linux/errno.h> |
| 19 | #include <linux/irq.h> |
| 20 | #include <linux/io.h> |
| 21 | #include <linux/ioport.h> |
| 22 | #include <linux/crc32.h> |
| 23 | #include <linux/device.h> |
| 24 | #include <linux/spinlock.h> |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 25 | #include <linux/mii.h> |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 26 | #include <linux/phy.h> |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 27 | #include <linux/netdevice.h> |
| 28 | #include <linux/etherdevice.h> |
Bryan Wu | 679dce3 | 2008-04-25 11:53:11 +0800 | [diff] [blame] | 29 | #include <linux/ethtool.h> |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 30 | #include <linux/skbuff.h> |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 31 | #include <linux/platform_device.h> |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 32 | |
| 33 | #include <asm/dma.h> |
| 34 | #include <linux/dma-mapping.h> |
| 35 | |
| 36 | #include <asm/blackfin.h> |
| 37 | #include <asm/cacheflush.h> |
| 38 | #include <asm/portmux.h> |
| 39 | |
| 40 | #include "bfin_mac.h" |
| 41 | |
| 42 | #define DRV_NAME "bfin_mac" |
| 43 | #define DRV_VERSION "1.1" |
| 44 | #define DRV_AUTHOR "Bryan Wu, Luke Yang" |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 45 | #define DRV_DESC "Blackfin on-chip Ethernet MAC driver" |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 46 | |
| 47 | MODULE_AUTHOR(DRV_AUTHOR); |
| 48 | MODULE_LICENSE("GPL"); |
| 49 | MODULE_DESCRIPTION(DRV_DESC); |
Kay Sievers | 72abb46 | 2008-04-18 13:50:44 -0700 | [diff] [blame] | 50 | MODULE_ALIAS("platform:bfin_mac"); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 51 | |
| 52 | #if defined(CONFIG_BFIN_MAC_USE_L1) |
| 53 | # define bfin_mac_alloc(dma_handle, size) l1_data_sram_zalloc(size) |
| 54 | # define bfin_mac_free(dma_handle, ptr) l1_data_sram_free(ptr) |
| 55 | #else |
| 56 | # define bfin_mac_alloc(dma_handle, size) \ |
| 57 | dma_alloc_coherent(NULL, size, dma_handle, GFP_KERNEL) |
| 58 | # define bfin_mac_free(dma_handle, ptr) \ |
| 59 | dma_free_coherent(NULL, sizeof(*ptr), ptr, dma_handle) |
| 60 | #endif |
| 61 | |
| 62 | #define PKT_BUF_SZ 1580 |
| 63 | |
| 64 | #define MAX_TIMEOUT_CNT 500 |
| 65 | |
| 66 | /* pointers to maintain transmit list */ |
| 67 | static struct net_dma_desc_tx *tx_list_head; |
| 68 | static struct net_dma_desc_tx *tx_list_tail; |
| 69 | static struct net_dma_desc_rx *rx_list_head; |
| 70 | static struct net_dma_desc_rx *rx_list_tail; |
| 71 | static struct net_dma_desc_rx *current_rx_ptr; |
| 72 | static struct net_dma_desc_tx *current_tx_ptr; |
| 73 | static struct net_dma_desc_tx *tx_desc; |
| 74 | static struct net_dma_desc_rx *rx_desc; |
| 75 | |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 76 | #if defined(CONFIG_BFIN_MAC_RMII) |
| 77 | static u16 pin_req[] = P_RMII0; |
| 78 | #else |
| 79 | static u16 pin_req[] = P_MII0; |
| 80 | #endif |
| 81 | |
| 82 | static void bfin_mac_disable(void); |
| 83 | static void bfin_mac_enable(void); |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 84 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 85 | static void desc_list_free(void) |
| 86 | { |
| 87 | struct net_dma_desc_rx *r; |
| 88 | struct net_dma_desc_tx *t; |
| 89 | int i; |
| 90 | #if !defined(CONFIG_BFIN_MAC_USE_L1) |
| 91 | dma_addr_t dma_handle = 0; |
| 92 | #endif |
| 93 | |
| 94 | if (tx_desc) { |
| 95 | t = tx_list_head; |
| 96 | for (i = 0; i < CONFIG_BFIN_TX_DESC_NUM; i++) { |
| 97 | if (t) { |
| 98 | if (t->skb) { |
| 99 | dev_kfree_skb(t->skb); |
| 100 | t->skb = NULL; |
| 101 | } |
| 102 | t = t->next; |
| 103 | } |
| 104 | } |
| 105 | bfin_mac_free(dma_handle, tx_desc); |
| 106 | } |
| 107 | |
| 108 | if (rx_desc) { |
| 109 | r = rx_list_head; |
| 110 | for (i = 0; i < CONFIG_BFIN_RX_DESC_NUM; i++) { |
| 111 | if (r) { |
| 112 | if (r->skb) { |
| 113 | dev_kfree_skb(r->skb); |
| 114 | r->skb = NULL; |
| 115 | } |
| 116 | r = r->next; |
| 117 | } |
| 118 | } |
| 119 | bfin_mac_free(dma_handle, rx_desc); |
| 120 | } |
| 121 | } |
| 122 | |
| 123 | static int desc_list_init(void) |
| 124 | { |
| 125 | int i; |
| 126 | struct sk_buff *new_skb; |
| 127 | #if !defined(CONFIG_BFIN_MAC_USE_L1) |
| 128 | /* |
| 129 | * This dma_handle is useless in Blackfin dma_alloc_coherent(). |
| 130 | * The real dma handler is the return value of dma_alloc_coherent(). |
| 131 | */ |
| 132 | dma_addr_t dma_handle; |
| 133 | #endif |
| 134 | |
| 135 | tx_desc = bfin_mac_alloc(&dma_handle, |
| 136 | sizeof(struct net_dma_desc_tx) * |
| 137 | CONFIG_BFIN_TX_DESC_NUM); |
| 138 | if (tx_desc == NULL) |
| 139 | goto init_error; |
| 140 | |
| 141 | rx_desc = bfin_mac_alloc(&dma_handle, |
| 142 | sizeof(struct net_dma_desc_rx) * |
| 143 | CONFIG_BFIN_RX_DESC_NUM); |
| 144 | if (rx_desc == NULL) |
| 145 | goto init_error; |
| 146 | |
| 147 | /* init tx_list */ |
| 148 | tx_list_head = tx_list_tail = tx_desc; |
| 149 | |
| 150 | for (i = 0; i < CONFIG_BFIN_TX_DESC_NUM; i++) { |
| 151 | struct net_dma_desc_tx *t = tx_desc + i; |
| 152 | struct dma_descriptor *a = &(t->desc_a); |
| 153 | struct dma_descriptor *b = &(t->desc_b); |
| 154 | |
| 155 | /* |
| 156 | * disable DMA |
| 157 | * read from memory WNR = 0 |
| 158 | * wordsize is 32 bits |
| 159 | * 6 half words is desc size |
| 160 | * large desc flow |
| 161 | */ |
| 162 | a->config = WDSIZE_32 | NDSIZE_6 | DMAFLOW_LARGE; |
| 163 | a->start_addr = (unsigned long)t->packet; |
| 164 | a->x_count = 0; |
| 165 | a->next_dma_desc = b; |
| 166 | |
| 167 | /* |
| 168 | * enabled DMA |
| 169 | * write to memory WNR = 1 |
| 170 | * wordsize is 32 bits |
| 171 | * disable interrupt |
| 172 | * 6 half words is desc size |
| 173 | * large desc flow |
| 174 | */ |
| 175 | b->config = DMAEN | WNR | WDSIZE_32 | NDSIZE_6 | DMAFLOW_LARGE; |
| 176 | b->start_addr = (unsigned long)(&(t->status)); |
| 177 | b->x_count = 0; |
| 178 | |
| 179 | t->skb = NULL; |
| 180 | tx_list_tail->desc_b.next_dma_desc = a; |
| 181 | tx_list_tail->next = t; |
| 182 | tx_list_tail = t; |
| 183 | } |
| 184 | tx_list_tail->next = tx_list_head; /* tx_list is a circle */ |
| 185 | tx_list_tail->desc_b.next_dma_desc = &(tx_list_head->desc_a); |
| 186 | current_tx_ptr = tx_list_head; |
| 187 | |
| 188 | /* init rx_list */ |
| 189 | rx_list_head = rx_list_tail = rx_desc; |
| 190 | |
| 191 | for (i = 0; i < CONFIG_BFIN_RX_DESC_NUM; i++) { |
| 192 | struct net_dma_desc_rx *r = rx_desc + i; |
| 193 | struct dma_descriptor *a = &(r->desc_a); |
| 194 | struct dma_descriptor *b = &(r->desc_b); |
| 195 | |
| 196 | /* allocate a new skb for next time receive */ |
| 197 | new_skb = dev_alloc_skb(PKT_BUF_SZ + 2); |
| 198 | if (!new_skb) { |
| 199 | printk(KERN_NOTICE DRV_NAME |
| 200 | ": init: low on mem - packet dropped\n"); |
| 201 | goto init_error; |
| 202 | } |
| 203 | skb_reserve(new_skb, 2); |
| 204 | r->skb = new_skb; |
| 205 | |
| 206 | /* |
| 207 | * enabled DMA |
| 208 | * write to memory WNR = 1 |
| 209 | * wordsize is 32 bits |
| 210 | * disable interrupt |
| 211 | * 6 half words is desc size |
| 212 | * large desc flow |
| 213 | */ |
| 214 | a->config = DMAEN | WNR | WDSIZE_32 | NDSIZE_6 | DMAFLOW_LARGE; |
| 215 | /* since RXDWA is enabled */ |
| 216 | a->start_addr = (unsigned long)new_skb->data - 2; |
| 217 | a->x_count = 0; |
| 218 | a->next_dma_desc = b; |
| 219 | |
| 220 | /* |
| 221 | * enabled DMA |
| 222 | * write to memory WNR = 1 |
| 223 | * wordsize is 32 bits |
| 224 | * enable interrupt |
| 225 | * 6 half words is desc size |
| 226 | * large desc flow |
| 227 | */ |
| 228 | b->config = DMAEN | WNR | WDSIZE_32 | DI_EN | |
| 229 | NDSIZE_6 | DMAFLOW_LARGE; |
| 230 | b->start_addr = (unsigned long)(&(r->status)); |
| 231 | b->x_count = 0; |
| 232 | |
| 233 | rx_list_tail->desc_b.next_dma_desc = a; |
| 234 | rx_list_tail->next = r; |
| 235 | rx_list_tail = r; |
| 236 | } |
| 237 | rx_list_tail->next = rx_list_head; /* rx_list is a circle */ |
| 238 | rx_list_tail->desc_b.next_dma_desc = &(rx_list_head->desc_a); |
| 239 | current_rx_ptr = rx_list_head; |
| 240 | |
| 241 | return 0; |
| 242 | |
| 243 | init_error: |
| 244 | desc_list_free(); |
| 245 | printk(KERN_ERR DRV_NAME ": kmalloc failed\n"); |
| 246 | return -ENOMEM; |
| 247 | } |
| 248 | |
| 249 | |
| 250 | /*---PHY CONTROL AND CONFIGURATION-----------------------------------------*/ |
| 251 | |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 252 | /* |
| 253 | * MII operations |
| 254 | */ |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 255 | /* Wait until the previous MDC/MDIO transaction has completed */ |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 256 | static void mdio_poll(void) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 257 | { |
| 258 | int timeout_cnt = MAX_TIMEOUT_CNT; |
| 259 | |
| 260 | /* poll the STABUSY bit */ |
| 261 | while ((bfin_read_EMAC_STAADD()) & STABUSY) { |
Bryan Wu | 6db9e46 | 2008-01-30 16:52:21 +0800 | [diff] [blame] | 262 | udelay(1); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 263 | if (timeout_cnt-- < 0) { |
| 264 | printk(KERN_ERR DRV_NAME |
| 265 | ": wait MDC/MDIO transaction to complete timeout\n"); |
| 266 | break; |
| 267 | } |
| 268 | } |
| 269 | } |
| 270 | |
| 271 | /* Read an off-chip register in a PHY through the MDC/MDIO port */ |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 272 | static int mdiobus_read(struct mii_bus *bus, int phy_addr, int regnum) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 273 | { |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 274 | mdio_poll(); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 275 | |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 276 | /* read mode */ |
| 277 | bfin_write_EMAC_STAADD(SET_PHYAD((u16) phy_addr) | |
| 278 | SET_REGAD((u16) regnum) | |
| 279 | STABUSY); |
| 280 | |
| 281 | mdio_poll(); |
| 282 | |
| 283 | return (int) bfin_read_EMAC_STADAT(); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 284 | } |
| 285 | |
| 286 | /* Write an off-chip register in a PHY through the MDC/MDIO port */ |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 287 | static int mdiobus_write(struct mii_bus *bus, int phy_addr, int regnum, |
| 288 | u16 value) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 289 | { |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 290 | mdio_poll(); |
| 291 | |
| 292 | bfin_write_EMAC_STADAT((u32) value); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 293 | |
| 294 | /* write mode */ |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 295 | bfin_write_EMAC_STAADD(SET_PHYAD((u16) phy_addr) | |
| 296 | SET_REGAD((u16) regnum) | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 297 | STAOP | |
| 298 | STABUSY); |
| 299 | |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 300 | mdio_poll(); |
| 301 | |
| 302 | return 0; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 303 | } |
| 304 | |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 305 | static int mdiobus_reset(struct mii_bus *bus) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 306 | { |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 307 | return 0; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 308 | } |
| 309 | |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 310 | static void bfin_mac_adjust_link(struct net_device *dev) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 311 | { |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 312 | struct bfin_mac_local *lp = netdev_priv(dev); |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 313 | struct phy_device *phydev = lp->phydev; |
| 314 | unsigned long flags; |
| 315 | int new_state = 0; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 316 | |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 317 | spin_lock_irqsave(&lp->lock, flags); |
| 318 | if (phydev->link) { |
| 319 | /* Now we make sure that we can be in full duplex mode. |
| 320 | * If not, we operate in half-duplex mode. */ |
| 321 | if (phydev->duplex != lp->old_duplex) { |
| 322 | u32 opmode = bfin_read_EMAC_OPMODE(); |
| 323 | new_state = 1; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 324 | |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 325 | if (phydev->duplex) |
| 326 | opmode |= FDMODE; |
| 327 | else |
| 328 | opmode &= ~(FDMODE); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 329 | |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 330 | bfin_write_EMAC_OPMODE(opmode); |
| 331 | lp->old_duplex = phydev->duplex; |
| 332 | } |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 333 | |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 334 | if (phydev->speed != lp->old_speed) { |
| 335 | #if defined(CONFIG_BFIN_MAC_RMII) |
| 336 | u32 opmode = bfin_read_EMAC_OPMODE(); |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 337 | switch (phydev->speed) { |
| 338 | case 10: |
| 339 | opmode |= RMII_10; |
| 340 | break; |
| 341 | case 100: |
| 342 | opmode &= ~(RMII_10); |
| 343 | break; |
| 344 | default: |
| 345 | printk(KERN_WARNING |
| 346 | "%s: Ack! Speed (%d) is not 10/100!\n", |
| 347 | DRV_NAME, phydev->speed); |
| 348 | break; |
| 349 | } |
| 350 | bfin_write_EMAC_OPMODE(opmode); |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 351 | #endif |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 352 | |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 353 | new_state = 1; |
| 354 | lp->old_speed = phydev->speed; |
| 355 | } |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 356 | |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 357 | if (!lp->old_link) { |
| 358 | new_state = 1; |
| 359 | lp->old_link = 1; |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 360 | } |
| 361 | } else if (lp->old_link) { |
| 362 | new_state = 1; |
| 363 | lp->old_link = 0; |
| 364 | lp->old_speed = 0; |
| 365 | lp->old_duplex = -1; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 366 | } |
| 367 | |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 368 | if (new_state) { |
| 369 | u32 opmode = bfin_read_EMAC_OPMODE(); |
| 370 | phy_print_status(phydev); |
| 371 | pr_debug("EMAC_OPMODE = 0x%08x\n", opmode); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 372 | } |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 373 | |
| 374 | spin_unlock_irqrestore(&lp->lock, flags); |
| 375 | } |
| 376 | |
Bryan Wu | 7cc8f38 | 2008-01-30 16:52:22 +0800 | [diff] [blame] | 377 | /* MDC = 2.5 MHz */ |
| 378 | #define MDC_CLK 2500000 |
| 379 | |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 380 | static int mii_probe(struct net_device *dev) |
| 381 | { |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 382 | struct bfin_mac_local *lp = netdev_priv(dev); |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 383 | struct phy_device *phydev = NULL; |
| 384 | unsigned short sysctl; |
| 385 | int i; |
Bryan Wu | 7cc8f38 | 2008-01-30 16:52:22 +0800 | [diff] [blame] | 386 | u32 sclk, mdc_div; |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 387 | |
| 388 | /* Enable PHY output early */ |
| 389 | if (!(bfin_read_VR_CTL() & PHYCLKOE)) |
| 390 | bfin_write_VR_CTL(bfin_read_VR_CTL() | PHYCLKOE); |
| 391 | |
Bryan Wu | 7cc8f38 | 2008-01-30 16:52:22 +0800 | [diff] [blame] | 392 | sclk = get_sclk(); |
| 393 | mdc_div = ((sclk / MDC_CLK) / 2) - 1; |
| 394 | |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 395 | sysctl = bfin_read_EMAC_SYSCTL(); |
Bryan Wu | 9dc7f30 | 2008-01-30 16:52:28 +0800 | [diff] [blame] | 396 | sysctl = (sysctl & ~MDCDIV) | SET_MDCDIV(mdc_div); |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 397 | bfin_write_EMAC_SYSCTL(sysctl); |
| 398 | |
| 399 | /* search for connect PHY device */ |
| 400 | for (i = 0; i < PHY_MAX_ADDR; i++) { |
| 401 | struct phy_device *const tmp_phydev = lp->mii_bus.phy_map[i]; |
| 402 | |
| 403 | if (!tmp_phydev) |
| 404 | continue; /* no PHY here... */ |
| 405 | |
| 406 | phydev = tmp_phydev; |
| 407 | break; /* found it */ |
| 408 | } |
| 409 | |
| 410 | /* now we are supposed to have a proper phydev, to attach to... */ |
| 411 | if (!phydev) { |
| 412 | printk(KERN_INFO "%s: Don't found any phy device at all\n", |
| 413 | dev->name); |
| 414 | return -ENODEV; |
| 415 | } |
| 416 | |
| 417 | #if defined(CONFIG_BFIN_MAC_RMII) |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 418 | phydev = phy_connect(dev, phydev->dev.bus_id, &bfin_mac_adjust_link, 0, |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 419 | PHY_INTERFACE_MODE_RMII); |
| 420 | #else |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 421 | phydev = phy_connect(dev, phydev->dev.bus_id, &bfin_mac_adjust_link, 0, |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 422 | PHY_INTERFACE_MODE_MII); |
| 423 | #endif |
| 424 | |
| 425 | if (IS_ERR(phydev)) { |
| 426 | printk(KERN_ERR "%s: Could not attach to PHY\n", dev->name); |
| 427 | return PTR_ERR(phydev); |
| 428 | } |
| 429 | |
| 430 | /* mask with MAC supported features */ |
| 431 | phydev->supported &= (SUPPORTED_10baseT_Half |
| 432 | | SUPPORTED_10baseT_Full |
| 433 | | SUPPORTED_100baseT_Half |
| 434 | | SUPPORTED_100baseT_Full |
| 435 | | SUPPORTED_Autoneg |
| 436 | | SUPPORTED_Pause | SUPPORTED_Asym_Pause |
| 437 | | SUPPORTED_MII |
| 438 | | SUPPORTED_TP); |
| 439 | |
| 440 | phydev->advertising = phydev->supported; |
| 441 | |
| 442 | lp->old_link = 0; |
| 443 | lp->old_speed = 0; |
| 444 | lp->old_duplex = -1; |
| 445 | lp->phydev = phydev; |
| 446 | |
| 447 | printk(KERN_INFO "%s: attached PHY driver [%s] " |
Bryan Wu | 7cc8f38 | 2008-01-30 16:52:22 +0800 | [diff] [blame] | 448 | "(mii_bus:phy_addr=%s, irq=%d, mdc_clk=%dHz(mdc_div=%d)" |
| 449 | "@sclk=%dMHz)\n", |
| 450 | DRV_NAME, phydev->drv->name, phydev->dev.bus_id, phydev->irq, |
| 451 | MDC_CLK, mdc_div, sclk/1000000); |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 452 | |
| 453 | return 0; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 454 | } |
| 455 | |
Bryan Wu | 679dce3 | 2008-04-25 11:53:11 +0800 | [diff] [blame] | 456 | /* |
| 457 | * Ethtool support |
| 458 | */ |
| 459 | |
| 460 | static int |
| 461 | bfin_mac_ethtool_getsettings(struct net_device *dev, struct ethtool_cmd *cmd) |
| 462 | { |
| 463 | struct bfin_mac_local *lp = netdev_priv(dev); |
| 464 | |
| 465 | if (lp->phydev) |
| 466 | return phy_ethtool_gset(lp->phydev, cmd); |
| 467 | |
| 468 | return -EINVAL; |
| 469 | } |
| 470 | |
| 471 | static int |
| 472 | bfin_mac_ethtool_setsettings(struct net_device *dev, struct ethtool_cmd *cmd) |
| 473 | { |
| 474 | struct bfin_mac_local *lp = netdev_priv(dev); |
| 475 | |
| 476 | if (!capable(CAP_NET_ADMIN)) |
| 477 | return -EPERM; |
| 478 | |
| 479 | if (lp->phydev) |
| 480 | return phy_ethtool_sset(lp->phydev, cmd); |
| 481 | |
| 482 | return -EINVAL; |
| 483 | } |
| 484 | |
| 485 | static void bfin_mac_ethtool_getdrvinfo(struct net_device *dev, |
| 486 | struct ethtool_drvinfo *info) |
| 487 | { |
| 488 | strcpy(info->driver, DRV_NAME); |
| 489 | strcpy(info->version, DRV_VERSION); |
| 490 | strcpy(info->fw_version, "N/A"); |
| 491 | strcpy(info->bus_info, dev->dev.bus_id); |
| 492 | } |
| 493 | |
| 494 | static struct ethtool_ops bfin_mac_ethtool_ops = { |
| 495 | .get_settings = bfin_mac_ethtool_getsettings, |
| 496 | .set_settings = bfin_mac_ethtool_setsettings, |
| 497 | .get_link = ethtool_op_get_link, |
| 498 | .get_drvinfo = bfin_mac_ethtool_getdrvinfo, |
| 499 | }; |
| 500 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 501 | /**************************************************************************/ |
| 502 | void setup_system_regs(struct net_device *dev) |
| 503 | { |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 504 | unsigned short sysctl; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 505 | |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 506 | /* |
| 507 | * Odd word alignment for Receive Frame DMA word |
| 508 | * Configure checksum support and rcve frame word alignment |
| 509 | */ |
| 510 | sysctl = bfin_read_EMAC_SYSCTL(); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 511 | #if defined(BFIN_MAC_CSUM_OFFLOAD) |
| 512 | sysctl |= RXDWA | RXCKS; |
| 513 | #else |
| 514 | sysctl |= RXDWA; |
| 515 | #endif |
| 516 | bfin_write_EMAC_SYSCTL(sysctl); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 517 | |
| 518 | bfin_write_EMAC_MMC_CTL(RSTC | CROLL); |
| 519 | |
| 520 | /* Initialize the TX DMA channel registers */ |
| 521 | bfin_write_DMA2_X_COUNT(0); |
| 522 | bfin_write_DMA2_X_MODIFY(4); |
| 523 | bfin_write_DMA2_Y_COUNT(0); |
| 524 | bfin_write_DMA2_Y_MODIFY(0); |
| 525 | |
| 526 | /* Initialize the RX DMA channel registers */ |
| 527 | bfin_write_DMA1_X_COUNT(0); |
| 528 | bfin_write_DMA1_X_MODIFY(4); |
| 529 | bfin_write_DMA1_Y_COUNT(0); |
| 530 | bfin_write_DMA1_Y_MODIFY(0); |
| 531 | } |
| 532 | |
Alex Landau | 73f8318 | 2007-09-19 23:14:18 +0800 | [diff] [blame] | 533 | static void setup_mac_addr(u8 *mac_addr) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 534 | { |
| 535 | u32 addr_low = le32_to_cpu(*(__le32 *) & mac_addr[0]); |
| 536 | u16 addr_hi = le16_to_cpu(*(__le16 *) & mac_addr[4]); |
| 537 | |
| 538 | /* this depends on a little-endian machine */ |
| 539 | bfin_write_EMAC_ADDRLO(addr_low); |
| 540 | bfin_write_EMAC_ADDRHI(addr_hi); |
| 541 | } |
| 542 | |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 543 | static int bfin_mac_set_mac_address(struct net_device *dev, void *p) |
Alex Landau | 73f8318 | 2007-09-19 23:14:18 +0800 | [diff] [blame] | 544 | { |
| 545 | struct sockaddr *addr = p; |
| 546 | if (netif_running(dev)) |
| 547 | return -EBUSY; |
| 548 | memcpy(dev->dev_addr, addr->sa_data, dev->addr_len); |
| 549 | setup_mac_addr(dev->dev_addr); |
| 550 | return 0; |
| 551 | } |
| 552 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 553 | static void adjust_tx_list(void) |
| 554 | { |
| 555 | int timeout_cnt = MAX_TIMEOUT_CNT; |
| 556 | |
| 557 | if (tx_list_head->status.status_word != 0 |
| 558 | && current_tx_ptr != tx_list_head) { |
| 559 | goto adjust_head; /* released something, just return; */ |
| 560 | } |
| 561 | |
| 562 | /* |
| 563 | * if nothing released, check wait condition |
| 564 | * current's next can not be the head, |
| 565 | * otherwise the dma will not stop as we want |
| 566 | */ |
| 567 | if (current_tx_ptr->next->next == tx_list_head) { |
| 568 | while (tx_list_head->status.status_word == 0) { |
Bryan Wu | 6db9e46 | 2008-01-30 16:52:21 +0800 | [diff] [blame] | 569 | mdelay(1); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 570 | if (tx_list_head->status.status_word != 0 |
| 571 | || !(bfin_read_DMA2_IRQ_STATUS() & 0x08)) { |
| 572 | goto adjust_head; |
| 573 | } |
| 574 | if (timeout_cnt-- < 0) { |
| 575 | printk(KERN_ERR DRV_NAME |
| 576 | ": wait for adjust tx list head timeout\n"); |
| 577 | break; |
| 578 | } |
| 579 | } |
| 580 | if (tx_list_head->status.status_word != 0) { |
| 581 | goto adjust_head; |
| 582 | } |
| 583 | } |
| 584 | |
| 585 | return; |
| 586 | |
| 587 | adjust_head: |
| 588 | do { |
| 589 | tx_list_head->desc_a.config &= ~DMAEN; |
| 590 | tx_list_head->status.status_word = 0; |
| 591 | if (tx_list_head->skb) { |
| 592 | dev_kfree_skb(tx_list_head->skb); |
| 593 | tx_list_head->skb = NULL; |
| 594 | } else { |
| 595 | printk(KERN_ERR DRV_NAME |
| 596 | ": no sk_buff in a transmitted frame!\n"); |
| 597 | } |
| 598 | tx_list_head = tx_list_head->next; |
| 599 | } while (tx_list_head->status.status_word != 0 |
| 600 | && current_tx_ptr != tx_list_head); |
| 601 | return; |
| 602 | |
| 603 | } |
| 604 | |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 605 | static int bfin_mac_hard_start_xmit(struct sk_buff *skb, |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 606 | struct net_device *dev) |
| 607 | { |
Bryan Wu | a50c0c0 | 2008-07-27 22:45:04 +0800 | [diff] [blame] | 608 | u16 *data; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 609 | |
| 610 | current_tx_ptr->skb = skb; |
| 611 | |
Bryan Wu | a50c0c0 | 2008-07-27 22:45:04 +0800 | [diff] [blame] | 612 | if (ANOMALY_05000285) { |
| 613 | /* |
| 614 | * TXDWA feature is not avaible to older revision < 0.3 silicon |
| 615 | * of BF537 |
| 616 | * |
| 617 | * Only if data buffer is ODD WORD alignment, we do not |
| 618 | * need to memcpy |
| 619 | */ |
| 620 | u32 data_align = (u32)(skb->data) & 0x3; |
| 621 | if (data_align == 0x2) { |
| 622 | /* move skb->data to current_tx_ptr payload */ |
| 623 | data = (u16 *)(skb->data) - 1; |
| 624 | *data = (u16)(skb->len); |
| 625 | current_tx_ptr->desc_a.start_addr = (u32)data; |
| 626 | /* this is important! */ |
| 627 | blackfin_dcache_flush_range((u32)data, |
| 628 | (u32)((u8 *)data + skb->len + 4)); |
| 629 | } else { |
| 630 | *((u16 *)(current_tx_ptr->packet)) = (u16)(skb->len); |
| 631 | memcpy((u8 *)(current_tx_ptr->packet + 2), skb->data, |
| 632 | skb->len); |
| 633 | current_tx_ptr->desc_a.start_addr = |
| 634 | (u32)current_tx_ptr->packet; |
| 635 | if (current_tx_ptr->status.status_word != 0) |
| 636 | current_tx_ptr->status.status_word = 0; |
| 637 | blackfin_dcache_flush_range( |
| 638 | (u32)current_tx_ptr->packet, |
| 639 | (u32)(current_tx_ptr->packet + skb->len + 2)); |
| 640 | } |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 641 | } else { |
Bryan Wu | a50c0c0 | 2008-07-27 22:45:04 +0800 | [diff] [blame] | 642 | /* |
| 643 | * TXDWA feature is avaible to revision < 0.3 silicon of |
| 644 | * BF537 and always avaible to BF52x |
| 645 | */ |
| 646 | u32 data_align = (u32)(skb->data) & 0x3; |
| 647 | if (data_align == 0x0) { |
| 648 | u16 sysctl = bfin_read_EMAC_SYSCTL(); |
| 649 | sysctl |= TXDWA; |
| 650 | bfin_write_EMAC_SYSCTL(sysctl); |
| 651 | |
| 652 | /* move skb->data to current_tx_ptr payload */ |
| 653 | data = (u16 *)(skb->data) - 2; |
| 654 | *data = (u16)(skb->len); |
| 655 | current_tx_ptr->desc_a.start_addr = (u32)data; |
| 656 | /* this is important! */ |
| 657 | blackfin_dcache_flush_range( |
| 658 | (u32)data, |
| 659 | (u32)((u8 *)data + skb->len + 4)); |
| 660 | } else if (data_align == 0x2) { |
| 661 | u16 sysctl = bfin_read_EMAC_SYSCTL(); |
| 662 | sysctl &= ~TXDWA; |
| 663 | bfin_write_EMAC_SYSCTL(sysctl); |
| 664 | |
| 665 | /* move skb->data to current_tx_ptr payload */ |
| 666 | data = (u16 *)(skb->data) - 1; |
| 667 | *data = (u16)(skb->len); |
| 668 | current_tx_ptr->desc_a.start_addr = (u32)data; |
| 669 | /* this is important! */ |
| 670 | blackfin_dcache_flush_range( |
| 671 | (u32)data, |
| 672 | (u32)((u8 *)data + skb->len + 4)); |
| 673 | } else { |
| 674 | u16 sysctl = bfin_read_EMAC_SYSCTL(); |
| 675 | sysctl &= ~TXDWA; |
| 676 | bfin_write_EMAC_SYSCTL(sysctl); |
| 677 | |
| 678 | *((u16 *)(current_tx_ptr->packet)) = (u16)(skb->len); |
| 679 | memcpy((u8 *)(current_tx_ptr->packet + 2), skb->data, |
| 680 | skb->len); |
| 681 | current_tx_ptr->desc_a.start_addr = |
| 682 | (u32)current_tx_ptr->packet; |
| 683 | if (current_tx_ptr->status.status_word != 0) |
| 684 | current_tx_ptr->status.status_word = 0; |
| 685 | blackfin_dcache_flush_range( |
| 686 | (u32)current_tx_ptr->packet, |
| 687 | (u32)(current_tx_ptr->packet + skb->len + 2)); |
| 688 | } |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 689 | } |
| 690 | |
| 691 | /* enable this packet's dma */ |
| 692 | current_tx_ptr->desc_a.config |= DMAEN; |
| 693 | |
| 694 | /* tx dma is running, just return */ |
| 695 | if (bfin_read_DMA2_IRQ_STATUS() & 0x08) |
| 696 | goto out; |
| 697 | |
| 698 | /* tx dma is not running */ |
| 699 | bfin_write_DMA2_NEXT_DESC_PTR(&(current_tx_ptr->desc_a)); |
| 700 | /* dma enabled, read from memory, size is 6 */ |
| 701 | bfin_write_DMA2_CONFIG(current_tx_ptr->desc_a.config); |
| 702 | /* Turn on the EMAC tx */ |
| 703 | bfin_write_EMAC_OPMODE(bfin_read_EMAC_OPMODE() | TE); |
| 704 | |
| 705 | out: |
| 706 | adjust_tx_list(); |
| 707 | current_tx_ptr = current_tx_ptr->next; |
| 708 | dev->trans_start = jiffies; |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 709 | dev->stats.tx_packets++; |
| 710 | dev->stats.tx_bytes += (skb->len); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 711 | return 0; |
| 712 | } |
| 713 | |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 714 | static void bfin_mac_rx(struct net_device *dev) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 715 | { |
| 716 | struct sk_buff *skb, *new_skb; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 717 | unsigned short len; |
| 718 | |
| 719 | /* allocate a new skb for next time receive */ |
| 720 | skb = current_rx_ptr->skb; |
| 721 | new_skb = dev_alloc_skb(PKT_BUF_SZ + 2); |
| 722 | if (!new_skb) { |
| 723 | printk(KERN_NOTICE DRV_NAME |
| 724 | ": rx: low on mem - packet dropped\n"); |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 725 | dev->stats.rx_dropped++; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 726 | goto out; |
| 727 | } |
| 728 | /* reserve 2 bytes for RXDWA padding */ |
| 729 | skb_reserve(new_skb, 2); |
| 730 | current_rx_ptr->skb = new_skb; |
| 731 | current_rx_ptr->desc_a.start_addr = (unsigned long)new_skb->data - 2; |
| 732 | |
Alexey Demin | 6e01d1a | 2008-01-30 16:52:27 +0800 | [diff] [blame] | 733 | /* Invidate the data cache of skb->data range when it is write back |
| 734 | * cache. It will prevent overwritting the new data from DMA |
| 735 | */ |
| 736 | blackfin_dcache_invalidate_range((unsigned long)new_skb->head, |
| 737 | (unsigned long)new_skb->end); |
| 738 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 739 | len = (unsigned short)((current_rx_ptr->status.status_word) & RX_FRLEN); |
| 740 | skb_put(skb, len); |
| 741 | blackfin_dcache_invalidate_range((unsigned long)skb->head, |
| 742 | (unsigned long)skb->tail); |
| 743 | |
| 744 | dev->last_rx = jiffies; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 745 | skb->protocol = eth_type_trans(skb, dev); |
| 746 | #if defined(BFIN_MAC_CSUM_OFFLOAD) |
| 747 | skb->csum = current_rx_ptr->status.ip_payload_csum; |
Vitja Makarov | 00ff49a | 2007-11-23 17:55:51 +0800 | [diff] [blame] | 748 | skb->ip_summed = CHECKSUM_COMPLETE; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 749 | #endif |
| 750 | |
| 751 | netif_rx(skb); |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 752 | dev->stats.rx_packets++; |
| 753 | dev->stats.rx_bytes += len; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 754 | current_rx_ptr->status.status_word = 0x00000000; |
| 755 | current_rx_ptr = current_rx_ptr->next; |
| 756 | |
| 757 | out: |
| 758 | return; |
| 759 | } |
| 760 | |
| 761 | /* interrupt routine to handle rx and error signal */ |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 762 | static irqreturn_t bfin_mac_interrupt(int irq, void *dev_id) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 763 | { |
| 764 | struct net_device *dev = dev_id; |
| 765 | int number = 0; |
| 766 | |
| 767 | get_one_packet: |
| 768 | if (current_rx_ptr->status.status_word == 0) { |
| 769 | /* no more new packet received */ |
| 770 | if (number == 0) { |
| 771 | if (current_rx_ptr->next->status.status_word != 0) { |
| 772 | current_rx_ptr = current_rx_ptr->next; |
| 773 | goto real_rx; |
| 774 | } |
| 775 | } |
| 776 | bfin_write_DMA1_IRQ_STATUS(bfin_read_DMA1_IRQ_STATUS() | |
| 777 | DMA_DONE | DMA_ERR); |
| 778 | return IRQ_HANDLED; |
| 779 | } |
| 780 | |
| 781 | real_rx: |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 782 | bfin_mac_rx(dev); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 783 | number++; |
| 784 | goto get_one_packet; |
| 785 | } |
| 786 | |
| 787 | #ifdef CONFIG_NET_POLL_CONTROLLER |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 788 | static void bfin_mac_poll(struct net_device *dev) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 789 | { |
| 790 | disable_irq(IRQ_MAC_RX); |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 791 | bfin_mac_interrupt(IRQ_MAC_RX, dev); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 792 | enable_irq(IRQ_MAC_RX); |
| 793 | } |
| 794 | #endif /* CONFIG_NET_POLL_CONTROLLER */ |
| 795 | |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 796 | static void bfin_mac_disable(void) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 797 | { |
| 798 | unsigned int opmode; |
| 799 | |
| 800 | opmode = bfin_read_EMAC_OPMODE(); |
| 801 | opmode &= (~RE); |
| 802 | opmode &= (~TE); |
| 803 | /* Turn off the EMAC */ |
| 804 | bfin_write_EMAC_OPMODE(opmode); |
| 805 | } |
| 806 | |
| 807 | /* |
| 808 | * Enable Interrupts, Receive, and Transmit |
| 809 | */ |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 810 | static void bfin_mac_enable(void) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 811 | { |
| 812 | u32 opmode; |
| 813 | |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 814 | pr_debug("%s: %s\n", DRV_NAME, __FUNCTION__); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 815 | |
| 816 | /* Set RX DMA */ |
| 817 | bfin_write_DMA1_NEXT_DESC_PTR(&(rx_list_head->desc_a)); |
| 818 | bfin_write_DMA1_CONFIG(rx_list_head->desc_a.config); |
| 819 | |
| 820 | /* Wait MII done */ |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 821 | mdio_poll(); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 822 | |
| 823 | /* We enable only RX here */ |
| 824 | /* ASTP : Enable Automatic Pad Stripping |
| 825 | PR : Promiscuous Mode for test |
| 826 | PSF : Receive frames with total length less than 64 bytes. |
| 827 | FDMODE : Full Duplex Mode |
| 828 | LB : Internal Loopback for test |
| 829 | RE : Receiver Enable */ |
| 830 | opmode = bfin_read_EMAC_OPMODE(); |
| 831 | if (opmode & FDMODE) |
| 832 | opmode |= PSF; |
| 833 | else |
| 834 | opmode |= DRO | DC | PSF; |
| 835 | opmode |= RE; |
| 836 | |
| 837 | #if defined(CONFIG_BFIN_MAC_RMII) |
| 838 | opmode |= RMII; /* For Now only 100MBit are supported */ |
Michael Hennerich | 6893ff1 | 2008-01-30 16:52:25 +0800 | [diff] [blame] | 839 | #if (defined(CONFIG_BF537) || defined(CONFIG_BF536)) && CONFIG_BF_REV_0_2 |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 840 | opmode |= TE; |
| 841 | #endif |
| 842 | #endif |
| 843 | /* Turn on the EMAC rx */ |
| 844 | bfin_write_EMAC_OPMODE(opmode); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 845 | } |
| 846 | |
| 847 | /* Our watchdog timed out. Called by the networking layer */ |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 848 | static void bfin_mac_timeout(struct net_device *dev) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 849 | { |
| 850 | pr_debug("%s: %s\n", dev->name, __FUNCTION__); |
| 851 | |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 852 | bfin_mac_disable(); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 853 | |
| 854 | /* reset tx queue */ |
| 855 | tx_list_tail = tx_list_head->next; |
| 856 | |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 857 | bfin_mac_enable(); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 858 | |
| 859 | /* We can accept TX packets again */ |
| 860 | dev->trans_start = jiffies; |
| 861 | netif_wake_queue(dev); |
| 862 | } |
| 863 | |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 864 | static void bfin_mac_multicast_hash(struct net_device *dev) |
Aidan Williams | 775919b | 2008-01-30 16:52:23 +0800 | [diff] [blame] | 865 | { |
| 866 | u32 emac_hashhi, emac_hashlo; |
| 867 | struct dev_mc_list *dmi = dev->mc_list; |
| 868 | char *addrs; |
| 869 | int i; |
| 870 | u32 crc; |
| 871 | |
| 872 | emac_hashhi = emac_hashlo = 0; |
| 873 | |
| 874 | for (i = 0; i < dev->mc_count; i++) { |
| 875 | addrs = dmi->dmi_addr; |
| 876 | dmi = dmi->next; |
| 877 | |
| 878 | /* skip non-multicast addresses */ |
| 879 | if (!(*addrs & 1)) |
| 880 | continue; |
| 881 | |
| 882 | crc = ether_crc(ETH_ALEN, addrs); |
| 883 | crc >>= 26; |
| 884 | |
| 885 | if (crc & 0x20) |
| 886 | emac_hashhi |= 1 << (crc & 0x1f); |
| 887 | else |
| 888 | emac_hashlo |= 1 << (crc & 0x1f); |
| 889 | } |
| 890 | |
| 891 | bfin_write_EMAC_HASHHI(emac_hashhi); |
| 892 | bfin_write_EMAC_HASHLO(emac_hashlo); |
| 893 | |
| 894 | return; |
| 895 | } |
| 896 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 897 | /* |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 898 | * This routine will, depending on the values passed to it, |
| 899 | * either make it accept multicast packets, go into |
| 900 | * promiscuous mode (for TCPDUMP and cousins) or accept |
| 901 | * a select set of multicast packets |
| 902 | */ |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 903 | static void bfin_mac_set_multicast_list(struct net_device *dev) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 904 | { |
| 905 | u32 sysctl; |
| 906 | |
| 907 | if (dev->flags & IFF_PROMISC) { |
| 908 | printk(KERN_INFO "%s: set to promisc mode\n", dev->name); |
| 909 | sysctl = bfin_read_EMAC_OPMODE(); |
| 910 | sysctl |= RAF; |
| 911 | bfin_write_EMAC_OPMODE(sysctl); |
Aidan Williams | 775919b | 2008-01-30 16:52:23 +0800 | [diff] [blame] | 912 | } else if (dev->flags & IFF_ALLMULTI) { |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 913 | /* accept all multicast */ |
| 914 | sysctl = bfin_read_EMAC_OPMODE(); |
| 915 | sysctl |= PAM; |
| 916 | bfin_write_EMAC_OPMODE(sysctl); |
Aidan Williams | 775919b | 2008-01-30 16:52:23 +0800 | [diff] [blame] | 917 | } else if (dev->mc_count) { |
| 918 | /* set up multicast hash table */ |
| 919 | sysctl = bfin_read_EMAC_OPMODE(); |
| 920 | sysctl |= HM; |
| 921 | bfin_write_EMAC_OPMODE(sysctl); |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 922 | bfin_mac_multicast_hash(dev); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 923 | } else { |
| 924 | /* clear promisc or multicast mode */ |
| 925 | sysctl = bfin_read_EMAC_OPMODE(); |
| 926 | sysctl &= ~(RAF | PAM); |
| 927 | bfin_write_EMAC_OPMODE(sysctl); |
| 928 | } |
| 929 | } |
| 930 | |
| 931 | /* |
| 932 | * this puts the device in an inactive state |
| 933 | */ |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 934 | static void bfin_mac_shutdown(struct net_device *dev) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 935 | { |
| 936 | /* Turn off the EMAC */ |
| 937 | bfin_write_EMAC_OPMODE(0x00000000); |
| 938 | /* Turn off the EMAC RX DMA */ |
| 939 | bfin_write_DMA1_CONFIG(0x0000); |
| 940 | bfin_write_DMA2_CONFIG(0x0000); |
| 941 | } |
| 942 | |
| 943 | /* |
| 944 | * Open and Initialize the interface |
| 945 | * |
| 946 | * Set up everything, reset the card, etc.. |
| 947 | */ |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 948 | static int bfin_mac_open(struct net_device *dev) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 949 | { |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 950 | struct bfin_mac_local *lp = netdev_priv(dev); |
Michael Hennerich | 4af4b84 | 2007-07-25 14:09:54 +0800 | [diff] [blame] | 951 | int retval; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 952 | pr_debug("%s: %s\n", dev->name, __FUNCTION__); |
| 953 | |
| 954 | /* |
| 955 | * Check that the address is valid. If its not, refuse |
| 956 | * to bring the device up. The user must specify an |
| 957 | * address using ifconfig eth0 hw ether xx:xx:xx:xx:xx:xx |
| 958 | */ |
| 959 | if (!is_valid_ether_addr(dev->dev_addr)) { |
| 960 | printk(KERN_WARNING DRV_NAME ": no valid ethernet hw addr\n"); |
| 961 | return -EINVAL; |
| 962 | } |
| 963 | |
| 964 | /* initial rx and tx list */ |
Michael Hennerich | 4af4b84 | 2007-07-25 14:09:54 +0800 | [diff] [blame] | 965 | retval = desc_list_init(); |
| 966 | |
| 967 | if (retval) |
| 968 | return retval; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 969 | |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 970 | phy_start(lp->phydev); |
Vitja Makarov | 136492b | 2008-01-30 16:52:26 +0800 | [diff] [blame] | 971 | phy_write(lp->phydev, MII_BMCR, BMCR_RESET); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 972 | setup_system_regs(dev); |
Michael Hennerich | ee02fee | 2008-07-27 22:45:05 +0800 | [diff] [blame] | 973 | setup_mac_addr(dev->dev_addr); |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 974 | bfin_mac_disable(); |
| 975 | bfin_mac_enable(); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 976 | pr_debug("hardware init finished\n"); |
| 977 | netif_start_queue(dev); |
| 978 | netif_carrier_on(dev); |
| 979 | |
| 980 | return 0; |
| 981 | } |
| 982 | |
| 983 | /* |
| 984 | * |
| 985 | * this makes the board clean up everything that it can |
| 986 | * and not talk to the outside world. Caused by |
| 987 | * an 'ifconfig ethX down' |
| 988 | */ |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 989 | static int bfin_mac_close(struct net_device *dev) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 990 | { |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 991 | struct bfin_mac_local *lp = netdev_priv(dev); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 992 | pr_debug("%s: %s\n", dev->name, __FUNCTION__); |
| 993 | |
| 994 | netif_stop_queue(dev); |
| 995 | netif_carrier_off(dev); |
| 996 | |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 997 | phy_stop(lp->phydev); |
Vitja Makarov | 136492b | 2008-01-30 16:52:26 +0800 | [diff] [blame] | 998 | phy_write(lp->phydev, MII_BMCR, BMCR_PDOWN); |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 999 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1000 | /* clear everything */ |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1001 | bfin_mac_shutdown(dev); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1002 | |
| 1003 | /* free the rx/tx buffers */ |
| 1004 | desc_list_free(); |
| 1005 | |
| 1006 | return 0; |
| 1007 | } |
| 1008 | |
Mike Frysinger | d7b843d3 | 2008-07-27 22:45:03 +0800 | [diff] [blame] | 1009 | static int __devinit bfin_mac_probe(struct platform_device *pdev) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1010 | { |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1011 | struct net_device *ndev; |
| 1012 | struct bfin_mac_local *lp; |
| 1013 | int rc, i; |
| 1014 | |
| 1015 | ndev = alloc_etherdev(sizeof(struct bfin_mac_local)); |
| 1016 | if (!ndev) { |
| 1017 | dev_err(&pdev->dev, "Cannot allocate net device!\n"); |
| 1018 | return -ENOMEM; |
| 1019 | } |
| 1020 | |
| 1021 | SET_NETDEV_DEV(ndev, &pdev->dev); |
| 1022 | platform_set_drvdata(pdev, ndev); |
| 1023 | lp = netdev_priv(ndev); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1024 | |
| 1025 | /* Grab the MAC address in the MAC */ |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1026 | *(__le32 *) (&(ndev->dev_addr[0])) = cpu_to_le32(bfin_read_EMAC_ADDRLO()); |
| 1027 | *(__le16 *) (&(ndev->dev_addr[4])) = cpu_to_le16((u16) bfin_read_EMAC_ADDRHI()); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1028 | |
| 1029 | /* probe mac */ |
| 1030 | /*todo: how to proble? which is revision_register */ |
| 1031 | bfin_write_EMAC_ADDRLO(0x12345678); |
| 1032 | if (bfin_read_EMAC_ADDRLO() != 0x12345678) { |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1033 | dev_err(&pdev->dev, "Cannot detect Blackfin on-chip ethernet MAC controller!\n"); |
| 1034 | rc = -ENODEV; |
| 1035 | goto out_err_probe_mac; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1036 | } |
| 1037 | |
| 1038 | /* set the GPIO pins to Ethernet mode */ |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1039 | rc = peripheral_request_list(pin_req, DRV_NAME); |
| 1040 | if (rc) { |
| 1041 | dev_err(&pdev->dev, "Requesting peripherals failed!\n"); |
| 1042 | rc = -EFAULT; |
| 1043 | goto out_err_setup_pin_mux; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1044 | } |
| 1045 | |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1046 | /* |
| 1047 | * Is it valid? (Did bootloader initialize it?) |
| 1048 | * Grab the MAC from the board somehow |
| 1049 | * this is done in the arch/blackfin/mach-bfxxx/boards/eth_mac.c |
| 1050 | */ |
| 1051 | if (!is_valid_ether_addr(ndev->dev_addr)) |
| 1052 | bfin_get_ether_addr(ndev->dev_addr); |
| 1053 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1054 | /* If still not valid, get a random one */ |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1055 | if (!is_valid_ether_addr(ndev->dev_addr)) |
| 1056 | random_ether_addr(ndev->dev_addr); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1057 | |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1058 | setup_mac_addr(ndev->dev_addr); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1059 | |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 1060 | /* MDIO bus initial */ |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1061 | lp->mii_bus.priv = ndev; |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 1062 | lp->mii_bus.read = mdiobus_read; |
| 1063 | lp->mii_bus.write = mdiobus_write; |
| 1064 | lp->mii_bus.reset = mdiobus_reset; |
| 1065 | lp->mii_bus.name = "bfin_mac_mdio"; |
Andy Fleming | 9d9326d | 2008-04-09 19:38:13 -0500 | [diff] [blame] | 1066 | snprintf(lp->mii_bus.id, MII_BUS_ID_SIZE, "0"); |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 1067 | lp->mii_bus.irq = kmalloc(sizeof(int)*PHY_MAX_ADDR, GFP_KERNEL); |
| 1068 | for (i = 0; i < PHY_MAX_ADDR; ++i) |
| 1069 | lp->mii_bus.irq[i] = PHY_POLL; |
| 1070 | |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1071 | rc = mdiobus_register(&lp->mii_bus); |
| 1072 | if (rc) { |
| 1073 | dev_err(&pdev->dev, "Cannot register MDIO bus!\n"); |
| 1074 | goto out_err_mdiobus_register; |
| 1075 | } |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 1076 | |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1077 | rc = mii_probe(ndev); |
| 1078 | if (rc) { |
| 1079 | dev_err(&pdev->dev, "MII Probe failed!\n"); |
| 1080 | goto out_err_mii_probe; |
| 1081 | } |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 1082 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1083 | /* Fill in the fields of the device structure with ethernet values. */ |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1084 | ether_setup(ndev); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1085 | |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1086 | ndev->open = bfin_mac_open; |
| 1087 | ndev->stop = bfin_mac_close; |
| 1088 | ndev->hard_start_xmit = bfin_mac_hard_start_xmit; |
| 1089 | ndev->set_mac_address = bfin_mac_set_mac_address; |
| 1090 | ndev->tx_timeout = bfin_mac_timeout; |
| 1091 | ndev->set_multicast_list = bfin_mac_set_multicast_list; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1092 | #ifdef CONFIG_NET_POLL_CONTROLLER |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1093 | ndev->poll_controller = bfin_mac_poll; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1094 | #endif |
Bryan Wu | 679dce3 | 2008-04-25 11:53:11 +0800 | [diff] [blame] | 1095 | ndev->ethtool_ops = &bfin_mac_ethtool_ops; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1096 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1097 | spin_lock_init(&lp->lock); |
| 1098 | |
| 1099 | /* now, enable interrupts */ |
| 1100 | /* register irq handler */ |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1101 | rc = request_irq(IRQ_MAC_RX, bfin_mac_interrupt, |
| 1102 | IRQF_DISABLED | IRQF_SHARED, "EMAC_RX", ndev); |
| 1103 | if (rc) { |
| 1104 | dev_err(&pdev->dev, "Cannot request Blackfin MAC RX IRQ!\n"); |
| 1105 | rc = -EBUSY; |
| 1106 | goto out_err_request_irq; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1107 | } |
| 1108 | |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1109 | rc = register_netdev(ndev); |
| 1110 | if (rc) { |
| 1111 | dev_err(&pdev->dev, "Cannot register net device!\n"); |
| 1112 | goto out_err_reg_ndev; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1113 | } |
| 1114 | |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1115 | /* now, print out the card info, in a short format.. */ |
| 1116 | dev_info(&pdev->dev, "%s, Version %s\n", DRV_DESC, DRV_VERSION); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1117 | |
| 1118 | return 0; |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1119 | |
| 1120 | out_err_reg_ndev: |
| 1121 | free_irq(IRQ_MAC_RX, ndev); |
| 1122 | out_err_request_irq: |
| 1123 | out_err_mii_probe: |
| 1124 | mdiobus_unregister(&lp->mii_bus); |
| 1125 | out_err_mdiobus_register: |
| 1126 | peripheral_free_list(pin_req); |
| 1127 | out_err_setup_pin_mux: |
| 1128 | out_err_probe_mac: |
| 1129 | platform_set_drvdata(pdev, NULL); |
| 1130 | free_netdev(ndev); |
| 1131 | |
| 1132 | return rc; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1133 | } |
| 1134 | |
Mike Frysinger | d7b843d3 | 2008-07-27 22:45:03 +0800 | [diff] [blame] | 1135 | static int __devexit bfin_mac_remove(struct platform_device *pdev) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1136 | { |
| 1137 | struct net_device *ndev = platform_get_drvdata(pdev); |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1138 | struct bfin_mac_local *lp = netdev_priv(ndev); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1139 | |
| 1140 | platform_set_drvdata(pdev, NULL); |
| 1141 | |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1142 | mdiobus_unregister(&lp->mii_bus); |
| 1143 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1144 | unregister_netdev(ndev); |
| 1145 | |
| 1146 | free_irq(IRQ_MAC_RX, ndev); |
| 1147 | |
| 1148 | free_netdev(ndev); |
| 1149 | |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1150 | peripheral_free_list(pin_req); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1151 | |
| 1152 | return 0; |
| 1153 | } |
| 1154 | |
Bryan Wu | 496a34c | 2007-09-19 23:37:14 +0800 | [diff] [blame] | 1155 | #ifdef CONFIG_PM |
| 1156 | static int bfin_mac_suspend(struct platform_device *pdev, pm_message_t mesg) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1157 | { |
Bryan Wu | 496a34c | 2007-09-19 23:37:14 +0800 | [diff] [blame] | 1158 | struct net_device *net_dev = platform_get_drvdata(pdev); |
| 1159 | |
| 1160 | if (netif_running(net_dev)) |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1161 | bfin_mac_close(net_dev); |
Bryan Wu | 496a34c | 2007-09-19 23:37:14 +0800 | [diff] [blame] | 1162 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1163 | return 0; |
| 1164 | } |
| 1165 | |
| 1166 | static int bfin_mac_resume(struct platform_device *pdev) |
| 1167 | { |
Bryan Wu | 496a34c | 2007-09-19 23:37:14 +0800 | [diff] [blame] | 1168 | struct net_device *net_dev = platform_get_drvdata(pdev); |
| 1169 | |
| 1170 | if (netif_running(net_dev)) |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1171 | bfin_mac_open(net_dev); |
Bryan Wu | 496a34c | 2007-09-19 23:37:14 +0800 | [diff] [blame] | 1172 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1173 | return 0; |
| 1174 | } |
Bryan Wu | 496a34c | 2007-09-19 23:37:14 +0800 | [diff] [blame] | 1175 | #else |
| 1176 | #define bfin_mac_suspend NULL |
| 1177 | #define bfin_mac_resume NULL |
| 1178 | #endif /* CONFIG_PM */ |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1179 | |
| 1180 | static struct platform_driver bfin_mac_driver = { |
| 1181 | .probe = bfin_mac_probe, |
Mike Frysinger | d7b843d3 | 2008-07-27 22:45:03 +0800 | [diff] [blame] | 1182 | .remove = __devexit_p(bfin_mac_remove), |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1183 | .resume = bfin_mac_resume, |
| 1184 | .suspend = bfin_mac_suspend, |
| 1185 | .driver = { |
Kay Sievers | 72abb46 | 2008-04-18 13:50:44 -0700 | [diff] [blame] | 1186 | .name = DRV_NAME, |
| 1187 | .owner = THIS_MODULE, |
| 1188 | }, |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1189 | }; |
| 1190 | |
| 1191 | static int __init bfin_mac_init(void) |
| 1192 | { |
| 1193 | return platform_driver_register(&bfin_mac_driver); |
| 1194 | } |
| 1195 | |
| 1196 | module_init(bfin_mac_init); |
| 1197 | |
| 1198 | static void __exit bfin_mac_cleanup(void) |
| 1199 | { |
| 1200 | platform_driver_unregister(&bfin_mac_driver); |
| 1201 | } |
| 1202 | |
| 1203 | module_exit(bfin_mac_cleanup); |
Kay Sievers | 72abb46 | 2008-04-18 13:50:44 -0700 | [diff] [blame] | 1204 | |