blob: 06d7c9e4dcda92deb027522dc04b34326c9fdc8a [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>
Tony Lindgrenf276c0c2015-01-28 11:33:06 -080055#include <linux/regmap.h>
Anant Golea6286ee2009-05-18 15:19:01 -070056#include <linux/semaphore.h>
57#include <linux/phy.h>
58#include <linux/bitops.h>
59#include <linux/io.h>
60#include <linux/uaccess.h>
Mark A. Greer3ba97382012-07-20 15:19:22 +000061#include <linux/pm_runtime.h>
Sriramakrishnan8ee2bf92009-11-19 15:58:25 +053062#include <linux/davinci_emac.h>
Heiko Schocher42f59962012-07-17 00:34:24 +000063#include <linux/of.h>
64#include <linux/of_address.h>
Tony Lindgrendd0df472013-12-03 15:13:02 -080065#include <linux/of_device.h>
Tony Lindgren1d82ffa2015-01-15 14:45:12 -080066#include <linux/of_mdio.h>
Heiko Schocher42f59962012-07-17 00:34:24 +000067#include <linux/of_irq.h>
68#include <linux/of_net.h>
Tony Lindgrenf276c0c2015-01-28 11:33:06 -080069#include <linux/mfd/syscon.h>
Heiko Schocher42f59962012-07-17 00:34:24 +000070
Anant Golea6286ee2009-05-18 15:19:01 -070071#include <asm/irq.h>
72#include <asm/page.h>
73
Tony Lindgren9120bd6e2015-01-28 11:33:05 -080074#include "cpsw.h"
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -040075#include "davinci_cpdma.h"
76
Anant Golea6286ee2009-05-18 15:19:01 -070077static int debug_level;
78module_param(debug_level, int, 0);
79MODULE_PARM_DESC(debug_level, "DaVinci EMAC debug level (NETIF_MSG bits)");
80
81/* Netif debug messages possible */
82#define DAVINCI_EMAC_DEBUG (NETIF_MSG_DRV | \
83 NETIF_MSG_PROBE | \
84 NETIF_MSG_LINK | \
85 NETIF_MSG_TIMER | \
86 NETIF_MSG_IFDOWN | \
87 NETIF_MSG_IFUP | \
88 NETIF_MSG_RX_ERR | \
89 NETIF_MSG_TX_ERR | \
90 NETIF_MSG_TX_QUEUED | \
91 NETIF_MSG_INTR | \
92 NETIF_MSG_TX_DONE | \
93 NETIF_MSG_RX_STATUS | \
94 NETIF_MSG_PKTDATA | \
95 NETIF_MSG_HW | \
96 NETIF_MSG_WOL)
97
98/* version info */
99#define EMAC_MAJOR_VERSION 6
100#define EMAC_MINOR_VERSION 1
101#define EMAC_MODULE_VERSION "6.1"
102MODULE_VERSION(EMAC_MODULE_VERSION);
103static const char emac_version_string[] = "TI DaVinci EMAC Linux v6.1";
104
105/* Configuration items */
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300106#define EMAC_DEF_PASS_CRC (0) /* Do not pass CRC up to frames */
Anant Golea6286ee2009-05-18 15:19:01 -0700107#define EMAC_DEF_QOS_EN (0) /* EMAC proprietary QoS disabled */
108#define EMAC_DEF_NO_BUFF_CHAIN (0) /* No buffer chain */
109#define EMAC_DEF_MACCTRL_FRAME_EN (0) /* Discard Maccontrol frames */
110#define EMAC_DEF_SHORT_FRAME_EN (0) /* Discard short frames */
111#define EMAC_DEF_ERROR_FRAME_EN (0) /* Discard error frames */
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300112#define EMAC_DEF_PROM_EN (0) /* Promiscuous disabled */
113#define EMAC_DEF_PROM_CH (0) /* Promiscuous channel is 0 */
Anant Golea6286ee2009-05-18 15:19:01 -0700114#define EMAC_DEF_BCAST_EN (1) /* Broadcast enabled */
115#define EMAC_DEF_BCAST_CH (0) /* Broadcast channel is 0 */
116#define EMAC_DEF_MCAST_EN (1) /* Multicast enabled */
117#define EMAC_DEF_MCAST_CH (0) /* Multicast channel is 0 */
118
119#define EMAC_DEF_TXPRIO_FIXED (1) /* TX Priority is fixed */
120#define EMAC_DEF_TXPACING_EN (0) /* TX pacing NOT supported*/
121
122#define EMAC_DEF_BUFFER_OFFSET (0) /* Buffer offset to DMA (future) */
123#define EMAC_DEF_MIN_ETHPKTSIZE (60) /* Minimum ethernet pkt size */
124#define EMAC_DEF_MAX_FRAME_SIZE (1500 + 14 + 4 + 4)
125#define EMAC_DEF_TX_CH (0) /* Default 0th channel */
126#define EMAC_DEF_RX_CH (0) /* Default 0th channel */
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -0400127#define EMAC_DEF_RX_NUM_DESC (128)
Anant Golea6286ee2009-05-18 15:19:01 -0700128#define EMAC_DEF_MAX_TX_CH (1) /* Max TX channels configured */
129#define EMAC_DEF_MAX_RX_CH (1) /* Max RX channels configured */
130#define EMAC_POLL_WEIGHT (64) /* Default NAPI poll weight */
131
132/* Buffer descriptor parameters */
133#define EMAC_DEF_TX_MAX_SERVICE (32) /* TX max service BD's */
134#define EMAC_DEF_RX_MAX_SERVICE (64) /* should = netdev->weight */
135
136/* EMAC register related defines */
137#define EMAC_ALL_MULTI_REG_VALUE (0xFFFFFFFF)
138#define EMAC_NUM_MULTICAST_BITS (64)
Anant Golea6286ee2009-05-18 15:19:01 -0700139#define EMAC_TX_CONTROL_TX_ENABLE_VAL (0x1)
140#define EMAC_RX_CONTROL_RX_ENABLE_VAL (0x1)
141#define EMAC_MAC_HOST_ERR_INTMASK_VAL (0x2)
142#define EMAC_RX_UNICAST_CLEAR_ALL (0xFF)
143#define EMAC_INT_MASK_CLEAR (0xFF)
144
145/* RX MBP register bit positions */
146#define EMAC_RXMBP_PASSCRC_MASK BIT(30)
147#define EMAC_RXMBP_QOSEN_MASK BIT(29)
148#define EMAC_RXMBP_NOCHAIN_MASK BIT(28)
149#define EMAC_RXMBP_CMFEN_MASK BIT(24)
150#define EMAC_RXMBP_CSFEN_MASK BIT(23)
151#define EMAC_RXMBP_CEFEN_MASK BIT(22)
152#define EMAC_RXMBP_CAFEN_MASK BIT(21)
153#define EMAC_RXMBP_PROMCH_SHIFT (16)
154#define EMAC_RXMBP_PROMCH_MASK (0x7 << 16)
155#define EMAC_RXMBP_BROADEN_MASK BIT(13)
156#define EMAC_RXMBP_BROADCH_SHIFT (8)
157#define EMAC_RXMBP_BROADCH_MASK (0x7 << 8)
158#define EMAC_RXMBP_MULTIEN_MASK BIT(5)
159#define EMAC_RXMBP_MULTICH_SHIFT (0)
160#define EMAC_RXMBP_MULTICH_MASK (0x7)
161#define EMAC_RXMBP_CHMASK (0x7)
162
163/* EMAC register definitions/bit maps used */
164# define EMAC_MBP_RXPROMISC (0x00200000)
165# define EMAC_MBP_PROMISCCH(ch) (((ch) & 0x7) << 16)
166# define EMAC_MBP_RXBCAST (0x00002000)
167# define EMAC_MBP_BCASTCHAN(ch) (((ch) & 0x7) << 8)
168# define EMAC_MBP_RXMCAST (0x00000020)
169# define EMAC_MBP_MCASTCHAN(ch) ((ch) & 0x7)
170
171/* EMAC mac_control register */
chaithrika@ti.com69ef9692009-10-01 10:25:19 +0000172#define EMAC_MACCONTROL_TXPTYPE BIT(9)
173#define EMAC_MACCONTROL_TXPACEEN BIT(6)
174#define EMAC_MACCONTROL_GMIIEN BIT(5)
175#define EMAC_MACCONTROL_GIGABITEN BIT(7)
176#define EMAC_MACCONTROL_FULLDUPLEXEN BIT(0)
Anant Golea6286ee2009-05-18 15:19:01 -0700177#define EMAC_MACCONTROL_RMIISPEED_MASK BIT(15)
178
179/* GIGABIT MODE related bits */
Anant Golea6286ee2009-05-18 15:19:01 -0700180#define EMAC_DM646X_MACCONTORL_GIG BIT(7)
181#define EMAC_DM646X_MACCONTORL_GIGFORCE BIT(17)
182
183/* EMAC mac_status register */
184#define EMAC_MACSTATUS_TXERRCODE_MASK (0xF00000)
185#define EMAC_MACSTATUS_TXERRCODE_SHIFT (20)
186#define EMAC_MACSTATUS_TXERRCH_MASK (0x7)
187#define EMAC_MACSTATUS_TXERRCH_SHIFT (16)
188#define EMAC_MACSTATUS_RXERRCODE_MASK (0xF000)
189#define EMAC_MACSTATUS_RXERRCODE_SHIFT (12)
190#define EMAC_MACSTATUS_RXERRCH_MASK (0x7)
191#define EMAC_MACSTATUS_RXERRCH_SHIFT (8)
192
193/* EMAC RX register masks */
194#define EMAC_RX_MAX_LEN_MASK (0xFFFF)
195#define EMAC_RX_BUFFER_OFFSET_MASK (0xFFFF)
196
197/* MAC_IN_VECTOR (0x180) register bit fields */
chaithrika@ti.com69ef9692009-10-01 10:25:19 +0000198#define EMAC_DM644X_MAC_IN_VECTOR_HOST_INT BIT(17)
199#define EMAC_DM644X_MAC_IN_VECTOR_STATPEND_INT BIT(16)
200#define EMAC_DM644X_MAC_IN_VECTOR_RX_INT_VEC BIT(8)
201#define EMAC_DM644X_MAC_IN_VECTOR_TX_INT_VEC BIT(0)
Anant Golea6286ee2009-05-18 15:19:01 -0700202
203/** NOTE:: For DM646x the IN_VECTOR has changed */
204#define EMAC_DM646X_MAC_IN_VECTOR_RX_INT_VEC BIT(EMAC_DEF_RX_CH)
205#define EMAC_DM646X_MAC_IN_VECTOR_TX_INT_VEC BIT(16 + EMAC_DEF_TX_CH)
Sriram43c2ed82009-09-24 19:15:18 +0000206#define EMAC_DM646X_MAC_IN_VECTOR_HOST_INT BIT(26)
207#define EMAC_DM646X_MAC_IN_VECTOR_STATPEND_INT BIT(27)
208
Anant Golea6286ee2009-05-18 15:19:01 -0700209/* CPPI bit positions */
210#define EMAC_CPPI_SOP_BIT BIT(31)
211#define EMAC_CPPI_EOP_BIT BIT(30)
212#define EMAC_CPPI_OWNERSHIP_BIT BIT(29)
213#define EMAC_CPPI_EOQ_BIT BIT(28)
214#define EMAC_CPPI_TEARDOWN_COMPLETE_BIT BIT(27)
215#define EMAC_CPPI_PASS_CRC_BIT BIT(26)
216#define EMAC_RX_BD_BUF_SIZE (0xFFFF)
217#define EMAC_BD_LENGTH_FOR_CACHE (16) /* only CPPI bytes */
218#define EMAC_RX_BD_PKT_LENGTH_MASK (0xFFFF)
219
220/* Max hardware defines */
221#define EMAC_MAX_TXRX_CHANNELS (8) /* Max hardware channels */
222#define EMAC_DEF_MAX_MULTICAST_ADDRESSES (64) /* Max mcast addr's */
223
224/* EMAC Peripheral Device Register Memory Layout structure */
Anant Golea6286ee2009-05-18 15:19:01 -0700225#define EMAC_MACINVECTOR 0x90
226
227#define EMAC_DM646X_MACEOIVECTOR 0x94
228
Anant Golea6286ee2009-05-18 15:19:01 -0700229#define EMAC_MACINTSTATRAW 0xB0
230#define EMAC_MACINTSTATMASKED 0xB4
231#define EMAC_MACINTMASKSET 0xB8
232#define EMAC_MACINTMASKCLEAR 0xBC
233
234#define EMAC_RXMBPENABLE 0x100
235#define EMAC_RXUNICASTSET 0x104
236#define EMAC_RXUNICASTCLEAR 0x108
237#define EMAC_RXMAXLEN 0x10C
238#define EMAC_RXBUFFEROFFSET 0x110
239#define EMAC_RXFILTERLOWTHRESH 0x114
240
241#define EMAC_MACCONTROL 0x160
242#define EMAC_MACSTATUS 0x164
243#define EMAC_EMCONTROL 0x168
244#define EMAC_FIFOCONTROL 0x16C
245#define EMAC_MACCONFIG 0x170
246#define EMAC_SOFTRESET 0x174
247#define EMAC_MACSRCADDRLO 0x1D0
248#define EMAC_MACSRCADDRHI 0x1D4
249#define EMAC_MACHASH1 0x1D8
250#define EMAC_MACHASH2 0x1DC
251#define EMAC_MACADDRLO 0x500
252#define EMAC_MACADDRHI 0x504
253#define EMAC_MACINDEX 0x508
254
Anant Golea6286ee2009-05-18 15:19:01 -0700255/* EMAC statistics registers */
256#define EMAC_RXGOODFRAMES 0x200
257#define EMAC_RXBCASTFRAMES 0x204
258#define EMAC_RXMCASTFRAMES 0x208
259#define EMAC_RXPAUSEFRAMES 0x20C
260#define EMAC_RXCRCERRORS 0x210
261#define EMAC_RXALIGNCODEERRORS 0x214
262#define EMAC_RXOVERSIZED 0x218
263#define EMAC_RXJABBER 0x21C
264#define EMAC_RXUNDERSIZED 0x220
265#define EMAC_RXFRAGMENTS 0x224
266#define EMAC_RXFILTERED 0x228
267#define EMAC_RXQOSFILTERED 0x22C
268#define EMAC_RXOCTETS 0x230
269#define EMAC_TXGOODFRAMES 0x234
270#define EMAC_TXBCASTFRAMES 0x238
271#define EMAC_TXMCASTFRAMES 0x23C
272#define EMAC_TXPAUSEFRAMES 0x240
273#define EMAC_TXDEFERRED 0x244
274#define EMAC_TXCOLLISION 0x248
275#define EMAC_TXSINGLECOLL 0x24C
276#define EMAC_TXMULTICOLL 0x250
277#define EMAC_TXEXCESSIVECOLL 0x254
278#define EMAC_TXLATECOLL 0x258
279#define EMAC_TXUNDERRUN 0x25C
280#define EMAC_TXCARRIERSENSE 0x260
281#define EMAC_TXOCTETS 0x264
282#define EMAC_NETOCTETS 0x280
283#define EMAC_RXSOFOVERRUNS 0x284
284#define EMAC_RXMOFOVERRUNS 0x288
285#define EMAC_RXDMAOVERRUNS 0x28C
286
287/* EMAC DM644x control registers */
288#define EMAC_CTRL_EWCTL (0x4)
289#define EMAC_CTRL_EWINTTCNT (0x8)
290
Sriram84da2652010-07-29 02:33:58 +0000291/* EMAC DM644x control module masks */
292#define EMAC_DM644X_EWINTCNT_MASK 0x1FFFF
293#define EMAC_DM644X_INTMIN_INTVL 0x1
294#define EMAC_DM644X_INTMAX_INTVL (EMAC_DM644X_EWINTCNT_MASK)
295
Anant Golea6286ee2009-05-18 15:19:01 -0700296/* EMAC DM646X control module registers */
Sriram84da2652010-07-29 02:33:58 +0000297#define EMAC_DM646X_CMINTCTRL 0x0C
298#define EMAC_DM646X_CMRXINTEN 0x14
299#define EMAC_DM646X_CMTXINTEN 0x18
300#define EMAC_DM646X_CMRXINTMAX 0x70
301#define EMAC_DM646X_CMTXINTMAX 0x74
302
303/* EMAC DM646X control module masks */
304#define EMAC_DM646X_INTPACEEN (0x3 << 16)
305#define EMAC_DM646X_INTPRESCALE_MASK (0x7FF << 0)
306#define EMAC_DM646X_CMINTMAX_CNT 63
307#define EMAC_DM646X_CMINTMIN_CNT 2
308#define EMAC_DM646X_CMINTMAX_INTVL (1000 / EMAC_DM646X_CMINTMIN_CNT)
309#define EMAC_DM646X_CMINTMIN_INTVL ((1000 / EMAC_DM646X_CMINTMAX_CNT) + 1)
310
Anant Golea6286ee2009-05-18 15:19:01 -0700311
312/* EMAC EOI codes for C0 */
313#define EMAC_DM646X_MAC_EOI_C0_RXEN (0x01)
314#define EMAC_DM646X_MAC_EOI_C0_TXEN (0x02)
315
Sriram0fe74632009-10-07 02:44:30 +0000316/* EMAC Stats Clear Mask */
317#define EMAC_STATS_CLR_MASK (0xFFFFFFFF)
318
Anant Golea6286ee2009-05-18 15:19:01 -0700319/* emac_priv: EMAC private data structure
320 *
321 * EMAC adapter private data structure
322 */
323struct emac_priv {
324 u32 msg_enable;
325 struct net_device *ndev;
326 struct platform_device *pdev;
327 struct napi_struct napi;
328 char mac_addr[6];
Anant Golea6286ee2009-05-18 15:19:01 -0700329 void __iomem *remap_addr;
330 u32 emac_base_phys;
331 void __iomem *emac_base;
332 void __iomem *ctrl_base;
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -0400333 struct cpdma_ctlr *dma;
334 struct cpdma_chan *txchan;
335 struct cpdma_chan *rxchan;
Anant Golea6286ee2009-05-18 15:19:01 -0700336 u32 link; /* 1=link on, 0=link off */
337 u32 speed; /* 0=Auto Neg, 1=No PHY, 10,100, 1000 - mbps */
338 u32 duplex; /* Link duplex: 0=Half, 1=Full */
339 u32 rx_buf_size;
340 u32 isr_count;
Sriram84da2652010-07-29 02:33:58 +0000341 u32 coal_intvl;
342 u32 bus_freq_mhz;
Anant Golea6286ee2009-05-18 15:19:01 -0700343 u8 rmii_en;
344 u8 version;
Anant Golea6286ee2009-05-18 15:19:01 -0700345 u32 mac_hash1;
346 u32 mac_hash2;
347 u32 multicast_hash_cnt[EMAC_NUM_MULTICAST_BITS];
348 u32 rx_addr_type;
Cyril Chemparathy5d69e002010-09-15 10:11:24 -0400349 const char *phy_id;
Heiko Schocher42f59962012-07-17 00:34:24 +0000350 struct device_node *phy_node;
Anant Golea6286ee2009-05-18 15:19:01 -0700351 spinlock_t lock;
Sriramakrishnan01a9af32009-11-19 15:58:26 +0530352 /*platform specific members*/
353 void (*int_enable) (void);
354 void (*int_disable) (void);
Anant Golea6286ee2009-05-18 15:19:01 -0700355};
356
Anant Golea6286ee2009-05-18 15:19:01 -0700357/* EMAC TX Host Error description strings */
358static char *emac_txhost_errcodes[16] = {
359 "No error", "SOP error", "Ownership bit not set in SOP buffer",
360 "Zero Next Buffer Descriptor Pointer Without EOP",
361 "Zero Buffer Pointer", "Zero Buffer Length", "Packet Length Error",
362 "Reserved", "Reserved", "Reserved", "Reserved", "Reserved",
363 "Reserved", "Reserved", "Reserved", "Reserved"
364};
365
366/* EMAC RX Host Error description strings */
367static char *emac_rxhost_errcodes[16] = {
368 "No error", "Reserved", "Ownership bit not set in input buffer",
369 "Reserved", "Zero Buffer Pointer", "Reserved", "Reserved",
370 "Reserved", "Reserved", "Reserved", "Reserved", "Reserved",
371 "Reserved", "Reserved", "Reserved", "Reserved"
372};
373
374/* Helper macros */
375#define emac_read(reg) ioread32(priv->emac_base + (reg))
376#define emac_write(reg, val) iowrite32(val, priv->emac_base + (reg))
377
378#define emac_ctrl_read(reg) ioread32((priv->ctrl_base + (reg)))
379#define emac_ctrl_write(reg, val) iowrite32(val, (priv->ctrl_base + (reg)))
380
Anant Golea6286ee2009-05-18 15:19:01 -0700381/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000382 * emac_get_drvinfo - Get EMAC driver information
Anant Golea6286ee2009-05-18 15:19:01 -0700383 * @ndev: The DaVinci EMAC network adapter
384 * @info: ethtool info structure containing name and version
385 *
386 * Returns EMAC driver information (name and version)
387 *
388 */
389static void emac_get_drvinfo(struct net_device *ndev,
390 struct ethtool_drvinfo *info)
391{
Jiri Pirko7826d432013-01-06 00:44:26 +0000392 strlcpy(info->driver, emac_version_string, sizeof(info->driver));
393 strlcpy(info->version, EMAC_MODULE_VERSION, sizeof(info->version));
Anant Golea6286ee2009-05-18 15:19:01 -0700394}
395
396/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000397 * emac_get_coalesce - Get interrupt coalesce settings for this device
Sriram84da2652010-07-29 02:33:58 +0000398 * @ndev : The DaVinci EMAC network adapter
399 * @coal : ethtool coalesce settings structure
400 *
401 * Fetch the current interrupt coalesce settings
402 *
403 */
404static int emac_get_coalesce(struct net_device *ndev,
405 struct ethtool_coalesce *coal)
406{
407 struct emac_priv *priv = netdev_priv(ndev);
408
409 coal->rx_coalesce_usecs = priv->coal_intvl;
410 return 0;
411
412}
413
414/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000415 * emac_set_coalesce - Set interrupt coalesce settings for this device
Sriram84da2652010-07-29 02:33:58 +0000416 * @ndev : The DaVinci EMAC network adapter
417 * @coal : ethtool coalesce settings structure
418 *
419 * Set interrupt coalesce parameters
420 *
421 */
422static int emac_set_coalesce(struct net_device *ndev,
423 struct ethtool_coalesce *coal)
424{
425 struct emac_priv *priv = netdev_priv(ndev);
426 u32 int_ctrl, num_interrupts = 0;
427 u32 prescale = 0, addnl_dvdr = 1, coal_intvl = 0;
428
429 if (!coal->rx_coalesce_usecs)
430 return -EINVAL;
431
432 coal_intvl = coal->rx_coalesce_usecs;
433
434 switch (priv->version) {
435 case EMAC_VERSION_2:
436 int_ctrl = emac_ctrl_read(EMAC_DM646X_CMINTCTRL);
437 prescale = priv->bus_freq_mhz * 4;
438
439 if (coal_intvl < EMAC_DM646X_CMINTMIN_INTVL)
440 coal_intvl = EMAC_DM646X_CMINTMIN_INTVL;
441
442 if (coal_intvl > EMAC_DM646X_CMINTMAX_INTVL) {
443 /*
444 * Interrupt pacer works with 4us Pulse, we can
445 * throttle further by dilating the 4us pulse.
446 */
447 addnl_dvdr = EMAC_DM646X_INTPRESCALE_MASK / prescale;
448
449 if (addnl_dvdr > 1) {
450 prescale *= addnl_dvdr;
451 if (coal_intvl > (EMAC_DM646X_CMINTMAX_INTVL
452 * addnl_dvdr))
453 coal_intvl = (EMAC_DM646X_CMINTMAX_INTVL
454 * addnl_dvdr);
455 } else {
456 addnl_dvdr = 1;
457 coal_intvl = EMAC_DM646X_CMINTMAX_INTVL;
458 }
459 }
460
461 num_interrupts = (1000 * addnl_dvdr) / coal_intvl;
462
463 int_ctrl |= EMAC_DM646X_INTPACEEN;
464 int_ctrl &= (~EMAC_DM646X_INTPRESCALE_MASK);
465 int_ctrl |= (prescale & EMAC_DM646X_INTPRESCALE_MASK);
466 emac_ctrl_write(EMAC_DM646X_CMINTCTRL, int_ctrl);
467
468 emac_ctrl_write(EMAC_DM646X_CMRXINTMAX, num_interrupts);
469 emac_ctrl_write(EMAC_DM646X_CMTXINTMAX, num_interrupts);
470
471 break;
472 default:
473 int_ctrl = emac_ctrl_read(EMAC_CTRL_EWINTTCNT);
474 int_ctrl &= (~EMAC_DM644X_EWINTCNT_MASK);
475 prescale = coal_intvl * priv->bus_freq_mhz;
476 if (prescale > EMAC_DM644X_EWINTCNT_MASK) {
477 prescale = EMAC_DM644X_EWINTCNT_MASK;
478 coal_intvl = prescale / priv->bus_freq_mhz;
479 }
480 emac_ctrl_write(EMAC_CTRL_EWINTTCNT, (int_ctrl | prescale));
481
482 break;
483 }
484
485 printk(KERN_INFO"Set coalesce to %d usecs.\n", coal_intvl);
486 priv->coal_intvl = coal_intvl;
487
488 return 0;
489
490}
491
492
Ben Hutchings1aa8b472012-07-10 10:56:59 +0000493/* ethtool_ops: DaVinci EMAC Ethtool structure
Anant Golea6286ee2009-05-18 15:19:01 -0700494 *
495 * Ethtool support for EMAC adapter
Anant Golea6286ee2009-05-18 15:19:01 -0700496 */
497static const struct ethtool_ops ethtool_ops = {
498 .get_drvinfo = emac_get_drvinfo,
Anant Golea6286ee2009-05-18 15:19:01 -0700499 .get_link = ethtool_op_get_link,
Sriram84da2652010-07-29 02:33:58 +0000500 .get_coalesce = emac_get_coalesce,
501 .set_coalesce = emac_set_coalesce,
Richard Cochran1fa68be2012-04-03 22:59:24 +0000502 .get_ts_info = ethtool_op_get_ts_info,
Philippe Reynesefb15c32016-07-02 00:02:35 +0200503 .get_link_ksettings = phy_ethtool_get_link_ksettings,
504 .set_link_ksettings = phy_ethtool_set_link_ksettings,
Anant Golea6286ee2009-05-18 15:19:01 -0700505};
506
507/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000508 * emac_update_phystatus - Update Phy status
Anant Golea6286ee2009-05-18 15:19:01 -0700509 * @priv: The DaVinci EMAC private adapter structure
510 *
511 * Updates phy status and takes action for network queue if required
512 * based upon link status
513 *
514 */
515static void emac_update_phystatus(struct emac_priv *priv)
516{
517 u32 mac_control;
518 u32 new_duplex;
519 u32 cur_duplex;
520 struct net_device *ndev = priv->ndev;
521
522 mac_control = emac_read(EMAC_MACCONTROL);
523 cur_duplex = (mac_control & EMAC_MACCONTROL_FULLDUPLEXEN) ?
524 DUPLEX_FULL : DUPLEX_HALF;
Philippe Reynesc3321772016-07-02 00:02:34 +0200525 if (ndev->phydev)
526 new_duplex = ndev->phydev->duplex;
Anant Golea6286ee2009-05-18 15:19:01 -0700527 else
528 new_duplex = DUPLEX_FULL;
529
530 /* We get called only if link has changed (speed/duplex/status) */
531 if ((priv->link) && (new_duplex != cur_duplex)) {
532 priv->duplex = new_duplex;
533 if (DUPLEX_FULL == priv->duplex)
534 mac_control |= (EMAC_MACCONTROL_FULLDUPLEXEN);
535 else
536 mac_control &= ~(EMAC_MACCONTROL_FULLDUPLEXEN);
537 }
538
539 if (priv->speed == SPEED_1000 && (priv->version == EMAC_VERSION_2)) {
540 mac_control = emac_read(EMAC_MACCONTROL);
chaithrika@ti.com69ef9692009-10-01 10:25:19 +0000541 mac_control |= (EMAC_DM646X_MACCONTORL_GIG |
Anant Golea6286ee2009-05-18 15:19:01 -0700542 EMAC_DM646X_MACCONTORL_GIGFORCE);
543 } else {
544 /* Clear the GIG bit and GIGFORCE bit */
545 mac_control &= ~(EMAC_DM646X_MACCONTORL_GIGFORCE |
546 EMAC_DM646X_MACCONTORL_GIG);
547
548 if (priv->rmii_en && (priv->speed == SPEED_100))
549 mac_control |= EMAC_MACCONTROL_RMIISPEED_MASK;
550 else
551 mac_control &= ~EMAC_MACCONTROL_RMIISPEED_MASK;
552 }
553
554 /* Update mac_control if changed */
555 emac_write(EMAC_MACCONTROL, mac_control);
556
557 if (priv->link) {
558 /* link ON */
559 if (!netif_carrier_ok(ndev))
560 netif_carrier_on(ndev);
561 /* reactivate the transmit queue if it is stopped */
562 if (netif_running(ndev) && netif_queue_stopped(ndev))
563 netif_wake_queue(ndev);
564 } else {
565 /* link OFF */
566 if (netif_carrier_ok(ndev))
567 netif_carrier_off(ndev);
568 if (!netif_queue_stopped(ndev))
569 netif_stop_queue(ndev);
570 }
571}
572
573/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000574 * hash_get - Calculate hash value from mac address
Anant Golea6286ee2009-05-18 15:19:01 -0700575 * @addr: mac address to delete from hash table
576 *
577 * Calculates hash value from mac address
578 *
579 */
580static u32 hash_get(u8 *addr)
581{
582 u32 hash;
583 u8 tmpval;
584 int cnt;
585 hash = 0;
586
587 for (cnt = 0; cnt < 2; cnt++) {
588 tmpval = *addr++;
589 hash ^= (tmpval >> 2) ^ (tmpval << 4);
590 tmpval = *addr++;
591 hash ^= (tmpval >> 4) ^ (tmpval << 2);
592 tmpval = *addr++;
593 hash ^= (tmpval >> 6) ^ (tmpval);
594 }
595
596 return hash & 0x3F;
597}
598
599/**
Jiri Kosinae87a8f22016-08-10 11:03:35 +0200600 * emac_hash_add - Hash function to add mac addr from hash table
Anant Golea6286ee2009-05-18 15:19:01 -0700601 * @priv: The DaVinci EMAC private adapter structure
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000602 * @mac_addr: mac address to delete from hash table
Anant Golea6286ee2009-05-18 15:19:01 -0700603 *
604 * Adds mac address to the internal hash table
605 *
606 */
Jiri Kosinae87a8f22016-08-10 11:03:35 +0200607static int emac_hash_add(struct emac_priv *priv, u8 *mac_addr)
Anant Golea6286ee2009-05-18 15:19:01 -0700608{
609 struct device *emac_dev = &priv->ndev->dev;
610 u32 rc = 0;
611 u32 hash_bit;
612 u32 hash_value = hash_get(mac_addr);
613
614 if (hash_value >= EMAC_NUM_MULTICAST_BITS) {
615 if (netif_msg_drv(priv)) {
Jiri Kosinae87a8f22016-08-10 11:03:35 +0200616 dev_err(emac_dev, "DaVinci EMAC: emac_hash_add(): Invalid "\
Anant Golea6286ee2009-05-18 15:19:01 -0700617 "Hash %08x, should not be greater than %08x",
618 hash_value, (EMAC_NUM_MULTICAST_BITS - 1));
619 }
620 return -1;
621 }
622
623 /* set the hash bit only if not previously set */
624 if (priv->multicast_hash_cnt[hash_value] == 0) {
625 rc = 1; /* hash value changed */
626 if (hash_value < 32) {
627 hash_bit = BIT(hash_value);
628 priv->mac_hash1 |= hash_bit;
629 } else {
630 hash_bit = BIT((hash_value - 32));
631 priv->mac_hash2 |= hash_bit;
632 }
633 }
634
635 /* incr counter for num of mcast addr's mapped to "this" hash bit */
636 ++priv->multicast_hash_cnt[hash_value];
637
638 return rc;
639}
640
641/**
Jiri Kosinae87a8f22016-08-10 11:03:35 +0200642 * emac_hash_del - Hash function to delete mac addr from hash table
Anant Golea6286ee2009-05-18 15:19:01 -0700643 * @priv: The DaVinci EMAC private adapter structure
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000644 * @mac_addr: mac address to delete from hash table
Anant Golea6286ee2009-05-18 15:19:01 -0700645 *
646 * Removes mac address from the internal hash table
647 *
648 */
Jiri Kosinae87a8f22016-08-10 11:03:35 +0200649static int emac_hash_del(struct emac_priv *priv, u8 *mac_addr)
Anant Golea6286ee2009-05-18 15:19:01 -0700650{
651 u32 hash_value;
652 u32 hash_bit;
653
654 hash_value = hash_get(mac_addr);
655 if (priv->multicast_hash_cnt[hash_value] > 0) {
656 /* dec cntr for num of mcast addr's mapped to this hash bit */
657 --priv->multicast_hash_cnt[hash_value];
658 }
659
660 /* if counter still > 0, at least one multicast address refers
661 * to this hash bit. so return 0 */
662 if (priv->multicast_hash_cnt[hash_value] > 0)
663 return 0;
664
665 if (hash_value < 32) {
666 hash_bit = BIT(hash_value);
667 priv->mac_hash1 &= ~hash_bit;
668 } else {
669 hash_bit = BIT((hash_value - 32));
670 priv->mac_hash2 &= ~hash_bit;
671 }
672
673 /* return 1 to indicate change in mac_hash registers reqd */
674 return 1;
675}
676
677/* EMAC multicast operation */
678#define EMAC_MULTICAST_ADD 0
679#define EMAC_MULTICAST_DEL 1
680#define EMAC_ALL_MULTI_SET 2
681#define EMAC_ALL_MULTI_CLR 3
682
683/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000684 * emac_add_mcast - Set multicast address in the EMAC adapter (Internal)
Anant Golea6286ee2009-05-18 15:19:01 -0700685 * @priv: The DaVinci EMAC private adapter structure
686 * @action: multicast operation to perform
687 * mac_addr: mac address to set
688 *
689 * Set multicast addresses in EMAC adapter - internal function
690 *
691 */
692static void emac_add_mcast(struct emac_priv *priv, u32 action, u8 *mac_addr)
693{
694 struct device *emac_dev = &priv->ndev->dev;
695 int update = -1;
696
697 switch (action) {
698 case EMAC_MULTICAST_ADD:
Jiri Kosinae87a8f22016-08-10 11:03:35 +0200699 update = emac_hash_add(priv, mac_addr);
Anant Golea6286ee2009-05-18 15:19:01 -0700700 break;
701 case EMAC_MULTICAST_DEL:
Jiri Kosinae87a8f22016-08-10 11:03:35 +0200702 update = emac_hash_del(priv, mac_addr);
Anant Golea6286ee2009-05-18 15:19:01 -0700703 break;
704 case EMAC_ALL_MULTI_SET:
705 update = 1;
706 priv->mac_hash1 = EMAC_ALL_MULTI_REG_VALUE;
707 priv->mac_hash2 = EMAC_ALL_MULTI_REG_VALUE;
708 break;
709 case EMAC_ALL_MULTI_CLR:
710 update = 1;
711 priv->mac_hash1 = 0;
712 priv->mac_hash2 = 0;
713 memset(&(priv->multicast_hash_cnt[0]), 0,
714 sizeof(priv->multicast_hash_cnt[0]) *
715 EMAC_NUM_MULTICAST_BITS);
716 break;
717 default:
718 if (netif_msg_drv(priv))
719 dev_err(emac_dev, "DaVinci EMAC: add_mcast"\
720 ": bad operation %d", action);
721 break;
722 }
723
724 /* write to the hardware only if the register status chances */
725 if (update > 0) {
726 emac_write(EMAC_MACHASH1, priv->mac_hash1);
727 emac_write(EMAC_MACHASH2, priv->mac_hash2);
728 }
729}
730
731/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000732 * emac_dev_mcast_set - Set multicast address in the EMAC adapter
Anant Golea6286ee2009-05-18 15:19:01 -0700733 * @ndev: The DaVinci EMAC network adapter
734 *
735 * Set multicast addresses in EMAC adapter
736 *
737 */
738static void emac_dev_mcast_set(struct net_device *ndev)
739{
740 u32 mbp_enable;
741 struct emac_priv *priv = netdev_priv(ndev);
742
743 mbp_enable = emac_read(EMAC_RXMBPENABLE);
744 if (ndev->flags & IFF_PROMISC) {
745 mbp_enable &= (~EMAC_MBP_PROMISCCH(EMAC_DEF_PROM_CH));
746 mbp_enable |= (EMAC_MBP_RXPROMISC);
747 } else {
748 mbp_enable = (mbp_enable & ~EMAC_MBP_RXPROMISC);
749 if ((ndev->flags & IFF_ALLMULTI) ||
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000750 netdev_mc_count(ndev) > EMAC_DEF_MAX_MULTICAST_ADDRESSES) {
Anant Golea6286ee2009-05-18 15:19:01 -0700751 mbp_enable = (mbp_enable | EMAC_MBP_RXMCAST);
752 emac_add_mcast(priv, EMAC_ALL_MULTI_SET, NULL);
Mariusz Ceierd69e0f72013-10-21 19:45:04 +0200753 } else if (!netdev_mc_empty(ndev)) {
Jiri Pirko22bedad32010-04-01 21:22:57 +0000754 struct netdev_hw_addr *ha;
755
Anant Golea6286ee2009-05-18 15:19:01 -0700756 mbp_enable = (mbp_enable | EMAC_MBP_RXMCAST);
757 emac_add_mcast(priv, EMAC_ALL_MULTI_CLR, NULL);
758 /* program multicast address list into EMAC hardware */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000759 netdev_for_each_mc_addr(ha, ndev) {
Anant Golea6286ee2009-05-18 15:19:01 -0700760 emac_add_mcast(priv, EMAC_MULTICAST_ADD,
Jiri Pirko22bedad32010-04-01 21:22:57 +0000761 (u8 *) ha->addr);
Anant Golea6286ee2009-05-18 15:19:01 -0700762 }
763 } else {
764 mbp_enable = (mbp_enable & ~EMAC_MBP_RXMCAST);
765 emac_add_mcast(priv, EMAC_ALL_MULTI_CLR, NULL);
766 }
767 }
768 /* Set mbp config register */
769 emac_write(EMAC_RXMBPENABLE, mbp_enable);
770}
771
772/*************************************************************************
773 * EMAC Hardware manipulation
774 *************************************************************************/
775
776/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000777 * emac_int_disable - Disable EMAC module interrupt (from adapter)
Anant Golea6286ee2009-05-18 15:19:01 -0700778 * @priv: The DaVinci EMAC private adapter structure
779 *
780 * Disable EMAC interrupt on the adapter
781 *
782 */
783static void emac_int_disable(struct emac_priv *priv)
784{
785 if (priv->version == EMAC_VERSION_2) {
786 unsigned long flags;
787
788 local_irq_save(flags);
789
790 /* Program C0_Int_En to zero to turn off
791 * interrupts to the CPU */
792 emac_ctrl_write(EMAC_DM646X_CMRXINTEN, 0x0);
793 emac_ctrl_write(EMAC_DM646X_CMTXINTEN, 0x0);
794 /* NOTE: Rx Threshold and Misc interrupts are not disabled */
Sriramakrishnan01a9af32009-11-19 15:58:26 +0530795 if (priv->int_disable)
796 priv->int_disable();
Anant Golea6286ee2009-05-18 15:19:01 -0700797
Tony Lindgrencd2d6d32015-01-15 14:45:09 -0800798 /* NOTE: Rx Threshold and Misc interrupts are not enabled */
799
800 /* ack rxen only then a new pulse will be generated */
801 emac_write(EMAC_DM646X_MACEOIVECTOR,
802 EMAC_DM646X_MAC_EOI_C0_RXEN);
803
804 /* ack txen- only then a new pulse will be generated */
805 emac_write(EMAC_DM646X_MACEOIVECTOR,
806 EMAC_DM646X_MAC_EOI_C0_TXEN);
807
Anant Golea6286ee2009-05-18 15:19:01 -0700808 local_irq_restore(flags);
809
810 } else {
811 /* Set DM644x control registers for interrupt control */
812 emac_ctrl_write(EMAC_CTRL_EWCTL, 0x0);
813 }
814}
815
816/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000817 * emac_int_enable - Enable EMAC module interrupt (from adapter)
Anant Golea6286ee2009-05-18 15:19:01 -0700818 * @priv: The DaVinci EMAC private adapter structure
819 *
820 * Enable EMAC interrupt on the adapter
821 *
822 */
823static void emac_int_enable(struct emac_priv *priv)
824{
825 if (priv->version == EMAC_VERSION_2) {
Sriramakrishnan01a9af32009-11-19 15:58:26 +0530826 if (priv->int_enable)
827 priv->int_enable();
828
Anant Golea6286ee2009-05-18 15:19:01 -0700829 emac_ctrl_write(EMAC_DM646X_CMRXINTEN, 0xff);
830 emac_ctrl_write(EMAC_DM646X_CMTXINTEN, 0xff);
831
832 /* In addition to turning on interrupt Enable, we need
833 * ack by writing appropriate values to the EOI
834 * register */
835
836 /* NOTE: Rx Threshold and Misc interrupts are not enabled */
Anant Golea6286ee2009-05-18 15:19:01 -0700837 } else {
838 /* Set DM644x control registers for interrupt control */
839 emac_ctrl_write(EMAC_CTRL_EWCTL, 0x1);
840 }
841}
842
843/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000844 * emac_irq - EMAC interrupt handler
Anant Golea6286ee2009-05-18 15:19:01 -0700845 * @irq: interrupt number
846 * @dev_id: EMAC network adapter data structure ptr
847 *
848 * EMAC Interrupt handler - we only schedule NAPI and not process any packets
849 * here. EVen the interrupt status is checked (TX/RX/Err) in NAPI poll function
850 *
851 * Returns interrupt handled condition
852 */
853static irqreturn_t emac_irq(int irq, void *dev_id)
854{
855 struct net_device *ndev = (struct net_device *)dev_id;
856 struct emac_priv *priv = netdev_priv(ndev);
857
858 ++priv->isr_count;
859 if (likely(netif_running(priv->ndev))) {
860 emac_int_disable(priv);
861 napi_schedule(&priv->napi);
862 } else {
863 /* we are closing down, so dont process anything */
864 }
865 return IRQ_HANDLED;
866}
867
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -0400868static struct sk_buff *emac_rx_alloc(struct emac_priv *priv)
869{
Pradeep A. Dalvidae2e9f2012-02-06 11:16:13 +0000870 struct sk_buff *skb = netdev_alloc_skb(priv->ndev, priv->rx_buf_size);
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -0400871 if (WARN_ON(!skb))
872 return NULL;
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -0400873 skb_reserve(skb, NET_IP_ALIGN);
874 return skb;
875}
876
877static void emac_rx_handler(void *token, int len, int status)
878{
879 struct sk_buff *skb = token;
880 struct net_device *ndev = skb->dev;
881 struct emac_priv *priv = netdev_priv(ndev);
882 struct device *emac_dev = &ndev->dev;
883 int ret;
884
885 /* free and bail if we are shutting down */
Christian Riesch5d697032012-02-23 01:14:17 +0000886 if (unlikely(!netif_running(ndev))) {
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -0400887 dev_kfree_skb_any(skb);
888 return;
889 }
890
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300891 /* recycle on receive error */
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -0400892 if (status < 0) {
893 ndev->stats.rx_errors++;
894 goto recycle;
895 }
896
897 /* feed received packet up the stack */
898 skb_put(skb, len);
899 skb->protocol = eth_type_trans(skb, ndev);
900 netif_receive_skb(skb);
901 ndev->stats.rx_bytes += len;
902 ndev->stats.rx_packets++;
903
904 /* alloc a new packet for receive */
905 skb = emac_rx_alloc(priv);
906 if (!skb) {
907 if (netif_msg_rx_err(priv) && net_ratelimit())
908 dev_err(emac_dev, "failed rx buffer alloc\n");
909 return;
910 }
911
912recycle:
913 ret = cpdma_chan_submit(priv->rxchan, skb, skb->data,
Sebastian Siewioraef614e2013-04-23 07:31:38 +0000914 skb_tailroom(skb), 0);
Christian Riesch5d697032012-02-23 01:14:17 +0000915
916 WARN_ON(ret == -ENOMEM);
917 if (unlikely(ret < 0))
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -0400918 dev_kfree_skb_any(skb);
919}
920
921static void emac_tx_handler(void *token, int len, int status)
922{
923 struct sk_buff *skb = token;
924 struct net_device *ndev = skb->dev;
Sascha Hauer86d8c072012-01-03 05:27:47 +0000925
Mugunthan V Nfae50822013-01-17 06:31:34 +0000926 /* Check whether the queue is stopped due to stalled tx dma, if the
927 * queue is stopped then start the queue as we have free desc for tx
928 */
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -0400929 if (unlikely(netif_queue_stopped(ndev)))
Mugunthan V N7e51cde2013-03-27 04:42:00 +0000930 netif_wake_queue(ndev);
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -0400931 ndev->stats.tx_packets++;
932 ndev->stats.tx_bytes += len;
933 dev_kfree_skb_any(skb);
934}
935
Anant Golea6286ee2009-05-18 15:19:01 -0700936/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000937 * emac_dev_xmit - EMAC Transmit function
Anant Golea6286ee2009-05-18 15:19:01 -0700938 * @skb: SKB pointer
939 * @ndev: The DaVinci EMAC network adapter
940 *
941 * Called by the system to transmit a packet - we queue the packet in
942 * EMAC hardware transmit queue
943 *
944 * Returns success(NETDEV_TX_OK) or error code (typically out of desc's)
945 */
946static int emac_dev_xmit(struct sk_buff *skb, struct net_device *ndev)
947{
948 struct device *emac_dev = &ndev->dev;
949 int ret_code;
Anant Golea6286ee2009-05-18 15:19:01 -0700950 struct emac_priv *priv = netdev_priv(ndev);
951
952 /* If no link, return */
953 if (unlikely(!priv->link)) {
954 if (netif_msg_tx_err(priv) && net_ratelimit())
955 dev_err(emac_dev, "DaVinci EMAC: No link to transmit");
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -0400956 goto fail_tx;
Anant Golea6286ee2009-05-18 15:19:01 -0700957 }
958
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -0400959 ret_code = skb_padto(skb, EMAC_DEF_MIN_ETHPKTSIZE);
960 if (unlikely(ret_code < 0)) {
961 if (netif_msg_tx_err(priv) && net_ratelimit())
962 dev_err(emac_dev, "DaVinci EMAC: packet pad failed");
963 goto fail_tx;
964 }
965
Richard Cochran5bf0c192011-06-19 03:31:45 +0000966 skb_tx_timestamp(skb);
967
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -0400968 ret_code = cpdma_chan_submit(priv->txchan, skb, skb->data, skb->len,
Sebastian Siewioraef614e2013-04-23 07:31:38 +0000969 0);
Anant Golea6286ee2009-05-18 15:19:01 -0700970 if (unlikely(ret_code != 0)) {
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -0400971 if (netif_msg_tx_err(priv) && net_ratelimit())
972 dev_err(emac_dev, "DaVinci EMAC: desc submit failed");
973 goto fail_tx;
Anant Golea6286ee2009-05-18 15:19:01 -0700974 }
975
Mugunthan V Nfae50822013-01-17 06:31:34 +0000976 /* If there is no more tx desc left free then we need to
977 * tell the kernel to stop sending us tx frames.
978 */
Mugunthan V N75b9b612013-03-15 04:10:16 +0000979 if (unlikely(!cpdma_check_free_tx_desc(priv->txchan)))
Sascha Hauer86d8c072012-01-03 05:27:47 +0000980 netif_stop_queue(ndev);
981
Anant Golea6286ee2009-05-18 15:19:01 -0700982 return NETDEV_TX_OK;
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -0400983
984fail_tx:
985 ndev->stats.tx_dropped++;
986 netif_stop_queue(ndev);
987 return NETDEV_TX_BUSY;
Anant Golea6286ee2009-05-18 15:19:01 -0700988}
989
990/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000991 * emac_dev_tx_timeout - EMAC Transmit timeout function
Anant Golea6286ee2009-05-18 15:19:01 -0700992 * @ndev: The DaVinci EMAC network adapter
993 *
994 * Called when system detects that a skb timeout period has expired
995 * potentially due to a fault in the adapter in not being able to send
996 * it out on the wire. We teardown the TX channel assuming a hardware
997 * error and re-initialize the TX channel for hardware operation
998 *
999 */
1000static void emac_dev_tx_timeout(struct net_device *ndev)
1001{
1002 struct emac_priv *priv = netdev_priv(ndev);
1003 struct device *emac_dev = &ndev->dev;
1004
1005 if (netif_msg_tx_err(priv))
1006 dev_err(emac_dev, "DaVinci EMAC: xmit timeout, restarting TX");
1007
Kulikov Vasiliy78e8c532010-07-05 02:13:26 +00001008 ndev->stats.tx_errors++;
Anant Golea6286ee2009-05-18 15:19:01 -07001009 emac_int_disable(priv);
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001010 cpdma_chan_stop(priv->txchan);
1011 cpdma_chan_start(priv->txchan);
Anant Golea6286ee2009-05-18 15:19:01 -07001012 emac_int_enable(priv);
1013}
1014
1015/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001016 * emac_set_type0addr - Set EMAC Type0 mac address
Anant Golea6286ee2009-05-18 15:19:01 -07001017 * @priv: The DaVinci EMAC private adapter structure
1018 * @ch: RX channel number
1019 * @mac_addr: MAC address to set in device
1020 *
1021 * Called internally to set Type0 mac address of the adapter (Device)
1022 *
1023 * Returns success (0) or appropriate error code (none as of now)
1024 */
1025static void emac_set_type0addr(struct emac_priv *priv, u32 ch, char *mac_addr)
1026{
1027 u32 val;
1028 val = ((mac_addr[5] << 8) | (mac_addr[4]));
1029 emac_write(EMAC_MACSRCADDRLO, val);
1030
1031 val = ((mac_addr[3] << 24) | (mac_addr[2] << 16) | \
1032 (mac_addr[1] << 8) | (mac_addr[0]));
1033 emac_write(EMAC_MACSRCADDRHI, val);
1034 val = emac_read(EMAC_RXUNICASTSET);
1035 val |= BIT(ch);
1036 emac_write(EMAC_RXUNICASTSET, val);
1037 val = emac_read(EMAC_RXUNICASTCLEAR);
1038 val &= ~BIT(ch);
1039 emac_write(EMAC_RXUNICASTCLEAR, val);
1040}
1041
1042/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001043 * emac_set_type1addr - Set EMAC Type1 mac address
Anant Golea6286ee2009-05-18 15:19:01 -07001044 * @priv: The DaVinci EMAC private adapter structure
1045 * @ch: RX channel number
1046 * @mac_addr: MAC address to set in device
1047 *
1048 * Called internally to set Type1 mac address of the adapter (Device)
1049 *
1050 * Returns success (0) or appropriate error code (none as of now)
1051 */
1052static void emac_set_type1addr(struct emac_priv *priv, u32 ch, char *mac_addr)
1053{
1054 u32 val;
1055 emac_write(EMAC_MACINDEX, ch);
1056 val = ((mac_addr[5] << 8) | mac_addr[4]);
1057 emac_write(EMAC_MACADDRLO, val);
1058 val = ((mac_addr[3] << 24) | (mac_addr[2] << 16) | \
1059 (mac_addr[1] << 8) | (mac_addr[0]));
1060 emac_write(EMAC_MACADDRHI, val);
1061 emac_set_type0addr(priv, ch, mac_addr);
1062}
1063
1064/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001065 * emac_set_type2addr - Set EMAC Type2 mac address
Anant Golea6286ee2009-05-18 15:19:01 -07001066 * @priv: The DaVinci EMAC private adapter structure
1067 * @ch: RX channel number
1068 * @mac_addr: MAC address to set in device
1069 * @index: index into RX address entries
1070 * @match: match parameter for RX address matching logic
1071 *
1072 * Called internally to set Type2 mac address of the adapter (Device)
1073 *
1074 * Returns success (0) or appropriate error code (none as of now)
1075 */
1076static void emac_set_type2addr(struct emac_priv *priv, u32 ch,
1077 char *mac_addr, int index, int match)
1078{
1079 u32 val;
1080 emac_write(EMAC_MACINDEX, index);
1081 val = ((mac_addr[3] << 24) | (mac_addr[2] << 16) | \
1082 (mac_addr[1] << 8) | (mac_addr[0]));
1083 emac_write(EMAC_MACADDRHI, val);
1084 val = ((mac_addr[5] << 8) | mac_addr[4] | ((ch & 0x7) << 16) | \
1085 (match << 19) | BIT(20));
1086 emac_write(EMAC_MACADDRLO, val);
1087 emac_set_type0addr(priv, ch, mac_addr);
1088}
1089
1090/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001091 * emac_setmac - Set mac address in the adapter (internal function)
Anant Golea6286ee2009-05-18 15:19:01 -07001092 * @priv: The DaVinci EMAC private adapter structure
1093 * @ch: RX channel number
1094 * @mac_addr: MAC address to set in device
1095 *
1096 * Called internally to set the mac address of the adapter (Device)
1097 *
1098 * Returns success (0) or appropriate error code (none as of now)
1099 */
1100static void emac_setmac(struct emac_priv *priv, u32 ch, char *mac_addr)
1101{
1102 struct device *emac_dev = &priv->ndev->dev;
1103
1104 if (priv->rx_addr_type == 0) {
1105 emac_set_type0addr(priv, ch, mac_addr);
1106 } else if (priv->rx_addr_type == 1) {
1107 u32 cnt;
1108 for (cnt = 0; cnt < EMAC_MAX_TXRX_CHANNELS; cnt++)
1109 emac_set_type1addr(priv, ch, mac_addr);
1110 } else if (priv->rx_addr_type == 2) {
1111 emac_set_type2addr(priv, ch, mac_addr, ch, 1);
1112 emac_set_type0addr(priv, ch, mac_addr);
1113 } else {
1114 if (netif_msg_drv(priv))
1115 dev_err(emac_dev, "DaVinci EMAC: Wrong addressing\n");
1116 }
1117}
1118
1119/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001120 * emac_dev_setmac_addr - Set mac address in the adapter
Anant Golea6286ee2009-05-18 15:19:01 -07001121 * @ndev: The DaVinci EMAC network adapter
1122 * @addr: MAC address to set in device
1123 *
1124 * Called by the system to set the mac address of the adapter (Device)
1125 *
1126 * Returns success (0) or appropriate error code (none as of now)
1127 */
1128static int emac_dev_setmac_addr(struct net_device *ndev, void *addr)
1129{
1130 struct emac_priv *priv = netdev_priv(ndev);
Anant Golea6286ee2009-05-18 15:19:01 -07001131 struct device *emac_dev = &priv->ndev->dev;
1132 struct sockaddr *sa = addr;
Anant Golea6286ee2009-05-18 15:19:01 -07001133
Pablo Bitton64c81652009-07-07 19:11:10 -07001134 if (!is_valid_ether_addr(sa->sa_data))
Danny Kukawka504f9b52012-02-21 02:07:49 +00001135 return -EADDRNOTAVAIL;
Pablo Bitton64c81652009-07-07 19:11:10 -07001136
Anant Golea6286ee2009-05-18 15:19:01 -07001137 /* Store mac addr in priv and rx channel and set it in EMAC hw */
1138 memcpy(priv->mac_addr, sa->sa_data, ndev->addr_len);
Anant Golea6286ee2009-05-18 15:19:01 -07001139 memcpy(ndev->dev_addr, sa->sa_data, ndev->addr_len);
Pablo Bitton64c81652009-07-07 19:11:10 -07001140
Pablo Bitton64c81652009-07-07 19:11:10 -07001141 /* MAC address is configured only after the interface is enabled. */
1142 if (netif_running(ndev)) {
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001143 emac_setmac(priv, EMAC_DEF_RX_CH, priv->mac_addr);
Pablo Bitton64c81652009-07-07 19:11:10 -07001144 }
Anant Golea6286ee2009-05-18 15:19:01 -07001145
1146 if (netif_msg_drv(priv))
Chaithrika U S5c726162009-06-03 21:54:29 -07001147 dev_notice(emac_dev, "DaVinci EMAC: emac_dev_setmac_addr %pM\n",
1148 priv->mac_addr);
Anant Golea6286ee2009-05-18 15:19:01 -07001149
1150 return 0;
1151}
1152
1153/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001154 * emac_hw_enable - Enable EMAC hardware for packet transmission/reception
Anant Golea6286ee2009-05-18 15:19:01 -07001155 * @priv: The DaVinci EMAC private adapter structure
1156 *
1157 * Enables EMAC hardware for packet processing - enables PHY, enables RX
1158 * for packet reception and enables device interrupts and then NAPI
1159 *
1160 * Returns success (0) or appropriate error code (none right now)
1161 */
1162static int emac_hw_enable(struct emac_priv *priv)
1163{
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001164 u32 val, mbp_enable, mac_control;
Anant Golea6286ee2009-05-18 15:19:01 -07001165
1166 /* Soft reset */
1167 emac_write(EMAC_SOFTRESET, 1);
1168 while (emac_read(EMAC_SOFTRESET))
1169 cpu_relax();
1170
1171 /* Disable interrupt & Set pacing for more interrupts initially */
1172 emac_int_disable(priv);
1173
1174 /* Full duplex enable bit set when auto negotiation happens */
1175 mac_control =
1176 (((EMAC_DEF_TXPRIO_FIXED) ? (EMAC_MACCONTROL_TXPTYPE) : 0x0) |
1177 ((priv->speed == 1000) ? EMAC_MACCONTROL_GIGABITEN : 0x0) |
1178 ((EMAC_DEF_TXPACING_EN) ? (EMAC_MACCONTROL_TXPACEEN) : 0x0) |
1179 ((priv->duplex == DUPLEX_FULL) ? 0x1 : 0));
1180 emac_write(EMAC_MACCONTROL, mac_control);
1181
1182 mbp_enable =
1183 (((EMAC_DEF_PASS_CRC) ? (EMAC_RXMBP_PASSCRC_MASK) : 0x0) |
1184 ((EMAC_DEF_QOS_EN) ? (EMAC_RXMBP_QOSEN_MASK) : 0x0) |
1185 ((EMAC_DEF_NO_BUFF_CHAIN) ? (EMAC_RXMBP_NOCHAIN_MASK) : 0x0) |
1186 ((EMAC_DEF_MACCTRL_FRAME_EN) ? (EMAC_RXMBP_CMFEN_MASK) : 0x0) |
1187 ((EMAC_DEF_SHORT_FRAME_EN) ? (EMAC_RXMBP_CSFEN_MASK) : 0x0) |
1188 ((EMAC_DEF_ERROR_FRAME_EN) ? (EMAC_RXMBP_CEFEN_MASK) : 0x0) |
1189 ((EMAC_DEF_PROM_EN) ? (EMAC_RXMBP_CAFEN_MASK) : 0x0) |
1190 ((EMAC_DEF_PROM_CH & EMAC_RXMBP_CHMASK) << \
1191 EMAC_RXMBP_PROMCH_SHIFT) |
1192 ((EMAC_DEF_BCAST_EN) ? (EMAC_RXMBP_BROADEN_MASK) : 0x0) |
1193 ((EMAC_DEF_BCAST_CH & EMAC_RXMBP_CHMASK) << \
1194 EMAC_RXMBP_BROADCH_SHIFT) |
1195 ((EMAC_DEF_MCAST_EN) ? (EMAC_RXMBP_MULTIEN_MASK) : 0x0) |
1196 ((EMAC_DEF_MCAST_CH & EMAC_RXMBP_CHMASK) << \
1197 EMAC_RXMBP_MULTICH_SHIFT));
1198 emac_write(EMAC_RXMBPENABLE, mbp_enable);
1199 emac_write(EMAC_RXMAXLEN, (EMAC_DEF_MAX_FRAME_SIZE &
1200 EMAC_RX_MAX_LEN_MASK));
1201 emac_write(EMAC_RXBUFFEROFFSET, (EMAC_DEF_BUFFER_OFFSET &
1202 EMAC_RX_BUFFER_OFFSET_MASK));
1203 emac_write(EMAC_RXFILTERLOWTHRESH, 0);
1204 emac_write(EMAC_RXUNICASTCLEAR, EMAC_RX_UNICAST_CLEAR_ALL);
1205 priv->rx_addr_type = (emac_read(EMAC_MACCONFIG) >> 8) & 0xFF;
1206
Anant Golea6286ee2009-05-18 15:19:01 -07001207 emac_write(EMAC_MACINTMASKSET, EMAC_MAC_HOST_ERR_INTMASK_VAL);
1208
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001209 emac_setmac(priv, EMAC_DEF_RX_CH, priv->mac_addr);
Anant Golea6286ee2009-05-18 15:19:01 -07001210
1211 /* Enable MII */
1212 val = emac_read(EMAC_MACCONTROL);
chaithrika@ti.com69ef9692009-10-01 10:25:19 +00001213 val |= (EMAC_MACCONTROL_GMIIEN);
Anant Golea6286ee2009-05-18 15:19:01 -07001214 emac_write(EMAC_MACCONTROL, val);
1215
1216 /* Enable NAPI and interrupts */
1217 napi_enable(&priv->napi);
1218 emac_int_enable(priv);
1219 return 0;
1220
1221}
1222
1223/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001224 * emac_poll - EMAC NAPI Poll function
Anant Golea6286ee2009-05-18 15:19:01 -07001225 * @ndev: The DaVinci EMAC network adapter
1226 * @budget: Number of receive packets to process (as told by NAPI layer)
1227 *
1228 * NAPI Poll function implemented to process packets as per budget. We check
1229 * the type of interrupt on the device and accordingly call the TX or RX
1230 * packet processing functions. We follow the budget for RX processing and
1231 * also put a cap on number of TX pkts processed through config param. The
1232 * NAPI schedule function is called if more packets pending.
1233 *
1234 * Returns number of packets received (in most cases; else TX pkts - rarely)
1235 */
1236static int emac_poll(struct napi_struct *napi, int budget)
1237{
1238 unsigned int mask;
1239 struct emac_priv *priv = container_of(napi, struct emac_priv, napi);
1240 struct net_device *ndev = priv->ndev;
1241 struct device *emac_dev = &ndev->dev;
1242 u32 status = 0;
Sriram3725b1f2010-07-29 02:33:59 +00001243 u32 num_tx_pkts = 0, num_rx_pkts = 0;
Anant Golea6286ee2009-05-18 15:19:01 -07001244
Anant Golea6286ee2009-05-18 15:19:01 -07001245 /* Check interrupt vectors and call packet processing */
1246 status = emac_read(EMAC_MACINVECTOR);
1247
1248 mask = EMAC_DM644X_MAC_IN_VECTOR_TX_INT_VEC;
1249
1250 if (priv->version == EMAC_VERSION_2)
1251 mask = EMAC_DM646X_MAC_IN_VECTOR_TX_INT_VEC;
1252
1253 if (status & mask) {
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001254 num_tx_pkts = cpdma_chan_process(priv->txchan,
1255 EMAC_DEF_TX_MAX_SERVICE);
Anant Golea6286ee2009-05-18 15:19:01 -07001256 } /* TX processing */
1257
Anant Golea6286ee2009-05-18 15:19:01 -07001258 mask = EMAC_DM644X_MAC_IN_VECTOR_RX_INT_VEC;
1259
1260 if (priv->version == EMAC_VERSION_2)
1261 mask = EMAC_DM646X_MAC_IN_VECTOR_RX_INT_VEC;
1262
1263 if (status & mask) {
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001264 num_rx_pkts = cpdma_chan_process(priv->rxchan, budget);
Anant Golea6286ee2009-05-18 15:19:01 -07001265 } /* RX processing */
1266
Sriram43c2ed82009-09-24 19:15:18 +00001267 mask = EMAC_DM644X_MAC_IN_VECTOR_HOST_INT;
1268 if (priv->version == EMAC_VERSION_2)
1269 mask = EMAC_DM646X_MAC_IN_VECTOR_HOST_INT;
1270
1271 if (unlikely(status & mask)) {
Anant Golea6286ee2009-05-18 15:19:01 -07001272 u32 ch, cause;
1273 dev_err(emac_dev, "DaVinci EMAC: Fatal Hardware Error\n");
1274 netif_stop_queue(ndev);
1275 napi_disable(&priv->napi);
1276
1277 status = emac_read(EMAC_MACSTATUS);
1278 cause = ((status & EMAC_MACSTATUS_TXERRCODE_MASK) >>
1279 EMAC_MACSTATUS_TXERRCODE_SHIFT);
1280 if (cause) {
1281 ch = ((status & EMAC_MACSTATUS_TXERRCH_MASK) >>
1282 EMAC_MACSTATUS_TXERRCH_SHIFT);
1283 if (net_ratelimit()) {
1284 dev_err(emac_dev, "TX Host error %s on ch=%d\n",
1285 &emac_txhost_errcodes[cause][0], ch);
1286 }
1287 }
1288 cause = ((status & EMAC_MACSTATUS_RXERRCODE_MASK) >>
1289 EMAC_MACSTATUS_RXERRCODE_SHIFT);
1290 if (cause) {
1291 ch = ((status & EMAC_MACSTATUS_RXERRCH_MASK) >>
1292 EMAC_MACSTATUS_RXERRCH_SHIFT);
1293 if (netif_msg_hw(priv) && net_ratelimit())
1294 dev_err(emac_dev, "RX Host error %s on ch=%d\n",
1295 &emac_rxhost_errcodes[cause][0], ch);
1296 }
Sriram3725b1f2010-07-29 02:33:59 +00001297 } else if (num_rx_pkts < budget) {
Eric Dumazet6ad20162017-01-30 08:22:01 -08001298 napi_complete_done(napi, num_rx_pkts);
Sriram3725b1f2010-07-29 02:33:59 +00001299 emac_int_enable(priv);
1300 }
Anant Golea6286ee2009-05-18 15:19:01 -07001301
Sriram3725b1f2010-07-29 02:33:59 +00001302 return num_rx_pkts;
Anant Golea6286ee2009-05-18 15:19:01 -07001303}
1304
1305#ifdef CONFIG_NET_POLL_CONTROLLER
1306/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001307 * emac_poll_controller - EMAC Poll controller function
Anant Golea6286ee2009-05-18 15:19:01 -07001308 * @ndev: The DaVinci EMAC network adapter
1309 *
1310 * Polled functionality used by netconsole and others in non interrupt mode
1311 *
1312 */
Wei Yongjune052a582013-03-20 05:01:45 +00001313static void emac_poll_controller(struct net_device *ndev)
Anant Golea6286ee2009-05-18 15:19:01 -07001314{
1315 struct emac_priv *priv = netdev_priv(ndev);
1316
1317 emac_int_disable(priv);
Tonyliuc8ee5532009-11-04 05:45:02 -08001318 emac_irq(ndev->irq, ndev);
Anant Golea6286ee2009-05-18 15:19:01 -07001319 emac_int_enable(priv);
1320}
1321#endif
1322
Anant Golea6286ee2009-05-18 15:19:01 -07001323static void emac_adjust_link(struct net_device *ndev)
1324{
1325 struct emac_priv *priv = netdev_priv(ndev);
Philippe Reynesc3321772016-07-02 00:02:34 +02001326 struct phy_device *phydev = ndev->phydev;
Anant Golea6286ee2009-05-18 15:19:01 -07001327 unsigned long flags;
1328 int new_state = 0;
1329
1330 spin_lock_irqsave(&priv->lock, flags);
1331
1332 if (phydev->link) {
1333 /* check the mode of operation - full/half duplex */
1334 if (phydev->duplex != priv->duplex) {
1335 new_state = 1;
1336 priv->duplex = phydev->duplex;
1337 }
1338 if (phydev->speed != priv->speed) {
1339 new_state = 1;
1340 priv->speed = phydev->speed;
1341 }
1342 if (!priv->link) {
1343 new_state = 1;
1344 priv->link = 1;
1345 }
1346
1347 } else if (priv->link) {
1348 new_state = 1;
1349 priv->link = 0;
1350 priv->speed = 0;
1351 priv->duplex = ~0;
1352 }
1353 if (new_state) {
1354 emac_update_phystatus(priv);
Philippe Reynesc3321772016-07-02 00:02:34 +02001355 phy_print_status(ndev->phydev);
Anant Golea6286ee2009-05-18 15:19:01 -07001356 }
1357
1358 spin_unlock_irqrestore(&priv->lock, flags);
1359}
1360
1361/*************************************************************************
1362 * Linux Driver Model
1363 *************************************************************************/
1364
1365/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001366 * emac_devioctl - EMAC adapter ioctl
Anant Golea6286ee2009-05-18 15:19:01 -07001367 * @ndev: The DaVinci EMAC network adapter
1368 * @ifrq: request parameter
1369 * @cmd: command parameter
1370 *
1371 * EMAC driver ioctl function
1372 *
1373 * Returns success(0) or appropriate error code
1374 */
1375static int emac_devioctl(struct net_device *ndev, struct ifreq *ifrq, int cmd)
1376{
Anant Golea6286ee2009-05-18 15:19:01 -07001377 if (!(netif_running(ndev)))
1378 return -EINVAL;
1379
1380 /* TODO: Add phy read and write and private statistics get feature */
1381
Philippe Reynesc3321772016-07-02 00:02:34 +02001382 if (ndev->phydev)
1383 return phy_mii_ioctl(ndev->phydev, ifrq, cmd);
Neil Armstrong62522ef2016-04-25 19:41:38 +02001384 else
1385 return -EOPNOTSUPP;
Anant Golea6286ee2009-05-18 15:19:01 -07001386}
1387
1388/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001389 * emac_dev_open - EMAC device open
Anant Golea6286ee2009-05-18 15:19:01 -07001390 * @ndev: The DaVinci EMAC network adapter
1391 *
1392 * Called when system wants to start the interface. We init TX/RX channels
1393 * and enable the hardware for packet reception/transmission and start the
1394 * network queue.
1395 *
1396 * Returns 0 for a successful open, or appropriate error code
1397 */
1398static int emac_dev_open(struct net_device *ndev)
1399{
1400 struct device *emac_dev = &ndev->dev;
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001401 u32 cnt;
Anant Golea6286ee2009-05-18 15:19:01 -07001402 struct resource *res;
Christian Riesch33b71072014-03-24 13:46:26 +01001403 int q, m, ret;
Christian Rieschcd11cf52014-03-24 13:46:27 +01001404 int res_num = 0, irq_num = 0;
Anant Golea6286ee2009-05-18 15:19:01 -07001405 int i = 0;
Anant Golea6286ee2009-05-18 15:19:01 -07001406 struct emac_priv *priv = netdev_priv(ndev);
Philippe Reynesc3321772016-07-02 00:02:34 +02001407 struct phy_device *phydev = NULL;
Johan Hovold6bed0112016-11-03 18:40:21 +01001408 struct device *phy = NULL;
Anant Golea6286ee2009-05-18 15:19:01 -07001409
Tony Lindgrenb5133e72015-01-15 14:45:10 -08001410 ret = pm_runtime_get_sync(&priv->pdev->dev);
1411 if (ret < 0) {
1412 pm_runtime_put_noidle(&priv->pdev->dev);
1413 dev_err(&priv->pdev->dev, "%s: failed to get_sync(%d)\n",
1414 __func__, ret);
1415 return ret;
1416 }
Mark A. Greer3ba97382012-07-20 15:19:22 +00001417
Anant Golea6286ee2009-05-18 15:19:01 -07001418 netif_carrier_off(ndev);
Dan Carpenter4d27b872010-03-02 21:07:24 +00001419 for (cnt = 0; cnt < ETH_ALEN; cnt++)
Anant Golea6286ee2009-05-18 15:19:01 -07001420 ndev->dev_addr[cnt] = priv->mac_addr[cnt];
1421
1422 /* Configuration items */
1423 priv->rx_buf_size = EMAC_DEF_MAX_FRAME_SIZE + NET_IP_ALIGN;
1424
Anant Golea6286ee2009-05-18 15:19:01 -07001425 priv->mac_hash1 = 0;
1426 priv->mac_hash2 = 0;
1427 emac_write(EMAC_MACHASH1, 0);
1428 emac_write(EMAC_MACHASH2, 0);
1429
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001430 for (i = 0; i < EMAC_DEF_RX_NUM_DESC; i++) {
1431 struct sk_buff *skb = emac_rx_alloc(priv);
1432
1433 if (!skb)
1434 break;
1435
1436 ret = cpdma_chan_submit(priv->rxchan, skb, skb->data,
Sebastian Siewioraef614e2013-04-23 07:31:38 +00001437 skb_tailroom(skb), 0);
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001438 if (WARN_ON(ret < 0))
1439 break;
Anant Golea6286ee2009-05-18 15:19:01 -07001440 }
1441
1442 /* Request IRQ */
Christian Rieschcd11cf52014-03-24 13:46:27 +01001443 while ((res = platform_get_resource(priv->pdev, IORESOURCE_IRQ,
1444 res_num))) {
1445 for (irq_num = res->start; irq_num <= res->end; irq_num++) {
Christian Rieschcd11cf52014-03-24 13:46:27 +01001446 if (request_irq(irq_num, emac_irq, 0, ndev->name,
1447 ndev)) {
1448 dev_err(emac_dev,
1449 "DaVinci EMAC: request_irq() failed\n");
1450 ret = -EBUSY;
Anant Golea6286ee2009-05-18 15:19:01 -07001451
Anant Golea6286ee2009-05-18 15:19:01 -07001452 goto rollback;
Christian Rieschcd11cf52014-03-24 13:46:27 +01001453 }
Anant Golea6286ee2009-05-18 15:19:01 -07001454 }
Christian Rieschcd11cf52014-03-24 13:46:27 +01001455 res_num++;
Anant Golea6286ee2009-05-18 15:19:01 -07001456 }
Christian Rieschcd11cf52014-03-24 13:46:27 +01001457 /* prepare counters for rollback in case of an error */
1458 res_num--;
1459 irq_num--;
Anant Golea6286ee2009-05-18 15:19:01 -07001460
1461 /* Start/Enable EMAC hardware */
1462 emac_hw_enable(priv);
1463
Sriram84da2652010-07-29 02:33:58 +00001464 /* Enable Interrupt pacing if configured */
1465 if (priv->coal_intvl != 0) {
1466 struct ethtool_coalesce coal;
1467
1468 coal.rx_coalesce_usecs = (priv->coal_intvl << 4);
1469 emac_set_coalesce(ndev, &coal);
1470 }
1471
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001472 cpdma_ctlr_start(priv->dma);
1473
Tony Lindgren1d82ffa2015-01-15 14:45:12 -08001474 if (priv->phy_node) {
Philippe Reynesc3321772016-07-02 00:02:34 +02001475 phydev = of_phy_connect(ndev, priv->phy_node,
1476 &emac_adjust_link, 0, 0);
1477 if (!phydev) {
Rob Herringf7ce9102017-07-18 16:43:19 -05001478 dev_err(emac_dev, "could not connect to phy %pOF\n",
1479 priv->phy_node);
Tony Lindgren1d82ffa2015-01-15 14:45:12 -08001480 ret = -ENODEV;
1481 goto err;
1482 }
1483 }
1484
Cyril Chemparathy5d69e002010-09-15 10:11:24 -04001485 /* use the first phy on the bus if pdata did not give us a phy id */
Philippe Reynesc3321772016-07-02 00:02:34 +02001486 if (!phydev && !priv->phy_id) {
Lukas Wunner3243ff2a2017-11-25 12:18:19 +01001487 phy = bus_find_device_by_name(&mdio_bus_type, NULL,
1488 "davinci_mdio");
Johan Hovold6bed0112016-11-03 18:40:21 +01001489 if (phy) {
Cyril Chemparathy5d69e002010-09-15 10:11:24 -04001490 priv->phy_id = dev_name(phy);
Johan Hovold6bed0112016-11-03 18:40:21 +01001491 if (!priv->phy_id || !*priv->phy_id)
1492 put_device(phy);
1493 }
Cyril Chemparathy5d69e002010-09-15 10:11:24 -04001494 }
Anant Golea6286ee2009-05-18 15:19:01 -07001495
Philippe Reynesc3321772016-07-02 00:02:34 +02001496 if (!phydev && priv->phy_id && *priv->phy_id) {
1497 phydev = phy_connect(ndev, priv->phy_id,
1498 &emac_adjust_link,
1499 PHY_INTERFACE_MODE_MII);
Johan Hovold6bed0112016-11-03 18:40:21 +01001500 put_device(phy); /* reference taken by bus_find_device */
Philippe Reynesc3321772016-07-02 00:02:34 +02001501 if (IS_ERR(phydev)) {
Cyril Chemparathy5d69e002010-09-15 10:11:24 -04001502 dev_err(emac_dev, "could not connect to phy %s\n",
1503 priv->phy_id);
Philippe Reynesc3321772016-07-02 00:02:34 +02001504 ret = PTR_ERR(phydev);
Mark A. Greer3ba97382012-07-20 15:19:22 +00001505 goto err;
Anant Golea6286ee2009-05-18 15:19:01 -07001506 }
1507
1508 priv->link = 0;
1509 priv->speed = 0;
1510 priv->duplex = ~0;
1511
Philippe Reynesc3321772016-07-02 00:02:34 +02001512 phy_attached_info(phydev);
Tony Lindgren1d82ffa2015-01-15 14:45:12 -08001513 }
1514
Philippe Reynesc3321772016-07-02 00:02:34 +02001515 if (!phydev) {
Anant Golea6286ee2009-05-18 15:19:01 -07001516 /* No PHY , fix the link, speed and duplex settings */
Cyril Chemparathy5d69e002010-09-15 10:11:24 -04001517 dev_notice(emac_dev, "no phy, defaulting to 100/full\n");
Anant Golea6286ee2009-05-18 15:19:01 -07001518 priv->link = 1;
1519 priv->speed = SPEED_100;
1520 priv->duplex = DUPLEX_FULL;
1521 emac_update_phystatus(priv);
1522 }
1523
Anant Golea6286ee2009-05-18 15:19:01 -07001524 if (netif_msg_drv(priv))
1525 dev_notice(emac_dev, "DaVinci EMAC: Opened %s\n", ndev->name);
1526
Philippe Reynesc3321772016-07-02 00:02:34 +02001527 if (phydev)
1528 phy_start(phydev);
Anant Golea6286ee2009-05-18 15:19:01 -07001529
1530 return 0;
1531
Mark A. Greer3ba97382012-07-20 15:19:22 +00001532err:
Christian Rieschcd11cf52014-03-24 13:46:27 +01001533 emac_int_disable(priv);
1534 napi_disable(&priv->napi);
1535
1536rollback:
1537 for (q = res_num; q >= 0; q--) {
1538 res = platform_get_resource(priv->pdev, IORESOURCE_IRQ, q);
1539 /* at the first iteration, irq_num is already set to the
1540 * right value
1541 */
1542 if (q != res_num)
1543 irq_num = res->end;
1544
1545 for (m = irq_num; m >= res->start; m--)
1546 free_irq(m, ndev);
1547 }
1548 cpdma_ctlr_stop(priv->dma);
Mark A. Greer3ba97382012-07-20 15:19:22 +00001549 pm_runtime_put(&priv->pdev->dev);
1550 return ret;
Anant Golea6286ee2009-05-18 15:19:01 -07001551}
1552
1553/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001554 * emac_dev_stop - EMAC device stop
Anant Golea6286ee2009-05-18 15:19:01 -07001555 * @ndev: The DaVinci EMAC network adapter
1556 *
1557 * Called when system wants to stop or down the interface. We stop the network
1558 * queue, disable interrupts and cleanup TX/RX channels.
1559 *
1560 * We return the statistics in net_device_stats structure pulled from emac
1561 */
1562static int emac_dev_stop(struct net_device *ndev)
1563{
Christian Riesch33b71072014-03-24 13:46:26 +01001564 struct resource *res;
1565 int i = 0;
1566 int irq_num;
Anant Golea6286ee2009-05-18 15:19:01 -07001567 struct emac_priv *priv = netdev_priv(ndev);
1568 struct device *emac_dev = &ndev->dev;
1569
1570 /* inform the upper layers. */
1571 netif_stop_queue(ndev);
1572 napi_disable(&priv->napi);
1573
1574 netif_carrier_off(ndev);
1575 emac_int_disable(priv);
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001576 cpdma_ctlr_stop(priv->dma);
Anant Golea6286ee2009-05-18 15:19:01 -07001577 emac_write(EMAC_SOFTRESET, 1);
1578
Philippe Reynesc3321772016-07-02 00:02:34 +02001579 if (ndev->phydev)
1580 phy_disconnect(ndev->phydev);
Anant Golea6286ee2009-05-18 15:19:01 -07001581
Christian Riesch33b71072014-03-24 13:46:26 +01001582 /* Free IRQ */
1583 while ((res = platform_get_resource(priv->pdev, IORESOURCE_IRQ, i))) {
1584 for (irq_num = res->start; irq_num <= res->end; irq_num++)
1585 free_irq(irq_num, priv->ndev);
1586 i++;
1587 }
1588
Anant Golea6286ee2009-05-18 15:19:01 -07001589 if (netif_msg_drv(priv))
1590 dev_notice(emac_dev, "DaVinci EMAC: %s stopped\n", ndev->name);
1591
Mark A. Greer3ba97382012-07-20 15:19:22 +00001592 pm_runtime_put(&priv->pdev->dev);
Anant Golea6286ee2009-05-18 15:19:01 -07001593 return 0;
1594}
1595
1596/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001597 * emac_dev_getnetstats - EMAC get statistics function
Anant Golea6286ee2009-05-18 15:19:01 -07001598 * @ndev: The DaVinci EMAC network adapter
1599 *
1600 * Called when system wants to get statistics from the device.
1601 *
1602 * We return the statistics in net_device_stats structure pulled from emac
1603 */
1604static struct net_device_stats *emac_dev_getnetstats(struct net_device *ndev)
1605{
1606 struct emac_priv *priv = netdev_priv(ndev);
Sriram0fe74632009-10-07 02:44:30 +00001607 u32 mac_control;
1608 u32 stats_clear_mask;
Tony Lindgrenb5133e72015-01-15 14:45:10 -08001609 int err;
1610
1611 err = pm_runtime_get_sync(&priv->pdev->dev);
1612 if (err < 0) {
1613 pm_runtime_put_noidle(&priv->pdev->dev);
1614 dev_err(&priv->pdev->dev, "%s: failed to get_sync(%d)\n",
1615 __func__, err);
1616 return &ndev->stats;
1617 }
Anant Golea6286ee2009-05-18 15:19:01 -07001618
1619 /* update emac hardware stats and reset the registers*/
1620
Sriram0fe74632009-10-07 02:44:30 +00001621 mac_control = emac_read(EMAC_MACCONTROL);
1622
1623 if (mac_control & EMAC_MACCONTROL_GMIIEN)
1624 stats_clear_mask = EMAC_STATS_CLR_MASK;
1625 else
1626 stats_clear_mask = 0;
1627
Kulikov Vasiliy78e8c532010-07-05 02:13:26 +00001628 ndev->stats.multicast += emac_read(EMAC_RXMCASTFRAMES);
Sriram0fe74632009-10-07 02:44:30 +00001629 emac_write(EMAC_RXMCASTFRAMES, stats_clear_mask);
Anant Golea6286ee2009-05-18 15:19:01 -07001630
Kulikov Vasiliy78e8c532010-07-05 02:13:26 +00001631 ndev->stats.collisions += (emac_read(EMAC_TXCOLLISION) +
Anant Golea6286ee2009-05-18 15:19:01 -07001632 emac_read(EMAC_TXSINGLECOLL) +
1633 emac_read(EMAC_TXMULTICOLL));
Sriram0fe74632009-10-07 02:44:30 +00001634 emac_write(EMAC_TXCOLLISION, stats_clear_mask);
1635 emac_write(EMAC_TXSINGLECOLL, stats_clear_mask);
1636 emac_write(EMAC_TXMULTICOLL, stats_clear_mask);
Anant Golea6286ee2009-05-18 15:19:01 -07001637
Kulikov Vasiliy78e8c532010-07-05 02:13:26 +00001638 ndev->stats.rx_length_errors += (emac_read(EMAC_RXOVERSIZED) +
Anant Golea6286ee2009-05-18 15:19:01 -07001639 emac_read(EMAC_RXJABBER) +
1640 emac_read(EMAC_RXUNDERSIZED));
Sriram0fe74632009-10-07 02:44:30 +00001641 emac_write(EMAC_RXOVERSIZED, stats_clear_mask);
1642 emac_write(EMAC_RXJABBER, stats_clear_mask);
1643 emac_write(EMAC_RXUNDERSIZED, stats_clear_mask);
Anant Golea6286ee2009-05-18 15:19:01 -07001644
Kulikov Vasiliy78e8c532010-07-05 02:13:26 +00001645 ndev->stats.rx_over_errors += (emac_read(EMAC_RXSOFOVERRUNS) +
Anant Golea6286ee2009-05-18 15:19:01 -07001646 emac_read(EMAC_RXMOFOVERRUNS));
Sriram0fe74632009-10-07 02:44:30 +00001647 emac_write(EMAC_RXSOFOVERRUNS, stats_clear_mask);
1648 emac_write(EMAC_RXMOFOVERRUNS, stats_clear_mask);
Anant Golea6286ee2009-05-18 15:19:01 -07001649
Kulikov Vasiliy78e8c532010-07-05 02:13:26 +00001650 ndev->stats.rx_fifo_errors += emac_read(EMAC_RXDMAOVERRUNS);
Sriram0fe74632009-10-07 02:44:30 +00001651 emac_write(EMAC_RXDMAOVERRUNS, stats_clear_mask);
Anant Golea6286ee2009-05-18 15:19:01 -07001652
Kulikov Vasiliy78e8c532010-07-05 02:13:26 +00001653 ndev->stats.tx_carrier_errors +=
Anant Golea6286ee2009-05-18 15:19:01 -07001654 emac_read(EMAC_TXCARRIERSENSE);
Sriram0fe74632009-10-07 02:44:30 +00001655 emac_write(EMAC_TXCARRIERSENSE, stats_clear_mask);
Anant Golea6286ee2009-05-18 15:19:01 -07001656
Thomas Lange60aeba22011-03-09 04:41:16 +00001657 ndev->stats.tx_fifo_errors += emac_read(EMAC_TXUNDERRUN);
Sriram0fe74632009-10-07 02:44:30 +00001658 emac_write(EMAC_TXUNDERRUN, stats_clear_mask);
Anant Golea6286ee2009-05-18 15:19:01 -07001659
Tony Lindgrenb5133e72015-01-15 14:45:10 -08001660 pm_runtime_put(&priv->pdev->dev);
1661
Kulikov Vasiliy78e8c532010-07-05 02:13:26 +00001662 return &ndev->stats;
Anant Golea6286ee2009-05-18 15:19:01 -07001663}
1664
1665static const struct net_device_ops emac_netdev_ops = {
1666 .ndo_open = emac_dev_open,
1667 .ndo_stop = emac_dev_stop,
1668 .ndo_start_xmit = emac_dev_xmit,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001669 .ndo_set_rx_mode = emac_dev_mcast_set,
Anant Golea6286ee2009-05-18 15:19:01 -07001670 .ndo_set_mac_address = emac_dev_setmac_addr,
1671 .ndo_do_ioctl = emac_devioctl,
1672 .ndo_tx_timeout = emac_dev_tx_timeout,
1673 .ndo_get_stats = emac_dev_getnetstats,
1674#ifdef CONFIG_NET_POLL_CONTROLLER
1675 .ndo_poll_controller = emac_poll_controller,
1676#endif
1677};
1678
Tony Lindgrendd0df472013-12-03 15:13:02 -08001679static const struct of_device_id davinci_emac_of_match[];
1680
Lad, Prabhakar151328c2013-06-25 21:24:52 +05301681static struct emac_platform_data *
1682davinci_emac_of_get_pdata(struct platform_device *pdev, struct emac_priv *priv)
Heiko Schocher42f59962012-07-17 00:34:24 +00001683{
1684 struct device_node *np;
Tony Lindgrendd0df472013-12-03 15:13:02 -08001685 const struct of_device_id *match;
1686 const struct emac_platform_data *auxdata;
Heiko Schocher42f59962012-07-17 00:34:24 +00001687 struct emac_platform_data *pdata = NULL;
1688 const u8 *mac_addr;
Heiko Schocher42f59962012-07-17 00:34:24 +00001689
Lad, Prabhakar151328c2013-06-25 21:24:52 +05301690 if (!IS_ENABLED(CONFIG_OF) || !pdev->dev.of_node)
Jingoo Han20e6f332013-08-30 12:29:57 +09001691 return dev_get_platdata(&pdev->dev);
Lad, Prabhakar151328c2013-06-25 21:24:52 +05301692
1693 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
1694 if (!pdata)
1695 return NULL;
Heiko Schocher42f59962012-07-17 00:34:24 +00001696
1697 np = pdev->dev.of_node;
Lad, Prabhakar151328c2013-06-25 21:24:52 +05301698 pdata->version = EMAC_VERSION_2;
Heiko Schocher42f59962012-07-17 00:34:24 +00001699
1700 if (!is_valid_ether_addr(pdata->mac_addr)) {
1701 mac_addr = of_get_mac_address(np);
1702 if (mac_addr)
Tony Lindgren9120bd6e2015-01-28 11:33:05 -08001703 ether_addr_copy(pdata->mac_addr, mac_addr);
Heiko Schocher42f59962012-07-17 00:34:24 +00001704 }
1705
Lad, Prabhakar151328c2013-06-25 21:24:52 +05301706 of_property_read_u32(np, "ti,davinci-ctrl-reg-offset",
1707 &pdata->ctrl_reg_offset);
Heiko Schocher42f59962012-07-17 00:34:24 +00001708
Lad, Prabhakar151328c2013-06-25 21:24:52 +05301709 of_property_read_u32(np, "ti,davinci-ctrl-mod-reg-offset",
1710 &pdata->ctrl_mod_reg_offset);
Heiko Schocher42f59962012-07-17 00:34:24 +00001711
Lad, Prabhakar151328c2013-06-25 21:24:52 +05301712 of_property_read_u32(np, "ti,davinci-ctrl-ram-offset",
1713 &pdata->ctrl_ram_offset);
Heiko Schocher42f59962012-07-17 00:34:24 +00001714
Lad, Prabhakar151328c2013-06-25 21:24:52 +05301715 of_property_read_u32(np, "ti,davinci-ctrl-ram-size",
1716 &pdata->ctrl_ram_size);
Heiko Schocher42f59962012-07-17 00:34:24 +00001717
Lad, Prabhakar151328c2013-06-25 21:24:52 +05301718 of_property_read_u8(np, "ti,davinci-rmii-en", &pdata->rmii_en);
Heiko Schocher42f59962012-07-17 00:34:24 +00001719
Lad, Prabhakar151328c2013-06-25 21:24:52 +05301720 pdata->no_bd_ram = of_property_read_bool(np, "ti,davinci-no-bd-ram");
Heiko Schocher42f59962012-07-17 00:34:24 +00001721
1722 priv->phy_node = of_parse_phandle(np, "phy-handle", 0);
Neil Armstrong1bb6aa52015-09-22 10:57:04 +02001723 if (!priv->phy_node) {
1724 if (!of_phy_is_fixed_link(np))
1725 pdata->phy_id = NULL;
1726 else if (of_phy_register_fixed_link(np) >= 0)
1727 priv->phy_node = of_node_get(np);
1728 }
Tony Lindgrendd0df472013-12-03 15:13:02 -08001729
1730 auxdata = pdev->dev.platform_data;
1731 if (auxdata) {
1732 pdata->interrupt_enable = auxdata->interrupt_enable;
1733 pdata->interrupt_disable = auxdata->interrupt_disable;
1734 }
1735
1736 match = of_match_device(davinci_emac_of_match, &pdev->dev);
1737 if (match && match->data) {
1738 auxdata = match->data;
1739 pdata->version = auxdata->version;
1740 pdata->hw_ram_addr = auxdata->hw_ram_addr;
1741 }
Heiko Schocher42f59962012-07-17 00:34:24 +00001742
Heiko Schocher42f59962012-07-17 00:34:24 +00001743 return pdata;
1744}
Lad, Prabhakar151328c2013-06-25 21:24:52 +05301745
Tony Lindgren9120bd6e2015-01-28 11:33:05 -08001746static int davinci_emac_try_get_mac(struct platform_device *pdev,
1747 int instance, u8 *mac_addr)
1748{
Tony Lindgren9120bd6e2015-01-28 11:33:05 -08001749 if (!pdev->dev.of_node)
Mugunthan V Nb6745f62015-09-21 15:56:50 +05301750 return -EINVAL;
Tony Lindgren9120bd6e2015-01-28 11:33:05 -08001751
Mugunthan V Nb6745f62015-09-21 15:56:50 +05301752 return ti_cm_get_macid(&pdev->dev, instance, mac_addr);
Tony Lindgren9120bd6e2015-01-28 11:33:05 -08001753}
1754
Anant Golea6286ee2009-05-18 15:19:01 -07001755/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001756 * davinci_emac_probe - EMAC device probe
Anant Golea6286ee2009-05-18 15:19:01 -07001757 * @pdev: The DaVinci EMAC device that we are removing
1758 *
1759 * Called when probing for emac devicesr. We get details of instances and
1760 * resource information from platform init and register a network device
1761 * and allocate resources necessary for driver to perform
1762 */
Bill Pembertone38921d2012-12-03 09:24:03 -05001763static int davinci_emac_probe(struct platform_device *pdev)
Anant Golea6286ee2009-05-18 15:19:01 -07001764{
Johan Hovold14cab6f2016-11-28 19:25:08 +01001765 struct device_node *np = pdev->dev.of_node;
Anant Golea6286ee2009-05-18 15:19:01 -07001766 int rc = 0;
Tony Lindgrena1594322015-01-15 14:45:13 -08001767 struct resource *res, *res_ctrl;
Anant Golea6286ee2009-05-18 15:19:01 -07001768 struct net_device *ndev;
1769 struct emac_priv *priv;
Lad, Prabhakar6892b412013-06-25 21:24:51 +05301770 unsigned long hw_ram_addr;
Anant Golea6286ee2009-05-18 15:19:01 -07001771 struct emac_platform_data *pdata;
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001772 struct cpdma_params dma_params;
Mark A. Greer3ba97382012-07-20 15:19:22 +00001773 struct clk *emac_clk;
1774 unsigned long emac_bus_frequency;
1775
Anant Golea6286ee2009-05-18 15:19:01 -07001776
1777 /* obtain emac clock from kernel */
Sekhar Norib8092862013-03-24 23:25:46 +00001778 emac_clk = devm_clk_get(&pdev->dev, NULL);
Anant Golea6286ee2009-05-18 15:19:01 -07001779 if (IS_ERR(emac_clk)) {
Johan Hovold240b2622011-05-26 04:37:32 +00001780 dev_err(&pdev->dev, "failed to get EMAC clock\n");
Anant Golea6286ee2009-05-18 15:19:01 -07001781 return -EBUSY;
1782 }
1783 emac_bus_frequency = clk_get_rate(emac_clk);
Tony Lindgren0f537272015-01-15 14:45:11 -08001784 devm_clk_put(&pdev->dev, emac_clk);
Mark A. Greer3ba97382012-07-20 15:19:22 +00001785
Anant Golea6286ee2009-05-18 15:19:01 -07001786 /* TODO: Probe PHY here if possible */
1787
1788 ndev = alloc_etherdev(sizeof(struct emac_priv));
Sekhar Norib8092862013-03-24 23:25:46 +00001789 if (!ndev)
1790 return -ENOMEM;
Anant Golea6286ee2009-05-18 15:19:01 -07001791
1792 platform_set_drvdata(pdev, ndev);
1793 priv = netdev_priv(ndev);
1794 priv->pdev = pdev;
1795 priv->ndev = ndev;
1796 priv->msg_enable = netif_msg_init(debug_level, DAVINCI_EMAC_DEBUG);
1797
Anant Golea6286ee2009-05-18 15:19:01 -07001798 spin_lock_init(&priv->lock);
1799
Heiko Schocher42f59962012-07-17 00:34:24 +00001800 pdata = davinci_emac_of_get_pdata(pdev, priv);
Anant Golea6286ee2009-05-18 15:19:01 -07001801 if (!pdata) {
Johan Hovold240b2622011-05-26 04:37:32 +00001802 dev_err(&pdev->dev, "no platform data\n");
Julia Lawallb722dbf2011-06-01 07:10:10 +00001803 rc = -ENODEV;
Johan Hovold14cab6f2016-11-28 19:25:08 +01001804 goto err_free_netdev;
Anant Golea6286ee2009-05-18 15:19:01 -07001805 }
1806
1807 /* MAC addr and PHY mask , RMII enable info from platform_data */
Joe Perchesd458cdf2013-10-01 19:04:40 -07001808 memcpy(priv->mac_addr, pdata->mac_addr, ETH_ALEN);
Cyril Chemparathy5d69e002010-09-15 10:11:24 -04001809 priv->phy_id = pdata->phy_id;
Anant Golea6286ee2009-05-18 15:19:01 -07001810 priv->rmii_en = pdata->rmii_en;
1811 priv->version = pdata->version;
Sriramakrishnan01a9af32009-11-19 15:58:26 +05301812 priv->int_enable = pdata->interrupt_enable;
1813 priv->int_disable = pdata->interrupt_disable;
1814
Sriram84da2652010-07-29 02:33:58 +00001815 priv->coal_intvl = 0;
1816 priv->bus_freq_mhz = (u32)(emac_bus_frequency / 1000000);
1817
Anant Golea6286ee2009-05-18 15:19:01 -07001818 /* Get EMAC platform data */
1819 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Anant Golea6286ee2009-05-18 15:19:01 -07001820 priv->emac_base_phys = res->start + pdata->ctrl_reg_offset;
Lad, Prabhakar6892b412013-06-25 21:24:51 +05301821 priv->remap_addr = devm_ioremap_resource(&pdev->dev, res);
1822 if (IS_ERR(priv->remap_addr)) {
Lad, Prabhakar6892b412013-06-25 21:24:51 +05301823 rc = PTR_ERR(priv->remap_addr);
Sekhar Norib8092862013-03-24 23:25:46 +00001824 goto no_pdata;
Anant Golea6286ee2009-05-18 15:19:01 -07001825 }
Tony Lindgrena1594322015-01-15 14:45:13 -08001826
1827 res_ctrl = platform_get_resource(pdev, IORESOURCE_MEM, 1);
1828 if (res_ctrl) {
1829 priv->ctrl_base =
1830 devm_ioremap_resource(&pdev->dev, res_ctrl);
Julia Lawall1ef53eb2015-08-23 02:11:14 +02001831 if (IS_ERR(priv->ctrl_base)) {
1832 rc = PTR_ERR(priv->ctrl_base);
Tony Lindgrena1594322015-01-15 14:45:13 -08001833 goto no_pdata;
Julia Lawall1ef53eb2015-08-23 02:11:14 +02001834 }
Tony Lindgrena1594322015-01-15 14:45:13 -08001835 } else {
1836 priv->ctrl_base = priv->remap_addr + pdata->ctrl_mod_reg_offset;
1837 }
1838
Anant Golea6286ee2009-05-18 15:19:01 -07001839 priv->emac_base = priv->remap_addr + pdata->ctrl_reg_offset;
1840 ndev->base_addr = (unsigned long)priv->remap_addr;
1841
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001842 hw_ram_addr = pdata->hw_ram_addr;
1843 if (!hw_ram_addr)
1844 hw_ram_addr = (u32 __force)res->start + pdata->ctrl_ram_offset;
1845
1846 memset(&dma_params, 0, sizeof(dma_params));
Sekhar Nori68bc74f2014-05-20 15:41:37 +05301847 dma_params.dev = &pdev->dev;
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001848 dma_params.dmaregs = priv->emac_base;
1849 dma_params.rxthresh = priv->emac_base + 0x120;
1850 dma_params.rxfree = priv->emac_base + 0x140;
1851 dma_params.txhdp = priv->emac_base + 0x600;
1852 dma_params.rxhdp = priv->emac_base + 0x620;
1853 dma_params.txcp = priv->emac_base + 0x640;
1854 dma_params.rxcp = priv->emac_base + 0x660;
1855 dma_params.num_chan = EMAC_MAX_TXRX_CHANNELS;
1856 dma_params.min_packet_size = EMAC_DEF_MIN_ETHPKTSIZE;
Sriram6a1fef62011-03-22 02:31:03 +00001857 dma_params.desc_hw_addr = hw_ram_addr;
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001858 dma_params.desc_mem_size = pdata->ctrl_ram_size;
1859 dma_params.desc_align = 16;
1860
Sriram6a1fef62011-03-22 02:31:03 +00001861 dma_params.desc_mem_phys = pdata->no_bd_ram ? 0 :
1862 (u32 __force)res->start + pdata->ctrl_ram_offset;
1863
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001864 priv->dma = cpdma_ctlr_create(&dma_params);
1865 if (!priv->dma) {
Johan Hovold240b2622011-05-26 04:37:32 +00001866 dev_err(&pdev->dev, "error initializing DMA\n");
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001867 rc = -ENOMEM;
Sekhar Norib8092862013-03-24 23:25:46 +00001868 goto no_pdata;
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001869 }
1870
Ivan Khoronzhuk925d65e2016-08-22 21:18:27 +03001871 priv->txchan = cpdma_chan_create(priv->dma, EMAC_DEF_TX_CH,
1872 emac_tx_handler, 0);
Ivan Khoronzhuk8a83c5d2017-12-12 23:06:35 +02001873 if (IS_ERR(priv->txchan)) {
1874 dev_err(&pdev->dev, "error initializing tx dma channel\n");
1875 rc = PTR_ERR(priv->txchan);
Dan Carpenter8005b092018-05-31 09:44:49 +03001876 goto err_free_dma;
Ivan Khoronzhuk8a83c5d2017-12-12 23:06:35 +02001877 }
1878
Ivan Khoronzhuk925d65e2016-08-22 21:18:27 +03001879 priv->rxchan = cpdma_chan_create(priv->dma, EMAC_DEF_RX_CH,
1880 emac_rx_handler, 1);
Ivan Khoronzhuk8a83c5d2017-12-12 23:06:35 +02001881 if (IS_ERR(priv->rxchan)) {
1882 dev_err(&pdev->dev, "error initializing rx dma channel\n");
1883 rc = PTR_ERR(priv->rxchan);
Dan Carpenter8005b092018-05-31 09:44:49 +03001884 goto err_free_txchan;
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001885 }
Sriramakrishnanad021ae2009-11-19 15:58:27 +05301886
Anant Golea6286ee2009-05-18 15:19:01 -07001887 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1888 if (!res) {
Johan Hovold240b2622011-05-26 04:37:32 +00001889 dev_err(&pdev->dev, "error getting irq res\n");
Anant Golea6286ee2009-05-18 15:19:01 -07001890 rc = -ENOENT;
Dan Carpenter8005b092018-05-31 09:44:49 +03001891 goto err_free_rxchan;
Anant Golea6286ee2009-05-18 15:19:01 -07001892 }
1893 ndev->irq = res->start;
1894
Tony Lindgren9120bd6e2015-01-28 11:33:05 -08001895 rc = davinci_emac_try_get_mac(pdev, res_ctrl ? 0 : 1, priv->mac_addr);
1896 if (!rc)
1897 ether_addr_copy(ndev->dev_addr, priv->mac_addr);
1898
Anant Golea6286ee2009-05-18 15:19:01 -07001899 if (!is_valid_ether_addr(priv->mac_addr)) {
Anant Golea6286ee2009-05-18 15:19:01 -07001900 /* Use random MAC if none passed */
Danny Kukawkabaf1d372012-02-17 05:43:24 +00001901 eth_hw_addr_random(ndev);
1902 memcpy(priv->mac_addr, ndev->dev_addr, ndev->addr_len);
Johan Hovold240b2622011-05-26 04:37:32 +00001903 dev_warn(&pdev->dev, "using random MAC addr: %pM\n",
1904 priv->mac_addr);
Anant Golea6286ee2009-05-18 15:19:01 -07001905 }
1906
1907 ndev->netdev_ops = &emac_netdev_ops;
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00001908 ndev->ethtool_ops = &ethtool_ops;
Anant Golea6286ee2009-05-18 15:19:01 -07001909 netif_napi_add(ndev, &priv->napi, emac_poll, EMAC_POLL_WEIGHT);
1910
Tony Lindgrenb5133e72015-01-15 14:45:10 -08001911 pm_runtime_enable(&pdev->dev);
1912 rc = pm_runtime_get_sync(&pdev->dev);
1913 if (rc < 0) {
1914 pm_runtime_put_noidle(&pdev->dev);
1915 dev_err(&pdev->dev, "%s: failed to get_sync(%d)\n",
1916 __func__, rc);
Dan Carpenter8005b092018-05-31 09:44:49 +03001917 goto err_napi_del;
Tony Lindgrenb5133e72015-01-15 14:45:10 -08001918 }
1919
Anant Golea6286ee2009-05-18 15:19:01 -07001920 /* register the network device */
1921 SET_NETDEV_DEV(ndev, &pdev->dev);
1922 rc = register_netdev(ndev);
1923 if (rc) {
Johan Hovold240b2622011-05-26 04:37:32 +00001924 dev_err(&pdev->dev, "error in register_netdev\n");
Anant Golea6286ee2009-05-18 15:19:01 -07001925 rc = -ENODEV;
Tony Lindgrenb5133e72015-01-15 14:45:10 -08001926 pm_runtime_put(&pdev->dev);
Dan Carpenter8005b092018-05-31 09:44:49 +03001927 goto err_napi_del;
Anant Golea6286ee2009-05-18 15:19:01 -07001928 }
1929
Anant Golea6286ee2009-05-18 15:19:01 -07001930
Anant Golea6286ee2009-05-18 15:19:01 -07001931 if (netif_msg_probe(priv)) {
Sekhar Nori68bc74f2014-05-20 15:41:37 +05301932 dev_notice(&pdev->dev, "DaVinci EMAC Probe found device "
Florian Fainelli5a04e8f2018-05-21 11:45:54 -07001933 "(regs: %pa, irq: %d)\n",
1934 &priv->emac_base_phys, ndev->irq);
Anant Golea6286ee2009-05-18 15:19:01 -07001935 }
Tony Lindgrenb5133e72015-01-15 14:45:10 -08001936 pm_runtime_put(&pdev->dev);
Mark A. Greer3ba97382012-07-20 15:19:22 +00001937
Anant Golea6286ee2009-05-18 15:19:01 -07001938 return 0;
1939
Dan Carpenter8005b092018-05-31 09:44:49 +03001940err_napi_del:
1941 netif_napi_del(&priv->napi);
1942err_free_rxchan:
1943 cpdma_chan_destroy(priv->rxchan);
1944err_free_txchan:
1945 cpdma_chan_destroy(priv->txchan);
1946err_free_dma:
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001947 cpdma_ctlr_destroy(priv->dma);
Sekhar Norib8092862013-03-24 23:25:46 +00001948no_pdata:
Johan Hovold14cab6f2016-11-28 19:25:08 +01001949 if (of_phy_is_fixed_link(np))
1950 of_phy_deregister_fixed_link(np);
1951 of_node_put(priv->phy_node);
1952err_free_netdev:
Anant Golea6286ee2009-05-18 15:19:01 -07001953 free_netdev(ndev);
1954 return rc;
1955}
1956
1957/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001958 * davinci_emac_remove - EMAC device remove
Anant Golea6286ee2009-05-18 15:19:01 -07001959 * @pdev: The DaVinci EMAC device that we are removing
1960 *
1961 * Called when removing the device driver. We disable clock usage and release
1962 * the resources taken up by the driver and unregister network device
1963 */
Bill Pembertone38921d2012-12-03 09:24:03 -05001964static int davinci_emac_remove(struct platform_device *pdev)
Anant Golea6286ee2009-05-18 15:19:01 -07001965{
Anant Golea6286ee2009-05-18 15:19:01 -07001966 struct net_device *ndev = platform_get_drvdata(pdev);
1967 struct emac_priv *priv = netdev_priv(ndev);
Johan Hovold14cab6f2016-11-28 19:25:08 +01001968 struct device_node *np = pdev->dev.of_node;
Anant Golea6286ee2009-05-18 15:19:01 -07001969
1970 dev_notice(&ndev->dev, "DaVinci EMAC: davinci_emac_remove()\n");
1971
Cyril Chemparathy3ef0fdb2010-09-15 10:11:29 -04001972 if (priv->txchan)
1973 cpdma_chan_destroy(priv->txchan);
1974 if (priv->rxchan)
1975 cpdma_chan_destroy(priv->rxchan);
1976 cpdma_ctlr_destroy(priv->dma);
1977
Anant Golea6286ee2009-05-18 15:19:01 -07001978 unregister_netdev(ndev);
Peter Chen5817f972016-08-01 15:02:43 +08001979 of_node_put(priv->phy_node);
Neil Armstrong99164f92016-04-20 10:56:13 +02001980 pm_runtime_disable(&pdev->dev);
Johan Hovold14cab6f2016-11-28 19:25:08 +01001981 if (of_phy_is_fixed_link(np))
1982 of_phy_deregister_fixed_link(np);
Stefan Weil2a1bc0d2010-08-03 08:53:45 +00001983 free_netdev(ndev);
Anant Golea6286ee2009-05-18 15:19:01 -07001984
Anant Golea6286ee2009-05-18 15:19:01 -07001985 return 0;
1986}
1987
chaithrika@ti.comd4fdcd92010-03-10 22:37:56 +00001988static int davinci_emac_suspend(struct device *dev)
Ranjith Lohithakshan8d044fe2009-11-04 22:06:20 -08001989{
chaithrika@ti.comd4fdcd92010-03-10 22:37:56 +00001990 struct platform_device *pdev = to_platform_device(dev);
1991 struct net_device *ndev = platform_get_drvdata(pdev);
Ranjith Lohithakshan8d044fe2009-11-04 22:06:20 -08001992
chaithrika@ti.comd4fdcd92010-03-10 22:37:56 +00001993 if (netif_running(ndev))
1994 emac_dev_stop(ndev);
Ranjith Lohithakshan8d044fe2009-11-04 22:06:20 -08001995
Ranjith Lohithakshan8d044fe2009-11-04 22:06:20 -08001996 return 0;
1997}
1998
chaithrika@ti.comd4fdcd92010-03-10 22:37:56 +00001999static int davinci_emac_resume(struct device *dev)
Ranjith Lohithakshan8d044fe2009-11-04 22:06:20 -08002000{
chaithrika@ti.comd4fdcd92010-03-10 22:37:56 +00002001 struct platform_device *pdev = to_platform_device(dev);
2002 struct net_device *ndev = platform_get_drvdata(pdev);
Ranjith Lohithakshan8d044fe2009-11-04 22:06:20 -08002003
chaithrika@ti.comd4fdcd92010-03-10 22:37:56 +00002004 if (netif_running(ndev))
2005 emac_dev_open(ndev);
Ranjith Lohithakshan8d044fe2009-11-04 22:06:20 -08002006
2007 return 0;
2008}
2009
chaithrika@ti.comd4fdcd92010-03-10 22:37:56 +00002010static const struct dev_pm_ops davinci_emac_pm_ops = {
2011 .suspend = davinci_emac_suspend,
2012 .resume = davinci_emac_resume,
2013};
2014
Lad, Prabhakar151328c2013-06-25 21:24:52 +05302015#if IS_ENABLED(CONFIG_OF)
Tony Lindgrendd0df472013-12-03 15:13:02 -08002016static const struct emac_platform_data am3517_emac_data = {
2017 .version = EMAC_VERSION_2,
2018 .hw_ram_addr = 0x01e20000,
2019};
2020
Tony Lindgrende390082015-01-15 14:45:14 -08002021static const struct emac_platform_data dm816_emac_data = {
2022 .version = EMAC_VERSION_2,
2023};
2024
Heiko Schocher42f59962012-07-17 00:34:24 +00002025static const struct of_device_id davinci_emac_of_match[] = {
2026 {.compatible = "ti,davinci-dm6467-emac", },
Tony Lindgrendd0df472013-12-03 15:13:02 -08002027 {.compatible = "ti,am3517-emac", .data = &am3517_emac_data, },
Tony Lindgrende390082015-01-15 14:45:14 -08002028 {.compatible = "ti,dm816-emac", .data = &dm816_emac_data, },
Heiko Schocher42f59962012-07-17 00:34:24 +00002029 {},
2030};
2031MODULE_DEVICE_TABLE(of, davinci_emac_of_match);
Lad, Prabhakar151328c2013-06-25 21:24:52 +05302032#endif
Heiko Schocher42f59962012-07-17 00:34:24 +00002033
Ben Hutchings1aa8b472012-07-10 10:56:59 +00002034/* davinci_emac_driver: EMAC platform driver structure */
Anant Golea6286ee2009-05-18 15:19:01 -07002035static struct platform_driver davinci_emac_driver = {
2036 .driver = {
2037 .name = "davinci_emac",
chaithrika@ti.comd4fdcd92010-03-10 22:37:56 +00002038 .pm = &davinci_emac_pm_ops,
Heiko Schocher42f59962012-07-17 00:34:24 +00002039 .of_match_table = of_match_ptr(davinci_emac_of_match),
Anant Golea6286ee2009-05-18 15:19:01 -07002040 },
2041 .probe = davinci_emac_probe,
Bill Pembertone38921d2012-12-03 09:24:03 -05002042 .remove = davinci_emac_remove,
Anant Golea6286ee2009-05-18 15:19:01 -07002043};
2044
2045/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00002046 * davinci_emac_init - EMAC driver module init
Anant Golea6286ee2009-05-18 15:19:01 -07002047 *
2048 * Called when initializing the driver. We register the driver with
2049 * the platform.
2050 */
2051static int __init davinci_emac_init(void)
2052{
2053 return platform_driver_register(&davinci_emac_driver);
2054}
Rajashekhara, Sudhakar2db95172009-08-19 10:39:55 +00002055late_initcall(davinci_emac_init);
Anant Golea6286ee2009-05-18 15:19:01 -07002056
2057/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00002058 * davinci_emac_exit - EMAC driver module exit
Anant Golea6286ee2009-05-18 15:19:01 -07002059 *
2060 * Called when exiting the driver completely. We unregister the driver with
2061 * the platform and exit
2062 */
2063static void __exit davinci_emac_exit(void)
2064{
2065 platform_driver_unregister(&davinci_emac_driver);
2066}
2067module_exit(davinci_emac_exit);
2068
2069MODULE_LICENSE("GPL");
2070MODULE_AUTHOR("DaVinci EMAC Maintainer: Anant Gole <anantgole@ti.com>");
2071MODULE_AUTHOR("DaVinci EMAC Maintainer: Chaithrika U S <chaithrika@ti.com>");
2072MODULE_DESCRIPTION("DaVinci EMAC Ethernet driver");