net: davinci_emac: Fix hangs with interrupts
[deliverable/linux.git] / drivers / net / ethernet / ti / davinci_emac.c
CommitLineData
a6286ee6
AG
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
a6286ee6
AG
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>
a6286ee6
AG
51#include <linux/spinlock.h>
52#include <linux/dma-mapping.h>
53#include <linux/clk.h>
54#include <linux/platform_device.h>
55#include <linux/semaphore.h>
56#include <linux/phy.h>
57#include <linux/bitops.h>
58#include <linux/io.h>
59#include <linux/uaccess.h>
3ba97381 60#include <linux/pm_runtime.h>
8ee2bf9a 61#include <linux/davinci_emac.h>
42f59967
HS
62#include <linux/of.h>
63#include <linux/of_address.h>
dd0df47d 64#include <linux/of_device.h>
42f59967
HS
65#include <linux/of_irq.h>
66#include <linux/of_net.h>
67
a6286ee6
AG
68#include <asm/irq.h>
69#include <asm/page.h>
70
3ef0fdb2
CC
71#include "davinci_cpdma.h"
72
a6286ee6
AG
73static int debug_level;
74module_param(debug_level, int, 0);
75MODULE_PARM_DESC(debug_level, "DaVinci EMAC debug level (NETIF_MSG bits)");
76
77/* Netif debug messages possible */
78#define DAVINCI_EMAC_DEBUG (NETIF_MSG_DRV | \
79 NETIF_MSG_PROBE | \
80 NETIF_MSG_LINK | \
81 NETIF_MSG_TIMER | \
82 NETIF_MSG_IFDOWN | \
83 NETIF_MSG_IFUP | \
84 NETIF_MSG_RX_ERR | \
85 NETIF_MSG_TX_ERR | \
86 NETIF_MSG_TX_QUEUED | \
87 NETIF_MSG_INTR | \
88 NETIF_MSG_TX_DONE | \
89 NETIF_MSG_RX_STATUS | \
90 NETIF_MSG_PKTDATA | \
91 NETIF_MSG_HW | \
92 NETIF_MSG_WOL)
93
94/* version info */
95#define EMAC_MAJOR_VERSION 6
96#define EMAC_MINOR_VERSION 1
97#define EMAC_MODULE_VERSION "6.1"
98MODULE_VERSION(EMAC_MODULE_VERSION);
99static const char emac_version_string[] = "TI DaVinci EMAC Linux v6.1";
100
101/* Configuration items */
25985edc 102#define EMAC_DEF_PASS_CRC (0) /* Do not pass CRC up to frames */
a6286ee6
AG
103#define EMAC_DEF_QOS_EN (0) /* EMAC proprietary QoS disabled */
104#define EMAC_DEF_NO_BUFF_CHAIN (0) /* No buffer chain */
105#define EMAC_DEF_MACCTRL_FRAME_EN (0) /* Discard Maccontrol frames */
106#define EMAC_DEF_SHORT_FRAME_EN (0) /* Discard short frames */
107#define EMAC_DEF_ERROR_FRAME_EN (0) /* Discard error frames */
25985edc
LDM
108#define EMAC_DEF_PROM_EN (0) /* Promiscuous disabled */
109#define EMAC_DEF_PROM_CH (0) /* Promiscuous channel is 0 */
a6286ee6
AG
110#define EMAC_DEF_BCAST_EN (1) /* Broadcast enabled */
111#define EMAC_DEF_BCAST_CH (0) /* Broadcast channel is 0 */
112#define EMAC_DEF_MCAST_EN (1) /* Multicast enabled */
113#define EMAC_DEF_MCAST_CH (0) /* Multicast channel is 0 */
114
115#define EMAC_DEF_TXPRIO_FIXED (1) /* TX Priority is fixed */
116#define EMAC_DEF_TXPACING_EN (0) /* TX pacing NOT supported*/
117
118#define EMAC_DEF_BUFFER_OFFSET (0) /* Buffer offset to DMA (future) */
119#define EMAC_DEF_MIN_ETHPKTSIZE (60) /* Minimum ethernet pkt size */
120#define EMAC_DEF_MAX_FRAME_SIZE (1500 + 14 + 4 + 4)
121#define EMAC_DEF_TX_CH (0) /* Default 0th channel */
122#define EMAC_DEF_RX_CH (0) /* Default 0th channel */
3ef0fdb2 123#define EMAC_DEF_RX_NUM_DESC (128)
a6286ee6
AG
124#define EMAC_DEF_MAX_TX_CH (1) /* Max TX channels configured */
125#define EMAC_DEF_MAX_RX_CH (1) /* Max RX channels configured */
126#define EMAC_POLL_WEIGHT (64) /* Default NAPI poll weight */
127
128/* Buffer descriptor parameters */
129#define EMAC_DEF_TX_MAX_SERVICE (32) /* TX max service BD's */
130#define EMAC_DEF_RX_MAX_SERVICE (64) /* should = netdev->weight */
131
132/* EMAC register related defines */
133#define EMAC_ALL_MULTI_REG_VALUE (0xFFFFFFFF)
134#define EMAC_NUM_MULTICAST_BITS (64)
a6286ee6
AG
135#define EMAC_TX_CONTROL_TX_ENABLE_VAL (0x1)
136#define EMAC_RX_CONTROL_RX_ENABLE_VAL (0x1)
137#define EMAC_MAC_HOST_ERR_INTMASK_VAL (0x2)
138#define EMAC_RX_UNICAST_CLEAR_ALL (0xFF)
139#define EMAC_INT_MASK_CLEAR (0xFF)
140
141/* RX MBP register bit positions */
142#define EMAC_RXMBP_PASSCRC_MASK BIT(30)
143#define EMAC_RXMBP_QOSEN_MASK BIT(29)
144#define EMAC_RXMBP_NOCHAIN_MASK BIT(28)
145#define EMAC_RXMBP_CMFEN_MASK BIT(24)
146#define EMAC_RXMBP_CSFEN_MASK BIT(23)
147#define EMAC_RXMBP_CEFEN_MASK BIT(22)
148#define EMAC_RXMBP_CAFEN_MASK BIT(21)
149#define EMAC_RXMBP_PROMCH_SHIFT (16)
150#define EMAC_RXMBP_PROMCH_MASK (0x7 << 16)
151#define EMAC_RXMBP_BROADEN_MASK BIT(13)
152#define EMAC_RXMBP_BROADCH_SHIFT (8)
153#define EMAC_RXMBP_BROADCH_MASK (0x7 << 8)
154#define EMAC_RXMBP_MULTIEN_MASK BIT(5)
155#define EMAC_RXMBP_MULTICH_SHIFT (0)
156#define EMAC_RXMBP_MULTICH_MASK (0x7)
157#define EMAC_RXMBP_CHMASK (0x7)
158
159/* EMAC register definitions/bit maps used */
160# define EMAC_MBP_RXPROMISC (0x00200000)
161# define EMAC_MBP_PROMISCCH(ch) (((ch) & 0x7) << 16)
162# define EMAC_MBP_RXBCAST (0x00002000)
163# define EMAC_MBP_BCASTCHAN(ch) (((ch) & 0x7) << 8)
164# define EMAC_MBP_RXMCAST (0x00000020)
165# define EMAC_MBP_MCASTCHAN(ch) ((ch) & 0x7)
166
167/* EMAC mac_control register */
69ef9694 168#define EMAC_MACCONTROL_TXPTYPE BIT(9)
169#define EMAC_MACCONTROL_TXPACEEN BIT(6)
170#define EMAC_MACCONTROL_GMIIEN BIT(5)
171#define EMAC_MACCONTROL_GIGABITEN BIT(7)
172#define EMAC_MACCONTROL_FULLDUPLEXEN BIT(0)
a6286ee6
AG
173#define EMAC_MACCONTROL_RMIISPEED_MASK BIT(15)
174
175/* GIGABIT MODE related bits */
a6286ee6
AG
176#define EMAC_DM646X_MACCONTORL_GIG BIT(7)
177#define EMAC_DM646X_MACCONTORL_GIGFORCE BIT(17)
178
179/* EMAC mac_status register */
180#define EMAC_MACSTATUS_TXERRCODE_MASK (0xF00000)
181#define EMAC_MACSTATUS_TXERRCODE_SHIFT (20)
182#define EMAC_MACSTATUS_TXERRCH_MASK (0x7)
183#define EMAC_MACSTATUS_TXERRCH_SHIFT (16)
184#define EMAC_MACSTATUS_RXERRCODE_MASK (0xF000)
185#define EMAC_MACSTATUS_RXERRCODE_SHIFT (12)
186#define EMAC_MACSTATUS_RXERRCH_MASK (0x7)
187#define EMAC_MACSTATUS_RXERRCH_SHIFT (8)
188
189/* EMAC RX register masks */
190#define EMAC_RX_MAX_LEN_MASK (0xFFFF)
191#define EMAC_RX_BUFFER_OFFSET_MASK (0xFFFF)
192
193/* MAC_IN_VECTOR (0x180) register bit fields */
69ef9694 194#define EMAC_DM644X_MAC_IN_VECTOR_HOST_INT BIT(17)
195#define EMAC_DM644X_MAC_IN_VECTOR_STATPEND_INT BIT(16)
196#define EMAC_DM644X_MAC_IN_VECTOR_RX_INT_VEC BIT(8)
197#define EMAC_DM644X_MAC_IN_VECTOR_TX_INT_VEC BIT(0)
a6286ee6
AG
198
199/** NOTE:: For DM646x the IN_VECTOR has changed */
200#define EMAC_DM646X_MAC_IN_VECTOR_RX_INT_VEC BIT(EMAC_DEF_RX_CH)
201#define EMAC_DM646X_MAC_IN_VECTOR_TX_INT_VEC BIT(16 + EMAC_DEF_TX_CH)
43c2ed8e
S
202#define EMAC_DM646X_MAC_IN_VECTOR_HOST_INT BIT(26)
203#define EMAC_DM646X_MAC_IN_VECTOR_STATPEND_INT BIT(27)
204
a6286ee6
AG
205/* CPPI bit positions */
206#define EMAC_CPPI_SOP_BIT BIT(31)
207#define EMAC_CPPI_EOP_BIT BIT(30)
208#define EMAC_CPPI_OWNERSHIP_BIT BIT(29)
209#define EMAC_CPPI_EOQ_BIT BIT(28)
210#define EMAC_CPPI_TEARDOWN_COMPLETE_BIT BIT(27)
211#define EMAC_CPPI_PASS_CRC_BIT BIT(26)
212#define EMAC_RX_BD_BUF_SIZE (0xFFFF)
213#define EMAC_BD_LENGTH_FOR_CACHE (16) /* only CPPI bytes */
214#define EMAC_RX_BD_PKT_LENGTH_MASK (0xFFFF)
215
216/* Max hardware defines */
217#define EMAC_MAX_TXRX_CHANNELS (8) /* Max hardware channels */
218#define EMAC_DEF_MAX_MULTICAST_ADDRESSES (64) /* Max mcast addr's */
219
220/* EMAC Peripheral Device Register Memory Layout structure */
a6286ee6
AG
221#define EMAC_MACINVECTOR 0x90
222
223#define EMAC_DM646X_MACEOIVECTOR 0x94
224
a6286ee6
AG
225#define EMAC_MACINTSTATRAW 0xB0
226#define EMAC_MACINTSTATMASKED 0xB4
227#define EMAC_MACINTMASKSET 0xB8
228#define EMAC_MACINTMASKCLEAR 0xBC
229
230#define EMAC_RXMBPENABLE 0x100
231#define EMAC_RXUNICASTSET 0x104
232#define EMAC_RXUNICASTCLEAR 0x108
233#define EMAC_RXMAXLEN 0x10C
234#define EMAC_RXBUFFEROFFSET 0x110
235#define EMAC_RXFILTERLOWTHRESH 0x114
236
237#define EMAC_MACCONTROL 0x160
238#define EMAC_MACSTATUS 0x164
239#define EMAC_EMCONTROL 0x168
240#define EMAC_FIFOCONTROL 0x16C
241#define EMAC_MACCONFIG 0x170
242#define EMAC_SOFTRESET 0x174
243#define EMAC_MACSRCADDRLO 0x1D0
244#define EMAC_MACSRCADDRHI 0x1D4
245#define EMAC_MACHASH1 0x1D8
246#define EMAC_MACHASH2 0x1DC
247#define EMAC_MACADDRLO 0x500
248#define EMAC_MACADDRHI 0x504
249#define EMAC_MACINDEX 0x508
250
a6286ee6
AG
251/* EMAC statistics registers */
252#define EMAC_RXGOODFRAMES 0x200
253#define EMAC_RXBCASTFRAMES 0x204
254#define EMAC_RXMCASTFRAMES 0x208
255#define EMAC_RXPAUSEFRAMES 0x20C
256#define EMAC_RXCRCERRORS 0x210
257#define EMAC_RXALIGNCODEERRORS 0x214
258#define EMAC_RXOVERSIZED 0x218
259#define EMAC_RXJABBER 0x21C
260#define EMAC_RXUNDERSIZED 0x220
261#define EMAC_RXFRAGMENTS 0x224
262#define EMAC_RXFILTERED 0x228
263#define EMAC_RXQOSFILTERED 0x22C
264#define EMAC_RXOCTETS 0x230
265#define EMAC_TXGOODFRAMES 0x234
266#define EMAC_TXBCASTFRAMES 0x238
267#define EMAC_TXMCASTFRAMES 0x23C
268#define EMAC_TXPAUSEFRAMES 0x240
269#define EMAC_TXDEFERRED 0x244
270#define EMAC_TXCOLLISION 0x248
271#define EMAC_TXSINGLECOLL 0x24C
272#define EMAC_TXMULTICOLL 0x250
273#define EMAC_TXEXCESSIVECOLL 0x254
274#define EMAC_TXLATECOLL 0x258
275#define EMAC_TXUNDERRUN 0x25C
276#define EMAC_TXCARRIERSENSE 0x260
277#define EMAC_TXOCTETS 0x264
278#define EMAC_NETOCTETS 0x280
279#define EMAC_RXSOFOVERRUNS 0x284
280#define EMAC_RXMOFOVERRUNS 0x288
281#define EMAC_RXDMAOVERRUNS 0x28C
282
283/* EMAC DM644x control registers */
284#define EMAC_CTRL_EWCTL (0x4)
285#define EMAC_CTRL_EWINTTCNT (0x8)
286
84da2658
S
287/* EMAC DM644x control module masks */
288#define EMAC_DM644X_EWINTCNT_MASK 0x1FFFF
289#define EMAC_DM644X_INTMIN_INTVL 0x1
290#define EMAC_DM644X_INTMAX_INTVL (EMAC_DM644X_EWINTCNT_MASK)
291
a6286ee6 292/* EMAC DM646X control module registers */
84da2658
S
293#define EMAC_DM646X_CMINTCTRL 0x0C
294#define EMAC_DM646X_CMRXINTEN 0x14
295#define EMAC_DM646X_CMTXINTEN 0x18
296#define EMAC_DM646X_CMRXINTMAX 0x70
297#define EMAC_DM646X_CMTXINTMAX 0x74
298
299/* EMAC DM646X control module masks */
300#define EMAC_DM646X_INTPACEEN (0x3 << 16)
301#define EMAC_DM646X_INTPRESCALE_MASK (0x7FF << 0)
302#define EMAC_DM646X_CMINTMAX_CNT 63
303#define EMAC_DM646X_CMINTMIN_CNT 2
304#define EMAC_DM646X_CMINTMAX_INTVL (1000 / EMAC_DM646X_CMINTMIN_CNT)
305#define EMAC_DM646X_CMINTMIN_INTVL ((1000 / EMAC_DM646X_CMINTMAX_CNT) + 1)
306
a6286ee6
AG
307
308/* EMAC EOI codes for C0 */
309#define EMAC_DM646X_MAC_EOI_C0_RXEN (0x01)
310#define EMAC_DM646X_MAC_EOI_C0_TXEN (0x02)
311
0fe7463a
S
312/* EMAC Stats Clear Mask */
313#define EMAC_STATS_CLR_MASK (0xFFFFFFFF)
314
a6286ee6
AG
315/* emac_priv: EMAC private data structure
316 *
317 * EMAC adapter private data structure
318 */
319struct emac_priv {
320 u32 msg_enable;
321 struct net_device *ndev;
322 struct platform_device *pdev;
323 struct napi_struct napi;
324 char mac_addr[6];
a6286ee6
AG
325 void __iomem *remap_addr;
326 u32 emac_base_phys;
327 void __iomem *emac_base;
328 void __iomem *ctrl_base;
3ef0fdb2
CC
329 struct cpdma_ctlr *dma;
330 struct cpdma_chan *txchan;
331 struct cpdma_chan *rxchan;
a6286ee6
AG
332 u32 link; /* 1=link on, 0=link off */
333 u32 speed; /* 0=Auto Neg, 1=No PHY, 10,100, 1000 - mbps */
334 u32 duplex; /* Link duplex: 0=Half, 1=Full */
335 u32 rx_buf_size;
336 u32 isr_count;
84da2658
S
337 u32 coal_intvl;
338 u32 bus_freq_mhz;
a6286ee6
AG
339 u8 rmii_en;
340 u8 version;
a6286ee6
AG
341 u32 mac_hash1;
342 u32 mac_hash2;
343 u32 multicast_hash_cnt[EMAC_NUM_MULTICAST_BITS];
344 u32 rx_addr_type;
5d69e007 345 const char *phy_id;
42f59967
HS
346#ifdef CONFIG_OF
347 struct device_node *phy_node;
348#endif
a6286ee6
AG
349 struct phy_device *phydev;
350 spinlock_t lock;
01a9af36
S
351 /*platform specific members*/
352 void (*int_enable) (void);
353 void (*int_disable) (void);
a6286ee6
AG
354};
355
a6286ee6
AG
356/* EMAC TX Host Error description strings */
357static char *emac_txhost_errcodes[16] = {
358 "No error", "SOP error", "Ownership bit not set in SOP buffer",
359 "Zero Next Buffer Descriptor Pointer Without EOP",
360 "Zero Buffer Pointer", "Zero Buffer Length", "Packet Length Error",
361 "Reserved", "Reserved", "Reserved", "Reserved", "Reserved",
362 "Reserved", "Reserved", "Reserved", "Reserved"
363};
364
365/* EMAC RX Host Error description strings */
366static char *emac_rxhost_errcodes[16] = {
367 "No error", "Reserved", "Ownership bit not set in input buffer",
368 "Reserved", "Zero Buffer Pointer", "Reserved", "Reserved",
369 "Reserved", "Reserved", "Reserved", "Reserved", "Reserved",
370 "Reserved", "Reserved", "Reserved", "Reserved"
371};
372
373/* Helper macros */
374#define emac_read(reg) ioread32(priv->emac_base + (reg))
375#define emac_write(reg, val) iowrite32(val, priv->emac_base + (reg))
376
377#define emac_ctrl_read(reg) ioread32((priv->ctrl_base + (reg)))
378#define emac_ctrl_write(reg, val) iowrite32(val, (priv->ctrl_base + (reg)))
379
a6286ee6 380/**
49ce9c2c 381 * emac_dump_regs - Dump important EMAC registers to debug terminal
a6286ee6
AG
382 * @priv: The DaVinci EMAC private adapter structure
383 *
384 * Executes ethtool set cmd & sets phy mode
385 *
386 */
387static void emac_dump_regs(struct emac_priv *priv)
388{
389 struct device *emac_dev = &priv->ndev->dev;
390
391 /* Print important registers in EMAC */
392 dev_info(emac_dev, "EMAC Basic registers\n");
e994762f
S
393 if (priv->version == EMAC_VERSION_1) {
394 dev_info(emac_dev, "EMAC: EWCTL: %08X, EWINTTCNT: %08X\n",
395 emac_ctrl_read(EMAC_CTRL_EWCTL),
396 emac_ctrl_read(EMAC_CTRL_EWINTTCNT));
397 }
a6286ee6
AG
398 dev_info(emac_dev, "EMAC: EmuControl:%08X, FifoControl: %08X\n",
399 emac_read(EMAC_EMCONTROL), emac_read(EMAC_FIFOCONTROL));
400 dev_info(emac_dev, "EMAC: MBPEnable:%08X, RXUnicastSet: %08X, "\
401 "RXMaxLen=%08X\n", emac_read(EMAC_RXMBPENABLE),
402 emac_read(EMAC_RXUNICASTSET), emac_read(EMAC_RXMAXLEN));
403 dev_info(emac_dev, "EMAC: MacControl:%08X, MacStatus: %08X, "\
404 "MacConfig=%08X\n", emac_read(EMAC_MACCONTROL),
405 emac_read(EMAC_MACSTATUS), emac_read(EMAC_MACCONFIG));
a6286ee6
AG
406 dev_info(emac_dev, "EMAC Statistics\n");
407 dev_info(emac_dev, "EMAC: rx_good_frames:%d\n",
408 emac_read(EMAC_RXGOODFRAMES));
409 dev_info(emac_dev, "EMAC: rx_broadcast_frames:%d\n",
410 emac_read(EMAC_RXBCASTFRAMES));
411 dev_info(emac_dev, "EMAC: rx_multicast_frames:%d\n",
412 emac_read(EMAC_RXMCASTFRAMES));
413 dev_info(emac_dev, "EMAC: rx_pause_frames:%d\n",
414 emac_read(EMAC_RXPAUSEFRAMES));
415 dev_info(emac_dev, "EMAC: rx_crcerrors:%d\n",
416 emac_read(EMAC_RXCRCERRORS));
417 dev_info(emac_dev, "EMAC: rx_align_code_errors:%d\n",
418 emac_read(EMAC_RXALIGNCODEERRORS));
419 dev_info(emac_dev, "EMAC: rx_oversized_frames:%d\n",
420 emac_read(EMAC_RXOVERSIZED));
421 dev_info(emac_dev, "EMAC: rx_jabber_frames:%d\n",
422 emac_read(EMAC_RXJABBER));
423 dev_info(emac_dev, "EMAC: rx_undersized_frames:%d\n",
424 emac_read(EMAC_RXUNDERSIZED));
425 dev_info(emac_dev, "EMAC: rx_fragments:%d\n",
426 emac_read(EMAC_RXFRAGMENTS));
427 dev_info(emac_dev, "EMAC: rx_filtered_frames:%d\n",
428 emac_read(EMAC_RXFILTERED));
429 dev_info(emac_dev, "EMAC: rx_qos_filtered_frames:%d\n",
430 emac_read(EMAC_RXQOSFILTERED));
431 dev_info(emac_dev, "EMAC: rx_octets:%d\n",
432 emac_read(EMAC_RXOCTETS));
433 dev_info(emac_dev, "EMAC: tx_goodframes:%d\n",
434 emac_read(EMAC_TXGOODFRAMES));
435 dev_info(emac_dev, "EMAC: tx_bcastframes:%d\n",
436 emac_read(EMAC_TXBCASTFRAMES));
437 dev_info(emac_dev, "EMAC: tx_mcastframes:%d\n",
438 emac_read(EMAC_TXMCASTFRAMES));
439 dev_info(emac_dev, "EMAC: tx_pause_frames:%d\n",
440 emac_read(EMAC_TXPAUSEFRAMES));
441 dev_info(emac_dev, "EMAC: tx_deferred_frames:%d\n",
442 emac_read(EMAC_TXDEFERRED));
443 dev_info(emac_dev, "EMAC: tx_collision_frames:%d\n",
444 emac_read(EMAC_TXCOLLISION));
445 dev_info(emac_dev, "EMAC: tx_single_coll_frames:%d\n",
446 emac_read(EMAC_TXSINGLECOLL));
447 dev_info(emac_dev, "EMAC: tx_mult_coll_frames:%d\n",
448 emac_read(EMAC_TXMULTICOLL));
449 dev_info(emac_dev, "EMAC: tx_excessive_collisions:%d\n",
450 emac_read(EMAC_TXEXCESSIVECOLL));
451 dev_info(emac_dev, "EMAC: tx_late_collisions:%d\n",
452 emac_read(EMAC_TXLATECOLL));
453 dev_info(emac_dev, "EMAC: tx_underrun:%d\n",
454 emac_read(EMAC_TXUNDERRUN));
455 dev_info(emac_dev, "EMAC: tx_carrier_sense_errors:%d\n",
456 emac_read(EMAC_TXCARRIERSENSE));
457 dev_info(emac_dev, "EMAC: tx_octets:%d\n",
458 emac_read(EMAC_TXOCTETS));
459 dev_info(emac_dev, "EMAC: net_octets:%d\n",
460 emac_read(EMAC_NETOCTETS));
461 dev_info(emac_dev, "EMAC: rx_sof_overruns:%d\n",
462 emac_read(EMAC_RXSOFOVERRUNS));
463 dev_info(emac_dev, "EMAC: rx_mof_overruns:%d\n",
464 emac_read(EMAC_RXMOFOVERRUNS));
465 dev_info(emac_dev, "EMAC: rx_dma_overruns:%d\n",
466 emac_read(EMAC_RXDMAOVERRUNS));
3ef0fdb2
CC
467
468 cpdma_ctlr_dump(priv->dma);
a6286ee6
AG
469}
470
a6286ee6 471/**
49ce9c2c 472 * emac_get_drvinfo - Get EMAC driver information
a6286ee6
AG
473 * @ndev: The DaVinci EMAC network adapter
474 * @info: ethtool info structure containing name and version
475 *
476 * Returns EMAC driver information (name and version)
477 *
478 */
479static void emac_get_drvinfo(struct net_device *ndev,
480 struct ethtool_drvinfo *info)
481{
7826d43f
JP
482 strlcpy(info->driver, emac_version_string, sizeof(info->driver));
483 strlcpy(info->version, EMAC_MODULE_VERSION, sizeof(info->version));
a6286ee6
AG
484}
485
486/**
49ce9c2c 487 * emac_get_settings - Get EMAC settings
a6286ee6
AG
488 * @ndev: The DaVinci EMAC network adapter
489 * @ecmd: ethtool command
490 *
491 * Executes ethool get command
492 *
493 */
494static int emac_get_settings(struct net_device *ndev,
495 struct ethtool_cmd *ecmd)
496{
497 struct emac_priv *priv = netdev_priv(ndev);
5d69e007 498 if (priv->phydev)
a6286ee6
AG
499 return phy_ethtool_gset(priv->phydev, ecmd);
500 else
501 return -EOPNOTSUPP;
502
503}
504
505/**
49ce9c2c 506 * emac_set_settings - Set EMAC settings
a6286ee6
AG
507 * @ndev: The DaVinci EMAC network adapter
508 * @ecmd: ethtool command
509 *
510 * Executes ethool set command
511 *
512 */
513static int emac_set_settings(struct net_device *ndev, struct ethtool_cmd *ecmd)
514{
515 struct emac_priv *priv = netdev_priv(ndev);
5d69e007 516 if (priv->phydev)
a6286ee6
AG
517 return phy_ethtool_sset(priv->phydev, ecmd);
518 else
519 return -EOPNOTSUPP;
520
521}
522
84da2658 523/**
49ce9c2c 524 * emac_get_coalesce - Get interrupt coalesce settings for this device
84da2658
S
525 * @ndev : The DaVinci EMAC network adapter
526 * @coal : ethtool coalesce settings structure
527 *
528 * Fetch the current interrupt coalesce settings
529 *
530 */
531static int emac_get_coalesce(struct net_device *ndev,
532 struct ethtool_coalesce *coal)
533{
534 struct emac_priv *priv = netdev_priv(ndev);
535
536 coal->rx_coalesce_usecs = priv->coal_intvl;
537 return 0;
538
539}
540
541/**
49ce9c2c 542 * emac_set_coalesce - Set interrupt coalesce settings for this device
84da2658
S
543 * @ndev : The DaVinci EMAC network adapter
544 * @coal : ethtool coalesce settings structure
545 *
546 * Set interrupt coalesce parameters
547 *
548 */
549static int emac_set_coalesce(struct net_device *ndev,
550 struct ethtool_coalesce *coal)
551{
552 struct emac_priv *priv = netdev_priv(ndev);
553 u32 int_ctrl, num_interrupts = 0;
554 u32 prescale = 0, addnl_dvdr = 1, coal_intvl = 0;
555
556 if (!coal->rx_coalesce_usecs)
557 return -EINVAL;
558
559 coal_intvl = coal->rx_coalesce_usecs;
560
561 switch (priv->version) {
562 case EMAC_VERSION_2:
563 int_ctrl = emac_ctrl_read(EMAC_DM646X_CMINTCTRL);
564 prescale = priv->bus_freq_mhz * 4;
565
566 if (coal_intvl < EMAC_DM646X_CMINTMIN_INTVL)
567 coal_intvl = EMAC_DM646X_CMINTMIN_INTVL;
568
569 if (coal_intvl > EMAC_DM646X_CMINTMAX_INTVL) {
570 /*
571 * Interrupt pacer works with 4us Pulse, we can
572 * throttle further by dilating the 4us pulse.
573 */
574 addnl_dvdr = EMAC_DM646X_INTPRESCALE_MASK / prescale;
575
576 if (addnl_dvdr > 1) {
577 prescale *= addnl_dvdr;
578 if (coal_intvl > (EMAC_DM646X_CMINTMAX_INTVL
579 * addnl_dvdr))
580 coal_intvl = (EMAC_DM646X_CMINTMAX_INTVL
581 * addnl_dvdr);
582 } else {
583 addnl_dvdr = 1;
584 coal_intvl = EMAC_DM646X_CMINTMAX_INTVL;
585 }
586 }
587
588 num_interrupts = (1000 * addnl_dvdr) / coal_intvl;
589
590 int_ctrl |= EMAC_DM646X_INTPACEEN;
591 int_ctrl &= (~EMAC_DM646X_INTPRESCALE_MASK);
592 int_ctrl |= (prescale & EMAC_DM646X_INTPRESCALE_MASK);
593 emac_ctrl_write(EMAC_DM646X_CMINTCTRL, int_ctrl);
594
595 emac_ctrl_write(EMAC_DM646X_CMRXINTMAX, num_interrupts);
596 emac_ctrl_write(EMAC_DM646X_CMTXINTMAX, num_interrupts);
597
598 break;
599 default:
600 int_ctrl = emac_ctrl_read(EMAC_CTRL_EWINTTCNT);
601 int_ctrl &= (~EMAC_DM644X_EWINTCNT_MASK);
602 prescale = coal_intvl * priv->bus_freq_mhz;
603 if (prescale > EMAC_DM644X_EWINTCNT_MASK) {
604 prescale = EMAC_DM644X_EWINTCNT_MASK;
605 coal_intvl = prescale / priv->bus_freq_mhz;
606 }
607 emac_ctrl_write(EMAC_CTRL_EWINTTCNT, (int_ctrl | prescale));
608
609 break;
610 }
611
612 printk(KERN_INFO"Set coalesce to %d usecs.\n", coal_intvl);
613 priv->coal_intvl = coal_intvl;
614
615 return 0;
616
617}
618
619
1aa8b471 620/* ethtool_ops: DaVinci EMAC Ethtool structure
a6286ee6
AG
621 *
622 * Ethtool support for EMAC adapter
a6286ee6
AG
623 */
624static const struct ethtool_ops ethtool_ops = {
625 .get_drvinfo = emac_get_drvinfo,
626 .get_settings = emac_get_settings,
627 .set_settings = emac_set_settings,
628 .get_link = ethtool_op_get_link,
84da2658
S
629 .get_coalesce = emac_get_coalesce,
630 .set_coalesce = emac_set_coalesce,
1fa68bed 631 .get_ts_info = ethtool_op_get_ts_info,
a6286ee6
AG
632};
633
634/**
49ce9c2c 635 * emac_update_phystatus - Update Phy status
a6286ee6
AG
636 * @priv: The DaVinci EMAC private adapter structure
637 *
638 * Updates phy status and takes action for network queue if required
639 * based upon link status
640 *
641 */
642static void emac_update_phystatus(struct emac_priv *priv)
643{
644 u32 mac_control;
645 u32 new_duplex;
646 u32 cur_duplex;
647 struct net_device *ndev = priv->ndev;
648
649 mac_control = emac_read(EMAC_MACCONTROL);
650 cur_duplex = (mac_control & EMAC_MACCONTROL_FULLDUPLEXEN) ?
651 DUPLEX_FULL : DUPLEX_HALF;
5d69e007 652 if (priv->phydev)
a6286ee6
AG
653 new_duplex = priv->phydev->duplex;
654 else
655 new_duplex = DUPLEX_FULL;
656
657 /* We get called only if link has changed (speed/duplex/status) */
658 if ((priv->link) && (new_duplex != cur_duplex)) {
659 priv->duplex = new_duplex;
660 if (DUPLEX_FULL == priv->duplex)
661 mac_control |= (EMAC_MACCONTROL_FULLDUPLEXEN);
662 else
663 mac_control &= ~(EMAC_MACCONTROL_FULLDUPLEXEN);
664 }
665
666 if (priv->speed == SPEED_1000 && (priv->version == EMAC_VERSION_2)) {
667 mac_control = emac_read(EMAC_MACCONTROL);
69ef9694 668 mac_control |= (EMAC_DM646X_MACCONTORL_GIG |
a6286ee6
AG
669 EMAC_DM646X_MACCONTORL_GIGFORCE);
670 } else {
671 /* Clear the GIG bit and GIGFORCE bit */
672 mac_control &= ~(EMAC_DM646X_MACCONTORL_GIGFORCE |
673 EMAC_DM646X_MACCONTORL_GIG);
674
675 if (priv->rmii_en && (priv->speed == SPEED_100))
676 mac_control |= EMAC_MACCONTROL_RMIISPEED_MASK;
677 else
678 mac_control &= ~EMAC_MACCONTROL_RMIISPEED_MASK;
679 }
680
681 /* Update mac_control if changed */
682 emac_write(EMAC_MACCONTROL, mac_control);
683
684 if (priv->link) {
685 /* link ON */
686 if (!netif_carrier_ok(ndev))
687 netif_carrier_on(ndev);
688 /* reactivate the transmit queue if it is stopped */
689 if (netif_running(ndev) && netif_queue_stopped(ndev))
690 netif_wake_queue(ndev);
691 } else {
692 /* link OFF */
693 if (netif_carrier_ok(ndev))
694 netif_carrier_off(ndev);
695 if (!netif_queue_stopped(ndev))
696 netif_stop_queue(ndev);
697 }
698}
699
700/**
49ce9c2c 701 * hash_get - Calculate hash value from mac address
a6286ee6
AG
702 * @addr: mac address to delete from hash table
703 *
704 * Calculates hash value from mac address
705 *
706 */
707static u32 hash_get(u8 *addr)
708{
709 u32 hash;
710 u8 tmpval;
711 int cnt;
712 hash = 0;
713
714 for (cnt = 0; cnt < 2; cnt++) {
715 tmpval = *addr++;
716 hash ^= (tmpval >> 2) ^ (tmpval << 4);
717 tmpval = *addr++;
718 hash ^= (tmpval >> 4) ^ (tmpval << 2);
719 tmpval = *addr++;
720 hash ^= (tmpval >> 6) ^ (tmpval);
721 }
722
723 return hash & 0x3F;
724}
725
726/**
49ce9c2c 727 * hash_add - Hash function to add mac addr from hash table
a6286ee6 728 * @priv: The DaVinci EMAC private adapter structure
49ce9c2c 729 * @mac_addr: mac address to delete from hash table
a6286ee6
AG
730 *
731 * Adds mac address to the internal hash table
732 *
733 */
734static int hash_add(struct emac_priv *priv, u8 *mac_addr)
735{
736 struct device *emac_dev = &priv->ndev->dev;
737 u32 rc = 0;
738 u32 hash_bit;
739 u32 hash_value = hash_get(mac_addr);
740
741 if (hash_value >= EMAC_NUM_MULTICAST_BITS) {
742 if (netif_msg_drv(priv)) {
743 dev_err(emac_dev, "DaVinci EMAC: hash_add(): Invalid "\
744 "Hash %08x, should not be greater than %08x",
745 hash_value, (EMAC_NUM_MULTICAST_BITS - 1));
746 }
747 return -1;
748 }
749
750 /* set the hash bit only if not previously set */
751 if (priv->multicast_hash_cnt[hash_value] == 0) {
752 rc = 1; /* hash value changed */
753 if (hash_value < 32) {
754 hash_bit = BIT(hash_value);
755 priv->mac_hash1 |= hash_bit;
756 } else {
757 hash_bit = BIT((hash_value - 32));
758 priv->mac_hash2 |= hash_bit;
759 }
760 }
761
762 /* incr counter for num of mcast addr's mapped to "this" hash bit */
763 ++priv->multicast_hash_cnt[hash_value];
764
765 return rc;
766}
767
768/**
49ce9c2c 769 * hash_del - Hash function to delete mac addr from hash table
a6286ee6 770 * @priv: The DaVinci EMAC private adapter structure
49ce9c2c 771 * @mac_addr: mac address to delete from hash table
a6286ee6
AG
772 *
773 * Removes mac address from the internal hash table
774 *
775 */
776static int hash_del(struct emac_priv *priv, u8 *mac_addr)
777{
778 u32 hash_value;
779 u32 hash_bit;
780
781 hash_value = hash_get(mac_addr);
782 if (priv->multicast_hash_cnt[hash_value] > 0) {
783 /* dec cntr for num of mcast addr's mapped to this hash bit */
784 --priv->multicast_hash_cnt[hash_value];
785 }
786
787 /* if counter still > 0, at least one multicast address refers
788 * to this hash bit. so return 0 */
789 if (priv->multicast_hash_cnt[hash_value] > 0)
790 return 0;
791
792 if (hash_value < 32) {
793 hash_bit = BIT(hash_value);
794 priv->mac_hash1 &= ~hash_bit;
795 } else {
796 hash_bit = BIT((hash_value - 32));
797 priv->mac_hash2 &= ~hash_bit;
798 }
799
800 /* return 1 to indicate change in mac_hash registers reqd */
801 return 1;
802}
803
804/* EMAC multicast operation */
805#define EMAC_MULTICAST_ADD 0
806#define EMAC_MULTICAST_DEL 1
807#define EMAC_ALL_MULTI_SET 2
808#define EMAC_ALL_MULTI_CLR 3
809
810/**
49ce9c2c 811 * emac_add_mcast - Set multicast address in the EMAC adapter (Internal)
a6286ee6
AG
812 * @priv: The DaVinci EMAC private adapter structure
813 * @action: multicast operation to perform
814 * mac_addr: mac address to set
815 *
816 * Set multicast addresses in EMAC adapter - internal function
817 *
818 */
819static void emac_add_mcast(struct emac_priv *priv, u32 action, u8 *mac_addr)
820{
821 struct device *emac_dev = &priv->ndev->dev;
822 int update = -1;
823
824 switch (action) {
825 case EMAC_MULTICAST_ADD:
826 update = hash_add(priv, mac_addr);
827 break;
828 case EMAC_MULTICAST_DEL:
829 update = hash_del(priv, mac_addr);
830 break;
831 case EMAC_ALL_MULTI_SET:
832 update = 1;
833 priv->mac_hash1 = EMAC_ALL_MULTI_REG_VALUE;
834 priv->mac_hash2 = EMAC_ALL_MULTI_REG_VALUE;
835 break;
836 case EMAC_ALL_MULTI_CLR:
837 update = 1;
838 priv->mac_hash1 = 0;
839 priv->mac_hash2 = 0;
840 memset(&(priv->multicast_hash_cnt[0]), 0,
841 sizeof(priv->multicast_hash_cnt[0]) *
842 EMAC_NUM_MULTICAST_BITS);
843 break;
844 default:
845 if (netif_msg_drv(priv))
846 dev_err(emac_dev, "DaVinci EMAC: add_mcast"\
847 ": bad operation %d", action);
848 break;
849 }
850
851 /* write to the hardware only if the register status chances */
852 if (update > 0) {
853 emac_write(EMAC_MACHASH1, priv->mac_hash1);
854 emac_write(EMAC_MACHASH2, priv->mac_hash2);
855 }
856}
857
858/**
49ce9c2c 859 * emac_dev_mcast_set - Set multicast address in the EMAC adapter
a6286ee6
AG
860 * @ndev: The DaVinci EMAC network adapter
861 *
862 * Set multicast addresses in EMAC adapter
863 *
864 */
865static void emac_dev_mcast_set(struct net_device *ndev)
866{
867 u32 mbp_enable;
868 struct emac_priv *priv = netdev_priv(ndev);
869
870 mbp_enable = emac_read(EMAC_RXMBPENABLE);
871 if (ndev->flags & IFF_PROMISC) {
872 mbp_enable &= (~EMAC_MBP_PROMISCCH(EMAC_DEF_PROM_CH));
873 mbp_enable |= (EMAC_MBP_RXPROMISC);
874 } else {
875 mbp_enable = (mbp_enable & ~EMAC_MBP_RXPROMISC);
876 if ((ndev->flags & IFF_ALLMULTI) ||
4cd24eaf 877 netdev_mc_count(ndev) > EMAC_DEF_MAX_MULTICAST_ADDRESSES) {
a6286ee6
AG
878 mbp_enable = (mbp_enable | EMAC_MBP_RXMCAST);
879 emac_add_mcast(priv, EMAC_ALL_MULTI_SET, NULL);
d69e0f7e 880 } else if (!netdev_mc_empty(ndev)) {
22bedad3
JP
881 struct netdev_hw_addr *ha;
882
a6286ee6
AG
883 mbp_enable = (mbp_enable | EMAC_MBP_RXMCAST);
884 emac_add_mcast(priv, EMAC_ALL_MULTI_CLR, NULL);
885 /* program multicast address list into EMAC hardware */
22bedad3 886 netdev_for_each_mc_addr(ha, ndev) {
a6286ee6 887 emac_add_mcast(priv, EMAC_MULTICAST_ADD,
22bedad3 888 (u8 *) ha->addr);
a6286ee6
AG
889 }
890 } else {
891 mbp_enable = (mbp_enable & ~EMAC_MBP_RXMCAST);
892 emac_add_mcast(priv, EMAC_ALL_MULTI_CLR, NULL);
893 }
894 }
895 /* Set mbp config register */
896 emac_write(EMAC_RXMBPENABLE, mbp_enable);
897}
898
899/*************************************************************************
900 * EMAC Hardware manipulation
901 *************************************************************************/
902
903/**
49ce9c2c 904 * emac_int_disable - Disable EMAC module interrupt (from adapter)
a6286ee6
AG
905 * @priv: The DaVinci EMAC private adapter structure
906 *
907 * Disable EMAC interrupt on the adapter
908 *
909 */
910static void emac_int_disable(struct emac_priv *priv)
911{
912 if (priv->version == EMAC_VERSION_2) {
913 unsigned long flags;
914
915 local_irq_save(flags);
916
917 /* Program C0_Int_En to zero to turn off
918 * interrupts to the CPU */
919 emac_ctrl_write(EMAC_DM646X_CMRXINTEN, 0x0);
920 emac_ctrl_write(EMAC_DM646X_CMTXINTEN, 0x0);
921 /* NOTE: Rx Threshold and Misc interrupts are not disabled */
01a9af36
S
922 if (priv->int_disable)
923 priv->int_disable();
a6286ee6 924
cd2d6d33
TL
925 /* NOTE: Rx Threshold and Misc interrupts are not enabled */
926
927 /* ack rxen only then a new pulse will be generated */
928 emac_write(EMAC_DM646X_MACEOIVECTOR,
929 EMAC_DM646X_MAC_EOI_C0_RXEN);
930
931 /* ack txen- only then a new pulse will be generated */
932 emac_write(EMAC_DM646X_MACEOIVECTOR,
933 EMAC_DM646X_MAC_EOI_C0_TXEN);
934
a6286ee6
AG
935 local_irq_restore(flags);
936
937 } else {
938 /* Set DM644x control registers for interrupt control */
939 emac_ctrl_write(EMAC_CTRL_EWCTL, 0x0);
940 }
941}
942
943/**
49ce9c2c 944 * emac_int_enable - Enable EMAC module interrupt (from adapter)
a6286ee6
AG
945 * @priv: The DaVinci EMAC private adapter structure
946 *
947 * Enable EMAC interrupt on the adapter
948 *
949 */
950static void emac_int_enable(struct emac_priv *priv)
951{
952 if (priv->version == EMAC_VERSION_2) {
01a9af36
S
953 if (priv->int_enable)
954 priv->int_enable();
955
a6286ee6
AG
956 emac_ctrl_write(EMAC_DM646X_CMRXINTEN, 0xff);
957 emac_ctrl_write(EMAC_DM646X_CMTXINTEN, 0xff);
958
959 /* In addition to turning on interrupt Enable, we need
960 * ack by writing appropriate values to the EOI
961 * register */
962
963 /* NOTE: Rx Threshold and Misc interrupts are not enabled */
a6286ee6
AG
964 } else {
965 /* Set DM644x control registers for interrupt control */
966 emac_ctrl_write(EMAC_CTRL_EWCTL, 0x1);
967 }
968}
969
970/**
49ce9c2c 971 * emac_irq - EMAC interrupt handler
a6286ee6
AG
972 * @irq: interrupt number
973 * @dev_id: EMAC network adapter data structure ptr
974 *
975 * EMAC Interrupt handler - we only schedule NAPI and not process any packets
976 * here. EVen the interrupt status is checked (TX/RX/Err) in NAPI poll function
977 *
978 * Returns interrupt handled condition
979 */
980static irqreturn_t emac_irq(int irq, void *dev_id)
981{
982 struct net_device *ndev = (struct net_device *)dev_id;
983 struct emac_priv *priv = netdev_priv(ndev);
984
985 ++priv->isr_count;
986 if (likely(netif_running(priv->ndev))) {
987 emac_int_disable(priv);
988 napi_schedule(&priv->napi);
989 } else {
990 /* we are closing down, so dont process anything */
991 }
992 return IRQ_HANDLED;
993}
994
3ef0fdb2
CC
995static struct sk_buff *emac_rx_alloc(struct emac_priv *priv)
996{
dae2e9f4 997 struct sk_buff *skb = netdev_alloc_skb(priv->ndev, priv->rx_buf_size);
3ef0fdb2
CC
998 if (WARN_ON(!skb))
999 return NULL;
3ef0fdb2
CC
1000 skb_reserve(skb, NET_IP_ALIGN);
1001 return skb;
1002}
1003
1004static void emac_rx_handler(void *token, int len, int status)
1005{
1006 struct sk_buff *skb = token;
1007 struct net_device *ndev = skb->dev;
1008 struct emac_priv *priv = netdev_priv(ndev);
1009 struct device *emac_dev = &ndev->dev;
1010 int ret;
1011
1012 /* free and bail if we are shutting down */
5d697032 1013 if (unlikely(!netif_running(ndev))) {
3ef0fdb2
CC
1014 dev_kfree_skb_any(skb);
1015 return;
1016 }
1017
25985edc 1018 /* recycle on receive error */
3ef0fdb2
CC
1019 if (status < 0) {
1020 ndev->stats.rx_errors++;
1021 goto recycle;
1022 }
1023
1024 /* feed received packet up the stack */
1025 skb_put(skb, len);
1026 skb->protocol = eth_type_trans(skb, ndev);
1027 netif_receive_skb(skb);
1028 ndev->stats.rx_bytes += len;
1029 ndev->stats.rx_packets++;
1030
1031 /* alloc a new packet for receive */
1032 skb = emac_rx_alloc(priv);
1033 if (!skb) {
1034 if (netif_msg_rx_err(priv) && net_ratelimit())
1035 dev_err(emac_dev, "failed rx buffer alloc\n");
1036 return;
1037 }
1038
1039recycle:
1040 ret = cpdma_chan_submit(priv->rxchan, skb, skb->data,
aef614e1 1041 skb_tailroom(skb), 0);
5d697032
CR
1042
1043 WARN_ON(ret == -ENOMEM);
1044 if (unlikely(ret < 0))
3ef0fdb2
CC
1045 dev_kfree_skb_any(skb);
1046}
1047
1048static void emac_tx_handler(void *token, int len, int status)
1049{
1050 struct sk_buff *skb = token;
1051 struct net_device *ndev = skb->dev;
1052
fae50823
M
1053 /* Check whether the queue is stopped due to stalled tx dma, if the
1054 * queue is stopped then start the queue as we have free desc for tx
1055 */
3ef0fdb2 1056 if (unlikely(netif_queue_stopped(ndev)))
7e51cde2 1057 netif_wake_queue(ndev);
3ef0fdb2
CC
1058 ndev->stats.tx_packets++;
1059 ndev->stats.tx_bytes += len;
1060 dev_kfree_skb_any(skb);
1061}
1062
a6286ee6 1063/**
49ce9c2c 1064 * emac_dev_xmit - EMAC Transmit function
a6286ee6
AG
1065 * @skb: SKB pointer
1066 * @ndev: The DaVinci EMAC network adapter
1067 *
1068 * Called by the system to transmit a packet - we queue the packet in
1069 * EMAC hardware transmit queue
1070 *
1071 * Returns success(NETDEV_TX_OK) or error code (typically out of desc's)
1072 */
1073static int emac_dev_xmit(struct sk_buff *skb, struct net_device *ndev)
1074{
1075 struct device *emac_dev = &ndev->dev;
1076 int ret_code;
a6286ee6
AG
1077 struct emac_priv *priv = netdev_priv(ndev);
1078
1079 /* If no link, return */
1080 if (unlikely(!priv->link)) {
1081 if (netif_msg_tx_err(priv) && net_ratelimit())
1082 dev_err(emac_dev, "DaVinci EMAC: No link to transmit");
3ef0fdb2 1083 goto fail_tx;
a6286ee6
AG
1084 }
1085
3ef0fdb2
CC
1086 ret_code = skb_padto(skb, EMAC_DEF_MIN_ETHPKTSIZE);
1087 if (unlikely(ret_code < 0)) {
1088 if (netif_msg_tx_err(priv) && net_ratelimit())
1089 dev_err(emac_dev, "DaVinci EMAC: packet pad failed");
1090 goto fail_tx;
1091 }
1092
5bf0c191
RC
1093 skb_tx_timestamp(skb);
1094
3ef0fdb2 1095 ret_code = cpdma_chan_submit(priv->txchan, skb, skb->data, skb->len,
aef614e1 1096 0);
a6286ee6 1097 if (unlikely(ret_code != 0)) {
3ef0fdb2
CC
1098 if (netif_msg_tx_err(priv) && net_ratelimit())
1099 dev_err(emac_dev, "DaVinci EMAC: desc submit failed");
1100 goto fail_tx;
a6286ee6
AG
1101 }
1102
fae50823
M
1103 /* If there is no more tx desc left free then we need to
1104 * tell the kernel to stop sending us tx frames.
1105 */
75b9b61b 1106 if (unlikely(!cpdma_check_free_tx_desc(priv->txchan)))
86d8c07f
SH
1107 netif_stop_queue(ndev);
1108
a6286ee6 1109 return NETDEV_TX_OK;
3ef0fdb2
CC
1110
1111fail_tx:
1112 ndev->stats.tx_dropped++;
1113 netif_stop_queue(ndev);
1114 return NETDEV_TX_BUSY;
a6286ee6
AG
1115}
1116
1117/**
49ce9c2c 1118 * emac_dev_tx_timeout - EMAC Transmit timeout function
a6286ee6
AG
1119 * @ndev: The DaVinci EMAC network adapter
1120 *
1121 * Called when system detects that a skb timeout period has expired
1122 * potentially due to a fault in the adapter in not being able to send
1123 * it out on the wire. We teardown the TX channel assuming a hardware
1124 * error and re-initialize the TX channel for hardware operation
1125 *
1126 */
1127static void emac_dev_tx_timeout(struct net_device *ndev)
1128{
1129 struct emac_priv *priv = netdev_priv(ndev);
1130 struct device *emac_dev = &ndev->dev;
1131
1132 if (netif_msg_tx_err(priv))
1133 dev_err(emac_dev, "DaVinci EMAC: xmit timeout, restarting TX");
1134
3ef0fdb2
CC
1135 emac_dump_regs(priv);
1136
78e8c532 1137 ndev->stats.tx_errors++;
a6286ee6 1138 emac_int_disable(priv);
3ef0fdb2
CC
1139 cpdma_chan_stop(priv->txchan);
1140 cpdma_chan_start(priv->txchan);
a6286ee6
AG
1141 emac_int_enable(priv);
1142}
1143
a6286ee6 1144/**
49ce9c2c 1145 * emac_set_type0addr - Set EMAC Type0 mac address
a6286ee6
AG
1146 * @priv: The DaVinci EMAC private adapter structure
1147 * @ch: RX channel number
1148 * @mac_addr: MAC address to set in device
1149 *
1150 * Called internally to set Type0 mac address of the adapter (Device)
1151 *
1152 * Returns success (0) or appropriate error code (none as of now)
1153 */
1154static void emac_set_type0addr(struct emac_priv *priv, u32 ch, char *mac_addr)
1155{
1156 u32 val;
1157 val = ((mac_addr[5] << 8) | (mac_addr[4]));
1158 emac_write(EMAC_MACSRCADDRLO, val);
1159
1160 val = ((mac_addr[3] << 24) | (mac_addr[2] << 16) | \
1161 (mac_addr[1] << 8) | (mac_addr[0]));
1162 emac_write(EMAC_MACSRCADDRHI, val);
1163 val = emac_read(EMAC_RXUNICASTSET);
1164 val |= BIT(ch);
1165 emac_write(EMAC_RXUNICASTSET, val);
1166 val = emac_read(EMAC_RXUNICASTCLEAR);
1167 val &= ~BIT(ch);
1168 emac_write(EMAC_RXUNICASTCLEAR, val);
1169}
1170
1171/**
49ce9c2c 1172 * emac_set_type1addr - Set EMAC Type1 mac address
a6286ee6
AG
1173 * @priv: The DaVinci EMAC private adapter structure
1174 * @ch: RX channel number
1175 * @mac_addr: MAC address to set in device
1176 *
1177 * Called internally to set Type1 mac address of the adapter (Device)
1178 *
1179 * Returns success (0) or appropriate error code (none as of now)
1180 */
1181static void emac_set_type1addr(struct emac_priv *priv, u32 ch, char *mac_addr)
1182{
1183 u32 val;
1184 emac_write(EMAC_MACINDEX, ch);
1185 val = ((mac_addr[5] << 8) | mac_addr[4]);
1186 emac_write(EMAC_MACADDRLO, val);
1187 val = ((mac_addr[3] << 24) | (mac_addr[2] << 16) | \
1188 (mac_addr[1] << 8) | (mac_addr[0]));
1189 emac_write(EMAC_MACADDRHI, val);
1190 emac_set_type0addr(priv, ch, mac_addr);
1191}
1192
1193/**
49ce9c2c 1194 * emac_set_type2addr - Set EMAC Type2 mac address
a6286ee6
AG
1195 * @priv: The DaVinci EMAC private adapter structure
1196 * @ch: RX channel number
1197 * @mac_addr: MAC address to set in device
1198 * @index: index into RX address entries
1199 * @match: match parameter for RX address matching logic
1200 *
1201 * Called internally to set Type2 mac address of the adapter (Device)
1202 *
1203 * Returns success (0) or appropriate error code (none as of now)
1204 */
1205static void emac_set_type2addr(struct emac_priv *priv, u32 ch,
1206 char *mac_addr, int index, int match)
1207{
1208 u32 val;
1209 emac_write(EMAC_MACINDEX, index);
1210 val = ((mac_addr[3] << 24) | (mac_addr[2] << 16) | \
1211 (mac_addr[1] << 8) | (mac_addr[0]));
1212 emac_write(EMAC_MACADDRHI, val);
1213 val = ((mac_addr[5] << 8) | mac_addr[4] | ((ch & 0x7) << 16) | \
1214 (match << 19) | BIT(20));
1215 emac_write(EMAC_MACADDRLO, val);
1216 emac_set_type0addr(priv, ch, mac_addr);
1217}
1218
1219/**
49ce9c2c 1220 * emac_setmac - Set mac address in the adapter (internal function)
a6286ee6
AG
1221 * @priv: The DaVinci EMAC private adapter structure
1222 * @ch: RX channel number
1223 * @mac_addr: MAC address to set in device
1224 *
1225 * Called internally to set the mac address of the adapter (Device)
1226 *
1227 * Returns success (0) or appropriate error code (none as of now)
1228 */
1229static void emac_setmac(struct emac_priv *priv, u32 ch, char *mac_addr)
1230{
1231 struct device *emac_dev = &priv->ndev->dev;
1232
1233 if (priv->rx_addr_type == 0) {
1234 emac_set_type0addr(priv, ch, mac_addr);
1235 } else if (priv->rx_addr_type == 1) {
1236 u32 cnt;
1237 for (cnt = 0; cnt < EMAC_MAX_TXRX_CHANNELS; cnt++)
1238 emac_set_type1addr(priv, ch, mac_addr);
1239 } else if (priv->rx_addr_type == 2) {
1240 emac_set_type2addr(priv, ch, mac_addr, ch, 1);
1241 emac_set_type0addr(priv, ch, mac_addr);
1242 } else {
1243 if (netif_msg_drv(priv))
1244 dev_err(emac_dev, "DaVinci EMAC: Wrong addressing\n");
1245 }
1246}
1247
1248/**
49ce9c2c 1249 * emac_dev_setmac_addr - Set mac address in the adapter
a6286ee6
AG
1250 * @ndev: The DaVinci EMAC network adapter
1251 * @addr: MAC address to set in device
1252 *
1253 * Called by the system to set the mac address of the adapter (Device)
1254 *
1255 * Returns success (0) or appropriate error code (none as of now)
1256 */
1257static int emac_dev_setmac_addr(struct net_device *ndev, void *addr)
1258{
1259 struct emac_priv *priv = netdev_priv(ndev);
a6286ee6
AG
1260 struct device *emac_dev = &priv->ndev->dev;
1261 struct sockaddr *sa = addr;
a6286ee6 1262
64c8165b 1263 if (!is_valid_ether_addr(sa->sa_data))
504f9b5a 1264 return -EADDRNOTAVAIL;
64c8165b 1265
a6286ee6
AG
1266 /* Store mac addr in priv and rx channel and set it in EMAC hw */
1267 memcpy(priv->mac_addr, sa->sa_data, ndev->addr_len);
a6286ee6 1268 memcpy(ndev->dev_addr, sa->sa_data, ndev->addr_len);
64c8165b 1269
64c8165b
PB
1270 /* MAC address is configured only after the interface is enabled. */
1271 if (netif_running(ndev)) {
3ef0fdb2 1272 emac_setmac(priv, EMAC_DEF_RX_CH, priv->mac_addr);
64c8165b 1273 }
a6286ee6
AG
1274
1275 if (netif_msg_drv(priv))
5c726166
C
1276 dev_notice(emac_dev, "DaVinci EMAC: emac_dev_setmac_addr %pM\n",
1277 priv->mac_addr);
a6286ee6
AG
1278
1279 return 0;
1280}
1281
a6286ee6 1282/**
49ce9c2c 1283 * emac_hw_enable - Enable EMAC hardware for packet transmission/reception
a6286ee6
AG
1284 * @priv: The DaVinci EMAC private adapter structure
1285 *
1286 * Enables EMAC hardware for packet processing - enables PHY, enables RX
1287 * for packet reception and enables device interrupts and then NAPI
1288 *
1289 * Returns success (0) or appropriate error code (none right now)
1290 */
1291static int emac_hw_enable(struct emac_priv *priv)
1292{
3ef0fdb2 1293 u32 val, mbp_enable, mac_control;
a6286ee6
AG
1294
1295 /* Soft reset */
1296 emac_write(EMAC_SOFTRESET, 1);
1297 while (emac_read(EMAC_SOFTRESET))
1298 cpu_relax();
1299
1300 /* Disable interrupt & Set pacing for more interrupts initially */
1301 emac_int_disable(priv);
1302
1303 /* Full duplex enable bit set when auto negotiation happens */
1304 mac_control =
1305 (((EMAC_DEF_TXPRIO_FIXED) ? (EMAC_MACCONTROL_TXPTYPE) : 0x0) |
1306 ((priv->speed == 1000) ? EMAC_MACCONTROL_GIGABITEN : 0x0) |
1307 ((EMAC_DEF_TXPACING_EN) ? (EMAC_MACCONTROL_TXPACEEN) : 0x0) |
1308 ((priv->duplex == DUPLEX_FULL) ? 0x1 : 0));
1309 emac_write(EMAC_MACCONTROL, mac_control);
1310
1311 mbp_enable =
1312 (((EMAC_DEF_PASS_CRC) ? (EMAC_RXMBP_PASSCRC_MASK) : 0x0) |
1313 ((EMAC_DEF_QOS_EN) ? (EMAC_RXMBP_QOSEN_MASK) : 0x0) |
1314 ((EMAC_DEF_NO_BUFF_CHAIN) ? (EMAC_RXMBP_NOCHAIN_MASK) : 0x0) |
1315 ((EMAC_DEF_MACCTRL_FRAME_EN) ? (EMAC_RXMBP_CMFEN_MASK) : 0x0) |
1316 ((EMAC_DEF_SHORT_FRAME_EN) ? (EMAC_RXMBP_CSFEN_MASK) : 0x0) |
1317 ((EMAC_DEF_ERROR_FRAME_EN) ? (EMAC_RXMBP_CEFEN_MASK) : 0x0) |
1318 ((EMAC_DEF_PROM_EN) ? (EMAC_RXMBP_CAFEN_MASK) : 0x0) |
1319 ((EMAC_DEF_PROM_CH & EMAC_RXMBP_CHMASK) << \
1320 EMAC_RXMBP_PROMCH_SHIFT) |
1321 ((EMAC_DEF_BCAST_EN) ? (EMAC_RXMBP_BROADEN_MASK) : 0x0) |
1322 ((EMAC_DEF_BCAST_CH & EMAC_RXMBP_CHMASK) << \
1323 EMAC_RXMBP_BROADCH_SHIFT) |
1324 ((EMAC_DEF_MCAST_EN) ? (EMAC_RXMBP_MULTIEN_MASK) : 0x0) |
1325 ((EMAC_DEF_MCAST_CH & EMAC_RXMBP_CHMASK) << \
1326 EMAC_RXMBP_MULTICH_SHIFT));
1327 emac_write(EMAC_RXMBPENABLE, mbp_enable);
1328 emac_write(EMAC_RXMAXLEN, (EMAC_DEF_MAX_FRAME_SIZE &
1329 EMAC_RX_MAX_LEN_MASK));
1330 emac_write(EMAC_RXBUFFEROFFSET, (EMAC_DEF_BUFFER_OFFSET &
1331 EMAC_RX_BUFFER_OFFSET_MASK));
1332 emac_write(EMAC_RXFILTERLOWTHRESH, 0);
1333 emac_write(EMAC_RXUNICASTCLEAR, EMAC_RX_UNICAST_CLEAR_ALL);
1334 priv->rx_addr_type = (emac_read(EMAC_MACCONFIG) >> 8) & 0xFF;
1335
a6286ee6
AG
1336 emac_write(EMAC_MACINTMASKSET, EMAC_MAC_HOST_ERR_INTMASK_VAL);
1337
3ef0fdb2 1338 emac_setmac(priv, EMAC_DEF_RX_CH, priv->mac_addr);
a6286ee6
AG
1339
1340 /* Enable MII */
1341 val = emac_read(EMAC_MACCONTROL);
69ef9694 1342 val |= (EMAC_MACCONTROL_GMIIEN);
a6286ee6
AG
1343 emac_write(EMAC_MACCONTROL, val);
1344
1345 /* Enable NAPI and interrupts */
1346 napi_enable(&priv->napi);
1347 emac_int_enable(priv);
1348 return 0;
1349
1350}
1351
1352/**
49ce9c2c 1353 * emac_poll - EMAC NAPI Poll function
a6286ee6
AG
1354 * @ndev: The DaVinci EMAC network adapter
1355 * @budget: Number of receive packets to process (as told by NAPI layer)
1356 *
1357 * NAPI Poll function implemented to process packets as per budget. We check
1358 * the type of interrupt on the device and accordingly call the TX or RX
1359 * packet processing functions. We follow the budget for RX processing and
1360 * also put a cap on number of TX pkts processed through config param. The
1361 * NAPI schedule function is called if more packets pending.
1362 *
1363 * Returns number of packets received (in most cases; else TX pkts - rarely)
1364 */
1365static int emac_poll(struct napi_struct *napi, int budget)
1366{
1367 unsigned int mask;
1368 struct emac_priv *priv = container_of(napi, struct emac_priv, napi);
1369 struct net_device *ndev = priv->ndev;
1370 struct device *emac_dev = &ndev->dev;
1371 u32 status = 0;
3725b1fe 1372 u32 num_tx_pkts = 0, num_rx_pkts = 0;
a6286ee6 1373
a6286ee6
AG
1374 /* Check interrupt vectors and call packet processing */
1375 status = emac_read(EMAC_MACINVECTOR);
1376
1377 mask = EMAC_DM644X_MAC_IN_VECTOR_TX_INT_VEC;
1378
1379 if (priv->version == EMAC_VERSION_2)
1380 mask = EMAC_DM646X_MAC_IN_VECTOR_TX_INT_VEC;
1381
1382 if (status & mask) {
3ef0fdb2
CC
1383 num_tx_pkts = cpdma_chan_process(priv->txchan,
1384 EMAC_DEF_TX_MAX_SERVICE);
a6286ee6
AG
1385 } /* TX processing */
1386
a6286ee6
AG
1387 mask = EMAC_DM644X_MAC_IN_VECTOR_RX_INT_VEC;
1388
1389 if (priv->version == EMAC_VERSION_2)
1390 mask = EMAC_DM646X_MAC_IN_VECTOR_RX_INT_VEC;
1391
1392 if (status & mask) {
3ef0fdb2 1393 num_rx_pkts = cpdma_chan_process(priv->rxchan, budget);
a6286ee6
AG
1394 } /* RX processing */
1395
43c2ed8e
S
1396 mask = EMAC_DM644X_MAC_IN_VECTOR_HOST_INT;
1397 if (priv->version == EMAC_VERSION_2)
1398 mask = EMAC_DM646X_MAC_IN_VECTOR_HOST_INT;
1399
1400 if (unlikely(status & mask)) {
a6286ee6
AG
1401 u32 ch, cause;
1402 dev_err(emac_dev, "DaVinci EMAC: Fatal Hardware Error\n");
1403 netif_stop_queue(ndev);
1404 napi_disable(&priv->napi);
1405
1406 status = emac_read(EMAC_MACSTATUS);
1407 cause = ((status & EMAC_MACSTATUS_TXERRCODE_MASK) >>
1408 EMAC_MACSTATUS_TXERRCODE_SHIFT);
1409 if (cause) {
1410 ch = ((status & EMAC_MACSTATUS_TXERRCH_MASK) >>
1411 EMAC_MACSTATUS_TXERRCH_SHIFT);
1412 if (net_ratelimit()) {
1413 dev_err(emac_dev, "TX Host error %s on ch=%d\n",
1414 &emac_txhost_errcodes[cause][0], ch);
1415 }
1416 }
1417 cause = ((status & EMAC_MACSTATUS_RXERRCODE_MASK) >>
1418 EMAC_MACSTATUS_RXERRCODE_SHIFT);
1419 if (cause) {
1420 ch = ((status & EMAC_MACSTATUS_RXERRCH_MASK) >>
1421 EMAC_MACSTATUS_RXERRCH_SHIFT);
1422 if (netif_msg_hw(priv) && net_ratelimit())
1423 dev_err(emac_dev, "RX Host error %s on ch=%d\n",
1424 &emac_rxhost_errcodes[cause][0], ch);
1425 }
3725b1fe
S
1426 } else if (num_rx_pkts < budget) {
1427 napi_complete(napi);
1428 emac_int_enable(priv);
1429 }
a6286ee6 1430
3725b1fe 1431 return num_rx_pkts;
a6286ee6
AG
1432}
1433
1434#ifdef CONFIG_NET_POLL_CONTROLLER
1435/**
49ce9c2c 1436 * emac_poll_controller - EMAC Poll controller function
a6286ee6
AG
1437 * @ndev: The DaVinci EMAC network adapter
1438 *
1439 * Polled functionality used by netconsole and others in non interrupt mode
1440 *
1441 */
e052a589 1442static void emac_poll_controller(struct net_device *ndev)
a6286ee6
AG
1443{
1444 struct emac_priv *priv = netdev_priv(ndev);
1445
1446 emac_int_disable(priv);
c8ee5538 1447 emac_irq(ndev->irq, ndev);
a6286ee6
AG
1448 emac_int_enable(priv);
1449}
1450#endif
1451
a6286ee6
AG
1452static void emac_adjust_link(struct net_device *ndev)
1453{
1454 struct emac_priv *priv = netdev_priv(ndev);
1455 struct phy_device *phydev = priv->phydev;
1456 unsigned long flags;
1457 int new_state = 0;
1458
1459 spin_lock_irqsave(&priv->lock, flags);
1460
1461 if (phydev->link) {
1462 /* check the mode of operation - full/half duplex */
1463 if (phydev->duplex != priv->duplex) {
1464 new_state = 1;
1465 priv->duplex = phydev->duplex;
1466 }
1467 if (phydev->speed != priv->speed) {
1468 new_state = 1;
1469 priv->speed = phydev->speed;
1470 }
1471 if (!priv->link) {
1472 new_state = 1;
1473 priv->link = 1;
1474 }
1475
1476 } else if (priv->link) {
1477 new_state = 1;
1478 priv->link = 0;
1479 priv->speed = 0;
1480 priv->duplex = ~0;
1481 }
1482 if (new_state) {
1483 emac_update_phystatus(priv);
1484 phy_print_status(priv->phydev);
1485 }
1486
1487 spin_unlock_irqrestore(&priv->lock, flags);
1488}
1489
1490/*************************************************************************
1491 * Linux Driver Model
1492 *************************************************************************/
1493
1494/**
49ce9c2c 1495 * emac_devioctl - EMAC adapter ioctl
a6286ee6
AG
1496 * @ndev: The DaVinci EMAC network adapter
1497 * @ifrq: request parameter
1498 * @cmd: command parameter
1499 *
1500 * EMAC driver ioctl function
1501 *
1502 * Returns success(0) or appropriate error code
1503 */
1504static int emac_devioctl(struct net_device *ndev, struct ifreq *ifrq, int cmd)
1505{
fb290cdd 1506 struct emac_priv *priv = netdev_priv(ndev);
a6286ee6
AG
1507
1508 if (!(netif_running(ndev)))
1509 return -EINVAL;
1510
1511 /* TODO: Add phy read and write and private statistics get feature */
1512
fb290cdd 1513 return phy_mii_ioctl(priv->phydev, ifrq, cmd);
a6286ee6
AG
1514}
1515
5d69e007
CC
1516static int match_first_device(struct device *dev, void *data)
1517{
1ab8be4a 1518 return !strncmp(dev_name(dev), "davinci_mdio", 12);
5d69e007
CC
1519}
1520
a6286ee6 1521/**
49ce9c2c 1522 * emac_dev_open - EMAC device open
a6286ee6
AG
1523 * @ndev: The DaVinci EMAC network adapter
1524 *
1525 * Called when system wants to start the interface. We init TX/RX channels
1526 * and enable the hardware for packet reception/transmission and start the
1527 * network queue.
1528 *
1529 * Returns 0 for a successful open, or appropriate error code
1530 */
1531static int emac_dev_open(struct net_device *ndev)
1532{
1533 struct device *emac_dev = &ndev->dev;
3ef0fdb2 1534 u32 cnt;
a6286ee6 1535 struct resource *res;
33b7107f 1536 int q, m, ret;
cd11cf50 1537 int res_num = 0, irq_num = 0;
a6286ee6 1538 int i = 0;
a6286ee6
AG
1539 struct emac_priv *priv = netdev_priv(ndev);
1540
3ba97381
MG
1541 pm_runtime_get(&priv->pdev->dev);
1542
a6286ee6 1543 netif_carrier_off(ndev);
4d27b877 1544 for (cnt = 0; cnt < ETH_ALEN; cnt++)
a6286ee6
AG
1545 ndev->dev_addr[cnt] = priv->mac_addr[cnt];
1546
1547 /* Configuration items */
1548 priv->rx_buf_size = EMAC_DEF_MAX_FRAME_SIZE + NET_IP_ALIGN;
1549
a6286ee6
AG
1550 priv->mac_hash1 = 0;
1551 priv->mac_hash2 = 0;
1552 emac_write(EMAC_MACHASH1, 0);
1553 emac_write(EMAC_MACHASH2, 0);
1554
3ef0fdb2
CC
1555 for (i = 0; i < EMAC_DEF_RX_NUM_DESC; i++) {
1556 struct sk_buff *skb = emac_rx_alloc(priv);
1557
1558 if (!skb)
1559 break;
1560
1561 ret = cpdma_chan_submit(priv->rxchan, skb, skb->data,
aef614e1 1562 skb_tailroom(skb), 0);
3ef0fdb2
CC
1563 if (WARN_ON(ret < 0))
1564 break;
a6286ee6
AG
1565 }
1566
1567 /* Request IRQ */
cd11cf50
CR
1568 while ((res = platform_get_resource(priv->pdev, IORESOURCE_IRQ,
1569 res_num))) {
1570 for (irq_num = res->start; irq_num <= res->end; irq_num++) {
cd11cf50
CR
1571 if (request_irq(irq_num, emac_irq, 0, ndev->name,
1572 ndev)) {
1573 dev_err(emac_dev,
1574 "DaVinci EMAC: request_irq() failed\n");
1575 ret = -EBUSY;
a6286ee6 1576
a6286ee6 1577 goto rollback;
cd11cf50 1578 }
a6286ee6 1579 }
cd11cf50 1580 res_num++;
a6286ee6 1581 }
cd11cf50
CR
1582 /* prepare counters for rollback in case of an error */
1583 res_num--;
1584 irq_num--;
a6286ee6
AG
1585
1586 /* Start/Enable EMAC hardware */
1587 emac_hw_enable(priv);
1588
84da2658
S
1589 /* Enable Interrupt pacing if configured */
1590 if (priv->coal_intvl != 0) {
1591 struct ethtool_coalesce coal;
1592
1593 coal.rx_coalesce_usecs = (priv->coal_intvl << 4);
1594 emac_set_coalesce(ndev, &coal);
1595 }
1596
3ef0fdb2
CC
1597 cpdma_ctlr_start(priv->dma);
1598
a6286ee6 1599 priv->phydev = NULL;
5d69e007
CC
1600 /* use the first phy on the bus if pdata did not give us a phy id */
1601 if (!priv->phy_id) {
1602 struct device *phy;
a6286ee6 1603
5d69e007
CC
1604 phy = bus_find_device(&mdio_bus_type, NULL, NULL,
1605 match_first_device);
1606 if (phy)
1607 priv->phy_id = dev_name(phy);
1608 }
a6286ee6 1609
5d69e007
CC
1610 if (priv->phy_id && *priv->phy_id) {
1611 priv->phydev = phy_connect(ndev, priv->phy_id,
f9a8f83b 1612 &emac_adjust_link,
5d69e007 1613 PHY_INTERFACE_MODE_MII);
a6286ee6
AG
1614
1615 if (IS_ERR(priv->phydev)) {
5d69e007
CC
1616 dev_err(emac_dev, "could not connect to phy %s\n",
1617 priv->phy_id);
cb0a178c 1618 ret = PTR_ERR(priv->phydev);
5d69e007 1619 priv->phydev = NULL;
3ba97381 1620 goto err;
a6286ee6
AG
1621 }
1622
1623 priv->link = 0;
1624 priv->speed = 0;
1625 priv->duplex = ~0;
1626
5d69e007
CC
1627 dev_info(emac_dev, "attached PHY driver [%s] "
1628 "(mii_bus:phy_addr=%s, id=%x)\n",
a6286ee6
AG
1629 priv->phydev->drv->name, dev_name(&priv->phydev->dev),
1630 priv->phydev->phy_id);
5d69e007 1631 } else {
a6286ee6 1632 /* No PHY , fix the link, speed and duplex settings */
5d69e007 1633 dev_notice(emac_dev, "no phy, defaulting to 100/full\n");
a6286ee6
AG
1634 priv->link = 1;
1635 priv->speed = SPEED_100;
1636 priv->duplex = DUPLEX_FULL;
1637 emac_update_phystatus(priv);
1638 }
1639
1640 if (!netif_running(ndev)) /* debug only - to avoid compiler warning */
1641 emac_dump_regs(priv);
1642
1643 if (netif_msg_drv(priv))
1644 dev_notice(emac_dev, "DaVinci EMAC: Opened %s\n", ndev->name);
1645
5d69e007 1646 if (priv->phydev)
a6286ee6
AG
1647 phy_start(priv->phydev);
1648
1649 return 0;
1650
cd11cf50
CR
1651err:
1652 emac_int_disable(priv);
1653 napi_disable(&priv->napi);
33b7107f 1654
cd11cf50
CR
1655rollback:
1656 for (q = res_num; q >= 0; q--) {
1657 res = platform_get_resource(priv->pdev, IORESOURCE_IRQ, q);
1658 /* at the first iteration, irq_num is already set to the
1659 * right value
1660 */
1661 if (q != res_num)
1662 irq_num = res->end;
1663
1664 for (m = irq_num; m >= res->start; m--)
33b7107f 1665 free_irq(m, ndev);
33b7107f 1666 }
cd11cf50 1667 cpdma_ctlr_stop(priv->dma);
3ba97381
MG
1668 pm_runtime_put(&priv->pdev->dev);
1669 return ret;
a6286ee6
AG
1670}
1671
1672/**
49ce9c2c 1673 * emac_dev_stop - EMAC device stop
a6286ee6
AG
1674 * @ndev: The DaVinci EMAC network adapter
1675 *
1676 * Called when system wants to stop or down the interface. We stop the network
1677 * queue, disable interrupts and cleanup TX/RX channels.
1678 *
1679 * We return the statistics in net_device_stats structure pulled from emac
1680 */
1681static int emac_dev_stop(struct net_device *ndev)
1682{
33b7107f
CR
1683 struct resource *res;
1684 int i = 0;
1685 int irq_num;
a6286ee6
AG
1686 struct emac_priv *priv = netdev_priv(ndev);
1687 struct device *emac_dev = &ndev->dev;
1688
1689 /* inform the upper layers. */
1690 netif_stop_queue(ndev);
1691 napi_disable(&priv->napi);
1692
1693 netif_carrier_off(ndev);
1694 emac_int_disable(priv);
3ef0fdb2 1695 cpdma_ctlr_stop(priv->dma);
a6286ee6
AG
1696 emac_write(EMAC_SOFTRESET, 1);
1697
1698 if (priv->phydev)
1699 phy_disconnect(priv->phydev);
1700
33b7107f
CR
1701 /* Free IRQ */
1702 while ((res = platform_get_resource(priv->pdev, IORESOURCE_IRQ, i))) {
1703 for (irq_num = res->start; irq_num <= res->end; irq_num++)
1704 free_irq(irq_num, priv->ndev);
1705 i++;
1706 }
1707
a6286ee6
AG
1708 if (netif_msg_drv(priv))
1709 dev_notice(emac_dev, "DaVinci EMAC: %s stopped\n", ndev->name);
1710
3ba97381 1711 pm_runtime_put(&priv->pdev->dev);
a6286ee6
AG
1712 return 0;
1713}
1714
1715/**
49ce9c2c 1716 * emac_dev_getnetstats - EMAC get statistics function
a6286ee6
AG
1717 * @ndev: The DaVinci EMAC network adapter
1718 *
1719 * Called when system wants to get statistics from the device.
1720 *
1721 * We return the statistics in net_device_stats structure pulled from emac
1722 */
1723static struct net_device_stats *emac_dev_getnetstats(struct net_device *ndev)
1724{
1725 struct emac_priv *priv = netdev_priv(ndev);
0fe7463a
S
1726 u32 mac_control;
1727 u32 stats_clear_mask;
a6286ee6
AG
1728
1729 /* update emac hardware stats and reset the registers*/
1730
0fe7463a
S
1731 mac_control = emac_read(EMAC_MACCONTROL);
1732
1733 if (mac_control & EMAC_MACCONTROL_GMIIEN)
1734 stats_clear_mask = EMAC_STATS_CLR_MASK;
1735 else
1736 stats_clear_mask = 0;
1737
78e8c532 1738 ndev->stats.multicast += emac_read(EMAC_RXMCASTFRAMES);
0fe7463a 1739 emac_write(EMAC_RXMCASTFRAMES, stats_clear_mask);
a6286ee6 1740
78e8c532 1741 ndev->stats.collisions += (emac_read(EMAC_TXCOLLISION) +
a6286ee6
AG
1742 emac_read(EMAC_TXSINGLECOLL) +
1743 emac_read(EMAC_TXMULTICOLL));
0fe7463a
S
1744 emac_write(EMAC_TXCOLLISION, stats_clear_mask);
1745 emac_write(EMAC_TXSINGLECOLL, stats_clear_mask);
1746 emac_write(EMAC_TXMULTICOLL, stats_clear_mask);
a6286ee6 1747
78e8c532 1748 ndev->stats.rx_length_errors += (emac_read(EMAC_RXOVERSIZED) +
a6286ee6
AG
1749 emac_read(EMAC_RXJABBER) +
1750 emac_read(EMAC_RXUNDERSIZED));
0fe7463a
S
1751 emac_write(EMAC_RXOVERSIZED, stats_clear_mask);
1752 emac_write(EMAC_RXJABBER, stats_clear_mask);
1753 emac_write(EMAC_RXUNDERSIZED, stats_clear_mask);
a6286ee6 1754
78e8c532 1755 ndev->stats.rx_over_errors += (emac_read(EMAC_RXSOFOVERRUNS) +
a6286ee6 1756 emac_read(EMAC_RXMOFOVERRUNS));
0fe7463a
S
1757 emac_write(EMAC_RXSOFOVERRUNS, stats_clear_mask);
1758 emac_write(EMAC_RXMOFOVERRUNS, stats_clear_mask);
a6286ee6 1759
78e8c532 1760 ndev->stats.rx_fifo_errors += emac_read(EMAC_RXDMAOVERRUNS);
0fe7463a 1761 emac_write(EMAC_RXDMAOVERRUNS, stats_clear_mask);
a6286ee6 1762
78e8c532 1763 ndev->stats.tx_carrier_errors +=
a6286ee6 1764 emac_read(EMAC_TXCARRIERSENSE);
0fe7463a 1765 emac_write(EMAC_TXCARRIERSENSE, stats_clear_mask);
a6286ee6 1766
60aeba23 1767 ndev->stats.tx_fifo_errors += emac_read(EMAC_TXUNDERRUN);
0fe7463a 1768 emac_write(EMAC_TXUNDERRUN, stats_clear_mask);
a6286ee6 1769
78e8c532 1770 return &ndev->stats;
a6286ee6
AG
1771}
1772
1773static const struct net_device_ops emac_netdev_ops = {
1774 .ndo_open = emac_dev_open,
1775 .ndo_stop = emac_dev_stop,
1776 .ndo_start_xmit = emac_dev_xmit,
afc4b13d 1777 .ndo_set_rx_mode = emac_dev_mcast_set,
a6286ee6
AG
1778 .ndo_set_mac_address = emac_dev_setmac_addr,
1779 .ndo_do_ioctl = emac_devioctl,
1780 .ndo_tx_timeout = emac_dev_tx_timeout,
1781 .ndo_get_stats = emac_dev_getnetstats,
1782#ifdef CONFIG_NET_POLL_CONTROLLER
1783 .ndo_poll_controller = emac_poll_controller,
1784#endif
1785};
1786
dd0df47d
TL
1787static const struct of_device_id davinci_emac_of_match[];
1788
151328c8
LP
1789static struct emac_platform_data *
1790davinci_emac_of_get_pdata(struct platform_device *pdev, struct emac_priv *priv)
42f59967
HS
1791{
1792 struct device_node *np;
dd0df47d
TL
1793 const struct of_device_id *match;
1794 const struct emac_platform_data *auxdata;
42f59967
HS
1795 struct emac_platform_data *pdata = NULL;
1796 const u8 *mac_addr;
42f59967 1797
151328c8 1798 if (!IS_ENABLED(CONFIG_OF) || !pdev->dev.of_node)
20e6f33b 1799 return dev_get_platdata(&pdev->dev);
151328c8
LP
1800
1801 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
1802 if (!pdata)
1803 return NULL;
42f59967
HS
1804
1805 np = pdev->dev.of_node;
151328c8 1806 pdata->version = EMAC_VERSION_2;
42f59967
HS
1807
1808 if (!is_valid_ether_addr(pdata->mac_addr)) {
1809 mac_addr = of_get_mac_address(np);
1810 if (mac_addr)
1811 memcpy(pdata->mac_addr, mac_addr, ETH_ALEN);
1812 }
1813
151328c8
LP
1814 of_property_read_u32(np, "ti,davinci-ctrl-reg-offset",
1815 &pdata->ctrl_reg_offset);
42f59967 1816
151328c8
LP
1817 of_property_read_u32(np, "ti,davinci-ctrl-mod-reg-offset",
1818 &pdata->ctrl_mod_reg_offset);
42f59967 1819
151328c8
LP
1820 of_property_read_u32(np, "ti,davinci-ctrl-ram-offset",
1821 &pdata->ctrl_ram_offset);
42f59967 1822
151328c8
LP
1823 of_property_read_u32(np, "ti,davinci-ctrl-ram-size",
1824 &pdata->ctrl_ram_size);
42f59967 1825
151328c8 1826 of_property_read_u8(np, "ti,davinci-rmii-en", &pdata->rmii_en);
42f59967 1827
151328c8 1828 pdata->no_bd_ram = of_property_read_bool(np, "ti,davinci-no-bd-ram");
42f59967
HS
1829
1830 priv->phy_node = of_parse_phandle(np, "phy-handle", 0);
1831 if (!priv->phy_node)
dd0df47d
TL
1832 pdata->phy_id = NULL;
1833
1834 auxdata = pdev->dev.platform_data;
1835 if (auxdata) {
1836 pdata->interrupt_enable = auxdata->interrupt_enable;
1837 pdata->interrupt_disable = auxdata->interrupt_disable;
1838 }
1839
1840 match = of_match_device(davinci_emac_of_match, &pdev->dev);
1841 if (match && match->data) {
1842 auxdata = match->data;
1843 pdata->version = auxdata->version;
1844 pdata->hw_ram_addr = auxdata->hw_ram_addr;
1845 }
42f59967
HS
1846
1847 pdev->dev.platform_data = pdata;
151328c8 1848
42f59967
HS
1849 return pdata;
1850}
151328c8 1851
a6286ee6 1852/**
49ce9c2c 1853 * davinci_emac_probe - EMAC device probe
a6286ee6
AG
1854 * @pdev: The DaVinci EMAC device that we are removing
1855 *
1856 * Called when probing for emac devicesr. We get details of instances and
1857 * resource information from platform init and register a network device
1858 * and allocate resources necessary for driver to perform
1859 */
e38921d4 1860static int davinci_emac_probe(struct platform_device *pdev)
a6286ee6
AG
1861{
1862 int rc = 0;
1863 struct resource *res;
1864 struct net_device *ndev;
1865 struct emac_priv *priv;
6892b41d 1866 unsigned long hw_ram_addr;
a6286ee6 1867 struct emac_platform_data *pdata;
3ef0fdb2 1868 struct cpdma_params dma_params;
3ba97381
MG
1869 struct clk *emac_clk;
1870 unsigned long emac_bus_frequency;
1871
a6286ee6
AG
1872
1873 /* obtain emac clock from kernel */
b8092861 1874 emac_clk = devm_clk_get(&pdev->dev, NULL);
a6286ee6 1875 if (IS_ERR(emac_clk)) {
240b2628 1876 dev_err(&pdev->dev, "failed to get EMAC clock\n");
a6286ee6
AG
1877 return -EBUSY;
1878 }
1879 emac_bus_frequency = clk_get_rate(emac_clk);
3ba97381 1880
a6286ee6
AG
1881 /* TODO: Probe PHY here if possible */
1882
1883 ndev = alloc_etherdev(sizeof(struct emac_priv));
b8092861
SN
1884 if (!ndev)
1885 return -ENOMEM;
a6286ee6
AG
1886
1887 platform_set_drvdata(pdev, ndev);
1888 priv = netdev_priv(ndev);
1889 priv->pdev = pdev;
1890 priv->ndev = ndev;
1891 priv->msg_enable = netif_msg_init(debug_level, DAVINCI_EMAC_DEBUG);
1892
a6286ee6
AG
1893 spin_lock_init(&priv->lock);
1894
42f59967 1895 pdata = davinci_emac_of_get_pdata(pdev, priv);
a6286ee6 1896 if (!pdata) {
240b2628 1897 dev_err(&pdev->dev, "no platform data\n");
b722dbf1 1898 rc = -ENODEV;
b8092861 1899 goto no_pdata;
a6286ee6
AG
1900 }
1901
1902 /* MAC addr and PHY mask , RMII enable info from platform_data */
d458cdf7 1903 memcpy(priv->mac_addr, pdata->mac_addr, ETH_ALEN);
5d69e007 1904 priv->phy_id = pdata->phy_id;
a6286ee6
AG
1905 priv->rmii_en = pdata->rmii_en;
1906 priv->version = pdata->version;
01a9af36
S
1907 priv->int_enable = pdata->interrupt_enable;
1908 priv->int_disable = pdata->interrupt_disable;
1909
84da2658
S
1910 priv->coal_intvl = 0;
1911 priv->bus_freq_mhz = (u32)(emac_bus_frequency / 1000000);
1912
a6286ee6
AG
1913 /* Get EMAC platform data */
1914 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
a6286ee6 1915 priv->emac_base_phys = res->start + pdata->ctrl_reg_offset;
6892b41d
LP
1916 priv->remap_addr = devm_ioremap_resource(&pdev->dev, res);
1917 if (IS_ERR(priv->remap_addr)) {
6892b41d 1918 rc = PTR_ERR(priv->remap_addr);
b8092861 1919 goto no_pdata;
a6286ee6
AG
1920 }
1921 priv->emac_base = priv->remap_addr + pdata->ctrl_reg_offset;
1922 ndev->base_addr = (unsigned long)priv->remap_addr;
1923
1924 priv->ctrl_base = priv->remap_addr + pdata->ctrl_mod_reg_offset;
a6286ee6 1925
3ef0fdb2
CC
1926 hw_ram_addr = pdata->hw_ram_addr;
1927 if (!hw_ram_addr)
1928 hw_ram_addr = (u32 __force)res->start + pdata->ctrl_ram_offset;
1929
1930 memset(&dma_params, 0, sizeof(dma_params));
68bc74fe 1931 dma_params.dev = &pdev->dev;
3ef0fdb2
CC
1932 dma_params.dmaregs = priv->emac_base;
1933 dma_params.rxthresh = priv->emac_base + 0x120;
1934 dma_params.rxfree = priv->emac_base + 0x140;
1935 dma_params.txhdp = priv->emac_base + 0x600;
1936 dma_params.rxhdp = priv->emac_base + 0x620;
1937 dma_params.txcp = priv->emac_base + 0x640;
1938 dma_params.rxcp = priv->emac_base + 0x660;
1939 dma_params.num_chan = EMAC_MAX_TXRX_CHANNELS;
1940 dma_params.min_packet_size = EMAC_DEF_MIN_ETHPKTSIZE;
6a1fef6d 1941 dma_params.desc_hw_addr = hw_ram_addr;
3ef0fdb2
CC
1942 dma_params.desc_mem_size = pdata->ctrl_ram_size;
1943 dma_params.desc_align = 16;
1944
6a1fef6d
S
1945 dma_params.desc_mem_phys = pdata->no_bd_ram ? 0 :
1946 (u32 __force)res->start + pdata->ctrl_ram_offset;
1947
3ef0fdb2
CC
1948 priv->dma = cpdma_ctlr_create(&dma_params);
1949 if (!priv->dma) {
240b2628 1950 dev_err(&pdev->dev, "error initializing DMA\n");
3ef0fdb2 1951 rc = -ENOMEM;
b8092861 1952 goto no_pdata;
3ef0fdb2
CC
1953 }
1954
1955 priv->txchan = cpdma_chan_create(priv->dma, tx_chan_num(EMAC_DEF_TX_CH),
1956 emac_tx_handler);
1957 priv->rxchan = cpdma_chan_create(priv->dma, rx_chan_num(EMAC_DEF_RX_CH),
1958 emac_rx_handler);
1959 if (WARN_ON(!priv->txchan || !priv->rxchan)) {
1960 rc = -ENOMEM;
b8092861 1961 goto no_cpdma_chan;
3ef0fdb2 1962 }
ad021ae8 1963
a6286ee6
AG
1964 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1965 if (!res) {
240b2628 1966 dev_err(&pdev->dev, "error getting irq res\n");
a6286ee6 1967 rc = -ENOENT;
b8092861 1968 goto no_cpdma_chan;
a6286ee6
AG
1969 }
1970 ndev->irq = res->start;
1971
1972 if (!is_valid_ether_addr(priv->mac_addr)) {
a6286ee6 1973 /* Use random MAC if none passed */
baf1d378
DK
1974 eth_hw_addr_random(ndev);
1975 memcpy(priv->mac_addr, ndev->dev_addr, ndev->addr_len);
240b2628
JH
1976 dev_warn(&pdev->dev, "using random MAC addr: %pM\n",
1977 priv->mac_addr);
a6286ee6
AG
1978 }
1979
1980 ndev->netdev_ops = &emac_netdev_ops;
7ad24ea4 1981 ndev->ethtool_ops = &ethtool_ops;
a6286ee6
AG
1982 netif_napi_add(ndev, &priv->napi, emac_poll, EMAC_POLL_WEIGHT);
1983
1984 /* register the network device */
1985 SET_NETDEV_DEV(ndev, &pdev->dev);
1986 rc = register_netdev(ndev);
1987 if (rc) {
240b2628 1988 dev_err(&pdev->dev, "error in register_netdev\n");
a6286ee6 1989 rc = -ENODEV;
b8092861 1990 goto no_cpdma_chan;
a6286ee6
AG
1991 }
1992
a6286ee6 1993
a6286ee6 1994 if (netif_msg_probe(priv)) {
68bc74fe 1995 dev_notice(&pdev->dev, "DaVinci EMAC Probe found device "
a6286ee6
AG
1996 "(regs: %p, irq: %d)\n",
1997 (void *)priv->emac_base_phys, ndev->irq);
1998 }
3ba97381
MG
1999
2000 pm_runtime_enable(&pdev->dev);
2001 pm_runtime_resume(&pdev->dev);
2002
a6286ee6
AG
2003 return 0;
2004
b8092861 2005no_cpdma_chan:
3ef0fdb2
CC
2006 if (priv->txchan)
2007 cpdma_chan_destroy(priv->txchan);
2008 if (priv->rxchan)
2009 cpdma_chan_destroy(priv->rxchan);
2010 cpdma_ctlr_destroy(priv->dma);
b8092861 2011no_pdata:
a6286ee6
AG
2012 free_netdev(ndev);
2013 return rc;
2014}
2015
2016/**
49ce9c2c 2017 * davinci_emac_remove - EMAC device remove
a6286ee6
AG
2018 * @pdev: The DaVinci EMAC device that we are removing
2019 *
2020 * Called when removing the device driver. We disable clock usage and release
2021 * the resources taken up by the driver and unregister network device
2022 */
e38921d4 2023static int davinci_emac_remove(struct platform_device *pdev)
a6286ee6 2024{
a6286ee6
AG
2025 struct net_device *ndev = platform_get_drvdata(pdev);
2026 struct emac_priv *priv = netdev_priv(ndev);
2027
2028 dev_notice(&ndev->dev, "DaVinci EMAC: davinci_emac_remove()\n");
2029
3ef0fdb2
CC
2030 if (priv->txchan)
2031 cpdma_chan_destroy(priv->txchan);
2032 if (priv->rxchan)
2033 cpdma_chan_destroy(priv->rxchan);
2034 cpdma_ctlr_destroy(priv->dma);
2035
a6286ee6 2036 unregister_netdev(ndev);
2a1bc0d5 2037 free_netdev(ndev);
a6286ee6 2038
a6286ee6
AG
2039 return 0;
2040}
2041
d4fdcd92 2042static int davinci_emac_suspend(struct device *dev)
8d044fe6 2043{
d4fdcd92 2044 struct platform_device *pdev = to_platform_device(dev);
2045 struct net_device *ndev = platform_get_drvdata(pdev);
8d044fe6 2046
d4fdcd92 2047 if (netif_running(ndev))
2048 emac_dev_stop(ndev);
8d044fe6 2049
8d044fe6
RL
2050 return 0;
2051}
2052
d4fdcd92 2053static int davinci_emac_resume(struct device *dev)
8d044fe6 2054{
d4fdcd92 2055 struct platform_device *pdev = to_platform_device(dev);
2056 struct net_device *ndev = platform_get_drvdata(pdev);
8d044fe6 2057
d4fdcd92 2058 if (netif_running(ndev))
2059 emac_dev_open(ndev);
8d044fe6
RL
2060
2061 return 0;
2062}
2063
d4fdcd92 2064static const struct dev_pm_ops davinci_emac_pm_ops = {
2065 .suspend = davinci_emac_suspend,
2066 .resume = davinci_emac_resume,
2067};
2068
151328c8 2069#if IS_ENABLED(CONFIG_OF)
dd0df47d
TL
2070static const struct emac_platform_data am3517_emac_data = {
2071 .version = EMAC_VERSION_2,
2072 .hw_ram_addr = 0x01e20000,
2073};
2074
42f59967
HS
2075static const struct of_device_id davinci_emac_of_match[] = {
2076 {.compatible = "ti,davinci-dm6467-emac", },
dd0df47d 2077 {.compatible = "ti,am3517-emac", .data = &am3517_emac_data, },
42f59967
HS
2078 {},
2079};
2080MODULE_DEVICE_TABLE(of, davinci_emac_of_match);
151328c8 2081#endif
42f59967 2082
1aa8b471 2083/* davinci_emac_driver: EMAC platform driver structure */
a6286ee6
AG
2084static struct platform_driver davinci_emac_driver = {
2085 .driver = {
2086 .name = "davinci_emac",
d4fdcd92 2087 .pm = &davinci_emac_pm_ops,
42f59967 2088 .of_match_table = of_match_ptr(davinci_emac_of_match),
a6286ee6
AG
2089 },
2090 .probe = davinci_emac_probe,
e38921d4 2091 .remove = davinci_emac_remove,
a6286ee6
AG
2092};
2093
2094/**
49ce9c2c 2095 * davinci_emac_init - EMAC driver module init
a6286ee6
AG
2096 *
2097 * Called when initializing the driver. We register the driver with
2098 * the platform.
2099 */
2100static int __init davinci_emac_init(void)
2101{
2102 return platform_driver_register(&davinci_emac_driver);
2103}
2db9517e 2104late_initcall(davinci_emac_init);
a6286ee6
AG
2105
2106/**
49ce9c2c 2107 * davinci_emac_exit - EMAC driver module exit
a6286ee6
AG
2108 *
2109 * Called when exiting the driver completely. We unregister the driver with
2110 * the platform and exit
2111 */
2112static void __exit davinci_emac_exit(void)
2113{
2114 platform_driver_unregister(&davinci_emac_driver);
2115}
2116module_exit(davinci_emac_exit);
2117
2118MODULE_LICENSE("GPL");
2119MODULE_AUTHOR("DaVinci EMAC Maintainer: Anant Gole <anantgole@ti.com>");
2120MODULE_AUTHOR("DaVinci EMAC Maintainer: Chaithrika U S <chaithrika@ti.com>");
2121MODULE_DESCRIPTION("DaVinci EMAC Ethernet driver");
This page took 1.035513 seconds and 5 git commands to generate.