blob: 6621ae3a98d9007b211a90c599357a6a3ddaf70a [file] [log] [blame]
Anant Golea6286ee2009-05-18 15:19:01 -07001/*
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
Anant Golea6286ee2009-05-18 15:19:01 -070032#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>
Anant Golea6286ee2009-05-18 15:19:01 -070051#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>
Mark A. Greer3ba97382012-07-20 15:19:22 +000060#include <linux/pm_runtime.h>
Sriramakrishnan8ee2bf92009-11-19 15:58:25 +053061#include <linux/davinci_emac.h>
Heiko Schocher42f59962012-07-17 00:34:24 +000062#include <linux/of.h>
63#include <linux/of_address.h>
64#include <linux/of_irq.h>
65#include <linux/of_net.h>
66
Anant Golea6286ee2009-05-18 15:19:01 -070067#include <asm/irq.h>
68#include <asm/page.h>
69
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -040070#include "davinci_cpdma.h"
71
Anant Golea6286ee2009-05-18 15:19:01 -070072static int debug_level;
73module_param(debug_level, int, 0);
74MODULE_PARM_DESC(debug_level, "DaVinci EMAC debug level (NETIF_MSG bits)");
75
76/* Netif debug messages possible */
77#define DAVINCI_EMAC_DEBUG (NETIF_MSG_DRV | \
78 NETIF_MSG_PROBE | \
79 NETIF_MSG_LINK | \
80 NETIF_MSG_TIMER | \
81 NETIF_MSG_IFDOWN | \
82 NETIF_MSG_IFUP | \
83 NETIF_MSG_RX_ERR | \
84 NETIF_MSG_TX_ERR | \
85 NETIF_MSG_TX_QUEUED | \
86 NETIF_MSG_INTR | \
87 NETIF_MSG_TX_DONE | \
88 NETIF_MSG_RX_STATUS | \
89 NETIF_MSG_PKTDATA | \
90 NETIF_MSG_HW | \
91 NETIF_MSG_WOL)
92
93/* version info */
94#define EMAC_MAJOR_VERSION 6
95#define EMAC_MINOR_VERSION 1
96#define EMAC_MODULE_VERSION "6.1"
97MODULE_VERSION(EMAC_MODULE_VERSION);
98static const char emac_version_string[] = "TI DaVinci EMAC Linux v6.1";
99
100/* Configuration items */
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300101#define EMAC_DEF_PASS_CRC (0) /* Do not pass CRC up to frames */
Anant Golea6286ee2009-05-18 15:19:01 -0700102#define EMAC_DEF_QOS_EN (0) /* EMAC proprietary QoS disabled */
103#define EMAC_DEF_NO_BUFF_CHAIN (0) /* No buffer chain */
104#define EMAC_DEF_MACCTRL_FRAME_EN (0) /* Discard Maccontrol frames */
105#define EMAC_DEF_SHORT_FRAME_EN (0) /* Discard short frames */
106#define EMAC_DEF_ERROR_FRAME_EN (0) /* Discard error frames */
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300107#define EMAC_DEF_PROM_EN (0) /* Promiscuous disabled */
108#define EMAC_DEF_PROM_CH (0) /* Promiscuous channel is 0 */
Anant Golea6286ee2009-05-18 15:19:01 -0700109#define EMAC_DEF_BCAST_EN (1) /* Broadcast enabled */
110#define EMAC_DEF_BCAST_CH (0) /* Broadcast channel is 0 */
111#define EMAC_DEF_MCAST_EN (1) /* Multicast enabled */
112#define EMAC_DEF_MCAST_CH (0) /* Multicast channel is 0 */
113
114#define EMAC_DEF_TXPRIO_FIXED (1) /* TX Priority is fixed */
115#define EMAC_DEF_TXPACING_EN (0) /* TX pacing NOT supported*/
116
117#define EMAC_DEF_BUFFER_OFFSET (0) /* Buffer offset to DMA (future) */
118#define EMAC_DEF_MIN_ETHPKTSIZE (60) /* Minimum ethernet pkt size */
119#define EMAC_DEF_MAX_FRAME_SIZE (1500 + 14 + 4 + 4)
120#define EMAC_DEF_TX_CH (0) /* Default 0th channel */
121#define EMAC_DEF_RX_CH (0) /* Default 0th channel */
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -0400122#define EMAC_DEF_RX_NUM_DESC (128)
Sascha Hauer86d8c072012-01-03 05:27:47 +0000123#define EMAC_DEF_TX_NUM_DESC (128)
Anant Golea6286ee2009-05-18 15:19:01 -0700124#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)
Anant Golea6286ee2009-05-18 15:19:01 -0700135#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 */
chaithrika@ti.com69ef9692009-10-01 10:25:19 +0000168#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)
Anant Golea6286ee2009-05-18 15:19:01 -0700173#define EMAC_MACCONTROL_RMIISPEED_MASK BIT(15)
174
175/* GIGABIT MODE related bits */
Anant Golea6286ee2009-05-18 15:19:01 -0700176#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 */
chaithrika@ti.com69ef9692009-10-01 10:25:19 +0000194#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)
Anant Golea6286ee2009-05-18 15:19:01 -0700198
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)
Sriram43c2ed82009-09-24 19:15:18 +0000202#define EMAC_DM646X_MAC_IN_VECTOR_HOST_INT BIT(26)
203#define EMAC_DM646X_MAC_IN_VECTOR_STATPEND_INT BIT(27)
204
Anant Golea6286ee2009-05-18 15:19:01 -0700205/* 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 */
Anant Golea6286ee2009-05-18 15:19:01 -0700221#define EMAC_MACINVECTOR 0x90
222
223#define EMAC_DM646X_MACEOIVECTOR 0x94
224
Anant Golea6286ee2009-05-18 15:19:01 -0700225#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
Anant Golea6286ee2009-05-18 15:19:01 -0700251/* 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
Sriram84da2652010-07-29 02:33:58 +0000287/* 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
Anant Golea6286ee2009-05-18 15:19:01 -0700292/* EMAC DM646X control module registers */
Sriram84da2652010-07-29 02:33:58 +0000293#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
Anant Golea6286ee2009-05-18 15:19:01 -0700307
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
Sriram0fe74632009-10-07 02:44:30 +0000312/* EMAC Stats Clear Mask */
313#define EMAC_STATS_CLR_MASK (0xFFFFFFFF)
314
Anant Golea6286ee2009-05-18 15:19:01 -0700315/* 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];
Anant Golea6286ee2009-05-18 15:19:01 -0700325 void __iomem *remap_addr;
326 u32 emac_base_phys;
327 void __iomem *emac_base;
328 void __iomem *ctrl_base;
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -0400329 struct cpdma_ctlr *dma;
330 struct cpdma_chan *txchan;
331 struct cpdma_chan *rxchan;
Anant Golea6286ee2009-05-18 15:19:01 -0700332 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;
Sriram84da2652010-07-29 02:33:58 +0000337 u32 coal_intvl;
338 u32 bus_freq_mhz;
Anant Golea6286ee2009-05-18 15:19:01 -0700339 u8 rmii_en;
340 u8 version;
Anant Golea6286ee2009-05-18 15:19:01 -0700341 u32 mac_hash1;
342 u32 mac_hash2;
343 u32 multicast_hash_cnt[EMAC_NUM_MULTICAST_BITS];
344 u32 rx_addr_type;
Sascha Hauer86d8c072012-01-03 05:27:47 +0000345 atomic_t cur_tx;
Cyril Chemparathy5d69e002010-09-15 10:11:24 -0400346 const char *phy_id;
Heiko Schocher42f59962012-07-17 00:34:24 +0000347#ifdef CONFIG_OF
348 struct device_node *phy_node;
349#endif
Anant Golea6286ee2009-05-18 15:19:01 -0700350 struct phy_device *phydev;
351 spinlock_t lock;
Sriramakrishnan01a9af32009-11-19 15:58:26 +0530352 /*platform specific members*/
353 void (*int_enable) (void);
354 void (*int_disable) (void);
Anant Golea6286ee2009-05-18 15:19:01 -0700355};
356
Anant Golea6286ee2009-05-18 15:19:01 -0700357/* 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
Anant Golea6286ee2009-05-18 15:19:01 -0700381/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000382 * emac_dump_regs - Dump important EMAC registers to debug terminal
Anant Golea6286ee2009-05-18 15:19:01 -0700383 * @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");
Srirame9947622010-07-29 02:34:00 +0000394 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 }
Anant Golea6286ee2009-05-18 15:19:01 -0700399 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));
Anant Golea6286ee2009-05-18 15:19:01 -0700407 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));
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -0400468
469 cpdma_ctlr_dump(priv->dma);
Anant Golea6286ee2009-05-18 15:19:01 -0700470}
471
Anant Golea6286ee2009-05-18 15:19:01 -0700472/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000473 * emac_get_drvinfo - Get EMAC driver information
Anant Golea6286ee2009-05-18 15:19:01 -0700474 * @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{
Jiri Pirko7826d432013-01-06 00:44:26 +0000483 strlcpy(info->driver, emac_version_string, sizeof(info->driver));
484 strlcpy(info->version, EMAC_MODULE_VERSION, sizeof(info->version));
Anant Golea6286ee2009-05-18 15:19:01 -0700485}
486
487/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000488 * emac_get_settings - Get EMAC settings
Anant Golea6286ee2009-05-18 15:19:01 -0700489 * @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{
498 struct emac_priv *priv = netdev_priv(ndev);
Cyril Chemparathy5d69e002010-09-15 10:11:24 -0400499 if (priv->phydev)
Anant Golea6286ee2009-05-18 15:19:01 -0700500 return phy_ethtool_gset(priv->phydev, ecmd);
501 else
502 return -EOPNOTSUPP;
503
504}
505
506/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000507 * emac_set_settings - Set EMAC settings
Anant Golea6286ee2009-05-18 15:19:01 -0700508 * @ndev: The DaVinci EMAC network adapter
509 * @ecmd: ethtool command
510 *
511 * Executes ethool set command
512 *
513 */
514static int emac_set_settings(struct net_device *ndev, struct ethtool_cmd *ecmd)
515{
516 struct emac_priv *priv = netdev_priv(ndev);
Cyril Chemparathy5d69e002010-09-15 10:11:24 -0400517 if (priv->phydev)
Anant Golea6286ee2009-05-18 15:19:01 -0700518 return phy_ethtool_sset(priv->phydev, ecmd);
519 else
520 return -EOPNOTSUPP;
521
522}
523
524/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000525 * emac_get_coalesce - Get interrupt coalesce settings for this device
Sriram84da2652010-07-29 02:33:58 +0000526 * @ndev : The DaVinci EMAC network adapter
527 * @coal : ethtool coalesce settings structure
528 *
529 * Fetch the current interrupt coalesce settings
530 *
531 */
532static int emac_get_coalesce(struct net_device *ndev,
533 struct ethtool_coalesce *coal)
534{
535 struct emac_priv *priv = netdev_priv(ndev);
536
537 coal->rx_coalesce_usecs = priv->coal_intvl;
538 return 0;
539
540}
541
542/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000543 * emac_set_coalesce - Set interrupt coalesce settings for this device
Sriram84da2652010-07-29 02:33:58 +0000544 * @ndev : The DaVinci EMAC network adapter
545 * @coal : ethtool coalesce settings structure
546 *
547 * Set interrupt coalesce parameters
548 *
549 */
550static int emac_set_coalesce(struct net_device *ndev,
551 struct ethtool_coalesce *coal)
552{
553 struct emac_priv *priv = netdev_priv(ndev);
554 u32 int_ctrl, num_interrupts = 0;
555 u32 prescale = 0, addnl_dvdr = 1, coal_intvl = 0;
556
557 if (!coal->rx_coalesce_usecs)
558 return -EINVAL;
559
560 coal_intvl = coal->rx_coalesce_usecs;
561
562 switch (priv->version) {
563 case EMAC_VERSION_2:
564 int_ctrl = emac_ctrl_read(EMAC_DM646X_CMINTCTRL);
565 prescale = priv->bus_freq_mhz * 4;
566
567 if (coal_intvl < EMAC_DM646X_CMINTMIN_INTVL)
568 coal_intvl = EMAC_DM646X_CMINTMIN_INTVL;
569
570 if (coal_intvl > EMAC_DM646X_CMINTMAX_INTVL) {
571 /*
572 * Interrupt pacer works with 4us Pulse, we can
573 * throttle further by dilating the 4us pulse.
574 */
575 addnl_dvdr = EMAC_DM646X_INTPRESCALE_MASK / prescale;
576
577 if (addnl_dvdr > 1) {
578 prescale *= addnl_dvdr;
579 if (coal_intvl > (EMAC_DM646X_CMINTMAX_INTVL
580 * addnl_dvdr))
581 coal_intvl = (EMAC_DM646X_CMINTMAX_INTVL
582 * addnl_dvdr);
583 } else {
584 addnl_dvdr = 1;
585 coal_intvl = EMAC_DM646X_CMINTMAX_INTVL;
586 }
587 }
588
589 num_interrupts = (1000 * addnl_dvdr) / coal_intvl;
590
591 int_ctrl |= EMAC_DM646X_INTPACEEN;
592 int_ctrl &= (~EMAC_DM646X_INTPRESCALE_MASK);
593 int_ctrl |= (prescale & EMAC_DM646X_INTPRESCALE_MASK);
594 emac_ctrl_write(EMAC_DM646X_CMINTCTRL, int_ctrl);
595
596 emac_ctrl_write(EMAC_DM646X_CMRXINTMAX, num_interrupts);
597 emac_ctrl_write(EMAC_DM646X_CMTXINTMAX, num_interrupts);
598
599 break;
600 default:
601 int_ctrl = emac_ctrl_read(EMAC_CTRL_EWINTTCNT);
602 int_ctrl &= (~EMAC_DM644X_EWINTCNT_MASK);
603 prescale = coal_intvl * priv->bus_freq_mhz;
604 if (prescale > EMAC_DM644X_EWINTCNT_MASK) {
605 prescale = EMAC_DM644X_EWINTCNT_MASK;
606 coal_intvl = prescale / priv->bus_freq_mhz;
607 }
608 emac_ctrl_write(EMAC_CTRL_EWINTTCNT, (int_ctrl | prescale));
609
610 break;
611 }
612
613 printk(KERN_INFO"Set coalesce to %d usecs.\n", coal_intvl);
614 priv->coal_intvl = coal_intvl;
615
616 return 0;
617
618}
619
620
Ben Hutchings1aa8b472012-07-10 10:56:59 +0000621/* ethtool_ops: DaVinci EMAC Ethtool structure
Anant Golea6286ee2009-05-18 15:19:01 -0700622 *
623 * Ethtool support for EMAC adapter
Anant Golea6286ee2009-05-18 15:19:01 -0700624 */
625static const struct ethtool_ops ethtool_ops = {
626 .get_drvinfo = emac_get_drvinfo,
627 .get_settings = emac_get_settings,
628 .set_settings = emac_set_settings,
629 .get_link = ethtool_op_get_link,
Sriram84da2652010-07-29 02:33:58 +0000630 .get_coalesce = emac_get_coalesce,
631 .set_coalesce = emac_set_coalesce,
Richard Cochran1fa68be2012-04-03 22:59:24 +0000632 .get_ts_info = ethtool_op_get_ts_info,
Anant Golea6286ee2009-05-18 15:19:01 -0700633};
634
635/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000636 * emac_update_phystatus - Update Phy status
Anant Golea6286ee2009-05-18 15:19:01 -0700637 * @priv: The DaVinci EMAC private adapter structure
638 *
639 * Updates phy status and takes action for network queue if required
640 * based upon link status
641 *
642 */
643static void emac_update_phystatus(struct emac_priv *priv)
644{
645 u32 mac_control;
646 u32 new_duplex;
647 u32 cur_duplex;
648 struct net_device *ndev = priv->ndev;
649
650 mac_control = emac_read(EMAC_MACCONTROL);
651 cur_duplex = (mac_control & EMAC_MACCONTROL_FULLDUPLEXEN) ?
652 DUPLEX_FULL : DUPLEX_HALF;
Cyril Chemparathy5d69e002010-09-15 10:11:24 -0400653 if (priv->phydev)
Anant Golea6286ee2009-05-18 15:19:01 -0700654 new_duplex = priv->phydev->duplex;
655 else
656 new_duplex = DUPLEX_FULL;
657
658 /* We get called only if link has changed (speed/duplex/status) */
659 if ((priv->link) && (new_duplex != cur_duplex)) {
660 priv->duplex = new_duplex;
661 if (DUPLEX_FULL == priv->duplex)
662 mac_control |= (EMAC_MACCONTROL_FULLDUPLEXEN);
663 else
664 mac_control &= ~(EMAC_MACCONTROL_FULLDUPLEXEN);
665 }
666
667 if (priv->speed == SPEED_1000 && (priv->version == EMAC_VERSION_2)) {
668 mac_control = emac_read(EMAC_MACCONTROL);
chaithrika@ti.com69ef9692009-10-01 10:25:19 +0000669 mac_control |= (EMAC_DM646X_MACCONTORL_GIG |
Anant Golea6286ee2009-05-18 15:19:01 -0700670 EMAC_DM646X_MACCONTORL_GIGFORCE);
671 } else {
672 /* Clear the GIG bit and GIGFORCE bit */
673 mac_control &= ~(EMAC_DM646X_MACCONTORL_GIGFORCE |
674 EMAC_DM646X_MACCONTORL_GIG);
675
676 if (priv->rmii_en && (priv->speed == SPEED_100))
677 mac_control |= EMAC_MACCONTROL_RMIISPEED_MASK;
678 else
679 mac_control &= ~EMAC_MACCONTROL_RMIISPEED_MASK;
680 }
681
682 /* Update mac_control if changed */
683 emac_write(EMAC_MACCONTROL, mac_control);
684
685 if (priv->link) {
686 /* link ON */
687 if (!netif_carrier_ok(ndev))
688 netif_carrier_on(ndev);
689 /* reactivate the transmit queue if it is stopped */
690 if (netif_running(ndev) && netif_queue_stopped(ndev))
691 netif_wake_queue(ndev);
692 } else {
693 /* link OFF */
694 if (netif_carrier_ok(ndev))
695 netif_carrier_off(ndev);
696 if (!netif_queue_stopped(ndev))
697 netif_stop_queue(ndev);
698 }
699}
700
701/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000702 * hash_get - Calculate hash value from mac address
Anant Golea6286ee2009-05-18 15:19:01 -0700703 * @addr: mac address to delete from hash table
704 *
705 * Calculates hash value from mac address
706 *
707 */
708static u32 hash_get(u8 *addr)
709{
710 u32 hash;
711 u8 tmpval;
712 int cnt;
713 hash = 0;
714
715 for (cnt = 0; cnt < 2; cnt++) {
716 tmpval = *addr++;
717 hash ^= (tmpval >> 2) ^ (tmpval << 4);
718 tmpval = *addr++;
719 hash ^= (tmpval >> 4) ^ (tmpval << 2);
720 tmpval = *addr++;
721 hash ^= (tmpval >> 6) ^ (tmpval);
722 }
723
724 return hash & 0x3F;
725}
726
727/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000728 * hash_add - Hash function to add mac addr from hash table
Anant Golea6286ee2009-05-18 15:19:01 -0700729 * @priv: The DaVinci EMAC private adapter structure
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000730 * @mac_addr: mac address to delete from hash table
Anant Golea6286ee2009-05-18 15:19:01 -0700731 *
732 * Adds mac address to the internal hash table
733 *
734 */
735static int hash_add(struct emac_priv *priv, u8 *mac_addr)
736{
737 struct device *emac_dev = &priv->ndev->dev;
738 u32 rc = 0;
739 u32 hash_bit;
740 u32 hash_value = hash_get(mac_addr);
741
742 if (hash_value >= EMAC_NUM_MULTICAST_BITS) {
743 if (netif_msg_drv(priv)) {
744 dev_err(emac_dev, "DaVinci EMAC: hash_add(): Invalid "\
745 "Hash %08x, should not be greater than %08x",
746 hash_value, (EMAC_NUM_MULTICAST_BITS - 1));
747 }
748 return -1;
749 }
750
751 /* set the hash bit only if not previously set */
752 if (priv->multicast_hash_cnt[hash_value] == 0) {
753 rc = 1; /* hash value changed */
754 if (hash_value < 32) {
755 hash_bit = BIT(hash_value);
756 priv->mac_hash1 |= hash_bit;
757 } else {
758 hash_bit = BIT((hash_value - 32));
759 priv->mac_hash2 |= hash_bit;
760 }
761 }
762
763 /* incr counter for num of mcast addr's mapped to "this" hash bit */
764 ++priv->multicast_hash_cnt[hash_value];
765
766 return rc;
767}
768
769/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000770 * hash_del - Hash function to delete mac addr from hash table
Anant Golea6286ee2009-05-18 15:19:01 -0700771 * @priv: The DaVinci EMAC private adapter structure
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000772 * @mac_addr: mac address to delete from hash table
Anant Golea6286ee2009-05-18 15:19:01 -0700773 *
774 * Removes mac address from the internal hash table
775 *
776 */
777static int hash_del(struct emac_priv *priv, u8 *mac_addr)
778{
779 u32 hash_value;
780 u32 hash_bit;
781
782 hash_value = hash_get(mac_addr);
783 if (priv->multicast_hash_cnt[hash_value] > 0) {
784 /* dec cntr for num of mcast addr's mapped to this hash bit */
785 --priv->multicast_hash_cnt[hash_value];
786 }
787
788 /* if counter still > 0, at least one multicast address refers
789 * to this hash bit. so return 0 */
790 if (priv->multicast_hash_cnt[hash_value] > 0)
791 return 0;
792
793 if (hash_value < 32) {
794 hash_bit = BIT(hash_value);
795 priv->mac_hash1 &= ~hash_bit;
796 } else {
797 hash_bit = BIT((hash_value - 32));
798 priv->mac_hash2 &= ~hash_bit;
799 }
800
801 /* return 1 to indicate change in mac_hash registers reqd */
802 return 1;
803}
804
805/* EMAC multicast operation */
806#define EMAC_MULTICAST_ADD 0
807#define EMAC_MULTICAST_DEL 1
808#define EMAC_ALL_MULTI_SET 2
809#define EMAC_ALL_MULTI_CLR 3
810
811/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000812 * emac_add_mcast - Set multicast address in the EMAC adapter (Internal)
Anant Golea6286ee2009-05-18 15:19:01 -0700813 * @priv: The DaVinci EMAC private adapter structure
814 * @action: multicast operation to perform
815 * mac_addr: mac address to set
816 *
817 * Set multicast addresses in EMAC adapter - internal function
818 *
819 */
820static void emac_add_mcast(struct emac_priv *priv, u32 action, u8 *mac_addr)
821{
822 struct device *emac_dev = &priv->ndev->dev;
823 int update = -1;
824
825 switch (action) {
826 case EMAC_MULTICAST_ADD:
827 update = hash_add(priv, mac_addr);
828 break;
829 case EMAC_MULTICAST_DEL:
830 update = hash_del(priv, mac_addr);
831 break;
832 case EMAC_ALL_MULTI_SET:
833 update = 1;
834 priv->mac_hash1 = EMAC_ALL_MULTI_REG_VALUE;
835 priv->mac_hash2 = EMAC_ALL_MULTI_REG_VALUE;
836 break;
837 case EMAC_ALL_MULTI_CLR:
838 update = 1;
839 priv->mac_hash1 = 0;
840 priv->mac_hash2 = 0;
841 memset(&(priv->multicast_hash_cnt[0]), 0,
842 sizeof(priv->multicast_hash_cnt[0]) *
843 EMAC_NUM_MULTICAST_BITS);
844 break;
845 default:
846 if (netif_msg_drv(priv))
847 dev_err(emac_dev, "DaVinci EMAC: add_mcast"\
848 ": bad operation %d", action);
849 break;
850 }
851
852 /* write to the hardware only if the register status chances */
853 if (update > 0) {
854 emac_write(EMAC_MACHASH1, priv->mac_hash1);
855 emac_write(EMAC_MACHASH2, priv->mac_hash2);
856 }
857}
858
859/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000860 * emac_dev_mcast_set - Set multicast address in the EMAC adapter
Anant Golea6286ee2009-05-18 15:19:01 -0700861 * @ndev: The DaVinci EMAC network adapter
862 *
863 * Set multicast addresses in EMAC adapter
864 *
865 */
866static void emac_dev_mcast_set(struct net_device *ndev)
867{
868 u32 mbp_enable;
869 struct emac_priv *priv = netdev_priv(ndev);
870
871 mbp_enable = emac_read(EMAC_RXMBPENABLE);
872 if (ndev->flags & IFF_PROMISC) {
873 mbp_enable &= (~EMAC_MBP_PROMISCCH(EMAC_DEF_PROM_CH));
874 mbp_enable |= (EMAC_MBP_RXPROMISC);
875 } else {
876 mbp_enable = (mbp_enable & ~EMAC_MBP_RXPROMISC);
877 if ((ndev->flags & IFF_ALLMULTI) ||
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000878 netdev_mc_count(ndev) > EMAC_DEF_MAX_MULTICAST_ADDRESSES) {
Anant Golea6286ee2009-05-18 15:19:01 -0700879 mbp_enable = (mbp_enable | EMAC_MBP_RXMCAST);
880 emac_add_mcast(priv, EMAC_ALL_MULTI_SET, NULL);
881 }
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000882 if (!netdev_mc_empty(ndev)) {
Jiri Pirko22bedad32010-04-01 21:22:57 +0000883 struct netdev_hw_addr *ha;
884
Anant Golea6286ee2009-05-18 15:19:01 -0700885 mbp_enable = (mbp_enable | EMAC_MBP_RXMCAST);
886 emac_add_mcast(priv, EMAC_ALL_MULTI_CLR, NULL);
887 /* program multicast address list into EMAC hardware */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000888 netdev_for_each_mc_addr(ha, ndev) {
Anant Golea6286ee2009-05-18 15:19:01 -0700889 emac_add_mcast(priv, EMAC_MULTICAST_ADD,
Jiri Pirko22bedad32010-04-01 21:22:57 +0000890 (u8 *) ha->addr);
Anant Golea6286ee2009-05-18 15:19:01 -0700891 }
892 } else {
893 mbp_enable = (mbp_enable & ~EMAC_MBP_RXMCAST);
894 emac_add_mcast(priv, EMAC_ALL_MULTI_CLR, NULL);
895 }
896 }
897 /* Set mbp config register */
898 emac_write(EMAC_RXMBPENABLE, mbp_enable);
899}
900
901/*************************************************************************
902 * EMAC Hardware manipulation
903 *************************************************************************/
904
905/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000906 * emac_int_disable - Disable EMAC module interrupt (from adapter)
Anant Golea6286ee2009-05-18 15:19:01 -0700907 * @priv: The DaVinci EMAC private adapter structure
908 *
909 * Disable EMAC interrupt on the adapter
910 *
911 */
912static void emac_int_disable(struct emac_priv *priv)
913{
914 if (priv->version == EMAC_VERSION_2) {
915 unsigned long flags;
916
917 local_irq_save(flags);
918
919 /* Program C0_Int_En to zero to turn off
920 * interrupts to the CPU */
921 emac_ctrl_write(EMAC_DM646X_CMRXINTEN, 0x0);
922 emac_ctrl_write(EMAC_DM646X_CMTXINTEN, 0x0);
923 /* NOTE: Rx Threshold and Misc interrupts are not disabled */
Sriramakrishnan01a9af32009-11-19 15:58:26 +0530924 if (priv->int_disable)
925 priv->int_disable();
Anant Golea6286ee2009-05-18 15:19:01 -0700926
927 local_irq_restore(flags);
928
929 } else {
930 /* Set DM644x control registers for interrupt control */
931 emac_ctrl_write(EMAC_CTRL_EWCTL, 0x0);
932 }
933}
934
935/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000936 * emac_int_enable - Enable EMAC module interrupt (from adapter)
Anant Golea6286ee2009-05-18 15:19:01 -0700937 * @priv: The DaVinci EMAC private adapter structure
938 *
939 * Enable EMAC interrupt on the adapter
940 *
941 */
942static void emac_int_enable(struct emac_priv *priv)
943{
944 if (priv->version == EMAC_VERSION_2) {
Sriramakrishnan01a9af32009-11-19 15:58:26 +0530945 if (priv->int_enable)
946 priv->int_enable();
947
Anant Golea6286ee2009-05-18 15:19:01 -0700948 emac_ctrl_write(EMAC_DM646X_CMRXINTEN, 0xff);
949 emac_ctrl_write(EMAC_DM646X_CMTXINTEN, 0xff);
950
951 /* In addition to turning on interrupt Enable, we need
952 * ack by writing appropriate values to the EOI
953 * register */
954
955 /* NOTE: Rx Threshold and Misc interrupts are not enabled */
956
957 /* ack rxen only then a new pulse will be generated */
958 emac_write(EMAC_DM646X_MACEOIVECTOR,
959 EMAC_DM646X_MAC_EOI_C0_RXEN);
960
961 /* ack txen- only then a new pulse will be generated */
962 emac_write(EMAC_DM646X_MACEOIVECTOR,
963 EMAC_DM646X_MAC_EOI_C0_TXEN);
964
965 } else {
966 /* Set DM644x control registers for interrupt control */
967 emac_ctrl_write(EMAC_CTRL_EWCTL, 0x1);
968 }
969}
970
971/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000972 * emac_irq - EMAC interrupt handler
Anant Golea6286ee2009-05-18 15:19:01 -0700973 * @irq: interrupt number
974 * @dev_id: EMAC network adapter data structure ptr
975 *
976 * EMAC Interrupt handler - we only schedule NAPI and not process any packets
977 * here. EVen the interrupt status is checked (TX/RX/Err) in NAPI poll function
978 *
979 * Returns interrupt handled condition
980 */
981static irqreturn_t emac_irq(int irq, void *dev_id)
982{
983 struct net_device *ndev = (struct net_device *)dev_id;
984 struct emac_priv *priv = netdev_priv(ndev);
985
986 ++priv->isr_count;
987 if (likely(netif_running(priv->ndev))) {
988 emac_int_disable(priv);
989 napi_schedule(&priv->napi);
990 } else {
991 /* we are closing down, so dont process anything */
992 }
993 return IRQ_HANDLED;
994}
995
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -0400996static struct sk_buff *emac_rx_alloc(struct emac_priv *priv)
997{
Pradeep A. Dalvidae2e9f2012-02-06 11:16:13 +0000998 struct sk_buff *skb = netdev_alloc_skb(priv->ndev, priv->rx_buf_size);
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -0400999 if (WARN_ON(!skb))
1000 return NULL;
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001001 skb_reserve(skb, NET_IP_ALIGN);
1002 return skb;
1003}
1004
1005static void emac_rx_handler(void *token, int len, int status)
1006{
1007 struct sk_buff *skb = token;
1008 struct net_device *ndev = skb->dev;
1009 struct emac_priv *priv = netdev_priv(ndev);
1010 struct device *emac_dev = &ndev->dev;
1011 int ret;
1012
1013 /* free and bail if we are shutting down */
Christian Riesch5d697032012-02-23 01:14:17 +00001014 if (unlikely(!netif_running(ndev))) {
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001015 dev_kfree_skb_any(skb);
1016 return;
1017 }
1018
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001019 /* recycle on receive error */
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001020 if (status < 0) {
1021 ndev->stats.rx_errors++;
1022 goto recycle;
1023 }
1024
1025 /* feed received packet up the stack */
1026 skb_put(skb, len);
1027 skb->protocol = eth_type_trans(skb, ndev);
1028 netif_receive_skb(skb);
1029 ndev->stats.rx_bytes += len;
1030 ndev->stats.rx_packets++;
1031
1032 /* alloc a new packet for receive */
1033 skb = emac_rx_alloc(priv);
1034 if (!skb) {
1035 if (netif_msg_rx_err(priv) && net_ratelimit())
1036 dev_err(emac_dev, "failed rx buffer alloc\n");
1037 return;
1038 }
1039
1040recycle:
1041 ret = cpdma_chan_submit(priv->rxchan, skb, skb->data,
1042 skb_tailroom(skb), GFP_KERNEL);
Christian Riesch5d697032012-02-23 01:14:17 +00001043
1044 WARN_ON(ret == -ENOMEM);
1045 if (unlikely(ret < 0))
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001046 dev_kfree_skb_any(skb);
1047}
1048
1049static void emac_tx_handler(void *token, int len, int status)
1050{
1051 struct sk_buff *skb = token;
1052 struct net_device *ndev = skb->dev;
Sascha Hauer86d8c072012-01-03 05:27:47 +00001053 struct emac_priv *priv = netdev_priv(ndev);
1054
1055 atomic_dec(&priv->cur_tx);
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001056
1057 if (unlikely(netif_queue_stopped(ndev)))
1058 netif_start_queue(ndev);
1059 ndev->stats.tx_packets++;
1060 ndev->stats.tx_bytes += len;
1061 dev_kfree_skb_any(skb);
1062}
1063
Anant Golea6286ee2009-05-18 15:19:01 -07001064/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001065 * emac_dev_xmit - EMAC Transmit function
Anant Golea6286ee2009-05-18 15:19:01 -07001066 * @skb: SKB pointer
1067 * @ndev: The DaVinci EMAC network adapter
1068 *
1069 * Called by the system to transmit a packet - we queue the packet in
1070 * EMAC hardware transmit queue
1071 *
1072 * Returns success(NETDEV_TX_OK) or error code (typically out of desc's)
1073 */
1074static int emac_dev_xmit(struct sk_buff *skb, struct net_device *ndev)
1075{
1076 struct device *emac_dev = &ndev->dev;
1077 int ret_code;
Anant Golea6286ee2009-05-18 15:19:01 -07001078 struct emac_priv *priv = netdev_priv(ndev);
1079
1080 /* If no link, return */
1081 if (unlikely(!priv->link)) {
1082 if (netif_msg_tx_err(priv) && net_ratelimit())
1083 dev_err(emac_dev, "DaVinci EMAC: No link to transmit");
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001084 goto fail_tx;
Anant Golea6286ee2009-05-18 15:19:01 -07001085 }
1086
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001087 ret_code = skb_padto(skb, EMAC_DEF_MIN_ETHPKTSIZE);
1088 if (unlikely(ret_code < 0)) {
1089 if (netif_msg_tx_err(priv) && net_ratelimit())
1090 dev_err(emac_dev, "DaVinci EMAC: packet pad failed");
1091 goto fail_tx;
1092 }
1093
Richard Cochran5bf0c192011-06-19 03:31:45 +00001094 skb_tx_timestamp(skb);
1095
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001096 ret_code = cpdma_chan_submit(priv->txchan, skb, skb->data, skb->len,
1097 GFP_KERNEL);
Anant Golea6286ee2009-05-18 15:19:01 -07001098 if (unlikely(ret_code != 0)) {
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001099 if (netif_msg_tx_err(priv) && net_ratelimit())
1100 dev_err(emac_dev, "DaVinci EMAC: desc submit failed");
1101 goto fail_tx;
Anant Golea6286ee2009-05-18 15:19:01 -07001102 }
1103
Sascha Hauer86d8c072012-01-03 05:27:47 +00001104 if (atomic_inc_return(&priv->cur_tx) >= EMAC_DEF_TX_NUM_DESC)
1105 netif_stop_queue(ndev);
1106
Anant Golea6286ee2009-05-18 15:19:01 -07001107 return NETDEV_TX_OK;
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001108
1109fail_tx:
1110 ndev->stats.tx_dropped++;
1111 netif_stop_queue(ndev);
1112 return NETDEV_TX_BUSY;
Anant Golea6286ee2009-05-18 15:19:01 -07001113}
1114
1115/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001116 * emac_dev_tx_timeout - EMAC Transmit timeout function
Anant Golea6286ee2009-05-18 15:19:01 -07001117 * @ndev: The DaVinci EMAC network adapter
1118 *
1119 * Called when system detects that a skb timeout period has expired
1120 * potentially due to a fault in the adapter in not being able to send
1121 * it out on the wire. We teardown the TX channel assuming a hardware
1122 * error and re-initialize the TX channel for hardware operation
1123 *
1124 */
1125static void emac_dev_tx_timeout(struct net_device *ndev)
1126{
1127 struct emac_priv *priv = netdev_priv(ndev);
1128 struct device *emac_dev = &ndev->dev;
1129
1130 if (netif_msg_tx_err(priv))
1131 dev_err(emac_dev, "DaVinci EMAC: xmit timeout, restarting TX");
1132
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001133 emac_dump_regs(priv);
1134
Kulikov Vasiliy78e8c532010-07-05 02:13:26 +00001135 ndev->stats.tx_errors++;
Anant Golea6286ee2009-05-18 15:19:01 -07001136 emac_int_disable(priv);
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001137 cpdma_chan_stop(priv->txchan);
1138 cpdma_chan_start(priv->txchan);
Anant Golea6286ee2009-05-18 15:19:01 -07001139 emac_int_enable(priv);
1140}
1141
1142/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001143 * emac_set_type0addr - Set EMAC Type0 mac address
Anant Golea6286ee2009-05-18 15:19:01 -07001144 * @priv: The DaVinci EMAC private adapter structure
1145 * @ch: RX channel number
1146 * @mac_addr: MAC address to set in device
1147 *
1148 * Called internally to set Type0 mac address of the adapter (Device)
1149 *
1150 * Returns success (0) or appropriate error code (none as of now)
1151 */
1152static void emac_set_type0addr(struct emac_priv *priv, u32 ch, char *mac_addr)
1153{
1154 u32 val;
1155 val = ((mac_addr[5] << 8) | (mac_addr[4]));
1156 emac_write(EMAC_MACSRCADDRLO, val);
1157
1158 val = ((mac_addr[3] << 24) | (mac_addr[2] << 16) | \
1159 (mac_addr[1] << 8) | (mac_addr[0]));
1160 emac_write(EMAC_MACSRCADDRHI, val);
1161 val = emac_read(EMAC_RXUNICASTSET);
1162 val |= BIT(ch);
1163 emac_write(EMAC_RXUNICASTSET, val);
1164 val = emac_read(EMAC_RXUNICASTCLEAR);
1165 val &= ~BIT(ch);
1166 emac_write(EMAC_RXUNICASTCLEAR, val);
1167}
1168
1169/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001170 * emac_set_type1addr - Set EMAC Type1 mac address
Anant Golea6286ee2009-05-18 15:19:01 -07001171 * @priv: The DaVinci EMAC private adapter structure
1172 * @ch: RX channel number
1173 * @mac_addr: MAC address to set in device
1174 *
1175 * Called internally to set Type1 mac address of the adapter (Device)
1176 *
1177 * Returns success (0) or appropriate error code (none as of now)
1178 */
1179static void emac_set_type1addr(struct emac_priv *priv, u32 ch, char *mac_addr)
1180{
1181 u32 val;
1182 emac_write(EMAC_MACINDEX, ch);
1183 val = ((mac_addr[5] << 8) | mac_addr[4]);
1184 emac_write(EMAC_MACADDRLO, val);
1185 val = ((mac_addr[3] << 24) | (mac_addr[2] << 16) | \
1186 (mac_addr[1] << 8) | (mac_addr[0]));
1187 emac_write(EMAC_MACADDRHI, val);
1188 emac_set_type0addr(priv, ch, mac_addr);
1189}
1190
1191/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001192 * emac_set_type2addr - Set EMAC Type2 mac address
Anant Golea6286ee2009-05-18 15:19:01 -07001193 * @priv: The DaVinci EMAC private adapter structure
1194 * @ch: RX channel number
1195 * @mac_addr: MAC address to set in device
1196 * @index: index into RX address entries
1197 * @match: match parameter for RX address matching logic
1198 *
1199 * Called internally to set Type2 mac address of the adapter (Device)
1200 *
1201 * Returns success (0) or appropriate error code (none as of now)
1202 */
1203static void emac_set_type2addr(struct emac_priv *priv, u32 ch,
1204 char *mac_addr, int index, int match)
1205{
1206 u32 val;
1207 emac_write(EMAC_MACINDEX, index);
1208 val = ((mac_addr[3] << 24) | (mac_addr[2] << 16) | \
1209 (mac_addr[1] << 8) | (mac_addr[0]));
1210 emac_write(EMAC_MACADDRHI, val);
1211 val = ((mac_addr[5] << 8) | mac_addr[4] | ((ch & 0x7) << 16) | \
1212 (match << 19) | BIT(20));
1213 emac_write(EMAC_MACADDRLO, val);
1214 emac_set_type0addr(priv, ch, mac_addr);
1215}
1216
1217/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001218 * emac_setmac - Set mac address in the adapter (internal function)
Anant Golea6286ee2009-05-18 15:19:01 -07001219 * @priv: The DaVinci EMAC private adapter structure
1220 * @ch: RX channel number
1221 * @mac_addr: MAC address to set in device
1222 *
1223 * Called internally to set the mac address of the adapter (Device)
1224 *
1225 * Returns success (0) or appropriate error code (none as of now)
1226 */
1227static void emac_setmac(struct emac_priv *priv, u32 ch, char *mac_addr)
1228{
1229 struct device *emac_dev = &priv->ndev->dev;
1230
1231 if (priv->rx_addr_type == 0) {
1232 emac_set_type0addr(priv, ch, mac_addr);
1233 } else if (priv->rx_addr_type == 1) {
1234 u32 cnt;
1235 for (cnt = 0; cnt < EMAC_MAX_TXRX_CHANNELS; cnt++)
1236 emac_set_type1addr(priv, ch, mac_addr);
1237 } else if (priv->rx_addr_type == 2) {
1238 emac_set_type2addr(priv, ch, mac_addr, ch, 1);
1239 emac_set_type0addr(priv, ch, mac_addr);
1240 } else {
1241 if (netif_msg_drv(priv))
1242 dev_err(emac_dev, "DaVinci EMAC: Wrong addressing\n");
1243 }
1244}
1245
1246/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001247 * emac_dev_setmac_addr - Set mac address in the adapter
Anant Golea6286ee2009-05-18 15:19:01 -07001248 * @ndev: The DaVinci EMAC network adapter
1249 * @addr: MAC address to set in device
1250 *
1251 * Called by the system to set the mac address of the adapter (Device)
1252 *
1253 * Returns success (0) or appropriate error code (none as of now)
1254 */
1255static int emac_dev_setmac_addr(struct net_device *ndev, void *addr)
1256{
1257 struct emac_priv *priv = netdev_priv(ndev);
Anant Golea6286ee2009-05-18 15:19:01 -07001258 struct device *emac_dev = &priv->ndev->dev;
1259 struct sockaddr *sa = addr;
Anant Golea6286ee2009-05-18 15:19:01 -07001260
Pablo Bitton64c81652009-07-07 19:11:10 -07001261 if (!is_valid_ether_addr(sa->sa_data))
Danny Kukawka504f9b52012-02-21 02:07:49 +00001262 return -EADDRNOTAVAIL;
Pablo Bitton64c81652009-07-07 19:11:10 -07001263
Anant Golea6286ee2009-05-18 15:19:01 -07001264 /* Store mac addr in priv and rx channel and set it in EMAC hw */
1265 memcpy(priv->mac_addr, sa->sa_data, ndev->addr_len);
Anant Golea6286ee2009-05-18 15:19:01 -07001266 memcpy(ndev->dev_addr, sa->sa_data, ndev->addr_len);
Pablo Bitton64c81652009-07-07 19:11:10 -07001267
Pablo Bitton64c81652009-07-07 19:11:10 -07001268 /* MAC address is configured only after the interface is enabled. */
1269 if (netif_running(ndev)) {
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001270 emac_setmac(priv, EMAC_DEF_RX_CH, priv->mac_addr);
Pablo Bitton64c81652009-07-07 19:11:10 -07001271 }
Anant Golea6286ee2009-05-18 15:19:01 -07001272
1273 if (netif_msg_drv(priv))
Chaithrika U S5c726162009-06-03 21:54:29 -07001274 dev_notice(emac_dev, "DaVinci EMAC: emac_dev_setmac_addr %pM\n",
1275 priv->mac_addr);
Anant Golea6286ee2009-05-18 15:19:01 -07001276
1277 return 0;
1278}
1279
1280/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001281 * emac_hw_enable - Enable EMAC hardware for packet transmission/reception
Anant Golea6286ee2009-05-18 15:19:01 -07001282 * @priv: The DaVinci EMAC private adapter structure
1283 *
1284 * Enables EMAC hardware for packet processing - enables PHY, enables RX
1285 * for packet reception and enables device interrupts and then NAPI
1286 *
1287 * Returns success (0) or appropriate error code (none right now)
1288 */
1289static int emac_hw_enable(struct emac_priv *priv)
1290{
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001291 u32 val, mbp_enable, mac_control;
Anant Golea6286ee2009-05-18 15:19:01 -07001292
1293 /* Soft reset */
1294 emac_write(EMAC_SOFTRESET, 1);
1295 while (emac_read(EMAC_SOFTRESET))
1296 cpu_relax();
1297
1298 /* Disable interrupt & Set pacing for more interrupts initially */
1299 emac_int_disable(priv);
1300
1301 /* Full duplex enable bit set when auto negotiation happens */
1302 mac_control =
1303 (((EMAC_DEF_TXPRIO_FIXED) ? (EMAC_MACCONTROL_TXPTYPE) : 0x0) |
1304 ((priv->speed == 1000) ? EMAC_MACCONTROL_GIGABITEN : 0x0) |
1305 ((EMAC_DEF_TXPACING_EN) ? (EMAC_MACCONTROL_TXPACEEN) : 0x0) |
1306 ((priv->duplex == DUPLEX_FULL) ? 0x1 : 0));
1307 emac_write(EMAC_MACCONTROL, mac_control);
1308
1309 mbp_enable =
1310 (((EMAC_DEF_PASS_CRC) ? (EMAC_RXMBP_PASSCRC_MASK) : 0x0) |
1311 ((EMAC_DEF_QOS_EN) ? (EMAC_RXMBP_QOSEN_MASK) : 0x0) |
1312 ((EMAC_DEF_NO_BUFF_CHAIN) ? (EMAC_RXMBP_NOCHAIN_MASK) : 0x0) |
1313 ((EMAC_DEF_MACCTRL_FRAME_EN) ? (EMAC_RXMBP_CMFEN_MASK) : 0x0) |
1314 ((EMAC_DEF_SHORT_FRAME_EN) ? (EMAC_RXMBP_CSFEN_MASK) : 0x0) |
1315 ((EMAC_DEF_ERROR_FRAME_EN) ? (EMAC_RXMBP_CEFEN_MASK) : 0x0) |
1316 ((EMAC_DEF_PROM_EN) ? (EMAC_RXMBP_CAFEN_MASK) : 0x0) |
1317 ((EMAC_DEF_PROM_CH & EMAC_RXMBP_CHMASK) << \
1318 EMAC_RXMBP_PROMCH_SHIFT) |
1319 ((EMAC_DEF_BCAST_EN) ? (EMAC_RXMBP_BROADEN_MASK) : 0x0) |
1320 ((EMAC_DEF_BCAST_CH & EMAC_RXMBP_CHMASK) << \
1321 EMAC_RXMBP_BROADCH_SHIFT) |
1322 ((EMAC_DEF_MCAST_EN) ? (EMAC_RXMBP_MULTIEN_MASK) : 0x0) |
1323 ((EMAC_DEF_MCAST_CH & EMAC_RXMBP_CHMASK) << \
1324 EMAC_RXMBP_MULTICH_SHIFT));
1325 emac_write(EMAC_RXMBPENABLE, mbp_enable);
1326 emac_write(EMAC_RXMAXLEN, (EMAC_DEF_MAX_FRAME_SIZE &
1327 EMAC_RX_MAX_LEN_MASK));
1328 emac_write(EMAC_RXBUFFEROFFSET, (EMAC_DEF_BUFFER_OFFSET &
1329 EMAC_RX_BUFFER_OFFSET_MASK));
1330 emac_write(EMAC_RXFILTERLOWTHRESH, 0);
1331 emac_write(EMAC_RXUNICASTCLEAR, EMAC_RX_UNICAST_CLEAR_ALL);
1332 priv->rx_addr_type = (emac_read(EMAC_MACCONFIG) >> 8) & 0xFF;
1333
Anant Golea6286ee2009-05-18 15:19:01 -07001334 emac_write(EMAC_MACINTMASKSET, EMAC_MAC_HOST_ERR_INTMASK_VAL);
1335
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001336 emac_setmac(priv, EMAC_DEF_RX_CH, priv->mac_addr);
Anant Golea6286ee2009-05-18 15:19:01 -07001337
1338 /* Enable MII */
1339 val = emac_read(EMAC_MACCONTROL);
chaithrika@ti.com69ef9692009-10-01 10:25:19 +00001340 val |= (EMAC_MACCONTROL_GMIIEN);
Anant Golea6286ee2009-05-18 15:19:01 -07001341 emac_write(EMAC_MACCONTROL, val);
1342
1343 /* Enable NAPI and interrupts */
1344 napi_enable(&priv->napi);
1345 emac_int_enable(priv);
1346 return 0;
1347
1348}
1349
1350/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001351 * emac_poll - EMAC NAPI Poll function
Anant Golea6286ee2009-05-18 15:19:01 -07001352 * @ndev: The DaVinci EMAC network adapter
1353 * @budget: Number of receive packets to process (as told by NAPI layer)
1354 *
1355 * NAPI Poll function implemented to process packets as per budget. We check
1356 * the type of interrupt on the device and accordingly call the TX or RX
1357 * packet processing functions. We follow the budget for RX processing and
1358 * also put a cap on number of TX pkts processed through config param. The
1359 * NAPI schedule function is called if more packets pending.
1360 *
1361 * Returns number of packets received (in most cases; else TX pkts - rarely)
1362 */
1363static int emac_poll(struct napi_struct *napi, int budget)
1364{
1365 unsigned int mask;
1366 struct emac_priv *priv = container_of(napi, struct emac_priv, napi);
1367 struct net_device *ndev = priv->ndev;
1368 struct device *emac_dev = &ndev->dev;
1369 u32 status = 0;
Sriram3725b1f2010-07-29 02:33:59 +00001370 u32 num_tx_pkts = 0, num_rx_pkts = 0;
Anant Golea6286ee2009-05-18 15:19:01 -07001371
Anant Golea6286ee2009-05-18 15:19:01 -07001372 /* Check interrupt vectors and call packet processing */
1373 status = emac_read(EMAC_MACINVECTOR);
1374
1375 mask = EMAC_DM644X_MAC_IN_VECTOR_TX_INT_VEC;
1376
1377 if (priv->version == EMAC_VERSION_2)
1378 mask = EMAC_DM646X_MAC_IN_VECTOR_TX_INT_VEC;
1379
1380 if (status & mask) {
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001381 num_tx_pkts = cpdma_chan_process(priv->txchan,
1382 EMAC_DEF_TX_MAX_SERVICE);
Anant Golea6286ee2009-05-18 15:19:01 -07001383 } /* TX processing */
1384
Anant Golea6286ee2009-05-18 15:19:01 -07001385 mask = EMAC_DM644X_MAC_IN_VECTOR_RX_INT_VEC;
1386
1387 if (priv->version == EMAC_VERSION_2)
1388 mask = EMAC_DM646X_MAC_IN_VECTOR_RX_INT_VEC;
1389
1390 if (status & mask) {
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001391 num_rx_pkts = cpdma_chan_process(priv->rxchan, budget);
Anant Golea6286ee2009-05-18 15:19:01 -07001392 } /* RX processing */
1393
Sriram43c2ed82009-09-24 19:15:18 +00001394 mask = EMAC_DM644X_MAC_IN_VECTOR_HOST_INT;
1395 if (priv->version == EMAC_VERSION_2)
1396 mask = EMAC_DM646X_MAC_IN_VECTOR_HOST_INT;
1397
1398 if (unlikely(status & mask)) {
Anant Golea6286ee2009-05-18 15:19:01 -07001399 u32 ch, cause;
1400 dev_err(emac_dev, "DaVinci EMAC: Fatal Hardware Error\n");
1401 netif_stop_queue(ndev);
1402 napi_disable(&priv->napi);
1403
1404 status = emac_read(EMAC_MACSTATUS);
1405 cause = ((status & EMAC_MACSTATUS_TXERRCODE_MASK) >>
1406 EMAC_MACSTATUS_TXERRCODE_SHIFT);
1407 if (cause) {
1408 ch = ((status & EMAC_MACSTATUS_TXERRCH_MASK) >>
1409 EMAC_MACSTATUS_TXERRCH_SHIFT);
1410 if (net_ratelimit()) {
1411 dev_err(emac_dev, "TX Host error %s on ch=%d\n",
1412 &emac_txhost_errcodes[cause][0], ch);
1413 }
1414 }
1415 cause = ((status & EMAC_MACSTATUS_RXERRCODE_MASK) >>
1416 EMAC_MACSTATUS_RXERRCODE_SHIFT);
1417 if (cause) {
1418 ch = ((status & EMAC_MACSTATUS_RXERRCH_MASK) >>
1419 EMAC_MACSTATUS_RXERRCH_SHIFT);
1420 if (netif_msg_hw(priv) && net_ratelimit())
1421 dev_err(emac_dev, "RX Host error %s on ch=%d\n",
1422 &emac_rxhost_errcodes[cause][0], ch);
1423 }
Sriram3725b1f2010-07-29 02:33:59 +00001424 } else if (num_rx_pkts < budget) {
1425 napi_complete(napi);
1426 emac_int_enable(priv);
1427 }
Anant Golea6286ee2009-05-18 15:19:01 -07001428
Sriram3725b1f2010-07-29 02:33:59 +00001429 return num_rx_pkts;
Anant Golea6286ee2009-05-18 15:19:01 -07001430}
1431
1432#ifdef CONFIG_NET_POLL_CONTROLLER
1433/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001434 * emac_poll_controller - EMAC Poll controller function
Anant Golea6286ee2009-05-18 15:19:01 -07001435 * @ndev: The DaVinci EMAC network adapter
1436 *
1437 * Polled functionality used by netconsole and others in non interrupt mode
1438 *
1439 */
1440void emac_poll_controller(struct net_device *ndev)
1441{
1442 struct emac_priv *priv = netdev_priv(ndev);
1443
1444 emac_int_disable(priv);
Tonyliuc8ee5532009-11-04 05:45:02 -08001445 emac_irq(ndev->irq, ndev);
Anant Golea6286ee2009-05-18 15:19:01 -07001446 emac_int_enable(priv);
1447}
1448#endif
1449
Anant Golea6286ee2009-05-18 15:19:01 -07001450static void emac_adjust_link(struct net_device *ndev)
1451{
1452 struct emac_priv *priv = netdev_priv(ndev);
1453 struct phy_device *phydev = priv->phydev;
1454 unsigned long flags;
1455 int new_state = 0;
1456
1457 spin_lock_irqsave(&priv->lock, flags);
1458
1459 if (phydev->link) {
1460 /* check the mode of operation - full/half duplex */
1461 if (phydev->duplex != priv->duplex) {
1462 new_state = 1;
1463 priv->duplex = phydev->duplex;
1464 }
1465 if (phydev->speed != priv->speed) {
1466 new_state = 1;
1467 priv->speed = phydev->speed;
1468 }
1469 if (!priv->link) {
1470 new_state = 1;
1471 priv->link = 1;
1472 }
1473
1474 } else if (priv->link) {
1475 new_state = 1;
1476 priv->link = 0;
1477 priv->speed = 0;
1478 priv->duplex = ~0;
1479 }
1480 if (new_state) {
1481 emac_update_phystatus(priv);
1482 phy_print_status(priv->phydev);
1483 }
1484
1485 spin_unlock_irqrestore(&priv->lock, flags);
1486}
1487
1488/*************************************************************************
1489 * Linux Driver Model
1490 *************************************************************************/
1491
1492/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001493 * emac_devioctl - EMAC adapter ioctl
Anant Golea6286ee2009-05-18 15:19:01 -07001494 * @ndev: The DaVinci EMAC network adapter
1495 * @ifrq: request parameter
1496 * @cmd: command parameter
1497 *
1498 * EMAC driver ioctl function
1499 *
1500 * Returns success(0) or appropriate error code
1501 */
1502static int emac_devioctl(struct net_device *ndev, struct ifreq *ifrq, int cmd)
1503{
Richard Cochranfb290cd2011-06-12 02:19:00 +00001504 struct emac_priv *priv = netdev_priv(ndev);
Anant Golea6286ee2009-05-18 15:19:01 -07001505
1506 if (!(netif_running(ndev)))
1507 return -EINVAL;
1508
1509 /* TODO: Add phy read and write and private statistics get feature */
1510
Richard Cochranfb290cd2011-06-12 02:19:00 +00001511 return phy_mii_ioctl(priv->phydev, ifrq, cmd);
Anant Golea6286ee2009-05-18 15:19:01 -07001512}
1513
Cyril Chemparathy5d69e002010-09-15 10:11:24 -04001514static int match_first_device(struct device *dev, void *data)
1515{
Anatolij Gustschin1ab8be42012-04-23 12:06:43 +00001516 return !strncmp(dev_name(dev), "davinci_mdio", 12);
Cyril Chemparathy5d69e002010-09-15 10:11:24 -04001517}
1518
Anant Golea6286ee2009-05-18 15:19:01 -07001519/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001520 * emac_dev_open - EMAC device open
Anant Golea6286ee2009-05-18 15:19:01 -07001521 * @ndev: The DaVinci EMAC network adapter
1522 *
1523 * Called when system wants to start the interface. We init TX/RX channels
1524 * and enable the hardware for packet reception/transmission and start the
1525 * network queue.
1526 *
1527 * Returns 0 for a successful open, or appropriate error code
1528 */
1529static int emac_dev_open(struct net_device *ndev)
1530{
1531 struct device *emac_dev = &ndev->dev;
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001532 u32 cnt;
Anant Golea6286ee2009-05-18 15:19:01 -07001533 struct resource *res;
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001534 int q, m, ret;
Anant Golea6286ee2009-05-18 15:19:01 -07001535 int i = 0;
1536 int k = 0;
1537 struct emac_priv *priv = netdev_priv(ndev);
1538
Mark A. Greer3ba97382012-07-20 15:19:22 +00001539 pm_runtime_get(&priv->pdev->dev);
1540
Anant Golea6286ee2009-05-18 15:19:01 -07001541 netif_carrier_off(ndev);
Dan Carpenter4d27b872010-03-02 21:07:24 +00001542 for (cnt = 0; cnt < ETH_ALEN; cnt++)
Anant Golea6286ee2009-05-18 15:19:01 -07001543 ndev->dev_addr[cnt] = priv->mac_addr[cnt];
1544
1545 /* Configuration items */
1546 priv->rx_buf_size = EMAC_DEF_MAX_FRAME_SIZE + NET_IP_ALIGN;
1547
Anant Golea6286ee2009-05-18 15:19:01 -07001548 priv->mac_hash1 = 0;
1549 priv->mac_hash2 = 0;
1550 emac_write(EMAC_MACHASH1, 0);
1551 emac_write(EMAC_MACHASH2, 0);
1552
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001553 for (i = 0; i < EMAC_DEF_RX_NUM_DESC; i++) {
1554 struct sk_buff *skb = emac_rx_alloc(priv);
1555
1556 if (!skb)
1557 break;
1558
1559 ret = cpdma_chan_submit(priv->rxchan, skb, skb->data,
1560 skb_tailroom(skb), GFP_KERNEL);
1561 if (WARN_ON(ret < 0))
1562 break;
Anant Golea6286ee2009-05-18 15:19:01 -07001563 }
1564
1565 /* Request IRQ */
1566
1567 while ((res = platform_get_resource(priv->pdev, IORESOURCE_IRQ, k))) {
1568 for (i = res->start; i <= res->end; i++) {
1569 if (request_irq(i, emac_irq, IRQF_DISABLED,
1570 ndev->name, ndev))
1571 goto rollback;
1572 }
1573 k++;
1574 }
1575
1576 /* Start/Enable EMAC hardware */
1577 emac_hw_enable(priv);
1578
Sriram84da2652010-07-29 02:33:58 +00001579 /* Enable Interrupt pacing if configured */
1580 if (priv->coal_intvl != 0) {
1581 struct ethtool_coalesce coal;
1582
1583 coal.rx_coalesce_usecs = (priv->coal_intvl << 4);
1584 emac_set_coalesce(ndev, &coal);
1585 }
1586
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001587 cpdma_ctlr_start(priv->dma);
1588
Anant Golea6286ee2009-05-18 15:19:01 -07001589 priv->phydev = NULL;
Cyril Chemparathy5d69e002010-09-15 10:11:24 -04001590 /* use the first phy on the bus if pdata did not give us a phy id */
1591 if (!priv->phy_id) {
1592 struct device *phy;
Anant Golea6286ee2009-05-18 15:19:01 -07001593
Cyril Chemparathy5d69e002010-09-15 10:11:24 -04001594 phy = bus_find_device(&mdio_bus_type, NULL, NULL,
1595 match_first_device);
1596 if (phy)
1597 priv->phy_id = dev_name(phy);
1598 }
Anant Golea6286ee2009-05-18 15:19:01 -07001599
Cyril Chemparathy5d69e002010-09-15 10:11:24 -04001600 if (priv->phy_id && *priv->phy_id) {
1601 priv->phydev = phy_connect(ndev, priv->phy_id,
1602 &emac_adjust_link, 0,
1603 PHY_INTERFACE_MODE_MII);
Anant Golea6286ee2009-05-18 15:19:01 -07001604
1605 if (IS_ERR(priv->phydev)) {
Cyril Chemparathy5d69e002010-09-15 10:11:24 -04001606 dev_err(emac_dev, "could not connect to phy %s\n",
1607 priv->phy_id);
Julia Lawallcb0a1782012-02-02 04:53:01 +00001608 ret = PTR_ERR(priv->phydev);
Cyril Chemparathy5d69e002010-09-15 10:11:24 -04001609 priv->phydev = NULL;
Mark A. Greer3ba97382012-07-20 15:19:22 +00001610 goto err;
Anant Golea6286ee2009-05-18 15:19:01 -07001611 }
1612
1613 priv->link = 0;
1614 priv->speed = 0;
1615 priv->duplex = ~0;
1616
Cyril Chemparathy5d69e002010-09-15 10:11:24 -04001617 dev_info(emac_dev, "attached PHY driver [%s] "
1618 "(mii_bus:phy_addr=%s, id=%x)\n",
Anant Golea6286ee2009-05-18 15:19:01 -07001619 priv->phydev->drv->name, dev_name(&priv->phydev->dev),
1620 priv->phydev->phy_id);
Cyril Chemparathy5d69e002010-09-15 10:11:24 -04001621 } else {
Anant Golea6286ee2009-05-18 15:19:01 -07001622 /* No PHY , fix the link, speed and duplex settings */
Cyril Chemparathy5d69e002010-09-15 10:11:24 -04001623 dev_notice(emac_dev, "no phy, defaulting to 100/full\n");
Anant Golea6286ee2009-05-18 15:19:01 -07001624 priv->link = 1;
1625 priv->speed = SPEED_100;
1626 priv->duplex = DUPLEX_FULL;
1627 emac_update_phystatus(priv);
1628 }
1629
1630 if (!netif_running(ndev)) /* debug only - to avoid compiler warning */
1631 emac_dump_regs(priv);
1632
1633 if (netif_msg_drv(priv))
1634 dev_notice(emac_dev, "DaVinci EMAC: Opened %s\n", ndev->name);
1635
Cyril Chemparathy5d69e002010-09-15 10:11:24 -04001636 if (priv->phydev)
Anant Golea6286ee2009-05-18 15:19:01 -07001637 phy_start(priv->phydev);
1638
1639 return 0;
1640
1641rollback:
1642
1643 dev_err(emac_dev, "DaVinci EMAC: request_irq() failed");
1644
1645 for (q = k; k >= 0; k--) {
1646 for (m = i; m >= res->start; m--)
1647 free_irq(m, ndev);
1648 res = platform_get_resource(priv->pdev, IORESOURCE_IRQ, k-1);
1649 m = res->end;
1650 }
Mark A. Greer3ba97382012-07-20 15:19:22 +00001651
1652 ret = -EBUSY;
1653err:
1654 pm_runtime_put(&priv->pdev->dev);
1655 return ret;
Anant Golea6286ee2009-05-18 15:19:01 -07001656}
1657
1658/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001659 * emac_dev_stop - EMAC device stop
Anant Golea6286ee2009-05-18 15:19:01 -07001660 * @ndev: The DaVinci EMAC network adapter
1661 *
1662 * Called when system wants to stop or down the interface. We stop the network
1663 * queue, disable interrupts and cleanup TX/RX channels.
1664 *
1665 * We return the statistics in net_device_stats structure pulled from emac
1666 */
1667static int emac_dev_stop(struct net_device *ndev)
1668{
1669 struct resource *res;
1670 int i = 0;
1671 int irq_num;
1672 struct emac_priv *priv = netdev_priv(ndev);
1673 struct device *emac_dev = &ndev->dev;
1674
1675 /* inform the upper layers. */
1676 netif_stop_queue(ndev);
1677 napi_disable(&priv->napi);
1678
1679 netif_carrier_off(ndev);
1680 emac_int_disable(priv);
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001681 cpdma_ctlr_stop(priv->dma);
Anant Golea6286ee2009-05-18 15:19:01 -07001682 emac_write(EMAC_SOFTRESET, 1);
1683
1684 if (priv->phydev)
1685 phy_disconnect(priv->phydev);
1686
1687 /* Free IRQ */
1688 while ((res = platform_get_resource(priv->pdev, IORESOURCE_IRQ, i))) {
1689 for (irq_num = res->start; irq_num <= res->end; irq_num++)
1690 free_irq(irq_num, priv->ndev);
1691 i++;
1692 }
1693
1694 if (netif_msg_drv(priv))
1695 dev_notice(emac_dev, "DaVinci EMAC: %s stopped\n", ndev->name);
1696
Mark A. Greer3ba97382012-07-20 15:19:22 +00001697 pm_runtime_put(&priv->pdev->dev);
Anant Golea6286ee2009-05-18 15:19:01 -07001698 return 0;
1699}
1700
1701/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001702 * emac_dev_getnetstats - EMAC get statistics function
Anant Golea6286ee2009-05-18 15:19:01 -07001703 * @ndev: The DaVinci EMAC network adapter
1704 *
1705 * Called when system wants to get statistics from the device.
1706 *
1707 * We return the statistics in net_device_stats structure pulled from emac
1708 */
1709static struct net_device_stats *emac_dev_getnetstats(struct net_device *ndev)
1710{
1711 struct emac_priv *priv = netdev_priv(ndev);
Sriram0fe74632009-10-07 02:44:30 +00001712 u32 mac_control;
1713 u32 stats_clear_mask;
Anant Golea6286ee2009-05-18 15:19:01 -07001714
1715 /* update emac hardware stats and reset the registers*/
1716
Sriram0fe74632009-10-07 02:44:30 +00001717 mac_control = emac_read(EMAC_MACCONTROL);
1718
1719 if (mac_control & EMAC_MACCONTROL_GMIIEN)
1720 stats_clear_mask = EMAC_STATS_CLR_MASK;
1721 else
1722 stats_clear_mask = 0;
1723
Kulikov Vasiliy78e8c532010-07-05 02:13:26 +00001724 ndev->stats.multicast += emac_read(EMAC_RXMCASTFRAMES);
Sriram0fe74632009-10-07 02:44:30 +00001725 emac_write(EMAC_RXMCASTFRAMES, stats_clear_mask);
Anant Golea6286ee2009-05-18 15:19:01 -07001726
Kulikov Vasiliy78e8c532010-07-05 02:13:26 +00001727 ndev->stats.collisions += (emac_read(EMAC_TXCOLLISION) +
Anant Golea6286ee2009-05-18 15:19:01 -07001728 emac_read(EMAC_TXSINGLECOLL) +
1729 emac_read(EMAC_TXMULTICOLL));
Sriram0fe74632009-10-07 02:44:30 +00001730 emac_write(EMAC_TXCOLLISION, stats_clear_mask);
1731 emac_write(EMAC_TXSINGLECOLL, stats_clear_mask);
1732 emac_write(EMAC_TXMULTICOLL, stats_clear_mask);
Anant Golea6286ee2009-05-18 15:19:01 -07001733
Kulikov Vasiliy78e8c532010-07-05 02:13:26 +00001734 ndev->stats.rx_length_errors += (emac_read(EMAC_RXOVERSIZED) +
Anant Golea6286ee2009-05-18 15:19:01 -07001735 emac_read(EMAC_RXJABBER) +
1736 emac_read(EMAC_RXUNDERSIZED));
Sriram0fe74632009-10-07 02:44:30 +00001737 emac_write(EMAC_RXOVERSIZED, stats_clear_mask);
1738 emac_write(EMAC_RXJABBER, stats_clear_mask);
1739 emac_write(EMAC_RXUNDERSIZED, stats_clear_mask);
Anant Golea6286ee2009-05-18 15:19:01 -07001740
Kulikov Vasiliy78e8c532010-07-05 02:13:26 +00001741 ndev->stats.rx_over_errors += (emac_read(EMAC_RXSOFOVERRUNS) +
Anant Golea6286ee2009-05-18 15:19:01 -07001742 emac_read(EMAC_RXMOFOVERRUNS));
Sriram0fe74632009-10-07 02:44:30 +00001743 emac_write(EMAC_RXSOFOVERRUNS, stats_clear_mask);
1744 emac_write(EMAC_RXMOFOVERRUNS, stats_clear_mask);
Anant Golea6286ee2009-05-18 15:19:01 -07001745
Kulikov Vasiliy78e8c532010-07-05 02:13:26 +00001746 ndev->stats.rx_fifo_errors += emac_read(EMAC_RXDMAOVERRUNS);
Sriram0fe74632009-10-07 02:44:30 +00001747 emac_write(EMAC_RXDMAOVERRUNS, stats_clear_mask);
Anant Golea6286ee2009-05-18 15:19:01 -07001748
Kulikov Vasiliy78e8c532010-07-05 02:13:26 +00001749 ndev->stats.tx_carrier_errors +=
Anant Golea6286ee2009-05-18 15:19:01 -07001750 emac_read(EMAC_TXCARRIERSENSE);
Sriram0fe74632009-10-07 02:44:30 +00001751 emac_write(EMAC_TXCARRIERSENSE, stats_clear_mask);
Anant Golea6286ee2009-05-18 15:19:01 -07001752
Thomas Lange60aeba22011-03-09 04:41:16 +00001753 ndev->stats.tx_fifo_errors += emac_read(EMAC_TXUNDERRUN);
Sriram0fe74632009-10-07 02:44:30 +00001754 emac_write(EMAC_TXUNDERRUN, stats_clear_mask);
Anant Golea6286ee2009-05-18 15:19:01 -07001755
Kulikov Vasiliy78e8c532010-07-05 02:13:26 +00001756 return &ndev->stats;
Anant Golea6286ee2009-05-18 15:19:01 -07001757}
1758
1759static const struct net_device_ops emac_netdev_ops = {
1760 .ndo_open = emac_dev_open,
1761 .ndo_stop = emac_dev_stop,
1762 .ndo_start_xmit = emac_dev_xmit,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001763 .ndo_set_rx_mode = emac_dev_mcast_set,
Anant Golea6286ee2009-05-18 15:19:01 -07001764 .ndo_set_mac_address = emac_dev_setmac_addr,
1765 .ndo_do_ioctl = emac_devioctl,
1766 .ndo_tx_timeout = emac_dev_tx_timeout,
1767 .ndo_get_stats = emac_dev_getnetstats,
1768#ifdef CONFIG_NET_POLL_CONTROLLER
1769 .ndo_poll_controller = emac_poll_controller,
1770#endif
1771};
1772
Heiko Schocher42f59962012-07-17 00:34:24 +00001773#ifdef CONFIG_OF
1774static struct emac_platform_data
1775 *davinci_emac_of_get_pdata(struct platform_device *pdev,
1776 struct emac_priv *priv)
1777{
1778 struct device_node *np;
1779 struct emac_platform_data *pdata = NULL;
1780 const u8 *mac_addr;
1781 u32 data;
1782 int ret;
1783
1784 pdata = pdev->dev.platform_data;
1785 if (!pdata) {
1786 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
1787 if (!pdata)
1788 goto nodata;
1789 }
1790
1791 np = pdev->dev.of_node;
1792 if (!np)
1793 goto nodata;
1794 else
1795 pdata->version = EMAC_VERSION_2;
1796
1797 if (!is_valid_ether_addr(pdata->mac_addr)) {
1798 mac_addr = of_get_mac_address(np);
1799 if (mac_addr)
1800 memcpy(pdata->mac_addr, mac_addr, ETH_ALEN);
1801 }
1802
1803 ret = of_property_read_u32(np, "ti,davinci-ctrl-reg-offset", &data);
1804 if (!ret)
1805 pdata->ctrl_reg_offset = data;
1806
1807 ret = of_property_read_u32(np, "ti,davinci-ctrl-mod-reg-offset",
1808 &data);
1809 if (!ret)
1810 pdata->ctrl_mod_reg_offset = data;
1811
1812 ret = of_property_read_u32(np, "ti,davinci-ctrl-ram-offset", &data);
1813 if (!ret)
1814 pdata->ctrl_ram_offset = data;
1815
1816 ret = of_property_read_u32(np, "ti,davinci-ctrl-ram-size", &data);
1817 if (!ret)
1818 pdata->ctrl_ram_size = data;
1819
1820 ret = of_property_read_u32(np, "ti,davinci-rmii-en", &data);
1821 if (!ret)
1822 pdata->rmii_en = data;
1823
1824 ret = of_property_read_u32(np, "ti,davinci-no-bd-ram", &data);
1825 if (!ret)
1826 pdata->no_bd_ram = data;
1827
1828 priv->phy_node = of_parse_phandle(np, "phy-handle", 0);
1829 if (!priv->phy_node)
1830 pdata->phy_id = "";
1831
1832 pdev->dev.platform_data = pdata;
1833nodata:
1834 return pdata;
1835}
1836#else
1837static struct emac_platform_data
1838 *davinci_emac_of_get_pdata(struct platform_device *pdev,
1839 struct emac_priv *priv)
1840{
1841 return pdev->dev.platform_data;
1842}
1843#endif
Anant Golea6286ee2009-05-18 15:19:01 -07001844/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001845 * davinci_emac_probe - EMAC device probe
Anant Golea6286ee2009-05-18 15:19:01 -07001846 * @pdev: The DaVinci EMAC device that we are removing
1847 *
1848 * Called when probing for emac devicesr. We get details of instances and
1849 * resource information from platform init and register a network device
1850 * and allocate resources necessary for driver to perform
1851 */
Bill Pembertone38921d2012-12-03 09:24:03 -05001852static int davinci_emac_probe(struct platform_device *pdev)
Anant Golea6286ee2009-05-18 15:19:01 -07001853{
1854 int rc = 0;
1855 struct resource *res;
1856 struct net_device *ndev;
1857 struct emac_priv *priv;
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001858 unsigned long size, hw_ram_addr;
Anant Golea6286ee2009-05-18 15:19:01 -07001859 struct emac_platform_data *pdata;
1860 struct device *emac_dev;
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001861 struct cpdma_params dma_params;
Mark A. Greer3ba97382012-07-20 15:19:22 +00001862 struct clk *emac_clk;
1863 unsigned long emac_bus_frequency;
1864
Anant Golea6286ee2009-05-18 15:19:01 -07001865
1866 /* obtain emac clock from kernel */
1867 emac_clk = clk_get(&pdev->dev, NULL);
1868 if (IS_ERR(emac_clk)) {
Johan Hovold240b2622011-05-26 04:37:32 +00001869 dev_err(&pdev->dev, "failed to get EMAC clock\n");
Anant Golea6286ee2009-05-18 15:19:01 -07001870 return -EBUSY;
1871 }
1872 emac_bus_frequency = clk_get_rate(emac_clk);
Mark A. Greer3ba97382012-07-20 15:19:22 +00001873 clk_put(emac_clk);
1874
Anant Golea6286ee2009-05-18 15:19:01 -07001875 /* TODO: Probe PHY here if possible */
1876
1877 ndev = alloc_etherdev(sizeof(struct emac_priv));
1878 if (!ndev) {
Julia Lawallb722dbf2011-06-01 07:10:10 +00001879 rc = -ENOMEM;
Mark A. Greer3ba97382012-07-20 15:19:22 +00001880 goto no_ndev;
Anant Golea6286ee2009-05-18 15:19:01 -07001881 }
1882
1883 platform_set_drvdata(pdev, ndev);
1884 priv = netdev_priv(ndev);
1885 priv->pdev = pdev;
1886 priv->ndev = ndev;
1887 priv->msg_enable = netif_msg_init(debug_level, DAVINCI_EMAC_DEBUG);
1888
Anant Golea6286ee2009-05-18 15:19:01 -07001889 spin_lock_init(&priv->lock);
1890
Heiko Schocher42f59962012-07-17 00:34:24 +00001891 pdata = davinci_emac_of_get_pdata(pdev, priv);
Anant Golea6286ee2009-05-18 15:19:01 -07001892 if (!pdata) {
Johan Hovold240b2622011-05-26 04:37:32 +00001893 dev_err(&pdev->dev, "no platform data\n");
Julia Lawallb722dbf2011-06-01 07:10:10 +00001894 rc = -ENODEV;
1895 goto probe_quit;
Anant Golea6286ee2009-05-18 15:19:01 -07001896 }
1897
1898 /* MAC addr and PHY mask , RMII enable info from platform_data */
1899 memcpy(priv->mac_addr, pdata->mac_addr, 6);
Cyril Chemparathy5d69e002010-09-15 10:11:24 -04001900 priv->phy_id = pdata->phy_id;
Anant Golea6286ee2009-05-18 15:19:01 -07001901 priv->rmii_en = pdata->rmii_en;
1902 priv->version = pdata->version;
Sriramakrishnan01a9af32009-11-19 15:58:26 +05301903 priv->int_enable = pdata->interrupt_enable;
1904 priv->int_disable = pdata->interrupt_disable;
1905
Sriram84da2652010-07-29 02:33:58 +00001906 priv->coal_intvl = 0;
1907 priv->bus_freq_mhz = (u32)(emac_bus_frequency / 1000000);
1908
Anant Golea6286ee2009-05-18 15:19:01 -07001909 emac_dev = &ndev->dev;
1910 /* Get EMAC platform data */
1911 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1912 if (!res) {
Johan Hovold240b2622011-05-26 04:37:32 +00001913 dev_err(&pdev->dev,"error getting res\n");
Anant Golea6286ee2009-05-18 15:19:01 -07001914 rc = -ENOENT;
1915 goto probe_quit;
1916 }
1917
1918 priv->emac_base_phys = res->start + pdata->ctrl_reg_offset;
Joe Perches28f65c112011-06-09 09:13:32 -07001919 size = resource_size(res);
Anant Golea6286ee2009-05-18 15:19:01 -07001920 if (!request_mem_region(res->start, size, ndev->name)) {
Johan Hovold240b2622011-05-26 04:37:32 +00001921 dev_err(&pdev->dev, "failed request_mem_region() for regs\n");
Anant Golea6286ee2009-05-18 15:19:01 -07001922 rc = -ENXIO;
1923 goto probe_quit;
1924 }
1925
1926 priv->remap_addr = ioremap(res->start, size);
1927 if (!priv->remap_addr) {
Johan Hovold240b2622011-05-26 04:37:32 +00001928 dev_err(&pdev->dev, "unable to map IO\n");
Anant Golea6286ee2009-05-18 15:19:01 -07001929 rc = -ENOMEM;
1930 release_mem_region(res->start, size);
1931 goto probe_quit;
1932 }
1933 priv->emac_base = priv->remap_addr + pdata->ctrl_reg_offset;
1934 ndev->base_addr = (unsigned long)priv->remap_addr;
1935
1936 priv->ctrl_base = priv->remap_addr + pdata->ctrl_mod_reg_offset;
Anant Golea6286ee2009-05-18 15:19:01 -07001937
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001938 hw_ram_addr = pdata->hw_ram_addr;
1939 if (!hw_ram_addr)
1940 hw_ram_addr = (u32 __force)res->start + pdata->ctrl_ram_offset;
1941
1942 memset(&dma_params, 0, sizeof(dma_params));
1943 dma_params.dev = emac_dev;
1944 dma_params.dmaregs = priv->emac_base;
1945 dma_params.rxthresh = priv->emac_base + 0x120;
1946 dma_params.rxfree = priv->emac_base + 0x140;
1947 dma_params.txhdp = priv->emac_base + 0x600;
1948 dma_params.rxhdp = priv->emac_base + 0x620;
1949 dma_params.txcp = priv->emac_base + 0x640;
1950 dma_params.rxcp = priv->emac_base + 0x660;
1951 dma_params.num_chan = EMAC_MAX_TXRX_CHANNELS;
1952 dma_params.min_packet_size = EMAC_DEF_MIN_ETHPKTSIZE;
Sriram6a1fef62011-03-22 02:31:03 +00001953 dma_params.desc_hw_addr = hw_ram_addr;
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001954 dma_params.desc_mem_size = pdata->ctrl_ram_size;
1955 dma_params.desc_align = 16;
1956
Sriram6a1fef62011-03-22 02:31:03 +00001957 dma_params.desc_mem_phys = pdata->no_bd_ram ? 0 :
1958 (u32 __force)res->start + pdata->ctrl_ram_offset;
1959
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001960 priv->dma = cpdma_ctlr_create(&dma_params);
1961 if (!priv->dma) {
Johan Hovold240b2622011-05-26 04:37:32 +00001962 dev_err(&pdev->dev, "error initializing DMA\n");
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001963 rc = -ENOMEM;
1964 goto no_dma;
1965 }
1966
1967 priv->txchan = cpdma_chan_create(priv->dma, tx_chan_num(EMAC_DEF_TX_CH),
1968 emac_tx_handler);
1969 priv->rxchan = cpdma_chan_create(priv->dma, rx_chan_num(EMAC_DEF_RX_CH),
1970 emac_rx_handler);
1971 if (WARN_ON(!priv->txchan || !priv->rxchan)) {
1972 rc = -ENOMEM;
1973 goto no_irq_res;
1974 }
Sriramakrishnanad021ae2009-11-19 15:58:27 +05301975
Anant Golea6286ee2009-05-18 15:19:01 -07001976 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1977 if (!res) {
Johan Hovold240b2622011-05-26 04:37:32 +00001978 dev_err(&pdev->dev, "error getting irq res\n");
Anant Golea6286ee2009-05-18 15:19:01 -07001979 rc = -ENOENT;
1980 goto no_irq_res;
1981 }
1982 ndev->irq = res->start;
1983
1984 if (!is_valid_ether_addr(priv->mac_addr)) {
Anant Golea6286ee2009-05-18 15:19:01 -07001985 /* Use random MAC if none passed */
Danny Kukawkabaf1d372012-02-17 05:43:24 +00001986 eth_hw_addr_random(ndev);
1987 memcpy(priv->mac_addr, ndev->dev_addr, ndev->addr_len);
Johan Hovold240b2622011-05-26 04:37:32 +00001988 dev_warn(&pdev->dev, "using random MAC addr: %pM\n",
1989 priv->mac_addr);
Anant Golea6286ee2009-05-18 15:19:01 -07001990 }
1991
1992 ndev->netdev_ops = &emac_netdev_ops;
1993 SET_ETHTOOL_OPS(ndev, &ethtool_ops);
1994 netif_napi_add(ndev, &priv->napi, emac_poll, EMAC_POLL_WEIGHT);
1995
1996 /* register the network device */
1997 SET_NETDEV_DEV(ndev, &pdev->dev);
1998 rc = register_netdev(ndev);
1999 if (rc) {
Johan Hovold240b2622011-05-26 04:37:32 +00002000 dev_err(&pdev->dev, "error in register_netdev\n");
Anant Golea6286ee2009-05-18 15:19:01 -07002001 rc = -ENODEV;
Mark A. Greer3ba97382012-07-20 15:19:22 +00002002 goto no_irq_res;
Anant Golea6286ee2009-05-18 15:19:01 -07002003 }
2004
Anant Golea6286ee2009-05-18 15:19:01 -07002005
Anant Golea6286ee2009-05-18 15:19:01 -07002006 if (netif_msg_probe(priv)) {
2007 dev_notice(emac_dev, "DaVinci EMAC Probe found device "\
2008 "(regs: %p, irq: %d)\n",
2009 (void *)priv->emac_base_phys, ndev->irq);
2010 }
Mark A. Greer3ba97382012-07-20 15:19:22 +00002011
2012 pm_runtime_enable(&pdev->dev);
2013 pm_runtime_resume(&pdev->dev);
2014
Anant Golea6286ee2009-05-18 15:19:01 -07002015 return 0;
2016
Anant Golea6286ee2009-05-18 15:19:01 -07002017no_irq_res:
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04002018 if (priv->txchan)
2019 cpdma_chan_destroy(priv->txchan);
2020 if (priv->rxchan)
2021 cpdma_chan_destroy(priv->rxchan);
2022 cpdma_ctlr_destroy(priv->dma);
2023no_dma:
Anant Golea6286ee2009-05-18 15:19:01 -07002024 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Joe Perches28f65c112011-06-09 09:13:32 -07002025 release_mem_region(res->start, resource_size(res));
Anant Golea6286ee2009-05-18 15:19:01 -07002026 iounmap(priv->remap_addr);
2027
2028probe_quit:
Anant Golea6286ee2009-05-18 15:19:01 -07002029 free_netdev(ndev);
Mark A. Greer3ba97382012-07-20 15:19:22 +00002030no_ndev:
Anant Golea6286ee2009-05-18 15:19:01 -07002031 return rc;
2032}
2033
2034/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00002035 * davinci_emac_remove - EMAC device remove
Anant Golea6286ee2009-05-18 15:19:01 -07002036 * @pdev: The DaVinci EMAC device that we are removing
2037 *
2038 * Called when removing the device driver. We disable clock usage and release
2039 * the resources taken up by the driver and unregister network device
2040 */
Bill Pembertone38921d2012-12-03 09:24:03 -05002041static int davinci_emac_remove(struct platform_device *pdev)
Anant Golea6286ee2009-05-18 15:19:01 -07002042{
2043 struct resource *res;
2044 struct net_device *ndev = platform_get_drvdata(pdev);
2045 struct emac_priv *priv = netdev_priv(ndev);
2046
2047 dev_notice(&ndev->dev, "DaVinci EMAC: davinci_emac_remove()\n");
2048
Anant Golea6286ee2009-05-18 15:19:01 -07002049 platform_set_drvdata(pdev, NULL);
2050 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Anant Golea6286ee2009-05-18 15:19:01 -07002051
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04002052 if (priv->txchan)
2053 cpdma_chan_destroy(priv->txchan);
2054 if (priv->rxchan)
2055 cpdma_chan_destroy(priv->rxchan);
2056 cpdma_ctlr_destroy(priv->dma);
2057
Joe Perches28f65c112011-06-09 09:13:32 -07002058 release_mem_region(res->start, resource_size(res));
Anant Golea6286ee2009-05-18 15:19:01 -07002059
2060 unregister_netdev(ndev);
Anant Golea6286ee2009-05-18 15:19:01 -07002061 iounmap(priv->remap_addr);
Stefan Weil2a1bc0d2010-08-03 08:53:45 +00002062 free_netdev(ndev);
Anant Golea6286ee2009-05-18 15:19:01 -07002063
Anant Golea6286ee2009-05-18 15:19:01 -07002064 return 0;
2065}
2066
chaithrika@ti.comd4fdcd92010-03-10 22:37:56 +00002067static int davinci_emac_suspend(struct device *dev)
Ranjith Lohithakshan8d044fe2009-11-04 22:06:20 -08002068{
chaithrika@ti.comd4fdcd92010-03-10 22:37:56 +00002069 struct platform_device *pdev = to_platform_device(dev);
2070 struct net_device *ndev = platform_get_drvdata(pdev);
Ranjith Lohithakshan8d044fe2009-11-04 22:06:20 -08002071
chaithrika@ti.comd4fdcd92010-03-10 22:37:56 +00002072 if (netif_running(ndev))
2073 emac_dev_stop(ndev);
Ranjith Lohithakshan8d044fe2009-11-04 22:06:20 -08002074
Ranjith Lohithakshan8d044fe2009-11-04 22:06:20 -08002075 return 0;
2076}
2077
chaithrika@ti.comd4fdcd92010-03-10 22:37:56 +00002078static int davinci_emac_resume(struct device *dev)
Ranjith Lohithakshan8d044fe2009-11-04 22:06:20 -08002079{
chaithrika@ti.comd4fdcd92010-03-10 22:37:56 +00002080 struct platform_device *pdev = to_platform_device(dev);
2081 struct net_device *ndev = platform_get_drvdata(pdev);
Ranjith Lohithakshan8d044fe2009-11-04 22:06:20 -08002082
chaithrika@ti.comd4fdcd92010-03-10 22:37:56 +00002083 if (netif_running(ndev))
2084 emac_dev_open(ndev);
Ranjith Lohithakshan8d044fe2009-11-04 22:06:20 -08002085
2086 return 0;
2087}
2088
chaithrika@ti.comd4fdcd92010-03-10 22:37:56 +00002089static const struct dev_pm_ops davinci_emac_pm_ops = {
2090 .suspend = davinci_emac_suspend,
2091 .resume = davinci_emac_resume,
2092};
2093
Heiko Schocher42f59962012-07-17 00:34:24 +00002094static const struct of_device_id davinci_emac_of_match[] = {
2095 {.compatible = "ti,davinci-dm6467-emac", },
2096 {},
2097};
2098MODULE_DEVICE_TABLE(of, davinci_emac_of_match);
2099
Ben Hutchings1aa8b472012-07-10 10:56:59 +00002100/* davinci_emac_driver: EMAC platform driver structure */
Anant Golea6286ee2009-05-18 15:19:01 -07002101static struct platform_driver davinci_emac_driver = {
2102 .driver = {
2103 .name = "davinci_emac",
2104 .owner = THIS_MODULE,
chaithrika@ti.comd4fdcd92010-03-10 22:37:56 +00002105 .pm = &davinci_emac_pm_ops,
Heiko Schocher42f59962012-07-17 00:34:24 +00002106 .of_match_table = of_match_ptr(davinci_emac_of_match),
Anant Golea6286ee2009-05-18 15:19:01 -07002107 },
2108 .probe = davinci_emac_probe,
Bill Pembertone38921d2012-12-03 09:24:03 -05002109 .remove = davinci_emac_remove,
Anant Golea6286ee2009-05-18 15:19:01 -07002110};
2111
2112/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00002113 * davinci_emac_init - EMAC driver module init
Anant Golea6286ee2009-05-18 15:19:01 -07002114 *
2115 * Called when initializing the driver. We register the driver with
2116 * the platform.
2117 */
2118static int __init davinci_emac_init(void)
2119{
2120 return platform_driver_register(&davinci_emac_driver);
2121}
Rajashekhara, Sudhakar2db95172009-08-19 10:39:55 +00002122late_initcall(davinci_emac_init);
Anant Golea6286ee2009-05-18 15:19:01 -07002123
2124/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00002125 * davinci_emac_exit - EMAC driver module exit
Anant Golea6286ee2009-05-18 15:19:01 -07002126 *
2127 * Called when exiting the driver completely. We unregister the driver with
2128 * the platform and exit
2129 */
2130static void __exit davinci_emac_exit(void)
2131{
2132 platform_driver_unregister(&davinci_emac_driver);
2133}
2134module_exit(davinci_emac_exit);
2135
2136MODULE_LICENSE("GPL");
2137MODULE_AUTHOR("DaVinci EMAC Maintainer: Anant Gole <anantgole@ti.com>");
2138MODULE_AUTHOR("DaVinci EMAC Maintainer: Chaithrika U S <chaithrika@ti.com>");
2139MODULE_DESCRIPTION("DaVinci EMAC Ethernet driver");