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 | * |
Sonic Zhang | 02460d0 | 2010-06-11 10:44:22 +0000 | [diff] [blame] | 4 | * Copyright 2004-2010 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 | |
Mike Frysinger | c6dd509 | 2011-01-10 02:54:29 +0000 | [diff] [blame] | 11 | #define DRV_VERSION "1.1" |
| 12 | #define DRV_DESC "Blackfin on-chip Ethernet MAC driver" |
| 13 | |
| 14 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 15 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 16 | #include <linux/init.h> |
| 17 | #include <linux/module.h> |
| 18 | #include <linux/kernel.h> |
| 19 | #include <linux/sched.h> |
| 20 | #include <linux/slab.h> |
| 21 | #include <linux/delay.h> |
| 22 | #include <linux/timer.h> |
| 23 | #include <linux/errno.h> |
| 24 | #include <linux/irq.h> |
| 25 | #include <linux/io.h> |
| 26 | #include <linux/ioport.h> |
| 27 | #include <linux/crc32.h> |
| 28 | #include <linux/device.h> |
| 29 | #include <linux/spinlock.h> |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 30 | #include <linux/mii.h> |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 31 | #include <linux/netdevice.h> |
| 32 | #include <linux/etherdevice.h> |
Bryan Wu | 679dce3 | 2008-04-25 11:53:11 +0800 | [diff] [blame] | 33 | #include <linux/ethtool.h> |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 34 | #include <linux/skbuff.h> |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 35 | #include <linux/platform_device.h> |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 36 | |
| 37 | #include <asm/dma.h> |
| 38 | #include <linux/dma-mapping.h> |
| 39 | |
Barry Song | fe92afe | 2010-05-17 17:19:40 -0700 | [diff] [blame] | 40 | #include <asm/div64.h> |
Mike Frysinger | 98f672c | 2010-01-18 21:14:12 +0000 | [diff] [blame] | 41 | #include <asm/dpmc.h> |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 42 | #include <asm/blackfin.h> |
| 43 | #include <asm/cacheflush.h> |
| 44 | #include <asm/portmux.h> |
David Howells | 3dcc1e7 | 2010-10-07 14:08:49 +0100 | [diff] [blame] | 45 | #include <mach/pll.h> |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 46 | |
| 47 | #include "bfin_mac.h" |
| 48 | |
Mike Frysinger | c6dd509 | 2011-01-10 02:54:29 +0000 | [diff] [blame] | 49 | MODULE_AUTHOR("Bryan Wu, Luke Yang"); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 50 | MODULE_LICENSE("GPL"); |
| 51 | MODULE_DESCRIPTION(DRV_DESC); |
Kay Sievers | 72abb46 | 2008-04-18 13:50:44 -0700 | [diff] [blame] | 52 | MODULE_ALIAS("platform:bfin_mac"); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 53 | |
| 54 | #if defined(CONFIG_BFIN_MAC_USE_L1) |
Sonic Zhang | 118133e | 2011-06-16 12:31:58 +0000 | [diff] [blame] | 55 | # define bfin_mac_alloc(dma_handle, size, num) l1_data_sram_zalloc(size*num) |
| 56 | # define bfin_mac_free(dma_handle, ptr, num) l1_data_sram_free(ptr) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 57 | #else |
Sonic Zhang | 118133e | 2011-06-16 12:31:58 +0000 | [diff] [blame] | 58 | # define bfin_mac_alloc(dma_handle, size, num) \ |
| 59 | dma_alloc_coherent(NULL, size*num, dma_handle, GFP_KERNEL) |
| 60 | # define bfin_mac_free(dma_handle, ptr, num) \ |
| 61 | dma_free_coherent(NULL, sizeof(*ptr)*num, ptr, dma_handle) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 62 | #endif |
| 63 | |
| 64 | #define PKT_BUF_SZ 1580 |
| 65 | |
| 66 | #define MAX_TIMEOUT_CNT 500 |
| 67 | |
| 68 | /* pointers to maintain transmit list */ |
| 69 | static struct net_dma_desc_tx *tx_list_head; |
| 70 | static struct net_dma_desc_tx *tx_list_tail; |
| 71 | static struct net_dma_desc_rx *rx_list_head; |
| 72 | static struct net_dma_desc_rx *rx_list_tail; |
| 73 | static struct net_dma_desc_rx *current_rx_ptr; |
| 74 | static struct net_dma_desc_tx *current_tx_ptr; |
| 75 | static struct net_dma_desc_tx *tx_desc; |
| 76 | static struct net_dma_desc_rx *rx_desc; |
| 77 | |
| 78 | static void desc_list_free(void) |
| 79 | { |
| 80 | struct net_dma_desc_rx *r; |
| 81 | struct net_dma_desc_tx *t; |
| 82 | int i; |
| 83 | #if !defined(CONFIG_BFIN_MAC_USE_L1) |
| 84 | dma_addr_t dma_handle = 0; |
| 85 | #endif |
| 86 | |
| 87 | if (tx_desc) { |
| 88 | t = tx_list_head; |
| 89 | for (i = 0; i < CONFIG_BFIN_TX_DESC_NUM; i++) { |
| 90 | if (t) { |
| 91 | if (t->skb) { |
| 92 | dev_kfree_skb(t->skb); |
| 93 | t->skb = NULL; |
| 94 | } |
| 95 | t = t->next; |
| 96 | } |
| 97 | } |
Sonic Zhang | 118133e | 2011-06-16 12:31:58 +0000 | [diff] [blame] | 98 | bfin_mac_free(dma_handle, tx_desc, CONFIG_BFIN_TX_DESC_NUM); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 99 | } |
| 100 | |
| 101 | if (rx_desc) { |
| 102 | r = rx_list_head; |
| 103 | for (i = 0; i < CONFIG_BFIN_RX_DESC_NUM; i++) { |
| 104 | if (r) { |
| 105 | if (r->skb) { |
| 106 | dev_kfree_skb(r->skb); |
| 107 | r->skb = NULL; |
| 108 | } |
| 109 | r = r->next; |
| 110 | } |
| 111 | } |
Sonic Zhang | 118133e | 2011-06-16 12:31:58 +0000 | [diff] [blame] | 112 | bfin_mac_free(dma_handle, rx_desc, CONFIG_BFIN_RX_DESC_NUM); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 113 | } |
| 114 | } |
| 115 | |
Pradeep A. Dalvi | 1ab0d2e | 2012-02-06 11:16:48 +0000 | [diff] [blame] | 116 | static int desc_list_init(struct net_device *dev) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 117 | { |
| 118 | int i; |
| 119 | struct sk_buff *new_skb; |
| 120 | #if !defined(CONFIG_BFIN_MAC_USE_L1) |
| 121 | /* |
| 122 | * This dma_handle is useless in Blackfin dma_alloc_coherent(). |
| 123 | * The real dma handler is the return value of dma_alloc_coherent(). |
| 124 | */ |
| 125 | dma_addr_t dma_handle; |
| 126 | #endif |
| 127 | |
| 128 | tx_desc = bfin_mac_alloc(&dma_handle, |
Sonic Zhang | 118133e | 2011-06-16 12:31:58 +0000 | [diff] [blame] | 129 | sizeof(struct net_dma_desc_tx), |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 130 | CONFIG_BFIN_TX_DESC_NUM); |
| 131 | if (tx_desc == NULL) |
| 132 | goto init_error; |
| 133 | |
| 134 | rx_desc = bfin_mac_alloc(&dma_handle, |
Sonic Zhang | 118133e | 2011-06-16 12:31:58 +0000 | [diff] [blame] | 135 | sizeof(struct net_dma_desc_rx), |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 136 | CONFIG_BFIN_RX_DESC_NUM); |
| 137 | if (rx_desc == NULL) |
| 138 | goto init_error; |
| 139 | |
| 140 | /* init tx_list */ |
| 141 | tx_list_head = tx_list_tail = tx_desc; |
| 142 | |
| 143 | for (i = 0; i < CONFIG_BFIN_TX_DESC_NUM; i++) { |
| 144 | struct net_dma_desc_tx *t = tx_desc + i; |
| 145 | struct dma_descriptor *a = &(t->desc_a); |
| 146 | struct dma_descriptor *b = &(t->desc_b); |
| 147 | |
| 148 | /* |
| 149 | * disable DMA |
| 150 | * read from memory WNR = 0 |
| 151 | * wordsize is 32 bits |
| 152 | * 6 half words is desc size |
| 153 | * large desc flow |
| 154 | */ |
| 155 | a->config = WDSIZE_32 | NDSIZE_6 | DMAFLOW_LARGE; |
| 156 | a->start_addr = (unsigned long)t->packet; |
| 157 | a->x_count = 0; |
| 158 | a->next_dma_desc = b; |
| 159 | |
| 160 | /* |
| 161 | * enabled DMA |
| 162 | * write to memory WNR = 1 |
| 163 | * wordsize is 32 bits |
| 164 | * disable interrupt |
| 165 | * 6 half words is desc size |
| 166 | * large desc flow |
| 167 | */ |
| 168 | b->config = DMAEN | WNR | WDSIZE_32 | NDSIZE_6 | DMAFLOW_LARGE; |
| 169 | b->start_addr = (unsigned long)(&(t->status)); |
| 170 | b->x_count = 0; |
| 171 | |
| 172 | t->skb = NULL; |
| 173 | tx_list_tail->desc_b.next_dma_desc = a; |
| 174 | tx_list_tail->next = t; |
| 175 | tx_list_tail = t; |
| 176 | } |
| 177 | tx_list_tail->next = tx_list_head; /* tx_list is a circle */ |
| 178 | tx_list_tail->desc_b.next_dma_desc = &(tx_list_head->desc_a); |
| 179 | current_tx_ptr = tx_list_head; |
| 180 | |
| 181 | /* init rx_list */ |
| 182 | rx_list_head = rx_list_tail = rx_desc; |
| 183 | |
| 184 | for (i = 0; i < CONFIG_BFIN_RX_DESC_NUM; i++) { |
| 185 | struct net_dma_desc_rx *r = rx_desc + i; |
| 186 | struct dma_descriptor *a = &(r->desc_a); |
| 187 | struct dma_descriptor *b = &(r->desc_b); |
| 188 | |
| 189 | /* allocate a new skb for next time receive */ |
Pradeep A. Dalvi | 1ab0d2e | 2012-02-06 11:16:48 +0000 | [diff] [blame] | 190 | new_skb = netdev_alloc_skb(dev, PKT_BUF_SZ + NET_IP_ALIGN); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 191 | if (!new_skb) { |
Mike Frysinger | c6dd509 | 2011-01-10 02:54:29 +0000 | [diff] [blame] | 192 | pr_notice("init: low on mem - packet dropped\n"); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 193 | goto init_error; |
| 194 | } |
Michael Hennerich | 015dac8 | 2009-05-29 03:41:15 +0000 | [diff] [blame] | 195 | skb_reserve(new_skb, NET_IP_ALIGN); |
Sonic Zhang | f6e1e4f | 2010-05-10 05:39:08 +0000 | [diff] [blame] | 196 | /* Invidate the data cache of skb->data range when it is write back |
| 197 | * cache. It will prevent overwritting the new data from DMA |
| 198 | */ |
| 199 | blackfin_dcache_invalidate_range((unsigned long)new_skb->head, |
| 200 | (unsigned long)new_skb->end); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 201 | r->skb = new_skb; |
| 202 | |
| 203 | /* |
| 204 | * enabled DMA |
| 205 | * write to memory WNR = 1 |
| 206 | * wordsize is 32 bits |
| 207 | * disable interrupt |
| 208 | * 6 half words is desc size |
| 209 | * large desc flow |
| 210 | */ |
| 211 | a->config = DMAEN | WNR | WDSIZE_32 | NDSIZE_6 | DMAFLOW_LARGE; |
| 212 | /* since RXDWA is enabled */ |
| 213 | a->start_addr = (unsigned long)new_skb->data - 2; |
| 214 | a->x_count = 0; |
| 215 | a->next_dma_desc = b; |
| 216 | |
| 217 | /* |
| 218 | * enabled DMA |
| 219 | * write to memory WNR = 1 |
| 220 | * wordsize is 32 bits |
| 221 | * enable interrupt |
| 222 | * 6 half words is desc size |
| 223 | * large desc flow |
| 224 | */ |
| 225 | b->config = DMAEN | WNR | WDSIZE_32 | DI_EN | |
| 226 | NDSIZE_6 | DMAFLOW_LARGE; |
| 227 | b->start_addr = (unsigned long)(&(r->status)); |
| 228 | b->x_count = 0; |
| 229 | |
| 230 | rx_list_tail->desc_b.next_dma_desc = a; |
| 231 | rx_list_tail->next = r; |
| 232 | rx_list_tail = r; |
| 233 | } |
| 234 | rx_list_tail->next = rx_list_head; /* rx_list is a circle */ |
| 235 | rx_list_tail->desc_b.next_dma_desc = &(rx_list_head->desc_a); |
| 236 | current_rx_ptr = rx_list_head; |
| 237 | |
| 238 | return 0; |
| 239 | |
| 240 | init_error: |
| 241 | desc_list_free(); |
Mike Frysinger | c6dd509 | 2011-01-10 02:54:29 +0000 | [diff] [blame] | 242 | pr_err("kmalloc failed\n"); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 243 | return -ENOMEM; |
| 244 | } |
| 245 | |
| 246 | |
| 247 | /*---PHY CONTROL AND CONFIGURATION-----------------------------------------*/ |
| 248 | |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 249 | /* |
| 250 | * MII operations |
| 251 | */ |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 252 | /* Wait until the previous MDC/MDIO transaction has completed */ |
Mike Frysinger | 2bfa0f0 | 2010-05-10 05:39:13 +0000 | [diff] [blame] | 253 | static int bfin_mdio_poll(void) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 254 | { |
| 255 | int timeout_cnt = MAX_TIMEOUT_CNT; |
| 256 | |
| 257 | /* poll the STABUSY bit */ |
| 258 | while ((bfin_read_EMAC_STAADD()) & STABUSY) { |
Bryan Wu | 6db9e46 | 2008-01-30 16:52:21 +0800 | [diff] [blame] | 259 | udelay(1); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 260 | if (timeout_cnt-- < 0) { |
Mike Frysinger | c6dd509 | 2011-01-10 02:54:29 +0000 | [diff] [blame] | 261 | pr_err("wait MDC/MDIO transaction to complete timeout\n"); |
Mike Frysinger | 2bfa0f0 | 2010-05-10 05:39:13 +0000 | [diff] [blame] | 262 | return -ETIMEDOUT; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 263 | } |
| 264 | } |
Mike Frysinger | 2bfa0f0 | 2010-05-10 05:39:13 +0000 | [diff] [blame] | 265 | |
| 266 | return 0; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 267 | } |
| 268 | |
| 269 | /* Read an off-chip register in a PHY through the MDC/MDIO port */ |
Adrian Bunk | 0ed0563 | 2008-10-12 21:15:17 -0700 | [diff] [blame] | 270 | static int bfin_mdiobus_read(struct mii_bus *bus, int phy_addr, int regnum) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 271 | { |
Mike Frysinger | 2bfa0f0 | 2010-05-10 05:39:13 +0000 | [diff] [blame] | 272 | int ret; |
| 273 | |
| 274 | ret = bfin_mdio_poll(); |
| 275 | if (ret) |
| 276 | return ret; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 277 | |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 278 | /* read mode */ |
| 279 | bfin_write_EMAC_STAADD(SET_PHYAD((u16) phy_addr) | |
| 280 | SET_REGAD((u16) regnum) | |
| 281 | STABUSY); |
| 282 | |
Mike Frysinger | 2bfa0f0 | 2010-05-10 05:39:13 +0000 | [diff] [blame] | 283 | ret = bfin_mdio_poll(); |
| 284 | if (ret) |
| 285 | return ret; |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 286 | |
| 287 | return (int) bfin_read_EMAC_STADAT(); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 288 | } |
| 289 | |
| 290 | /* Write an off-chip register in a PHY through the MDC/MDIO port */ |
Adrian Bunk | 0ed0563 | 2008-10-12 21:15:17 -0700 | [diff] [blame] | 291 | static int bfin_mdiobus_write(struct mii_bus *bus, int phy_addr, int regnum, |
| 292 | u16 value) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 293 | { |
Mike Frysinger | 2bfa0f0 | 2010-05-10 05:39:13 +0000 | [diff] [blame] | 294 | int ret; |
| 295 | |
| 296 | ret = bfin_mdio_poll(); |
| 297 | if (ret) |
| 298 | return ret; |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 299 | |
| 300 | bfin_write_EMAC_STADAT((u32) value); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 301 | |
| 302 | /* write mode */ |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 303 | bfin_write_EMAC_STAADD(SET_PHYAD((u16) phy_addr) | |
| 304 | SET_REGAD((u16) regnum) | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 305 | STAOP | |
| 306 | STABUSY); |
| 307 | |
Mike Frysinger | 2bfa0f0 | 2010-05-10 05:39:13 +0000 | [diff] [blame] | 308 | return bfin_mdio_poll(); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 309 | } |
| 310 | |
Adrian Bunk | 0ed0563 | 2008-10-12 21:15:17 -0700 | [diff] [blame] | 311 | static int bfin_mdiobus_reset(struct mii_bus *bus) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 312 | { |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 313 | return 0; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 314 | } |
| 315 | |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 316 | static void bfin_mac_adjust_link(struct net_device *dev) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 317 | { |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 318 | struct bfin_mac_local *lp = netdev_priv(dev); |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 319 | struct phy_device *phydev = lp->phydev; |
| 320 | unsigned long flags; |
| 321 | int new_state = 0; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 322 | |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 323 | spin_lock_irqsave(&lp->lock, flags); |
| 324 | if (phydev->link) { |
| 325 | /* Now we make sure that we can be in full duplex mode. |
| 326 | * If not, we operate in half-duplex mode. */ |
| 327 | if (phydev->duplex != lp->old_duplex) { |
| 328 | u32 opmode = bfin_read_EMAC_OPMODE(); |
| 329 | new_state = 1; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 330 | |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 331 | if (phydev->duplex) |
| 332 | opmode |= FDMODE; |
| 333 | else |
| 334 | opmode &= ~(FDMODE); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 335 | |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 336 | bfin_write_EMAC_OPMODE(opmode); |
| 337 | lp->old_duplex = phydev->duplex; |
| 338 | } |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 339 | |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 340 | if (phydev->speed != lp->old_speed) { |
Sonic Zhang | 02460d0 | 2010-06-11 10:44:22 +0000 | [diff] [blame] | 341 | if (phydev->interface == PHY_INTERFACE_MODE_RMII) { |
| 342 | u32 opmode = bfin_read_EMAC_OPMODE(); |
| 343 | switch (phydev->speed) { |
| 344 | case 10: |
| 345 | opmode |= RMII_10; |
| 346 | break; |
| 347 | case 100: |
| 348 | opmode &= ~RMII_10; |
| 349 | break; |
| 350 | default: |
Mike Frysinger | c6dd509 | 2011-01-10 02:54:29 +0000 | [diff] [blame] | 351 | netdev_warn(dev, |
| 352 | "Ack! Speed (%d) is not 10/100!\n", |
| 353 | phydev->speed); |
Sonic Zhang | 02460d0 | 2010-06-11 10:44:22 +0000 | [diff] [blame] | 354 | break; |
| 355 | } |
| 356 | bfin_write_EMAC_OPMODE(opmode); |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 357 | } |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 358 | |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 359 | new_state = 1; |
| 360 | lp->old_speed = phydev->speed; |
| 361 | } |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 362 | |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 363 | if (!lp->old_link) { |
| 364 | new_state = 1; |
| 365 | lp->old_link = 1; |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 366 | } |
| 367 | } else if (lp->old_link) { |
| 368 | new_state = 1; |
| 369 | lp->old_link = 0; |
| 370 | lp->old_speed = 0; |
| 371 | lp->old_duplex = -1; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 372 | } |
| 373 | |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 374 | if (new_state) { |
| 375 | u32 opmode = bfin_read_EMAC_OPMODE(); |
| 376 | phy_print_status(phydev); |
| 377 | pr_debug("EMAC_OPMODE = 0x%08x\n", opmode); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 378 | } |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 379 | |
| 380 | spin_unlock_irqrestore(&lp->lock, flags); |
| 381 | } |
| 382 | |
Bryan Wu | 7cc8f38 | 2008-01-30 16:52:22 +0800 | [diff] [blame] | 383 | /* MDC = 2.5 MHz */ |
| 384 | #define MDC_CLK 2500000 |
| 385 | |
Sonic Zhang | 02460d0 | 2010-06-11 10:44:22 +0000 | [diff] [blame] | 386 | static int mii_probe(struct net_device *dev, int phy_mode) |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 387 | { |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 388 | struct bfin_mac_local *lp = netdev_priv(dev); |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 389 | struct phy_device *phydev = NULL; |
| 390 | unsigned short sysctl; |
| 391 | int i; |
Bryan Wu | 7cc8f38 | 2008-01-30 16:52:22 +0800 | [diff] [blame] | 392 | u32 sclk, mdc_div; |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 393 | |
| 394 | /* Enable PHY output early */ |
Mike Frysinger | 98f672c | 2010-01-18 21:14:12 +0000 | [diff] [blame] | 395 | if (!(bfin_read_VR_CTL() & CLKBUFOE)) |
| 396 | bfin_write_VR_CTL(bfin_read_VR_CTL() | CLKBUFOE); |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 397 | |
Bryan Wu | 7cc8f38 | 2008-01-30 16:52:22 +0800 | [diff] [blame] | 398 | sclk = get_sclk(); |
| 399 | mdc_div = ((sclk / MDC_CLK) / 2) - 1; |
| 400 | |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 401 | sysctl = bfin_read_EMAC_SYSCTL(); |
Bryan Wu | 9dc7f30 | 2008-01-30 16:52:28 +0800 | [diff] [blame] | 402 | sysctl = (sysctl & ~MDCDIV) | SET_MDCDIV(mdc_div); |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 403 | bfin_write_EMAC_SYSCTL(sysctl); |
| 404 | |
Sonic Zhang | 02460d0 | 2010-06-11 10:44:22 +0000 | [diff] [blame] | 405 | /* search for connected PHY device */ |
| 406 | for (i = 0; i < PHY_MAX_ADDR; ++i) { |
Lennert Buytenhek | 298cf9b | 2008-10-08 16:29:57 -0700 | [diff] [blame] | 407 | struct phy_device *const tmp_phydev = lp->mii_bus->phy_map[i]; |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 408 | |
| 409 | if (!tmp_phydev) |
| 410 | continue; /* no PHY here... */ |
| 411 | |
| 412 | phydev = tmp_phydev; |
| 413 | break; /* found it */ |
| 414 | } |
| 415 | |
| 416 | /* now we are supposed to have a proper phydev, to attach to... */ |
| 417 | if (!phydev) { |
Mike Frysinger | c6dd509 | 2011-01-10 02:54:29 +0000 | [diff] [blame] | 418 | netdev_err(dev, "no phy device found\n"); |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 419 | return -ENODEV; |
| 420 | } |
| 421 | |
Sonic Zhang | 02460d0 | 2010-06-11 10:44:22 +0000 | [diff] [blame] | 422 | if (phy_mode != PHY_INTERFACE_MODE_RMII && |
| 423 | phy_mode != PHY_INTERFACE_MODE_MII) { |
Mike Frysinger | c6dd509 | 2011-01-10 02:54:29 +0000 | [diff] [blame] | 424 | netdev_err(dev, "invalid phy interface mode\n"); |
Sonic Zhang | 02460d0 | 2010-06-11 10:44:22 +0000 | [diff] [blame] | 425 | return -EINVAL; |
| 426 | } |
| 427 | |
Kay Sievers | c231355 | 2009-03-24 16:38:22 -0700 | [diff] [blame] | 428 | phydev = phy_connect(dev, dev_name(&phydev->dev), &bfin_mac_adjust_link, |
Sonic Zhang | 02460d0 | 2010-06-11 10:44:22 +0000 | [diff] [blame] | 429 | 0, phy_mode); |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 430 | |
| 431 | if (IS_ERR(phydev)) { |
Mike Frysinger | c6dd509 | 2011-01-10 02:54:29 +0000 | [diff] [blame] | 432 | netdev_err(dev, "could not attach PHY\n"); |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 433 | return PTR_ERR(phydev); |
| 434 | } |
| 435 | |
| 436 | /* mask with MAC supported features */ |
| 437 | phydev->supported &= (SUPPORTED_10baseT_Half |
| 438 | | SUPPORTED_10baseT_Full |
| 439 | | SUPPORTED_100baseT_Half |
| 440 | | SUPPORTED_100baseT_Full |
| 441 | | SUPPORTED_Autoneg |
| 442 | | SUPPORTED_Pause | SUPPORTED_Asym_Pause |
| 443 | | SUPPORTED_MII |
| 444 | | SUPPORTED_TP); |
| 445 | |
| 446 | phydev->advertising = phydev->supported; |
| 447 | |
| 448 | lp->old_link = 0; |
| 449 | lp->old_speed = 0; |
| 450 | lp->old_duplex = -1; |
| 451 | lp->phydev = phydev; |
| 452 | |
Mike Frysinger | c6dd509 | 2011-01-10 02:54:29 +0000 | [diff] [blame] | 453 | pr_info("attached PHY driver [%s] " |
| 454 | "(mii_bus:phy_addr=%s, irq=%d, mdc_clk=%dHz(mdc_div=%d)@sclk=%dMHz)\n", |
| 455 | phydev->drv->name, dev_name(&phydev->dev), phydev->irq, |
| 456 | MDC_CLK, mdc_div, sclk/1000000); |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 457 | |
| 458 | return 0; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 459 | } |
| 460 | |
Bryan Wu | 679dce3 | 2008-04-25 11:53:11 +0800 | [diff] [blame] | 461 | /* |
| 462 | * Ethtool support |
| 463 | */ |
| 464 | |
Michael Hennerich | 53fd3f2 | 2010-05-10 05:39:11 +0000 | [diff] [blame] | 465 | /* |
| 466 | * interrupt routine for magic packet wakeup |
| 467 | */ |
| 468 | static irqreturn_t bfin_mac_wake_interrupt(int irq, void *dev_id) |
| 469 | { |
| 470 | return IRQ_HANDLED; |
| 471 | } |
| 472 | |
Bryan Wu | 679dce3 | 2008-04-25 11:53:11 +0800 | [diff] [blame] | 473 | static int |
| 474 | bfin_mac_ethtool_getsettings(struct net_device *dev, struct ethtool_cmd *cmd) |
| 475 | { |
| 476 | struct bfin_mac_local *lp = netdev_priv(dev); |
| 477 | |
| 478 | if (lp->phydev) |
| 479 | return phy_ethtool_gset(lp->phydev, cmd); |
| 480 | |
| 481 | return -EINVAL; |
| 482 | } |
| 483 | |
| 484 | static int |
| 485 | bfin_mac_ethtool_setsettings(struct net_device *dev, struct ethtool_cmd *cmd) |
| 486 | { |
| 487 | struct bfin_mac_local *lp = netdev_priv(dev); |
| 488 | |
| 489 | if (!capable(CAP_NET_ADMIN)) |
| 490 | return -EPERM; |
| 491 | |
| 492 | if (lp->phydev) |
| 493 | return phy_ethtool_sset(lp->phydev, cmd); |
| 494 | |
| 495 | return -EINVAL; |
| 496 | } |
| 497 | |
| 498 | static void bfin_mac_ethtool_getdrvinfo(struct net_device *dev, |
| 499 | struct ethtool_drvinfo *info) |
| 500 | { |
Mike Frysinger | c6dd509 | 2011-01-10 02:54:29 +0000 | [diff] [blame] | 501 | strcpy(info->driver, KBUILD_MODNAME); |
Bryan Wu | 679dce3 | 2008-04-25 11:53:11 +0800 | [diff] [blame] | 502 | strcpy(info->version, DRV_VERSION); |
| 503 | strcpy(info->fw_version, "N/A"); |
Kay Sievers | c231355 | 2009-03-24 16:38:22 -0700 | [diff] [blame] | 504 | strcpy(info->bus_info, dev_name(&dev->dev)); |
Bryan Wu | 679dce3 | 2008-04-25 11:53:11 +0800 | [diff] [blame] | 505 | } |
| 506 | |
Michael Hennerich | 53fd3f2 | 2010-05-10 05:39:11 +0000 | [diff] [blame] | 507 | static void bfin_mac_ethtool_getwol(struct net_device *dev, |
| 508 | struct ethtool_wolinfo *wolinfo) |
| 509 | { |
| 510 | struct bfin_mac_local *lp = netdev_priv(dev); |
| 511 | |
| 512 | wolinfo->supported = WAKE_MAGIC; |
| 513 | wolinfo->wolopts = lp->wol; |
| 514 | } |
| 515 | |
| 516 | static int bfin_mac_ethtool_setwol(struct net_device *dev, |
| 517 | struct ethtool_wolinfo *wolinfo) |
| 518 | { |
| 519 | struct bfin_mac_local *lp = netdev_priv(dev); |
| 520 | int rc; |
| 521 | |
| 522 | if (wolinfo->wolopts & (WAKE_MAGICSECURE | |
| 523 | WAKE_UCAST | |
| 524 | WAKE_MCAST | |
| 525 | WAKE_BCAST | |
| 526 | WAKE_ARP)) |
| 527 | return -EOPNOTSUPP; |
| 528 | |
| 529 | lp->wol = wolinfo->wolopts; |
| 530 | |
| 531 | if (lp->wol && !lp->irq_wake_requested) { |
| 532 | /* register wake irq handler */ |
| 533 | rc = request_irq(IRQ_MAC_WAKEDET, bfin_mac_wake_interrupt, |
| 534 | IRQF_DISABLED, "EMAC_WAKE", dev); |
| 535 | if (rc) |
| 536 | return rc; |
| 537 | lp->irq_wake_requested = true; |
| 538 | } |
| 539 | |
| 540 | if (!lp->wol && lp->irq_wake_requested) { |
| 541 | free_irq(IRQ_MAC_WAKEDET, dev); |
| 542 | lp->irq_wake_requested = false; |
| 543 | } |
| 544 | |
| 545 | /* Make sure the PHY driver doesn't suspend */ |
| 546 | device_init_wakeup(&dev->dev, lp->wol); |
| 547 | |
| 548 | return 0; |
| 549 | } |
| 550 | |
Richard Cochran | 85c153d | 2012-10-31 06:27:22 +0000 | [diff] [blame] | 551 | #ifdef CONFIG_BFIN_MAC_USE_HWSTAMP |
Richard Cochran | a85bbdd | 2012-04-03 22:59:20 +0000 | [diff] [blame] | 552 | static int bfin_mac_ethtool_get_ts_info(struct net_device *dev, |
David S. Miller | 3ffa429 | 2012-04-06 00:17:50 -0400 | [diff] [blame] | 553 | struct ethtool_ts_info *info) |
Richard Cochran | a85bbdd | 2012-04-03 22:59:20 +0000 | [diff] [blame] | 554 | { |
| 555 | info->so_timestamping = |
| 556 | SOF_TIMESTAMPING_TX_HARDWARE | |
| 557 | SOF_TIMESTAMPING_RX_HARDWARE | |
Richard Cochran | bc3c5f6 | 2012-10-31 06:27:23 +0000 | [diff] [blame^] | 558 | SOF_TIMESTAMPING_RAW_HARDWARE; |
Richard Cochran | a85bbdd | 2012-04-03 22:59:20 +0000 | [diff] [blame] | 559 | info->phc_index = -1; |
| 560 | info->tx_types = |
| 561 | (1 << HWTSTAMP_TX_OFF) | |
| 562 | (1 << HWTSTAMP_TX_ON); |
| 563 | info->rx_filters = |
| 564 | (1 << HWTSTAMP_FILTER_NONE) | |
| 565 | (1 << HWTSTAMP_FILTER_PTP_V1_L4_EVENT) | |
| 566 | (1 << HWTSTAMP_FILTER_PTP_V2_L2_EVENT) | |
| 567 | (1 << HWTSTAMP_FILTER_PTP_V2_L4_EVENT); |
| 568 | return 0; |
| 569 | } |
Richard Cochran | 85c153d | 2012-10-31 06:27:22 +0000 | [diff] [blame] | 570 | #endif |
Richard Cochran | a85bbdd | 2012-04-03 22:59:20 +0000 | [diff] [blame] | 571 | |
Stephen Hemminger | 0fc0b73 | 2009-09-02 01:03:33 -0700 | [diff] [blame] | 572 | static const struct ethtool_ops bfin_mac_ethtool_ops = { |
Bryan Wu | 679dce3 | 2008-04-25 11:53:11 +0800 | [diff] [blame] | 573 | .get_settings = bfin_mac_ethtool_getsettings, |
| 574 | .set_settings = bfin_mac_ethtool_setsettings, |
| 575 | .get_link = ethtool_op_get_link, |
| 576 | .get_drvinfo = bfin_mac_ethtool_getdrvinfo, |
Michael Hennerich | 53fd3f2 | 2010-05-10 05:39:11 +0000 | [diff] [blame] | 577 | .get_wol = bfin_mac_ethtool_getwol, |
| 578 | .set_wol = bfin_mac_ethtool_setwol, |
Richard Cochran | 85c153d | 2012-10-31 06:27:22 +0000 | [diff] [blame] | 579 | #ifdef CONFIG_BFIN_MAC_USE_HWSTAMP |
Richard Cochran | a85bbdd | 2012-04-03 22:59:20 +0000 | [diff] [blame] | 580 | .get_ts_info = bfin_mac_ethtool_get_ts_info, |
Richard Cochran | 85c153d | 2012-10-31 06:27:22 +0000 | [diff] [blame] | 581 | #endif |
Bryan Wu | 679dce3 | 2008-04-25 11:53:11 +0800 | [diff] [blame] | 582 | }; |
| 583 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 584 | /**************************************************************************/ |
Mike Frysinger | 5ca1bb5 | 2011-01-10 02:54:30 +0000 | [diff] [blame] | 585 | static void setup_system_regs(struct net_device *dev) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 586 | { |
Sonic Zhang | 02460d0 | 2010-06-11 10:44:22 +0000 | [diff] [blame] | 587 | struct bfin_mac_local *lp = netdev_priv(dev); |
| 588 | int i; |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 589 | unsigned short sysctl; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 590 | |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 591 | /* |
| 592 | * Odd word alignment for Receive Frame DMA word |
| 593 | * Configure checksum support and rcve frame word alignment |
| 594 | */ |
| 595 | sysctl = bfin_read_EMAC_SYSCTL(); |
Sonic Zhang | 02460d0 | 2010-06-11 10:44:22 +0000 | [diff] [blame] | 596 | /* |
| 597 | * check if interrupt is requested for any PHY, |
| 598 | * enable PHY interrupt only if needed |
| 599 | */ |
| 600 | for (i = 0; i < PHY_MAX_ADDR; ++i) |
| 601 | if (lp->mii_bus->irq[i] != PHY_POLL) |
| 602 | break; |
| 603 | if (i < PHY_MAX_ADDR) |
| 604 | sysctl |= PHYIE; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 605 | sysctl |= RXDWA; |
Sonic Zhang | 812a9de | 2010-05-10 05:39:10 +0000 | [diff] [blame] | 606 | #if defined(BFIN_MAC_CSUM_OFFLOAD) |
| 607 | sysctl |= RXCKS; |
| 608 | #else |
| 609 | sysctl &= ~RXCKS; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 610 | #endif |
| 611 | bfin_write_EMAC_SYSCTL(sysctl); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 612 | |
| 613 | bfin_write_EMAC_MMC_CTL(RSTC | CROLL); |
| 614 | |
Mike Frysinger | c599bd6 | 2011-01-10 02:54:32 +0000 | [diff] [blame] | 615 | /* Set vlan regs to let 1522 bytes long packets pass through */ |
| 616 | bfin_write_EMAC_VLAN1(lp->vlan1_mask); |
| 617 | bfin_write_EMAC_VLAN2(lp->vlan2_mask); |
| 618 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 619 | /* Initialize the TX DMA channel registers */ |
| 620 | bfin_write_DMA2_X_COUNT(0); |
| 621 | bfin_write_DMA2_X_MODIFY(4); |
| 622 | bfin_write_DMA2_Y_COUNT(0); |
| 623 | bfin_write_DMA2_Y_MODIFY(0); |
| 624 | |
| 625 | /* Initialize the RX DMA channel registers */ |
| 626 | bfin_write_DMA1_X_COUNT(0); |
| 627 | bfin_write_DMA1_X_MODIFY(4); |
| 628 | bfin_write_DMA1_Y_COUNT(0); |
| 629 | bfin_write_DMA1_Y_MODIFY(0); |
| 630 | } |
| 631 | |
Alex Landau | 73f8318 | 2007-09-19 23:14:18 +0800 | [diff] [blame] | 632 | static void setup_mac_addr(u8 *mac_addr) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 633 | { |
| 634 | u32 addr_low = le32_to_cpu(*(__le32 *) & mac_addr[0]); |
| 635 | u16 addr_hi = le16_to_cpu(*(__le16 *) & mac_addr[4]); |
| 636 | |
| 637 | /* this depends on a little-endian machine */ |
| 638 | bfin_write_EMAC_ADDRLO(addr_low); |
| 639 | bfin_write_EMAC_ADDRHI(addr_hi); |
| 640 | } |
| 641 | |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 642 | 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] | 643 | { |
| 644 | struct sockaddr *addr = p; |
| 645 | if (netif_running(dev)) |
| 646 | return -EBUSY; |
| 647 | memcpy(dev->dev_addr, addr->sa_data, dev->addr_len); |
Danny Kukawka | 5055d2f | 2012-02-16 07:09:31 +0000 | [diff] [blame] | 648 | dev->addr_assign_type &= ~NET_ADDR_RANDOM; |
Alex Landau | 73f8318 | 2007-09-19 23:14:18 +0800 | [diff] [blame] | 649 | setup_mac_addr(dev->dev_addr); |
| 650 | return 0; |
| 651 | } |
| 652 | |
Barry Song | fe92afe | 2010-05-17 17:19:40 -0700 | [diff] [blame] | 653 | #ifdef CONFIG_BFIN_MAC_USE_HWSTAMP |
| 654 | #define bfin_mac_hwtstamp_is_none(cfg) ((cfg) == HWTSTAMP_FILTER_NONE) |
| 655 | |
Richard Cochran | bc3c5f6 | 2012-10-31 06:27:23 +0000 | [diff] [blame^] | 656 | static u32 bfin_select_phc_clock(u32 input_clk, unsigned int *shift_result) |
| 657 | { |
| 658 | u32 ipn = 1000000000UL / input_clk; |
| 659 | u32 ppn = 1; |
| 660 | unsigned int shift = 0; |
| 661 | |
| 662 | while (ppn <= ipn) { |
| 663 | ppn <<= 1; |
| 664 | shift++; |
| 665 | } |
| 666 | *shift_result = shift; |
| 667 | return 1000000000UL / ppn; |
| 668 | } |
| 669 | |
Barry Song | fe92afe | 2010-05-17 17:19:40 -0700 | [diff] [blame] | 670 | static int bfin_mac_hwtstamp_ioctl(struct net_device *netdev, |
| 671 | struct ifreq *ifr, int cmd) |
| 672 | { |
| 673 | struct hwtstamp_config config; |
| 674 | struct bfin_mac_local *lp = netdev_priv(netdev); |
| 675 | u16 ptpctl; |
| 676 | u32 ptpfv1, ptpfv2, ptpfv3, ptpfoff; |
| 677 | |
| 678 | if (copy_from_user(&config, ifr->ifr_data, sizeof(config))) |
| 679 | return -EFAULT; |
| 680 | |
| 681 | pr_debug("%s config flag:0x%x, tx_type:0x%x, rx_filter:0x%x\n", |
| 682 | __func__, config.flags, config.tx_type, config.rx_filter); |
| 683 | |
| 684 | /* reserved for future extensions */ |
| 685 | if (config.flags) |
| 686 | return -EINVAL; |
| 687 | |
| 688 | if ((config.tx_type != HWTSTAMP_TX_OFF) && |
| 689 | (config.tx_type != HWTSTAMP_TX_ON)) |
| 690 | return -ERANGE; |
| 691 | |
| 692 | ptpctl = bfin_read_EMAC_PTP_CTL(); |
| 693 | |
| 694 | switch (config.rx_filter) { |
| 695 | case HWTSTAMP_FILTER_NONE: |
| 696 | /* |
| 697 | * Dont allow any timestamping |
| 698 | */ |
| 699 | ptpfv3 = 0xFFFFFFFF; |
| 700 | bfin_write_EMAC_PTP_FV3(ptpfv3); |
| 701 | break; |
| 702 | case HWTSTAMP_FILTER_PTP_V1_L4_EVENT: |
| 703 | case HWTSTAMP_FILTER_PTP_V1_L4_SYNC: |
| 704 | case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ: |
| 705 | /* |
| 706 | * Clear the five comparison mask bits (bits[12:8]) in EMAC_PTP_CTL) |
| 707 | * to enable all the field matches. |
| 708 | */ |
| 709 | ptpctl &= ~0x1F00; |
| 710 | bfin_write_EMAC_PTP_CTL(ptpctl); |
| 711 | /* |
| 712 | * Keep the default values of the EMAC_PTP_FOFF register. |
| 713 | */ |
| 714 | ptpfoff = 0x4A24170C; |
| 715 | bfin_write_EMAC_PTP_FOFF(ptpfoff); |
| 716 | /* |
| 717 | * Keep the default values of the EMAC_PTP_FV1 and EMAC_PTP_FV2 |
| 718 | * registers. |
| 719 | */ |
| 720 | ptpfv1 = 0x11040800; |
| 721 | bfin_write_EMAC_PTP_FV1(ptpfv1); |
| 722 | ptpfv2 = 0x0140013F; |
| 723 | bfin_write_EMAC_PTP_FV2(ptpfv2); |
| 724 | /* |
| 725 | * The default value (0xFFFC) allows the timestamping of both |
| 726 | * received Sync messages and Delay_Req messages. |
| 727 | */ |
| 728 | ptpfv3 = 0xFFFFFFFC; |
| 729 | bfin_write_EMAC_PTP_FV3(ptpfv3); |
| 730 | |
| 731 | config.rx_filter = HWTSTAMP_FILTER_PTP_V1_L4_EVENT; |
| 732 | break; |
| 733 | case HWTSTAMP_FILTER_PTP_V2_L4_EVENT: |
| 734 | case HWTSTAMP_FILTER_PTP_V2_L4_SYNC: |
| 735 | case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ: |
| 736 | /* Clear all five comparison mask bits (bits[12:8]) in the |
| 737 | * EMAC_PTP_CTL register to enable all the field matches. |
| 738 | */ |
| 739 | ptpctl &= ~0x1F00; |
| 740 | bfin_write_EMAC_PTP_CTL(ptpctl); |
| 741 | /* |
| 742 | * Keep the default values of the EMAC_PTP_FOFF register, except set |
| 743 | * the PTPCOF field to 0x2A. |
| 744 | */ |
| 745 | ptpfoff = 0x2A24170C; |
| 746 | bfin_write_EMAC_PTP_FOFF(ptpfoff); |
| 747 | /* |
| 748 | * Keep the default values of the EMAC_PTP_FV1 and EMAC_PTP_FV2 |
| 749 | * registers. |
| 750 | */ |
| 751 | ptpfv1 = 0x11040800; |
| 752 | bfin_write_EMAC_PTP_FV1(ptpfv1); |
| 753 | ptpfv2 = 0x0140013F; |
| 754 | bfin_write_EMAC_PTP_FV2(ptpfv2); |
| 755 | /* |
| 756 | * To allow the timestamping of Pdelay_Req and Pdelay_Resp, set |
| 757 | * the value to 0xFFF0. |
| 758 | */ |
| 759 | ptpfv3 = 0xFFFFFFF0; |
| 760 | bfin_write_EMAC_PTP_FV3(ptpfv3); |
| 761 | |
| 762 | config.rx_filter = HWTSTAMP_FILTER_PTP_V2_L4_EVENT; |
| 763 | break; |
| 764 | case HWTSTAMP_FILTER_PTP_V2_L2_EVENT: |
| 765 | case HWTSTAMP_FILTER_PTP_V2_L2_SYNC: |
| 766 | case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ: |
| 767 | /* |
| 768 | * Clear bits 8 and 12 of the EMAC_PTP_CTL register to enable only the |
| 769 | * EFTM and PTPCM field comparison. |
| 770 | */ |
| 771 | ptpctl &= ~0x1100; |
| 772 | bfin_write_EMAC_PTP_CTL(ptpctl); |
| 773 | /* |
| 774 | * Keep the default values of all the fields of the EMAC_PTP_FOFF |
| 775 | * register, except set the PTPCOF field to 0x0E. |
| 776 | */ |
| 777 | ptpfoff = 0x0E24170C; |
| 778 | bfin_write_EMAC_PTP_FOFF(ptpfoff); |
| 779 | /* |
| 780 | * Program bits [15:0] of the EMAC_PTP_FV1 register to 0x88F7, which |
| 781 | * corresponds to PTP messages on the MAC layer. |
| 782 | */ |
| 783 | ptpfv1 = 0x110488F7; |
| 784 | bfin_write_EMAC_PTP_FV1(ptpfv1); |
| 785 | ptpfv2 = 0x0140013F; |
| 786 | bfin_write_EMAC_PTP_FV2(ptpfv2); |
| 787 | /* |
| 788 | * To allow the timestamping of Pdelay_Req and Pdelay_Resp |
| 789 | * messages, set the value to 0xFFF0. |
| 790 | */ |
| 791 | ptpfv3 = 0xFFFFFFF0; |
| 792 | bfin_write_EMAC_PTP_FV3(ptpfv3); |
| 793 | |
| 794 | config.rx_filter = HWTSTAMP_FILTER_PTP_V2_L2_EVENT; |
| 795 | break; |
| 796 | default: |
| 797 | return -ERANGE; |
| 798 | } |
| 799 | |
| 800 | if (config.tx_type == HWTSTAMP_TX_OFF && |
| 801 | bfin_mac_hwtstamp_is_none(config.rx_filter)) { |
| 802 | ptpctl &= ~PTP_EN; |
| 803 | bfin_write_EMAC_PTP_CTL(ptpctl); |
| 804 | |
| 805 | SSYNC(); |
| 806 | } else { |
| 807 | ptpctl |= PTP_EN; |
| 808 | bfin_write_EMAC_PTP_CTL(ptpctl); |
| 809 | |
| 810 | /* |
| 811 | * clear any existing timestamp |
| 812 | */ |
| 813 | bfin_read_EMAC_PTP_RXSNAPLO(); |
| 814 | bfin_read_EMAC_PTP_RXSNAPHI(); |
| 815 | |
| 816 | bfin_read_EMAC_PTP_TXSNAPLO(); |
| 817 | bfin_read_EMAC_PTP_TXSNAPHI(); |
| 818 | |
Barry Song | fe92afe | 2010-05-17 17:19:40 -0700 | [diff] [blame] | 819 | SSYNC(); |
Barry Song | fe92afe | 2010-05-17 17:19:40 -0700 | [diff] [blame] | 820 | } |
| 821 | |
| 822 | lp->stamp_cfg = config; |
| 823 | return copy_to_user(ifr->ifr_data, &config, sizeof(config)) ? |
| 824 | -EFAULT : 0; |
| 825 | } |
| 826 | |
Barry Song | fe92afe | 2010-05-17 17:19:40 -0700 | [diff] [blame] | 827 | static void bfin_tx_hwtstamp(struct net_device *netdev, struct sk_buff *skb) |
| 828 | { |
| 829 | struct bfin_mac_local *lp = netdev_priv(netdev); |
Barry Song | fe92afe | 2010-05-17 17:19:40 -0700 | [diff] [blame] | 830 | |
Oliver Hartkopp | 2244d07 | 2010-08-17 08:59:14 +0000 | [diff] [blame] | 831 | if (skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP) { |
Barry Song | fe92afe | 2010-05-17 17:19:40 -0700 | [diff] [blame] | 832 | int timeout_cnt = MAX_TIMEOUT_CNT; |
| 833 | |
| 834 | /* When doing time stamping, keep the connection to the socket |
| 835 | * a while longer |
| 836 | */ |
Oliver Hartkopp | 2244d07 | 2010-08-17 08:59:14 +0000 | [diff] [blame] | 837 | skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS; |
Barry Song | fe92afe | 2010-05-17 17:19:40 -0700 | [diff] [blame] | 838 | |
| 839 | /* |
| 840 | * The timestamping is done at the EMAC module's MII/RMII interface |
| 841 | * when the module sees the Start of Frame of an event message packet. This |
| 842 | * interface is the closest possible place to the physical Ethernet transmission |
| 843 | * medium, providing the best timing accuracy. |
| 844 | */ |
| 845 | while ((!(bfin_read_EMAC_PTP_ISTAT() & TXTL)) && (--timeout_cnt)) |
| 846 | udelay(1); |
| 847 | if (timeout_cnt == 0) |
Mike Frysinger | c6dd509 | 2011-01-10 02:54:29 +0000 | [diff] [blame] | 848 | netdev_err(netdev, "timestamp the TX packet failed\n"); |
Barry Song | fe92afe | 2010-05-17 17:19:40 -0700 | [diff] [blame] | 849 | else { |
| 850 | struct skb_shared_hwtstamps shhwtstamps; |
| 851 | u64 ns; |
| 852 | u64 regval; |
| 853 | |
| 854 | regval = bfin_read_EMAC_PTP_TXSNAPLO(); |
| 855 | regval |= (u64)bfin_read_EMAC_PTP_TXSNAPHI() << 32; |
| 856 | memset(&shhwtstamps, 0, sizeof(shhwtstamps)); |
Richard Cochran | bc3c5f6 | 2012-10-31 06:27:23 +0000 | [diff] [blame^] | 857 | ns = regval << lp->shift; |
Barry Song | fe92afe | 2010-05-17 17:19:40 -0700 | [diff] [blame] | 858 | shhwtstamps.hwtstamp = ns_to_ktime(ns); |
Barry Song | fe92afe | 2010-05-17 17:19:40 -0700 | [diff] [blame] | 859 | skb_tstamp_tx(skb, &shhwtstamps); |
Barry Song | fe92afe | 2010-05-17 17:19:40 -0700 | [diff] [blame] | 860 | } |
| 861 | } |
| 862 | } |
| 863 | |
| 864 | static void bfin_rx_hwtstamp(struct net_device *netdev, struct sk_buff *skb) |
| 865 | { |
| 866 | struct bfin_mac_local *lp = netdev_priv(netdev); |
| 867 | u32 valid; |
| 868 | u64 regval, ns; |
| 869 | struct skb_shared_hwtstamps *shhwtstamps; |
| 870 | |
| 871 | if (bfin_mac_hwtstamp_is_none(lp->stamp_cfg.rx_filter)) |
| 872 | return; |
| 873 | |
| 874 | valid = bfin_read_EMAC_PTP_ISTAT() & RXEL; |
| 875 | if (!valid) |
| 876 | return; |
| 877 | |
| 878 | shhwtstamps = skb_hwtstamps(skb); |
| 879 | |
| 880 | regval = bfin_read_EMAC_PTP_RXSNAPLO(); |
| 881 | regval |= (u64)bfin_read_EMAC_PTP_RXSNAPHI() << 32; |
Richard Cochran | bc3c5f6 | 2012-10-31 06:27:23 +0000 | [diff] [blame^] | 882 | ns = regval << lp->shift; |
Barry Song | fe92afe | 2010-05-17 17:19:40 -0700 | [diff] [blame] | 883 | memset(shhwtstamps, 0, sizeof(*shhwtstamps)); |
| 884 | shhwtstamps->hwtstamp = ns_to_ktime(ns); |
Barry Song | fe92afe | 2010-05-17 17:19:40 -0700 | [diff] [blame] | 885 | } |
| 886 | |
Barry Song | fe92afe | 2010-05-17 17:19:40 -0700 | [diff] [blame] | 887 | static void bfin_mac_hwtstamp_init(struct net_device *netdev) |
| 888 | { |
| 889 | struct bfin_mac_local *lp = netdev_priv(netdev); |
Richard Cochran | bc3c5f6 | 2012-10-31 06:27:23 +0000 | [diff] [blame^] | 890 | u64 addend; |
| 891 | u32 input_clk, phc_clk; |
Barry Song | fe92afe | 2010-05-17 17:19:40 -0700 | [diff] [blame] | 892 | |
| 893 | /* Initialize hardware timer */ |
Richard Cochran | bc3c5f6 | 2012-10-31 06:27:23 +0000 | [diff] [blame^] | 894 | input_clk = get_sclk(); |
| 895 | phc_clk = bfin_select_phc_clock(input_clk, &lp->shift); |
| 896 | addend = phc_clk * (1ULL << 32); |
| 897 | do_div(addend, input_clk); |
| 898 | bfin_write_EMAC_PTP_ADDEND((u32)addend); |
Barry Song | fe92afe | 2010-05-17 17:19:40 -0700 | [diff] [blame] | 899 | |
Richard Cochran | bc3c5f6 | 2012-10-31 06:27:23 +0000 | [diff] [blame^] | 900 | lp->addend = addend; |
Barry Song | fe92afe | 2010-05-17 17:19:40 -0700 | [diff] [blame] | 901 | |
| 902 | /* Initialize hwstamp config */ |
| 903 | lp->stamp_cfg.rx_filter = HWTSTAMP_FILTER_NONE; |
| 904 | lp->stamp_cfg.tx_type = HWTSTAMP_TX_OFF; |
| 905 | } |
| 906 | |
| 907 | #else |
| 908 | # define bfin_mac_hwtstamp_is_none(cfg) 0 |
| 909 | # define bfin_mac_hwtstamp_init(dev) |
| 910 | # define bfin_mac_hwtstamp_ioctl(dev, ifr, cmd) (-EOPNOTSUPP) |
| 911 | # define bfin_rx_hwtstamp(dev, skb) |
| 912 | # define bfin_tx_hwtstamp(dev, skb) |
| 913 | #endif |
| 914 | |
Sonic Zhang | 4fcc3d3 | 2010-06-11 17:44:31 +0800 | [diff] [blame] | 915 | static inline void _tx_reclaim_skb(void) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 916 | { |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 917 | do { |
| 918 | tx_list_head->desc_a.config &= ~DMAEN; |
| 919 | tx_list_head->status.status_word = 0; |
| 920 | if (tx_list_head->skb) { |
| 921 | dev_kfree_skb(tx_list_head->skb); |
| 922 | tx_list_head->skb = NULL; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 923 | } |
| 924 | tx_list_head = tx_list_head->next; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 925 | |
Sonic Zhang | 4fcc3d3 | 2010-06-11 17:44:31 +0800 | [diff] [blame] | 926 | } while (tx_list_head->status.status_word != 0); |
| 927 | } |
| 928 | |
| 929 | static void tx_reclaim_skb(struct bfin_mac_local *lp) |
| 930 | { |
| 931 | int timeout_cnt = MAX_TIMEOUT_CNT; |
| 932 | |
| 933 | if (tx_list_head->status.status_word != 0) |
| 934 | _tx_reclaim_skb(); |
| 935 | |
| 936 | if (current_tx_ptr->next == tx_list_head) { |
| 937 | while (tx_list_head->status.status_word == 0) { |
| 938 | /* slow down polling to avoid too many queue stop. */ |
| 939 | udelay(10); |
| 940 | /* reclaim skb if DMA is not running. */ |
| 941 | if (!(bfin_read_DMA2_IRQ_STATUS() & DMA_RUN)) |
| 942 | break; |
| 943 | if (timeout_cnt-- < 0) |
| 944 | break; |
| 945 | } |
| 946 | |
| 947 | if (timeout_cnt >= 0) |
| 948 | _tx_reclaim_skb(); |
| 949 | else |
| 950 | netif_stop_queue(lp->ndev); |
| 951 | } |
| 952 | |
| 953 | if (current_tx_ptr->next != tx_list_head && |
| 954 | netif_queue_stopped(lp->ndev)) |
| 955 | netif_wake_queue(lp->ndev); |
| 956 | |
| 957 | if (tx_list_head != current_tx_ptr) { |
| 958 | /* shorten the timer interval if tx queue is stopped */ |
| 959 | if (netif_queue_stopped(lp->ndev)) |
| 960 | lp->tx_reclaim_timer.expires = |
| 961 | jiffies + (TX_RECLAIM_JIFFIES >> 4); |
| 962 | else |
| 963 | lp->tx_reclaim_timer.expires = |
| 964 | jiffies + TX_RECLAIM_JIFFIES; |
| 965 | |
| 966 | mod_timer(&lp->tx_reclaim_timer, |
| 967 | lp->tx_reclaim_timer.expires); |
| 968 | } |
| 969 | |
| 970 | return; |
| 971 | } |
| 972 | |
| 973 | static void tx_reclaim_skb_timeout(unsigned long lp) |
| 974 | { |
| 975 | tx_reclaim_skb((struct bfin_mac_local *)lp); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 976 | } |
| 977 | |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 978 | static int bfin_mac_hard_start_xmit(struct sk_buff *skb, |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 979 | struct net_device *dev) |
| 980 | { |
Sonic Zhang | 4fcc3d3 | 2010-06-11 17:44:31 +0800 | [diff] [blame] | 981 | struct bfin_mac_local *lp = netdev_priv(dev); |
Bryan Wu | a50c0c0 | 2008-07-27 22:45:04 +0800 | [diff] [blame] | 982 | u16 *data; |
Michael Hennerich | 015dac8 | 2009-05-29 03:41:15 +0000 | [diff] [blame] | 983 | u32 data_align = (unsigned long)(skb->data) & 0x3; |
Barry Song | fe92afe | 2010-05-17 17:19:40 -0700 | [diff] [blame] | 984 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 985 | current_tx_ptr->skb = skb; |
| 986 | |
Michael Hennerich | 015dac8 | 2009-05-29 03:41:15 +0000 | [diff] [blame] | 987 | if (data_align == 0x2) { |
| 988 | /* move skb->data to current_tx_ptr payload */ |
| 989 | data = (u16 *)(skb->data) - 1; |
Barry Song | fe92afe | 2010-05-17 17:19:40 -0700 | [diff] [blame] | 990 | *data = (u16)(skb->len); |
| 991 | /* |
| 992 | * When transmitting an Ethernet packet, the PTP_TSYNC module requires |
| 993 | * a DMA_Length_Word field associated with the packet. The lower 12 bits |
| 994 | * of this field are the length of the packet payload in bytes and the higher |
| 995 | * 4 bits are the timestamping enable field. |
| 996 | */ |
Oliver Hartkopp | 2244d07 | 2010-08-17 08:59:14 +0000 | [diff] [blame] | 997 | if (skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP) |
Barry Song | fe92afe | 2010-05-17 17:19:40 -0700 | [diff] [blame] | 998 | *data |= 0x1000; |
| 999 | |
Michael Hennerich | 015dac8 | 2009-05-29 03:41:15 +0000 | [diff] [blame] | 1000 | current_tx_ptr->desc_a.start_addr = (u32)data; |
| 1001 | /* this is important! */ |
| 1002 | blackfin_dcache_flush_range((u32)data, |
| 1003 | (u32)((u8 *)data + skb->len + 4)); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1004 | } else { |
Michael Hennerich | 015dac8 | 2009-05-29 03:41:15 +0000 | [diff] [blame] | 1005 | *((u16 *)(current_tx_ptr->packet)) = (u16)(skb->len); |
Barry Song | fe92afe | 2010-05-17 17:19:40 -0700 | [diff] [blame] | 1006 | /* enable timestamping for the sent packet */ |
Oliver Hartkopp | 2244d07 | 2010-08-17 08:59:14 +0000 | [diff] [blame] | 1007 | if (skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP) |
Barry Song | fe92afe | 2010-05-17 17:19:40 -0700 | [diff] [blame] | 1008 | *((u16 *)(current_tx_ptr->packet)) |= 0x1000; |
Michael Hennerich | 015dac8 | 2009-05-29 03:41:15 +0000 | [diff] [blame] | 1009 | memcpy((u8 *)(current_tx_ptr->packet + 2), skb->data, |
| 1010 | skb->len); |
| 1011 | current_tx_ptr->desc_a.start_addr = |
| 1012 | (u32)current_tx_ptr->packet; |
Michael Hennerich | 015dac8 | 2009-05-29 03:41:15 +0000 | [diff] [blame] | 1013 | blackfin_dcache_flush_range( |
| 1014 | (u32)current_tx_ptr->packet, |
| 1015 | (u32)(current_tx_ptr->packet + skb->len + 2)); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1016 | } |
| 1017 | |
Sonic Zhang | 805a8ab | 2009-05-29 03:40:43 +0000 | [diff] [blame] | 1018 | /* make sure the internal data buffers in the core are drained |
| 1019 | * so that the DMA descriptors are completely written when the |
| 1020 | * DMA engine goes to fetch them below |
| 1021 | */ |
| 1022 | SSYNC(); |
| 1023 | |
Sonic Zhang | 4fcc3d3 | 2010-06-11 17:44:31 +0800 | [diff] [blame] | 1024 | /* always clear status buffer before start tx dma */ |
| 1025 | current_tx_ptr->status.status_word = 0; |
| 1026 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1027 | /* enable this packet's dma */ |
| 1028 | current_tx_ptr->desc_a.config |= DMAEN; |
| 1029 | |
| 1030 | /* tx dma is running, just return */ |
Michael Hennerich | 015dac8 | 2009-05-29 03:41:15 +0000 | [diff] [blame] | 1031 | if (bfin_read_DMA2_IRQ_STATUS() & DMA_RUN) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1032 | goto out; |
| 1033 | |
| 1034 | /* tx dma is not running */ |
| 1035 | bfin_write_DMA2_NEXT_DESC_PTR(&(current_tx_ptr->desc_a)); |
| 1036 | /* dma enabled, read from memory, size is 6 */ |
| 1037 | bfin_write_DMA2_CONFIG(current_tx_ptr->desc_a.config); |
| 1038 | /* Turn on the EMAC tx */ |
| 1039 | bfin_write_EMAC_OPMODE(bfin_read_EMAC_OPMODE() | TE); |
| 1040 | |
| 1041 | out: |
Barry Song | fe92afe | 2010-05-17 17:19:40 -0700 | [diff] [blame] | 1042 | bfin_tx_hwtstamp(dev, skb); |
| 1043 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1044 | current_tx_ptr = current_tx_ptr->next; |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 1045 | dev->stats.tx_packets++; |
| 1046 | dev->stats.tx_bytes += (skb->len); |
Sonic Zhang | 4fcc3d3 | 2010-06-11 17:44:31 +0800 | [diff] [blame] | 1047 | |
| 1048 | tx_reclaim_skb(lp); |
| 1049 | |
Patrick McHardy | 6ed1065 | 2009-06-23 06:03:08 +0000 | [diff] [blame] | 1050 | return NETDEV_TX_OK; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1051 | } |
| 1052 | |
Sonic Zhang | ad2864d | 2010-05-10 05:39:09 +0000 | [diff] [blame] | 1053 | #define IP_HEADER_OFF 0 |
Peter Meerwald | ec497b3 | 2010-05-17 17:20:50 -0700 | [diff] [blame] | 1054 | #define RX_ERROR_MASK (RX_LONG | RX_ALIGN | RX_CRC | RX_LEN | \ |
| 1055 | RX_FRAG | RX_ADDR | RX_DMAO | RX_PHY | RX_LATE | RX_RANGE) |
| 1056 | |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1057 | static void bfin_mac_rx(struct net_device *dev) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1058 | { |
| 1059 | struct sk_buff *skb, *new_skb; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1060 | unsigned short len; |
Barry Song | fe92afe | 2010-05-17 17:19:40 -0700 | [diff] [blame] | 1061 | struct bfin_mac_local *lp __maybe_unused = netdev_priv(dev); |
Sonic Zhang | ad2864d | 2010-05-10 05:39:09 +0000 | [diff] [blame] | 1062 | #if defined(BFIN_MAC_CSUM_OFFLOAD) |
| 1063 | unsigned int i; |
| 1064 | unsigned char fcs[ETH_FCS_LEN + 1]; |
| 1065 | #endif |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1066 | |
Peter Meerwald | ec497b3 | 2010-05-17 17:20:50 -0700 | [diff] [blame] | 1067 | /* check if frame status word reports an error condition |
| 1068 | * we which case we simply drop the packet |
| 1069 | */ |
| 1070 | if (current_rx_ptr->status.status_word & RX_ERROR_MASK) { |
Mike Frysinger | c6dd509 | 2011-01-10 02:54:29 +0000 | [diff] [blame] | 1071 | netdev_notice(dev, "rx: receive error - packet dropped\n"); |
Peter Meerwald | ec497b3 | 2010-05-17 17:20:50 -0700 | [diff] [blame] | 1072 | dev->stats.rx_dropped++; |
| 1073 | goto out; |
| 1074 | } |
| 1075 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1076 | /* allocate a new skb for next time receive */ |
| 1077 | skb = current_rx_ptr->skb; |
Barry Song | fe92afe | 2010-05-17 17:19:40 -0700 | [diff] [blame] | 1078 | |
Pradeep A. Dalvi | 1ab0d2e | 2012-02-06 11:16:48 +0000 | [diff] [blame] | 1079 | new_skb = netdev_alloc_skb(dev, PKT_BUF_SZ + NET_IP_ALIGN); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1080 | if (!new_skb) { |
Mike Frysinger | c6dd509 | 2011-01-10 02:54:29 +0000 | [diff] [blame] | 1081 | netdev_notice(dev, "rx: low on mem - packet dropped\n"); |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 1082 | dev->stats.rx_dropped++; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1083 | goto out; |
| 1084 | } |
| 1085 | /* reserve 2 bytes for RXDWA padding */ |
Michael Hennerich | 015dac8 | 2009-05-29 03:41:15 +0000 | [diff] [blame] | 1086 | skb_reserve(new_skb, NET_IP_ALIGN); |
Alexey Demin | 6e01d1a | 2008-01-30 16:52:27 +0800 | [diff] [blame] | 1087 | /* Invidate the data cache of skb->data range when it is write back |
| 1088 | * cache. It will prevent overwritting the new data from DMA |
| 1089 | */ |
| 1090 | blackfin_dcache_invalidate_range((unsigned long)new_skb->head, |
| 1091 | (unsigned long)new_skb->end); |
| 1092 | |
Sonic Zhang | f6e1e4f | 2010-05-10 05:39:08 +0000 | [diff] [blame] | 1093 | current_rx_ptr->skb = new_skb; |
| 1094 | current_rx_ptr->desc_a.start_addr = (unsigned long)new_skb->data - 2; |
| 1095 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1096 | len = (unsigned short)((current_rx_ptr->status.status_word) & RX_FRLEN); |
Sonic Zhang | ad2864d | 2010-05-10 05:39:09 +0000 | [diff] [blame] | 1097 | /* Deduce Ethernet FCS length from Ethernet payload length */ |
| 1098 | len -= ETH_FCS_LEN; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1099 | skb_put(skb, len); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1100 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1101 | skb->protocol = eth_type_trans(skb, dev); |
Barry Song | fe92afe | 2010-05-17 17:19:40 -0700 | [diff] [blame] | 1102 | |
| 1103 | bfin_rx_hwtstamp(dev, skb); |
| 1104 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1105 | #if defined(BFIN_MAC_CSUM_OFFLOAD) |
Sonic Zhang | ad2864d | 2010-05-10 05:39:09 +0000 | [diff] [blame] | 1106 | /* Checksum offloading only works for IPv4 packets with the standard IP header |
| 1107 | * length of 20 bytes, because the blackfin MAC checksum calculation is |
| 1108 | * based on that assumption. We must NOT use the calculated checksum if our |
| 1109 | * IP version or header break that assumption. |
| 1110 | */ |
| 1111 | if (skb->data[IP_HEADER_OFF] == 0x45) { |
| 1112 | skb->csum = current_rx_ptr->status.ip_payload_csum; |
| 1113 | /* |
| 1114 | * Deduce Ethernet FCS from hardware generated IP payload checksum. |
| 1115 | * IP checksum is based on 16-bit one's complement algorithm. |
| 1116 | * To deduce a value from checksum is equal to add its inversion. |
| 1117 | * If the IP payload len is odd, the inversed FCS should also |
| 1118 | * begin from odd address and leave first byte zero. |
| 1119 | */ |
| 1120 | if (skb->len % 2) { |
| 1121 | fcs[0] = 0; |
| 1122 | for (i = 0; i < ETH_FCS_LEN; i++) |
| 1123 | fcs[i + 1] = ~skb->data[skb->len + i]; |
| 1124 | skb->csum = csum_partial(fcs, ETH_FCS_LEN + 1, skb->csum); |
| 1125 | } else { |
| 1126 | for (i = 0; i < ETH_FCS_LEN; i++) |
| 1127 | fcs[i] = ~skb->data[skb->len + i]; |
| 1128 | skb->csum = csum_partial(fcs, ETH_FCS_LEN, skb->csum); |
| 1129 | } |
| 1130 | skb->ip_summed = CHECKSUM_COMPLETE; |
| 1131 | } |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1132 | #endif |
| 1133 | |
| 1134 | netif_rx(skb); |
Jeff Garzik | 09f75cd | 2007-10-03 17:41:50 -0700 | [diff] [blame] | 1135 | dev->stats.rx_packets++; |
| 1136 | dev->stats.rx_bytes += len; |
Peter Meerwald | ec497b3 | 2010-05-17 17:20:50 -0700 | [diff] [blame] | 1137 | out: |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1138 | current_rx_ptr->status.status_word = 0x00000000; |
| 1139 | current_rx_ptr = current_rx_ptr->next; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1140 | } |
| 1141 | |
| 1142 | /* interrupt routine to handle rx and error signal */ |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1143 | static irqreturn_t bfin_mac_interrupt(int irq, void *dev_id) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1144 | { |
| 1145 | struct net_device *dev = dev_id; |
| 1146 | int number = 0; |
| 1147 | |
| 1148 | get_one_packet: |
| 1149 | if (current_rx_ptr->status.status_word == 0) { |
| 1150 | /* no more new packet received */ |
| 1151 | if (number == 0) { |
| 1152 | if (current_rx_ptr->next->status.status_word != 0) { |
| 1153 | current_rx_ptr = current_rx_ptr->next; |
| 1154 | goto real_rx; |
| 1155 | } |
| 1156 | } |
| 1157 | bfin_write_DMA1_IRQ_STATUS(bfin_read_DMA1_IRQ_STATUS() | |
| 1158 | DMA_DONE | DMA_ERR); |
| 1159 | return IRQ_HANDLED; |
| 1160 | } |
| 1161 | |
| 1162 | real_rx: |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1163 | bfin_mac_rx(dev); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1164 | number++; |
| 1165 | goto get_one_packet; |
| 1166 | } |
| 1167 | |
| 1168 | #ifdef CONFIG_NET_POLL_CONTROLLER |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1169 | static void bfin_mac_poll(struct net_device *dev) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1170 | { |
Sonic Zhang | 4fcc3d3 | 2010-06-11 17:44:31 +0800 | [diff] [blame] | 1171 | struct bfin_mac_local *lp = netdev_priv(dev); |
| 1172 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1173 | disable_irq(IRQ_MAC_RX); |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1174 | bfin_mac_interrupt(IRQ_MAC_RX, dev); |
Sonic Zhang | 4fcc3d3 | 2010-06-11 17:44:31 +0800 | [diff] [blame] | 1175 | tx_reclaim_skb(lp); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1176 | enable_irq(IRQ_MAC_RX); |
| 1177 | } |
| 1178 | #endif /* CONFIG_NET_POLL_CONTROLLER */ |
| 1179 | |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1180 | static void bfin_mac_disable(void) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1181 | { |
| 1182 | unsigned int opmode; |
| 1183 | |
| 1184 | opmode = bfin_read_EMAC_OPMODE(); |
| 1185 | opmode &= (~RE); |
| 1186 | opmode &= (~TE); |
| 1187 | /* Turn off the EMAC */ |
| 1188 | bfin_write_EMAC_OPMODE(opmode); |
| 1189 | } |
| 1190 | |
| 1191 | /* |
| 1192 | * Enable Interrupts, Receive, and Transmit |
| 1193 | */ |
Sonic Zhang | 02460d0 | 2010-06-11 10:44:22 +0000 | [diff] [blame] | 1194 | static int bfin_mac_enable(struct phy_device *phydev) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1195 | { |
Mike Frysinger | 2bfa0f0 | 2010-05-10 05:39:13 +0000 | [diff] [blame] | 1196 | int ret; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1197 | u32 opmode; |
| 1198 | |
Mike Frysinger | c6dd509 | 2011-01-10 02:54:29 +0000 | [diff] [blame] | 1199 | pr_debug("%s\n", __func__); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1200 | |
| 1201 | /* Set RX DMA */ |
| 1202 | bfin_write_DMA1_NEXT_DESC_PTR(&(rx_list_head->desc_a)); |
| 1203 | bfin_write_DMA1_CONFIG(rx_list_head->desc_a.config); |
| 1204 | |
| 1205 | /* Wait MII done */ |
Mike Frysinger | 2bfa0f0 | 2010-05-10 05:39:13 +0000 | [diff] [blame] | 1206 | ret = bfin_mdio_poll(); |
| 1207 | if (ret) |
| 1208 | return ret; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1209 | |
| 1210 | /* We enable only RX here */ |
| 1211 | /* ASTP : Enable Automatic Pad Stripping |
| 1212 | PR : Promiscuous Mode for test |
| 1213 | PSF : Receive frames with total length less than 64 bytes. |
| 1214 | FDMODE : Full Duplex Mode |
| 1215 | LB : Internal Loopback for test |
| 1216 | RE : Receiver Enable */ |
| 1217 | opmode = bfin_read_EMAC_OPMODE(); |
| 1218 | if (opmode & FDMODE) |
| 1219 | opmode |= PSF; |
| 1220 | else |
| 1221 | opmode |= DRO | DC | PSF; |
| 1222 | opmode |= RE; |
| 1223 | |
Sonic Zhang | 02460d0 | 2010-06-11 10:44:22 +0000 | [diff] [blame] | 1224 | if (phydev->interface == PHY_INTERFACE_MODE_RMII) { |
| 1225 | opmode |= RMII; /* For Now only 100MBit are supported */ |
Mike Frysinger | 72f4905 | 2011-03-27 22:33:13 +0000 | [diff] [blame] | 1226 | #if defined(CONFIG_BF537) || defined(CONFIG_BF536) |
| 1227 | if (__SILICON_REVISION__ < 3) { |
| 1228 | /* |
| 1229 | * This isn't publicly documented (fun times!), but in |
| 1230 | * silicon <=0.2, the RX and TX pins are clocked together. |
| 1231 | * So in order to recv, we must enable the transmit side |
| 1232 | * as well. This will cause a spurious TX interrupt too, |
| 1233 | * but we can easily consume that. |
| 1234 | */ |
| 1235 | opmode |= TE; |
| 1236 | } |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1237 | #endif |
Sonic Zhang | 02460d0 | 2010-06-11 10:44:22 +0000 | [diff] [blame] | 1238 | } |
| 1239 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1240 | /* Turn on the EMAC rx */ |
| 1241 | bfin_write_EMAC_OPMODE(opmode); |
Mike Frysinger | 2bfa0f0 | 2010-05-10 05:39:13 +0000 | [diff] [blame] | 1242 | |
| 1243 | return 0; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1244 | } |
| 1245 | |
| 1246 | /* Our watchdog timed out. Called by the networking layer */ |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1247 | static void bfin_mac_timeout(struct net_device *dev) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1248 | { |
Sonic Zhang | 4fcc3d3 | 2010-06-11 17:44:31 +0800 | [diff] [blame] | 1249 | struct bfin_mac_local *lp = netdev_priv(dev); |
| 1250 | |
Harvey Harrison | b39d66a | 2008-08-20 16:52:04 -0700 | [diff] [blame] | 1251 | pr_debug("%s: %s\n", dev->name, __func__); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1252 | |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1253 | bfin_mac_disable(); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1254 | |
Sonic Zhang | 4fcc3d3 | 2010-06-11 17:44:31 +0800 | [diff] [blame] | 1255 | del_timer(&lp->tx_reclaim_timer); |
| 1256 | |
| 1257 | /* reset tx queue and free skb */ |
| 1258 | while (tx_list_head != current_tx_ptr) { |
| 1259 | tx_list_head->desc_a.config &= ~DMAEN; |
| 1260 | tx_list_head->status.status_word = 0; |
| 1261 | if (tx_list_head->skb) { |
| 1262 | dev_kfree_skb(tx_list_head->skb); |
| 1263 | tx_list_head->skb = NULL; |
| 1264 | } |
| 1265 | tx_list_head = tx_list_head->next; |
| 1266 | } |
| 1267 | |
| 1268 | if (netif_queue_stopped(lp->ndev)) |
| 1269 | netif_wake_queue(lp->ndev); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1270 | |
Sonic Zhang | 02460d0 | 2010-06-11 10:44:22 +0000 | [diff] [blame] | 1271 | bfin_mac_enable(lp->phydev); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1272 | |
| 1273 | /* We can accept TX packets again */ |
Eric Dumazet | 1ae5dc3 | 2010-05-10 05:01:31 -0700 | [diff] [blame] | 1274 | dev->trans_start = jiffies; /* prevent tx timeout */ |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1275 | netif_wake_queue(dev); |
| 1276 | } |
| 1277 | |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1278 | static void bfin_mac_multicast_hash(struct net_device *dev) |
Aidan Williams | 775919b | 2008-01-30 16:52:23 +0800 | [diff] [blame] | 1279 | { |
| 1280 | u32 emac_hashhi, emac_hashlo; |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 1281 | struct netdev_hw_addr *ha; |
Aidan Williams | 775919b | 2008-01-30 16:52:23 +0800 | [diff] [blame] | 1282 | u32 crc; |
| 1283 | |
| 1284 | emac_hashhi = emac_hashlo = 0; |
| 1285 | |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 1286 | netdev_for_each_mc_addr(ha, dev) { |
Joe Perches | f767b6d | 2011-01-12 18:08:04 +0000 | [diff] [blame] | 1287 | crc = ether_crc(ETH_ALEN, ha->addr); |
Aidan Williams | 775919b | 2008-01-30 16:52:23 +0800 | [diff] [blame] | 1288 | crc >>= 26; |
| 1289 | |
| 1290 | if (crc & 0x20) |
| 1291 | emac_hashhi |= 1 << (crc & 0x1f); |
| 1292 | else |
| 1293 | emac_hashlo |= 1 << (crc & 0x1f); |
| 1294 | } |
| 1295 | |
| 1296 | bfin_write_EMAC_HASHHI(emac_hashhi); |
| 1297 | bfin_write_EMAC_HASHLO(emac_hashlo); |
Aidan Williams | 775919b | 2008-01-30 16:52:23 +0800 | [diff] [blame] | 1298 | } |
| 1299 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1300 | /* |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1301 | * This routine will, depending on the values passed to it, |
| 1302 | * either make it accept multicast packets, go into |
| 1303 | * promiscuous mode (for TCPDUMP and cousins) or accept |
| 1304 | * a select set of multicast packets |
| 1305 | */ |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1306 | static void bfin_mac_set_multicast_list(struct net_device *dev) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1307 | { |
| 1308 | u32 sysctl; |
| 1309 | |
| 1310 | if (dev->flags & IFF_PROMISC) { |
Mike Frysinger | c6dd509 | 2011-01-10 02:54:29 +0000 | [diff] [blame] | 1311 | netdev_info(dev, "set promisc mode\n"); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1312 | sysctl = bfin_read_EMAC_OPMODE(); |
Sonic Zhang | c0da776 | 2010-05-10 05:39:12 +0000 | [diff] [blame] | 1313 | sysctl |= PR; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1314 | bfin_write_EMAC_OPMODE(sysctl); |
Aidan Williams | 775919b | 2008-01-30 16:52:23 +0800 | [diff] [blame] | 1315 | } else if (dev->flags & IFF_ALLMULTI) { |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1316 | /* accept all multicast */ |
| 1317 | sysctl = bfin_read_EMAC_OPMODE(); |
| 1318 | sysctl |= PAM; |
| 1319 | bfin_write_EMAC_OPMODE(sysctl); |
Jiri Pirko | 4cd24ea | 2010-02-08 04:30:35 +0000 | [diff] [blame] | 1320 | } else if (!netdev_mc_empty(dev)) { |
Aidan Williams | 775919b | 2008-01-30 16:52:23 +0800 | [diff] [blame] | 1321 | /* set up multicast hash table */ |
| 1322 | sysctl = bfin_read_EMAC_OPMODE(); |
| 1323 | sysctl |= HM; |
| 1324 | bfin_write_EMAC_OPMODE(sysctl); |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1325 | bfin_mac_multicast_hash(dev); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1326 | } else { |
| 1327 | /* clear promisc or multicast mode */ |
| 1328 | sysctl = bfin_read_EMAC_OPMODE(); |
| 1329 | sysctl &= ~(RAF | PAM); |
| 1330 | bfin_write_EMAC_OPMODE(sysctl); |
| 1331 | } |
| 1332 | } |
| 1333 | |
Barry Song | fe92afe | 2010-05-17 17:19:40 -0700 | [diff] [blame] | 1334 | static int bfin_mac_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd) |
| 1335 | { |
Sonic Zhang | 02460d0 | 2010-06-11 10:44:22 +0000 | [diff] [blame] | 1336 | struct bfin_mac_local *lp = netdev_priv(netdev); |
| 1337 | |
| 1338 | if (!netif_running(netdev)) |
| 1339 | return -EINVAL; |
| 1340 | |
Barry Song | fe92afe | 2010-05-17 17:19:40 -0700 | [diff] [blame] | 1341 | switch (cmd) { |
| 1342 | case SIOCSHWTSTAMP: |
| 1343 | return bfin_mac_hwtstamp_ioctl(netdev, ifr, cmd); |
| 1344 | default: |
Sonic Zhang | 02460d0 | 2010-06-11 10:44:22 +0000 | [diff] [blame] | 1345 | if (lp->phydev) |
| 1346 | return phy_mii_ioctl(lp->phydev, ifr, cmd); |
| 1347 | else |
| 1348 | return -EOPNOTSUPP; |
Barry Song | fe92afe | 2010-05-17 17:19:40 -0700 | [diff] [blame] | 1349 | } |
| 1350 | } |
| 1351 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1352 | /* |
| 1353 | * this puts the device in an inactive state |
| 1354 | */ |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1355 | static void bfin_mac_shutdown(struct net_device *dev) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1356 | { |
| 1357 | /* Turn off the EMAC */ |
| 1358 | bfin_write_EMAC_OPMODE(0x00000000); |
| 1359 | /* Turn off the EMAC RX DMA */ |
| 1360 | bfin_write_DMA1_CONFIG(0x0000); |
| 1361 | bfin_write_DMA2_CONFIG(0x0000); |
| 1362 | } |
| 1363 | |
| 1364 | /* |
| 1365 | * Open and Initialize the interface |
| 1366 | * |
| 1367 | * Set up everything, reset the card, etc.. |
| 1368 | */ |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1369 | static int bfin_mac_open(struct net_device *dev) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1370 | { |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1371 | struct bfin_mac_local *lp = netdev_priv(dev); |
Mike Frysinger | 2bfa0f0 | 2010-05-10 05:39:13 +0000 | [diff] [blame] | 1372 | int ret; |
Harvey Harrison | b39d66a | 2008-08-20 16:52:04 -0700 | [diff] [blame] | 1373 | pr_debug("%s: %s\n", dev->name, __func__); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1374 | |
| 1375 | /* |
| 1376 | * Check that the address is valid. If its not, refuse |
| 1377 | * to bring the device up. The user must specify an |
| 1378 | * address using ifconfig eth0 hw ether xx:xx:xx:xx:xx:xx |
| 1379 | */ |
| 1380 | if (!is_valid_ether_addr(dev->dev_addr)) { |
Mike Frysinger | c6dd509 | 2011-01-10 02:54:29 +0000 | [diff] [blame] | 1381 | netdev_warn(dev, "no valid ethernet hw addr\n"); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1382 | return -EINVAL; |
| 1383 | } |
| 1384 | |
| 1385 | /* initial rx and tx list */ |
Pradeep A. Dalvi | 1ab0d2e | 2012-02-06 11:16:48 +0000 | [diff] [blame] | 1386 | ret = desc_list_init(dev); |
Mike Frysinger | 2bfa0f0 | 2010-05-10 05:39:13 +0000 | [diff] [blame] | 1387 | if (ret) |
| 1388 | return ret; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1389 | |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 1390 | phy_start(lp->phydev); |
Vitja Makarov | 136492b | 2008-01-30 16:52:26 +0800 | [diff] [blame] | 1391 | phy_write(lp->phydev, MII_BMCR, BMCR_RESET); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1392 | setup_system_regs(dev); |
Michael Hennerich | ee02fee | 2008-07-27 22:45:05 +0800 | [diff] [blame] | 1393 | setup_mac_addr(dev->dev_addr); |
Mike Frysinger | 2bfa0f0 | 2010-05-10 05:39:13 +0000 | [diff] [blame] | 1394 | |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1395 | bfin_mac_disable(); |
Sonic Zhang | 02460d0 | 2010-06-11 10:44:22 +0000 | [diff] [blame] | 1396 | ret = bfin_mac_enable(lp->phydev); |
Mike Frysinger | 2bfa0f0 | 2010-05-10 05:39:13 +0000 | [diff] [blame] | 1397 | if (ret) |
| 1398 | return ret; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1399 | pr_debug("hardware init finished\n"); |
Mike Frysinger | 2bfa0f0 | 2010-05-10 05:39:13 +0000 | [diff] [blame] | 1400 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1401 | netif_start_queue(dev); |
| 1402 | netif_carrier_on(dev); |
| 1403 | |
| 1404 | return 0; |
| 1405 | } |
| 1406 | |
| 1407 | /* |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1408 | * this makes the board clean up everything that it can |
| 1409 | * and not talk to the outside world. Caused by |
| 1410 | * an 'ifconfig ethX down' |
| 1411 | */ |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1412 | static int bfin_mac_close(struct net_device *dev) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1413 | { |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1414 | struct bfin_mac_local *lp = netdev_priv(dev); |
Harvey Harrison | b39d66a | 2008-08-20 16:52:04 -0700 | [diff] [blame] | 1415 | pr_debug("%s: %s\n", dev->name, __func__); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1416 | |
| 1417 | netif_stop_queue(dev); |
| 1418 | netif_carrier_off(dev); |
| 1419 | |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 1420 | phy_stop(lp->phydev); |
Vitja Makarov | 136492b | 2008-01-30 16:52:26 +0800 | [diff] [blame] | 1421 | phy_write(lp->phydev, MII_BMCR, BMCR_PDOWN); |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 1422 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1423 | /* clear everything */ |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1424 | bfin_mac_shutdown(dev); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1425 | |
| 1426 | /* free the rx/tx buffers */ |
| 1427 | desc_list_free(); |
| 1428 | |
| 1429 | return 0; |
| 1430 | } |
| 1431 | |
Mike Frysinger | b63dc8f | 2009-05-26 20:55:33 -0700 | [diff] [blame] | 1432 | static const struct net_device_ops bfin_mac_netdev_ops = { |
| 1433 | .ndo_open = bfin_mac_open, |
| 1434 | .ndo_stop = bfin_mac_close, |
| 1435 | .ndo_start_xmit = bfin_mac_hard_start_xmit, |
| 1436 | .ndo_set_mac_address = bfin_mac_set_mac_address, |
| 1437 | .ndo_tx_timeout = bfin_mac_timeout, |
Jiri Pirko | afc4b13 | 2011-08-16 06:29:01 +0000 | [diff] [blame] | 1438 | .ndo_set_rx_mode = bfin_mac_set_multicast_list, |
Barry Song | fe92afe | 2010-05-17 17:19:40 -0700 | [diff] [blame] | 1439 | .ndo_do_ioctl = bfin_mac_ioctl, |
Mike Frysinger | b63dc8f | 2009-05-26 20:55:33 -0700 | [diff] [blame] | 1440 | .ndo_validate_addr = eth_validate_addr, |
| 1441 | .ndo_change_mtu = eth_change_mtu, |
| 1442 | #ifdef CONFIG_NET_POLL_CONTROLLER |
| 1443 | .ndo_poll_controller = bfin_mac_poll, |
| 1444 | #endif |
| 1445 | }; |
| 1446 | |
Mike Frysinger | d7b843d3 | 2008-07-27 22:45:03 +0800 | [diff] [blame] | 1447 | static int __devinit bfin_mac_probe(struct platform_device *pdev) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1448 | { |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1449 | struct net_device *ndev; |
| 1450 | struct bfin_mac_local *lp; |
Graf Yang | 080c825 | 2009-05-29 03:41:48 +0000 | [diff] [blame] | 1451 | struct platform_device *pd; |
Sonic Zhang | 02460d0 | 2010-06-11 10:44:22 +0000 | [diff] [blame] | 1452 | struct bfin_mii_bus_platform_data *mii_bus_data; |
Graf Yang | 080c825 | 2009-05-29 03:41:48 +0000 | [diff] [blame] | 1453 | int rc; |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1454 | |
| 1455 | ndev = alloc_etherdev(sizeof(struct bfin_mac_local)); |
Joe Perches | 41de8d4 | 2012-01-29 13:47:52 +0000 | [diff] [blame] | 1456 | if (!ndev) |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1457 | return -ENOMEM; |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1458 | |
| 1459 | SET_NETDEV_DEV(ndev, &pdev->dev); |
| 1460 | platform_set_drvdata(pdev, ndev); |
| 1461 | lp = netdev_priv(ndev); |
Sonic Zhang | 4fcc3d3 | 2010-06-11 17:44:31 +0800 | [diff] [blame] | 1462 | lp->ndev = ndev; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1463 | |
| 1464 | /* Grab the MAC address in the MAC */ |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1465 | *(__le32 *) (&(ndev->dev_addr[0])) = cpu_to_le32(bfin_read_EMAC_ADDRLO()); |
| 1466 | *(__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] | 1467 | |
| 1468 | /* probe mac */ |
| 1469 | /*todo: how to proble? which is revision_register */ |
| 1470 | bfin_write_EMAC_ADDRLO(0x12345678); |
| 1471 | if (bfin_read_EMAC_ADDRLO() != 0x12345678) { |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1472 | dev_err(&pdev->dev, "Cannot detect Blackfin on-chip ethernet MAC controller!\n"); |
| 1473 | rc = -ENODEV; |
| 1474 | goto out_err_probe_mac; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1475 | } |
| 1476 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1477 | |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1478 | /* |
| 1479 | * Is it valid? (Did bootloader initialize it?) |
| 1480 | * Grab the MAC from the board somehow |
| 1481 | * this is done in the arch/blackfin/mach-bfxxx/boards/eth_mac.c |
| 1482 | */ |
Danny Kukawka | 5055d2f | 2012-02-16 07:09:31 +0000 | [diff] [blame] | 1483 | if (!is_valid_ether_addr(ndev->dev_addr)) { |
| 1484 | if (bfin_get_ether_addr(ndev->dev_addr) || |
| 1485 | !is_valid_ether_addr(ndev->dev_addr)) { |
| 1486 | /* Still not valid, get a random one */ |
| 1487 | netdev_warn(ndev, "Setting Ethernet MAC to a random one\n"); |
| 1488 | eth_hw_addr_random(ndev); |
| 1489 | } |
| 1490 | } |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1491 | |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1492 | setup_mac_addr(ndev->dev_addr); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1493 | |
Graf Yang | 080c825 | 2009-05-29 03:41:48 +0000 | [diff] [blame] | 1494 | if (!pdev->dev.platform_data) { |
| 1495 | dev_err(&pdev->dev, "Cannot get platform device bfin_mii_bus!\n"); |
| 1496 | rc = -ENODEV; |
| 1497 | goto out_err_probe_mac; |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1498 | } |
Graf Yang | 080c825 | 2009-05-29 03:41:48 +0000 | [diff] [blame] | 1499 | pd = pdev->dev.platform_data; |
| 1500 | lp->mii_bus = platform_get_drvdata(pd); |
Sonic Zhang | 0e995cd | 2010-05-10 05:39:14 +0000 | [diff] [blame] | 1501 | if (!lp->mii_bus) { |
| 1502 | dev_err(&pdev->dev, "Cannot get mii_bus!\n"); |
| 1503 | rc = -ENODEV; |
Sonic Zhang | 02460d0 | 2010-06-11 10:44:22 +0000 | [diff] [blame] | 1504 | goto out_err_probe_mac; |
Sonic Zhang | 0e995cd | 2010-05-10 05:39:14 +0000 | [diff] [blame] | 1505 | } |
Graf Yang | 080c825 | 2009-05-29 03:41:48 +0000 | [diff] [blame] | 1506 | lp->mii_bus->priv = ndev; |
Sonic Zhang | 02460d0 | 2010-06-11 10:44:22 +0000 | [diff] [blame] | 1507 | mii_bus_data = pd->dev.platform_data; |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 1508 | |
Sonic Zhang | 02460d0 | 2010-06-11 10:44:22 +0000 | [diff] [blame] | 1509 | rc = mii_probe(ndev, mii_bus_data->phy_mode); |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1510 | if (rc) { |
| 1511 | dev_err(&pdev->dev, "MII Probe failed!\n"); |
| 1512 | goto out_err_mii_probe; |
| 1513 | } |
Bryan Wu | 4ae5a3a | 2007-09-19 23:37:36 +0800 | [diff] [blame] | 1514 | |
Mike Frysinger | c599bd6 | 2011-01-10 02:54:32 +0000 | [diff] [blame] | 1515 | lp->vlan1_mask = ETH_P_8021Q | mii_bus_data->vlan1_mask; |
| 1516 | lp->vlan2_mask = ETH_P_8021Q | mii_bus_data->vlan2_mask; |
| 1517 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1518 | /* Fill in the fields of the device structure with ethernet values. */ |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1519 | ether_setup(ndev); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1520 | |
Alexander Beregalov | 149da65 | 2009-04-14 18:30:24 +0000 | [diff] [blame] | 1521 | ndev->netdev_ops = &bfin_mac_netdev_ops; |
Bryan Wu | 679dce3 | 2008-04-25 11:53:11 +0800 | [diff] [blame] | 1522 | ndev->ethtool_ops = &bfin_mac_ethtool_ops; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1523 | |
Sonic Zhang | 4fcc3d3 | 2010-06-11 17:44:31 +0800 | [diff] [blame] | 1524 | init_timer(&lp->tx_reclaim_timer); |
| 1525 | lp->tx_reclaim_timer.data = (unsigned long)lp; |
| 1526 | lp->tx_reclaim_timer.function = tx_reclaim_skb_timeout; |
| 1527 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1528 | spin_lock_init(&lp->lock); |
| 1529 | |
| 1530 | /* now, enable interrupts */ |
| 1531 | /* register irq handler */ |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1532 | rc = request_irq(IRQ_MAC_RX, bfin_mac_interrupt, |
Michael Hennerich | 91a455f | 2009-05-29 03:39:45 +0000 | [diff] [blame] | 1533 | IRQF_DISABLED, "EMAC_RX", ndev); |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1534 | if (rc) { |
| 1535 | dev_err(&pdev->dev, "Cannot request Blackfin MAC RX IRQ!\n"); |
| 1536 | rc = -EBUSY; |
| 1537 | goto out_err_request_irq; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1538 | } |
| 1539 | |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1540 | rc = register_netdev(ndev); |
| 1541 | if (rc) { |
| 1542 | dev_err(&pdev->dev, "Cannot register net device!\n"); |
| 1543 | goto out_err_reg_ndev; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1544 | } |
| 1545 | |
Barry Song | fe92afe | 2010-05-17 17:19:40 -0700 | [diff] [blame] | 1546 | bfin_mac_hwtstamp_init(ndev); |
| 1547 | |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1548 | /* now, print out the card info, in a short format.. */ |
Mike Frysinger | c6dd509 | 2011-01-10 02:54:29 +0000 | [diff] [blame] | 1549 | netdev_info(ndev, "%s, Version %s\n", DRV_DESC, DRV_VERSION); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1550 | |
| 1551 | return 0; |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1552 | |
| 1553 | out_err_reg_ndev: |
| 1554 | free_irq(IRQ_MAC_RX, ndev); |
| 1555 | out_err_request_irq: |
| 1556 | out_err_mii_probe: |
Lennert Buytenhek | 298cf9b | 2008-10-08 16:29:57 -0700 | [diff] [blame] | 1557 | mdiobus_unregister(lp->mii_bus); |
Lennert Buytenhek | 298cf9b | 2008-10-08 16:29:57 -0700 | [diff] [blame] | 1558 | mdiobus_free(lp->mii_bus); |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1559 | out_err_probe_mac: |
| 1560 | platform_set_drvdata(pdev, NULL); |
| 1561 | free_netdev(ndev); |
| 1562 | |
| 1563 | return rc; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1564 | } |
| 1565 | |
Mike Frysinger | d7b843d3 | 2008-07-27 22:45:03 +0800 | [diff] [blame] | 1566 | static int __devexit bfin_mac_remove(struct platform_device *pdev) |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1567 | { |
| 1568 | struct net_device *ndev = platform_get_drvdata(pdev); |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1569 | struct bfin_mac_local *lp = netdev_priv(ndev); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1570 | |
| 1571 | platform_set_drvdata(pdev, NULL); |
| 1572 | |
Graf Yang | 080c825 | 2009-05-29 03:41:48 +0000 | [diff] [blame] | 1573 | lp->mii_bus->priv = NULL; |
Bryan Wu | 7ef0a7e | 2008-04-25 11:53:10 +0800 | [diff] [blame] | 1574 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1575 | unregister_netdev(ndev); |
| 1576 | |
| 1577 | free_irq(IRQ_MAC_RX, ndev); |
| 1578 | |
| 1579 | free_netdev(ndev); |
| 1580 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1581 | return 0; |
| 1582 | } |
| 1583 | |
Bryan Wu | 496a34c | 2007-09-19 23:37:14 +0800 | [diff] [blame] | 1584 | #ifdef CONFIG_PM |
| 1585 | 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] | 1586 | { |
Bryan Wu | 496a34c | 2007-09-19 23:37:14 +0800 | [diff] [blame] | 1587 | struct net_device *net_dev = platform_get_drvdata(pdev); |
Michael Hennerich | 53fd3f2 | 2010-05-10 05:39:11 +0000 | [diff] [blame] | 1588 | struct bfin_mac_local *lp = netdev_priv(net_dev); |
Bryan Wu | 496a34c | 2007-09-19 23:37:14 +0800 | [diff] [blame] | 1589 | |
Michael Hennerich | 53fd3f2 | 2010-05-10 05:39:11 +0000 | [diff] [blame] | 1590 | if (lp->wol) { |
| 1591 | bfin_write_EMAC_OPMODE((bfin_read_EMAC_OPMODE() & ~TE) | RE); |
| 1592 | bfin_write_EMAC_WKUP_CTL(MPKE); |
| 1593 | enable_irq_wake(IRQ_MAC_WAKEDET); |
| 1594 | } else { |
| 1595 | if (netif_running(net_dev)) |
| 1596 | bfin_mac_close(net_dev); |
| 1597 | } |
Bryan Wu | 496a34c | 2007-09-19 23:37:14 +0800 | [diff] [blame] | 1598 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1599 | return 0; |
| 1600 | } |
| 1601 | |
| 1602 | static int bfin_mac_resume(struct platform_device *pdev) |
| 1603 | { |
Bryan Wu | 496a34c | 2007-09-19 23:37:14 +0800 | [diff] [blame] | 1604 | struct net_device *net_dev = platform_get_drvdata(pdev); |
Michael Hennerich | 53fd3f2 | 2010-05-10 05:39:11 +0000 | [diff] [blame] | 1605 | struct bfin_mac_local *lp = netdev_priv(net_dev); |
Bryan Wu | 496a34c | 2007-09-19 23:37:14 +0800 | [diff] [blame] | 1606 | |
Michael Hennerich | 53fd3f2 | 2010-05-10 05:39:11 +0000 | [diff] [blame] | 1607 | if (lp->wol) { |
| 1608 | bfin_write_EMAC_OPMODE(bfin_read_EMAC_OPMODE() | TE); |
| 1609 | bfin_write_EMAC_WKUP_CTL(0); |
| 1610 | disable_irq_wake(IRQ_MAC_WAKEDET); |
| 1611 | } else { |
| 1612 | if (netif_running(net_dev)) |
| 1613 | bfin_mac_open(net_dev); |
| 1614 | } |
Bryan Wu | 496a34c | 2007-09-19 23:37:14 +0800 | [diff] [blame] | 1615 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1616 | return 0; |
| 1617 | } |
Bryan Wu | 496a34c | 2007-09-19 23:37:14 +0800 | [diff] [blame] | 1618 | #else |
| 1619 | #define bfin_mac_suspend NULL |
| 1620 | #define bfin_mac_resume NULL |
| 1621 | #endif /* CONFIG_PM */ |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1622 | |
Graf Yang | 080c825 | 2009-05-29 03:41:48 +0000 | [diff] [blame] | 1623 | static int __devinit bfin_mii_bus_probe(struct platform_device *pdev) |
| 1624 | { |
| 1625 | struct mii_bus *miibus; |
Sonic Zhang | 02460d0 | 2010-06-11 10:44:22 +0000 | [diff] [blame] | 1626 | struct bfin_mii_bus_platform_data *mii_bus_pd; |
| 1627 | const unsigned short *pin_req; |
Graf Yang | 080c825 | 2009-05-29 03:41:48 +0000 | [diff] [blame] | 1628 | int rc, i; |
| 1629 | |
Sonic Zhang | 02460d0 | 2010-06-11 10:44:22 +0000 | [diff] [blame] | 1630 | mii_bus_pd = dev_get_platdata(&pdev->dev); |
| 1631 | if (!mii_bus_pd) { |
| 1632 | dev_err(&pdev->dev, "No peripherals in platform data!\n"); |
| 1633 | return -EINVAL; |
| 1634 | } |
| 1635 | |
Graf Yang | 080c825 | 2009-05-29 03:41:48 +0000 | [diff] [blame] | 1636 | /* |
| 1637 | * We are setting up a network card, |
| 1638 | * so set the GPIO pins to Ethernet mode |
| 1639 | */ |
Sonic Zhang | 02460d0 | 2010-06-11 10:44:22 +0000 | [diff] [blame] | 1640 | pin_req = mii_bus_pd->mac_peripherals; |
Mike Frysinger | c6dd509 | 2011-01-10 02:54:29 +0000 | [diff] [blame] | 1641 | rc = peripheral_request_list(pin_req, KBUILD_MODNAME); |
Graf Yang | 080c825 | 2009-05-29 03:41:48 +0000 | [diff] [blame] | 1642 | if (rc) { |
| 1643 | dev_err(&pdev->dev, "Requesting peripherals failed!\n"); |
| 1644 | return rc; |
| 1645 | } |
| 1646 | |
| 1647 | rc = -ENOMEM; |
| 1648 | miibus = mdiobus_alloc(); |
| 1649 | if (miibus == NULL) |
| 1650 | goto out_err_alloc; |
| 1651 | miibus->read = bfin_mdiobus_read; |
| 1652 | miibus->write = bfin_mdiobus_write; |
| 1653 | miibus->reset = bfin_mdiobus_reset; |
| 1654 | |
| 1655 | miibus->parent = &pdev->dev; |
| 1656 | miibus->name = "bfin_mii_bus"; |
Sonic Zhang | 02460d0 | 2010-06-11 10:44:22 +0000 | [diff] [blame] | 1657 | miibus->phy_mask = mii_bus_pd->phy_mask; |
| 1658 | |
Florian Fainelli | 75432fd | 2012-01-09 23:59:08 +0000 | [diff] [blame] | 1659 | snprintf(miibus->id, MII_BUS_ID_SIZE, "%s-%x", |
| 1660 | pdev->name, pdev->id); |
Graf Yang | 080c825 | 2009-05-29 03:41:48 +0000 | [diff] [blame] | 1661 | miibus->irq = kmalloc(sizeof(int)*PHY_MAX_ADDR, GFP_KERNEL); |
Sonic Zhang | 02460d0 | 2010-06-11 10:44:22 +0000 | [diff] [blame] | 1662 | if (!miibus->irq) |
| 1663 | goto out_err_irq_alloc; |
| 1664 | |
| 1665 | for (i = rc; i < PHY_MAX_ADDR; ++i) |
Graf Yang | 080c825 | 2009-05-29 03:41:48 +0000 | [diff] [blame] | 1666 | miibus->irq[i] = PHY_POLL; |
| 1667 | |
Sonic Zhang | 02460d0 | 2010-06-11 10:44:22 +0000 | [diff] [blame] | 1668 | rc = clamp(mii_bus_pd->phydev_number, 0, PHY_MAX_ADDR); |
| 1669 | if (rc != mii_bus_pd->phydev_number) |
| 1670 | dev_err(&pdev->dev, "Invalid number (%i) of phydevs\n", |
| 1671 | mii_bus_pd->phydev_number); |
| 1672 | for (i = 0; i < rc; ++i) { |
| 1673 | unsigned short phyaddr = mii_bus_pd->phydev_data[i].addr; |
| 1674 | if (phyaddr < PHY_MAX_ADDR) |
| 1675 | miibus->irq[phyaddr] = mii_bus_pd->phydev_data[i].irq; |
| 1676 | else |
| 1677 | dev_err(&pdev->dev, |
| 1678 | "Invalid PHY address %i for phydev %i\n", |
| 1679 | phyaddr, i); |
| 1680 | } |
| 1681 | |
Graf Yang | 080c825 | 2009-05-29 03:41:48 +0000 | [diff] [blame] | 1682 | rc = mdiobus_register(miibus); |
| 1683 | if (rc) { |
| 1684 | dev_err(&pdev->dev, "Cannot register MDIO bus!\n"); |
| 1685 | goto out_err_mdiobus_register; |
| 1686 | } |
| 1687 | |
| 1688 | platform_set_drvdata(pdev, miibus); |
| 1689 | return 0; |
| 1690 | |
| 1691 | out_err_mdiobus_register: |
Denis Kirjanov | 7f267de | 2010-05-18 01:34:46 +0000 | [diff] [blame] | 1692 | kfree(miibus->irq); |
Sonic Zhang | 02460d0 | 2010-06-11 10:44:22 +0000 | [diff] [blame] | 1693 | out_err_irq_alloc: |
Graf Yang | 080c825 | 2009-05-29 03:41:48 +0000 | [diff] [blame] | 1694 | mdiobus_free(miibus); |
| 1695 | out_err_alloc: |
| 1696 | peripheral_free_list(pin_req); |
| 1697 | |
| 1698 | return rc; |
| 1699 | } |
| 1700 | |
| 1701 | static int __devexit bfin_mii_bus_remove(struct platform_device *pdev) |
| 1702 | { |
| 1703 | struct mii_bus *miibus = platform_get_drvdata(pdev); |
Sonic Zhang | 02460d0 | 2010-06-11 10:44:22 +0000 | [diff] [blame] | 1704 | struct bfin_mii_bus_platform_data *mii_bus_pd = |
| 1705 | dev_get_platdata(&pdev->dev); |
| 1706 | |
Graf Yang | 080c825 | 2009-05-29 03:41:48 +0000 | [diff] [blame] | 1707 | platform_set_drvdata(pdev, NULL); |
| 1708 | mdiobus_unregister(miibus); |
Denis Kirjanov | 7f267de | 2010-05-18 01:34:46 +0000 | [diff] [blame] | 1709 | kfree(miibus->irq); |
Graf Yang | 080c825 | 2009-05-29 03:41:48 +0000 | [diff] [blame] | 1710 | mdiobus_free(miibus); |
Sonic Zhang | 02460d0 | 2010-06-11 10:44:22 +0000 | [diff] [blame] | 1711 | peripheral_free_list(mii_bus_pd->mac_peripherals); |
| 1712 | |
Graf Yang | 080c825 | 2009-05-29 03:41:48 +0000 | [diff] [blame] | 1713 | return 0; |
| 1714 | } |
| 1715 | |
| 1716 | static struct platform_driver bfin_mii_bus_driver = { |
| 1717 | .probe = bfin_mii_bus_probe, |
| 1718 | .remove = __devexit_p(bfin_mii_bus_remove), |
| 1719 | .driver = { |
| 1720 | .name = "bfin_mii_bus", |
| 1721 | .owner = THIS_MODULE, |
| 1722 | }, |
| 1723 | }; |
| 1724 | |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1725 | static struct platform_driver bfin_mac_driver = { |
| 1726 | .probe = bfin_mac_probe, |
Mike Frysinger | d7b843d3 | 2008-07-27 22:45:03 +0800 | [diff] [blame] | 1727 | .remove = __devexit_p(bfin_mac_remove), |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1728 | .resume = bfin_mac_resume, |
| 1729 | .suspend = bfin_mac_suspend, |
| 1730 | .driver = { |
Mike Frysinger | c6dd509 | 2011-01-10 02:54:29 +0000 | [diff] [blame] | 1731 | .name = KBUILD_MODNAME, |
Kay Sievers | 72abb46 | 2008-04-18 13:50:44 -0700 | [diff] [blame] | 1732 | .owner = THIS_MODULE, |
| 1733 | }, |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1734 | }; |
| 1735 | |
| 1736 | static int __init bfin_mac_init(void) |
| 1737 | { |
Graf Yang | 080c825 | 2009-05-29 03:41:48 +0000 | [diff] [blame] | 1738 | int ret; |
| 1739 | ret = platform_driver_register(&bfin_mii_bus_driver); |
| 1740 | if (!ret) |
| 1741 | return platform_driver_register(&bfin_mac_driver); |
| 1742 | return -ENODEV; |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1743 | } |
| 1744 | |
| 1745 | module_init(bfin_mac_init); |
| 1746 | |
| 1747 | static void __exit bfin_mac_cleanup(void) |
| 1748 | { |
| 1749 | platform_driver_unregister(&bfin_mac_driver); |
Graf Yang | 080c825 | 2009-05-29 03:41:48 +0000 | [diff] [blame] | 1750 | platform_driver_unregister(&bfin_mii_bus_driver); |
Bryan Wu | e190d6b | 2007-07-17 14:43:44 +0800 | [diff] [blame] | 1751 | } |
| 1752 | |
| 1753 | module_exit(bfin_mac_cleanup); |
Kay Sievers | 72abb46 | 2008-04-18 13:50:44 -0700 | [diff] [blame] | 1754 | |