blob: ab0bbb78699a914ae40b140bb67fb2659689d5c3 [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>
Sriramakrishnan8ee2bf92009-11-19 15:58:25 +053060#include <linux/davinci_emac.h>
Anant Golea6286ee2009-05-18 15:19:01 -070061
62#include <asm/irq.h>
63#include <asm/page.h>
64
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -040065#include "davinci_cpdma.h"
66
Anant Golea6286ee2009-05-18 15:19:01 -070067static int debug_level;
68module_param(debug_level, int, 0);
69MODULE_PARM_DESC(debug_level, "DaVinci EMAC debug level (NETIF_MSG bits)");
70
71/* Netif debug messages possible */
72#define DAVINCI_EMAC_DEBUG (NETIF_MSG_DRV | \
73 NETIF_MSG_PROBE | \
74 NETIF_MSG_LINK | \
75 NETIF_MSG_TIMER | \
76 NETIF_MSG_IFDOWN | \
77 NETIF_MSG_IFUP | \
78 NETIF_MSG_RX_ERR | \
79 NETIF_MSG_TX_ERR | \
80 NETIF_MSG_TX_QUEUED | \
81 NETIF_MSG_INTR | \
82 NETIF_MSG_TX_DONE | \
83 NETIF_MSG_RX_STATUS | \
84 NETIF_MSG_PKTDATA | \
85 NETIF_MSG_HW | \
86 NETIF_MSG_WOL)
87
88/* version info */
89#define EMAC_MAJOR_VERSION 6
90#define EMAC_MINOR_VERSION 1
91#define EMAC_MODULE_VERSION "6.1"
92MODULE_VERSION(EMAC_MODULE_VERSION);
93static const char emac_version_string[] = "TI DaVinci EMAC Linux v6.1";
94
95/* Configuration items */
Lucas De Marchi25985ed2011-03-30 22:57:33 -030096#define EMAC_DEF_PASS_CRC (0) /* Do not pass CRC up to frames */
Anant Golea6286ee2009-05-18 15:19:01 -070097#define EMAC_DEF_QOS_EN (0) /* EMAC proprietary QoS disabled */
98#define EMAC_DEF_NO_BUFF_CHAIN (0) /* No buffer chain */
99#define EMAC_DEF_MACCTRL_FRAME_EN (0) /* Discard Maccontrol frames */
100#define EMAC_DEF_SHORT_FRAME_EN (0) /* Discard short frames */
101#define EMAC_DEF_ERROR_FRAME_EN (0) /* Discard error frames */
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300102#define EMAC_DEF_PROM_EN (0) /* Promiscuous disabled */
103#define EMAC_DEF_PROM_CH (0) /* Promiscuous channel is 0 */
Anant Golea6286ee2009-05-18 15:19:01 -0700104#define EMAC_DEF_BCAST_EN (1) /* Broadcast enabled */
105#define EMAC_DEF_BCAST_CH (0) /* Broadcast channel is 0 */
106#define EMAC_DEF_MCAST_EN (1) /* Multicast enabled */
107#define EMAC_DEF_MCAST_CH (0) /* Multicast channel is 0 */
108
109#define EMAC_DEF_TXPRIO_FIXED (1) /* TX Priority is fixed */
110#define EMAC_DEF_TXPACING_EN (0) /* TX pacing NOT supported*/
111
112#define EMAC_DEF_BUFFER_OFFSET (0) /* Buffer offset to DMA (future) */
113#define EMAC_DEF_MIN_ETHPKTSIZE (60) /* Minimum ethernet pkt size */
114#define EMAC_DEF_MAX_FRAME_SIZE (1500 + 14 + 4 + 4)
115#define EMAC_DEF_TX_CH (0) /* Default 0th channel */
116#define EMAC_DEF_RX_CH (0) /* Default 0th channel */
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -0400117#define EMAC_DEF_RX_NUM_DESC (128)
Sascha Hauer86d8c072012-01-03 05:27:47 +0000118#define EMAC_DEF_TX_NUM_DESC (128)
Anant Golea6286ee2009-05-18 15:19:01 -0700119#define EMAC_DEF_MAX_TX_CH (1) /* Max TX channels configured */
120#define EMAC_DEF_MAX_RX_CH (1) /* Max RX channels configured */
121#define EMAC_POLL_WEIGHT (64) /* Default NAPI poll weight */
122
123/* Buffer descriptor parameters */
124#define EMAC_DEF_TX_MAX_SERVICE (32) /* TX max service BD's */
125#define EMAC_DEF_RX_MAX_SERVICE (64) /* should = netdev->weight */
126
127/* EMAC register related defines */
128#define EMAC_ALL_MULTI_REG_VALUE (0xFFFFFFFF)
129#define EMAC_NUM_MULTICAST_BITS (64)
Anant Golea6286ee2009-05-18 15:19:01 -0700130#define EMAC_TX_CONTROL_TX_ENABLE_VAL (0x1)
131#define EMAC_RX_CONTROL_RX_ENABLE_VAL (0x1)
132#define EMAC_MAC_HOST_ERR_INTMASK_VAL (0x2)
133#define EMAC_RX_UNICAST_CLEAR_ALL (0xFF)
134#define EMAC_INT_MASK_CLEAR (0xFF)
135
136/* RX MBP register bit positions */
137#define EMAC_RXMBP_PASSCRC_MASK BIT(30)
138#define EMAC_RXMBP_QOSEN_MASK BIT(29)
139#define EMAC_RXMBP_NOCHAIN_MASK BIT(28)
140#define EMAC_RXMBP_CMFEN_MASK BIT(24)
141#define EMAC_RXMBP_CSFEN_MASK BIT(23)
142#define EMAC_RXMBP_CEFEN_MASK BIT(22)
143#define EMAC_RXMBP_CAFEN_MASK BIT(21)
144#define EMAC_RXMBP_PROMCH_SHIFT (16)
145#define EMAC_RXMBP_PROMCH_MASK (0x7 << 16)
146#define EMAC_RXMBP_BROADEN_MASK BIT(13)
147#define EMAC_RXMBP_BROADCH_SHIFT (8)
148#define EMAC_RXMBP_BROADCH_MASK (0x7 << 8)
149#define EMAC_RXMBP_MULTIEN_MASK BIT(5)
150#define EMAC_RXMBP_MULTICH_SHIFT (0)
151#define EMAC_RXMBP_MULTICH_MASK (0x7)
152#define EMAC_RXMBP_CHMASK (0x7)
153
154/* EMAC register definitions/bit maps used */
155# define EMAC_MBP_RXPROMISC (0x00200000)
156# define EMAC_MBP_PROMISCCH(ch) (((ch) & 0x7) << 16)
157# define EMAC_MBP_RXBCAST (0x00002000)
158# define EMAC_MBP_BCASTCHAN(ch) (((ch) & 0x7) << 8)
159# define EMAC_MBP_RXMCAST (0x00000020)
160# define EMAC_MBP_MCASTCHAN(ch) ((ch) & 0x7)
161
162/* EMAC mac_control register */
chaithrika@ti.com69ef9692009-10-01 10:25:19 +0000163#define EMAC_MACCONTROL_TXPTYPE BIT(9)
164#define EMAC_MACCONTROL_TXPACEEN BIT(6)
165#define EMAC_MACCONTROL_GMIIEN BIT(5)
166#define EMAC_MACCONTROL_GIGABITEN BIT(7)
167#define EMAC_MACCONTROL_FULLDUPLEXEN BIT(0)
Anant Golea6286ee2009-05-18 15:19:01 -0700168#define EMAC_MACCONTROL_RMIISPEED_MASK BIT(15)
169
170/* GIGABIT MODE related bits */
Anant Golea6286ee2009-05-18 15:19:01 -0700171#define EMAC_DM646X_MACCONTORL_GIG BIT(7)
172#define EMAC_DM646X_MACCONTORL_GIGFORCE BIT(17)
173
174/* EMAC mac_status register */
175#define EMAC_MACSTATUS_TXERRCODE_MASK (0xF00000)
176#define EMAC_MACSTATUS_TXERRCODE_SHIFT (20)
177#define EMAC_MACSTATUS_TXERRCH_MASK (0x7)
178#define EMAC_MACSTATUS_TXERRCH_SHIFT (16)
179#define EMAC_MACSTATUS_RXERRCODE_MASK (0xF000)
180#define EMAC_MACSTATUS_RXERRCODE_SHIFT (12)
181#define EMAC_MACSTATUS_RXERRCH_MASK (0x7)
182#define EMAC_MACSTATUS_RXERRCH_SHIFT (8)
183
184/* EMAC RX register masks */
185#define EMAC_RX_MAX_LEN_MASK (0xFFFF)
186#define EMAC_RX_BUFFER_OFFSET_MASK (0xFFFF)
187
188/* MAC_IN_VECTOR (0x180) register bit fields */
chaithrika@ti.com69ef9692009-10-01 10:25:19 +0000189#define EMAC_DM644X_MAC_IN_VECTOR_HOST_INT BIT(17)
190#define EMAC_DM644X_MAC_IN_VECTOR_STATPEND_INT BIT(16)
191#define EMAC_DM644X_MAC_IN_VECTOR_RX_INT_VEC BIT(8)
192#define EMAC_DM644X_MAC_IN_VECTOR_TX_INT_VEC BIT(0)
Anant Golea6286ee2009-05-18 15:19:01 -0700193
194/** NOTE:: For DM646x the IN_VECTOR has changed */
195#define EMAC_DM646X_MAC_IN_VECTOR_RX_INT_VEC BIT(EMAC_DEF_RX_CH)
196#define EMAC_DM646X_MAC_IN_VECTOR_TX_INT_VEC BIT(16 + EMAC_DEF_TX_CH)
Sriram43c2ed82009-09-24 19:15:18 +0000197#define EMAC_DM646X_MAC_IN_VECTOR_HOST_INT BIT(26)
198#define EMAC_DM646X_MAC_IN_VECTOR_STATPEND_INT BIT(27)
199
Anant Golea6286ee2009-05-18 15:19:01 -0700200/* CPPI bit positions */
201#define EMAC_CPPI_SOP_BIT BIT(31)
202#define EMAC_CPPI_EOP_BIT BIT(30)
203#define EMAC_CPPI_OWNERSHIP_BIT BIT(29)
204#define EMAC_CPPI_EOQ_BIT BIT(28)
205#define EMAC_CPPI_TEARDOWN_COMPLETE_BIT BIT(27)
206#define EMAC_CPPI_PASS_CRC_BIT BIT(26)
207#define EMAC_RX_BD_BUF_SIZE (0xFFFF)
208#define EMAC_BD_LENGTH_FOR_CACHE (16) /* only CPPI bytes */
209#define EMAC_RX_BD_PKT_LENGTH_MASK (0xFFFF)
210
211/* Max hardware defines */
212#define EMAC_MAX_TXRX_CHANNELS (8) /* Max hardware channels */
213#define EMAC_DEF_MAX_MULTICAST_ADDRESSES (64) /* Max mcast addr's */
214
215/* EMAC Peripheral Device Register Memory Layout structure */
Anant Golea6286ee2009-05-18 15:19:01 -0700216#define EMAC_MACINVECTOR 0x90
217
218#define EMAC_DM646X_MACEOIVECTOR 0x94
219
Anant Golea6286ee2009-05-18 15:19:01 -0700220#define EMAC_MACINTSTATRAW 0xB0
221#define EMAC_MACINTSTATMASKED 0xB4
222#define EMAC_MACINTMASKSET 0xB8
223#define EMAC_MACINTMASKCLEAR 0xBC
224
225#define EMAC_RXMBPENABLE 0x100
226#define EMAC_RXUNICASTSET 0x104
227#define EMAC_RXUNICASTCLEAR 0x108
228#define EMAC_RXMAXLEN 0x10C
229#define EMAC_RXBUFFEROFFSET 0x110
230#define EMAC_RXFILTERLOWTHRESH 0x114
231
232#define EMAC_MACCONTROL 0x160
233#define EMAC_MACSTATUS 0x164
234#define EMAC_EMCONTROL 0x168
235#define EMAC_FIFOCONTROL 0x16C
236#define EMAC_MACCONFIG 0x170
237#define EMAC_SOFTRESET 0x174
238#define EMAC_MACSRCADDRLO 0x1D0
239#define EMAC_MACSRCADDRHI 0x1D4
240#define EMAC_MACHASH1 0x1D8
241#define EMAC_MACHASH2 0x1DC
242#define EMAC_MACADDRLO 0x500
243#define EMAC_MACADDRHI 0x504
244#define EMAC_MACINDEX 0x508
245
Anant Golea6286ee2009-05-18 15:19:01 -0700246/* EMAC statistics registers */
247#define EMAC_RXGOODFRAMES 0x200
248#define EMAC_RXBCASTFRAMES 0x204
249#define EMAC_RXMCASTFRAMES 0x208
250#define EMAC_RXPAUSEFRAMES 0x20C
251#define EMAC_RXCRCERRORS 0x210
252#define EMAC_RXALIGNCODEERRORS 0x214
253#define EMAC_RXOVERSIZED 0x218
254#define EMAC_RXJABBER 0x21C
255#define EMAC_RXUNDERSIZED 0x220
256#define EMAC_RXFRAGMENTS 0x224
257#define EMAC_RXFILTERED 0x228
258#define EMAC_RXQOSFILTERED 0x22C
259#define EMAC_RXOCTETS 0x230
260#define EMAC_TXGOODFRAMES 0x234
261#define EMAC_TXBCASTFRAMES 0x238
262#define EMAC_TXMCASTFRAMES 0x23C
263#define EMAC_TXPAUSEFRAMES 0x240
264#define EMAC_TXDEFERRED 0x244
265#define EMAC_TXCOLLISION 0x248
266#define EMAC_TXSINGLECOLL 0x24C
267#define EMAC_TXMULTICOLL 0x250
268#define EMAC_TXEXCESSIVECOLL 0x254
269#define EMAC_TXLATECOLL 0x258
270#define EMAC_TXUNDERRUN 0x25C
271#define EMAC_TXCARRIERSENSE 0x260
272#define EMAC_TXOCTETS 0x264
273#define EMAC_NETOCTETS 0x280
274#define EMAC_RXSOFOVERRUNS 0x284
275#define EMAC_RXMOFOVERRUNS 0x288
276#define EMAC_RXDMAOVERRUNS 0x28C
277
278/* EMAC DM644x control registers */
279#define EMAC_CTRL_EWCTL (0x4)
280#define EMAC_CTRL_EWINTTCNT (0x8)
281
Sriram84da2652010-07-29 02:33:58 +0000282/* EMAC DM644x control module masks */
283#define EMAC_DM644X_EWINTCNT_MASK 0x1FFFF
284#define EMAC_DM644X_INTMIN_INTVL 0x1
285#define EMAC_DM644X_INTMAX_INTVL (EMAC_DM644X_EWINTCNT_MASK)
286
Anant Golea6286ee2009-05-18 15:19:01 -0700287/* EMAC DM646X control module registers */
Sriram84da2652010-07-29 02:33:58 +0000288#define EMAC_DM646X_CMINTCTRL 0x0C
289#define EMAC_DM646X_CMRXINTEN 0x14
290#define EMAC_DM646X_CMTXINTEN 0x18
291#define EMAC_DM646X_CMRXINTMAX 0x70
292#define EMAC_DM646X_CMTXINTMAX 0x74
293
294/* EMAC DM646X control module masks */
295#define EMAC_DM646X_INTPACEEN (0x3 << 16)
296#define EMAC_DM646X_INTPRESCALE_MASK (0x7FF << 0)
297#define EMAC_DM646X_CMINTMAX_CNT 63
298#define EMAC_DM646X_CMINTMIN_CNT 2
299#define EMAC_DM646X_CMINTMAX_INTVL (1000 / EMAC_DM646X_CMINTMIN_CNT)
300#define EMAC_DM646X_CMINTMIN_INTVL ((1000 / EMAC_DM646X_CMINTMAX_CNT) + 1)
301
Anant Golea6286ee2009-05-18 15:19:01 -0700302
303/* EMAC EOI codes for C0 */
304#define EMAC_DM646X_MAC_EOI_C0_RXEN (0x01)
305#define EMAC_DM646X_MAC_EOI_C0_TXEN (0x02)
306
Sriram0fe74632009-10-07 02:44:30 +0000307/* EMAC Stats Clear Mask */
308#define EMAC_STATS_CLR_MASK (0xFFFFFFFF)
309
Anant Golea6286ee2009-05-18 15:19:01 -0700310/* emac_priv: EMAC private data structure
311 *
312 * EMAC adapter private data structure
313 */
314struct emac_priv {
315 u32 msg_enable;
316 struct net_device *ndev;
317 struct platform_device *pdev;
318 struct napi_struct napi;
319 char mac_addr[6];
Anant Golea6286ee2009-05-18 15:19:01 -0700320 void __iomem *remap_addr;
321 u32 emac_base_phys;
322 void __iomem *emac_base;
323 void __iomem *ctrl_base;
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -0400324 struct cpdma_ctlr *dma;
325 struct cpdma_chan *txchan;
326 struct cpdma_chan *rxchan;
Anant Golea6286ee2009-05-18 15:19:01 -0700327 u32 link; /* 1=link on, 0=link off */
328 u32 speed; /* 0=Auto Neg, 1=No PHY, 10,100, 1000 - mbps */
329 u32 duplex; /* Link duplex: 0=Half, 1=Full */
330 u32 rx_buf_size;
331 u32 isr_count;
Sriram84da2652010-07-29 02:33:58 +0000332 u32 coal_intvl;
333 u32 bus_freq_mhz;
Anant Golea6286ee2009-05-18 15:19:01 -0700334 u8 rmii_en;
335 u8 version;
Anant Golea6286ee2009-05-18 15:19:01 -0700336 u32 mac_hash1;
337 u32 mac_hash2;
338 u32 multicast_hash_cnt[EMAC_NUM_MULTICAST_BITS];
339 u32 rx_addr_type;
Sascha Hauer86d8c072012-01-03 05:27:47 +0000340 atomic_t cur_tx;
Cyril Chemparathy5d69e002010-09-15 10:11:24 -0400341 const char *phy_id;
Anant Golea6286ee2009-05-18 15:19:01 -0700342 struct phy_device *phydev;
343 spinlock_t lock;
Sriramakrishnan01a9af32009-11-19 15:58:26 +0530344 /*platform specific members*/
345 void (*int_enable) (void);
346 void (*int_disable) (void);
Anant Golea6286ee2009-05-18 15:19:01 -0700347};
348
349/* clock frequency for EMAC */
350static struct clk *emac_clk;
351static unsigned long emac_bus_frequency;
Anant Golea6286ee2009-05-18 15:19:01 -0700352
Anant Golea6286ee2009-05-18 15:19:01 -0700353/* EMAC TX Host Error description strings */
354static char *emac_txhost_errcodes[16] = {
355 "No error", "SOP error", "Ownership bit not set in SOP buffer",
356 "Zero Next Buffer Descriptor Pointer Without EOP",
357 "Zero Buffer Pointer", "Zero Buffer Length", "Packet Length Error",
358 "Reserved", "Reserved", "Reserved", "Reserved", "Reserved",
359 "Reserved", "Reserved", "Reserved", "Reserved"
360};
361
362/* EMAC RX Host Error description strings */
363static char *emac_rxhost_errcodes[16] = {
364 "No error", "Reserved", "Ownership bit not set in input buffer",
365 "Reserved", "Zero Buffer Pointer", "Reserved", "Reserved",
366 "Reserved", "Reserved", "Reserved", "Reserved", "Reserved",
367 "Reserved", "Reserved", "Reserved", "Reserved"
368};
369
370/* Helper macros */
371#define emac_read(reg) ioread32(priv->emac_base + (reg))
372#define emac_write(reg, val) iowrite32(val, priv->emac_base + (reg))
373
374#define emac_ctrl_read(reg) ioread32((priv->ctrl_base + (reg)))
375#define emac_ctrl_write(reg, val) iowrite32(val, (priv->ctrl_base + (reg)))
376
Anant Golea6286ee2009-05-18 15:19:01 -0700377/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000378 * emac_dump_regs - Dump important EMAC registers to debug terminal
Anant Golea6286ee2009-05-18 15:19:01 -0700379 * @priv: The DaVinci EMAC private adapter structure
380 *
381 * Executes ethtool set cmd & sets phy mode
382 *
383 */
384static void emac_dump_regs(struct emac_priv *priv)
385{
386 struct device *emac_dev = &priv->ndev->dev;
387
388 /* Print important registers in EMAC */
389 dev_info(emac_dev, "EMAC Basic registers\n");
Srirame9947622010-07-29 02:34:00 +0000390 if (priv->version == EMAC_VERSION_1) {
391 dev_info(emac_dev, "EMAC: EWCTL: %08X, EWINTTCNT: %08X\n",
392 emac_ctrl_read(EMAC_CTRL_EWCTL),
393 emac_ctrl_read(EMAC_CTRL_EWINTTCNT));
394 }
Anant Golea6286ee2009-05-18 15:19:01 -0700395 dev_info(emac_dev, "EMAC: EmuControl:%08X, FifoControl: %08X\n",
396 emac_read(EMAC_EMCONTROL), emac_read(EMAC_FIFOCONTROL));
397 dev_info(emac_dev, "EMAC: MBPEnable:%08X, RXUnicastSet: %08X, "\
398 "RXMaxLen=%08X\n", emac_read(EMAC_RXMBPENABLE),
399 emac_read(EMAC_RXUNICASTSET), emac_read(EMAC_RXMAXLEN));
400 dev_info(emac_dev, "EMAC: MacControl:%08X, MacStatus: %08X, "\
401 "MacConfig=%08X\n", emac_read(EMAC_MACCONTROL),
402 emac_read(EMAC_MACSTATUS), emac_read(EMAC_MACCONFIG));
Anant Golea6286ee2009-05-18 15:19:01 -0700403 dev_info(emac_dev, "EMAC Statistics\n");
404 dev_info(emac_dev, "EMAC: rx_good_frames:%d\n",
405 emac_read(EMAC_RXGOODFRAMES));
406 dev_info(emac_dev, "EMAC: rx_broadcast_frames:%d\n",
407 emac_read(EMAC_RXBCASTFRAMES));
408 dev_info(emac_dev, "EMAC: rx_multicast_frames:%d\n",
409 emac_read(EMAC_RXMCASTFRAMES));
410 dev_info(emac_dev, "EMAC: rx_pause_frames:%d\n",
411 emac_read(EMAC_RXPAUSEFRAMES));
412 dev_info(emac_dev, "EMAC: rx_crcerrors:%d\n",
413 emac_read(EMAC_RXCRCERRORS));
414 dev_info(emac_dev, "EMAC: rx_align_code_errors:%d\n",
415 emac_read(EMAC_RXALIGNCODEERRORS));
416 dev_info(emac_dev, "EMAC: rx_oversized_frames:%d\n",
417 emac_read(EMAC_RXOVERSIZED));
418 dev_info(emac_dev, "EMAC: rx_jabber_frames:%d\n",
419 emac_read(EMAC_RXJABBER));
420 dev_info(emac_dev, "EMAC: rx_undersized_frames:%d\n",
421 emac_read(EMAC_RXUNDERSIZED));
422 dev_info(emac_dev, "EMAC: rx_fragments:%d\n",
423 emac_read(EMAC_RXFRAGMENTS));
424 dev_info(emac_dev, "EMAC: rx_filtered_frames:%d\n",
425 emac_read(EMAC_RXFILTERED));
426 dev_info(emac_dev, "EMAC: rx_qos_filtered_frames:%d\n",
427 emac_read(EMAC_RXQOSFILTERED));
428 dev_info(emac_dev, "EMAC: rx_octets:%d\n",
429 emac_read(EMAC_RXOCTETS));
430 dev_info(emac_dev, "EMAC: tx_goodframes:%d\n",
431 emac_read(EMAC_TXGOODFRAMES));
432 dev_info(emac_dev, "EMAC: tx_bcastframes:%d\n",
433 emac_read(EMAC_TXBCASTFRAMES));
434 dev_info(emac_dev, "EMAC: tx_mcastframes:%d\n",
435 emac_read(EMAC_TXMCASTFRAMES));
436 dev_info(emac_dev, "EMAC: tx_pause_frames:%d\n",
437 emac_read(EMAC_TXPAUSEFRAMES));
438 dev_info(emac_dev, "EMAC: tx_deferred_frames:%d\n",
439 emac_read(EMAC_TXDEFERRED));
440 dev_info(emac_dev, "EMAC: tx_collision_frames:%d\n",
441 emac_read(EMAC_TXCOLLISION));
442 dev_info(emac_dev, "EMAC: tx_single_coll_frames:%d\n",
443 emac_read(EMAC_TXSINGLECOLL));
444 dev_info(emac_dev, "EMAC: tx_mult_coll_frames:%d\n",
445 emac_read(EMAC_TXMULTICOLL));
446 dev_info(emac_dev, "EMAC: tx_excessive_collisions:%d\n",
447 emac_read(EMAC_TXEXCESSIVECOLL));
448 dev_info(emac_dev, "EMAC: tx_late_collisions:%d\n",
449 emac_read(EMAC_TXLATECOLL));
450 dev_info(emac_dev, "EMAC: tx_underrun:%d\n",
451 emac_read(EMAC_TXUNDERRUN));
452 dev_info(emac_dev, "EMAC: tx_carrier_sense_errors:%d\n",
453 emac_read(EMAC_TXCARRIERSENSE));
454 dev_info(emac_dev, "EMAC: tx_octets:%d\n",
455 emac_read(EMAC_TXOCTETS));
456 dev_info(emac_dev, "EMAC: net_octets:%d\n",
457 emac_read(EMAC_NETOCTETS));
458 dev_info(emac_dev, "EMAC: rx_sof_overruns:%d\n",
459 emac_read(EMAC_RXSOFOVERRUNS));
460 dev_info(emac_dev, "EMAC: rx_mof_overruns:%d\n",
461 emac_read(EMAC_RXMOFOVERRUNS));
462 dev_info(emac_dev, "EMAC: rx_dma_overruns:%d\n",
463 emac_read(EMAC_RXDMAOVERRUNS));
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -0400464
465 cpdma_ctlr_dump(priv->dma);
Anant Golea6286ee2009-05-18 15:19:01 -0700466}
467
Anant Golea6286ee2009-05-18 15:19:01 -0700468/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000469 * emac_get_drvinfo - Get EMAC driver information
Anant Golea6286ee2009-05-18 15:19:01 -0700470 * @ndev: The DaVinci EMAC network adapter
471 * @info: ethtool info structure containing name and version
472 *
473 * Returns EMAC driver information (name and version)
474 *
475 */
476static void emac_get_drvinfo(struct net_device *ndev,
477 struct ethtool_drvinfo *info)
478{
479 strcpy(info->driver, emac_version_string);
480 strcpy(info->version, EMAC_MODULE_VERSION);
481}
482
483/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000484 * emac_get_settings - Get EMAC settings
Anant Golea6286ee2009-05-18 15:19:01 -0700485 * @ndev: The DaVinci EMAC network adapter
486 * @ecmd: ethtool command
487 *
488 * Executes ethool get command
489 *
490 */
491static int emac_get_settings(struct net_device *ndev,
492 struct ethtool_cmd *ecmd)
493{
494 struct emac_priv *priv = netdev_priv(ndev);
Cyril Chemparathy5d69e002010-09-15 10:11:24 -0400495 if (priv->phydev)
Anant Golea6286ee2009-05-18 15:19:01 -0700496 return phy_ethtool_gset(priv->phydev, ecmd);
497 else
498 return -EOPNOTSUPP;
499
500}
501
502/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000503 * emac_set_settings - Set EMAC settings
Anant Golea6286ee2009-05-18 15:19:01 -0700504 * @ndev: The DaVinci EMAC network adapter
505 * @ecmd: ethtool command
506 *
507 * Executes ethool set command
508 *
509 */
510static int emac_set_settings(struct net_device *ndev, struct ethtool_cmd *ecmd)
511{
512 struct emac_priv *priv = netdev_priv(ndev);
Cyril Chemparathy5d69e002010-09-15 10:11:24 -0400513 if (priv->phydev)
Anant Golea6286ee2009-05-18 15:19:01 -0700514 return phy_ethtool_sset(priv->phydev, ecmd);
515 else
516 return -EOPNOTSUPP;
517
518}
519
520/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000521 * emac_get_coalesce - Get interrupt coalesce settings for this device
Sriram84da2652010-07-29 02:33:58 +0000522 * @ndev : The DaVinci EMAC network adapter
523 * @coal : ethtool coalesce settings structure
524 *
525 * Fetch the current interrupt coalesce settings
526 *
527 */
528static int emac_get_coalesce(struct net_device *ndev,
529 struct ethtool_coalesce *coal)
530{
531 struct emac_priv *priv = netdev_priv(ndev);
532
533 coal->rx_coalesce_usecs = priv->coal_intvl;
534 return 0;
535
536}
537
538/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000539 * emac_set_coalesce - Set interrupt coalesce settings for this device
Sriram84da2652010-07-29 02:33:58 +0000540 * @ndev : The DaVinci EMAC network adapter
541 * @coal : ethtool coalesce settings structure
542 *
543 * Set interrupt coalesce parameters
544 *
545 */
546static int emac_set_coalesce(struct net_device *ndev,
547 struct ethtool_coalesce *coal)
548{
549 struct emac_priv *priv = netdev_priv(ndev);
550 u32 int_ctrl, num_interrupts = 0;
551 u32 prescale = 0, addnl_dvdr = 1, coal_intvl = 0;
552
553 if (!coal->rx_coalesce_usecs)
554 return -EINVAL;
555
556 coal_intvl = coal->rx_coalesce_usecs;
557
558 switch (priv->version) {
559 case EMAC_VERSION_2:
560 int_ctrl = emac_ctrl_read(EMAC_DM646X_CMINTCTRL);
561 prescale = priv->bus_freq_mhz * 4;
562
563 if (coal_intvl < EMAC_DM646X_CMINTMIN_INTVL)
564 coal_intvl = EMAC_DM646X_CMINTMIN_INTVL;
565
566 if (coal_intvl > EMAC_DM646X_CMINTMAX_INTVL) {
567 /*
568 * Interrupt pacer works with 4us Pulse, we can
569 * throttle further by dilating the 4us pulse.
570 */
571 addnl_dvdr = EMAC_DM646X_INTPRESCALE_MASK / prescale;
572
573 if (addnl_dvdr > 1) {
574 prescale *= addnl_dvdr;
575 if (coal_intvl > (EMAC_DM646X_CMINTMAX_INTVL
576 * addnl_dvdr))
577 coal_intvl = (EMAC_DM646X_CMINTMAX_INTVL
578 * addnl_dvdr);
579 } else {
580 addnl_dvdr = 1;
581 coal_intvl = EMAC_DM646X_CMINTMAX_INTVL;
582 }
583 }
584
585 num_interrupts = (1000 * addnl_dvdr) / coal_intvl;
586
587 int_ctrl |= EMAC_DM646X_INTPACEEN;
588 int_ctrl &= (~EMAC_DM646X_INTPRESCALE_MASK);
589 int_ctrl |= (prescale & EMAC_DM646X_INTPRESCALE_MASK);
590 emac_ctrl_write(EMAC_DM646X_CMINTCTRL, int_ctrl);
591
592 emac_ctrl_write(EMAC_DM646X_CMRXINTMAX, num_interrupts);
593 emac_ctrl_write(EMAC_DM646X_CMTXINTMAX, num_interrupts);
594
595 break;
596 default:
597 int_ctrl = emac_ctrl_read(EMAC_CTRL_EWINTTCNT);
598 int_ctrl &= (~EMAC_DM644X_EWINTCNT_MASK);
599 prescale = coal_intvl * priv->bus_freq_mhz;
600 if (prescale > EMAC_DM644X_EWINTCNT_MASK) {
601 prescale = EMAC_DM644X_EWINTCNT_MASK;
602 coal_intvl = prescale / priv->bus_freq_mhz;
603 }
604 emac_ctrl_write(EMAC_CTRL_EWINTTCNT, (int_ctrl | prescale));
605
606 break;
607 }
608
609 printk(KERN_INFO"Set coalesce to %d usecs.\n", coal_intvl);
610 priv->coal_intvl = coal_intvl;
611
612 return 0;
613
614}
615
616
Ben Hutchings1aa8b472012-07-10 10:56:59 +0000617/* ethtool_ops: DaVinci EMAC Ethtool structure
Anant Golea6286ee2009-05-18 15:19:01 -0700618 *
619 * Ethtool support for EMAC adapter
Anant Golea6286ee2009-05-18 15:19:01 -0700620 */
621static const struct ethtool_ops ethtool_ops = {
622 .get_drvinfo = emac_get_drvinfo,
623 .get_settings = emac_get_settings,
624 .set_settings = emac_set_settings,
625 .get_link = ethtool_op_get_link,
Sriram84da2652010-07-29 02:33:58 +0000626 .get_coalesce = emac_get_coalesce,
627 .set_coalesce = emac_set_coalesce,
Richard Cochran1fa68be2012-04-03 22:59:24 +0000628 .get_ts_info = ethtool_op_get_ts_info,
Anant Golea6286ee2009-05-18 15:19:01 -0700629};
630
631/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000632 * emac_update_phystatus - Update Phy status
Anant Golea6286ee2009-05-18 15:19:01 -0700633 * @priv: The DaVinci EMAC private adapter structure
634 *
635 * Updates phy status and takes action for network queue if required
636 * based upon link status
637 *
638 */
639static void emac_update_phystatus(struct emac_priv *priv)
640{
641 u32 mac_control;
642 u32 new_duplex;
643 u32 cur_duplex;
644 struct net_device *ndev = priv->ndev;
645
646 mac_control = emac_read(EMAC_MACCONTROL);
647 cur_duplex = (mac_control & EMAC_MACCONTROL_FULLDUPLEXEN) ?
648 DUPLEX_FULL : DUPLEX_HALF;
Cyril Chemparathy5d69e002010-09-15 10:11:24 -0400649 if (priv->phydev)
Anant Golea6286ee2009-05-18 15:19:01 -0700650 new_duplex = priv->phydev->duplex;
651 else
652 new_duplex = DUPLEX_FULL;
653
654 /* We get called only if link has changed (speed/duplex/status) */
655 if ((priv->link) && (new_duplex != cur_duplex)) {
656 priv->duplex = new_duplex;
657 if (DUPLEX_FULL == priv->duplex)
658 mac_control |= (EMAC_MACCONTROL_FULLDUPLEXEN);
659 else
660 mac_control &= ~(EMAC_MACCONTROL_FULLDUPLEXEN);
661 }
662
663 if (priv->speed == SPEED_1000 && (priv->version == EMAC_VERSION_2)) {
664 mac_control = emac_read(EMAC_MACCONTROL);
chaithrika@ti.com69ef9692009-10-01 10:25:19 +0000665 mac_control |= (EMAC_DM646X_MACCONTORL_GIG |
Anant Golea6286ee2009-05-18 15:19:01 -0700666 EMAC_DM646X_MACCONTORL_GIGFORCE);
667 } else {
668 /* Clear the GIG bit and GIGFORCE bit */
669 mac_control &= ~(EMAC_DM646X_MACCONTORL_GIGFORCE |
670 EMAC_DM646X_MACCONTORL_GIG);
671
672 if (priv->rmii_en && (priv->speed == SPEED_100))
673 mac_control |= EMAC_MACCONTROL_RMIISPEED_MASK;
674 else
675 mac_control &= ~EMAC_MACCONTROL_RMIISPEED_MASK;
676 }
677
678 /* Update mac_control if changed */
679 emac_write(EMAC_MACCONTROL, mac_control);
680
681 if (priv->link) {
682 /* link ON */
683 if (!netif_carrier_ok(ndev))
684 netif_carrier_on(ndev);
685 /* reactivate the transmit queue if it is stopped */
686 if (netif_running(ndev) && netif_queue_stopped(ndev))
687 netif_wake_queue(ndev);
688 } else {
689 /* link OFF */
690 if (netif_carrier_ok(ndev))
691 netif_carrier_off(ndev);
692 if (!netif_queue_stopped(ndev))
693 netif_stop_queue(ndev);
694 }
695}
696
697/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000698 * hash_get - Calculate hash value from mac address
Anant Golea6286ee2009-05-18 15:19:01 -0700699 * @addr: mac address to delete from hash table
700 *
701 * Calculates hash value from mac address
702 *
703 */
704static u32 hash_get(u8 *addr)
705{
706 u32 hash;
707 u8 tmpval;
708 int cnt;
709 hash = 0;
710
711 for (cnt = 0; cnt < 2; cnt++) {
712 tmpval = *addr++;
713 hash ^= (tmpval >> 2) ^ (tmpval << 4);
714 tmpval = *addr++;
715 hash ^= (tmpval >> 4) ^ (tmpval << 2);
716 tmpval = *addr++;
717 hash ^= (tmpval >> 6) ^ (tmpval);
718 }
719
720 return hash & 0x3F;
721}
722
723/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000724 * hash_add - Hash function to add mac addr from hash table
Anant Golea6286ee2009-05-18 15:19:01 -0700725 * @priv: The DaVinci EMAC private adapter structure
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000726 * @mac_addr: mac address to delete from hash table
Anant Golea6286ee2009-05-18 15:19:01 -0700727 *
728 * Adds mac address to the internal hash table
729 *
730 */
731static int hash_add(struct emac_priv *priv, u8 *mac_addr)
732{
733 struct device *emac_dev = &priv->ndev->dev;
734 u32 rc = 0;
735 u32 hash_bit;
736 u32 hash_value = hash_get(mac_addr);
737
738 if (hash_value >= EMAC_NUM_MULTICAST_BITS) {
739 if (netif_msg_drv(priv)) {
740 dev_err(emac_dev, "DaVinci EMAC: hash_add(): Invalid "\
741 "Hash %08x, should not be greater than %08x",
742 hash_value, (EMAC_NUM_MULTICAST_BITS - 1));
743 }
744 return -1;
745 }
746
747 /* set the hash bit only if not previously set */
748 if (priv->multicast_hash_cnt[hash_value] == 0) {
749 rc = 1; /* hash value changed */
750 if (hash_value < 32) {
751 hash_bit = BIT(hash_value);
752 priv->mac_hash1 |= hash_bit;
753 } else {
754 hash_bit = BIT((hash_value - 32));
755 priv->mac_hash2 |= hash_bit;
756 }
757 }
758
759 /* incr counter for num of mcast addr's mapped to "this" hash bit */
760 ++priv->multicast_hash_cnt[hash_value];
761
762 return rc;
763}
764
765/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000766 * hash_del - Hash function to delete mac addr from hash table
Anant Golea6286ee2009-05-18 15:19:01 -0700767 * @priv: The DaVinci EMAC private adapter structure
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000768 * @mac_addr: mac address to delete from hash table
Anant Golea6286ee2009-05-18 15:19:01 -0700769 *
770 * Removes mac address from the internal hash table
771 *
772 */
773static int hash_del(struct emac_priv *priv, u8 *mac_addr)
774{
775 u32 hash_value;
776 u32 hash_bit;
777
778 hash_value = hash_get(mac_addr);
779 if (priv->multicast_hash_cnt[hash_value] > 0) {
780 /* dec cntr for num of mcast addr's mapped to this hash bit */
781 --priv->multicast_hash_cnt[hash_value];
782 }
783
784 /* if counter still > 0, at least one multicast address refers
785 * to this hash bit. so return 0 */
786 if (priv->multicast_hash_cnt[hash_value] > 0)
787 return 0;
788
789 if (hash_value < 32) {
790 hash_bit = BIT(hash_value);
791 priv->mac_hash1 &= ~hash_bit;
792 } else {
793 hash_bit = BIT((hash_value - 32));
794 priv->mac_hash2 &= ~hash_bit;
795 }
796
797 /* return 1 to indicate change in mac_hash registers reqd */
798 return 1;
799}
800
801/* EMAC multicast operation */
802#define EMAC_MULTICAST_ADD 0
803#define EMAC_MULTICAST_DEL 1
804#define EMAC_ALL_MULTI_SET 2
805#define EMAC_ALL_MULTI_CLR 3
806
807/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000808 * emac_add_mcast - Set multicast address in the EMAC adapter (Internal)
Anant Golea6286ee2009-05-18 15:19:01 -0700809 * @priv: The DaVinci EMAC private adapter structure
810 * @action: multicast operation to perform
811 * mac_addr: mac address to set
812 *
813 * Set multicast addresses in EMAC adapter - internal function
814 *
815 */
816static void emac_add_mcast(struct emac_priv *priv, u32 action, u8 *mac_addr)
817{
818 struct device *emac_dev = &priv->ndev->dev;
819 int update = -1;
820
821 switch (action) {
822 case EMAC_MULTICAST_ADD:
823 update = hash_add(priv, mac_addr);
824 break;
825 case EMAC_MULTICAST_DEL:
826 update = hash_del(priv, mac_addr);
827 break;
828 case EMAC_ALL_MULTI_SET:
829 update = 1;
830 priv->mac_hash1 = EMAC_ALL_MULTI_REG_VALUE;
831 priv->mac_hash2 = EMAC_ALL_MULTI_REG_VALUE;
832 break;
833 case EMAC_ALL_MULTI_CLR:
834 update = 1;
835 priv->mac_hash1 = 0;
836 priv->mac_hash2 = 0;
837 memset(&(priv->multicast_hash_cnt[0]), 0,
838 sizeof(priv->multicast_hash_cnt[0]) *
839 EMAC_NUM_MULTICAST_BITS);
840 break;
841 default:
842 if (netif_msg_drv(priv))
843 dev_err(emac_dev, "DaVinci EMAC: add_mcast"\
844 ": bad operation %d", action);
845 break;
846 }
847
848 /* write to the hardware only if the register status chances */
849 if (update > 0) {
850 emac_write(EMAC_MACHASH1, priv->mac_hash1);
851 emac_write(EMAC_MACHASH2, priv->mac_hash2);
852 }
853}
854
855/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000856 * emac_dev_mcast_set - Set multicast address in the EMAC adapter
Anant Golea6286ee2009-05-18 15:19:01 -0700857 * @ndev: The DaVinci EMAC network adapter
858 *
859 * Set multicast addresses in EMAC adapter
860 *
861 */
862static void emac_dev_mcast_set(struct net_device *ndev)
863{
864 u32 mbp_enable;
865 struct emac_priv *priv = netdev_priv(ndev);
866
867 mbp_enable = emac_read(EMAC_RXMBPENABLE);
868 if (ndev->flags & IFF_PROMISC) {
869 mbp_enable &= (~EMAC_MBP_PROMISCCH(EMAC_DEF_PROM_CH));
870 mbp_enable |= (EMAC_MBP_RXPROMISC);
871 } else {
872 mbp_enable = (mbp_enable & ~EMAC_MBP_RXPROMISC);
873 if ((ndev->flags & IFF_ALLMULTI) ||
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000874 netdev_mc_count(ndev) > EMAC_DEF_MAX_MULTICAST_ADDRESSES) {
Anant Golea6286ee2009-05-18 15:19:01 -0700875 mbp_enable = (mbp_enable | EMAC_MBP_RXMCAST);
876 emac_add_mcast(priv, EMAC_ALL_MULTI_SET, NULL);
877 }
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000878 if (!netdev_mc_empty(ndev)) {
Jiri Pirko22bedad32010-04-01 21:22:57 +0000879 struct netdev_hw_addr *ha;
880
Anant Golea6286ee2009-05-18 15:19:01 -0700881 mbp_enable = (mbp_enable | EMAC_MBP_RXMCAST);
882 emac_add_mcast(priv, EMAC_ALL_MULTI_CLR, NULL);
883 /* program multicast address list into EMAC hardware */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000884 netdev_for_each_mc_addr(ha, ndev) {
Anant Golea6286ee2009-05-18 15:19:01 -0700885 emac_add_mcast(priv, EMAC_MULTICAST_ADD,
Jiri Pirko22bedad32010-04-01 21:22:57 +0000886 (u8 *) ha->addr);
Anant Golea6286ee2009-05-18 15:19:01 -0700887 }
888 } else {
889 mbp_enable = (mbp_enable & ~EMAC_MBP_RXMCAST);
890 emac_add_mcast(priv, EMAC_ALL_MULTI_CLR, NULL);
891 }
892 }
893 /* Set mbp config register */
894 emac_write(EMAC_RXMBPENABLE, mbp_enable);
895}
896
897/*************************************************************************
898 * EMAC Hardware manipulation
899 *************************************************************************/
900
901/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000902 * emac_int_disable - Disable EMAC module interrupt (from adapter)
Anant Golea6286ee2009-05-18 15:19:01 -0700903 * @priv: The DaVinci EMAC private adapter structure
904 *
905 * Disable EMAC interrupt on the adapter
906 *
907 */
908static void emac_int_disable(struct emac_priv *priv)
909{
910 if (priv->version == EMAC_VERSION_2) {
911 unsigned long flags;
912
913 local_irq_save(flags);
914
915 /* Program C0_Int_En to zero to turn off
916 * interrupts to the CPU */
917 emac_ctrl_write(EMAC_DM646X_CMRXINTEN, 0x0);
918 emac_ctrl_write(EMAC_DM646X_CMTXINTEN, 0x0);
919 /* NOTE: Rx Threshold and Misc interrupts are not disabled */
Sriramakrishnan01a9af32009-11-19 15:58:26 +0530920 if (priv->int_disable)
921 priv->int_disable();
Anant Golea6286ee2009-05-18 15:19:01 -0700922
923 local_irq_restore(flags);
924
925 } else {
926 /* Set DM644x control registers for interrupt control */
927 emac_ctrl_write(EMAC_CTRL_EWCTL, 0x0);
928 }
929}
930
931/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000932 * emac_int_enable - Enable EMAC module interrupt (from adapter)
Anant Golea6286ee2009-05-18 15:19:01 -0700933 * @priv: The DaVinci EMAC private adapter structure
934 *
935 * Enable EMAC interrupt on the adapter
936 *
937 */
938static void emac_int_enable(struct emac_priv *priv)
939{
940 if (priv->version == EMAC_VERSION_2) {
Sriramakrishnan01a9af32009-11-19 15:58:26 +0530941 if (priv->int_enable)
942 priv->int_enable();
943
Anant Golea6286ee2009-05-18 15:19:01 -0700944 emac_ctrl_write(EMAC_DM646X_CMRXINTEN, 0xff);
945 emac_ctrl_write(EMAC_DM646X_CMTXINTEN, 0xff);
946
947 /* In addition to turning on interrupt Enable, we need
948 * ack by writing appropriate values to the EOI
949 * register */
950
951 /* NOTE: Rx Threshold and Misc interrupts are not enabled */
952
953 /* ack rxen only then a new pulse will be generated */
954 emac_write(EMAC_DM646X_MACEOIVECTOR,
955 EMAC_DM646X_MAC_EOI_C0_RXEN);
956
957 /* ack txen- only then a new pulse will be generated */
958 emac_write(EMAC_DM646X_MACEOIVECTOR,
959 EMAC_DM646X_MAC_EOI_C0_TXEN);
960
961 } else {
962 /* Set DM644x control registers for interrupt control */
963 emac_ctrl_write(EMAC_CTRL_EWCTL, 0x1);
964 }
965}
966
967/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000968 * emac_irq - EMAC interrupt handler
Anant Golea6286ee2009-05-18 15:19:01 -0700969 * @irq: interrupt number
970 * @dev_id: EMAC network adapter data structure ptr
971 *
972 * EMAC Interrupt handler - we only schedule NAPI and not process any packets
973 * here. EVen the interrupt status is checked (TX/RX/Err) in NAPI poll function
974 *
975 * Returns interrupt handled condition
976 */
977static irqreturn_t emac_irq(int irq, void *dev_id)
978{
979 struct net_device *ndev = (struct net_device *)dev_id;
980 struct emac_priv *priv = netdev_priv(ndev);
981
982 ++priv->isr_count;
983 if (likely(netif_running(priv->ndev))) {
984 emac_int_disable(priv);
985 napi_schedule(&priv->napi);
986 } else {
987 /* we are closing down, so dont process anything */
988 }
989 return IRQ_HANDLED;
990}
991
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -0400992static struct sk_buff *emac_rx_alloc(struct emac_priv *priv)
993{
Pradeep A. Dalvidae2e9f2012-02-06 11:16:13 +0000994 struct sk_buff *skb = netdev_alloc_skb(priv->ndev, priv->rx_buf_size);
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -0400995 if (WARN_ON(!skb))
996 return NULL;
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -0400997 skb_reserve(skb, NET_IP_ALIGN);
998 return skb;
999}
1000
1001static void emac_rx_handler(void *token, int len, int status)
1002{
1003 struct sk_buff *skb = token;
1004 struct net_device *ndev = skb->dev;
1005 struct emac_priv *priv = netdev_priv(ndev);
1006 struct device *emac_dev = &ndev->dev;
1007 int ret;
1008
1009 /* free and bail if we are shutting down */
Christian Riesch5d697032012-02-23 01:14:17 +00001010 if (unlikely(!netif_running(ndev))) {
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001011 dev_kfree_skb_any(skb);
1012 return;
1013 }
1014
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001015 /* recycle on receive error */
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001016 if (status < 0) {
1017 ndev->stats.rx_errors++;
1018 goto recycle;
1019 }
1020
1021 /* feed received packet up the stack */
1022 skb_put(skb, len);
1023 skb->protocol = eth_type_trans(skb, ndev);
1024 netif_receive_skb(skb);
1025 ndev->stats.rx_bytes += len;
1026 ndev->stats.rx_packets++;
1027
1028 /* alloc a new packet for receive */
1029 skb = emac_rx_alloc(priv);
1030 if (!skb) {
1031 if (netif_msg_rx_err(priv) && net_ratelimit())
1032 dev_err(emac_dev, "failed rx buffer alloc\n");
1033 return;
1034 }
1035
1036recycle:
1037 ret = cpdma_chan_submit(priv->rxchan, skb, skb->data,
1038 skb_tailroom(skb), GFP_KERNEL);
Christian Riesch5d697032012-02-23 01:14:17 +00001039
1040 WARN_ON(ret == -ENOMEM);
1041 if (unlikely(ret < 0))
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001042 dev_kfree_skb_any(skb);
1043}
1044
1045static void emac_tx_handler(void *token, int len, int status)
1046{
1047 struct sk_buff *skb = token;
1048 struct net_device *ndev = skb->dev;
Sascha Hauer86d8c072012-01-03 05:27:47 +00001049 struct emac_priv *priv = netdev_priv(ndev);
1050
1051 atomic_dec(&priv->cur_tx);
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001052
1053 if (unlikely(netif_queue_stopped(ndev)))
1054 netif_start_queue(ndev);
1055 ndev->stats.tx_packets++;
1056 ndev->stats.tx_bytes += len;
1057 dev_kfree_skb_any(skb);
1058}
1059
Anant Golea6286ee2009-05-18 15:19:01 -07001060/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001061 * emac_dev_xmit - EMAC Transmit function
Anant Golea6286ee2009-05-18 15:19:01 -07001062 * @skb: SKB pointer
1063 * @ndev: The DaVinci EMAC network adapter
1064 *
1065 * Called by the system to transmit a packet - we queue the packet in
1066 * EMAC hardware transmit queue
1067 *
1068 * Returns success(NETDEV_TX_OK) or error code (typically out of desc's)
1069 */
1070static int emac_dev_xmit(struct sk_buff *skb, struct net_device *ndev)
1071{
1072 struct device *emac_dev = &ndev->dev;
1073 int ret_code;
Anant Golea6286ee2009-05-18 15:19:01 -07001074 struct emac_priv *priv = netdev_priv(ndev);
1075
1076 /* If no link, return */
1077 if (unlikely(!priv->link)) {
1078 if (netif_msg_tx_err(priv) && net_ratelimit())
1079 dev_err(emac_dev, "DaVinci EMAC: No link to transmit");
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001080 goto fail_tx;
Anant Golea6286ee2009-05-18 15:19:01 -07001081 }
1082
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001083 ret_code = skb_padto(skb, EMAC_DEF_MIN_ETHPKTSIZE);
1084 if (unlikely(ret_code < 0)) {
1085 if (netif_msg_tx_err(priv) && net_ratelimit())
1086 dev_err(emac_dev, "DaVinci EMAC: packet pad failed");
1087 goto fail_tx;
1088 }
1089
Richard Cochran5bf0c192011-06-19 03:31:45 +00001090 skb_tx_timestamp(skb);
1091
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001092 ret_code = cpdma_chan_submit(priv->txchan, skb, skb->data, skb->len,
1093 GFP_KERNEL);
Anant Golea6286ee2009-05-18 15:19:01 -07001094 if (unlikely(ret_code != 0)) {
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001095 if (netif_msg_tx_err(priv) && net_ratelimit())
1096 dev_err(emac_dev, "DaVinci EMAC: desc submit failed");
1097 goto fail_tx;
Anant Golea6286ee2009-05-18 15:19:01 -07001098 }
1099
Sascha Hauer86d8c072012-01-03 05:27:47 +00001100 if (atomic_inc_return(&priv->cur_tx) >= EMAC_DEF_TX_NUM_DESC)
1101 netif_stop_queue(ndev);
1102
Anant Golea6286ee2009-05-18 15:19:01 -07001103 return NETDEV_TX_OK;
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001104
1105fail_tx:
1106 ndev->stats.tx_dropped++;
1107 netif_stop_queue(ndev);
1108 return NETDEV_TX_BUSY;
Anant Golea6286ee2009-05-18 15:19:01 -07001109}
1110
1111/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001112 * emac_dev_tx_timeout - EMAC Transmit timeout function
Anant Golea6286ee2009-05-18 15:19:01 -07001113 * @ndev: The DaVinci EMAC network adapter
1114 *
1115 * Called when system detects that a skb timeout period has expired
1116 * potentially due to a fault in the adapter in not being able to send
1117 * it out on the wire. We teardown the TX channel assuming a hardware
1118 * error and re-initialize the TX channel for hardware operation
1119 *
1120 */
1121static void emac_dev_tx_timeout(struct net_device *ndev)
1122{
1123 struct emac_priv *priv = netdev_priv(ndev);
1124 struct device *emac_dev = &ndev->dev;
1125
1126 if (netif_msg_tx_err(priv))
1127 dev_err(emac_dev, "DaVinci EMAC: xmit timeout, restarting TX");
1128
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001129 emac_dump_regs(priv);
1130
Kulikov Vasiliy78e8c532010-07-05 02:13:26 +00001131 ndev->stats.tx_errors++;
Anant Golea6286ee2009-05-18 15:19:01 -07001132 emac_int_disable(priv);
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001133 cpdma_chan_stop(priv->txchan);
1134 cpdma_chan_start(priv->txchan);
Anant Golea6286ee2009-05-18 15:19:01 -07001135 emac_int_enable(priv);
1136}
1137
1138/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001139 * emac_set_type0addr - Set EMAC Type0 mac address
Anant Golea6286ee2009-05-18 15:19:01 -07001140 * @priv: The DaVinci EMAC private adapter structure
1141 * @ch: RX channel number
1142 * @mac_addr: MAC address to set in device
1143 *
1144 * Called internally to set Type0 mac address of the adapter (Device)
1145 *
1146 * Returns success (0) or appropriate error code (none as of now)
1147 */
1148static void emac_set_type0addr(struct emac_priv *priv, u32 ch, char *mac_addr)
1149{
1150 u32 val;
1151 val = ((mac_addr[5] << 8) | (mac_addr[4]));
1152 emac_write(EMAC_MACSRCADDRLO, val);
1153
1154 val = ((mac_addr[3] << 24) | (mac_addr[2] << 16) | \
1155 (mac_addr[1] << 8) | (mac_addr[0]));
1156 emac_write(EMAC_MACSRCADDRHI, val);
1157 val = emac_read(EMAC_RXUNICASTSET);
1158 val |= BIT(ch);
1159 emac_write(EMAC_RXUNICASTSET, val);
1160 val = emac_read(EMAC_RXUNICASTCLEAR);
1161 val &= ~BIT(ch);
1162 emac_write(EMAC_RXUNICASTCLEAR, val);
1163}
1164
1165/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001166 * emac_set_type1addr - Set EMAC Type1 mac address
Anant Golea6286ee2009-05-18 15:19:01 -07001167 * @priv: The DaVinci EMAC private adapter structure
1168 * @ch: RX channel number
1169 * @mac_addr: MAC address to set in device
1170 *
1171 * Called internally to set Type1 mac address of the adapter (Device)
1172 *
1173 * Returns success (0) or appropriate error code (none as of now)
1174 */
1175static void emac_set_type1addr(struct emac_priv *priv, u32 ch, char *mac_addr)
1176{
1177 u32 val;
1178 emac_write(EMAC_MACINDEX, ch);
1179 val = ((mac_addr[5] << 8) | mac_addr[4]);
1180 emac_write(EMAC_MACADDRLO, val);
1181 val = ((mac_addr[3] << 24) | (mac_addr[2] << 16) | \
1182 (mac_addr[1] << 8) | (mac_addr[0]));
1183 emac_write(EMAC_MACADDRHI, val);
1184 emac_set_type0addr(priv, ch, mac_addr);
1185}
1186
1187/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001188 * emac_set_type2addr - Set EMAC Type2 mac address
Anant Golea6286ee2009-05-18 15:19:01 -07001189 * @priv: The DaVinci EMAC private adapter structure
1190 * @ch: RX channel number
1191 * @mac_addr: MAC address to set in device
1192 * @index: index into RX address entries
1193 * @match: match parameter for RX address matching logic
1194 *
1195 * Called internally to set Type2 mac address of the adapter (Device)
1196 *
1197 * Returns success (0) or appropriate error code (none as of now)
1198 */
1199static void emac_set_type2addr(struct emac_priv *priv, u32 ch,
1200 char *mac_addr, int index, int match)
1201{
1202 u32 val;
1203 emac_write(EMAC_MACINDEX, index);
1204 val = ((mac_addr[3] << 24) | (mac_addr[2] << 16) | \
1205 (mac_addr[1] << 8) | (mac_addr[0]));
1206 emac_write(EMAC_MACADDRHI, val);
1207 val = ((mac_addr[5] << 8) | mac_addr[4] | ((ch & 0x7) << 16) | \
1208 (match << 19) | BIT(20));
1209 emac_write(EMAC_MACADDRLO, val);
1210 emac_set_type0addr(priv, ch, mac_addr);
1211}
1212
1213/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001214 * emac_setmac - Set mac address in the adapter (internal function)
Anant Golea6286ee2009-05-18 15:19:01 -07001215 * @priv: The DaVinci EMAC private adapter structure
1216 * @ch: RX channel number
1217 * @mac_addr: MAC address to set in device
1218 *
1219 * Called internally to set the mac address of the adapter (Device)
1220 *
1221 * Returns success (0) or appropriate error code (none as of now)
1222 */
1223static void emac_setmac(struct emac_priv *priv, u32 ch, char *mac_addr)
1224{
1225 struct device *emac_dev = &priv->ndev->dev;
1226
1227 if (priv->rx_addr_type == 0) {
1228 emac_set_type0addr(priv, ch, mac_addr);
1229 } else if (priv->rx_addr_type == 1) {
1230 u32 cnt;
1231 for (cnt = 0; cnt < EMAC_MAX_TXRX_CHANNELS; cnt++)
1232 emac_set_type1addr(priv, ch, mac_addr);
1233 } else if (priv->rx_addr_type == 2) {
1234 emac_set_type2addr(priv, ch, mac_addr, ch, 1);
1235 emac_set_type0addr(priv, ch, mac_addr);
1236 } else {
1237 if (netif_msg_drv(priv))
1238 dev_err(emac_dev, "DaVinci EMAC: Wrong addressing\n");
1239 }
1240}
1241
1242/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001243 * emac_dev_setmac_addr - Set mac address in the adapter
Anant Golea6286ee2009-05-18 15:19:01 -07001244 * @ndev: The DaVinci EMAC network adapter
1245 * @addr: MAC address to set in device
1246 *
1247 * Called by the system to set the mac address of the adapter (Device)
1248 *
1249 * Returns success (0) or appropriate error code (none as of now)
1250 */
1251static int emac_dev_setmac_addr(struct net_device *ndev, void *addr)
1252{
1253 struct emac_priv *priv = netdev_priv(ndev);
Anant Golea6286ee2009-05-18 15:19:01 -07001254 struct device *emac_dev = &priv->ndev->dev;
1255 struct sockaddr *sa = addr;
Anant Golea6286ee2009-05-18 15:19:01 -07001256
Pablo Bitton64c81652009-07-07 19:11:10 -07001257 if (!is_valid_ether_addr(sa->sa_data))
Danny Kukawka504f9b52012-02-21 02:07:49 +00001258 return -EADDRNOTAVAIL;
Pablo Bitton64c81652009-07-07 19:11:10 -07001259
Anant Golea6286ee2009-05-18 15:19:01 -07001260 /* Store mac addr in priv and rx channel and set it in EMAC hw */
1261 memcpy(priv->mac_addr, sa->sa_data, ndev->addr_len);
Anant Golea6286ee2009-05-18 15:19:01 -07001262 memcpy(ndev->dev_addr, sa->sa_data, ndev->addr_len);
Danny Kukawkabaf1d372012-02-17 05:43:24 +00001263 ndev->addr_assign_type &= ~NET_ADDR_RANDOM;
Pablo Bitton64c81652009-07-07 19:11:10 -07001264
Pablo Bitton64c81652009-07-07 19:11:10 -07001265 /* MAC address is configured only after the interface is enabled. */
1266 if (netif_running(ndev)) {
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001267 emac_setmac(priv, EMAC_DEF_RX_CH, priv->mac_addr);
Pablo Bitton64c81652009-07-07 19:11:10 -07001268 }
Anant Golea6286ee2009-05-18 15:19:01 -07001269
1270 if (netif_msg_drv(priv))
Chaithrika U S5c726162009-06-03 21:54:29 -07001271 dev_notice(emac_dev, "DaVinci EMAC: emac_dev_setmac_addr %pM\n",
1272 priv->mac_addr);
Anant Golea6286ee2009-05-18 15:19:01 -07001273
1274 return 0;
1275}
1276
1277/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001278 * emac_hw_enable - Enable EMAC hardware for packet transmission/reception
Anant Golea6286ee2009-05-18 15:19:01 -07001279 * @priv: The DaVinci EMAC private adapter structure
1280 *
1281 * Enables EMAC hardware for packet processing - enables PHY, enables RX
1282 * for packet reception and enables device interrupts and then NAPI
1283 *
1284 * Returns success (0) or appropriate error code (none right now)
1285 */
1286static int emac_hw_enable(struct emac_priv *priv)
1287{
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001288 u32 val, mbp_enable, mac_control;
Anant Golea6286ee2009-05-18 15:19:01 -07001289
1290 /* Soft reset */
1291 emac_write(EMAC_SOFTRESET, 1);
1292 while (emac_read(EMAC_SOFTRESET))
1293 cpu_relax();
1294
1295 /* Disable interrupt & Set pacing for more interrupts initially */
1296 emac_int_disable(priv);
1297
1298 /* Full duplex enable bit set when auto negotiation happens */
1299 mac_control =
1300 (((EMAC_DEF_TXPRIO_FIXED) ? (EMAC_MACCONTROL_TXPTYPE) : 0x0) |
1301 ((priv->speed == 1000) ? EMAC_MACCONTROL_GIGABITEN : 0x0) |
1302 ((EMAC_DEF_TXPACING_EN) ? (EMAC_MACCONTROL_TXPACEEN) : 0x0) |
1303 ((priv->duplex == DUPLEX_FULL) ? 0x1 : 0));
1304 emac_write(EMAC_MACCONTROL, mac_control);
1305
1306 mbp_enable =
1307 (((EMAC_DEF_PASS_CRC) ? (EMAC_RXMBP_PASSCRC_MASK) : 0x0) |
1308 ((EMAC_DEF_QOS_EN) ? (EMAC_RXMBP_QOSEN_MASK) : 0x0) |
1309 ((EMAC_DEF_NO_BUFF_CHAIN) ? (EMAC_RXMBP_NOCHAIN_MASK) : 0x0) |
1310 ((EMAC_DEF_MACCTRL_FRAME_EN) ? (EMAC_RXMBP_CMFEN_MASK) : 0x0) |
1311 ((EMAC_DEF_SHORT_FRAME_EN) ? (EMAC_RXMBP_CSFEN_MASK) : 0x0) |
1312 ((EMAC_DEF_ERROR_FRAME_EN) ? (EMAC_RXMBP_CEFEN_MASK) : 0x0) |
1313 ((EMAC_DEF_PROM_EN) ? (EMAC_RXMBP_CAFEN_MASK) : 0x0) |
1314 ((EMAC_DEF_PROM_CH & EMAC_RXMBP_CHMASK) << \
1315 EMAC_RXMBP_PROMCH_SHIFT) |
1316 ((EMAC_DEF_BCAST_EN) ? (EMAC_RXMBP_BROADEN_MASK) : 0x0) |
1317 ((EMAC_DEF_BCAST_CH & EMAC_RXMBP_CHMASK) << \
1318 EMAC_RXMBP_BROADCH_SHIFT) |
1319 ((EMAC_DEF_MCAST_EN) ? (EMAC_RXMBP_MULTIEN_MASK) : 0x0) |
1320 ((EMAC_DEF_MCAST_CH & EMAC_RXMBP_CHMASK) << \
1321 EMAC_RXMBP_MULTICH_SHIFT));
1322 emac_write(EMAC_RXMBPENABLE, mbp_enable);
1323 emac_write(EMAC_RXMAXLEN, (EMAC_DEF_MAX_FRAME_SIZE &
1324 EMAC_RX_MAX_LEN_MASK));
1325 emac_write(EMAC_RXBUFFEROFFSET, (EMAC_DEF_BUFFER_OFFSET &
1326 EMAC_RX_BUFFER_OFFSET_MASK));
1327 emac_write(EMAC_RXFILTERLOWTHRESH, 0);
1328 emac_write(EMAC_RXUNICASTCLEAR, EMAC_RX_UNICAST_CLEAR_ALL);
1329 priv->rx_addr_type = (emac_read(EMAC_MACCONFIG) >> 8) & 0xFF;
1330
Anant Golea6286ee2009-05-18 15:19:01 -07001331 emac_write(EMAC_MACINTMASKSET, EMAC_MAC_HOST_ERR_INTMASK_VAL);
1332
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001333 emac_setmac(priv, EMAC_DEF_RX_CH, priv->mac_addr);
Anant Golea6286ee2009-05-18 15:19:01 -07001334
1335 /* Enable MII */
1336 val = emac_read(EMAC_MACCONTROL);
chaithrika@ti.com69ef9692009-10-01 10:25:19 +00001337 val |= (EMAC_MACCONTROL_GMIIEN);
Anant Golea6286ee2009-05-18 15:19:01 -07001338 emac_write(EMAC_MACCONTROL, val);
1339
1340 /* Enable NAPI and interrupts */
1341 napi_enable(&priv->napi);
1342 emac_int_enable(priv);
1343 return 0;
1344
1345}
1346
1347/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001348 * emac_poll - EMAC NAPI Poll function
Anant Golea6286ee2009-05-18 15:19:01 -07001349 * @ndev: The DaVinci EMAC network adapter
1350 * @budget: Number of receive packets to process (as told by NAPI layer)
1351 *
1352 * NAPI Poll function implemented to process packets as per budget. We check
1353 * the type of interrupt on the device and accordingly call the TX or RX
1354 * packet processing functions. We follow the budget for RX processing and
1355 * also put a cap on number of TX pkts processed through config param. The
1356 * NAPI schedule function is called if more packets pending.
1357 *
1358 * Returns number of packets received (in most cases; else TX pkts - rarely)
1359 */
1360static int emac_poll(struct napi_struct *napi, int budget)
1361{
1362 unsigned int mask;
1363 struct emac_priv *priv = container_of(napi, struct emac_priv, napi);
1364 struct net_device *ndev = priv->ndev;
1365 struct device *emac_dev = &ndev->dev;
1366 u32 status = 0;
Sriram3725b1f2010-07-29 02:33:59 +00001367 u32 num_tx_pkts = 0, num_rx_pkts = 0;
Anant Golea6286ee2009-05-18 15:19:01 -07001368
Anant Golea6286ee2009-05-18 15:19:01 -07001369 /* Check interrupt vectors and call packet processing */
1370 status = emac_read(EMAC_MACINVECTOR);
1371
1372 mask = EMAC_DM644X_MAC_IN_VECTOR_TX_INT_VEC;
1373
1374 if (priv->version == EMAC_VERSION_2)
1375 mask = EMAC_DM646X_MAC_IN_VECTOR_TX_INT_VEC;
1376
1377 if (status & mask) {
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001378 num_tx_pkts = cpdma_chan_process(priv->txchan,
1379 EMAC_DEF_TX_MAX_SERVICE);
Anant Golea6286ee2009-05-18 15:19:01 -07001380 } /* TX processing */
1381
Anant Golea6286ee2009-05-18 15:19:01 -07001382 mask = EMAC_DM644X_MAC_IN_VECTOR_RX_INT_VEC;
1383
1384 if (priv->version == EMAC_VERSION_2)
1385 mask = EMAC_DM646X_MAC_IN_VECTOR_RX_INT_VEC;
1386
1387 if (status & mask) {
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001388 num_rx_pkts = cpdma_chan_process(priv->rxchan, budget);
Anant Golea6286ee2009-05-18 15:19:01 -07001389 } /* RX processing */
1390
Sriram43c2ed82009-09-24 19:15:18 +00001391 mask = EMAC_DM644X_MAC_IN_VECTOR_HOST_INT;
1392 if (priv->version == EMAC_VERSION_2)
1393 mask = EMAC_DM646X_MAC_IN_VECTOR_HOST_INT;
1394
1395 if (unlikely(status & mask)) {
Anant Golea6286ee2009-05-18 15:19:01 -07001396 u32 ch, cause;
1397 dev_err(emac_dev, "DaVinci EMAC: Fatal Hardware Error\n");
1398 netif_stop_queue(ndev);
1399 napi_disable(&priv->napi);
1400
1401 status = emac_read(EMAC_MACSTATUS);
1402 cause = ((status & EMAC_MACSTATUS_TXERRCODE_MASK) >>
1403 EMAC_MACSTATUS_TXERRCODE_SHIFT);
1404 if (cause) {
1405 ch = ((status & EMAC_MACSTATUS_TXERRCH_MASK) >>
1406 EMAC_MACSTATUS_TXERRCH_SHIFT);
1407 if (net_ratelimit()) {
1408 dev_err(emac_dev, "TX Host error %s on ch=%d\n",
1409 &emac_txhost_errcodes[cause][0], ch);
1410 }
1411 }
1412 cause = ((status & EMAC_MACSTATUS_RXERRCODE_MASK) >>
1413 EMAC_MACSTATUS_RXERRCODE_SHIFT);
1414 if (cause) {
1415 ch = ((status & EMAC_MACSTATUS_RXERRCH_MASK) >>
1416 EMAC_MACSTATUS_RXERRCH_SHIFT);
1417 if (netif_msg_hw(priv) && net_ratelimit())
1418 dev_err(emac_dev, "RX Host error %s on ch=%d\n",
1419 &emac_rxhost_errcodes[cause][0], ch);
1420 }
Sriram3725b1f2010-07-29 02:33:59 +00001421 } else if (num_rx_pkts < budget) {
1422 napi_complete(napi);
1423 emac_int_enable(priv);
1424 }
Anant Golea6286ee2009-05-18 15:19:01 -07001425
Sriram3725b1f2010-07-29 02:33:59 +00001426 return num_rx_pkts;
Anant Golea6286ee2009-05-18 15:19:01 -07001427}
1428
1429#ifdef CONFIG_NET_POLL_CONTROLLER
1430/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001431 * emac_poll_controller - EMAC Poll controller function
Anant Golea6286ee2009-05-18 15:19:01 -07001432 * @ndev: The DaVinci EMAC network adapter
1433 *
1434 * Polled functionality used by netconsole and others in non interrupt mode
1435 *
1436 */
1437void emac_poll_controller(struct net_device *ndev)
1438{
1439 struct emac_priv *priv = netdev_priv(ndev);
1440
1441 emac_int_disable(priv);
Tonyliuc8ee5532009-11-04 05:45:02 -08001442 emac_irq(ndev->irq, ndev);
Anant Golea6286ee2009-05-18 15:19:01 -07001443 emac_int_enable(priv);
1444}
1445#endif
1446
Anant Golea6286ee2009-05-18 15:19:01 -07001447static void emac_adjust_link(struct net_device *ndev)
1448{
1449 struct emac_priv *priv = netdev_priv(ndev);
1450 struct phy_device *phydev = priv->phydev;
1451 unsigned long flags;
1452 int new_state = 0;
1453
1454 spin_lock_irqsave(&priv->lock, flags);
1455
1456 if (phydev->link) {
1457 /* check the mode of operation - full/half duplex */
1458 if (phydev->duplex != priv->duplex) {
1459 new_state = 1;
1460 priv->duplex = phydev->duplex;
1461 }
1462 if (phydev->speed != priv->speed) {
1463 new_state = 1;
1464 priv->speed = phydev->speed;
1465 }
1466 if (!priv->link) {
1467 new_state = 1;
1468 priv->link = 1;
1469 }
1470
1471 } else if (priv->link) {
1472 new_state = 1;
1473 priv->link = 0;
1474 priv->speed = 0;
1475 priv->duplex = ~0;
1476 }
1477 if (new_state) {
1478 emac_update_phystatus(priv);
1479 phy_print_status(priv->phydev);
1480 }
1481
1482 spin_unlock_irqrestore(&priv->lock, flags);
1483}
1484
1485/*************************************************************************
1486 * Linux Driver Model
1487 *************************************************************************/
1488
1489/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001490 * emac_devioctl - EMAC adapter ioctl
Anant Golea6286ee2009-05-18 15:19:01 -07001491 * @ndev: The DaVinci EMAC network adapter
1492 * @ifrq: request parameter
1493 * @cmd: command parameter
1494 *
1495 * EMAC driver ioctl function
1496 *
1497 * Returns success(0) or appropriate error code
1498 */
1499static int emac_devioctl(struct net_device *ndev, struct ifreq *ifrq, int cmd)
1500{
Richard Cochranfb290cd2011-06-12 02:19:00 +00001501 struct emac_priv *priv = netdev_priv(ndev);
Anant Golea6286ee2009-05-18 15:19:01 -07001502
1503 if (!(netif_running(ndev)))
1504 return -EINVAL;
1505
1506 /* TODO: Add phy read and write and private statistics get feature */
1507
Richard Cochranfb290cd2011-06-12 02:19:00 +00001508 return phy_mii_ioctl(priv->phydev, ifrq, cmd);
Anant Golea6286ee2009-05-18 15:19:01 -07001509}
1510
Cyril Chemparathy5d69e002010-09-15 10:11:24 -04001511static int match_first_device(struct device *dev, void *data)
1512{
Anatolij Gustschin1ab8be42012-04-23 12:06:43 +00001513 return !strncmp(dev_name(dev), "davinci_mdio", 12);
Cyril Chemparathy5d69e002010-09-15 10:11:24 -04001514}
1515
Anant Golea6286ee2009-05-18 15:19:01 -07001516/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001517 * emac_dev_open - EMAC device open
Anant Golea6286ee2009-05-18 15:19:01 -07001518 * @ndev: The DaVinci EMAC network adapter
1519 *
1520 * Called when system wants to start the interface. We init TX/RX channels
1521 * and enable the hardware for packet reception/transmission and start the
1522 * network queue.
1523 *
1524 * Returns 0 for a successful open, or appropriate error code
1525 */
1526static int emac_dev_open(struct net_device *ndev)
1527{
1528 struct device *emac_dev = &ndev->dev;
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001529 u32 cnt;
Anant Golea6286ee2009-05-18 15:19:01 -07001530 struct resource *res;
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001531 int q, m, ret;
Anant Golea6286ee2009-05-18 15:19:01 -07001532 int i = 0;
1533 int k = 0;
1534 struct emac_priv *priv = netdev_priv(ndev);
1535
1536 netif_carrier_off(ndev);
Dan Carpenter4d27b872010-03-02 21:07:24 +00001537 for (cnt = 0; cnt < ETH_ALEN; cnt++)
Anant Golea6286ee2009-05-18 15:19:01 -07001538 ndev->dev_addr[cnt] = priv->mac_addr[cnt];
1539
1540 /* Configuration items */
1541 priv->rx_buf_size = EMAC_DEF_MAX_FRAME_SIZE + NET_IP_ALIGN;
1542
Anant Golea6286ee2009-05-18 15:19:01 -07001543 priv->mac_hash1 = 0;
1544 priv->mac_hash2 = 0;
1545 emac_write(EMAC_MACHASH1, 0);
1546 emac_write(EMAC_MACHASH2, 0);
1547
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001548 for (i = 0; i < EMAC_DEF_RX_NUM_DESC; i++) {
1549 struct sk_buff *skb = emac_rx_alloc(priv);
1550
1551 if (!skb)
1552 break;
1553
1554 ret = cpdma_chan_submit(priv->rxchan, skb, skb->data,
1555 skb_tailroom(skb), GFP_KERNEL);
1556 if (WARN_ON(ret < 0))
1557 break;
Anant Golea6286ee2009-05-18 15:19:01 -07001558 }
1559
1560 /* Request IRQ */
1561
1562 while ((res = platform_get_resource(priv->pdev, IORESOURCE_IRQ, k))) {
1563 for (i = res->start; i <= res->end; i++) {
1564 if (request_irq(i, emac_irq, IRQF_DISABLED,
1565 ndev->name, ndev))
1566 goto rollback;
1567 }
1568 k++;
1569 }
1570
1571 /* Start/Enable EMAC hardware */
1572 emac_hw_enable(priv);
1573
Sriram84da2652010-07-29 02:33:58 +00001574 /* Enable Interrupt pacing if configured */
1575 if (priv->coal_intvl != 0) {
1576 struct ethtool_coalesce coal;
1577
1578 coal.rx_coalesce_usecs = (priv->coal_intvl << 4);
1579 emac_set_coalesce(ndev, &coal);
1580 }
1581
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001582 cpdma_ctlr_start(priv->dma);
1583
Anant Golea6286ee2009-05-18 15:19:01 -07001584 priv->phydev = NULL;
Cyril Chemparathy5d69e002010-09-15 10:11:24 -04001585 /* use the first phy on the bus if pdata did not give us a phy id */
1586 if (!priv->phy_id) {
1587 struct device *phy;
Anant Golea6286ee2009-05-18 15:19:01 -07001588
Cyril Chemparathy5d69e002010-09-15 10:11:24 -04001589 phy = bus_find_device(&mdio_bus_type, NULL, NULL,
1590 match_first_device);
1591 if (phy)
1592 priv->phy_id = dev_name(phy);
1593 }
Anant Golea6286ee2009-05-18 15:19:01 -07001594
Cyril Chemparathy5d69e002010-09-15 10:11:24 -04001595 if (priv->phy_id && *priv->phy_id) {
1596 priv->phydev = phy_connect(ndev, priv->phy_id,
1597 &emac_adjust_link, 0,
1598 PHY_INTERFACE_MODE_MII);
Anant Golea6286ee2009-05-18 15:19:01 -07001599
1600 if (IS_ERR(priv->phydev)) {
Cyril Chemparathy5d69e002010-09-15 10:11:24 -04001601 dev_err(emac_dev, "could not connect to phy %s\n",
1602 priv->phy_id);
Julia Lawallcb0a1782012-02-02 04:53:01 +00001603 ret = PTR_ERR(priv->phydev);
Cyril Chemparathy5d69e002010-09-15 10:11:24 -04001604 priv->phydev = NULL;
Julia Lawallcb0a1782012-02-02 04:53:01 +00001605 return ret;
Anant Golea6286ee2009-05-18 15:19:01 -07001606 }
1607
1608 priv->link = 0;
1609 priv->speed = 0;
1610 priv->duplex = ~0;
1611
Cyril Chemparathy5d69e002010-09-15 10:11:24 -04001612 dev_info(emac_dev, "attached PHY driver [%s] "
1613 "(mii_bus:phy_addr=%s, id=%x)\n",
Anant Golea6286ee2009-05-18 15:19:01 -07001614 priv->phydev->drv->name, dev_name(&priv->phydev->dev),
1615 priv->phydev->phy_id);
Cyril Chemparathy5d69e002010-09-15 10:11:24 -04001616 } else {
Anant Golea6286ee2009-05-18 15:19:01 -07001617 /* No PHY , fix the link, speed and duplex settings */
Cyril Chemparathy5d69e002010-09-15 10:11:24 -04001618 dev_notice(emac_dev, "no phy, defaulting to 100/full\n");
Anant Golea6286ee2009-05-18 15:19:01 -07001619 priv->link = 1;
1620 priv->speed = SPEED_100;
1621 priv->duplex = DUPLEX_FULL;
1622 emac_update_phystatus(priv);
1623 }
1624
1625 if (!netif_running(ndev)) /* debug only - to avoid compiler warning */
1626 emac_dump_regs(priv);
1627
1628 if (netif_msg_drv(priv))
1629 dev_notice(emac_dev, "DaVinci EMAC: Opened %s\n", ndev->name);
1630
Cyril Chemparathy5d69e002010-09-15 10:11:24 -04001631 if (priv->phydev)
Anant Golea6286ee2009-05-18 15:19:01 -07001632 phy_start(priv->phydev);
1633
1634 return 0;
1635
1636rollback:
1637
1638 dev_err(emac_dev, "DaVinci EMAC: request_irq() failed");
1639
1640 for (q = k; k >= 0; k--) {
1641 for (m = i; m >= res->start; m--)
1642 free_irq(m, ndev);
1643 res = platform_get_resource(priv->pdev, IORESOURCE_IRQ, k-1);
1644 m = res->end;
1645 }
1646 return -EBUSY;
1647}
1648
1649/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001650 * emac_dev_stop - EMAC device stop
Anant Golea6286ee2009-05-18 15:19:01 -07001651 * @ndev: The DaVinci EMAC network adapter
1652 *
1653 * Called when system wants to stop or down the interface. We stop the network
1654 * queue, disable interrupts and cleanup TX/RX channels.
1655 *
1656 * We return the statistics in net_device_stats structure pulled from emac
1657 */
1658static int emac_dev_stop(struct net_device *ndev)
1659{
1660 struct resource *res;
1661 int i = 0;
1662 int irq_num;
1663 struct emac_priv *priv = netdev_priv(ndev);
1664 struct device *emac_dev = &ndev->dev;
1665
1666 /* inform the upper layers. */
1667 netif_stop_queue(ndev);
1668 napi_disable(&priv->napi);
1669
1670 netif_carrier_off(ndev);
1671 emac_int_disable(priv);
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001672 cpdma_ctlr_stop(priv->dma);
Anant Golea6286ee2009-05-18 15:19:01 -07001673 emac_write(EMAC_SOFTRESET, 1);
1674
1675 if (priv->phydev)
1676 phy_disconnect(priv->phydev);
1677
1678 /* Free IRQ */
1679 while ((res = platform_get_resource(priv->pdev, IORESOURCE_IRQ, i))) {
1680 for (irq_num = res->start; irq_num <= res->end; irq_num++)
1681 free_irq(irq_num, priv->ndev);
1682 i++;
1683 }
1684
1685 if (netif_msg_drv(priv))
1686 dev_notice(emac_dev, "DaVinci EMAC: %s stopped\n", ndev->name);
1687
1688 return 0;
1689}
1690
1691/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001692 * emac_dev_getnetstats - EMAC get statistics function
Anant Golea6286ee2009-05-18 15:19:01 -07001693 * @ndev: The DaVinci EMAC network adapter
1694 *
1695 * Called when system wants to get statistics from the device.
1696 *
1697 * We return the statistics in net_device_stats structure pulled from emac
1698 */
1699static struct net_device_stats *emac_dev_getnetstats(struct net_device *ndev)
1700{
1701 struct emac_priv *priv = netdev_priv(ndev);
Sriram0fe74632009-10-07 02:44:30 +00001702 u32 mac_control;
1703 u32 stats_clear_mask;
Anant Golea6286ee2009-05-18 15:19:01 -07001704
1705 /* update emac hardware stats and reset the registers*/
1706
Sriram0fe74632009-10-07 02:44:30 +00001707 mac_control = emac_read(EMAC_MACCONTROL);
1708
1709 if (mac_control & EMAC_MACCONTROL_GMIIEN)
1710 stats_clear_mask = EMAC_STATS_CLR_MASK;
1711 else
1712 stats_clear_mask = 0;
1713
Kulikov Vasiliy78e8c532010-07-05 02:13:26 +00001714 ndev->stats.multicast += emac_read(EMAC_RXMCASTFRAMES);
Sriram0fe74632009-10-07 02:44:30 +00001715 emac_write(EMAC_RXMCASTFRAMES, stats_clear_mask);
Anant Golea6286ee2009-05-18 15:19:01 -07001716
Kulikov Vasiliy78e8c532010-07-05 02:13:26 +00001717 ndev->stats.collisions += (emac_read(EMAC_TXCOLLISION) +
Anant Golea6286ee2009-05-18 15:19:01 -07001718 emac_read(EMAC_TXSINGLECOLL) +
1719 emac_read(EMAC_TXMULTICOLL));
Sriram0fe74632009-10-07 02:44:30 +00001720 emac_write(EMAC_TXCOLLISION, stats_clear_mask);
1721 emac_write(EMAC_TXSINGLECOLL, stats_clear_mask);
1722 emac_write(EMAC_TXMULTICOLL, stats_clear_mask);
Anant Golea6286ee2009-05-18 15:19:01 -07001723
Kulikov Vasiliy78e8c532010-07-05 02:13:26 +00001724 ndev->stats.rx_length_errors += (emac_read(EMAC_RXOVERSIZED) +
Anant Golea6286ee2009-05-18 15:19:01 -07001725 emac_read(EMAC_RXJABBER) +
1726 emac_read(EMAC_RXUNDERSIZED));
Sriram0fe74632009-10-07 02:44:30 +00001727 emac_write(EMAC_RXOVERSIZED, stats_clear_mask);
1728 emac_write(EMAC_RXJABBER, stats_clear_mask);
1729 emac_write(EMAC_RXUNDERSIZED, stats_clear_mask);
Anant Golea6286ee2009-05-18 15:19:01 -07001730
Kulikov Vasiliy78e8c532010-07-05 02:13:26 +00001731 ndev->stats.rx_over_errors += (emac_read(EMAC_RXSOFOVERRUNS) +
Anant Golea6286ee2009-05-18 15:19:01 -07001732 emac_read(EMAC_RXMOFOVERRUNS));
Sriram0fe74632009-10-07 02:44:30 +00001733 emac_write(EMAC_RXSOFOVERRUNS, stats_clear_mask);
1734 emac_write(EMAC_RXMOFOVERRUNS, stats_clear_mask);
Anant Golea6286ee2009-05-18 15:19:01 -07001735
Kulikov Vasiliy78e8c532010-07-05 02:13:26 +00001736 ndev->stats.rx_fifo_errors += emac_read(EMAC_RXDMAOVERRUNS);
Sriram0fe74632009-10-07 02:44:30 +00001737 emac_write(EMAC_RXDMAOVERRUNS, stats_clear_mask);
Anant Golea6286ee2009-05-18 15:19:01 -07001738
Kulikov Vasiliy78e8c532010-07-05 02:13:26 +00001739 ndev->stats.tx_carrier_errors +=
Anant Golea6286ee2009-05-18 15:19:01 -07001740 emac_read(EMAC_TXCARRIERSENSE);
Sriram0fe74632009-10-07 02:44:30 +00001741 emac_write(EMAC_TXCARRIERSENSE, stats_clear_mask);
Anant Golea6286ee2009-05-18 15:19:01 -07001742
Thomas Lange60aeba22011-03-09 04:41:16 +00001743 ndev->stats.tx_fifo_errors += emac_read(EMAC_TXUNDERRUN);
Sriram0fe74632009-10-07 02:44:30 +00001744 emac_write(EMAC_TXUNDERRUN, stats_clear_mask);
Anant Golea6286ee2009-05-18 15:19:01 -07001745
Kulikov Vasiliy78e8c532010-07-05 02:13:26 +00001746 return &ndev->stats;
Anant Golea6286ee2009-05-18 15:19:01 -07001747}
1748
1749static const struct net_device_ops emac_netdev_ops = {
1750 .ndo_open = emac_dev_open,
1751 .ndo_stop = emac_dev_stop,
1752 .ndo_start_xmit = emac_dev_xmit,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001753 .ndo_set_rx_mode = emac_dev_mcast_set,
Anant Golea6286ee2009-05-18 15:19:01 -07001754 .ndo_set_mac_address = emac_dev_setmac_addr,
1755 .ndo_do_ioctl = emac_devioctl,
1756 .ndo_tx_timeout = emac_dev_tx_timeout,
1757 .ndo_get_stats = emac_dev_getnetstats,
1758#ifdef CONFIG_NET_POLL_CONTROLLER
1759 .ndo_poll_controller = emac_poll_controller,
1760#endif
1761};
1762
1763/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001764 * davinci_emac_probe - EMAC device probe
Anant Golea6286ee2009-05-18 15:19:01 -07001765 * @pdev: The DaVinci EMAC device that we are removing
1766 *
1767 * Called when probing for emac devicesr. We get details of instances and
1768 * resource information from platform init and register a network device
1769 * and allocate resources necessary for driver to perform
1770 */
1771static int __devinit davinci_emac_probe(struct platform_device *pdev)
1772{
1773 int rc = 0;
1774 struct resource *res;
1775 struct net_device *ndev;
1776 struct emac_priv *priv;
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001777 unsigned long size, hw_ram_addr;
Anant Golea6286ee2009-05-18 15:19:01 -07001778 struct emac_platform_data *pdata;
1779 struct device *emac_dev;
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001780 struct cpdma_params dma_params;
Anant Golea6286ee2009-05-18 15:19:01 -07001781
1782 /* obtain emac clock from kernel */
1783 emac_clk = clk_get(&pdev->dev, NULL);
1784 if (IS_ERR(emac_clk)) {
Johan Hovold240b2622011-05-26 04:37:32 +00001785 dev_err(&pdev->dev, "failed to get EMAC clock\n");
Anant Golea6286ee2009-05-18 15:19:01 -07001786 return -EBUSY;
1787 }
1788 emac_bus_frequency = clk_get_rate(emac_clk);
1789 /* TODO: Probe PHY here if possible */
1790
1791 ndev = alloc_etherdev(sizeof(struct emac_priv));
1792 if (!ndev) {
Julia Lawallb722dbf2011-06-01 07:10:10 +00001793 rc = -ENOMEM;
1794 goto free_clk;
Anant Golea6286ee2009-05-18 15:19:01 -07001795 }
1796
1797 platform_set_drvdata(pdev, ndev);
1798 priv = netdev_priv(ndev);
1799 priv->pdev = pdev;
1800 priv->ndev = ndev;
1801 priv->msg_enable = netif_msg_init(debug_level, DAVINCI_EMAC_DEBUG);
1802
Anant Golea6286ee2009-05-18 15:19:01 -07001803 spin_lock_init(&priv->lock);
1804
1805 pdata = pdev->dev.platform_data;
1806 if (!pdata) {
Johan Hovold240b2622011-05-26 04:37:32 +00001807 dev_err(&pdev->dev, "no platform data\n");
Julia Lawallb722dbf2011-06-01 07:10:10 +00001808 rc = -ENODEV;
1809 goto probe_quit;
Anant Golea6286ee2009-05-18 15:19:01 -07001810 }
1811
1812 /* MAC addr and PHY mask , RMII enable info from platform_data */
1813 memcpy(priv->mac_addr, pdata->mac_addr, 6);
Cyril Chemparathy5d69e002010-09-15 10:11:24 -04001814 priv->phy_id = pdata->phy_id;
Anant Golea6286ee2009-05-18 15:19:01 -07001815 priv->rmii_en = pdata->rmii_en;
1816 priv->version = pdata->version;
Sriramakrishnan01a9af32009-11-19 15:58:26 +05301817 priv->int_enable = pdata->interrupt_enable;
1818 priv->int_disable = pdata->interrupt_disable;
1819
Sriram84da2652010-07-29 02:33:58 +00001820 priv->coal_intvl = 0;
1821 priv->bus_freq_mhz = (u32)(emac_bus_frequency / 1000000);
1822
Anant Golea6286ee2009-05-18 15:19:01 -07001823 emac_dev = &ndev->dev;
1824 /* Get EMAC platform data */
1825 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1826 if (!res) {
Johan Hovold240b2622011-05-26 04:37:32 +00001827 dev_err(&pdev->dev,"error getting res\n");
Anant Golea6286ee2009-05-18 15:19:01 -07001828 rc = -ENOENT;
1829 goto probe_quit;
1830 }
1831
1832 priv->emac_base_phys = res->start + pdata->ctrl_reg_offset;
Joe Perches28f65c112011-06-09 09:13:32 -07001833 size = resource_size(res);
Anant Golea6286ee2009-05-18 15:19:01 -07001834 if (!request_mem_region(res->start, size, ndev->name)) {
Johan Hovold240b2622011-05-26 04:37:32 +00001835 dev_err(&pdev->dev, "failed request_mem_region() for regs\n");
Anant Golea6286ee2009-05-18 15:19:01 -07001836 rc = -ENXIO;
1837 goto probe_quit;
1838 }
1839
1840 priv->remap_addr = ioremap(res->start, size);
1841 if (!priv->remap_addr) {
Johan Hovold240b2622011-05-26 04:37:32 +00001842 dev_err(&pdev->dev, "unable to map IO\n");
Anant Golea6286ee2009-05-18 15:19:01 -07001843 rc = -ENOMEM;
1844 release_mem_region(res->start, size);
1845 goto probe_quit;
1846 }
1847 priv->emac_base = priv->remap_addr + pdata->ctrl_reg_offset;
1848 ndev->base_addr = (unsigned long)priv->remap_addr;
1849
1850 priv->ctrl_base = priv->remap_addr + pdata->ctrl_mod_reg_offset;
Anant Golea6286ee2009-05-18 15:19:01 -07001851
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001852 hw_ram_addr = pdata->hw_ram_addr;
1853 if (!hw_ram_addr)
1854 hw_ram_addr = (u32 __force)res->start + pdata->ctrl_ram_offset;
1855
1856 memset(&dma_params, 0, sizeof(dma_params));
1857 dma_params.dev = emac_dev;
1858 dma_params.dmaregs = priv->emac_base;
1859 dma_params.rxthresh = priv->emac_base + 0x120;
1860 dma_params.rxfree = priv->emac_base + 0x140;
1861 dma_params.txhdp = priv->emac_base + 0x600;
1862 dma_params.rxhdp = priv->emac_base + 0x620;
1863 dma_params.txcp = priv->emac_base + 0x640;
1864 dma_params.rxcp = priv->emac_base + 0x660;
1865 dma_params.num_chan = EMAC_MAX_TXRX_CHANNELS;
1866 dma_params.min_packet_size = EMAC_DEF_MIN_ETHPKTSIZE;
Sriram6a1fef62011-03-22 02:31:03 +00001867 dma_params.desc_hw_addr = hw_ram_addr;
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001868 dma_params.desc_mem_size = pdata->ctrl_ram_size;
1869 dma_params.desc_align = 16;
1870
Sriram6a1fef62011-03-22 02:31:03 +00001871 dma_params.desc_mem_phys = pdata->no_bd_ram ? 0 :
1872 (u32 __force)res->start + pdata->ctrl_ram_offset;
1873
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001874 priv->dma = cpdma_ctlr_create(&dma_params);
1875 if (!priv->dma) {
Johan Hovold240b2622011-05-26 04:37:32 +00001876 dev_err(&pdev->dev, "error initializing DMA\n");
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001877 rc = -ENOMEM;
1878 goto no_dma;
1879 }
1880
1881 priv->txchan = cpdma_chan_create(priv->dma, tx_chan_num(EMAC_DEF_TX_CH),
1882 emac_tx_handler);
1883 priv->rxchan = cpdma_chan_create(priv->dma, rx_chan_num(EMAC_DEF_RX_CH),
1884 emac_rx_handler);
1885 if (WARN_ON(!priv->txchan || !priv->rxchan)) {
1886 rc = -ENOMEM;
1887 goto no_irq_res;
1888 }
Sriramakrishnanad021ae2009-11-19 15:58:27 +05301889
Anant Golea6286ee2009-05-18 15:19:01 -07001890 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1891 if (!res) {
Johan Hovold240b2622011-05-26 04:37:32 +00001892 dev_err(&pdev->dev, "error getting irq res\n");
Anant Golea6286ee2009-05-18 15:19:01 -07001893 rc = -ENOENT;
1894 goto no_irq_res;
1895 }
1896 ndev->irq = res->start;
1897
1898 if (!is_valid_ether_addr(priv->mac_addr)) {
Anant Golea6286ee2009-05-18 15:19:01 -07001899 /* Use random MAC if none passed */
Danny Kukawkabaf1d372012-02-17 05:43:24 +00001900 eth_hw_addr_random(ndev);
1901 memcpy(priv->mac_addr, ndev->dev_addr, ndev->addr_len);
Johan Hovold240b2622011-05-26 04:37:32 +00001902 dev_warn(&pdev->dev, "using random MAC addr: %pM\n",
1903 priv->mac_addr);
Anant Golea6286ee2009-05-18 15:19:01 -07001904 }
1905
1906 ndev->netdev_ops = &emac_netdev_ops;
1907 SET_ETHTOOL_OPS(ndev, &ethtool_ops);
1908 netif_napi_add(ndev, &priv->napi, emac_poll, EMAC_POLL_WEIGHT);
1909
Sriram1ca518b2010-01-07 00:22:37 +00001910 clk_enable(emac_clk);
1911
Anant Golea6286ee2009-05-18 15:19:01 -07001912 /* register the network device */
1913 SET_NETDEV_DEV(ndev, &pdev->dev);
1914 rc = register_netdev(ndev);
1915 if (rc) {
Johan Hovold240b2622011-05-26 04:37:32 +00001916 dev_err(&pdev->dev, "error in register_netdev\n");
Anant Golea6286ee2009-05-18 15:19:01 -07001917 rc = -ENODEV;
1918 goto netdev_reg_err;
1919 }
1920
Anant Golea6286ee2009-05-18 15:19:01 -07001921
Anant Golea6286ee2009-05-18 15:19:01 -07001922 if (netif_msg_probe(priv)) {
1923 dev_notice(emac_dev, "DaVinci EMAC Probe found device "\
1924 "(regs: %p, irq: %d)\n",
1925 (void *)priv->emac_base_phys, ndev->irq);
1926 }
1927 return 0;
1928
Anant Golea6286ee2009-05-18 15:19:01 -07001929netdev_reg_err:
Sriram1ca518b2010-01-07 00:22:37 +00001930 clk_disable(emac_clk);
Anant Golea6286ee2009-05-18 15:19:01 -07001931no_irq_res:
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001932 if (priv->txchan)
1933 cpdma_chan_destroy(priv->txchan);
1934 if (priv->rxchan)
1935 cpdma_chan_destroy(priv->rxchan);
1936 cpdma_ctlr_destroy(priv->dma);
1937no_dma:
Anant Golea6286ee2009-05-18 15:19:01 -07001938 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Joe Perches28f65c112011-06-09 09:13:32 -07001939 release_mem_region(res->start, resource_size(res));
Anant Golea6286ee2009-05-18 15:19:01 -07001940 iounmap(priv->remap_addr);
1941
1942probe_quit:
Anant Golea6286ee2009-05-18 15:19:01 -07001943 free_netdev(ndev);
Julia Lawallb722dbf2011-06-01 07:10:10 +00001944free_clk:
1945 clk_put(emac_clk);
Anant Golea6286ee2009-05-18 15:19:01 -07001946 return rc;
1947}
1948
1949/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001950 * davinci_emac_remove - EMAC device remove
Anant Golea6286ee2009-05-18 15:19:01 -07001951 * @pdev: The DaVinci EMAC device that we are removing
1952 *
1953 * Called when removing the device driver. We disable clock usage and release
1954 * the resources taken up by the driver and unregister network device
1955 */
1956static int __devexit davinci_emac_remove(struct platform_device *pdev)
1957{
1958 struct resource *res;
1959 struct net_device *ndev = platform_get_drvdata(pdev);
1960 struct emac_priv *priv = netdev_priv(ndev);
1961
1962 dev_notice(&ndev->dev, "DaVinci EMAC: davinci_emac_remove()\n");
1963
Anant Golea6286ee2009-05-18 15:19:01 -07001964 platform_set_drvdata(pdev, NULL);
1965 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Anant Golea6286ee2009-05-18 15:19:01 -07001966
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001967 if (priv->txchan)
1968 cpdma_chan_destroy(priv->txchan);
1969 if (priv->rxchan)
1970 cpdma_chan_destroy(priv->rxchan);
1971 cpdma_ctlr_destroy(priv->dma);
1972
Joe Perches28f65c112011-06-09 09:13:32 -07001973 release_mem_region(res->start, resource_size(res));
Anant Golea6286ee2009-05-18 15:19:01 -07001974
1975 unregister_netdev(ndev);
Anant Golea6286ee2009-05-18 15:19:01 -07001976 iounmap(priv->remap_addr);
Stefan Weil2a1bc0d2010-08-03 08:53:45 +00001977 free_netdev(ndev);
Anant Golea6286ee2009-05-18 15:19:01 -07001978
1979 clk_disable(emac_clk);
1980 clk_put(emac_clk);
1981
1982 return 0;
1983}
1984
chaithrika@ti.comd4fdcd92010-03-10 22:37:56 +00001985static int davinci_emac_suspend(struct device *dev)
Ranjith Lohithakshan8d044fe2009-11-04 22:06:20 -08001986{
chaithrika@ti.comd4fdcd92010-03-10 22:37:56 +00001987 struct platform_device *pdev = to_platform_device(dev);
1988 struct net_device *ndev = platform_get_drvdata(pdev);
Ranjith Lohithakshan8d044fe2009-11-04 22:06:20 -08001989
chaithrika@ti.comd4fdcd92010-03-10 22:37:56 +00001990 if (netif_running(ndev))
1991 emac_dev_stop(ndev);
Ranjith Lohithakshan8d044fe2009-11-04 22:06:20 -08001992
1993 clk_disable(emac_clk);
1994
1995 return 0;
1996}
1997
chaithrika@ti.comd4fdcd92010-03-10 22:37:56 +00001998static int davinci_emac_resume(struct device *dev)
Ranjith Lohithakshan8d044fe2009-11-04 22:06:20 -08001999{
chaithrika@ti.comd4fdcd92010-03-10 22:37:56 +00002000 struct platform_device *pdev = to_platform_device(dev);
2001 struct net_device *ndev = platform_get_drvdata(pdev);
Ranjith Lohithakshan8d044fe2009-11-04 22:06:20 -08002002
2003 clk_enable(emac_clk);
2004
chaithrika@ti.comd4fdcd92010-03-10 22:37:56 +00002005 if (netif_running(ndev))
2006 emac_dev_open(ndev);
Ranjith Lohithakshan8d044fe2009-11-04 22:06:20 -08002007
2008 return 0;
2009}
2010
chaithrika@ti.comd4fdcd92010-03-10 22:37:56 +00002011static const struct dev_pm_ops davinci_emac_pm_ops = {
2012 .suspend = davinci_emac_suspend,
2013 .resume = davinci_emac_resume,
2014};
2015
Ben Hutchings1aa8b472012-07-10 10:56:59 +00002016/* davinci_emac_driver: EMAC platform driver structure */
Anant Golea6286ee2009-05-18 15:19:01 -07002017static struct platform_driver davinci_emac_driver = {
2018 .driver = {
2019 .name = "davinci_emac",
2020 .owner = THIS_MODULE,
chaithrika@ti.comd4fdcd92010-03-10 22:37:56 +00002021 .pm = &davinci_emac_pm_ops,
Anant Golea6286ee2009-05-18 15:19:01 -07002022 },
2023 .probe = davinci_emac_probe,
2024 .remove = __devexit_p(davinci_emac_remove),
2025};
2026
2027/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00002028 * davinci_emac_init - EMAC driver module init
Anant Golea6286ee2009-05-18 15:19:01 -07002029 *
2030 * Called when initializing the driver. We register the driver with
2031 * the platform.
2032 */
2033static int __init davinci_emac_init(void)
2034{
2035 return platform_driver_register(&davinci_emac_driver);
2036}
Rajashekhara, Sudhakar2db95172009-08-19 10:39:55 +00002037late_initcall(davinci_emac_init);
Anant Golea6286ee2009-05-18 15:19:01 -07002038
2039/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00002040 * davinci_emac_exit - EMAC driver module exit
Anant Golea6286ee2009-05-18 15:19:01 -07002041 *
2042 * Called when exiting the driver completely. We unregister the driver with
2043 * the platform and exit
2044 */
2045static void __exit davinci_emac_exit(void)
2046{
2047 platform_driver_unregister(&davinci_emac_driver);
2048}
2049module_exit(davinci_emac_exit);
2050
2051MODULE_LICENSE("GPL");
2052MODULE_AUTHOR("DaVinci EMAC Maintainer: Anant Gole <anantgole@ti.com>");
2053MODULE_AUTHOR("DaVinci EMAC Maintainer: Chaithrika U S <chaithrika@ti.com>");
2054MODULE_DESCRIPTION("DaVinci EMAC Ethernet driver");