lantiq_etop: set addr_assign_type if random_ether_addr() used
[linux-2.6-block.git] / drivers / net / ethernet / ti / davinci_emac.c
CommitLineData
a6286ee6
AG
1/*
2 * DaVinci Ethernet Medium Access Controller
3 *
4 * DaVinci EMAC is based upon CPPI 3.0 TI DMA engine
5 *
6 * Copyright (C) 2009 Texas Instruments.
7 *
8 * ---------------------------------------------------------------------------
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 * ---------------------------------------------------------------------------
24 * History:
25 * 0-5 A number of folks worked on this driver in bits and pieces but the major
26 * contribution came from Suraj Iyer and Anant Gole
27 * 6.0 Anant Gole - rewrote the driver as per Linux conventions
28 * 6.1 Chaithrika U S - added support for Gigabit and RMII features,
29 * PHY layer usage
30 */
31
a6286ee6
AG
32#include <linux/module.h>
33#include <linux/kernel.h>
34#include <linux/sched.h>
35#include <linux/string.h>
36#include <linux/timer.h>
37#include <linux/errno.h>
38#include <linux/in.h>
39#include <linux/ioport.h>
40#include <linux/slab.h>
41#include <linux/mm.h>
42#include <linux/interrupt.h>
43#include <linux/init.h>
44#include <linux/netdevice.h>
45#include <linux/etherdevice.h>
46#include <linux/skbuff.h>
47#include <linux/ethtool.h>
48#include <linux/highmem.h>
49#include <linux/proc_fs.h>
50#include <linux/ctype.h>
a6286ee6
AG
51#include <linux/spinlock.h>
52#include <linux/dma-mapping.h>
53#include <linux/clk.h>
54#include <linux/platform_device.h>
55#include <linux/semaphore.h>
56#include <linux/phy.h>
57#include <linux/bitops.h>
58#include <linux/io.h>
59#include <linux/uaccess.h>
8ee2bf9a 60#include <linux/davinci_emac.h>
a6286ee6
AG
61
62#include <asm/irq.h>
63#include <asm/page.h>
64
3ef0fdb2
CC
65#include "davinci_cpdma.h"
66
a6286ee6
AG
67static 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 */
25985edc 96#define EMAC_DEF_PASS_CRC (0) /* Do not pass CRC up to frames */
a6286ee6
AG
97#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 */
25985edc
LDM
102#define EMAC_DEF_PROM_EN (0) /* Promiscuous disabled */
103#define EMAC_DEF_PROM_CH (0) /* Promiscuous channel is 0 */
a6286ee6
AG
104#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 */
3ef0fdb2 117#define EMAC_DEF_RX_NUM_DESC (128)
86d8c07f 118#define EMAC_DEF_TX_NUM_DESC (128)
a6286ee6
AG
119#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)
a6286ee6
AG
130#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 */
69ef9694 163#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)
a6286ee6
AG
168#define EMAC_MACCONTROL_RMIISPEED_MASK BIT(15)
169
170/* GIGABIT MODE related bits */
a6286ee6
AG
171#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 */
69ef9694 189#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)
a6286ee6
AG
193
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)
43c2ed8e
S
197#define EMAC_DM646X_MAC_IN_VECTOR_HOST_INT BIT(26)
198#define EMAC_DM646X_MAC_IN_VECTOR_STATPEND_INT BIT(27)
199
a6286ee6
AG
200/* 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 */
a6286ee6
AG
216#define EMAC_MACINVECTOR 0x90
217
218#define EMAC_DM646X_MACEOIVECTOR 0x94
219
a6286ee6
AG
220#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
a6286ee6
AG
246/* 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
84da2658
S
282/* 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
a6286ee6 287/* EMAC DM646X control module registers */
84da2658
S
288#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
a6286ee6
AG
302
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
0fe7463a
S
307/* EMAC Stats Clear Mask */
308#define EMAC_STATS_CLR_MASK (0xFFFFFFFF)
309
a6286ee6
AG
310/* 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];
a6286ee6
AG
320 void __iomem *remap_addr;
321 u32 emac_base_phys;
322 void __iomem *emac_base;
323 void __iomem *ctrl_base;
3ef0fdb2
CC
324 struct cpdma_ctlr *dma;
325 struct cpdma_chan *txchan;
326 struct cpdma_chan *rxchan;
a6286ee6
AG
327 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;
84da2658
S
332 u32 coal_intvl;
333 u32 bus_freq_mhz;
a6286ee6
AG
334 u8 rmii_en;
335 u8 version;
a6286ee6
AG
336 u32 mac_hash1;
337 u32 mac_hash2;
338 u32 multicast_hash_cnt[EMAC_NUM_MULTICAST_BITS];
339 u32 rx_addr_type;
86d8c07f 340 atomic_t cur_tx;
5d69e007 341 const char *phy_id;
a6286ee6
AG
342 struct phy_device *phydev;
343 spinlock_t lock;
01a9af36
S
344 /*platform specific members*/
345 void (*int_enable) (void);
346 void (*int_disable) (void);
a6286ee6
AG
347};
348
349/* clock frequency for EMAC */
350static struct clk *emac_clk;
351static unsigned long emac_bus_frequency;
a6286ee6 352
a6286ee6
AG
353/* 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
a6286ee6
AG
377/**
378 * emac_dump_regs: Dump important EMAC registers to debug terminal
379 * @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");
e994762f
S
390 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 }
a6286ee6
AG
395 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));
a6286ee6
AG
403 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));
3ef0fdb2
CC
464
465 cpdma_ctlr_dump(priv->dma);
a6286ee6
AG
466}
467
a6286ee6
AG
468/**
469 * emac_get_drvinfo: Get EMAC driver information
470 * @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/**
484 * emac_get_settings: Get EMAC settings
485 * @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);
5d69e007 495 if (priv->phydev)
a6286ee6
AG
496 return phy_ethtool_gset(priv->phydev, ecmd);
497 else
498 return -EOPNOTSUPP;
499
500}
501
502/**
503 * emac_set_settings: Set EMAC settings
504 * @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);
5d69e007 513 if (priv->phydev)
a6286ee6
AG
514 return phy_ethtool_sset(priv->phydev, ecmd);
515 else
516 return -EOPNOTSUPP;
517
518}
519
84da2658
S
520/**
521 * emac_get_coalesce : Get interrupt coalesce settings for this device
522 * @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/**
539 * emac_set_coalesce : Set interrupt coalesce settings for this device
540 * @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
a6286ee6
AG
617/**
618 * ethtool_ops: DaVinci EMAC Ethtool structure
619 *
620 * Ethtool support for EMAC adapter
621 *
622 */
623static const struct ethtool_ops ethtool_ops = {
624 .get_drvinfo = emac_get_drvinfo,
625 .get_settings = emac_get_settings,
626 .set_settings = emac_set_settings,
627 .get_link = ethtool_op_get_link,
84da2658
S
628 .get_coalesce = emac_get_coalesce,
629 .set_coalesce = emac_set_coalesce,
a6286ee6
AG
630};
631
632/**
633 * emac_update_phystatus: Update Phy status
634 * @priv: The DaVinci EMAC private adapter structure
635 *
636 * Updates phy status and takes action for network queue if required
637 * based upon link status
638 *
639 */
640static void emac_update_phystatus(struct emac_priv *priv)
641{
642 u32 mac_control;
643 u32 new_duplex;
644 u32 cur_duplex;
645 struct net_device *ndev = priv->ndev;
646
647 mac_control = emac_read(EMAC_MACCONTROL);
648 cur_duplex = (mac_control & EMAC_MACCONTROL_FULLDUPLEXEN) ?
649 DUPLEX_FULL : DUPLEX_HALF;
5d69e007 650 if (priv->phydev)
a6286ee6
AG
651 new_duplex = priv->phydev->duplex;
652 else
653 new_duplex = DUPLEX_FULL;
654
655 /* We get called only if link has changed (speed/duplex/status) */
656 if ((priv->link) && (new_duplex != cur_duplex)) {
657 priv->duplex = new_duplex;
658 if (DUPLEX_FULL == priv->duplex)
659 mac_control |= (EMAC_MACCONTROL_FULLDUPLEXEN);
660 else
661 mac_control &= ~(EMAC_MACCONTROL_FULLDUPLEXEN);
662 }
663
664 if (priv->speed == SPEED_1000 && (priv->version == EMAC_VERSION_2)) {
665 mac_control = emac_read(EMAC_MACCONTROL);
69ef9694 666 mac_control |= (EMAC_DM646X_MACCONTORL_GIG |
a6286ee6
AG
667 EMAC_DM646X_MACCONTORL_GIGFORCE);
668 } else {
669 /* Clear the GIG bit and GIGFORCE bit */
670 mac_control &= ~(EMAC_DM646X_MACCONTORL_GIGFORCE |
671 EMAC_DM646X_MACCONTORL_GIG);
672
673 if (priv->rmii_en && (priv->speed == SPEED_100))
674 mac_control |= EMAC_MACCONTROL_RMIISPEED_MASK;
675 else
676 mac_control &= ~EMAC_MACCONTROL_RMIISPEED_MASK;
677 }
678
679 /* Update mac_control if changed */
680 emac_write(EMAC_MACCONTROL, mac_control);
681
682 if (priv->link) {
683 /* link ON */
684 if (!netif_carrier_ok(ndev))
685 netif_carrier_on(ndev);
686 /* reactivate the transmit queue if it is stopped */
687 if (netif_running(ndev) && netif_queue_stopped(ndev))
688 netif_wake_queue(ndev);
689 } else {
690 /* link OFF */
691 if (netif_carrier_ok(ndev))
692 netif_carrier_off(ndev);
693 if (!netif_queue_stopped(ndev))
694 netif_stop_queue(ndev);
695 }
696}
697
698/**
699 * hash_get: Calculate hash value from mac address
700 * @addr: mac address to delete from hash table
701 *
702 * Calculates hash value from mac address
703 *
704 */
705static u32 hash_get(u8 *addr)
706{
707 u32 hash;
708 u8 tmpval;
709 int cnt;
710 hash = 0;
711
712 for (cnt = 0; cnt < 2; cnt++) {
713 tmpval = *addr++;
714 hash ^= (tmpval >> 2) ^ (tmpval << 4);
715 tmpval = *addr++;
716 hash ^= (tmpval >> 4) ^ (tmpval << 2);
717 tmpval = *addr++;
718 hash ^= (tmpval >> 6) ^ (tmpval);
719 }
720
721 return hash & 0x3F;
722}
723
724/**
725 * hash_add: Hash function to add mac addr from hash table
726 * @priv: The DaVinci EMAC private adapter structure
727 * mac_addr: mac address to delete from hash table
728 *
729 * Adds mac address to the internal hash table
730 *
731 */
732static int hash_add(struct emac_priv *priv, u8 *mac_addr)
733{
734 struct device *emac_dev = &priv->ndev->dev;
735 u32 rc = 0;
736 u32 hash_bit;
737 u32 hash_value = hash_get(mac_addr);
738
739 if (hash_value >= EMAC_NUM_MULTICAST_BITS) {
740 if (netif_msg_drv(priv)) {
741 dev_err(emac_dev, "DaVinci EMAC: hash_add(): Invalid "\
742 "Hash %08x, should not be greater than %08x",
743 hash_value, (EMAC_NUM_MULTICAST_BITS - 1));
744 }
745 return -1;
746 }
747
748 /* set the hash bit only if not previously set */
749 if (priv->multicast_hash_cnt[hash_value] == 0) {
750 rc = 1; /* hash value changed */
751 if (hash_value < 32) {
752 hash_bit = BIT(hash_value);
753 priv->mac_hash1 |= hash_bit;
754 } else {
755 hash_bit = BIT((hash_value - 32));
756 priv->mac_hash2 |= hash_bit;
757 }
758 }
759
760 /* incr counter for num of mcast addr's mapped to "this" hash bit */
761 ++priv->multicast_hash_cnt[hash_value];
762
763 return rc;
764}
765
766/**
767 * hash_del: Hash function to delete mac addr from hash table
768 * @priv: The DaVinci EMAC private adapter structure
769 * mac_addr: mac address to delete from hash table
770 *
771 * Removes mac address from the internal hash table
772 *
773 */
774static int hash_del(struct emac_priv *priv, u8 *mac_addr)
775{
776 u32 hash_value;
777 u32 hash_bit;
778
779 hash_value = hash_get(mac_addr);
780 if (priv->multicast_hash_cnt[hash_value] > 0) {
781 /* dec cntr for num of mcast addr's mapped to this hash bit */
782 --priv->multicast_hash_cnt[hash_value];
783 }
784
785 /* if counter still > 0, at least one multicast address refers
786 * to this hash bit. so return 0 */
787 if (priv->multicast_hash_cnt[hash_value] > 0)
788 return 0;
789
790 if (hash_value < 32) {
791 hash_bit = BIT(hash_value);
792 priv->mac_hash1 &= ~hash_bit;
793 } else {
794 hash_bit = BIT((hash_value - 32));
795 priv->mac_hash2 &= ~hash_bit;
796 }
797
798 /* return 1 to indicate change in mac_hash registers reqd */
799 return 1;
800}
801
802/* EMAC multicast operation */
803#define EMAC_MULTICAST_ADD 0
804#define EMAC_MULTICAST_DEL 1
805#define EMAC_ALL_MULTI_SET 2
806#define EMAC_ALL_MULTI_CLR 3
807
808/**
809 * emac_add_mcast: Set multicast address in the EMAC adapter (Internal)
810 * @priv: The DaVinci EMAC private adapter structure
811 * @action: multicast operation to perform
812 * mac_addr: mac address to set
813 *
814 * Set multicast addresses in EMAC adapter - internal function
815 *
816 */
817static void emac_add_mcast(struct emac_priv *priv, u32 action, u8 *mac_addr)
818{
819 struct device *emac_dev = &priv->ndev->dev;
820 int update = -1;
821
822 switch (action) {
823 case EMAC_MULTICAST_ADD:
824 update = hash_add(priv, mac_addr);
825 break;
826 case EMAC_MULTICAST_DEL:
827 update = hash_del(priv, mac_addr);
828 break;
829 case EMAC_ALL_MULTI_SET:
830 update = 1;
831 priv->mac_hash1 = EMAC_ALL_MULTI_REG_VALUE;
832 priv->mac_hash2 = EMAC_ALL_MULTI_REG_VALUE;
833 break;
834 case EMAC_ALL_MULTI_CLR:
835 update = 1;
836 priv->mac_hash1 = 0;
837 priv->mac_hash2 = 0;
838 memset(&(priv->multicast_hash_cnt[0]), 0,
839 sizeof(priv->multicast_hash_cnt[0]) *
840 EMAC_NUM_MULTICAST_BITS);
841 break;
842 default:
843 if (netif_msg_drv(priv))
844 dev_err(emac_dev, "DaVinci EMAC: add_mcast"\
845 ": bad operation %d", action);
846 break;
847 }
848
849 /* write to the hardware only if the register status chances */
850 if (update > 0) {
851 emac_write(EMAC_MACHASH1, priv->mac_hash1);
852 emac_write(EMAC_MACHASH2, priv->mac_hash2);
853 }
854}
855
856/**
857 * emac_dev_mcast_set: Set multicast address in the EMAC adapter
858 * @ndev: The DaVinci EMAC network adapter
859 *
860 * Set multicast addresses in EMAC adapter
861 *
862 */
863static void emac_dev_mcast_set(struct net_device *ndev)
864{
865 u32 mbp_enable;
866 struct emac_priv *priv = netdev_priv(ndev);
867
868 mbp_enable = emac_read(EMAC_RXMBPENABLE);
869 if (ndev->flags & IFF_PROMISC) {
870 mbp_enable &= (~EMAC_MBP_PROMISCCH(EMAC_DEF_PROM_CH));
871 mbp_enable |= (EMAC_MBP_RXPROMISC);
872 } else {
873 mbp_enable = (mbp_enable & ~EMAC_MBP_RXPROMISC);
874 if ((ndev->flags & IFF_ALLMULTI) ||
4cd24eaf 875 netdev_mc_count(ndev) > EMAC_DEF_MAX_MULTICAST_ADDRESSES) {
a6286ee6
AG
876 mbp_enable = (mbp_enable | EMAC_MBP_RXMCAST);
877 emac_add_mcast(priv, EMAC_ALL_MULTI_SET, NULL);
878 }
4cd24eaf 879 if (!netdev_mc_empty(ndev)) {
22bedad3
JP
880 struct netdev_hw_addr *ha;
881
a6286ee6
AG
882 mbp_enable = (mbp_enable | EMAC_MBP_RXMCAST);
883 emac_add_mcast(priv, EMAC_ALL_MULTI_CLR, NULL);
884 /* program multicast address list into EMAC hardware */
22bedad3 885 netdev_for_each_mc_addr(ha, ndev) {
a6286ee6 886 emac_add_mcast(priv, EMAC_MULTICAST_ADD,
22bedad3 887 (u8 *) ha->addr);
a6286ee6
AG
888 }
889 } else {
890 mbp_enable = (mbp_enable & ~EMAC_MBP_RXMCAST);
891 emac_add_mcast(priv, EMAC_ALL_MULTI_CLR, NULL);
892 }
893 }
894 /* Set mbp config register */
895 emac_write(EMAC_RXMBPENABLE, mbp_enable);
896}
897
898/*************************************************************************
899 * EMAC Hardware manipulation
900 *************************************************************************/
901
902/**
903 * emac_int_disable: Disable EMAC module interrupt (from adapter)
904 * @priv: The DaVinci EMAC private adapter structure
905 *
906 * Disable EMAC interrupt on the adapter
907 *
908 */
909static void emac_int_disable(struct emac_priv *priv)
910{
911 if (priv->version == EMAC_VERSION_2) {
912 unsigned long flags;
913
914 local_irq_save(flags);
915
916 /* Program C0_Int_En to zero to turn off
917 * interrupts to the CPU */
918 emac_ctrl_write(EMAC_DM646X_CMRXINTEN, 0x0);
919 emac_ctrl_write(EMAC_DM646X_CMTXINTEN, 0x0);
920 /* NOTE: Rx Threshold and Misc interrupts are not disabled */
01a9af36
S
921 if (priv->int_disable)
922 priv->int_disable();
a6286ee6
AG
923
924 local_irq_restore(flags);
925
926 } else {
927 /* Set DM644x control registers for interrupt control */
928 emac_ctrl_write(EMAC_CTRL_EWCTL, 0x0);
929 }
930}
931
932/**
933 * emac_int_enable: Enable EMAC module interrupt (from adapter)
934 * @priv: The DaVinci EMAC private adapter structure
935 *
936 * Enable EMAC interrupt on the adapter
937 *
938 */
939static void emac_int_enable(struct emac_priv *priv)
940{
941 if (priv->version == EMAC_VERSION_2) {
01a9af36
S
942 if (priv->int_enable)
943 priv->int_enable();
944
a6286ee6
AG
945 emac_ctrl_write(EMAC_DM646X_CMRXINTEN, 0xff);
946 emac_ctrl_write(EMAC_DM646X_CMTXINTEN, 0xff);
947
948 /* In addition to turning on interrupt Enable, we need
949 * ack by writing appropriate values to the EOI
950 * register */
951
952 /* NOTE: Rx Threshold and Misc interrupts are not enabled */
953
954 /* ack rxen only then a new pulse will be generated */
955 emac_write(EMAC_DM646X_MACEOIVECTOR,
956 EMAC_DM646X_MAC_EOI_C0_RXEN);
957
958 /* ack txen- only then a new pulse will be generated */
959 emac_write(EMAC_DM646X_MACEOIVECTOR,
960 EMAC_DM646X_MAC_EOI_C0_TXEN);
961
962 } else {
963 /* Set DM644x control registers for interrupt control */
964 emac_ctrl_write(EMAC_CTRL_EWCTL, 0x1);
965 }
966}
967
968/**
969 * emac_irq: EMAC interrupt handler
970 * @irq: interrupt number
971 * @dev_id: EMAC network adapter data structure ptr
972 *
973 * EMAC Interrupt handler - we only schedule NAPI and not process any packets
974 * here. EVen the interrupt status is checked (TX/RX/Err) in NAPI poll function
975 *
976 * Returns interrupt handled condition
977 */
978static irqreturn_t emac_irq(int irq, void *dev_id)
979{
980 struct net_device *ndev = (struct net_device *)dev_id;
981 struct emac_priv *priv = netdev_priv(ndev);
982
983 ++priv->isr_count;
984 if (likely(netif_running(priv->ndev))) {
985 emac_int_disable(priv);
986 napi_schedule(&priv->napi);
987 } else {
988 /* we are closing down, so dont process anything */
989 }
990 return IRQ_HANDLED;
991}
992
3ef0fdb2
CC
993static struct sk_buff *emac_rx_alloc(struct emac_priv *priv)
994{
dae2e9f4 995 struct sk_buff *skb = netdev_alloc_skb(priv->ndev, priv->rx_buf_size);
3ef0fdb2
CC
996 if (WARN_ON(!skb))
997 return NULL;
3ef0fdb2
CC
998 skb_reserve(skb, NET_IP_ALIGN);
999 return skb;
1000}
1001
1002static void emac_rx_handler(void *token, int len, int status)
1003{
1004 struct sk_buff *skb = token;
1005 struct net_device *ndev = skb->dev;
1006 struct emac_priv *priv = netdev_priv(ndev);
1007 struct device *emac_dev = &ndev->dev;
1008 int ret;
1009
1010 /* free and bail if we are shutting down */
0a5f3846 1011 if (unlikely(!netif_running(ndev) || !netif_carrier_ok(ndev))) {
3ef0fdb2
CC
1012 dev_kfree_skb_any(skb);
1013 return;
1014 }
1015
25985edc 1016 /* recycle on receive error */
3ef0fdb2
CC
1017 if (status < 0) {
1018 ndev->stats.rx_errors++;
1019 goto recycle;
1020 }
1021
1022 /* feed received packet up the stack */
1023 skb_put(skb, len);
1024 skb->protocol = eth_type_trans(skb, ndev);
1025 netif_receive_skb(skb);
1026 ndev->stats.rx_bytes += len;
1027 ndev->stats.rx_packets++;
1028
1029 /* alloc a new packet for receive */
1030 skb = emac_rx_alloc(priv);
1031 if (!skb) {
1032 if (netif_msg_rx_err(priv) && net_ratelimit())
1033 dev_err(emac_dev, "failed rx buffer alloc\n");
1034 return;
1035 }
1036
1037recycle:
1038 ret = cpdma_chan_submit(priv->rxchan, skb, skb->data,
1039 skb_tailroom(skb), GFP_KERNEL);
1040 if (WARN_ON(ret < 0))
1041 dev_kfree_skb_any(skb);
1042}
1043
1044static void emac_tx_handler(void *token, int len, int status)
1045{
1046 struct sk_buff *skb = token;
1047 struct net_device *ndev = skb->dev;
86d8c07f
SH
1048 struct emac_priv *priv = netdev_priv(ndev);
1049
1050 atomic_dec(&priv->cur_tx);
3ef0fdb2
CC
1051
1052 if (unlikely(netif_queue_stopped(ndev)))
1053 netif_start_queue(ndev);
1054 ndev->stats.tx_packets++;
1055 ndev->stats.tx_bytes += len;
1056 dev_kfree_skb_any(skb);
1057}
1058
a6286ee6
AG
1059/**
1060 * emac_dev_xmit: EMAC Transmit function
1061 * @skb: SKB pointer
1062 * @ndev: The DaVinci EMAC network adapter
1063 *
1064 * Called by the system to transmit a packet - we queue the packet in
1065 * EMAC hardware transmit queue
1066 *
1067 * Returns success(NETDEV_TX_OK) or error code (typically out of desc's)
1068 */
1069static int emac_dev_xmit(struct sk_buff *skb, struct net_device *ndev)
1070{
1071 struct device *emac_dev = &ndev->dev;
1072 int ret_code;
a6286ee6
AG
1073 struct emac_priv *priv = netdev_priv(ndev);
1074
1075 /* If no link, return */
1076 if (unlikely(!priv->link)) {
1077 if (netif_msg_tx_err(priv) && net_ratelimit())
1078 dev_err(emac_dev, "DaVinci EMAC: No link to transmit");
3ef0fdb2 1079 goto fail_tx;
a6286ee6
AG
1080 }
1081
3ef0fdb2
CC
1082 ret_code = skb_padto(skb, EMAC_DEF_MIN_ETHPKTSIZE);
1083 if (unlikely(ret_code < 0)) {
1084 if (netif_msg_tx_err(priv) && net_ratelimit())
1085 dev_err(emac_dev, "DaVinci EMAC: packet pad failed");
1086 goto fail_tx;
1087 }
1088
5bf0c191
RC
1089 skb_tx_timestamp(skb);
1090
3ef0fdb2
CC
1091 ret_code = cpdma_chan_submit(priv->txchan, skb, skb->data, skb->len,
1092 GFP_KERNEL);
a6286ee6 1093 if (unlikely(ret_code != 0)) {
3ef0fdb2
CC
1094 if (netif_msg_tx_err(priv) && net_ratelimit())
1095 dev_err(emac_dev, "DaVinci EMAC: desc submit failed");
1096 goto fail_tx;
a6286ee6
AG
1097 }
1098
86d8c07f
SH
1099 if (atomic_inc_return(&priv->cur_tx) >= EMAC_DEF_TX_NUM_DESC)
1100 netif_stop_queue(ndev);
1101
a6286ee6 1102 return NETDEV_TX_OK;
3ef0fdb2
CC
1103
1104fail_tx:
1105 ndev->stats.tx_dropped++;
1106 netif_stop_queue(ndev);
1107 return NETDEV_TX_BUSY;
a6286ee6
AG
1108}
1109
1110/**
1111 * emac_dev_tx_timeout: EMAC Transmit timeout function
1112 * @ndev: The DaVinci EMAC network adapter
1113 *
1114 * Called when system detects that a skb timeout period has expired
1115 * potentially due to a fault in the adapter in not being able to send
1116 * it out on the wire. We teardown the TX channel assuming a hardware
1117 * error and re-initialize the TX channel for hardware operation
1118 *
1119 */
1120static void emac_dev_tx_timeout(struct net_device *ndev)
1121{
1122 struct emac_priv *priv = netdev_priv(ndev);
1123 struct device *emac_dev = &ndev->dev;
1124
1125 if (netif_msg_tx_err(priv))
1126 dev_err(emac_dev, "DaVinci EMAC: xmit timeout, restarting TX");
1127
3ef0fdb2
CC
1128 emac_dump_regs(priv);
1129
78e8c532 1130 ndev->stats.tx_errors++;
a6286ee6 1131 emac_int_disable(priv);
3ef0fdb2
CC
1132 cpdma_chan_stop(priv->txchan);
1133 cpdma_chan_start(priv->txchan);
a6286ee6
AG
1134 emac_int_enable(priv);
1135}
1136
a6286ee6
AG
1137/**
1138 * emac_set_type0addr: Set EMAC Type0 mac address
1139 * @priv: The DaVinci EMAC private adapter structure
1140 * @ch: RX channel number
1141 * @mac_addr: MAC address to set in device
1142 *
1143 * Called internally to set Type0 mac address of the adapter (Device)
1144 *
1145 * Returns success (0) or appropriate error code (none as of now)
1146 */
1147static void emac_set_type0addr(struct emac_priv *priv, u32 ch, char *mac_addr)
1148{
1149 u32 val;
1150 val = ((mac_addr[5] << 8) | (mac_addr[4]));
1151 emac_write(EMAC_MACSRCADDRLO, val);
1152
1153 val = ((mac_addr[3] << 24) | (mac_addr[2] << 16) | \
1154 (mac_addr[1] << 8) | (mac_addr[0]));
1155 emac_write(EMAC_MACSRCADDRHI, val);
1156 val = emac_read(EMAC_RXUNICASTSET);
1157 val |= BIT(ch);
1158 emac_write(EMAC_RXUNICASTSET, val);
1159 val = emac_read(EMAC_RXUNICASTCLEAR);
1160 val &= ~BIT(ch);
1161 emac_write(EMAC_RXUNICASTCLEAR, val);
1162}
1163
1164/**
1165 * emac_set_type1addr: Set EMAC Type1 mac address
1166 * @priv: The DaVinci EMAC private adapter structure
1167 * @ch: RX channel number
1168 * @mac_addr: MAC address to set in device
1169 *
1170 * Called internally to set Type1 mac address of the adapter (Device)
1171 *
1172 * Returns success (0) or appropriate error code (none as of now)
1173 */
1174static void emac_set_type1addr(struct emac_priv *priv, u32 ch, char *mac_addr)
1175{
1176 u32 val;
1177 emac_write(EMAC_MACINDEX, ch);
1178 val = ((mac_addr[5] << 8) | mac_addr[4]);
1179 emac_write(EMAC_MACADDRLO, val);
1180 val = ((mac_addr[3] << 24) | (mac_addr[2] << 16) | \
1181 (mac_addr[1] << 8) | (mac_addr[0]));
1182 emac_write(EMAC_MACADDRHI, val);
1183 emac_set_type0addr(priv, ch, mac_addr);
1184}
1185
1186/**
1187 * emac_set_type2addr: Set EMAC Type2 mac address
1188 * @priv: The DaVinci EMAC private adapter structure
1189 * @ch: RX channel number
1190 * @mac_addr: MAC address to set in device
1191 * @index: index into RX address entries
1192 * @match: match parameter for RX address matching logic
1193 *
1194 * Called internally to set Type2 mac address of the adapter (Device)
1195 *
1196 * Returns success (0) or appropriate error code (none as of now)
1197 */
1198static void emac_set_type2addr(struct emac_priv *priv, u32 ch,
1199 char *mac_addr, int index, int match)
1200{
1201 u32 val;
1202 emac_write(EMAC_MACINDEX, index);
1203 val = ((mac_addr[3] << 24) | (mac_addr[2] << 16) | \
1204 (mac_addr[1] << 8) | (mac_addr[0]));
1205 emac_write(EMAC_MACADDRHI, val);
1206 val = ((mac_addr[5] << 8) | mac_addr[4] | ((ch & 0x7) << 16) | \
1207 (match << 19) | BIT(20));
1208 emac_write(EMAC_MACADDRLO, val);
1209 emac_set_type0addr(priv, ch, mac_addr);
1210}
1211
1212/**
1213 * emac_setmac: Set mac address in the adapter (internal function)
1214 * @priv: The DaVinci EMAC private adapter structure
1215 * @ch: RX channel number
1216 * @mac_addr: MAC address to set in device
1217 *
1218 * Called internally to set the mac address of the adapter (Device)
1219 *
1220 * Returns success (0) or appropriate error code (none as of now)
1221 */
1222static void emac_setmac(struct emac_priv *priv, u32 ch, char *mac_addr)
1223{
1224 struct device *emac_dev = &priv->ndev->dev;
1225
1226 if (priv->rx_addr_type == 0) {
1227 emac_set_type0addr(priv, ch, mac_addr);
1228 } else if (priv->rx_addr_type == 1) {
1229 u32 cnt;
1230 for (cnt = 0; cnt < EMAC_MAX_TXRX_CHANNELS; cnt++)
1231 emac_set_type1addr(priv, ch, mac_addr);
1232 } else if (priv->rx_addr_type == 2) {
1233 emac_set_type2addr(priv, ch, mac_addr, ch, 1);
1234 emac_set_type0addr(priv, ch, mac_addr);
1235 } else {
1236 if (netif_msg_drv(priv))
1237 dev_err(emac_dev, "DaVinci EMAC: Wrong addressing\n");
1238 }
1239}
1240
1241/**
1242 * emac_dev_setmac_addr: Set mac address in the adapter
1243 * @ndev: The DaVinci EMAC network adapter
1244 * @addr: MAC address to set in device
1245 *
1246 * Called by the system to set the mac address of the adapter (Device)
1247 *
1248 * Returns success (0) or appropriate error code (none as of now)
1249 */
1250static int emac_dev_setmac_addr(struct net_device *ndev, void *addr)
1251{
1252 struct emac_priv *priv = netdev_priv(ndev);
a6286ee6
AG
1253 struct device *emac_dev = &priv->ndev->dev;
1254 struct sockaddr *sa = addr;
a6286ee6 1255
64c8165b
PB
1256 if (!is_valid_ether_addr(sa->sa_data))
1257 return -EINVAL;
1258
a6286ee6
AG
1259 /* Store mac addr in priv and rx channel and set it in EMAC hw */
1260 memcpy(priv->mac_addr, sa->sa_data, ndev->addr_len);
a6286ee6 1261 memcpy(ndev->dev_addr, sa->sa_data, ndev->addr_len);
64c8165b 1262
64c8165b
PB
1263 /* MAC address is configured only after the interface is enabled. */
1264 if (netif_running(ndev)) {
3ef0fdb2
CC
1265 memcpy(priv->mac_addr, sa->sa_data, ndev->addr_len);
1266 emac_setmac(priv, EMAC_DEF_RX_CH, priv->mac_addr);
64c8165b 1267 }
a6286ee6
AG
1268
1269 if (netif_msg_drv(priv))
5c726166
C
1270 dev_notice(emac_dev, "DaVinci EMAC: emac_dev_setmac_addr %pM\n",
1271 priv->mac_addr);
a6286ee6
AG
1272
1273 return 0;
1274}
1275
a6286ee6
AG
1276/**
1277 * emac_hw_enable: Enable EMAC hardware for packet transmission/reception
1278 * @priv: The DaVinci EMAC private adapter structure
1279 *
1280 * Enables EMAC hardware for packet processing - enables PHY, enables RX
1281 * for packet reception and enables device interrupts and then NAPI
1282 *
1283 * Returns success (0) or appropriate error code (none right now)
1284 */
1285static int emac_hw_enable(struct emac_priv *priv)
1286{
3ef0fdb2 1287 u32 val, mbp_enable, mac_control;
a6286ee6
AG
1288
1289 /* Soft reset */
1290 emac_write(EMAC_SOFTRESET, 1);
1291 while (emac_read(EMAC_SOFTRESET))
1292 cpu_relax();
1293
1294 /* Disable interrupt & Set pacing for more interrupts initially */
1295 emac_int_disable(priv);
1296
1297 /* Full duplex enable bit set when auto negotiation happens */
1298 mac_control =
1299 (((EMAC_DEF_TXPRIO_FIXED) ? (EMAC_MACCONTROL_TXPTYPE) : 0x0) |
1300 ((priv->speed == 1000) ? EMAC_MACCONTROL_GIGABITEN : 0x0) |
1301 ((EMAC_DEF_TXPACING_EN) ? (EMAC_MACCONTROL_TXPACEEN) : 0x0) |
1302 ((priv->duplex == DUPLEX_FULL) ? 0x1 : 0));
1303 emac_write(EMAC_MACCONTROL, mac_control);
1304
1305 mbp_enable =
1306 (((EMAC_DEF_PASS_CRC) ? (EMAC_RXMBP_PASSCRC_MASK) : 0x0) |
1307 ((EMAC_DEF_QOS_EN) ? (EMAC_RXMBP_QOSEN_MASK) : 0x0) |
1308 ((EMAC_DEF_NO_BUFF_CHAIN) ? (EMAC_RXMBP_NOCHAIN_MASK) : 0x0) |
1309 ((EMAC_DEF_MACCTRL_FRAME_EN) ? (EMAC_RXMBP_CMFEN_MASK) : 0x0) |
1310 ((EMAC_DEF_SHORT_FRAME_EN) ? (EMAC_RXMBP_CSFEN_MASK) : 0x0) |
1311 ((EMAC_DEF_ERROR_FRAME_EN) ? (EMAC_RXMBP_CEFEN_MASK) : 0x0) |
1312 ((EMAC_DEF_PROM_EN) ? (EMAC_RXMBP_CAFEN_MASK) : 0x0) |
1313 ((EMAC_DEF_PROM_CH & EMAC_RXMBP_CHMASK) << \
1314 EMAC_RXMBP_PROMCH_SHIFT) |
1315 ((EMAC_DEF_BCAST_EN) ? (EMAC_RXMBP_BROADEN_MASK) : 0x0) |
1316 ((EMAC_DEF_BCAST_CH & EMAC_RXMBP_CHMASK) << \
1317 EMAC_RXMBP_BROADCH_SHIFT) |
1318 ((EMAC_DEF_MCAST_EN) ? (EMAC_RXMBP_MULTIEN_MASK) : 0x0) |
1319 ((EMAC_DEF_MCAST_CH & EMAC_RXMBP_CHMASK) << \
1320 EMAC_RXMBP_MULTICH_SHIFT));
1321 emac_write(EMAC_RXMBPENABLE, mbp_enable);
1322 emac_write(EMAC_RXMAXLEN, (EMAC_DEF_MAX_FRAME_SIZE &
1323 EMAC_RX_MAX_LEN_MASK));
1324 emac_write(EMAC_RXBUFFEROFFSET, (EMAC_DEF_BUFFER_OFFSET &
1325 EMAC_RX_BUFFER_OFFSET_MASK));
1326 emac_write(EMAC_RXFILTERLOWTHRESH, 0);
1327 emac_write(EMAC_RXUNICASTCLEAR, EMAC_RX_UNICAST_CLEAR_ALL);
1328 priv->rx_addr_type = (emac_read(EMAC_MACCONFIG) >> 8) & 0xFF;
1329
a6286ee6
AG
1330 emac_write(EMAC_MACINTMASKSET, EMAC_MAC_HOST_ERR_INTMASK_VAL);
1331
3ef0fdb2 1332 emac_setmac(priv, EMAC_DEF_RX_CH, priv->mac_addr);
a6286ee6
AG
1333
1334 /* Enable MII */
1335 val = emac_read(EMAC_MACCONTROL);
69ef9694 1336 val |= (EMAC_MACCONTROL_GMIIEN);
a6286ee6
AG
1337 emac_write(EMAC_MACCONTROL, val);
1338
1339 /* Enable NAPI and interrupts */
1340 napi_enable(&priv->napi);
1341 emac_int_enable(priv);
1342 return 0;
1343
1344}
1345
1346/**
1347 * emac_poll: EMAC NAPI Poll function
1348 * @ndev: The DaVinci EMAC network adapter
1349 * @budget: Number of receive packets to process (as told by NAPI layer)
1350 *
1351 * NAPI Poll function implemented to process packets as per budget. We check
1352 * the type of interrupt on the device and accordingly call the TX or RX
1353 * packet processing functions. We follow the budget for RX processing and
1354 * also put a cap on number of TX pkts processed through config param. The
1355 * NAPI schedule function is called if more packets pending.
1356 *
1357 * Returns number of packets received (in most cases; else TX pkts - rarely)
1358 */
1359static int emac_poll(struct napi_struct *napi, int budget)
1360{
1361 unsigned int mask;
1362 struct emac_priv *priv = container_of(napi, struct emac_priv, napi);
1363 struct net_device *ndev = priv->ndev;
1364 struct device *emac_dev = &ndev->dev;
1365 u32 status = 0;
3725b1fe 1366 u32 num_tx_pkts = 0, num_rx_pkts = 0;
a6286ee6 1367
a6286ee6
AG
1368 /* Check interrupt vectors and call packet processing */
1369 status = emac_read(EMAC_MACINVECTOR);
1370
1371 mask = EMAC_DM644X_MAC_IN_VECTOR_TX_INT_VEC;
1372
1373 if (priv->version == EMAC_VERSION_2)
1374 mask = EMAC_DM646X_MAC_IN_VECTOR_TX_INT_VEC;
1375
1376 if (status & mask) {
3ef0fdb2
CC
1377 num_tx_pkts = cpdma_chan_process(priv->txchan,
1378 EMAC_DEF_TX_MAX_SERVICE);
a6286ee6
AG
1379 } /* TX processing */
1380
a6286ee6
AG
1381 mask = EMAC_DM644X_MAC_IN_VECTOR_RX_INT_VEC;
1382
1383 if (priv->version == EMAC_VERSION_2)
1384 mask = EMAC_DM646X_MAC_IN_VECTOR_RX_INT_VEC;
1385
1386 if (status & mask) {
3ef0fdb2 1387 num_rx_pkts = cpdma_chan_process(priv->rxchan, budget);
a6286ee6
AG
1388 } /* RX processing */
1389
43c2ed8e
S
1390 mask = EMAC_DM644X_MAC_IN_VECTOR_HOST_INT;
1391 if (priv->version == EMAC_VERSION_2)
1392 mask = EMAC_DM646X_MAC_IN_VECTOR_HOST_INT;
1393
1394 if (unlikely(status & mask)) {
a6286ee6
AG
1395 u32 ch, cause;
1396 dev_err(emac_dev, "DaVinci EMAC: Fatal Hardware Error\n");
1397 netif_stop_queue(ndev);
1398 napi_disable(&priv->napi);
1399
1400 status = emac_read(EMAC_MACSTATUS);
1401 cause = ((status & EMAC_MACSTATUS_TXERRCODE_MASK) >>
1402 EMAC_MACSTATUS_TXERRCODE_SHIFT);
1403 if (cause) {
1404 ch = ((status & EMAC_MACSTATUS_TXERRCH_MASK) >>
1405 EMAC_MACSTATUS_TXERRCH_SHIFT);
1406 if (net_ratelimit()) {
1407 dev_err(emac_dev, "TX Host error %s on ch=%d\n",
1408 &emac_txhost_errcodes[cause][0], ch);
1409 }
1410 }
1411 cause = ((status & EMAC_MACSTATUS_RXERRCODE_MASK) >>
1412 EMAC_MACSTATUS_RXERRCODE_SHIFT);
1413 if (cause) {
1414 ch = ((status & EMAC_MACSTATUS_RXERRCH_MASK) >>
1415 EMAC_MACSTATUS_RXERRCH_SHIFT);
1416 if (netif_msg_hw(priv) && net_ratelimit())
1417 dev_err(emac_dev, "RX Host error %s on ch=%d\n",
1418 &emac_rxhost_errcodes[cause][0], ch);
1419 }
3725b1fe
S
1420 } else if (num_rx_pkts < budget) {
1421 napi_complete(napi);
1422 emac_int_enable(priv);
1423 }
a6286ee6 1424
3725b1fe 1425 return num_rx_pkts;
a6286ee6
AG
1426}
1427
1428#ifdef CONFIG_NET_POLL_CONTROLLER
1429/**
1430 * emac_poll_controller: EMAC Poll controller function
1431 * @ndev: The DaVinci EMAC network adapter
1432 *
1433 * Polled functionality used by netconsole and others in non interrupt mode
1434 *
1435 */
1436void emac_poll_controller(struct net_device *ndev)
1437{
1438 struct emac_priv *priv = netdev_priv(ndev);
1439
1440 emac_int_disable(priv);
c8ee5538 1441 emac_irq(ndev->irq, ndev);
a6286ee6
AG
1442 emac_int_enable(priv);
1443}
1444#endif
1445
a6286ee6
AG
1446static void emac_adjust_link(struct net_device *ndev)
1447{
1448 struct emac_priv *priv = netdev_priv(ndev);
1449 struct phy_device *phydev = priv->phydev;
1450 unsigned long flags;
1451 int new_state = 0;
1452
1453 spin_lock_irqsave(&priv->lock, flags);
1454
1455 if (phydev->link) {
1456 /* check the mode of operation - full/half duplex */
1457 if (phydev->duplex != priv->duplex) {
1458 new_state = 1;
1459 priv->duplex = phydev->duplex;
1460 }
1461 if (phydev->speed != priv->speed) {
1462 new_state = 1;
1463 priv->speed = phydev->speed;
1464 }
1465 if (!priv->link) {
1466 new_state = 1;
1467 priv->link = 1;
1468 }
1469
1470 } else if (priv->link) {
1471 new_state = 1;
1472 priv->link = 0;
1473 priv->speed = 0;
1474 priv->duplex = ~0;
1475 }
1476 if (new_state) {
1477 emac_update_phystatus(priv);
1478 phy_print_status(priv->phydev);
1479 }
1480
1481 spin_unlock_irqrestore(&priv->lock, flags);
1482}
1483
1484/*************************************************************************
1485 * Linux Driver Model
1486 *************************************************************************/
1487
1488/**
1489 * emac_devioctl: EMAC adapter ioctl
1490 * @ndev: The DaVinci EMAC network adapter
1491 * @ifrq: request parameter
1492 * @cmd: command parameter
1493 *
1494 * EMAC driver ioctl function
1495 *
1496 * Returns success(0) or appropriate error code
1497 */
1498static int emac_devioctl(struct net_device *ndev, struct ifreq *ifrq, int cmd)
1499{
fb290cdd 1500 struct emac_priv *priv = netdev_priv(ndev);
a6286ee6
AG
1501
1502 if (!(netif_running(ndev)))
1503 return -EINVAL;
1504
1505 /* TODO: Add phy read and write and private statistics get feature */
1506
fb290cdd 1507 return phy_mii_ioctl(priv->phydev, ifrq, cmd);
a6286ee6
AG
1508}
1509
5d69e007
CC
1510static int match_first_device(struct device *dev, void *data)
1511{
1512 return 1;
1513}
1514
a6286ee6
AG
1515/**
1516 * emac_dev_open: EMAC device open
1517 * @ndev: The DaVinci EMAC network adapter
1518 *
1519 * Called when system wants to start the interface. We init TX/RX channels
1520 * and enable the hardware for packet reception/transmission and start the
1521 * network queue.
1522 *
1523 * Returns 0 for a successful open, or appropriate error code
1524 */
1525static int emac_dev_open(struct net_device *ndev)
1526{
1527 struct device *emac_dev = &ndev->dev;
3ef0fdb2 1528 u32 cnt;
a6286ee6 1529 struct resource *res;
3ef0fdb2 1530 int q, m, ret;
a6286ee6
AG
1531 int i = 0;
1532 int k = 0;
1533 struct emac_priv *priv = netdev_priv(ndev);
1534
1535 netif_carrier_off(ndev);
4d27b877 1536 for (cnt = 0; cnt < ETH_ALEN; cnt++)
a6286ee6
AG
1537 ndev->dev_addr[cnt] = priv->mac_addr[cnt];
1538
1539 /* Configuration items */
1540 priv->rx_buf_size = EMAC_DEF_MAX_FRAME_SIZE + NET_IP_ALIGN;
1541
a6286ee6
AG
1542 priv->mac_hash1 = 0;
1543 priv->mac_hash2 = 0;
1544 emac_write(EMAC_MACHASH1, 0);
1545 emac_write(EMAC_MACHASH2, 0);
1546
3ef0fdb2
CC
1547 for (i = 0; i < EMAC_DEF_RX_NUM_DESC; i++) {
1548 struct sk_buff *skb = emac_rx_alloc(priv);
1549
1550 if (!skb)
1551 break;
1552
1553 ret = cpdma_chan_submit(priv->rxchan, skb, skb->data,
1554 skb_tailroom(skb), GFP_KERNEL);
1555 if (WARN_ON(ret < 0))
1556 break;
a6286ee6
AG
1557 }
1558
1559 /* Request IRQ */
1560
1561 while ((res = platform_get_resource(priv->pdev, IORESOURCE_IRQ, k))) {
1562 for (i = res->start; i <= res->end; i++) {
1563 if (request_irq(i, emac_irq, IRQF_DISABLED,
1564 ndev->name, ndev))
1565 goto rollback;
1566 }
1567 k++;
1568 }
1569
1570 /* Start/Enable EMAC hardware */
1571 emac_hw_enable(priv);
1572
84da2658
S
1573 /* Enable Interrupt pacing if configured */
1574 if (priv->coal_intvl != 0) {
1575 struct ethtool_coalesce coal;
1576
1577 coal.rx_coalesce_usecs = (priv->coal_intvl << 4);
1578 emac_set_coalesce(ndev, &coal);
1579 }
1580
3ef0fdb2
CC
1581 cpdma_ctlr_start(priv->dma);
1582
a6286ee6 1583 priv->phydev = NULL;
5d69e007
CC
1584 /* use the first phy on the bus if pdata did not give us a phy id */
1585 if (!priv->phy_id) {
1586 struct device *phy;
a6286ee6 1587
5d69e007
CC
1588 phy = bus_find_device(&mdio_bus_type, NULL, NULL,
1589 match_first_device);
1590 if (phy)
1591 priv->phy_id = dev_name(phy);
1592 }
a6286ee6 1593
5d69e007
CC
1594 if (priv->phy_id && *priv->phy_id) {
1595 priv->phydev = phy_connect(ndev, priv->phy_id,
1596 &emac_adjust_link, 0,
1597 PHY_INTERFACE_MODE_MII);
a6286ee6
AG
1598
1599 if (IS_ERR(priv->phydev)) {
5d69e007
CC
1600 dev_err(emac_dev, "could not connect to phy %s\n",
1601 priv->phy_id);
cb0a178c 1602 ret = PTR_ERR(priv->phydev);
5d69e007 1603 priv->phydev = NULL;
cb0a178c 1604 return ret;
a6286ee6
AG
1605 }
1606
1607 priv->link = 0;
1608 priv->speed = 0;
1609 priv->duplex = ~0;
1610
5d69e007
CC
1611 dev_info(emac_dev, "attached PHY driver [%s] "
1612 "(mii_bus:phy_addr=%s, id=%x)\n",
a6286ee6
AG
1613 priv->phydev->drv->name, dev_name(&priv->phydev->dev),
1614 priv->phydev->phy_id);
5d69e007 1615 } else {
a6286ee6 1616 /* No PHY , fix the link, speed and duplex settings */
5d69e007 1617 dev_notice(emac_dev, "no phy, defaulting to 100/full\n");
a6286ee6
AG
1618 priv->link = 1;
1619 priv->speed = SPEED_100;
1620 priv->duplex = DUPLEX_FULL;
1621 emac_update_phystatus(priv);
1622 }
1623
1624 if (!netif_running(ndev)) /* debug only - to avoid compiler warning */
1625 emac_dump_regs(priv);
1626
1627 if (netif_msg_drv(priv))
1628 dev_notice(emac_dev, "DaVinci EMAC: Opened %s\n", ndev->name);
1629
5d69e007 1630 if (priv->phydev)
a6286ee6
AG
1631 phy_start(priv->phydev);
1632
1633 return 0;
1634
1635rollback:
1636
1637 dev_err(emac_dev, "DaVinci EMAC: request_irq() failed");
1638
1639 for (q = k; k >= 0; k--) {
1640 for (m = i; m >= res->start; m--)
1641 free_irq(m, ndev);
1642 res = platform_get_resource(priv->pdev, IORESOURCE_IRQ, k-1);
1643 m = res->end;
1644 }
1645 return -EBUSY;
1646}
1647
1648/**
1649 * emac_dev_stop: EMAC device stop
1650 * @ndev: The DaVinci EMAC network adapter
1651 *
1652 * Called when system wants to stop or down the interface. We stop the network
1653 * queue, disable interrupts and cleanup TX/RX channels.
1654 *
1655 * We return the statistics in net_device_stats structure pulled from emac
1656 */
1657static int emac_dev_stop(struct net_device *ndev)
1658{
1659 struct resource *res;
1660 int i = 0;
1661 int irq_num;
1662 struct emac_priv *priv = netdev_priv(ndev);
1663 struct device *emac_dev = &ndev->dev;
1664
1665 /* inform the upper layers. */
1666 netif_stop_queue(ndev);
1667 napi_disable(&priv->napi);
1668
1669 netif_carrier_off(ndev);
1670 emac_int_disable(priv);
3ef0fdb2 1671 cpdma_ctlr_stop(priv->dma);
a6286ee6
AG
1672 emac_write(EMAC_SOFTRESET, 1);
1673
1674 if (priv->phydev)
1675 phy_disconnect(priv->phydev);
1676
1677 /* Free IRQ */
1678 while ((res = platform_get_resource(priv->pdev, IORESOURCE_IRQ, i))) {
1679 for (irq_num = res->start; irq_num <= res->end; irq_num++)
1680 free_irq(irq_num, priv->ndev);
1681 i++;
1682 }
1683
1684 if (netif_msg_drv(priv))
1685 dev_notice(emac_dev, "DaVinci EMAC: %s stopped\n", ndev->name);
1686
1687 return 0;
1688}
1689
1690/**
1691 * emac_dev_getnetstats: EMAC get statistics function
1692 * @ndev: The DaVinci EMAC network adapter
1693 *
1694 * Called when system wants to get statistics from the device.
1695 *
1696 * We return the statistics in net_device_stats structure pulled from emac
1697 */
1698static struct net_device_stats *emac_dev_getnetstats(struct net_device *ndev)
1699{
1700 struct emac_priv *priv = netdev_priv(ndev);
0fe7463a
S
1701 u32 mac_control;
1702 u32 stats_clear_mask;
a6286ee6
AG
1703
1704 /* update emac hardware stats and reset the registers*/
1705
0fe7463a
S
1706 mac_control = emac_read(EMAC_MACCONTROL);
1707
1708 if (mac_control & EMAC_MACCONTROL_GMIIEN)
1709 stats_clear_mask = EMAC_STATS_CLR_MASK;
1710 else
1711 stats_clear_mask = 0;
1712
78e8c532 1713 ndev->stats.multicast += emac_read(EMAC_RXMCASTFRAMES);
0fe7463a 1714 emac_write(EMAC_RXMCASTFRAMES, stats_clear_mask);
a6286ee6 1715
78e8c532 1716 ndev->stats.collisions += (emac_read(EMAC_TXCOLLISION) +
a6286ee6
AG
1717 emac_read(EMAC_TXSINGLECOLL) +
1718 emac_read(EMAC_TXMULTICOLL));
0fe7463a
S
1719 emac_write(EMAC_TXCOLLISION, stats_clear_mask);
1720 emac_write(EMAC_TXSINGLECOLL, stats_clear_mask);
1721 emac_write(EMAC_TXMULTICOLL, stats_clear_mask);
a6286ee6 1722
78e8c532 1723 ndev->stats.rx_length_errors += (emac_read(EMAC_RXOVERSIZED) +
a6286ee6
AG
1724 emac_read(EMAC_RXJABBER) +
1725 emac_read(EMAC_RXUNDERSIZED));
0fe7463a
S
1726 emac_write(EMAC_RXOVERSIZED, stats_clear_mask);
1727 emac_write(EMAC_RXJABBER, stats_clear_mask);
1728 emac_write(EMAC_RXUNDERSIZED, stats_clear_mask);
a6286ee6 1729
78e8c532 1730 ndev->stats.rx_over_errors += (emac_read(EMAC_RXSOFOVERRUNS) +
a6286ee6 1731 emac_read(EMAC_RXMOFOVERRUNS));
0fe7463a
S
1732 emac_write(EMAC_RXSOFOVERRUNS, stats_clear_mask);
1733 emac_write(EMAC_RXMOFOVERRUNS, stats_clear_mask);
a6286ee6 1734
78e8c532 1735 ndev->stats.rx_fifo_errors += emac_read(EMAC_RXDMAOVERRUNS);
0fe7463a 1736 emac_write(EMAC_RXDMAOVERRUNS, stats_clear_mask);
a6286ee6 1737
78e8c532 1738 ndev->stats.tx_carrier_errors +=
a6286ee6 1739 emac_read(EMAC_TXCARRIERSENSE);
0fe7463a 1740 emac_write(EMAC_TXCARRIERSENSE, stats_clear_mask);
a6286ee6 1741
60aeba23 1742 ndev->stats.tx_fifo_errors += emac_read(EMAC_TXUNDERRUN);
0fe7463a 1743 emac_write(EMAC_TXUNDERRUN, stats_clear_mask);
a6286ee6 1744
78e8c532 1745 return &ndev->stats;
a6286ee6
AG
1746}
1747
1748static const struct net_device_ops emac_netdev_ops = {
1749 .ndo_open = emac_dev_open,
1750 .ndo_stop = emac_dev_stop,
1751 .ndo_start_xmit = emac_dev_xmit,
afc4b13d 1752 .ndo_set_rx_mode = emac_dev_mcast_set,
a6286ee6
AG
1753 .ndo_set_mac_address = emac_dev_setmac_addr,
1754 .ndo_do_ioctl = emac_devioctl,
1755 .ndo_tx_timeout = emac_dev_tx_timeout,
1756 .ndo_get_stats = emac_dev_getnetstats,
1757#ifdef CONFIG_NET_POLL_CONTROLLER
1758 .ndo_poll_controller = emac_poll_controller,
1759#endif
1760};
1761
1762/**
1763 * davinci_emac_probe: EMAC device probe
1764 * @pdev: The DaVinci EMAC device that we are removing
1765 *
1766 * Called when probing for emac devicesr. We get details of instances and
1767 * resource information from platform init and register a network device
1768 * and allocate resources necessary for driver to perform
1769 */
1770static int __devinit davinci_emac_probe(struct platform_device *pdev)
1771{
1772 int rc = 0;
1773 struct resource *res;
1774 struct net_device *ndev;
1775 struct emac_priv *priv;
3ef0fdb2 1776 unsigned long size, hw_ram_addr;
a6286ee6
AG
1777 struct emac_platform_data *pdata;
1778 struct device *emac_dev;
3ef0fdb2 1779 struct cpdma_params dma_params;
a6286ee6
AG
1780
1781 /* obtain emac clock from kernel */
1782 emac_clk = clk_get(&pdev->dev, NULL);
1783 if (IS_ERR(emac_clk)) {
240b2628 1784 dev_err(&pdev->dev, "failed to get EMAC clock\n");
a6286ee6
AG
1785 return -EBUSY;
1786 }
1787 emac_bus_frequency = clk_get_rate(emac_clk);
1788 /* TODO: Probe PHY here if possible */
1789
1790 ndev = alloc_etherdev(sizeof(struct emac_priv));
1791 if (!ndev) {
b722dbf1
JL
1792 rc = -ENOMEM;
1793 goto free_clk;
a6286ee6
AG
1794 }
1795
1796 platform_set_drvdata(pdev, ndev);
1797 priv = netdev_priv(ndev);
1798 priv->pdev = pdev;
1799 priv->ndev = ndev;
1800 priv->msg_enable = netif_msg_init(debug_level, DAVINCI_EMAC_DEBUG);
1801
a6286ee6
AG
1802 spin_lock_init(&priv->lock);
1803
1804 pdata = pdev->dev.platform_data;
1805 if (!pdata) {
240b2628 1806 dev_err(&pdev->dev, "no platform data\n");
b722dbf1
JL
1807 rc = -ENODEV;
1808 goto probe_quit;
a6286ee6
AG
1809 }
1810
1811 /* MAC addr and PHY mask , RMII enable info from platform_data */
1812 memcpy(priv->mac_addr, pdata->mac_addr, 6);
5d69e007 1813 priv->phy_id = pdata->phy_id;
a6286ee6
AG
1814 priv->rmii_en = pdata->rmii_en;
1815 priv->version = pdata->version;
01a9af36
S
1816 priv->int_enable = pdata->interrupt_enable;
1817 priv->int_disable = pdata->interrupt_disable;
1818
84da2658
S
1819 priv->coal_intvl = 0;
1820 priv->bus_freq_mhz = (u32)(emac_bus_frequency / 1000000);
1821
a6286ee6
AG
1822 emac_dev = &ndev->dev;
1823 /* Get EMAC platform data */
1824 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1825 if (!res) {
240b2628 1826 dev_err(&pdev->dev,"error getting res\n");
a6286ee6
AG
1827 rc = -ENOENT;
1828 goto probe_quit;
1829 }
1830
1831 priv->emac_base_phys = res->start + pdata->ctrl_reg_offset;
28f65c11 1832 size = resource_size(res);
a6286ee6 1833 if (!request_mem_region(res->start, size, ndev->name)) {
240b2628 1834 dev_err(&pdev->dev, "failed request_mem_region() for regs\n");
a6286ee6
AG
1835 rc = -ENXIO;
1836 goto probe_quit;
1837 }
1838
1839 priv->remap_addr = ioremap(res->start, size);
1840 if (!priv->remap_addr) {
240b2628 1841 dev_err(&pdev->dev, "unable to map IO\n");
a6286ee6
AG
1842 rc = -ENOMEM;
1843 release_mem_region(res->start, size);
1844 goto probe_quit;
1845 }
1846 priv->emac_base = priv->remap_addr + pdata->ctrl_reg_offset;
1847 ndev->base_addr = (unsigned long)priv->remap_addr;
1848
1849 priv->ctrl_base = priv->remap_addr + pdata->ctrl_mod_reg_offset;
a6286ee6 1850
3ef0fdb2
CC
1851 hw_ram_addr = pdata->hw_ram_addr;
1852 if (!hw_ram_addr)
1853 hw_ram_addr = (u32 __force)res->start + pdata->ctrl_ram_offset;
1854
1855 memset(&dma_params, 0, sizeof(dma_params));
1856 dma_params.dev = emac_dev;
1857 dma_params.dmaregs = priv->emac_base;
1858 dma_params.rxthresh = priv->emac_base + 0x120;
1859 dma_params.rxfree = priv->emac_base + 0x140;
1860 dma_params.txhdp = priv->emac_base + 0x600;
1861 dma_params.rxhdp = priv->emac_base + 0x620;
1862 dma_params.txcp = priv->emac_base + 0x640;
1863 dma_params.rxcp = priv->emac_base + 0x660;
1864 dma_params.num_chan = EMAC_MAX_TXRX_CHANNELS;
1865 dma_params.min_packet_size = EMAC_DEF_MIN_ETHPKTSIZE;
6a1fef6d 1866 dma_params.desc_hw_addr = hw_ram_addr;
3ef0fdb2
CC
1867 dma_params.desc_mem_size = pdata->ctrl_ram_size;
1868 dma_params.desc_align = 16;
1869
6a1fef6d
S
1870 dma_params.desc_mem_phys = pdata->no_bd_ram ? 0 :
1871 (u32 __force)res->start + pdata->ctrl_ram_offset;
1872
3ef0fdb2
CC
1873 priv->dma = cpdma_ctlr_create(&dma_params);
1874 if (!priv->dma) {
240b2628 1875 dev_err(&pdev->dev, "error initializing DMA\n");
3ef0fdb2
CC
1876 rc = -ENOMEM;
1877 goto no_dma;
1878 }
1879
1880 priv->txchan = cpdma_chan_create(priv->dma, tx_chan_num(EMAC_DEF_TX_CH),
1881 emac_tx_handler);
1882 priv->rxchan = cpdma_chan_create(priv->dma, rx_chan_num(EMAC_DEF_RX_CH),
1883 emac_rx_handler);
1884 if (WARN_ON(!priv->txchan || !priv->rxchan)) {
1885 rc = -ENOMEM;
1886 goto no_irq_res;
1887 }
ad021ae8 1888
a6286ee6
AG
1889 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1890 if (!res) {
240b2628 1891 dev_err(&pdev->dev, "error getting irq res\n");
a6286ee6
AG
1892 rc = -ENOENT;
1893 goto no_irq_res;
1894 }
1895 ndev->irq = res->start;
1896
1897 if (!is_valid_ether_addr(priv->mac_addr)) {
a6286ee6
AG
1898 /* Use random MAC if none passed */
1899 random_ether_addr(priv->mac_addr);
240b2628
JH
1900 dev_warn(&pdev->dev, "using random MAC addr: %pM\n",
1901 priv->mac_addr);
a6286ee6
AG
1902 }
1903
1904 ndev->netdev_ops = &emac_netdev_ops;
1905 SET_ETHTOOL_OPS(ndev, &ethtool_ops);
1906 netif_napi_add(ndev, &priv->napi, emac_poll, EMAC_POLL_WEIGHT);
1907
1ca518b6
S
1908 clk_enable(emac_clk);
1909
a6286ee6
AG
1910 /* register the network device */
1911 SET_NETDEV_DEV(ndev, &pdev->dev);
1912 rc = register_netdev(ndev);
1913 if (rc) {
240b2628 1914 dev_err(&pdev->dev, "error in register_netdev\n");
a6286ee6
AG
1915 rc = -ENODEV;
1916 goto netdev_reg_err;
1917 }
1918
a6286ee6 1919
a6286ee6
AG
1920 if (netif_msg_probe(priv)) {
1921 dev_notice(emac_dev, "DaVinci EMAC Probe found device "\
1922 "(regs: %p, irq: %d)\n",
1923 (void *)priv->emac_base_phys, ndev->irq);
1924 }
1925 return 0;
1926
a6286ee6 1927netdev_reg_err:
1ca518b6 1928 clk_disable(emac_clk);
a6286ee6 1929no_irq_res:
3ef0fdb2
CC
1930 if (priv->txchan)
1931 cpdma_chan_destroy(priv->txchan);
1932 if (priv->rxchan)
1933 cpdma_chan_destroy(priv->rxchan);
1934 cpdma_ctlr_destroy(priv->dma);
1935no_dma:
a6286ee6 1936 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
28f65c11 1937 release_mem_region(res->start, resource_size(res));
a6286ee6
AG
1938 iounmap(priv->remap_addr);
1939
1940probe_quit:
a6286ee6 1941 free_netdev(ndev);
b722dbf1
JL
1942free_clk:
1943 clk_put(emac_clk);
a6286ee6
AG
1944 return rc;
1945}
1946
1947/**
1948 * davinci_emac_remove: EMAC device remove
1949 * @pdev: The DaVinci EMAC device that we are removing
1950 *
1951 * Called when removing the device driver. We disable clock usage and release
1952 * the resources taken up by the driver and unregister network device
1953 */
1954static int __devexit davinci_emac_remove(struct platform_device *pdev)
1955{
1956 struct resource *res;
1957 struct net_device *ndev = platform_get_drvdata(pdev);
1958 struct emac_priv *priv = netdev_priv(ndev);
1959
1960 dev_notice(&ndev->dev, "DaVinci EMAC: davinci_emac_remove()\n");
1961
a6286ee6
AG
1962 platform_set_drvdata(pdev, NULL);
1963 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
a6286ee6 1964
3ef0fdb2
CC
1965 if (priv->txchan)
1966 cpdma_chan_destroy(priv->txchan);
1967 if (priv->rxchan)
1968 cpdma_chan_destroy(priv->rxchan);
1969 cpdma_ctlr_destroy(priv->dma);
1970
28f65c11 1971 release_mem_region(res->start, resource_size(res));
a6286ee6
AG
1972
1973 unregister_netdev(ndev);
a6286ee6 1974 iounmap(priv->remap_addr);
2a1bc0d5 1975 free_netdev(ndev);
a6286ee6
AG
1976
1977 clk_disable(emac_clk);
1978 clk_put(emac_clk);
1979
1980 return 0;
1981}
1982
d4fdcd92 1983static int davinci_emac_suspend(struct device *dev)
8d044fe6 1984{
d4fdcd92 1985 struct platform_device *pdev = to_platform_device(dev);
1986 struct net_device *ndev = platform_get_drvdata(pdev);
8d044fe6 1987
d4fdcd92 1988 if (netif_running(ndev))
1989 emac_dev_stop(ndev);
8d044fe6
RL
1990
1991 clk_disable(emac_clk);
1992
1993 return 0;
1994}
1995
d4fdcd92 1996static int davinci_emac_resume(struct device *dev)
8d044fe6 1997{
d4fdcd92 1998 struct platform_device *pdev = to_platform_device(dev);
1999 struct net_device *ndev = platform_get_drvdata(pdev);
8d044fe6
RL
2000
2001 clk_enable(emac_clk);
2002
d4fdcd92 2003 if (netif_running(ndev))
2004 emac_dev_open(ndev);
8d044fe6
RL
2005
2006 return 0;
2007}
2008
d4fdcd92 2009static const struct dev_pm_ops davinci_emac_pm_ops = {
2010 .suspend = davinci_emac_suspend,
2011 .resume = davinci_emac_resume,
2012};
2013
a6286ee6
AG
2014/**
2015 * davinci_emac_driver: EMAC platform driver structure
a6286ee6
AG
2016 */
2017static struct platform_driver davinci_emac_driver = {
2018 .driver = {
2019 .name = "davinci_emac",
2020 .owner = THIS_MODULE,
d4fdcd92 2021 .pm = &davinci_emac_pm_ops,
a6286ee6
AG
2022 },
2023 .probe = davinci_emac_probe,
2024 .remove = __devexit_p(davinci_emac_remove),
2025};
2026
2027/**
2028 * davinci_emac_init: EMAC driver module init
2029 *
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}
2db9517e 2037late_initcall(davinci_emac_init);
a6286ee6
AG
2038
2039/**
2040 * davinci_emac_exit: EMAC driver module exit
2041 *
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");