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