Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6
[safe/jmp/linux-2.6] / drivers / net / davinci_emac.c
1 /*
2  * DaVinci Ethernet Medium Access Controller
3  *
4  * DaVinci EMAC is based upon CPPI 3.0 TI DMA engine
5  *
6  * Copyright (C) 2009 Texas Instruments.
7  *
8  * ---------------------------------------------------------------------------
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23  * ---------------------------------------------------------------------------
24  * History:
25  * 0-5 A number of folks worked on this driver in bits and pieces but the major
26  *     contribution came from Suraj Iyer and Anant Gole
27  * 6.0 Anant Gole - rewrote the driver as per Linux conventions
28  * 6.1 Chaithrika U S - added support for Gigabit and RMII features,
29  *     PHY layer usage
30  */
31
32 #include <linux/module.h>
33 #include <linux/kernel.h>
34 #include <linux/sched.h>
35 #include <linux/string.h>
36 #include <linux/timer.h>
37 #include <linux/errno.h>
38 #include <linux/in.h>
39 #include <linux/ioport.h>
40 #include <linux/slab.h>
41 #include <linux/mm.h>
42 #include <linux/interrupt.h>
43 #include <linux/init.h>
44 #include <linux/netdevice.h>
45 #include <linux/etherdevice.h>
46 #include <linux/skbuff.h>
47 #include <linux/ethtool.h>
48 #include <linux/highmem.h>
49 #include <linux/proc_fs.h>
50 #include <linux/ctype.h>
51 #include <linux/version.h>
52 #include <linux/spinlock.h>
53 #include <linux/dma-mapping.h>
54 #include <linux/clk.h>
55 #include <linux/platform_device.h>
56 #include <linux/semaphore.h>
57 #include <linux/phy.h>
58 #include <linux/bitops.h>
59 #include <linux/io.h>
60 #include <linux/uaccess.h>
61 #include <linux/davinci_emac.h>
62
63 #include <asm/irq.h>
64 #include <asm/page.h>
65
66 static int debug_level;
67 module_param(debug_level, int, 0);
68 MODULE_PARM_DESC(debug_level, "DaVinci EMAC debug level (NETIF_MSG bits)");
69
70 /* Netif debug messages possible */
71 #define DAVINCI_EMAC_DEBUG      (NETIF_MSG_DRV | \
72                                 NETIF_MSG_PROBE | \
73                                 NETIF_MSG_LINK | \
74                                 NETIF_MSG_TIMER | \
75                                 NETIF_MSG_IFDOWN | \
76                                 NETIF_MSG_IFUP | \
77                                 NETIF_MSG_RX_ERR | \
78                                 NETIF_MSG_TX_ERR | \
79                                 NETIF_MSG_TX_QUEUED | \
80                                 NETIF_MSG_INTR | \
81                                 NETIF_MSG_TX_DONE | \
82                                 NETIF_MSG_RX_STATUS | \
83                                 NETIF_MSG_PKTDATA | \
84                                 NETIF_MSG_HW | \
85                                 NETIF_MSG_WOL)
86
87 /* version info */
88 #define EMAC_MAJOR_VERSION      6
89 #define EMAC_MINOR_VERSION      1
90 #define EMAC_MODULE_VERSION     "6.1"
91 MODULE_VERSION(EMAC_MODULE_VERSION);
92 static const char emac_version_string[] = "TI DaVinci EMAC Linux v6.1";
93
94 /* Configuration items */
95 #define EMAC_DEF_PASS_CRC               (0) /* Do not pass CRC upto frames */
96 #define EMAC_DEF_QOS_EN                 (0) /* EMAC proprietary QoS disabled */
97 #define EMAC_DEF_NO_BUFF_CHAIN          (0) /* No buffer chain */
98 #define EMAC_DEF_MACCTRL_FRAME_EN       (0) /* Discard Maccontrol frames */
99 #define EMAC_DEF_SHORT_FRAME_EN         (0) /* Discard short frames */
100 #define EMAC_DEF_ERROR_FRAME_EN         (0) /* Discard error frames */
101 #define EMAC_DEF_PROM_EN                (0) /* Promiscous disabled */
102 #define EMAC_DEF_PROM_CH                (0) /* Promiscous channel is 0 */
103 #define EMAC_DEF_BCAST_EN               (1) /* Broadcast enabled */
104 #define EMAC_DEF_BCAST_CH               (0) /* Broadcast channel is 0 */
105 #define EMAC_DEF_MCAST_EN               (1) /* Multicast enabled */
106 #define EMAC_DEF_MCAST_CH               (0) /* Multicast channel is 0 */
107
108 #define EMAC_DEF_TXPRIO_FIXED           (1) /* TX Priority is fixed */
109 #define EMAC_DEF_TXPACING_EN            (0) /* TX pacing NOT supported*/
110
111 #define EMAC_DEF_BUFFER_OFFSET          (0) /* Buffer offset to DMA (future) */
112 #define EMAC_DEF_MIN_ETHPKTSIZE         (60) /* Minimum ethernet pkt size */
113 #define EMAC_DEF_MAX_FRAME_SIZE         (1500 + 14 + 4 + 4)
114 #define EMAC_DEF_TX_CH                  (0) /* Default 0th channel */
115 #define EMAC_DEF_RX_CH                  (0) /* Default 0th channel */
116 #define EMAC_DEF_MDIO_TICK_MS           (10) /* typically 1 tick=1 ms) */
117 #define EMAC_DEF_MAX_TX_CH              (1) /* Max TX channels configured */
118 #define EMAC_DEF_MAX_RX_CH              (1) /* Max RX channels configured */
119 #define EMAC_POLL_WEIGHT                (64) /* Default NAPI poll weight */
120
121 /* Buffer descriptor parameters */
122 #define EMAC_DEF_TX_MAX_SERVICE         (32) /* TX max service BD's */
123 #define EMAC_DEF_RX_MAX_SERVICE         (64) /* should = netdev->weight */
124
125 /* EMAC register related defines */
126 #define EMAC_ALL_MULTI_REG_VALUE        (0xFFFFFFFF)
127 #define EMAC_NUM_MULTICAST_BITS         (64)
128 #define EMAC_TEARDOWN_VALUE             (0xFFFFFFFC)
129 #define EMAC_TX_CONTROL_TX_ENABLE_VAL   (0x1)
130 #define EMAC_RX_CONTROL_RX_ENABLE_VAL   (0x1)
131 #define EMAC_MAC_HOST_ERR_INTMASK_VAL   (0x2)
132 #define EMAC_RX_UNICAST_CLEAR_ALL       (0xFF)
133 #define EMAC_INT_MASK_CLEAR             (0xFF)
134
135 /* RX MBP register bit positions */
136 #define EMAC_RXMBP_PASSCRC_MASK         BIT(30)
137 #define EMAC_RXMBP_QOSEN_MASK           BIT(29)
138 #define EMAC_RXMBP_NOCHAIN_MASK         BIT(28)
139 #define EMAC_RXMBP_CMFEN_MASK           BIT(24)
140 #define EMAC_RXMBP_CSFEN_MASK           BIT(23)
141 #define EMAC_RXMBP_CEFEN_MASK           BIT(22)
142 #define EMAC_RXMBP_CAFEN_MASK           BIT(21)
143 #define EMAC_RXMBP_PROMCH_SHIFT         (16)
144 #define EMAC_RXMBP_PROMCH_MASK          (0x7 << 16)
145 #define EMAC_RXMBP_BROADEN_MASK         BIT(13)
146 #define EMAC_RXMBP_BROADCH_SHIFT        (8)
147 #define EMAC_RXMBP_BROADCH_MASK         (0x7 << 8)
148 #define EMAC_RXMBP_MULTIEN_MASK         BIT(5)
149 #define EMAC_RXMBP_MULTICH_SHIFT        (0)
150 #define EMAC_RXMBP_MULTICH_MASK         (0x7)
151 #define EMAC_RXMBP_CHMASK               (0x7)
152
153 /* EMAC register definitions/bit maps used */
154 # define EMAC_MBP_RXPROMISC             (0x00200000)
155 # define EMAC_MBP_PROMISCCH(ch)         (((ch) & 0x7) << 16)
156 # define EMAC_MBP_RXBCAST               (0x00002000)
157 # define EMAC_MBP_BCASTCHAN(ch)         (((ch) & 0x7) << 8)
158 # define EMAC_MBP_RXMCAST               (0x00000020)
159 # define EMAC_MBP_MCASTCHAN(ch)         ((ch) & 0x7)
160
161 /* EMAC mac_control register */
162 #define EMAC_MACCONTROL_TXPTYPE         BIT(9)
163 #define EMAC_MACCONTROL_TXPACEEN        BIT(6)
164 #define EMAC_MACCONTROL_GMIIEN          BIT(5)
165 #define EMAC_MACCONTROL_GIGABITEN       BIT(7)
166 #define EMAC_MACCONTROL_FULLDUPLEXEN    BIT(0)
167 #define EMAC_MACCONTROL_RMIISPEED_MASK  BIT(15)
168
169 /* GIGABIT MODE related bits */
170 #define EMAC_DM646X_MACCONTORL_GIG      BIT(7)
171 #define EMAC_DM646X_MACCONTORL_GIGFORCE BIT(17)
172
173 /* EMAC mac_status register */
174 #define EMAC_MACSTATUS_TXERRCODE_MASK   (0xF00000)
175 #define EMAC_MACSTATUS_TXERRCODE_SHIFT  (20)
176 #define EMAC_MACSTATUS_TXERRCH_MASK     (0x7)
177 #define EMAC_MACSTATUS_TXERRCH_SHIFT    (16)
178 #define EMAC_MACSTATUS_RXERRCODE_MASK   (0xF000)
179 #define EMAC_MACSTATUS_RXERRCODE_SHIFT  (12)
180 #define EMAC_MACSTATUS_RXERRCH_MASK     (0x7)
181 #define EMAC_MACSTATUS_RXERRCH_SHIFT    (8)
182
183 /* EMAC RX register masks */
184 #define EMAC_RX_MAX_LEN_MASK            (0xFFFF)
185 #define EMAC_RX_BUFFER_OFFSET_MASK      (0xFFFF)
186
187 /* MAC_IN_VECTOR (0x180) register bit fields */
188 #define EMAC_DM644X_MAC_IN_VECTOR_HOST_INT      BIT(17)
189 #define EMAC_DM644X_MAC_IN_VECTOR_STATPEND_INT  BIT(16)
190 #define EMAC_DM644X_MAC_IN_VECTOR_RX_INT_VEC    BIT(8)
191 #define EMAC_DM644X_MAC_IN_VECTOR_TX_INT_VEC    BIT(0)
192
193 /** NOTE:: For DM646x the IN_VECTOR has changed */
194 #define EMAC_DM646X_MAC_IN_VECTOR_RX_INT_VEC    BIT(EMAC_DEF_RX_CH)
195 #define EMAC_DM646X_MAC_IN_VECTOR_TX_INT_VEC    BIT(16 + EMAC_DEF_TX_CH)
196 #define EMAC_DM646X_MAC_IN_VECTOR_HOST_INT      BIT(26)
197 #define EMAC_DM646X_MAC_IN_VECTOR_STATPEND_INT  BIT(27)
198
199 /* CPPI bit positions */
200 #define EMAC_CPPI_SOP_BIT               BIT(31)
201 #define EMAC_CPPI_EOP_BIT               BIT(30)
202 #define EMAC_CPPI_OWNERSHIP_BIT         BIT(29)
203 #define EMAC_CPPI_EOQ_BIT               BIT(28)
204 #define EMAC_CPPI_TEARDOWN_COMPLETE_BIT BIT(27)
205 #define EMAC_CPPI_PASS_CRC_BIT          BIT(26)
206 #define EMAC_RX_BD_BUF_SIZE             (0xFFFF)
207 #define EMAC_BD_LENGTH_FOR_CACHE        (16) /* only CPPI bytes */
208 #define EMAC_RX_BD_PKT_LENGTH_MASK      (0xFFFF)
209
210 /* Max hardware defines */
211 #define EMAC_MAX_TXRX_CHANNELS           (8)  /* Max hardware channels */
212 #define EMAC_DEF_MAX_MULTICAST_ADDRESSES (64) /* Max mcast addr's */
213
214 /* EMAC Peripheral Device Register Memory Layout structure */
215 #define EMAC_TXIDVER            0x0
216 #define EMAC_TXCONTROL          0x4
217 #define EMAC_TXTEARDOWN         0x8
218 #define EMAC_RXIDVER            0x10
219 #define EMAC_RXCONTROL          0x14
220 #define EMAC_RXTEARDOWN         0x18
221 #define EMAC_TXINTSTATRAW       0x80
222 #define EMAC_TXINTSTATMASKED    0x84
223 #define EMAC_TXINTMASKSET       0x88
224 #define EMAC_TXINTMASKCLEAR     0x8C
225 #define EMAC_MACINVECTOR        0x90
226
227 #define EMAC_DM646X_MACEOIVECTOR        0x94
228
229 #define EMAC_RXINTSTATRAW       0xA0
230 #define EMAC_RXINTSTATMASKED    0xA4
231 #define EMAC_RXINTMASKSET       0xA8
232 #define EMAC_RXINTMASKCLEAR     0xAC
233 #define EMAC_MACINTSTATRAW      0xB0
234 #define EMAC_MACINTSTATMASKED   0xB4
235 #define EMAC_MACINTMASKSET      0xB8
236 #define EMAC_MACINTMASKCLEAR    0xBC
237
238 #define EMAC_RXMBPENABLE        0x100
239 #define EMAC_RXUNICASTSET       0x104
240 #define EMAC_RXUNICASTCLEAR     0x108
241 #define EMAC_RXMAXLEN           0x10C
242 #define EMAC_RXBUFFEROFFSET     0x110
243 #define EMAC_RXFILTERLOWTHRESH  0x114
244
245 #define EMAC_MACCONTROL         0x160
246 #define EMAC_MACSTATUS          0x164
247 #define EMAC_EMCONTROL          0x168
248 #define EMAC_FIFOCONTROL        0x16C
249 #define EMAC_MACCONFIG          0x170
250 #define EMAC_SOFTRESET          0x174
251 #define EMAC_MACSRCADDRLO       0x1D0
252 #define EMAC_MACSRCADDRHI       0x1D4
253 #define EMAC_MACHASH1           0x1D8
254 #define EMAC_MACHASH2           0x1DC
255 #define EMAC_MACADDRLO          0x500
256 #define EMAC_MACADDRHI          0x504
257 #define EMAC_MACINDEX           0x508
258
259 /* EMAC HDP and Completion registors */
260 #define EMAC_TXHDP(ch)          (0x600 + (ch * 4))
261 #define EMAC_RXHDP(ch)          (0x620 + (ch * 4))
262 #define EMAC_TXCP(ch)           (0x640 + (ch * 4))
263 #define EMAC_RXCP(ch)           (0x660 + (ch * 4))
264
265 /* EMAC statistics registers */
266 #define EMAC_RXGOODFRAMES       0x200
267 #define EMAC_RXBCASTFRAMES      0x204
268 #define EMAC_RXMCASTFRAMES      0x208
269 #define EMAC_RXPAUSEFRAMES      0x20C
270 #define EMAC_RXCRCERRORS        0x210
271 #define EMAC_RXALIGNCODEERRORS  0x214
272 #define EMAC_RXOVERSIZED        0x218
273 #define EMAC_RXJABBER           0x21C
274 #define EMAC_RXUNDERSIZED       0x220
275 #define EMAC_RXFRAGMENTS        0x224
276 #define EMAC_RXFILTERED         0x228
277 #define EMAC_RXQOSFILTERED      0x22C
278 #define EMAC_RXOCTETS           0x230
279 #define EMAC_TXGOODFRAMES       0x234
280 #define EMAC_TXBCASTFRAMES      0x238
281 #define EMAC_TXMCASTFRAMES      0x23C
282 #define EMAC_TXPAUSEFRAMES      0x240
283 #define EMAC_TXDEFERRED         0x244
284 #define EMAC_TXCOLLISION        0x248
285 #define EMAC_TXSINGLECOLL       0x24C
286 #define EMAC_TXMULTICOLL        0x250
287 #define EMAC_TXEXCESSIVECOLL    0x254
288 #define EMAC_TXLATECOLL         0x258
289 #define EMAC_TXUNDERRUN         0x25C
290 #define EMAC_TXCARRIERSENSE     0x260
291 #define EMAC_TXOCTETS           0x264
292 #define EMAC_NETOCTETS          0x280
293 #define EMAC_RXSOFOVERRUNS      0x284
294 #define EMAC_RXMOFOVERRUNS      0x288
295 #define EMAC_RXDMAOVERRUNS      0x28C
296
297 /* EMAC DM644x control registers */
298 #define EMAC_CTRL_EWCTL         (0x4)
299 #define EMAC_CTRL_EWINTTCNT     (0x8)
300
301 /* EMAC MDIO related */
302 /* Mask & Control defines */
303 #define MDIO_CONTROL_CLKDIV     (0xFF)
304 #define MDIO_CONTROL_ENABLE     BIT(30)
305 #define MDIO_USERACCESS_GO      BIT(31)
306 #define MDIO_USERACCESS_WRITE   BIT(30)
307 #define MDIO_USERACCESS_READ    (0)
308 #define MDIO_USERACCESS_REGADR  (0x1F << 21)
309 #define MDIO_USERACCESS_PHYADR  (0x1F << 16)
310 #define MDIO_USERACCESS_DATA    (0xFFFF)
311 #define MDIO_USERPHYSEL_LINKSEL BIT(7)
312 #define MDIO_VER_MODID          (0xFFFF << 16)
313 #define MDIO_VER_REVMAJ         (0xFF   << 8)
314 #define MDIO_VER_REVMIN         (0xFF)
315
316 #define MDIO_USERACCESS(inst)   (0x80 + (inst * 8))
317 #define MDIO_USERPHYSEL(inst)   (0x84 + (inst * 8))
318 #define MDIO_CONTROL            (0x04)
319
320 /* EMAC DM646X control module registers */
321 #define EMAC_DM646X_CMRXINTEN   (0x14)
322 #define EMAC_DM646X_CMTXINTEN   (0x18)
323
324 /* EMAC EOI codes for C0 */
325 #define EMAC_DM646X_MAC_EOI_C0_RXEN     (0x01)
326 #define EMAC_DM646X_MAC_EOI_C0_TXEN     (0x02)
327
328 /* EMAC Stats Clear Mask */
329 #define EMAC_STATS_CLR_MASK    (0xFFFFFFFF)
330
331 /** net_buf_obj: EMAC network bufferdata structure
332  *
333  * EMAC network buffer data structure
334  */
335 struct emac_netbufobj {
336         void *buf_token;
337         char *data_ptr;
338         int length;
339 };
340
341 /** net_pkt_obj: EMAC network packet data structure
342  *
343  * EMAC network packet data structure - supports buffer list (for future)
344  */
345 struct emac_netpktobj {
346         void *pkt_token; /* data token may hold tx/rx chan id */
347         struct emac_netbufobj *buf_list; /* array of network buffer objects */
348         int num_bufs;
349         int pkt_length;
350 };
351
352 /** emac_tx_bd: EMAC TX Buffer descriptor data structure
353  *
354  * EMAC TX Buffer descriptor data structure
355  */
356 struct emac_tx_bd {
357         int h_next;
358         int buff_ptr;
359         int off_b_len;
360         int mode; /* SOP, EOP, ownership, EOQ, teardown,Qstarv, length */
361         struct emac_tx_bd __iomem *next;
362         void *buf_token;
363 };
364
365 /** emac_txch: EMAC TX Channel data structure
366  *
367  * EMAC TX Channel data structure
368  */
369 struct emac_txch {
370         /* Config related */
371         u32 num_bd;
372         u32 service_max;
373
374         /* CPPI specific */
375         u32 alloc_size;
376         void __iomem *bd_mem;
377         struct emac_tx_bd __iomem *bd_pool_head;
378         struct emac_tx_bd __iomem *active_queue_head;
379         struct emac_tx_bd __iomem *active_queue_tail;
380         struct emac_tx_bd __iomem *last_hw_bdprocessed;
381         u32 queue_active;
382         u32 teardown_pending;
383         u32 *tx_complete;
384
385         /** statistics */
386         u32 proc_count;     /* TX: # of times emac_tx_bdproc is called */
387         u32 mis_queued_packets;
388         u32 queue_reinit;
389         u32 end_of_queue_add;
390         u32 out_of_tx_bd;
391         u32 no_active_pkts; /* IRQ when there were no packets to process */
392         u32 active_queue_count;
393 };
394
395 /** emac_rx_bd: EMAC RX Buffer descriptor data structure
396  *
397  * EMAC RX Buffer descriptor data structure
398  */
399 struct emac_rx_bd {
400         int h_next;
401         int buff_ptr;
402         int off_b_len;
403         int mode;
404         struct emac_rx_bd __iomem *next;
405         void *data_ptr;
406         void *buf_token;
407 };
408
409 /** emac_rxch: EMAC RX Channel data structure
410  *
411  * EMAC RX Channel data structure
412  */
413 struct emac_rxch {
414         /* configuration info */
415         u32 num_bd;
416         u32 service_max;
417         u32 buf_size;
418         char mac_addr[6];
419
420         /** CPPI specific */
421         u32 alloc_size;
422         void __iomem *bd_mem;
423         struct emac_rx_bd __iomem *bd_pool_head;
424         struct emac_rx_bd __iomem *active_queue_head;
425         struct emac_rx_bd __iomem *active_queue_tail;
426         u32 queue_active;
427         u32 teardown_pending;
428
429         /* packet and buffer objects */
430         struct emac_netpktobj pkt_queue;
431         struct emac_netbufobj buf_queue;
432
433         /** statistics */
434         u32 proc_count; /* number of times emac_rx_bdproc is called */
435         u32 processed_bd;
436         u32 recycled_bd;
437         u32 out_of_rx_bd;
438         u32 out_of_rx_buffers;
439         u32 queue_reinit;
440         u32 end_of_queue_add;
441         u32 end_of_queue;
442         u32 mis_queued_packets;
443 };
444
445 /* emac_priv: EMAC private data structure
446  *
447  * EMAC adapter private data structure
448  */
449 struct emac_priv {
450         u32 msg_enable;
451         struct net_device *ndev;
452         struct platform_device *pdev;
453         struct napi_struct napi;
454         char mac_addr[6];
455         spinlock_t tx_lock;
456         spinlock_t rx_lock;
457         void __iomem *remap_addr;
458         u32 emac_base_phys;
459         void __iomem *emac_base;
460         void __iomem *ctrl_base;
461         void __iomem *emac_ctrl_ram;
462         u32 ctrl_ram_size;
463         u32 hw_ram_addr;
464         struct emac_txch *txch[EMAC_DEF_MAX_TX_CH];
465         struct emac_rxch *rxch[EMAC_DEF_MAX_RX_CH];
466         u32 link; /* 1=link on, 0=link off */
467         u32 speed; /* 0=Auto Neg, 1=No PHY, 10,100, 1000 - mbps */
468         u32 duplex; /* Link duplex: 0=Half, 1=Full */
469         u32 rx_buf_size;
470         u32 isr_count;
471         u8 rmii_en;
472         u8 version;
473         struct net_device_stats net_dev_stats;
474         u32 mac_hash1;
475         u32 mac_hash2;
476         u32 multicast_hash_cnt[EMAC_NUM_MULTICAST_BITS];
477         u32 rx_addr_type;
478         /* periodic timer required for MDIO polling */
479         struct timer_list periodic_timer;
480         u32 periodic_ticks;
481         u32 timer_active;
482         u32 phy_mask;
483         /* mii_bus,phy members */
484         struct mii_bus *mii_bus;
485         struct phy_device *phydev;
486         spinlock_t lock;
487         /*platform specific members*/
488         void (*int_enable) (void);
489         void (*int_disable) (void);
490 };
491
492 /* clock frequency for EMAC */
493 static struct clk *emac_clk;
494 static unsigned long emac_bus_frequency;
495 static unsigned long mdio_max_freq;
496
497 #define emac_virt_to_phys(addr, priv) \
498         (((u32 __force)(addr) - (u32 __force)(priv->emac_ctrl_ram)) \
499         + priv->hw_ram_addr)
500
501 /* Cache macros - Packet buffers would be from skb pool which is cached */
502 #define EMAC_VIRT_NOCACHE(addr) (addr)
503
504 /* DM644x does not have BD's in cached memory - so no cache functions */
505 #define BD_CACHE_INVALIDATE(addr, size)
506 #define BD_CACHE_WRITEBACK(addr, size)
507 #define BD_CACHE_WRITEBACK_INVALIDATE(addr, size)
508
509 /* EMAC TX Host Error description strings */
510 static char *emac_txhost_errcodes[16] = {
511         "No error", "SOP error", "Ownership bit not set in SOP buffer",
512         "Zero Next Buffer Descriptor Pointer Without EOP",
513         "Zero Buffer Pointer", "Zero Buffer Length", "Packet Length Error",
514         "Reserved", "Reserved", "Reserved", "Reserved", "Reserved",
515         "Reserved", "Reserved", "Reserved", "Reserved"
516 };
517
518 /* EMAC RX Host Error description strings */
519 static char *emac_rxhost_errcodes[16] = {
520         "No error", "Reserved", "Ownership bit not set in input buffer",
521         "Reserved", "Zero Buffer Pointer", "Reserved", "Reserved",
522         "Reserved", "Reserved", "Reserved", "Reserved", "Reserved",
523         "Reserved", "Reserved", "Reserved", "Reserved"
524 };
525
526 /* Helper macros */
527 #define emac_read(reg)            ioread32(priv->emac_base + (reg))
528 #define emac_write(reg, val)      iowrite32(val, priv->emac_base + (reg))
529
530 #define emac_ctrl_read(reg)       ioread32((priv->ctrl_base + (reg)))
531 #define emac_ctrl_write(reg, val) iowrite32(val, (priv->ctrl_base + (reg)))
532
533 #define emac_mdio_read(reg)       ioread32(bus->priv + (reg))
534 #define emac_mdio_write(reg, val) iowrite32(val, (bus->priv + (reg)))
535
536 /**
537  * emac_dump_regs: Dump important EMAC registers to debug terminal
538  * @priv: The DaVinci EMAC private adapter structure
539  *
540  * Executes ethtool set cmd & sets phy mode
541  *
542  */
543 static void emac_dump_regs(struct emac_priv *priv)
544 {
545         struct device *emac_dev = &priv->ndev->dev;
546
547         /* Print important registers in EMAC */
548         dev_info(emac_dev, "EMAC Basic registers\n");
549         dev_info(emac_dev, "EMAC: EWCTL: %08X, EWINTTCNT: %08X\n",
550                 emac_ctrl_read(EMAC_CTRL_EWCTL),
551                 emac_ctrl_read(EMAC_CTRL_EWINTTCNT));
552         dev_info(emac_dev, "EMAC: TXID: %08X %s, RXID: %08X %s\n",
553                 emac_read(EMAC_TXIDVER),
554                 ((emac_read(EMAC_TXCONTROL)) ? "enabled" : "disabled"),
555                 emac_read(EMAC_RXIDVER),
556                 ((emac_read(EMAC_RXCONTROL)) ? "enabled" : "disabled"));
557         dev_info(emac_dev, "EMAC: TXIntRaw:%08X, TxIntMasked: %08X, "\
558                 "TxIntMasSet: %08X\n", emac_read(EMAC_TXINTSTATRAW),
559                 emac_read(EMAC_TXINTSTATMASKED), emac_read(EMAC_TXINTMASKSET));
560         dev_info(emac_dev, "EMAC: RXIntRaw:%08X, RxIntMasked: %08X, "\
561                 "RxIntMasSet: %08X\n", emac_read(EMAC_RXINTSTATRAW),
562                 emac_read(EMAC_RXINTSTATMASKED), emac_read(EMAC_RXINTMASKSET));
563         dev_info(emac_dev, "EMAC: MacIntRaw:%08X, MacIntMasked: %08X, "\
564                 "MacInVector=%08X\n", emac_read(EMAC_MACINTSTATRAW),
565                 emac_read(EMAC_MACINTSTATMASKED), emac_read(EMAC_MACINVECTOR));
566         dev_info(emac_dev, "EMAC: EmuControl:%08X, FifoControl: %08X\n",
567                 emac_read(EMAC_EMCONTROL), emac_read(EMAC_FIFOCONTROL));
568         dev_info(emac_dev, "EMAC: MBPEnable:%08X, RXUnicastSet: %08X, "\
569                 "RXMaxLen=%08X\n", emac_read(EMAC_RXMBPENABLE),
570                 emac_read(EMAC_RXUNICASTSET), emac_read(EMAC_RXMAXLEN));
571         dev_info(emac_dev, "EMAC: MacControl:%08X, MacStatus: %08X, "\
572                 "MacConfig=%08X\n", emac_read(EMAC_MACCONTROL),
573                 emac_read(EMAC_MACSTATUS), emac_read(EMAC_MACCONFIG));
574         dev_info(emac_dev, "EMAC: TXHDP[0]:%08X, RXHDP[0]: %08X\n",
575                 emac_read(EMAC_TXHDP(0)), emac_read(EMAC_RXHDP(0)));
576         dev_info(emac_dev, "EMAC Statistics\n");
577         dev_info(emac_dev, "EMAC: rx_good_frames:%d\n",
578                 emac_read(EMAC_RXGOODFRAMES));
579         dev_info(emac_dev, "EMAC: rx_broadcast_frames:%d\n",
580                 emac_read(EMAC_RXBCASTFRAMES));
581         dev_info(emac_dev, "EMAC: rx_multicast_frames:%d\n",
582                 emac_read(EMAC_RXMCASTFRAMES));
583         dev_info(emac_dev, "EMAC: rx_pause_frames:%d\n",
584                 emac_read(EMAC_RXPAUSEFRAMES));
585         dev_info(emac_dev, "EMAC: rx_crcerrors:%d\n",
586                 emac_read(EMAC_RXCRCERRORS));
587         dev_info(emac_dev, "EMAC: rx_align_code_errors:%d\n",
588                 emac_read(EMAC_RXALIGNCODEERRORS));
589         dev_info(emac_dev, "EMAC: rx_oversized_frames:%d\n",
590                 emac_read(EMAC_RXOVERSIZED));
591         dev_info(emac_dev, "EMAC: rx_jabber_frames:%d\n",
592                 emac_read(EMAC_RXJABBER));
593         dev_info(emac_dev, "EMAC: rx_undersized_frames:%d\n",
594                 emac_read(EMAC_RXUNDERSIZED));
595         dev_info(emac_dev, "EMAC: rx_fragments:%d\n",
596                 emac_read(EMAC_RXFRAGMENTS));
597         dev_info(emac_dev, "EMAC: rx_filtered_frames:%d\n",
598                 emac_read(EMAC_RXFILTERED));
599         dev_info(emac_dev, "EMAC: rx_qos_filtered_frames:%d\n",
600                 emac_read(EMAC_RXQOSFILTERED));
601         dev_info(emac_dev, "EMAC: rx_octets:%d\n",
602                 emac_read(EMAC_RXOCTETS));
603         dev_info(emac_dev, "EMAC: tx_goodframes:%d\n",
604                 emac_read(EMAC_TXGOODFRAMES));
605         dev_info(emac_dev, "EMAC: tx_bcastframes:%d\n",
606                 emac_read(EMAC_TXBCASTFRAMES));
607         dev_info(emac_dev, "EMAC: tx_mcastframes:%d\n",
608                 emac_read(EMAC_TXMCASTFRAMES));
609         dev_info(emac_dev, "EMAC: tx_pause_frames:%d\n",
610                 emac_read(EMAC_TXPAUSEFRAMES));
611         dev_info(emac_dev, "EMAC: tx_deferred_frames:%d\n",
612                 emac_read(EMAC_TXDEFERRED));
613         dev_info(emac_dev, "EMAC: tx_collision_frames:%d\n",
614                 emac_read(EMAC_TXCOLLISION));
615         dev_info(emac_dev, "EMAC: tx_single_coll_frames:%d\n",
616                 emac_read(EMAC_TXSINGLECOLL));
617         dev_info(emac_dev, "EMAC: tx_mult_coll_frames:%d\n",
618                 emac_read(EMAC_TXMULTICOLL));
619         dev_info(emac_dev, "EMAC: tx_excessive_collisions:%d\n",
620                 emac_read(EMAC_TXEXCESSIVECOLL));
621         dev_info(emac_dev, "EMAC: tx_late_collisions:%d\n",
622                 emac_read(EMAC_TXLATECOLL));
623         dev_info(emac_dev, "EMAC: tx_underrun:%d\n",
624                 emac_read(EMAC_TXUNDERRUN));
625         dev_info(emac_dev, "EMAC: tx_carrier_sense_errors:%d\n",
626                 emac_read(EMAC_TXCARRIERSENSE));
627         dev_info(emac_dev, "EMAC: tx_octets:%d\n",
628                 emac_read(EMAC_TXOCTETS));
629         dev_info(emac_dev, "EMAC: net_octets:%d\n",
630                 emac_read(EMAC_NETOCTETS));
631         dev_info(emac_dev, "EMAC: rx_sof_overruns:%d\n",
632                 emac_read(EMAC_RXSOFOVERRUNS));
633         dev_info(emac_dev, "EMAC: rx_mof_overruns:%d\n",
634                 emac_read(EMAC_RXMOFOVERRUNS));
635         dev_info(emac_dev, "EMAC: rx_dma_overruns:%d\n",
636                 emac_read(EMAC_RXDMAOVERRUNS));
637 }
638
639 /*************************************************************************
640  *  EMAC MDIO/Phy Functionality
641  *************************************************************************/
642 /**
643  * emac_get_drvinfo: Get EMAC driver information
644  * @ndev: The DaVinci EMAC network adapter
645  * @info: ethtool info structure containing name and version
646  *
647  * Returns EMAC driver information (name and version)
648  *
649  */
650 static void emac_get_drvinfo(struct net_device *ndev,
651                              struct ethtool_drvinfo *info)
652 {
653         strcpy(info->driver, emac_version_string);
654         strcpy(info->version, EMAC_MODULE_VERSION);
655 }
656
657 /**
658  * emac_get_settings: Get EMAC settings
659  * @ndev: The DaVinci EMAC network adapter
660  * @ecmd: ethtool command
661  *
662  * Executes ethool get command
663  *
664  */
665 static int emac_get_settings(struct net_device *ndev,
666                              struct ethtool_cmd *ecmd)
667 {
668         struct emac_priv *priv = netdev_priv(ndev);
669         if (priv->phy_mask)
670                 return phy_ethtool_gset(priv->phydev, ecmd);
671         else
672                 return -EOPNOTSUPP;
673
674 }
675
676 /**
677  * emac_set_settings: Set EMAC settings
678  * @ndev: The DaVinci EMAC network adapter
679  * @ecmd: ethtool command
680  *
681  * Executes ethool set command
682  *
683  */
684 static int emac_set_settings(struct net_device *ndev, struct ethtool_cmd *ecmd)
685 {
686         struct emac_priv *priv = netdev_priv(ndev);
687         if (priv->phy_mask)
688                 return phy_ethtool_sset(priv->phydev, ecmd);
689         else
690                 return -EOPNOTSUPP;
691
692 }
693
694 /**
695  * ethtool_ops: DaVinci EMAC Ethtool structure
696  *
697  * Ethtool support for EMAC adapter
698  *
699  */
700 static const struct ethtool_ops ethtool_ops = {
701         .get_drvinfo = emac_get_drvinfo,
702         .get_settings = emac_get_settings,
703         .set_settings = emac_set_settings,
704         .get_link = ethtool_op_get_link,
705 };
706
707 /**
708  * emac_update_phystatus: Update Phy status
709  * @priv: The DaVinci EMAC private adapter structure
710  *
711  * Updates phy status and takes action for network queue if required
712  * based upon link status
713  *
714  */
715 static void emac_update_phystatus(struct emac_priv *priv)
716 {
717         u32 mac_control;
718         u32 new_duplex;
719         u32 cur_duplex;
720         struct net_device *ndev = priv->ndev;
721
722         mac_control = emac_read(EMAC_MACCONTROL);
723         cur_duplex = (mac_control & EMAC_MACCONTROL_FULLDUPLEXEN) ?
724                         DUPLEX_FULL : DUPLEX_HALF;
725         if (priv->phy_mask)
726                 new_duplex = priv->phydev->duplex;
727         else
728                 new_duplex = DUPLEX_FULL;
729
730         /* We get called only if link has changed (speed/duplex/status) */
731         if ((priv->link) && (new_duplex != cur_duplex)) {
732                 priv->duplex = new_duplex;
733                 if (DUPLEX_FULL == priv->duplex)
734                         mac_control |= (EMAC_MACCONTROL_FULLDUPLEXEN);
735                 else
736                         mac_control &= ~(EMAC_MACCONTROL_FULLDUPLEXEN);
737         }
738
739         if (priv->speed == SPEED_1000 && (priv->version == EMAC_VERSION_2)) {
740                 mac_control = emac_read(EMAC_MACCONTROL);
741                 mac_control |= (EMAC_DM646X_MACCONTORL_GIG |
742                                 EMAC_DM646X_MACCONTORL_GIGFORCE);
743         } else {
744                 /* Clear the GIG bit and GIGFORCE bit */
745                 mac_control &= ~(EMAC_DM646X_MACCONTORL_GIGFORCE |
746                                         EMAC_DM646X_MACCONTORL_GIG);
747
748                 if (priv->rmii_en && (priv->speed == SPEED_100))
749                         mac_control |= EMAC_MACCONTROL_RMIISPEED_MASK;
750                 else
751                         mac_control &= ~EMAC_MACCONTROL_RMIISPEED_MASK;
752         }
753
754         /* Update mac_control if changed */
755         emac_write(EMAC_MACCONTROL, mac_control);
756
757         if (priv->link) {
758                 /* link ON */
759                 if (!netif_carrier_ok(ndev))
760                         netif_carrier_on(ndev);
761         /* reactivate the transmit queue if it is stopped */
762                 if (netif_running(ndev) && netif_queue_stopped(ndev))
763                         netif_wake_queue(ndev);
764         } else {
765                 /* link OFF */
766                 if (netif_carrier_ok(ndev))
767                         netif_carrier_off(ndev);
768                 if (!netif_queue_stopped(ndev))
769                         netif_stop_queue(ndev);
770         }
771 }
772
773 /**
774  * hash_get: Calculate hash value from mac address
775  * @addr: mac address to delete from hash table
776  *
777  * Calculates hash value from mac address
778  *
779  */
780 static u32 hash_get(u8 *addr)
781 {
782         u32 hash;
783         u8 tmpval;
784         int cnt;
785         hash = 0;
786
787         for (cnt = 0; cnt < 2; cnt++) {
788                 tmpval = *addr++;
789                 hash ^= (tmpval >> 2) ^ (tmpval << 4);
790                 tmpval = *addr++;
791                 hash ^= (tmpval >> 4) ^ (tmpval << 2);
792                 tmpval = *addr++;
793                 hash ^= (tmpval >> 6) ^ (tmpval);
794         }
795
796         return hash & 0x3F;
797 }
798
799 /**
800  * hash_add: Hash function to add mac addr from hash table
801  * @priv: The DaVinci EMAC private adapter structure
802  * mac_addr: mac address to delete from hash table
803  *
804  * Adds mac address to the internal hash table
805  *
806  */
807 static int hash_add(struct emac_priv *priv, u8 *mac_addr)
808 {
809         struct device *emac_dev = &priv->ndev->dev;
810         u32 rc = 0;
811         u32 hash_bit;
812         u32 hash_value = hash_get(mac_addr);
813
814         if (hash_value >= EMAC_NUM_MULTICAST_BITS) {
815                 if (netif_msg_drv(priv)) {
816                         dev_err(emac_dev, "DaVinci EMAC: hash_add(): Invalid "\
817                                 "Hash %08x, should not be greater than %08x",
818                                 hash_value, (EMAC_NUM_MULTICAST_BITS - 1));
819                 }
820                 return -1;
821         }
822
823         /* set the hash bit only if not previously set */
824         if (priv->multicast_hash_cnt[hash_value] == 0) {
825                 rc = 1; /* hash value changed */
826                 if (hash_value < 32) {
827                         hash_bit = BIT(hash_value);
828                         priv->mac_hash1 |= hash_bit;
829                 } else {
830                         hash_bit = BIT((hash_value - 32));
831                         priv->mac_hash2 |= hash_bit;
832                 }
833         }
834
835         /* incr counter for num of mcast addr's mapped to "this" hash bit */
836         ++priv->multicast_hash_cnt[hash_value];
837
838         return rc;
839 }
840
841 /**
842  * hash_del: Hash function to delete mac addr from hash table
843  * @priv: The DaVinci EMAC private adapter structure
844  * mac_addr: mac address to delete from hash table
845  *
846  * Removes mac address from the internal hash table
847  *
848  */
849 static int hash_del(struct emac_priv *priv, u8 *mac_addr)
850 {
851         u32 hash_value;
852         u32 hash_bit;
853
854         hash_value = hash_get(mac_addr);
855         if (priv->multicast_hash_cnt[hash_value] > 0) {
856                 /* dec cntr for num of mcast addr's mapped to this hash bit */
857                 --priv->multicast_hash_cnt[hash_value];
858         }
859
860         /* if counter still > 0, at least one multicast address refers
861          * to this hash bit. so return 0 */
862         if (priv->multicast_hash_cnt[hash_value] > 0)
863                 return 0;
864
865         if (hash_value < 32) {
866                 hash_bit = BIT(hash_value);
867                 priv->mac_hash1 &= ~hash_bit;
868         } else {
869                 hash_bit = BIT((hash_value - 32));
870                 priv->mac_hash2 &= ~hash_bit;
871         }
872
873         /* return 1 to indicate change in mac_hash registers reqd */
874         return 1;
875 }
876
877 /* EMAC multicast operation */
878 #define EMAC_MULTICAST_ADD      0
879 #define EMAC_MULTICAST_DEL      1
880 #define EMAC_ALL_MULTI_SET      2
881 #define EMAC_ALL_MULTI_CLR      3
882
883 /**
884  * emac_add_mcast: Set multicast address in the EMAC adapter (Internal)
885  * @priv: The DaVinci EMAC private adapter structure
886  * @action: multicast operation to perform
887  * mac_addr: mac address to set
888  *
889  * Set multicast addresses in EMAC adapter - internal function
890  *
891  */
892 static void emac_add_mcast(struct emac_priv *priv, u32 action, u8 *mac_addr)
893 {
894         struct device *emac_dev = &priv->ndev->dev;
895         int update = -1;
896
897         switch (action) {
898         case EMAC_MULTICAST_ADD:
899                 update = hash_add(priv, mac_addr);
900                 break;
901         case EMAC_MULTICAST_DEL:
902                 update = hash_del(priv, mac_addr);
903                 break;
904         case EMAC_ALL_MULTI_SET:
905                 update = 1;
906                 priv->mac_hash1 = EMAC_ALL_MULTI_REG_VALUE;
907                 priv->mac_hash2 = EMAC_ALL_MULTI_REG_VALUE;
908                 break;
909         case EMAC_ALL_MULTI_CLR:
910                 update = 1;
911                 priv->mac_hash1 = 0;
912                 priv->mac_hash2 = 0;
913                 memset(&(priv->multicast_hash_cnt[0]), 0,
914                 sizeof(priv->multicast_hash_cnt[0]) *
915                        EMAC_NUM_MULTICAST_BITS);
916                 break;
917         default:
918                 if (netif_msg_drv(priv))
919                         dev_err(emac_dev, "DaVinci EMAC: add_mcast"\
920                                 ": bad operation %d", action);
921                 break;
922         }
923
924         /* write to the hardware only if the register status chances */
925         if (update > 0) {
926                 emac_write(EMAC_MACHASH1, priv->mac_hash1);
927                 emac_write(EMAC_MACHASH2, priv->mac_hash2);
928         }
929 }
930
931 /**
932  * emac_dev_mcast_set: Set multicast address in the EMAC adapter
933  * @ndev: The DaVinci EMAC network adapter
934  *
935  * Set multicast addresses in EMAC adapter
936  *
937  */
938 static void emac_dev_mcast_set(struct net_device *ndev)
939 {
940         u32 mbp_enable;
941         struct emac_priv *priv = netdev_priv(ndev);
942
943         mbp_enable = emac_read(EMAC_RXMBPENABLE);
944         if (ndev->flags & IFF_PROMISC) {
945                 mbp_enable &= (~EMAC_MBP_PROMISCCH(EMAC_DEF_PROM_CH));
946                 mbp_enable |= (EMAC_MBP_RXPROMISC);
947         } else {
948                 mbp_enable = (mbp_enable & ~EMAC_MBP_RXPROMISC);
949                 if ((ndev->flags & IFF_ALLMULTI) ||
950                     netdev_mc_count(ndev) > EMAC_DEF_MAX_MULTICAST_ADDRESSES) {
951                         mbp_enable = (mbp_enable | EMAC_MBP_RXMCAST);
952                         emac_add_mcast(priv, EMAC_ALL_MULTI_SET, NULL);
953                 }
954                 if (!netdev_mc_empty(ndev)) {
955                         struct netdev_hw_addr *ha;
956
957                         mbp_enable = (mbp_enable | EMAC_MBP_RXMCAST);
958                         emac_add_mcast(priv, EMAC_ALL_MULTI_CLR, NULL);
959                         /* program multicast address list into EMAC hardware */
960                         netdev_for_each_mc_addr(ha, ndev) {
961                                 emac_add_mcast(priv, EMAC_MULTICAST_ADD,
962                                                (u8 *) ha->addr);
963                         }
964                 } else {
965                         mbp_enable = (mbp_enable & ~EMAC_MBP_RXMCAST);
966                         emac_add_mcast(priv, EMAC_ALL_MULTI_CLR, NULL);
967                 }
968         }
969         /* Set mbp config register */
970         emac_write(EMAC_RXMBPENABLE, mbp_enable);
971 }
972
973 /*************************************************************************
974  *  EMAC Hardware manipulation
975  *************************************************************************/
976
977 /**
978  * emac_int_disable: Disable EMAC module interrupt (from adapter)
979  * @priv: The DaVinci EMAC private adapter structure
980  *
981  * Disable EMAC interrupt on the adapter
982  *
983  */
984 static void emac_int_disable(struct emac_priv *priv)
985 {
986         if (priv->version == EMAC_VERSION_2) {
987                 unsigned long flags;
988
989                 local_irq_save(flags);
990
991                 /* Program C0_Int_En to zero to turn off
992                 * interrupts to the CPU */
993                 emac_ctrl_write(EMAC_DM646X_CMRXINTEN, 0x0);
994                 emac_ctrl_write(EMAC_DM646X_CMTXINTEN, 0x0);
995                 /* NOTE: Rx Threshold and Misc interrupts are not disabled */
996                 if (priv->int_disable)
997                         priv->int_disable();
998
999                 local_irq_restore(flags);
1000
1001         } else {
1002                 /* Set DM644x control registers for interrupt control */
1003                 emac_ctrl_write(EMAC_CTRL_EWCTL, 0x0);
1004         }
1005 }
1006
1007 /**
1008  * emac_int_enable: Enable EMAC module interrupt (from adapter)
1009  * @priv: The DaVinci EMAC private adapter structure
1010  *
1011  * Enable EMAC interrupt on the adapter
1012  *
1013  */
1014 static void emac_int_enable(struct emac_priv *priv)
1015 {
1016         if (priv->version == EMAC_VERSION_2) {
1017                 if (priv->int_enable)
1018                         priv->int_enable();
1019
1020                 emac_ctrl_write(EMAC_DM646X_CMRXINTEN, 0xff);
1021                 emac_ctrl_write(EMAC_DM646X_CMTXINTEN, 0xff);
1022
1023                 /* In addition to turning on interrupt Enable, we need
1024                  * ack by writing appropriate values to the EOI
1025                  * register */
1026
1027                 /* NOTE: Rx Threshold and Misc interrupts are not enabled */
1028
1029                 /* ack rxen only then a new pulse will be generated */
1030                 emac_write(EMAC_DM646X_MACEOIVECTOR,
1031                         EMAC_DM646X_MAC_EOI_C0_RXEN);
1032
1033                 /* ack txen- only then a new pulse will be generated */
1034                 emac_write(EMAC_DM646X_MACEOIVECTOR,
1035                         EMAC_DM646X_MAC_EOI_C0_TXEN);
1036
1037         } else {
1038                 /* Set DM644x control registers for interrupt control */
1039                 emac_ctrl_write(EMAC_CTRL_EWCTL, 0x1);
1040         }
1041 }
1042
1043 /**
1044  * emac_irq: EMAC interrupt handler
1045  * @irq: interrupt number
1046  * @dev_id: EMAC network adapter data structure ptr
1047  *
1048  * EMAC Interrupt handler - we only schedule NAPI and not process any packets
1049  * here. EVen the interrupt status is checked (TX/RX/Err) in NAPI poll function
1050  *
1051  * Returns interrupt handled condition
1052  */
1053 static irqreturn_t emac_irq(int irq, void *dev_id)
1054 {
1055         struct net_device *ndev = (struct net_device *)dev_id;
1056         struct emac_priv *priv = netdev_priv(ndev);
1057
1058         ++priv->isr_count;
1059         if (likely(netif_running(priv->ndev))) {
1060                 emac_int_disable(priv);
1061                 napi_schedule(&priv->napi);
1062         } else {
1063                 /* we are closing down, so dont process anything */
1064         }
1065         return IRQ_HANDLED;
1066 }
1067
1068 /** EMAC on-chip buffer descriptor memory
1069  *
1070  * WARNING: Please note that the on chip memory is used for both TX and RX
1071  * buffer descriptor queues and is equally divided between TX and RX desc's
1072  * If the number of TX or RX descriptors change this memory pointers need
1073  * to be adjusted. If external memory is allocated then these pointers can
1074  * pointer to the memory
1075  *
1076  */
1077 #define EMAC_TX_BD_MEM(priv)    ((priv)->emac_ctrl_ram)
1078 #define EMAC_RX_BD_MEM(priv)    ((priv)->emac_ctrl_ram + \
1079                                 (((priv)->ctrl_ram_size) >> 1))
1080
1081 /**
1082  * emac_init_txch: TX channel initialization
1083  * @priv: The DaVinci EMAC private adapter structure
1084  * @ch: RX channel number
1085  *
1086  * Called during device init to setup a TX channel (allocate buffer desc
1087  * create free pool and keep ready for transmission
1088  *
1089  * Returns success(0) or mem alloc failures error code
1090  */
1091 static int emac_init_txch(struct emac_priv *priv, u32 ch)
1092 {
1093         struct device *emac_dev = &priv->ndev->dev;
1094         u32 cnt, bd_size;
1095         void __iomem *mem;
1096         struct emac_tx_bd __iomem *curr_bd;
1097         struct emac_txch *txch = NULL;
1098
1099         txch = kzalloc(sizeof(struct emac_txch), GFP_KERNEL);
1100         if (NULL == txch) {
1101                 dev_err(emac_dev, "DaVinci EMAC: TX Ch mem alloc failed");
1102                 return -ENOMEM;
1103         }
1104         priv->txch[ch] = txch;
1105         txch->service_max = EMAC_DEF_TX_MAX_SERVICE;
1106         txch->active_queue_head = NULL;
1107         txch->active_queue_tail = NULL;
1108         txch->queue_active = 0;
1109         txch->teardown_pending = 0;
1110
1111         /* allocate memory for TX CPPI channel on a 4 byte boundry */
1112         txch->tx_complete = kzalloc(txch->service_max * sizeof(u32),
1113                                     GFP_KERNEL);
1114         if (NULL == txch->tx_complete) {
1115                 dev_err(emac_dev, "DaVinci EMAC: Tx service mem alloc failed");
1116                 kfree(txch);
1117                 return -ENOMEM;
1118         }
1119
1120         /* allocate buffer descriptor pool align every BD on four word
1121          * boundry for future requirements */
1122         bd_size = (sizeof(struct emac_tx_bd) + 0xF) & ~0xF;
1123         txch->num_bd = (priv->ctrl_ram_size >> 1) / bd_size;
1124         txch->alloc_size = (((bd_size * txch->num_bd) + 0xF) & ~0xF);
1125
1126         /* alloc TX BD memory */
1127         txch->bd_mem = EMAC_TX_BD_MEM(priv);
1128         __memzero((void __force *)txch->bd_mem, txch->alloc_size);
1129
1130         /* initialize the BD linked list */
1131         mem = (void __force __iomem *)
1132                         (((u32 __force) txch->bd_mem + 0xF) & ~0xF);
1133         txch->bd_pool_head = NULL;
1134         for (cnt = 0; cnt < txch->num_bd; cnt++) {
1135                 curr_bd = mem + (cnt * bd_size);
1136                 curr_bd->next = txch->bd_pool_head;
1137                 txch->bd_pool_head = curr_bd;
1138         }
1139
1140         /* reset statistics counters */
1141         txch->out_of_tx_bd = 0;
1142         txch->no_active_pkts = 0;
1143         txch->active_queue_count = 0;
1144
1145         return 0;
1146 }
1147
1148 /**
1149  * emac_cleanup_txch: Book-keep function to clean TX channel resources
1150  * @priv: The DaVinci EMAC private adapter structure
1151  * @ch: TX channel number
1152  *
1153  * Called to clean up TX channel resources
1154  *
1155  */
1156 static void emac_cleanup_txch(struct emac_priv *priv, u32 ch)
1157 {
1158         struct emac_txch *txch = priv->txch[ch];
1159
1160         if (txch) {
1161                 if (txch->bd_mem)
1162                         txch->bd_mem = NULL;
1163                 kfree(txch->tx_complete);
1164                 kfree(txch);
1165                 priv->txch[ch] = NULL;
1166         }
1167 }
1168
1169 /**
1170  * emac_net_tx_complete: TX packet completion function
1171  * @priv: The DaVinci EMAC private adapter structure
1172  * @net_data_tokens: packet token - skb pointer
1173  * @num_tokens: number of skb's to free
1174  * @ch: TX channel number
1175  *
1176  * Frees the skb once packet is transmitted
1177  *
1178  */
1179 static int emac_net_tx_complete(struct emac_priv *priv,
1180                                 void **net_data_tokens,
1181                                 int num_tokens, u32 ch)
1182 {
1183         u32 cnt;
1184
1185         if (unlikely(num_tokens && netif_queue_stopped(priv->ndev)))
1186                 netif_start_queue(priv->ndev);
1187         for (cnt = 0; cnt < num_tokens; cnt++) {
1188                 struct sk_buff *skb = (struct sk_buff *)net_data_tokens[cnt];
1189                 if (skb == NULL)
1190                         continue;
1191                 priv->net_dev_stats.tx_packets++;
1192                 priv->net_dev_stats.tx_bytes += skb->len;
1193                 dev_kfree_skb_any(skb);
1194         }
1195         return 0;
1196 }
1197
1198 /**
1199  * emac_txch_teardown: TX channel teardown
1200  * @priv: The DaVinci EMAC private adapter structure
1201  * @ch: TX channel number
1202  *
1203  * Called to teardown TX channel
1204  *
1205  */
1206 static void emac_txch_teardown(struct emac_priv *priv, u32 ch)
1207 {
1208         struct device *emac_dev = &priv->ndev->dev;
1209         u32 teardown_cnt = 0xFFFFFFF0; /* Some high value */
1210         struct emac_txch *txch = priv->txch[ch];
1211         struct emac_tx_bd __iomem *curr_bd;
1212
1213         while ((emac_read(EMAC_TXCP(ch)) & EMAC_TEARDOWN_VALUE) !=
1214                EMAC_TEARDOWN_VALUE) {
1215                 /* wait till tx teardown complete */
1216                 cpu_relax(); /* TODO: check if this helps ... */
1217                 --teardown_cnt;
1218                 if (0 == teardown_cnt) {
1219                         dev_err(emac_dev, "EMAC: TX teardown aborted\n");
1220                         break;
1221                 }
1222         }
1223         emac_write(EMAC_TXCP(ch), EMAC_TEARDOWN_VALUE);
1224
1225         /* process sent packets and return skb's to upper layer */
1226         if (1 == txch->queue_active) {
1227                 curr_bd = txch->active_queue_head;
1228                 while (curr_bd != NULL) {
1229                         dma_unmap_single(emac_dev, curr_bd->buff_ptr,
1230                                 curr_bd->off_b_len & EMAC_RX_BD_BUF_SIZE,
1231                                 DMA_TO_DEVICE);
1232
1233                         emac_net_tx_complete(priv, (void __force *)
1234                                         &curr_bd->buf_token, 1, ch);
1235                         if (curr_bd != txch->active_queue_tail)
1236                                 curr_bd = curr_bd->next;
1237                         else
1238                                 break;
1239                 }
1240                 txch->bd_pool_head = txch->active_queue_head;
1241                 txch->active_queue_head =
1242                 txch->active_queue_tail = NULL;
1243         }
1244 }
1245
1246 /**
1247  * emac_stop_txch: Stop TX channel operation
1248  * @priv: The DaVinci EMAC private adapter structure
1249  * @ch: TX channel number
1250  *
1251  * Called to stop TX channel operation
1252  *
1253  */
1254 static void emac_stop_txch(struct emac_priv *priv, u32 ch)
1255 {
1256         struct emac_txch *txch = priv->txch[ch];
1257
1258         if (txch) {
1259                 txch->teardown_pending = 1;
1260                 emac_write(EMAC_TXTEARDOWN, 0);
1261                 emac_txch_teardown(priv, ch);
1262                 txch->teardown_pending = 0;
1263                 emac_write(EMAC_TXINTMASKCLEAR, BIT(ch));
1264         }
1265 }
1266
1267 /**
1268  * emac_tx_bdproc: TX buffer descriptor (packet) processing
1269  * @priv: The DaVinci EMAC private adapter structure
1270  * @ch: TX channel number to process buffer descriptors for
1271  * @budget: number of packets allowed to process
1272  * @pending: indication to caller that packets are pending to process
1273  *
1274  * Processes TX buffer descriptors after packets are transmitted - checks
1275  * ownership bit on the TX * descriptor and requeues it to free pool & frees
1276  * the SKB buffer. Only "budget" number of packets are processed and
1277  * indication of pending packets provided to the caller
1278  *
1279  * Returns number of packets processed
1280  */
1281 static int emac_tx_bdproc(struct emac_priv *priv, u32 ch, u32 budget)
1282 {
1283         struct device *emac_dev = &priv->ndev->dev;
1284         unsigned long flags;
1285         u32 frame_status;
1286         u32 pkts_processed = 0;
1287         u32 tx_complete_cnt = 0;
1288         struct emac_tx_bd __iomem *curr_bd;
1289         struct emac_txch *txch = priv->txch[ch];
1290         u32 *tx_complete_ptr = txch->tx_complete;
1291
1292         if (unlikely(1 == txch->teardown_pending)) {
1293                 if (netif_msg_tx_err(priv) && net_ratelimit()) {
1294                         dev_err(emac_dev, "DaVinci EMAC:emac_tx_bdproc: "\
1295                                 "teardown pending\n");
1296                 }
1297                 return 0;  /* dont handle any pkt completions */
1298         }
1299
1300         ++txch->proc_count;
1301         spin_lock_irqsave(&priv->tx_lock, flags);
1302         curr_bd = txch->active_queue_head;
1303         if (NULL == curr_bd) {
1304                 emac_write(EMAC_TXCP(ch),
1305                            emac_virt_to_phys(txch->last_hw_bdprocessed, priv));
1306                 txch->no_active_pkts++;
1307                 spin_unlock_irqrestore(&priv->tx_lock, flags);
1308                 return 0;
1309         }
1310         BD_CACHE_INVALIDATE(curr_bd, EMAC_BD_LENGTH_FOR_CACHE);
1311         frame_status = curr_bd->mode;
1312         while ((curr_bd) &&
1313               ((frame_status & EMAC_CPPI_OWNERSHIP_BIT) == 0) &&
1314               (pkts_processed < budget)) {
1315                 emac_write(EMAC_TXCP(ch), emac_virt_to_phys(curr_bd, priv));
1316                 txch->active_queue_head = curr_bd->next;
1317                 if (frame_status & EMAC_CPPI_EOQ_BIT) {
1318                         if (curr_bd->next) {    /* misqueued packet */
1319                                 emac_write(EMAC_TXHDP(ch), curr_bd->h_next);
1320                                 ++txch->mis_queued_packets;
1321                         } else {
1322                                 txch->queue_active = 0; /* end of queue */
1323                         }
1324                 }
1325
1326                 dma_unmap_single(emac_dev, curr_bd->buff_ptr,
1327                                 curr_bd->off_b_len & EMAC_RX_BD_BUF_SIZE,
1328                                 DMA_TO_DEVICE);
1329
1330                 *tx_complete_ptr = (u32) curr_bd->buf_token;
1331                 ++tx_complete_ptr;
1332                 ++tx_complete_cnt;
1333                 curr_bd->next = txch->bd_pool_head;
1334                 txch->bd_pool_head = curr_bd;
1335                 --txch->active_queue_count;
1336                 pkts_processed++;
1337                 txch->last_hw_bdprocessed = curr_bd;
1338                 curr_bd = txch->active_queue_head;
1339                 if (curr_bd) {
1340                         BD_CACHE_INVALIDATE(curr_bd, EMAC_BD_LENGTH_FOR_CACHE);
1341                         frame_status = curr_bd->mode;
1342                 }
1343         } /* end of pkt processing loop */
1344
1345         emac_net_tx_complete(priv,
1346                              (void *)&txch->tx_complete[0],
1347                              tx_complete_cnt, ch);
1348         spin_unlock_irqrestore(&priv->tx_lock, flags);
1349         return pkts_processed;
1350 }
1351
1352 #define EMAC_ERR_TX_OUT_OF_BD -1
1353
1354 /**
1355  * emac_send: EMAC Transmit function (internal)
1356  * @priv: The DaVinci EMAC private adapter structure
1357  * @pkt: packet pointer (contains skb ptr)
1358  * @ch: TX channel number
1359  *
1360  * Called by the transmit function to queue the packet in EMAC hardware queue
1361  *
1362  * Returns success(0) or error code (typically out of desc's)
1363  */
1364 static int emac_send(struct emac_priv *priv, struct emac_netpktobj *pkt, u32 ch)
1365 {
1366         unsigned long flags;
1367         struct emac_tx_bd __iomem *curr_bd;
1368         struct emac_txch *txch;
1369         struct emac_netbufobj *buf_list;
1370
1371         txch = priv->txch[ch];
1372         buf_list = pkt->buf_list;   /* get handle to the buffer array */
1373
1374         /* check packet size and pad if short */
1375         if (pkt->pkt_length < EMAC_DEF_MIN_ETHPKTSIZE) {
1376                 buf_list->length += (EMAC_DEF_MIN_ETHPKTSIZE - pkt->pkt_length);
1377                 pkt->pkt_length = EMAC_DEF_MIN_ETHPKTSIZE;
1378         }
1379
1380         spin_lock_irqsave(&priv->tx_lock, flags);
1381         curr_bd = txch->bd_pool_head;
1382         if (curr_bd == NULL) {
1383                 txch->out_of_tx_bd++;
1384                 spin_unlock_irqrestore(&priv->tx_lock, flags);
1385                 return EMAC_ERR_TX_OUT_OF_BD;
1386         }
1387
1388         txch->bd_pool_head = curr_bd->next;
1389         curr_bd->buf_token = buf_list->buf_token;
1390         curr_bd->buff_ptr = dma_map_single(&priv->ndev->dev, buf_list->data_ptr,
1391                         buf_list->length, DMA_TO_DEVICE);
1392         curr_bd->off_b_len = buf_list->length;
1393         curr_bd->h_next = 0;
1394         curr_bd->next = NULL;
1395         curr_bd->mode = (EMAC_CPPI_SOP_BIT | EMAC_CPPI_OWNERSHIP_BIT |
1396                          EMAC_CPPI_EOP_BIT | pkt->pkt_length);
1397
1398         /* flush the packet from cache if write back cache is present */
1399         BD_CACHE_WRITEBACK_INVALIDATE(curr_bd, EMAC_BD_LENGTH_FOR_CACHE);
1400
1401         /* send the packet */
1402         if (txch->active_queue_head == NULL) {
1403                 txch->active_queue_head = curr_bd;
1404                 txch->active_queue_tail = curr_bd;
1405                 if (1 != txch->queue_active) {
1406                         emac_write(EMAC_TXHDP(ch),
1407                                         emac_virt_to_phys(curr_bd, priv));
1408                         txch->queue_active = 1;
1409                 }
1410                 ++txch->queue_reinit;
1411         } else {
1412                 register struct emac_tx_bd __iomem *tail_bd;
1413                 register u32 frame_status;
1414
1415                 tail_bd = txch->active_queue_tail;
1416                 tail_bd->next = curr_bd;
1417                 txch->active_queue_tail = curr_bd;
1418                 tail_bd = EMAC_VIRT_NOCACHE(tail_bd);
1419                 tail_bd->h_next = (int)emac_virt_to_phys(curr_bd, priv);
1420                 frame_status = tail_bd->mode;
1421                 if (frame_status & EMAC_CPPI_EOQ_BIT) {
1422                         emac_write(EMAC_TXHDP(ch),
1423                                 emac_virt_to_phys(curr_bd, priv));
1424                         frame_status &= ~(EMAC_CPPI_EOQ_BIT);
1425                         tail_bd->mode = frame_status;
1426                         ++txch->end_of_queue_add;
1427                 }
1428         }
1429         txch->active_queue_count++;
1430         spin_unlock_irqrestore(&priv->tx_lock, flags);
1431         return 0;
1432 }
1433
1434 /**
1435  * emac_dev_xmit: EMAC Transmit function
1436  * @skb: SKB pointer
1437  * @ndev: The DaVinci EMAC network adapter
1438  *
1439  * Called by the system to transmit a packet  - we queue the packet in
1440  * EMAC hardware transmit queue
1441  *
1442  * Returns success(NETDEV_TX_OK) or error code (typically out of desc's)
1443  */
1444 static int emac_dev_xmit(struct sk_buff *skb, struct net_device *ndev)
1445 {
1446         struct device *emac_dev = &ndev->dev;
1447         int ret_code;
1448         struct emac_netbufobj tx_buf; /* buffer obj-only single frame support */
1449         struct emac_netpktobj tx_packet;  /* packet object */
1450         struct emac_priv *priv = netdev_priv(ndev);
1451
1452         /* If no link, return */
1453         if (unlikely(!priv->link)) {
1454                 if (netif_msg_tx_err(priv) && net_ratelimit())
1455                         dev_err(emac_dev, "DaVinci EMAC: No link to transmit");
1456                 return NETDEV_TX_BUSY;
1457         }
1458
1459         /* Build the buffer and packet objects - Since only single fragment is
1460          * supported, need not set length and token in both packet & object.
1461          * Doing so for completeness sake & to show that this needs to be done
1462          * in multifragment case
1463          */
1464         tx_packet.buf_list = &tx_buf;
1465         tx_packet.num_bufs = 1; /* only single fragment supported */
1466         tx_packet.pkt_length = skb->len;
1467         tx_packet.pkt_token = (void *)skb;
1468         tx_buf.length = skb->len;
1469         tx_buf.buf_token = (void *)skb;
1470         tx_buf.data_ptr = skb->data;
1471         ndev->trans_start = jiffies;
1472         ret_code = emac_send(priv, &tx_packet, EMAC_DEF_TX_CH);
1473         if (unlikely(ret_code != 0)) {
1474                 if (ret_code == EMAC_ERR_TX_OUT_OF_BD) {
1475                         if (netif_msg_tx_err(priv) && net_ratelimit())
1476                                 dev_err(emac_dev, "DaVinci EMAC: xmit() fatal"\
1477                                         " err. Out of TX BD's");
1478                         netif_stop_queue(priv->ndev);
1479                 }
1480                 priv->net_dev_stats.tx_dropped++;
1481                 return NETDEV_TX_BUSY;
1482         }
1483
1484         return NETDEV_TX_OK;
1485 }
1486
1487 /**
1488  * emac_dev_tx_timeout: EMAC Transmit timeout function
1489  * @ndev: The DaVinci EMAC network adapter
1490  *
1491  * Called when system detects that a skb timeout period has expired
1492  * potentially due to a fault in the adapter in not being able to send
1493  * it out on the wire. We teardown the TX channel assuming a hardware
1494  * error and re-initialize the TX channel for hardware operation
1495  *
1496  */
1497 static void emac_dev_tx_timeout(struct net_device *ndev)
1498 {
1499         struct emac_priv *priv = netdev_priv(ndev);
1500         struct device *emac_dev = &ndev->dev;
1501
1502         if (netif_msg_tx_err(priv))
1503                 dev_err(emac_dev, "DaVinci EMAC: xmit timeout, restarting TX");
1504
1505         priv->net_dev_stats.tx_errors++;
1506         emac_int_disable(priv);
1507         emac_stop_txch(priv, EMAC_DEF_TX_CH);
1508         emac_cleanup_txch(priv, EMAC_DEF_TX_CH);
1509         emac_init_txch(priv, EMAC_DEF_TX_CH);
1510         emac_write(EMAC_TXHDP(0), 0);
1511         emac_write(EMAC_TXINTMASKSET, BIT(EMAC_DEF_TX_CH));
1512         emac_int_enable(priv);
1513 }
1514
1515 /**
1516  * emac_net_alloc_rx_buf: Allocate a skb for RX
1517  * @priv: The DaVinci EMAC private adapter structure
1518  * @buf_size: size of SKB data buffer to allocate
1519  * @data_token: data token returned (skb handle for storing in buffer desc)
1520  * @ch: RX channel number
1521  *
1522  * Called during RX channel setup - allocates skb buffer of required size
1523  * and provides the skb handle and allocated buffer data pointer to caller
1524  *
1525  * Returns skb data pointer or 0 on failure to alloc skb
1526  */
1527 static void *emac_net_alloc_rx_buf(struct emac_priv *priv, int buf_size,
1528                 void **data_token, u32 ch)
1529 {
1530         struct net_device *ndev = priv->ndev;
1531         struct device *emac_dev = &ndev->dev;
1532         struct sk_buff *p_skb;
1533
1534         p_skb = dev_alloc_skb(buf_size);
1535         if (unlikely(NULL == p_skb)) {
1536                 if (netif_msg_rx_err(priv) && net_ratelimit())
1537                         dev_err(emac_dev, "DaVinci EMAC: failed to alloc skb");
1538                 return NULL;
1539         }
1540
1541         /* set device pointer in skb and reserve space for extra bytes */
1542         p_skb->dev = ndev;
1543         skb_reserve(p_skb, NET_IP_ALIGN);
1544         *data_token = (void *) p_skb;
1545         return p_skb->data;
1546 }
1547
1548 /**
1549  * emac_init_rxch: RX channel initialization
1550  * @priv: The DaVinci EMAC private adapter structure
1551  * @ch: RX channel number
1552  * @param: mac address for RX channel
1553  *
1554  * Called during device init to setup a RX channel (allocate buffers and
1555  * buffer descriptors, create queue and keep ready for reception
1556  *
1557  * Returns success(0) or mem alloc failures error code
1558  */
1559 static int emac_init_rxch(struct emac_priv *priv, u32 ch, char *param)
1560 {
1561         struct device *emac_dev = &priv->ndev->dev;
1562         u32 cnt, bd_size;
1563         void __iomem *mem;
1564         struct emac_rx_bd __iomem *curr_bd;
1565         struct emac_rxch *rxch = NULL;
1566
1567         rxch = kzalloc(sizeof(struct emac_rxch), GFP_KERNEL);
1568         if (NULL == rxch) {
1569                 dev_err(emac_dev, "DaVinci EMAC: RX Ch mem alloc failed");
1570                 return -ENOMEM;
1571         }
1572         priv->rxch[ch] = rxch;
1573         rxch->buf_size = priv->rx_buf_size;
1574         rxch->service_max = EMAC_DEF_RX_MAX_SERVICE;
1575         rxch->queue_active = 0;
1576         rxch->teardown_pending = 0;
1577
1578         /* save mac address */
1579         for (cnt = 0; cnt < 6; cnt++)
1580                 rxch->mac_addr[cnt] = param[cnt];
1581
1582         /* allocate buffer descriptor pool align every BD on four word
1583          * boundry for future requirements */
1584         bd_size = (sizeof(struct emac_rx_bd) + 0xF) & ~0xF;
1585         rxch->num_bd = (priv->ctrl_ram_size >> 1) / bd_size;
1586         rxch->alloc_size = (((bd_size * rxch->num_bd) + 0xF) & ~0xF);
1587         rxch->bd_mem = EMAC_RX_BD_MEM(priv);
1588         __memzero((void __force *)rxch->bd_mem, rxch->alloc_size);
1589         rxch->pkt_queue.buf_list = &rxch->buf_queue;
1590
1591         /* allocate RX buffer and initialize the BD linked list */
1592         mem = (void __force __iomem *)
1593                         (((u32 __force) rxch->bd_mem + 0xF) & ~0xF);
1594         rxch->active_queue_head = NULL;
1595         rxch->active_queue_tail = mem;
1596         for (cnt = 0; cnt < rxch->num_bd; cnt++) {
1597                 curr_bd = mem + (cnt * bd_size);
1598                 /* for future use the last parameter contains the BD ptr */
1599                 curr_bd->data_ptr = emac_net_alloc_rx_buf(priv,
1600                                     rxch->buf_size,
1601                                     (void __force **)&curr_bd->buf_token,
1602                                     EMAC_DEF_RX_CH);
1603                 if (curr_bd->data_ptr == NULL) {
1604                         dev_err(emac_dev, "DaVinci EMAC: RX buf mem alloc " \
1605                                 "failed for ch %d\n", ch);
1606                         kfree(rxch);
1607                         return -ENOMEM;
1608                 }
1609
1610                 /* populate the hardware descriptor */
1611                 curr_bd->h_next = emac_virt_to_phys(rxch->active_queue_head,
1612                                 priv);
1613                 curr_bd->buff_ptr = dma_map_single(emac_dev, curr_bd->data_ptr,
1614                                 rxch->buf_size, DMA_FROM_DEVICE);
1615                 curr_bd->off_b_len = rxch->buf_size;
1616                 curr_bd->mode = EMAC_CPPI_OWNERSHIP_BIT;
1617
1618                 /* write back to hardware memory */
1619                 BD_CACHE_WRITEBACK_INVALIDATE((u32) curr_bd,
1620                                               EMAC_BD_LENGTH_FOR_CACHE);
1621                 curr_bd->next = rxch->active_queue_head;
1622                 rxch->active_queue_head = curr_bd;
1623         }
1624
1625         /* At this point rxCppi->activeQueueHead points to the first
1626            RX BD ready to be given to RX HDP and rxch->active_queue_tail
1627            points to the last RX BD
1628          */
1629         return 0;
1630 }
1631
1632 /**
1633  * emac_rxch_teardown: RX channel teardown
1634  * @priv: The DaVinci EMAC private adapter structure
1635  * @ch: RX channel number
1636  *
1637  * Called during device stop to teardown RX channel
1638  *
1639  */
1640 static void emac_rxch_teardown(struct emac_priv *priv, u32 ch)
1641 {
1642         struct device *emac_dev = &priv->ndev->dev;
1643         u32 teardown_cnt = 0xFFFFFFF0; /* Some high value */
1644
1645         while ((emac_read(EMAC_RXCP(ch)) & EMAC_TEARDOWN_VALUE) !=
1646                EMAC_TEARDOWN_VALUE) {
1647                 /* wait till tx teardown complete */
1648                 cpu_relax(); /* TODO: check if this helps ... */
1649                 --teardown_cnt;
1650                 if (0 == teardown_cnt) {
1651                         dev_err(emac_dev, "EMAC: RX teardown aborted\n");
1652                         break;
1653                 }
1654         }
1655         emac_write(EMAC_RXCP(ch), EMAC_TEARDOWN_VALUE);
1656 }
1657
1658 /**
1659  * emac_stop_rxch: Stop RX channel operation
1660  * @priv: The DaVinci EMAC private adapter structure
1661  * @ch: RX channel number
1662  *
1663  * Called during device stop to stop RX channel operation
1664  *
1665  */
1666 static void emac_stop_rxch(struct emac_priv *priv, u32 ch)
1667 {
1668         struct emac_rxch *rxch = priv->rxch[ch];
1669
1670         if (rxch) {
1671                 rxch->teardown_pending = 1;
1672                 emac_write(EMAC_RXTEARDOWN, ch);
1673                 /* wait for teardown complete */
1674                 emac_rxch_teardown(priv, ch);
1675                 rxch->teardown_pending = 0;
1676                 emac_write(EMAC_RXINTMASKCLEAR, BIT(ch));
1677         }
1678 }
1679
1680 /**
1681  * emac_cleanup_rxch: Book-keep function to clean RX channel resources
1682  * @priv: The DaVinci EMAC private adapter structure
1683  * @ch: RX channel number
1684  *
1685  * Called during device stop to clean up RX channel resources
1686  *
1687  */
1688 static void emac_cleanup_rxch(struct emac_priv *priv, u32 ch)
1689 {
1690         struct emac_rxch *rxch = priv->rxch[ch];
1691         struct emac_rx_bd __iomem *curr_bd;
1692
1693         if (rxch) {
1694                 /* free the receive buffers previously allocated */
1695                 curr_bd = rxch->active_queue_head;
1696                 while (curr_bd) {
1697                         if (curr_bd->buf_token) {
1698                                 dma_unmap_single(&priv->ndev->dev,
1699                                         curr_bd->buff_ptr,
1700                                         curr_bd->off_b_len
1701                                                 & EMAC_RX_BD_BUF_SIZE,
1702                                         DMA_FROM_DEVICE);
1703
1704                                 dev_kfree_skb_any((struct sk_buff *)\
1705                                                   curr_bd->buf_token);
1706                         }
1707                         curr_bd = curr_bd->next;
1708                 }
1709                 if (rxch->bd_mem)
1710                         rxch->bd_mem = NULL;
1711                 kfree(rxch);
1712                 priv->rxch[ch] = NULL;
1713         }
1714 }
1715
1716 /**
1717  * emac_set_type0addr: Set EMAC Type0 mac address
1718  * @priv: The DaVinci EMAC private adapter structure
1719  * @ch: RX channel number
1720  * @mac_addr: MAC address to set in device
1721  *
1722  * Called internally to set Type0 mac address of the adapter (Device)
1723  *
1724  * Returns success (0) or appropriate error code (none as of now)
1725  */
1726 static void emac_set_type0addr(struct emac_priv *priv, u32 ch, char *mac_addr)
1727 {
1728         u32 val;
1729         val = ((mac_addr[5] << 8) | (mac_addr[4]));
1730         emac_write(EMAC_MACSRCADDRLO, val);
1731
1732         val = ((mac_addr[3] << 24) | (mac_addr[2] << 16) | \
1733                (mac_addr[1] << 8) | (mac_addr[0]));
1734         emac_write(EMAC_MACSRCADDRHI, val);
1735         val = emac_read(EMAC_RXUNICASTSET);
1736         val |= BIT(ch);
1737         emac_write(EMAC_RXUNICASTSET, val);
1738         val = emac_read(EMAC_RXUNICASTCLEAR);
1739         val &= ~BIT(ch);
1740         emac_write(EMAC_RXUNICASTCLEAR, val);
1741 }
1742
1743 /**
1744  * emac_set_type1addr: Set EMAC Type1 mac address
1745  * @priv: The DaVinci EMAC private adapter structure
1746  * @ch: RX channel number
1747  * @mac_addr: MAC address to set in device
1748  *
1749  * Called internally to set Type1 mac address of the adapter (Device)
1750  *
1751  * Returns success (0) or appropriate error code (none as of now)
1752  */
1753 static void emac_set_type1addr(struct emac_priv *priv, u32 ch, char *mac_addr)
1754 {
1755         u32 val;
1756         emac_write(EMAC_MACINDEX, ch);
1757         val = ((mac_addr[5] << 8) | mac_addr[4]);
1758         emac_write(EMAC_MACADDRLO, val);
1759         val = ((mac_addr[3] << 24) | (mac_addr[2] << 16) | \
1760                (mac_addr[1] << 8) | (mac_addr[0]));
1761         emac_write(EMAC_MACADDRHI, val);
1762         emac_set_type0addr(priv, ch, mac_addr);
1763 }
1764
1765 /**
1766  * emac_set_type2addr: Set EMAC Type2 mac address
1767  * @priv: The DaVinci EMAC private adapter structure
1768  * @ch: RX channel number
1769  * @mac_addr: MAC address to set in device
1770  * @index: index into RX address entries
1771  * @match: match parameter for RX address matching logic
1772  *
1773  * Called internally to set Type2 mac address of the adapter (Device)
1774  *
1775  * Returns success (0) or appropriate error code (none as of now)
1776  */
1777 static void emac_set_type2addr(struct emac_priv *priv, u32 ch,
1778                                char *mac_addr, int index, int match)
1779 {
1780         u32 val;
1781         emac_write(EMAC_MACINDEX, index);
1782         val = ((mac_addr[3] << 24) | (mac_addr[2] << 16) | \
1783                (mac_addr[1] << 8) | (mac_addr[0]));
1784         emac_write(EMAC_MACADDRHI, val);
1785         val = ((mac_addr[5] << 8) | mac_addr[4] | ((ch & 0x7) << 16) | \
1786                (match << 19) | BIT(20));
1787         emac_write(EMAC_MACADDRLO, val);
1788         emac_set_type0addr(priv, ch, mac_addr);
1789 }
1790
1791 /**
1792  * emac_setmac: Set mac address in the adapter (internal function)
1793  * @priv: The DaVinci EMAC private adapter structure
1794  * @ch: RX channel number
1795  * @mac_addr: MAC address to set in device
1796  *
1797  * Called internally to set the mac address of the adapter (Device)
1798  *
1799  * Returns success (0) or appropriate error code (none as of now)
1800  */
1801 static void emac_setmac(struct emac_priv *priv, u32 ch, char *mac_addr)
1802 {
1803         struct device *emac_dev = &priv->ndev->dev;
1804
1805         if (priv->rx_addr_type == 0) {
1806                 emac_set_type0addr(priv, ch, mac_addr);
1807         } else if (priv->rx_addr_type == 1) {
1808                 u32 cnt;
1809                 for (cnt = 0; cnt < EMAC_MAX_TXRX_CHANNELS; cnt++)
1810                         emac_set_type1addr(priv, ch, mac_addr);
1811         } else if (priv->rx_addr_type == 2) {
1812                 emac_set_type2addr(priv, ch, mac_addr, ch, 1);
1813                 emac_set_type0addr(priv, ch, mac_addr);
1814         } else {
1815                 if (netif_msg_drv(priv))
1816                         dev_err(emac_dev, "DaVinci EMAC: Wrong addressing\n");
1817         }
1818 }
1819
1820 /**
1821  * emac_dev_setmac_addr: Set mac address in the adapter
1822  * @ndev: The DaVinci EMAC network adapter
1823  * @addr: MAC address to set in device
1824  *
1825  * Called by the system to set the mac address of the adapter (Device)
1826  *
1827  * Returns success (0) or appropriate error code (none as of now)
1828  */
1829 static int emac_dev_setmac_addr(struct net_device *ndev, void *addr)
1830 {
1831         struct emac_priv *priv = netdev_priv(ndev);
1832         struct emac_rxch *rxch = priv->rxch[EMAC_DEF_RX_CH];
1833         struct device *emac_dev = &priv->ndev->dev;
1834         struct sockaddr *sa = addr;
1835
1836         if (!is_valid_ether_addr(sa->sa_data))
1837                 return -EINVAL;
1838
1839         /* Store mac addr in priv and rx channel and set it in EMAC hw */
1840         memcpy(priv->mac_addr, sa->sa_data, ndev->addr_len);
1841         memcpy(ndev->dev_addr, sa->sa_data, ndev->addr_len);
1842
1843         /* If the interface is down - rxch is NULL. */
1844         /* MAC address is configured only after the interface is enabled. */
1845         if (netif_running(ndev)) {
1846                 memcpy(rxch->mac_addr, sa->sa_data, ndev->addr_len);
1847                 emac_setmac(priv, EMAC_DEF_RX_CH, rxch->mac_addr);
1848         }
1849
1850         if (netif_msg_drv(priv))
1851                 dev_notice(emac_dev, "DaVinci EMAC: emac_dev_setmac_addr %pM\n",
1852                                         priv->mac_addr);
1853
1854         return 0;
1855 }
1856
1857 /**
1858  * emac_addbd_to_rx_queue: Recycle RX buffer descriptor
1859  * @priv: The DaVinci EMAC private adapter structure
1860  * @ch: RX channel number to process buffer descriptors for
1861  * @curr_bd: current buffer descriptor
1862  * @buffer: buffer pointer for descriptor
1863  * @buf_token: buffer token (stores skb information)
1864  *
1865  * Prepares the recycled buffer descriptor and addes it to hardware
1866  * receive queue - if queue empty this descriptor becomes the head
1867  * else addes the descriptor to end of queue
1868  *
1869  */
1870 static void emac_addbd_to_rx_queue(struct emac_priv *priv, u32 ch,
1871                 struct emac_rx_bd __iomem *curr_bd,
1872                 char *buffer, void *buf_token)
1873 {
1874         struct emac_rxch *rxch = priv->rxch[ch];
1875
1876         /* populate the hardware descriptor */
1877         curr_bd->h_next = 0;
1878         curr_bd->buff_ptr = dma_map_single(&priv->ndev->dev, buffer,
1879                                 rxch->buf_size, DMA_FROM_DEVICE);
1880         curr_bd->off_b_len = rxch->buf_size;
1881         curr_bd->mode = EMAC_CPPI_OWNERSHIP_BIT;
1882         curr_bd->next = NULL;
1883         curr_bd->data_ptr = buffer;
1884         curr_bd->buf_token = buf_token;
1885
1886         /* write back  */
1887         BD_CACHE_WRITEBACK_INVALIDATE(curr_bd, EMAC_BD_LENGTH_FOR_CACHE);
1888         if (rxch->active_queue_head == NULL) {
1889                 rxch->active_queue_head = curr_bd;
1890                 rxch->active_queue_tail = curr_bd;
1891                 if (0 != rxch->queue_active) {
1892                         emac_write(EMAC_RXHDP(ch),
1893                            emac_virt_to_phys(rxch->active_queue_head, priv));
1894                         rxch->queue_active = 1;
1895                 }
1896         } else {
1897                 struct emac_rx_bd __iomem *tail_bd;
1898                 u32 frame_status;
1899
1900                 tail_bd = rxch->active_queue_tail;
1901                 rxch->active_queue_tail = curr_bd;
1902                 tail_bd->next = curr_bd;
1903                 tail_bd = EMAC_VIRT_NOCACHE(tail_bd);
1904                 tail_bd->h_next = emac_virt_to_phys(curr_bd, priv);
1905                 frame_status = tail_bd->mode;
1906                 if (frame_status & EMAC_CPPI_EOQ_BIT) {
1907                         emac_write(EMAC_RXHDP(ch),
1908                                         emac_virt_to_phys(curr_bd, priv));
1909                         frame_status &= ~(EMAC_CPPI_EOQ_BIT);
1910                         tail_bd->mode = frame_status;
1911                         ++rxch->end_of_queue_add;
1912                 }
1913         }
1914         ++rxch->recycled_bd;
1915 }
1916
1917 /**
1918  * emac_net_rx_cb: Prepares packet and sends to upper layer
1919  * @priv: The DaVinci EMAC private adapter structure
1920  * @net_pkt_list: Network packet list (received packets)
1921  *
1922  * Invalidates packet buffer memory and sends the received packet to upper
1923  * layer
1924  *
1925  * Returns success or appropriate error code (none as of now)
1926  */
1927 static int emac_net_rx_cb(struct emac_priv *priv,
1928                           struct emac_netpktobj *net_pkt_list)
1929 {
1930         struct sk_buff *p_skb;
1931         p_skb = (struct sk_buff *)net_pkt_list->pkt_token;
1932         /* set length of packet */
1933         skb_put(p_skb, net_pkt_list->pkt_length);
1934         p_skb->protocol = eth_type_trans(p_skb, priv->ndev);
1935         netif_receive_skb(p_skb);
1936         priv->net_dev_stats.rx_bytes += net_pkt_list->pkt_length;
1937         priv->net_dev_stats.rx_packets++;
1938         return 0;
1939 }
1940
1941 /**
1942  * emac_rx_bdproc: RX buffer descriptor (packet) processing
1943  * @priv: The DaVinci EMAC private adapter structure
1944  * @ch: RX channel number to process buffer descriptors for
1945  * @budget: number of packets allowed to process
1946  * @pending: indication to caller that packets are pending to process
1947  *
1948  * Processes RX buffer descriptors - checks ownership bit on the RX buffer
1949  * descriptor, sends the receive packet to upper layer, allocates a new SKB
1950  * and recycles the buffer descriptor (requeues it in hardware RX queue).
1951  * Only "budget" number of packets are processed and indication of pending
1952  * packets provided to the caller.
1953  *
1954  * Returns number of packets processed (and indication of pending packets)
1955  */
1956 static int emac_rx_bdproc(struct emac_priv *priv, u32 ch, u32 budget)
1957 {
1958         unsigned long flags;
1959         u32 frame_status;
1960         u32 pkts_processed = 0;
1961         char *new_buffer;
1962         struct emac_rx_bd __iomem *curr_bd;
1963         struct emac_rx_bd __iomem *last_bd;
1964         struct emac_netpktobj *curr_pkt, pkt_obj;
1965         struct emac_netbufobj buf_obj;
1966         struct emac_netbufobj *rx_buf_obj;
1967         void *new_buf_token;
1968         struct emac_rxch *rxch = priv->rxch[ch];
1969
1970         if (unlikely(1 == rxch->teardown_pending))
1971                 return 0;
1972         ++rxch->proc_count;
1973         spin_lock_irqsave(&priv->rx_lock, flags);
1974         pkt_obj.buf_list = &buf_obj;
1975         curr_pkt = &pkt_obj;
1976         curr_bd = rxch->active_queue_head;
1977         BD_CACHE_INVALIDATE(curr_bd, EMAC_BD_LENGTH_FOR_CACHE);
1978         frame_status = curr_bd->mode;
1979
1980         while ((curr_bd) &&
1981                ((frame_status & EMAC_CPPI_OWNERSHIP_BIT) == 0) &&
1982                (pkts_processed < budget)) {
1983
1984                 new_buffer = emac_net_alloc_rx_buf(priv, rxch->buf_size,
1985                                         &new_buf_token, EMAC_DEF_RX_CH);
1986                 if (unlikely(NULL == new_buffer)) {
1987                         ++rxch->out_of_rx_buffers;
1988                         goto end_emac_rx_bdproc;
1989                 }
1990
1991                 /* populate received packet data structure */
1992                 rx_buf_obj = &curr_pkt->buf_list[0];
1993                 rx_buf_obj->data_ptr = (char *)curr_bd->data_ptr;
1994                 rx_buf_obj->length = curr_bd->off_b_len & EMAC_RX_BD_BUF_SIZE;
1995                 rx_buf_obj->buf_token = curr_bd->buf_token;
1996
1997                 dma_unmap_single(&priv->ndev->dev, curr_bd->buff_ptr,
1998                                 curr_bd->off_b_len & EMAC_RX_BD_BUF_SIZE,
1999                                 DMA_FROM_DEVICE);
2000
2001                 curr_pkt->pkt_token = curr_pkt->buf_list->buf_token;
2002                 curr_pkt->num_bufs = 1;
2003                 curr_pkt->pkt_length =
2004                         (frame_status & EMAC_RX_BD_PKT_LENGTH_MASK);
2005                 emac_write(EMAC_RXCP(ch), emac_virt_to_phys(curr_bd, priv));
2006                 ++rxch->processed_bd;
2007                 last_bd = curr_bd;
2008                 curr_bd = last_bd->next;
2009                 rxch->active_queue_head = curr_bd;
2010
2011                 /* check if end of RX queue ? */
2012                 if (frame_status & EMAC_CPPI_EOQ_BIT) {
2013                         if (curr_bd) {
2014                                 ++rxch->mis_queued_packets;
2015                                 emac_write(EMAC_RXHDP(ch),
2016                                            emac_virt_to_phys(curr_bd, priv));
2017                         } else {
2018                                 ++rxch->end_of_queue;
2019                                 rxch->queue_active = 0;
2020                         }
2021                 }
2022
2023                 /* recycle BD */
2024                 emac_addbd_to_rx_queue(priv, ch, last_bd, new_buffer,
2025                                        new_buf_token);
2026
2027                 /* return the packet to the user - BD ptr passed in
2028                  * last parameter for potential *future* use */
2029                 spin_unlock_irqrestore(&priv->rx_lock, flags);
2030                 emac_net_rx_cb(priv, curr_pkt);
2031                 spin_lock_irqsave(&priv->rx_lock, flags);
2032                 curr_bd = rxch->active_queue_head;
2033                 if (curr_bd) {
2034                         BD_CACHE_INVALIDATE(curr_bd, EMAC_BD_LENGTH_FOR_CACHE);
2035                         frame_status = curr_bd->mode;
2036                 }
2037                 ++pkts_processed;
2038         }
2039
2040 end_emac_rx_bdproc:
2041         spin_unlock_irqrestore(&priv->rx_lock, flags);
2042         return pkts_processed;
2043 }
2044
2045 /**
2046  * emac_hw_enable: Enable EMAC hardware for packet transmission/reception
2047  * @priv: The DaVinci EMAC private adapter structure
2048  *
2049  * Enables EMAC hardware for packet processing - enables PHY, enables RX
2050  * for packet reception and enables device interrupts and then NAPI
2051  *
2052  * Returns success (0) or appropriate error code (none right now)
2053  */
2054 static int emac_hw_enable(struct emac_priv *priv)
2055 {
2056         u32 ch, val, mbp_enable, mac_control;
2057
2058         /* Soft reset */
2059         emac_write(EMAC_SOFTRESET, 1);
2060         while (emac_read(EMAC_SOFTRESET))
2061                 cpu_relax();
2062
2063         /* Disable interrupt & Set pacing for more interrupts initially */
2064         emac_int_disable(priv);
2065
2066         /* Full duplex enable bit set when auto negotiation happens */
2067         mac_control =
2068                 (((EMAC_DEF_TXPRIO_FIXED) ? (EMAC_MACCONTROL_TXPTYPE) : 0x0) |
2069                 ((priv->speed == 1000) ? EMAC_MACCONTROL_GIGABITEN : 0x0) |
2070                 ((EMAC_DEF_TXPACING_EN) ? (EMAC_MACCONTROL_TXPACEEN) : 0x0) |
2071                 ((priv->duplex == DUPLEX_FULL) ? 0x1 : 0));
2072         emac_write(EMAC_MACCONTROL, mac_control);
2073
2074         mbp_enable =
2075                 (((EMAC_DEF_PASS_CRC) ? (EMAC_RXMBP_PASSCRC_MASK) : 0x0) |
2076                 ((EMAC_DEF_QOS_EN) ? (EMAC_RXMBP_QOSEN_MASK) : 0x0) |
2077                  ((EMAC_DEF_NO_BUFF_CHAIN) ? (EMAC_RXMBP_NOCHAIN_MASK) : 0x0) |
2078                  ((EMAC_DEF_MACCTRL_FRAME_EN) ? (EMAC_RXMBP_CMFEN_MASK) : 0x0) |
2079                  ((EMAC_DEF_SHORT_FRAME_EN) ? (EMAC_RXMBP_CSFEN_MASK) : 0x0) |
2080                  ((EMAC_DEF_ERROR_FRAME_EN) ? (EMAC_RXMBP_CEFEN_MASK) : 0x0) |
2081                  ((EMAC_DEF_PROM_EN) ? (EMAC_RXMBP_CAFEN_MASK) : 0x0) |
2082                  ((EMAC_DEF_PROM_CH & EMAC_RXMBP_CHMASK) << \
2083                         EMAC_RXMBP_PROMCH_SHIFT) |
2084                  ((EMAC_DEF_BCAST_EN) ? (EMAC_RXMBP_BROADEN_MASK) : 0x0) |
2085                  ((EMAC_DEF_BCAST_CH & EMAC_RXMBP_CHMASK) << \
2086                         EMAC_RXMBP_BROADCH_SHIFT) |
2087                  ((EMAC_DEF_MCAST_EN) ? (EMAC_RXMBP_MULTIEN_MASK) : 0x0) |
2088                  ((EMAC_DEF_MCAST_CH & EMAC_RXMBP_CHMASK) << \
2089                         EMAC_RXMBP_MULTICH_SHIFT));
2090         emac_write(EMAC_RXMBPENABLE, mbp_enable);
2091         emac_write(EMAC_RXMAXLEN, (EMAC_DEF_MAX_FRAME_SIZE &
2092                                    EMAC_RX_MAX_LEN_MASK));
2093         emac_write(EMAC_RXBUFFEROFFSET, (EMAC_DEF_BUFFER_OFFSET &
2094                                          EMAC_RX_BUFFER_OFFSET_MASK));
2095         emac_write(EMAC_RXFILTERLOWTHRESH, 0);
2096         emac_write(EMAC_RXUNICASTCLEAR, EMAC_RX_UNICAST_CLEAR_ALL);
2097         priv->rx_addr_type = (emac_read(EMAC_MACCONFIG) >> 8) & 0xFF;
2098
2099         val = emac_read(EMAC_TXCONTROL);
2100         val |= EMAC_TX_CONTROL_TX_ENABLE_VAL;
2101         emac_write(EMAC_TXCONTROL, val);
2102         val = emac_read(EMAC_RXCONTROL);
2103         val |= EMAC_RX_CONTROL_RX_ENABLE_VAL;
2104         emac_write(EMAC_RXCONTROL, val);
2105         emac_write(EMAC_MACINTMASKSET, EMAC_MAC_HOST_ERR_INTMASK_VAL);
2106
2107         for (ch = 0; ch < EMAC_DEF_MAX_TX_CH; ch++) {
2108                 emac_write(EMAC_TXHDP(ch), 0);
2109                 emac_write(EMAC_TXINTMASKSET, BIT(ch));
2110         }
2111         for (ch = 0; ch < EMAC_DEF_MAX_RX_CH; ch++) {
2112                 struct emac_rxch *rxch = priv->rxch[ch];
2113                 emac_setmac(priv, ch, rxch->mac_addr);
2114                 emac_write(EMAC_RXINTMASKSET, BIT(ch));
2115                 rxch->queue_active = 1;
2116                 emac_write(EMAC_RXHDP(ch),
2117                            emac_virt_to_phys(rxch->active_queue_head, priv));
2118         }
2119
2120         /* Enable MII */
2121         val = emac_read(EMAC_MACCONTROL);
2122         val |= (EMAC_MACCONTROL_GMIIEN);
2123         emac_write(EMAC_MACCONTROL, val);
2124
2125         /* Enable NAPI and interrupts */
2126         napi_enable(&priv->napi);
2127         emac_int_enable(priv);
2128         return 0;
2129
2130 }
2131
2132 /**
2133  * emac_poll: EMAC NAPI Poll function
2134  * @ndev: The DaVinci EMAC network adapter
2135  * @budget: Number of receive packets to process (as told by NAPI layer)
2136  *
2137  * NAPI Poll function implemented to process packets as per budget. We check
2138  * the type of interrupt on the device and accordingly call the TX or RX
2139  * packet processing functions. We follow the budget for RX processing and
2140  * also put a cap on number of TX pkts processed through config param. The
2141  * NAPI schedule function is called if more packets pending.
2142  *
2143  * Returns number of packets received (in most cases; else TX pkts - rarely)
2144  */
2145 static int emac_poll(struct napi_struct *napi, int budget)
2146 {
2147         unsigned int mask;
2148         struct emac_priv *priv = container_of(napi, struct emac_priv, napi);
2149         struct net_device *ndev = priv->ndev;
2150         struct device *emac_dev = &ndev->dev;
2151         u32 status = 0;
2152         u32 num_pkts = 0;
2153
2154         /* Check interrupt vectors and call packet processing */
2155         status = emac_read(EMAC_MACINVECTOR);
2156
2157         mask = EMAC_DM644X_MAC_IN_VECTOR_TX_INT_VEC;
2158
2159         if (priv->version == EMAC_VERSION_2)
2160                 mask = EMAC_DM646X_MAC_IN_VECTOR_TX_INT_VEC;
2161
2162         if (status & mask) {
2163                 num_pkts = emac_tx_bdproc(priv, EMAC_DEF_TX_CH,
2164                                           EMAC_DEF_TX_MAX_SERVICE);
2165         } /* TX processing */
2166
2167         if (num_pkts)
2168                 return budget;
2169
2170         mask = EMAC_DM644X_MAC_IN_VECTOR_RX_INT_VEC;
2171
2172         if (priv->version == EMAC_VERSION_2)
2173                 mask = EMAC_DM646X_MAC_IN_VECTOR_RX_INT_VEC;
2174
2175         if (status & mask) {
2176                 num_pkts = emac_rx_bdproc(priv, EMAC_DEF_RX_CH, budget);
2177         } /* RX processing */
2178
2179         if (num_pkts < budget) {
2180                 napi_complete(napi);
2181                 emac_int_enable(priv);
2182         }
2183
2184         mask = EMAC_DM644X_MAC_IN_VECTOR_HOST_INT;
2185         if (priv->version == EMAC_VERSION_2)
2186                 mask = EMAC_DM646X_MAC_IN_VECTOR_HOST_INT;
2187
2188         if (unlikely(status & mask)) {
2189                 u32 ch, cause;
2190                 dev_err(emac_dev, "DaVinci EMAC: Fatal Hardware Error\n");
2191                 netif_stop_queue(ndev);
2192                 napi_disable(&priv->napi);
2193
2194                 status = emac_read(EMAC_MACSTATUS);
2195                 cause = ((status & EMAC_MACSTATUS_TXERRCODE_MASK) >>
2196                          EMAC_MACSTATUS_TXERRCODE_SHIFT);
2197                 if (cause) {
2198                         ch = ((status & EMAC_MACSTATUS_TXERRCH_MASK) >>
2199                               EMAC_MACSTATUS_TXERRCH_SHIFT);
2200                         if (net_ratelimit()) {
2201                                 dev_err(emac_dev, "TX Host error %s on ch=%d\n",
2202                                         &emac_txhost_errcodes[cause][0], ch);
2203                         }
2204                 }
2205                 cause = ((status & EMAC_MACSTATUS_RXERRCODE_MASK) >>
2206                          EMAC_MACSTATUS_RXERRCODE_SHIFT);
2207                 if (cause) {
2208                         ch = ((status & EMAC_MACSTATUS_RXERRCH_MASK) >>
2209                               EMAC_MACSTATUS_RXERRCH_SHIFT);
2210                         if (netif_msg_hw(priv) && net_ratelimit())
2211                                 dev_err(emac_dev, "RX Host error %s on ch=%d\n",
2212                                         &emac_rxhost_errcodes[cause][0], ch);
2213                 }
2214         } /* Host error processing */
2215
2216         return num_pkts;
2217 }
2218
2219 #ifdef CONFIG_NET_POLL_CONTROLLER
2220 /**
2221  * emac_poll_controller: EMAC Poll controller function
2222  * @ndev: The DaVinci EMAC network adapter
2223  *
2224  * Polled functionality used by netconsole and others in non interrupt mode
2225  *
2226  */
2227 void emac_poll_controller(struct net_device *ndev)
2228 {
2229         struct emac_priv *priv = netdev_priv(ndev);
2230
2231         emac_int_disable(priv);
2232         emac_irq(ndev->irq, ndev);
2233         emac_int_enable(priv);
2234 }
2235 #endif
2236
2237 /* PHY/MII bus related */
2238
2239 /* Wait until mdio is ready for next command */
2240 #define MDIO_WAIT_FOR_USER_ACCESS\
2241                 while ((emac_mdio_read((MDIO_USERACCESS(0))) &\
2242                         MDIO_USERACCESS_GO) != 0)
2243
2244 static int emac_mii_read(struct mii_bus *bus, int phy_id, int phy_reg)
2245 {
2246         unsigned int phy_data = 0;
2247         unsigned int phy_control;
2248
2249         /* Wait until mdio is ready for next command */
2250         MDIO_WAIT_FOR_USER_ACCESS;
2251
2252         phy_control = (MDIO_USERACCESS_GO |
2253                        MDIO_USERACCESS_READ |
2254                        ((phy_reg << 21) & MDIO_USERACCESS_REGADR) |
2255                        ((phy_id << 16) & MDIO_USERACCESS_PHYADR) |
2256                        (phy_data & MDIO_USERACCESS_DATA));
2257         emac_mdio_write(MDIO_USERACCESS(0), phy_control);
2258
2259         /* Wait until mdio is ready for next command */
2260         MDIO_WAIT_FOR_USER_ACCESS;
2261
2262         return emac_mdio_read(MDIO_USERACCESS(0)) & MDIO_USERACCESS_DATA;
2263
2264 }
2265
2266 static int emac_mii_write(struct mii_bus *bus, int phy_id,
2267                           int phy_reg, u16 phy_data)
2268 {
2269
2270         unsigned int control;
2271
2272         /*  until mdio is ready for next command */
2273         MDIO_WAIT_FOR_USER_ACCESS;
2274
2275         control = (MDIO_USERACCESS_GO |
2276                    MDIO_USERACCESS_WRITE |
2277                    ((phy_reg << 21) & MDIO_USERACCESS_REGADR) |
2278                    ((phy_id << 16) & MDIO_USERACCESS_PHYADR) |
2279                    (phy_data & MDIO_USERACCESS_DATA));
2280         emac_mdio_write(MDIO_USERACCESS(0), control);
2281
2282         return 0;
2283 }
2284
2285 static int emac_mii_reset(struct mii_bus *bus)
2286 {
2287         unsigned int clk_div;
2288         int mdio_bus_freq = emac_bus_frequency;
2289
2290         if (mdio_max_freq && mdio_bus_freq)
2291                 clk_div = ((mdio_bus_freq / mdio_max_freq) - 1);
2292         else
2293                 clk_div = 0xFF;
2294
2295         clk_div &= MDIO_CONTROL_CLKDIV;
2296
2297         /* Set enable and clock divider in MDIOControl */
2298         emac_mdio_write(MDIO_CONTROL, (clk_div | MDIO_CONTROL_ENABLE));
2299
2300         return 0;
2301
2302 }
2303
2304 static int mii_irqs[PHY_MAX_ADDR] = { PHY_POLL, PHY_POLL };
2305
2306 /* emac_driver: EMAC MII bus structure */
2307
2308 static struct mii_bus *emac_mii;
2309
2310 static void emac_adjust_link(struct net_device *ndev)
2311 {
2312         struct emac_priv *priv = netdev_priv(ndev);
2313         struct phy_device *phydev = priv->phydev;
2314         unsigned long flags;
2315         int new_state = 0;
2316
2317         spin_lock_irqsave(&priv->lock, flags);
2318
2319         if (phydev->link) {
2320                 /* check the mode of operation - full/half duplex */
2321                 if (phydev->duplex != priv->duplex) {
2322                         new_state = 1;
2323                         priv->duplex = phydev->duplex;
2324                 }
2325                 if (phydev->speed != priv->speed) {
2326                         new_state = 1;
2327                         priv->speed = phydev->speed;
2328                 }
2329                 if (!priv->link) {
2330                         new_state = 1;
2331                         priv->link = 1;
2332                 }
2333
2334         } else if (priv->link) {
2335                 new_state = 1;
2336                 priv->link = 0;
2337                 priv->speed = 0;
2338                 priv->duplex = ~0;
2339         }
2340         if (new_state) {
2341                 emac_update_phystatus(priv);
2342                 phy_print_status(priv->phydev);
2343         }
2344
2345         spin_unlock_irqrestore(&priv->lock, flags);
2346 }
2347
2348 /*************************************************************************
2349  *  Linux Driver Model
2350  *************************************************************************/
2351
2352 /**
2353  * emac_devioctl: EMAC adapter ioctl
2354  * @ndev: The DaVinci EMAC network adapter
2355  * @ifrq: request parameter
2356  * @cmd: command parameter
2357  *
2358  * EMAC driver ioctl function
2359  *
2360  * Returns success(0) or appropriate error code
2361  */
2362 static int emac_devioctl(struct net_device *ndev, struct ifreq *ifrq, int cmd)
2363 {
2364         dev_warn(&ndev->dev, "DaVinci EMAC: ioctl not supported\n");
2365
2366         if (!(netif_running(ndev)))
2367                 return -EINVAL;
2368
2369         /* TODO: Add phy read and write and private statistics get feature */
2370
2371         return -EOPNOTSUPP;
2372 }
2373
2374 /**
2375  * emac_dev_open: EMAC device open
2376  * @ndev: The DaVinci EMAC network adapter
2377  *
2378  * Called when system wants to start the interface. We init TX/RX channels
2379  * and enable the hardware for packet reception/transmission and start the
2380  * network queue.
2381  *
2382  * Returns 0 for a successful open, or appropriate error code
2383  */
2384 static int emac_dev_open(struct net_device *ndev)
2385 {
2386         struct device *emac_dev = &ndev->dev;
2387         u32 rc, cnt, ch;
2388         int phy_addr;
2389         struct resource *res;
2390         int q, m;
2391         int i = 0;
2392         int k = 0;
2393         struct emac_priv *priv = netdev_priv(ndev);
2394
2395         netif_carrier_off(ndev);
2396         for (cnt = 0; cnt < ETH_ALEN; cnt++)
2397                 ndev->dev_addr[cnt] = priv->mac_addr[cnt];
2398
2399         /* Configuration items */
2400         priv->rx_buf_size = EMAC_DEF_MAX_FRAME_SIZE + NET_IP_ALIGN;
2401
2402         /* Clear basic hardware */
2403         for (ch = 0; ch < EMAC_MAX_TXRX_CHANNELS; ch++) {
2404                 emac_write(EMAC_TXHDP(ch), 0);
2405                 emac_write(EMAC_RXHDP(ch), 0);
2406                 emac_write(EMAC_RXHDP(ch), 0);
2407                 emac_write(EMAC_RXINTMASKCLEAR, EMAC_INT_MASK_CLEAR);
2408                 emac_write(EMAC_TXINTMASKCLEAR, EMAC_INT_MASK_CLEAR);
2409         }
2410         priv->mac_hash1 = 0;
2411         priv->mac_hash2 = 0;
2412         emac_write(EMAC_MACHASH1, 0);
2413         emac_write(EMAC_MACHASH2, 0);
2414
2415         /* multi ch not supported - open 1 TX, 1RX ch by default */
2416         rc = emac_init_txch(priv, EMAC_DEF_TX_CH);
2417         if (0 != rc) {
2418                 dev_err(emac_dev, "DaVinci EMAC: emac_init_txch() failed");
2419                 return rc;
2420         }
2421         rc = emac_init_rxch(priv, EMAC_DEF_RX_CH, priv->mac_addr);
2422         if (0 != rc) {
2423                 dev_err(emac_dev, "DaVinci EMAC: emac_init_rxch() failed");
2424                 return rc;
2425         }
2426
2427         /* Request IRQ */
2428
2429         while ((res = platform_get_resource(priv->pdev, IORESOURCE_IRQ, k))) {
2430                 for (i = res->start; i <= res->end; i++) {
2431                         if (request_irq(i, emac_irq, IRQF_DISABLED,
2432                                         ndev->name, ndev))
2433                                 goto rollback;
2434                 }
2435                 k++;
2436         }
2437
2438         /* Start/Enable EMAC hardware */
2439         emac_hw_enable(priv);
2440
2441         /* find the first phy */
2442         priv->phydev = NULL;
2443         if (priv->phy_mask) {
2444                 emac_mii_reset(priv->mii_bus);
2445                 for (phy_addr = 0; phy_addr < PHY_MAX_ADDR; phy_addr++) {
2446                         if (priv->mii_bus->phy_map[phy_addr]) {
2447                                 priv->phydev = priv->mii_bus->phy_map[phy_addr];
2448                                 break;
2449                         }
2450                 }
2451
2452                 if (!priv->phydev) {
2453                         printk(KERN_ERR "%s: no PHY found\n", ndev->name);
2454                         return -1;
2455                 }
2456
2457                 priv->phydev = phy_connect(ndev, dev_name(&priv->phydev->dev),
2458                                 &emac_adjust_link, 0, PHY_INTERFACE_MODE_MII);
2459
2460                 if (IS_ERR(priv->phydev)) {
2461                         printk(KERN_ERR "%s: Could not attach to PHY\n",
2462                                                                 ndev->name);
2463                         return PTR_ERR(priv->phydev);
2464                 }
2465
2466                 priv->link = 0;
2467                 priv->speed = 0;
2468                 priv->duplex = ~0;
2469
2470                 printk(KERN_INFO "%s: attached PHY driver [%s] "
2471                         "(mii_bus:phy_addr=%s, id=%x)\n", ndev->name,
2472                         priv->phydev->drv->name, dev_name(&priv->phydev->dev),
2473                         priv->phydev->phy_id);
2474         } else{
2475                 /* No PHY , fix the link, speed and duplex settings */
2476                 priv->link = 1;
2477                 priv->speed = SPEED_100;
2478                 priv->duplex = DUPLEX_FULL;
2479                 emac_update_phystatus(priv);
2480         }
2481
2482         if (!netif_running(ndev)) /* debug only - to avoid compiler warning */
2483                 emac_dump_regs(priv);
2484
2485         if (netif_msg_drv(priv))
2486                 dev_notice(emac_dev, "DaVinci EMAC: Opened %s\n", ndev->name);
2487
2488         if (priv->phy_mask)
2489                 phy_start(priv->phydev);
2490
2491         return 0;
2492
2493 rollback:
2494
2495         dev_err(emac_dev, "DaVinci EMAC: request_irq() failed");
2496
2497         for (q = k; k >= 0; k--) {
2498                 for (m = i; m >= res->start; m--)
2499                         free_irq(m, ndev);
2500                 res = platform_get_resource(priv->pdev, IORESOURCE_IRQ, k-1);
2501                 m = res->end;
2502         }
2503         return -EBUSY;
2504 }
2505
2506 /**
2507  * emac_dev_stop: EMAC device stop
2508  * @ndev: The DaVinci EMAC network adapter
2509  *
2510  * Called when system wants to stop or down the interface. We stop the network
2511  * queue, disable interrupts and cleanup TX/RX channels.
2512  *
2513  * We return the statistics in net_device_stats structure pulled from emac
2514  */
2515 static int emac_dev_stop(struct net_device *ndev)
2516 {
2517         struct resource *res;
2518         int i = 0;
2519         int irq_num;
2520         struct emac_priv *priv = netdev_priv(ndev);
2521         struct device *emac_dev = &ndev->dev;
2522
2523         /* inform the upper layers. */
2524         netif_stop_queue(ndev);
2525         napi_disable(&priv->napi);
2526
2527         netif_carrier_off(ndev);
2528         emac_int_disable(priv);
2529         emac_stop_txch(priv, EMAC_DEF_TX_CH);
2530         emac_stop_rxch(priv, EMAC_DEF_RX_CH);
2531         emac_cleanup_txch(priv, EMAC_DEF_TX_CH);
2532         emac_cleanup_rxch(priv, EMAC_DEF_RX_CH);
2533         emac_write(EMAC_SOFTRESET, 1);
2534
2535         if (priv->phydev)
2536                 phy_disconnect(priv->phydev);
2537
2538         /* Free IRQ */
2539         while ((res = platform_get_resource(priv->pdev, IORESOURCE_IRQ, i))) {
2540                 for (irq_num = res->start; irq_num <= res->end; irq_num++)
2541                         free_irq(irq_num, priv->ndev);
2542                 i++;
2543         }
2544
2545         if (netif_msg_drv(priv))
2546                 dev_notice(emac_dev, "DaVinci EMAC: %s stopped\n", ndev->name);
2547
2548         return 0;
2549 }
2550
2551 /**
2552  * emac_dev_getnetstats: EMAC get statistics function
2553  * @ndev: The DaVinci EMAC network adapter
2554  *
2555  * Called when system wants to get statistics from the device.
2556  *
2557  * We return the statistics in net_device_stats structure pulled from emac
2558  */
2559 static struct net_device_stats *emac_dev_getnetstats(struct net_device *ndev)
2560 {
2561         struct emac_priv *priv = netdev_priv(ndev);
2562         u32 mac_control;
2563         u32 stats_clear_mask;
2564
2565         /* update emac hardware stats and reset the registers*/
2566
2567         mac_control = emac_read(EMAC_MACCONTROL);
2568
2569         if (mac_control & EMAC_MACCONTROL_GMIIEN)
2570                 stats_clear_mask = EMAC_STATS_CLR_MASK;
2571         else
2572                 stats_clear_mask = 0;
2573
2574         priv->net_dev_stats.multicast += emac_read(EMAC_RXMCASTFRAMES);
2575         emac_write(EMAC_RXMCASTFRAMES, stats_clear_mask);
2576
2577         priv->net_dev_stats.collisions += (emac_read(EMAC_TXCOLLISION) +
2578                                            emac_read(EMAC_TXSINGLECOLL) +
2579                                            emac_read(EMAC_TXMULTICOLL));
2580         emac_write(EMAC_TXCOLLISION, stats_clear_mask);
2581         emac_write(EMAC_TXSINGLECOLL, stats_clear_mask);
2582         emac_write(EMAC_TXMULTICOLL, stats_clear_mask);
2583
2584         priv->net_dev_stats.rx_length_errors += (emac_read(EMAC_RXOVERSIZED) +
2585                                                 emac_read(EMAC_RXJABBER) +
2586                                                 emac_read(EMAC_RXUNDERSIZED));
2587         emac_write(EMAC_RXOVERSIZED, stats_clear_mask);
2588         emac_write(EMAC_RXJABBER, stats_clear_mask);
2589         emac_write(EMAC_RXUNDERSIZED, stats_clear_mask);
2590
2591         priv->net_dev_stats.rx_over_errors += (emac_read(EMAC_RXSOFOVERRUNS) +
2592                                                emac_read(EMAC_RXMOFOVERRUNS));
2593         emac_write(EMAC_RXSOFOVERRUNS, stats_clear_mask);
2594         emac_write(EMAC_RXMOFOVERRUNS, stats_clear_mask);
2595
2596         priv->net_dev_stats.rx_fifo_errors += emac_read(EMAC_RXDMAOVERRUNS);
2597         emac_write(EMAC_RXDMAOVERRUNS, stats_clear_mask);
2598
2599         priv->net_dev_stats.tx_carrier_errors +=
2600                 emac_read(EMAC_TXCARRIERSENSE);
2601         emac_write(EMAC_TXCARRIERSENSE, stats_clear_mask);
2602
2603         priv->net_dev_stats.tx_fifo_errors = emac_read(EMAC_TXUNDERRUN);
2604         emac_write(EMAC_TXUNDERRUN, stats_clear_mask);
2605
2606         return &priv->net_dev_stats;
2607 }
2608
2609 static const struct net_device_ops emac_netdev_ops = {
2610         .ndo_open               = emac_dev_open,
2611         .ndo_stop               = emac_dev_stop,
2612         .ndo_start_xmit         = emac_dev_xmit,
2613         .ndo_set_multicast_list = emac_dev_mcast_set,
2614         .ndo_set_mac_address    = emac_dev_setmac_addr,
2615         .ndo_do_ioctl           = emac_devioctl,
2616         .ndo_tx_timeout         = emac_dev_tx_timeout,
2617         .ndo_get_stats          = emac_dev_getnetstats,
2618 #ifdef CONFIG_NET_POLL_CONTROLLER
2619         .ndo_poll_controller    = emac_poll_controller,
2620 #endif
2621 };
2622
2623 /**
2624  * davinci_emac_probe: EMAC device probe
2625  * @pdev: The DaVinci EMAC device that we are removing
2626  *
2627  * Called when probing for emac devicesr. We get details of instances and
2628  * resource information from platform init and register a network device
2629  * and allocate resources necessary for driver to perform
2630  */
2631 static int __devinit davinci_emac_probe(struct platform_device *pdev)
2632 {
2633         int rc = 0;
2634         struct resource *res;
2635         struct net_device *ndev;
2636         struct emac_priv *priv;
2637         unsigned long size;
2638         struct emac_platform_data *pdata;
2639         struct device *emac_dev;
2640
2641         /* obtain emac clock from kernel */
2642         emac_clk = clk_get(&pdev->dev, NULL);
2643         if (IS_ERR(emac_clk)) {
2644                 printk(KERN_ERR "DaVinci EMAC: Failed to get EMAC clock\n");
2645                 return -EBUSY;
2646         }
2647         emac_bus_frequency = clk_get_rate(emac_clk);
2648         /* TODO: Probe PHY here if possible */
2649
2650         ndev = alloc_etherdev(sizeof(struct emac_priv));
2651         if (!ndev) {
2652                 printk(KERN_ERR "DaVinci EMAC: Error allocating net_device\n");
2653                 clk_put(emac_clk);
2654                 return -ENOMEM;
2655         }
2656
2657         platform_set_drvdata(pdev, ndev);
2658         priv = netdev_priv(ndev);
2659         priv->pdev = pdev;
2660         priv->ndev = ndev;
2661         priv->msg_enable = netif_msg_init(debug_level, DAVINCI_EMAC_DEBUG);
2662
2663         spin_lock_init(&priv->tx_lock);
2664         spin_lock_init(&priv->rx_lock);
2665         spin_lock_init(&priv->lock);
2666
2667         pdata = pdev->dev.platform_data;
2668         if (!pdata) {
2669                 printk(KERN_ERR "DaVinci EMAC: No platform data\n");
2670                 return -ENODEV;
2671         }
2672
2673         /* MAC addr and PHY mask , RMII enable info from platform_data */
2674         memcpy(priv->mac_addr, pdata->mac_addr, 6);
2675         priv->phy_mask = pdata->phy_mask;
2676         priv->rmii_en = pdata->rmii_en;
2677         priv->version = pdata->version;
2678         priv->int_enable = pdata->interrupt_enable;
2679         priv->int_disable = pdata->interrupt_disable;
2680
2681         emac_dev = &ndev->dev;
2682         /* Get EMAC platform data */
2683         res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2684         if (!res) {
2685                 dev_err(emac_dev, "DaVinci EMAC: Error getting res\n");
2686                 rc = -ENOENT;
2687                 goto probe_quit;
2688         }
2689
2690         priv->emac_base_phys = res->start + pdata->ctrl_reg_offset;
2691         size = res->end - res->start + 1;
2692         if (!request_mem_region(res->start, size, ndev->name)) {
2693                 dev_err(emac_dev, "DaVinci EMAC: failed request_mem_region() for regs\n");
2694                 rc = -ENXIO;
2695                 goto probe_quit;
2696         }
2697
2698         priv->remap_addr = ioremap(res->start, size);
2699         if (!priv->remap_addr) {
2700                 dev_err(emac_dev, "Unable to map IO\n");
2701                 rc = -ENOMEM;
2702                 release_mem_region(res->start, size);
2703                 goto probe_quit;
2704         }
2705         priv->emac_base = priv->remap_addr + pdata->ctrl_reg_offset;
2706         ndev->base_addr = (unsigned long)priv->remap_addr;
2707
2708         priv->ctrl_base = priv->remap_addr + pdata->ctrl_mod_reg_offset;
2709         priv->ctrl_ram_size = pdata->ctrl_ram_size;
2710         priv->emac_ctrl_ram = priv->remap_addr + pdata->ctrl_ram_offset;
2711
2712         if (pdata->hw_ram_addr)
2713                 priv->hw_ram_addr = pdata->hw_ram_addr;
2714         else
2715                 priv->hw_ram_addr = (u32 __force)res->start +
2716                                         pdata->ctrl_ram_offset;
2717
2718         res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
2719         if (!res) {
2720                 dev_err(emac_dev, "DaVinci EMAC: Error getting irq res\n");
2721                 rc = -ENOENT;
2722                 goto no_irq_res;
2723         }
2724         ndev->irq = res->start;
2725
2726         if (!is_valid_ether_addr(priv->mac_addr)) {
2727                 /* Use random MAC if none passed */
2728                 random_ether_addr(priv->mac_addr);
2729                 printk(KERN_WARNING "%s: using random MAC addr: %pM\n",
2730                                 __func__, priv->mac_addr);
2731         }
2732
2733         ndev->netdev_ops = &emac_netdev_ops;
2734         SET_ETHTOOL_OPS(ndev, &ethtool_ops);
2735         netif_napi_add(ndev, &priv->napi, emac_poll, EMAC_POLL_WEIGHT);
2736
2737         clk_enable(emac_clk);
2738
2739         /* register the network device */
2740         SET_NETDEV_DEV(ndev, &pdev->dev);
2741         rc = register_netdev(ndev);
2742         if (rc) {
2743                 dev_err(emac_dev, "DaVinci EMAC: Error in register_netdev\n");
2744                 rc = -ENODEV;
2745                 goto netdev_reg_err;
2746         }
2747
2748
2749         /* MII/Phy intialisation, mdio bus registration */
2750         emac_mii = mdiobus_alloc();
2751         if (emac_mii == NULL) {
2752                 dev_err(emac_dev, "DaVinci EMAC: Error allocating mii_bus\n");
2753                 rc = -ENOMEM;
2754                 goto mdio_alloc_err;
2755         }
2756
2757         priv->mii_bus = emac_mii;
2758         emac_mii->name  = "emac-mii",
2759         emac_mii->read  = emac_mii_read,
2760         emac_mii->write = emac_mii_write,
2761         emac_mii->reset = emac_mii_reset,
2762         emac_mii->irq   = mii_irqs,
2763         emac_mii->phy_mask = ~(priv->phy_mask);
2764         emac_mii->parent = &pdev->dev;
2765         emac_mii->priv = priv->remap_addr + pdata->mdio_reg_offset;
2766         snprintf(priv->mii_bus->id, MII_BUS_ID_SIZE, "%x", priv->pdev->id);
2767         mdio_max_freq = pdata->mdio_max_freq;
2768         emac_mii->reset(emac_mii);
2769
2770         /* Register the MII bus */
2771         rc = mdiobus_register(emac_mii);
2772         if (rc)
2773                 goto mdiobus_quit;
2774
2775         if (netif_msg_probe(priv)) {
2776                 dev_notice(emac_dev, "DaVinci EMAC Probe found device "\
2777                            "(regs: %p, irq: %d)\n",
2778                            (void *)priv->emac_base_phys, ndev->irq);
2779         }
2780         return 0;
2781
2782 mdiobus_quit:
2783         mdiobus_free(emac_mii);
2784
2785 netdev_reg_err:
2786 mdio_alloc_err:
2787         clk_disable(emac_clk);
2788 no_irq_res:
2789         res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2790         release_mem_region(res->start, res->end - res->start + 1);
2791         iounmap(priv->remap_addr);
2792
2793 probe_quit:
2794         clk_put(emac_clk);
2795         free_netdev(ndev);
2796         return rc;
2797 }
2798
2799 /**
2800  * davinci_emac_remove: EMAC device remove
2801  * @pdev: The DaVinci EMAC device that we are removing
2802  *
2803  * Called when removing the device driver. We disable clock usage and release
2804  * the resources taken up by the driver and unregister network device
2805  */
2806 static int __devexit davinci_emac_remove(struct platform_device *pdev)
2807 {
2808         struct resource *res;
2809         struct net_device *ndev = platform_get_drvdata(pdev);
2810         struct emac_priv *priv = netdev_priv(ndev);
2811
2812         dev_notice(&ndev->dev, "DaVinci EMAC: davinci_emac_remove()\n");
2813
2814         platform_set_drvdata(pdev, NULL);
2815         res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2816         mdiobus_unregister(priv->mii_bus);
2817         mdiobus_free(priv->mii_bus);
2818
2819         release_mem_region(res->start, res->end - res->start + 1);
2820
2821         unregister_netdev(ndev);
2822         free_netdev(ndev);
2823         iounmap(priv->remap_addr);
2824
2825         clk_disable(emac_clk);
2826         clk_put(emac_clk);
2827
2828         return 0;
2829 }
2830
2831 static int davinci_emac_suspend(struct device *dev)
2832 {
2833         struct platform_device *pdev = to_platform_device(dev);
2834         struct net_device *ndev = platform_get_drvdata(pdev);
2835
2836         if (netif_running(ndev))
2837                 emac_dev_stop(ndev);
2838
2839         clk_disable(emac_clk);
2840
2841         return 0;
2842 }
2843
2844 static int davinci_emac_resume(struct device *dev)
2845 {
2846         struct platform_device *pdev = to_platform_device(dev);
2847         struct net_device *ndev = platform_get_drvdata(pdev);
2848
2849         clk_enable(emac_clk);
2850
2851         if (netif_running(ndev))
2852                 emac_dev_open(ndev);
2853
2854         return 0;
2855 }
2856
2857 static const struct dev_pm_ops davinci_emac_pm_ops = {
2858         .suspend        = davinci_emac_suspend,
2859         .resume         = davinci_emac_resume,
2860 };
2861
2862 /**
2863  * davinci_emac_driver: EMAC platform driver structure
2864  */
2865 static struct platform_driver davinci_emac_driver = {
2866         .driver = {
2867                 .name    = "davinci_emac",
2868                 .owner   = THIS_MODULE,
2869                 .pm      = &davinci_emac_pm_ops,
2870         },
2871         .probe = davinci_emac_probe,
2872         .remove = __devexit_p(davinci_emac_remove),
2873 };
2874
2875 /**
2876  * davinci_emac_init: EMAC driver module init
2877  *
2878  * Called when initializing the driver. We register the driver with
2879  * the platform.
2880  */
2881 static int __init davinci_emac_init(void)
2882 {
2883         return platform_driver_register(&davinci_emac_driver);
2884 }
2885 late_initcall(davinci_emac_init);
2886
2887 /**
2888  * davinci_emac_exit: EMAC driver module exit
2889  *
2890  * Called when exiting the driver completely. We unregister the driver with
2891  * the platform and exit
2892  */
2893 static void __exit davinci_emac_exit(void)
2894 {
2895         platform_driver_unregister(&davinci_emac_driver);
2896 }
2897 module_exit(davinci_emac_exit);
2898
2899 MODULE_LICENSE("GPL");
2900 MODULE_AUTHOR("DaVinci EMAC Maintainer: Anant Gole <anantgole@ti.com>");
2901 MODULE_AUTHOR("DaVinci EMAC Maintainer: Chaithrika U S <chaithrika@ti.com>");
2902 MODULE_DESCRIPTION("DaVinci EMAC Ethernet driver");