blob: bc0cb154fc53cdf1439c94d5d4f7c07f2c7a8d0d [file] [log] [blame]
Mugunthan V Ndf828592012-03-18 20:17:54 +00001/*
2 * Texas Instruments Ethernet Switch Driver
3 *
4 * Copyright (C) 2012 Texas Instruments
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation version 2.
9 *
10 * This program is distributed "as is" WITHOUT ANY WARRANTY of any
11 * kind, whether express or implied; without even the implied warranty
12 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 */
15
16#include <linux/kernel.h>
17#include <linux/io.h>
18#include <linux/clk.h>
19#include <linux/timer.h>
20#include <linux/module.h>
21#include <linux/platform_device.h>
22#include <linux/irqreturn.h>
23#include <linux/interrupt.h>
24#include <linux/if_ether.h>
25#include <linux/etherdevice.h>
26#include <linux/netdevice.h>
Richard Cochran2e5b38a2012-10-29 08:45:20 +000027#include <linux/net_tstamp.h>
Mugunthan V Ndf828592012-03-18 20:17:54 +000028#include <linux/phy.h>
29#include <linux/workqueue.h>
30#include <linux/delay.h>
Mugunthan V Nf150bd72012-07-17 08:09:50 +000031#include <linux/pm_runtime.h>
Mugunthan V N2eb32b02012-07-30 10:17:14 +000032#include <linux/of.h>
33#include <linux/of_net.h>
34#include <linux/of_device.h>
Mugunthan V N3b72c2f2013-02-05 08:26:48 +000035#include <linux/if_vlan.h>
Mugunthan V Ndf828592012-03-18 20:17:54 +000036
Mugunthan V N739683b2013-06-06 23:45:14 +053037#include <linux/pinctrl/consumer.h>
Mugunthan V Ndf828592012-03-18 20:17:54 +000038
Mugunthan V Ndbe34722013-08-19 17:47:40 +053039#include "cpsw.h"
Mugunthan V Ndf828592012-03-18 20:17:54 +000040#include "cpsw_ale.h"
Richard Cochran2e5b38a2012-10-29 08:45:20 +000041#include "cpts.h"
Mugunthan V Ndf828592012-03-18 20:17:54 +000042#include "davinci_cpdma.h"
43
44#define CPSW_DEBUG (NETIF_MSG_HW | NETIF_MSG_WOL | \
45 NETIF_MSG_DRV | NETIF_MSG_LINK | \
46 NETIF_MSG_IFUP | NETIF_MSG_INTR | \
47 NETIF_MSG_PROBE | NETIF_MSG_TIMER | \
48 NETIF_MSG_IFDOWN | NETIF_MSG_RX_ERR | \
49 NETIF_MSG_TX_ERR | NETIF_MSG_TX_DONE | \
50 NETIF_MSG_PKTDATA | NETIF_MSG_TX_QUEUED | \
51 NETIF_MSG_RX_STATUS)
52
53#define cpsw_info(priv, type, format, ...) \
54do { \
55 if (netif_msg_##type(priv) && net_ratelimit()) \
56 dev_info(priv->dev, format, ## __VA_ARGS__); \
57} while (0)
58
59#define cpsw_err(priv, type, format, ...) \
60do { \
61 if (netif_msg_##type(priv) && net_ratelimit()) \
62 dev_err(priv->dev, format, ## __VA_ARGS__); \
63} while (0)
64
65#define cpsw_dbg(priv, type, format, ...) \
66do { \
67 if (netif_msg_##type(priv) && net_ratelimit()) \
68 dev_dbg(priv->dev, format, ## __VA_ARGS__); \
69} while (0)
70
71#define cpsw_notice(priv, type, format, ...) \
72do { \
73 if (netif_msg_##type(priv) && net_ratelimit()) \
74 dev_notice(priv->dev, format, ## __VA_ARGS__); \
75} while (0)
76
Mugunthan V N5c50a852012-10-29 08:45:11 +000077#define ALE_ALL_PORTS 0x7
78
Mugunthan V Ndf828592012-03-18 20:17:54 +000079#define CPSW_MAJOR_VERSION(reg) (reg >> 8 & 0x7)
80#define CPSW_MINOR_VERSION(reg) (reg & 0xff)
81#define CPSW_RTL_VERSION(reg) ((reg >> 11) & 0x1f)
82
Richard Cochrane90cfac2012-10-29 08:45:14 +000083#define CPSW_VERSION_1 0x19010a
84#define CPSW_VERSION_2 0x19010c
Mugunthan V Nc193f362013-08-05 17:30:05 +053085#define CPSW_VERSION_3 0x19010f
Mugunthan V N926489b2013-08-12 17:11:15 +053086#define CPSW_VERSION_4 0x190112
Richard Cochran549985e2012-11-14 09:07:56 +000087
88#define HOST_PORT_NUM 0
89#define SLIVER_SIZE 0x40
90
91#define CPSW1_HOST_PORT_OFFSET 0x028
92#define CPSW1_SLAVE_OFFSET 0x050
93#define CPSW1_SLAVE_SIZE 0x040
94#define CPSW1_CPDMA_OFFSET 0x100
95#define CPSW1_STATERAM_OFFSET 0x200
Mugunthan V Nd9718542013-07-23 15:38:17 +053096#define CPSW1_HW_STATS 0x400
Richard Cochran549985e2012-11-14 09:07:56 +000097#define CPSW1_CPTS_OFFSET 0x500
98#define CPSW1_ALE_OFFSET 0x600
99#define CPSW1_SLIVER_OFFSET 0x700
100
101#define CPSW2_HOST_PORT_OFFSET 0x108
102#define CPSW2_SLAVE_OFFSET 0x200
103#define CPSW2_SLAVE_SIZE 0x100
104#define CPSW2_CPDMA_OFFSET 0x800
Mugunthan V Nd9718542013-07-23 15:38:17 +0530105#define CPSW2_HW_STATS 0x900
Richard Cochran549985e2012-11-14 09:07:56 +0000106#define CPSW2_STATERAM_OFFSET 0xa00
107#define CPSW2_CPTS_OFFSET 0xc00
108#define CPSW2_ALE_OFFSET 0xd00
109#define CPSW2_SLIVER_OFFSET 0xd80
110#define CPSW2_BD_OFFSET 0x2000
111
Mugunthan V Ndf828592012-03-18 20:17:54 +0000112#define CPDMA_RXTHRESH 0x0c0
113#define CPDMA_RXFREE 0x0e0
114#define CPDMA_TXHDP 0x00
115#define CPDMA_RXHDP 0x20
116#define CPDMA_TXCP 0x40
117#define CPDMA_RXCP 0x60
118
Mugunthan V Ndf828592012-03-18 20:17:54 +0000119#define CPSW_POLL_WEIGHT 64
120#define CPSW_MIN_PACKET_SIZE 60
121#define CPSW_MAX_PACKET_SIZE (1500 + 14 + 4 + 4)
122
123#define RX_PRIORITY_MAPPING 0x76543210
124#define TX_PRIORITY_MAPPING 0x33221100
125#define CPDMA_TX_PRIORITY_MAP 0x76543210
126
Mugunthan V N3b72c2f2013-02-05 08:26:48 +0000127#define CPSW_VLAN_AWARE BIT(1)
128#define CPSW_ALE_VLAN_AWARE 1
129
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000130#define CPSW_FIFO_NORMAL_MODE (0 << 15)
131#define CPSW_FIFO_DUAL_MAC_MODE (1 << 15)
132#define CPSW_FIFO_RATE_LIMIT_MODE (2 << 15)
133
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000134#define CPSW_INTPACEEN (0x3f << 16)
135#define CPSW_INTPRESCALE_MASK (0x7FF << 0)
136#define CPSW_CMINTMAX_CNT 63
137#define CPSW_CMINTMIN_CNT 2
138#define CPSW_CMINTMAX_INTVL (1000 / CPSW_CMINTMIN_CNT)
139#define CPSW_CMINTMIN_INTVL ((1000 / CPSW_CMINTMAX_CNT) + 1)
140
Mugunthan V Ndf828592012-03-18 20:17:54 +0000141#define cpsw_enable_irq(priv) \
142 do { \
143 u32 i; \
144 for (i = 0; i < priv->num_irqs; i++) \
145 enable_irq(priv->irqs_table[i]); \
146 } while (0);
147#define cpsw_disable_irq(priv) \
148 do { \
149 u32 i; \
150 for (i = 0; i < priv->num_irqs; i++) \
151 disable_irq_nosync(priv->irqs_table[i]); \
152 } while (0);
153
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +0000154#define cpsw_slave_index(priv) \
155 ((priv->data.dual_emac) ? priv->emac_port : \
156 priv->data.active_slave)
157
Mugunthan V Ndf828592012-03-18 20:17:54 +0000158static int debug_level;
159module_param(debug_level, int, 0);
160MODULE_PARM_DESC(debug_level, "cpsw debug level (NETIF_MSG bits)");
161
162static int ale_ageout = 10;
163module_param(ale_ageout, int, 0);
164MODULE_PARM_DESC(ale_ageout, "cpsw ale ageout interval (seconds)");
165
166static int rx_packet_max = CPSW_MAX_PACKET_SIZE;
167module_param(rx_packet_max, int, 0);
168MODULE_PARM_DESC(rx_packet_max, "maximum receive packet size (bytes)");
169
Richard Cochran996a5c22012-10-29 08:45:12 +0000170struct cpsw_wr_regs {
Mugunthan V Ndf828592012-03-18 20:17:54 +0000171 u32 id_ver;
172 u32 soft_reset;
173 u32 control;
174 u32 int_control;
175 u32 rx_thresh_en;
176 u32 rx_en;
177 u32 tx_en;
178 u32 misc_en;
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000179 u32 mem_allign1[8];
180 u32 rx_thresh_stat;
181 u32 rx_stat;
182 u32 tx_stat;
183 u32 misc_stat;
184 u32 mem_allign2[8];
185 u32 rx_imax;
186 u32 tx_imax;
187
Mugunthan V Ndf828592012-03-18 20:17:54 +0000188};
189
Richard Cochran996a5c22012-10-29 08:45:12 +0000190struct cpsw_ss_regs {
Mugunthan V Ndf828592012-03-18 20:17:54 +0000191 u32 id_ver;
192 u32 control;
193 u32 soft_reset;
194 u32 stat_port_en;
195 u32 ptype;
Richard Cochranbd357af2012-10-29 08:45:13 +0000196 u32 soft_idle;
197 u32 thru_rate;
198 u32 gap_thresh;
199 u32 tx_start_wds;
200 u32 flow_control;
201 u32 vlan_ltype;
202 u32 ts_ltype;
203 u32 dlr_ltype;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000204};
205
Richard Cochran9750a3a2012-10-29 08:45:15 +0000206/* CPSW_PORT_V1 */
207#define CPSW1_MAX_BLKS 0x00 /* Maximum FIFO Blocks */
208#define CPSW1_BLK_CNT 0x04 /* FIFO Block Usage Count (Read Only) */
209#define CPSW1_TX_IN_CTL 0x08 /* Transmit FIFO Control */
210#define CPSW1_PORT_VLAN 0x0c /* VLAN Register */
211#define CPSW1_TX_PRI_MAP 0x10 /* Tx Header Priority to Switch Pri Mapping */
212#define CPSW1_TS_CTL 0x14 /* Time Sync Control */
213#define CPSW1_TS_SEQ_LTYPE 0x18 /* Time Sync Sequence ID Offset and Msg Type */
214#define CPSW1_TS_VLAN 0x1c /* Time Sync VLAN1 and VLAN2 */
215
216/* CPSW_PORT_V2 */
217#define CPSW2_CONTROL 0x00 /* Control Register */
218#define CPSW2_MAX_BLKS 0x08 /* Maximum FIFO Blocks */
219#define CPSW2_BLK_CNT 0x0c /* FIFO Block Usage Count (Read Only) */
220#define CPSW2_TX_IN_CTL 0x10 /* Transmit FIFO Control */
221#define CPSW2_PORT_VLAN 0x14 /* VLAN Register */
222#define CPSW2_TX_PRI_MAP 0x18 /* Tx Header Priority to Switch Pri Mapping */
223#define CPSW2_TS_SEQ_MTYPE 0x1c /* Time Sync Sequence ID Offset and Msg Type */
224
225/* CPSW_PORT_V1 and V2 */
226#define SA_LO 0x20 /* CPGMAC_SL Source Address Low */
227#define SA_HI 0x24 /* CPGMAC_SL Source Address High */
228#define SEND_PERCENT 0x28 /* Transmit Queue Send Percentages */
229
230/* CPSW_PORT_V2 only */
231#define RX_DSCP_PRI_MAP0 0x30 /* Rx DSCP Priority to Rx Packet Mapping */
232#define RX_DSCP_PRI_MAP1 0x34 /* Rx DSCP Priority to Rx Packet Mapping */
233#define RX_DSCP_PRI_MAP2 0x38 /* Rx DSCP Priority to Rx Packet Mapping */
234#define RX_DSCP_PRI_MAP3 0x3c /* Rx DSCP Priority to Rx Packet Mapping */
235#define RX_DSCP_PRI_MAP4 0x40 /* Rx DSCP Priority to Rx Packet Mapping */
236#define RX_DSCP_PRI_MAP5 0x44 /* Rx DSCP Priority to Rx Packet Mapping */
237#define RX_DSCP_PRI_MAP6 0x48 /* Rx DSCP Priority to Rx Packet Mapping */
238#define RX_DSCP_PRI_MAP7 0x4c /* Rx DSCP Priority to Rx Packet Mapping */
239
240/* Bit definitions for the CPSW2_CONTROL register */
241#define PASS_PRI_TAGGED (1<<24) /* Pass Priority Tagged */
242#define VLAN_LTYPE2_EN (1<<21) /* VLAN LTYPE 2 enable */
243#define VLAN_LTYPE1_EN (1<<20) /* VLAN LTYPE 1 enable */
244#define DSCP_PRI_EN (1<<16) /* DSCP Priority Enable */
245#define TS_320 (1<<14) /* Time Sync Dest Port 320 enable */
246#define TS_319 (1<<13) /* Time Sync Dest Port 319 enable */
247#define TS_132 (1<<12) /* Time Sync Dest IP Addr 132 enable */
248#define TS_131 (1<<11) /* Time Sync Dest IP Addr 131 enable */
249#define TS_130 (1<<10) /* Time Sync Dest IP Addr 130 enable */
250#define TS_129 (1<<9) /* Time Sync Dest IP Addr 129 enable */
251#define TS_BIT8 (1<<8) /* ts_ttl_nonzero? */
252#define TS_ANNEX_D_EN (1<<4) /* Time Sync Annex D enable */
253#define TS_LTYPE2_EN (1<<3) /* Time Sync LTYPE 2 enable */
254#define TS_LTYPE1_EN (1<<2) /* Time Sync LTYPE 1 enable */
255#define TS_TX_EN (1<<1) /* Time Sync Transmit Enable */
256#define TS_RX_EN (1<<0) /* Time Sync Receive Enable */
257
258#define CTRL_TS_BITS \
259 (TS_320 | TS_319 | TS_132 | TS_131 | TS_130 | TS_129 | TS_BIT8 | \
260 TS_ANNEX_D_EN | TS_LTYPE1_EN)
261
262#define CTRL_ALL_TS_MASK (CTRL_TS_BITS | TS_TX_EN | TS_RX_EN)
263#define CTRL_TX_TS_BITS (CTRL_TS_BITS | TS_TX_EN)
264#define CTRL_RX_TS_BITS (CTRL_TS_BITS | TS_RX_EN)
265
266/* Bit definitions for the CPSW2_TS_SEQ_MTYPE register */
267#define TS_SEQ_ID_OFFSET_SHIFT (16) /* Time Sync Sequence ID Offset */
268#define TS_SEQ_ID_OFFSET_MASK (0x3f)
269#define TS_MSG_TYPE_EN_SHIFT (0) /* Time Sync Message Type Enable */
270#define TS_MSG_TYPE_EN_MASK (0xffff)
271
272/* The PTP event messages - Sync, Delay_Req, Pdelay_Req, and Pdelay_Resp. */
273#define EVENT_MSG_BITS ((1<<0) | (1<<1) | (1<<2) | (1<<3))
Mugunthan V Ndf828592012-03-18 20:17:54 +0000274
Richard Cochran2e5b38a2012-10-29 08:45:20 +0000275/* Bit definitions for the CPSW1_TS_CTL register */
276#define CPSW_V1_TS_RX_EN BIT(0)
277#define CPSW_V1_TS_TX_EN BIT(4)
278#define CPSW_V1_MSG_TYPE_OFS 16
279
280/* Bit definitions for the CPSW1_TS_SEQ_LTYPE register */
281#define CPSW_V1_SEQ_ID_OFS_SHIFT 16
282
Mugunthan V Ndf828592012-03-18 20:17:54 +0000283struct cpsw_host_regs {
284 u32 max_blks;
285 u32 blk_cnt;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000286 u32 tx_in_ctl;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000287 u32 port_vlan;
288 u32 tx_pri_map;
289 u32 cpdma_tx_pri_map;
290 u32 cpdma_rx_chan_map;
291};
292
293struct cpsw_sliver_regs {
294 u32 id_ver;
295 u32 mac_control;
296 u32 mac_status;
297 u32 soft_reset;
298 u32 rx_maxlen;
299 u32 __reserved_0;
300 u32 rx_pause;
301 u32 tx_pause;
302 u32 __reserved_1;
303 u32 rx_pri_map;
304};
305
Mugunthan V Nd9718542013-07-23 15:38:17 +0530306struct cpsw_hw_stats {
307 u32 rxgoodframes;
308 u32 rxbroadcastframes;
309 u32 rxmulticastframes;
310 u32 rxpauseframes;
311 u32 rxcrcerrors;
312 u32 rxaligncodeerrors;
313 u32 rxoversizedframes;
314 u32 rxjabberframes;
315 u32 rxundersizedframes;
316 u32 rxfragments;
317 u32 __pad_0[2];
318 u32 rxoctets;
319 u32 txgoodframes;
320 u32 txbroadcastframes;
321 u32 txmulticastframes;
322 u32 txpauseframes;
323 u32 txdeferredframes;
324 u32 txcollisionframes;
325 u32 txsinglecollframes;
326 u32 txmultcollframes;
327 u32 txexcessivecollisions;
328 u32 txlatecollisions;
329 u32 txunderrun;
330 u32 txcarriersenseerrors;
331 u32 txoctets;
332 u32 octetframes64;
333 u32 octetframes65t127;
334 u32 octetframes128t255;
335 u32 octetframes256t511;
336 u32 octetframes512t1023;
337 u32 octetframes1024tup;
338 u32 netoctets;
339 u32 rxsofoverruns;
340 u32 rxmofoverruns;
341 u32 rxdmaoverruns;
342};
343
Mugunthan V Ndf828592012-03-18 20:17:54 +0000344struct cpsw_slave {
Richard Cochran9750a3a2012-10-29 08:45:15 +0000345 void __iomem *regs;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000346 struct cpsw_sliver_regs __iomem *sliver;
347 int slave_num;
348 u32 mac_control;
349 struct cpsw_slave_data *data;
350 struct phy_device *phy;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000351 struct net_device *ndev;
352 u32 port_vlan;
353 u32 open_stat;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000354};
355
Richard Cochran9750a3a2012-10-29 08:45:15 +0000356static inline u32 slave_read(struct cpsw_slave *slave, u32 offset)
357{
358 return __raw_readl(slave->regs + offset);
359}
360
361static inline void slave_write(struct cpsw_slave *slave, u32 val, u32 offset)
362{
363 __raw_writel(val, slave->regs + offset);
364}
365
Mugunthan V Ndf828592012-03-18 20:17:54 +0000366struct cpsw_priv {
367 spinlock_t lock;
368 struct platform_device *pdev;
369 struct net_device *ndev;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000370 struct napi_struct napi;
371 struct device *dev;
372 struct cpsw_platform_data data;
Richard Cochran996a5c22012-10-29 08:45:12 +0000373 struct cpsw_ss_regs __iomem *regs;
374 struct cpsw_wr_regs __iomem *wr_regs;
Mugunthan V Nd9718542013-07-23 15:38:17 +0530375 u8 __iomem *hw_stats;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000376 struct cpsw_host_regs __iomem *host_port_regs;
377 u32 msg_enable;
Richard Cochrane90cfac2012-10-29 08:45:14 +0000378 u32 version;
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000379 u32 coal_intvl;
380 u32 bus_freq_mhz;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000381 struct net_device_stats stats;
382 int rx_packet_max;
383 int host_port;
384 struct clk *clk;
385 u8 mac_addr[ETH_ALEN];
386 struct cpsw_slave *slaves;
387 struct cpdma_ctlr *dma;
388 struct cpdma_chan *txch, *rxch;
389 struct cpsw_ale *ale;
390 /* snapshot of IRQ numbers */
391 u32 irqs_table[4];
392 u32 num_irqs;
Sebastian Siewiora11fbba2013-04-24 08:48:25 +0000393 bool irq_enabled;
Mugunthan V N9232b162013-02-11 09:52:19 +0000394 struct cpts *cpts;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000395 u32 emac_port;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000396};
397
Mugunthan V Nd9718542013-07-23 15:38:17 +0530398struct cpsw_stats {
399 char stat_string[ETH_GSTRING_LEN];
400 int type;
401 int sizeof_stat;
402 int stat_offset;
403};
404
405enum {
406 CPSW_STATS,
407 CPDMA_RX_STATS,
408 CPDMA_TX_STATS,
409};
410
411#define CPSW_STAT(m) CPSW_STATS, \
412 sizeof(((struct cpsw_hw_stats *)0)->m), \
413 offsetof(struct cpsw_hw_stats, m)
414#define CPDMA_RX_STAT(m) CPDMA_RX_STATS, \
415 sizeof(((struct cpdma_chan_stats *)0)->m), \
416 offsetof(struct cpdma_chan_stats, m)
417#define CPDMA_TX_STAT(m) CPDMA_TX_STATS, \
418 sizeof(((struct cpdma_chan_stats *)0)->m), \
419 offsetof(struct cpdma_chan_stats, m)
420
421static const struct cpsw_stats cpsw_gstrings_stats[] = {
422 { "Good Rx Frames", CPSW_STAT(rxgoodframes) },
423 { "Broadcast Rx Frames", CPSW_STAT(rxbroadcastframes) },
424 { "Multicast Rx Frames", CPSW_STAT(rxmulticastframes) },
425 { "Pause Rx Frames", CPSW_STAT(rxpauseframes) },
426 { "Rx CRC Errors", CPSW_STAT(rxcrcerrors) },
427 { "Rx Align/Code Errors", CPSW_STAT(rxaligncodeerrors) },
428 { "Oversize Rx Frames", CPSW_STAT(rxoversizedframes) },
429 { "Rx Jabbers", CPSW_STAT(rxjabberframes) },
430 { "Undersize (Short) Rx Frames", CPSW_STAT(rxundersizedframes) },
431 { "Rx Fragments", CPSW_STAT(rxfragments) },
432 { "Rx Octets", CPSW_STAT(rxoctets) },
433 { "Good Tx Frames", CPSW_STAT(txgoodframes) },
434 { "Broadcast Tx Frames", CPSW_STAT(txbroadcastframes) },
435 { "Multicast Tx Frames", CPSW_STAT(txmulticastframes) },
436 { "Pause Tx Frames", CPSW_STAT(txpauseframes) },
437 { "Deferred Tx Frames", CPSW_STAT(txdeferredframes) },
438 { "Collisions", CPSW_STAT(txcollisionframes) },
439 { "Single Collision Tx Frames", CPSW_STAT(txsinglecollframes) },
440 { "Multiple Collision Tx Frames", CPSW_STAT(txmultcollframes) },
441 { "Excessive Collisions", CPSW_STAT(txexcessivecollisions) },
442 { "Late Collisions", CPSW_STAT(txlatecollisions) },
443 { "Tx Underrun", CPSW_STAT(txunderrun) },
444 { "Carrier Sense Errors", CPSW_STAT(txcarriersenseerrors) },
445 { "Tx Octets", CPSW_STAT(txoctets) },
446 { "Rx + Tx 64 Octet Frames", CPSW_STAT(octetframes64) },
447 { "Rx + Tx 65-127 Octet Frames", CPSW_STAT(octetframes65t127) },
448 { "Rx + Tx 128-255 Octet Frames", CPSW_STAT(octetframes128t255) },
449 { "Rx + Tx 256-511 Octet Frames", CPSW_STAT(octetframes256t511) },
450 { "Rx + Tx 512-1023 Octet Frames", CPSW_STAT(octetframes512t1023) },
451 { "Rx + Tx 1024-Up Octet Frames", CPSW_STAT(octetframes1024tup) },
452 { "Net Octets", CPSW_STAT(netoctets) },
453 { "Rx Start of Frame Overruns", CPSW_STAT(rxsofoverruns) },
454 { "Rx Middle of Frame Overruns", CPSW_STAT(rxmofoverruns) },
455 { "Rx DMA Overruns", CPSW_STAT(rxdmaoverruns) },
456 { "Rx DMA chan: head_enqueue", CPDMA_RX_STAT(head_enqueue) },
457 { "Rx DMA chan: tail_enqueue", CPDMA_RX_STAT(tail_enqueue) },
458 { "Rx DMA chan: pad_enqueue", CPDMA_RX_STAT(pad_enqueue) },
459 { "Rx DMA chan: misqueued", CPDMA_RX_STAT(misqueued) },
460 { "Rx DMA chan: desc_alloc_fail", CPDMA_RX_STAT(desc_alloc_fail) },
461 { "Rx DMA chan: pad_alloc_fail", CPDMA_RX_STAT(pad_alloc_fail) },
462 { "Rx DMA chan: runt_receive_buf", CPDMA_RX_STAT(runt_receive_buff) },
463 { "Rx DMA chan: runt_transmit_buf", CPDMA_RX_STAT(runt_transmit_buff) },
464 { "Rx DMA chan: empty_dequeue", CPDMA_RX_STAT(empty_dequeue) },
465 { "Rx DMA chan: busy_dequeue", CPDMA_RX_STAT(busy_dequeue) },
466 { "Rx DMA chan: good_dequeue", CPDMA_RX_STAT(good_dequeue) },
467 { "Rx DMA chan: requeue", CPDMA_RX_STAT(requeue) },
468 { "Rx DMA chan: teardown_dequeue", CPDMA_RX_STAT(teardown_dequeue) },
469 { "Tx DMA chan: head_enqueue", CPDMA_TX_STAT(head_enqueue) },
470 { "Tx DMA chan: tail_enqueue", CPDMA_TX_STAT(tail_enqueue) },
471 { "Tx DMA chan: pad_enqueue", CPDMA_TX_STAT(pad_enqueue) },
472 { "Tx DMA chan: misqueued", CPDMA_TX_STAT(misqueued) },
473 { "Tx DMA chan: desc_alloc_fail", CPDMA_TX_STAT(desc_alloc_fail) },
474 { "Tx DMA chan: pad_alloc_fail", CPDMA_TX_STAT(pad_alloc_fail) },
475 { "Tx DMA chan: runt_receive_buf", CPDMA_TX_STAT(runt_receive_buff) },
476 { "Tx DMA chan: runt_transmit_buf", CPDMA_TX_STAT(runt_transmit_buff) },
477 { "Tx DMA chan: empty_dequeue", CPDMA_TX_STAT(empty_dequeue) },
478 { "Tx DMA chan: busy_dequeue", CPDMA_TX_STAT(busy_dequeue) },
479 { "Tx DMA chan: good_dequeue", CPDMA_TX_STAT(good_dequeue) },
480 { "Tx DMA chan: requeue", CPDMA_TX_STAT(requeue) },
481 { "Tx DMA chan: teardown_dequeue", CPDMA_TX_STAT(teardown_dequeue) },
482};
483
484#define CPSW_STATS_LEN ARRAY_SIZE(cpsw_gstrings_stats)
485
Mugunthan V Ndf828592012-03-18 20:17:54 +0000486#define napi_to_priv(napi) container_of(napi, struct cpsw_priv, napi)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000487#define for_each_slave(priv, func, arg...) \
488 do { \
Sebastian Siewior6e6ceae2013-04-24 08:48:24 +0000489 struct cpsw_slave *slave; \
490 int n; \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000491 if (priv->data.dual_emac) \
492 (func)((priv)->slaves + priv->emac_port, ##arg);\
493 else \
Sebastian Siewior6e6ceae2013-04-24 08:48:24 +0000494 for (n = (priv)->data.slaves, \
495 slave = (priv)->slaves; \
496 n; n--) \
497 (func)(slave++, ##arg); \
Mugunthan V Ndf828592012-03-18 20:17:54 +0000498 } while (0)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000499#define cpsw_get_slave_ndev(priv, __slave_no__) \
500 (priv->slaves[__slave_no__].ndev)
501#define cpsw_get_slave_priv(priv, __slave_no__) \
502 ((priv->slaves[__slave_no__].ndev) ? \
503 netdev_priv(priv->slaves[__slave_no__].ndev) : NULL) \
504
505#define cpsw_dual_emac_src_port_detect(status, priv, ndev, skb) \
506 do { \
507 if (!priv->data.dual_emac) \
508 break; \
509 if (CPDMA_RX_SOURCE_PORT(status) == 1) { \
510 ndev = cpsw_get_slave_ndev(priv, 0); \
511 priv = netdev_priv(ndev); \
512 skb->dev = ndev; \
513 } else if (CPDMA_RX_SOURCE_PORT(status) == 2) { \
514 ndev = cpsw_get_slave_ndev(priv, 1); \
515 priv = netdev_priv(ndev); \
516 skb->dev = ndev; \
517 } \
518 } while (0)
519#define cpsw_add_mcast(priv, addr) \
520 do { \
521 if (priv->data.dual_emac) { \
522 struct cpsw_slave *slave = priv->slaves + \
523 priv->emac_port; \
524 int slave_port = cpsw_get_slave_port(priv, \
525 slave->slave_num); \
526 cpsw_ale_add_mcast(priv->ale, addr, \
527 1 << slave_port | 1 << priv->host_port, \
528 ALE_VLAN, slave->port_vlan, 0); \
529 } else { \
530 cpsw_ale_add_mcast(priv->ale, addr, \
531 ALE_ALL_PORTS << priv->host_port, \
532 0, 0, 0); \
533 } \
534 } while (0)
535
536static inline int cpsw_get_slave_port(struct cpsw_priv *priv, u32 slave_num)
537{
538 if (priv->host_port == 0)
539 return slave_num + 1;
540 else
541 return slave_num;
542}
Mugunthan V Ndf828592012-03-18 20:17:54 +0000543
Mugunthan V N5c50a852012-10-29 08:45:11 +0000544static void cpsw_ndo_set_rx_mode(struct net_device *ndev)
545{
546 struct cpsw_priv *priv = netdev_priv(ndev);
547
548 if (ndev->flags & IFF_PROMISC) {
549 /* Enable promiscuous mode */
550 dev_err(priv->dev, "Ignoring Promiscuous mode\n");
551 return;
552 }
553
554 /* Clear all mcast from ALE */
555 cpsw_ale_flush_multicast(priv->ale, ALE_ALL_PORTS << priv->host_port);
556
557 if (!netdev_mc_empty(ndev)) {
558 struct netdev_hw_addr *ha;
559
560 /* program multicast address list into ALE register */
561 netdev_for_each_mc_addr(ha, ndev) {
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000562 cpsw_add_mcast(priv, (u8 *)ha->addr);
Mugunthan V N5c50a852012-10-29 08:45:11 +0000563 }
564 }
565}
566
Mugunthan V Ndf828592012-03-18 20:17:54 +0000567static void cpsw_intr_enable(struct cpsw_priv *priv)
568{
Richard Cochran996a5c22012-10-29 08:45:12 +0000569 __raw_writel(0xFF, &priv->wr_regs->tx_en);
570 __raw_writel(0xFF, &priv->wr_regs->rx_en);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000571
572 cpdma_ctlr_int_ctrl(priv->dma, true);
573 return;
574}
575
576static void cpsw_intr_disable(struct cpsw_priv *priv)
577{
Richard Cochran996a5c22012-10-29 08:45:12 +0000578 __raw_writel(0, &priv->wr_regs->tx_en);
579 __raw_writel(0, &priv->wr_regs->rx_en);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000580
581 cpdma_ctlr_int_ctrl(priv->dma, false);
582 return;
583}
584
585void cpsw_tx_handler(void *token, int len, int status)
586{
587 struct sk_buff *skb = token;
588 struct net_device *ndev = skb->dev;
589 struct cpsw_priv *priv = netdev_priv(ndev);
590
Mugunthan V Nfae50822013-01-17 06:31:34 +0000591 /* Check whether the queue is stopped due to stalled tx dma, if the
592 * queue is stopped then start the queue as we have free desc for tx
593 */
Mugunthan V Ndf828592012-03-18 20:17:54 +0000594 if (unlikely(netif_queue_stopped(ndev)))
Mugunthan V Nb56d6b3f2013-03-27 04:41:59 +0000595 netif_wake_queue(ndev);
Mugunthan V N9232b162013-02-11 09:52:19 +0000596 cpts_tx_timestamp(priv->cpts, skb);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000597 priv->stats.tx_packets++;
598 priv->stats.tx_bytes += len;
599 dev_kfree_skb_any(skb);
600}
601
602void cpsw_rx_handler(void *token, int len, int status)
603{
604 struct sk_buff *skb = token;
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000605 struct sk_buff *new_skb;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000606 struct net_device *ndev = skb->dev;
607 struct cpsw_priv *priv = netdev_priv(ndev);
608 int ret = 0;
609
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000610 cpsw_dual_emac_src_port_detect(status, priv, ndev, skb);
611
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000612 if (unlikely(status < 0)) {
613 /* the interface is going down, skbs are purged */
Mugunthan V Ndf828592012-03-18 20:17:54 +0000614 dev_kfree_skb_any(skb);
615 return;
616 }
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000617
618 new_skb = netdev_alloc_skb_ip_align(ndev, priv->rx_packet_max);
619 if (new_skb) {
Mugunthan V Ndf828592012-03-18 20:17:54 +0000620 skb_put(skb, len);
Mugunthan V N9232b162013-02-11 09:52:19 +0000621 cpts_rx_timestamp(priv->cpts, skb);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000622 skb->protocol = eth_type_trans(skb, ndev);
623 netif_receive_skb(skb);
624 priv->stats.rx_bytes += len;
625 priv->stats.rx_packets++;
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000626 } else {
627 priv->stats.rx_dropped++;
628 new_skb = skb;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000629 }
630
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000631 ret = cpdma_chan_submit(priv->rxch, new_skb, new_skb->data,
632 skb_tailroom(new_skb), 0);
633 if (WARN_ON(ret < 0))
634 dev_kfree_skb_any(new_skb);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000635}
636
637static irqreturn_t cpsw_interrupt(int irq, void *dev_id)
638{
639 struct cpsw_priv *priv = dev_id;
Sebastian Siewiorfd51cf12013-04-23 07:31:37 +0000640
641 cpsw_intr_disable(priv);
Sebastian Siewiora11fbba2013-04-24 08:48:25 +0000642 if (priv->irq_enabled == true) {
643 cpsw_disable_irq(priv);
644 priv->irq_enabled = false;
645 }
Sebastian Siewiorfd51cf12013-04-23 07:31:37 +0000646
647 if (netif_running(priv->ndev)) {
Mugunthan V Ndf828592012-03-18 20:17:54 +0000648 napi_schedule(&priv->napi);
Sebastian Siewiorfd51cf12013-04-23 07:31:37 +0000649 return IRQ_HANDLED;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000650 }
Sebastian Siewiorfd51cf12013-04-23 07:31:37 +0000651
652 priv = cpsw_get_slave_priv(priv, 1);
653 if (!priv)
654 return IRQ_NONE;
655
656 if (netif_running(priv->ndev)) {
657 napi_schedule(&priv->napi);
658 return IRQ_HANDLED;
659 }
660 return IRQ_NONE;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000661}
662
Mugunthan V Ndf828592012-03-18 20:17:54 +0000663static int cpsw_poll(struct napi_struct *napi, int budget)
664{
665 struct cpsw_priv *priv = napi_to_priv(napi);
666 int num_tx, num_rx;
667
668 num_tx = cpdma_chan_process(priv->txch, 128);
Mugunthan V N510a1e722013-02-17 22:19:20 +0000669 if (num_tx)
670 cpdma_ctlr_eoi(priv->dma, CPDMA_EOI_TX);
671
Mugunthan V Ndf828592012-03-18 20:17:54 +0000672 num_rx = cpdma_chan_process(priv->rxch, budget);
Mugunthan V N510a1e722013-02-17 22:19:20 +0000673 if (num_rx < budget) {
Sebastian Siewiora11fbba2013-04-24 08:48:25 +0000674 struct cpsw_priv *prim_cpsw;
675
Mugunthan V N510a1e722013-02-17 22:19:20 +0000676 napi_complete(napi);
677 cpsw_intr_enable(priv);
678 cpdma_ctlr_eoi(priv->dma, CPDMA_EOI_RX);
Sebastian Siewiora11fbba2013-04-24 08:48:25 +0000679 prim_cpsw = cpsw_get_slave_priv(priv, 0);
680 if (prim_cpsw->irq_enabled == false) {
Sebastian Siewiora11fbba2013-04-24 08:48:25 +0000681 prim_cpsw->irq_enabled = true;
Mugunthan V Naf5c6df2013-05-02 01:52:11 +0000682 cpsw_enable_irq(priv);
Sebastian Siewiora11fbba2013-04-24 08:48:25 +0000683 }
Mugunthan V N510a1e722013-02-17 22:19:20 +0000684 }
Mugunthan V Ndf828592012-03-18 20:17:54 +0000685
686 if (num_rx || num_tx)
687 cpsw_dbg(priv, intr, "poll %d rx, %d tx pkts\n",
688 num_rx, num_tx);
689
Mugunthan V Ndf828592012-03-18 20:17:54 +0000690 return num_rx;
691}
692
693static inline void soft_reset(const char *module, void __iomem *reg)
694{
695 unsigned long timeout = jiffies + HZ;
696
697 __raw_writel(1, reg);
698 do {
699 cpu_relax();
700 } while ((__raw_readl(reg) & 1) && time_after(timeout, jiffies));
701
702 WARN(__raw_readl(reg) & 1, "failed to soft-reset %s\n", module);
703}
704
705#define mac_hi(mac) (((mac)[0] << 0) | ((mac)[1] << 8) | \
706 ((mac)[2] << 16) | ((mac)[3] << 24))
707#define mac_lo(mac) (((mac)[4] << 0) | ((mac)[5] << 8))
708
709static void cpsw_set_slave_mac(struct cpsw_slave *slave,
710 struct cpsw_priv *priv)
711{
Richard Cochran9750a3a2012-10-29 08:45:15 +0000712 slave_write(slave, mac_hi(priv->mac_addr), SA_HI);
713 slave_write(slave, mac_lo(priv->mac_addr), SA_LO);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000714}
715
716static void _cpsw_adjust_link(struct cpsw_slave *slave,
717 struct cpsw_priv *priv, bool *link)
718{
719 struct phy_device *phy = slave->phy;
720 u32 mac_control = 0;
721 u32 slave_port;
722
723 if (!phy)
724 return;
725
726 slave_port = cpsw_get_slave_port(priv, slave->slave_num);
727
728 if (phy->link) {
729 mac_control = priv->data.mac_control;
730
731 /* enable forwarding */
732 cpsw_ale_control_set(priv->ale, slave_port,
733 ALE_PORT_STATE, ALE_PORT_STATE_FORWARD);
734
735 if (phy->speed == 1000)
736 mac_control |= BIT(7); /* GIGABITEN */
737 if (phy->duplex)
738 mac_control |= BIT(0); /* FULLDUPLEXEN */
Daniel Mack342b7b72012-09-27 09:19:34 +0000739
740 /* set speed_in input in case RMII mode is used in 100Mbps */
741 if (phy->speed == 100)
742 mac_control |= BIT(15);
743
Mugunthan V Ndf828592012-03-18 20:17:54 +0000744 *link = true;
745 } else {
746 mac_control = 0;
747 /* disable forwarding */
748 cpsw_ale_control_set(priv->ale, slave_port,
749 ALE_PORT_STATE, ALE_PORT_STATE_DISABLE);
750 }
751
752 if (mac_control != slave->mac_control) {
753 phy_print_status(phy);
754 __raw_writel(mac_control, &slave->sliver->mac_control);
755 }
756
757 slave->mac_control = mac_control;
758}
759
760static void cpsw_adjust_link(struct net_device *ndev)
761{
762 struct cpsw_priv *priv = netdev_priv(ndev);
763 bool link = false;
764
765 for_each_slave(priv, _cpsw_adjust_link, priv, &link);
766
767 if (link) {
768 netif_carrier_on(ndev);
769 if (netif_running(ndev))
770 netif_wake_queue(ndev);
771 } else {
772 netif_carrier_off(ndev);
773 netif_stop_queue(ndev);
774 }
775}
776
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000777static int cpsw_get_coalesce(struct net_device *ndev,
778 struct ethtool_coalesce *coal)
779{
780 struct cpsw_priv *priv = netdev_priv(ndev);
781
782 coal->rx_coalesce_usecs = priv->coal_intvl;
783 return 0;
784}
785
786static int cpsw_set_coalesce(struct net_device *ndev,
787 struct ethtool_coalesce *coal)
788{
789 struct cpsw_priv *priv = netdev_priv(ndev);
790 u32 int_ctrl;
791 u32 num_interrupts = 0;
792 u32 prescale = 0;
793 u32 addnl_dvdr = 1;
794 u32 coal_intvl = 0;
795
796 if (!coal->rx_coalesce_usecs)
797 return -EINVAL;
798
799 coal_intvl = coal->rx_coalesce_usecs;
800
801 int_ctrl = readl(&priv->wr_regs->int_control);
802 prescale = priv->bus_freq_mhz * 4;
803
804 if (coal_intvl < CPSW_CMINTMIN_INTVL)
805 coal_intvl = CPSW_CMINTMIN_INTVL;
806
807 if (coal_intvl > CPSW_CMINTMAX_INTVL) {
808 /* Interrupt pacer works with 4us Pulse, we can
809 * throttle further by dilating the 4us pulse.
810 */
811 addnl_dvdr = CPSW_INTPRESCALE_MASK / prescale;
812
813 if (addnl_dvdr > 1) {
814 prescale *= addnl_dvdr;
815 if (coal_intvl > (CPSW_CMINTMAX_INTVL * addnl_dvdr))
816 coal_intvl = (CPSW_CMINTMAX_INTVL
817 * addnl_dvdr);
818 } else {
819 addnl_dvdr = 1;
820 coal_intvl = CPSW_CMINTMAX_INTVL;
821 }
822 }
823
824 num_interrupts = (1000 * addnl_dvdr) / coal_intvl;
825 writel(num_interrupts, &priv->wr_regs->rx_imax);
826 writel(num_interrupts, &priv->wr_regs->tx_imax);
827
828 int_ctrl |= CPSW_INTPACEEN;
829 int_ctrl &= (~CPSW_INTPRESCALE_MASK);
830 int_ctrl |= (prescale & CPSW_INTPRESCALE_MASK);
831 writel(int_ctrl, &priv->wr_regs->int_control);
832
833 cpsw_notice(priv, timer, "Set coalesce to %d usecs.\n", coal_intvl);
834 if (priv->data.dual_emac) {
835 int i;
836
837 for (i = 0; i < priv->data.slaves; i++) {
838 priv = netdev_priv(priv->slaves[i].ndev);
839 priv->coal_intvl = coal_intvl;
840 }
841 } else {
842 priv->coal_intvl = coal_intvl;
843 }
844
845 return 0;
846}
847
Mugunthan V Nd9718542013-07-23 15:38:17 +0530848static int cpsw_get_sset_count(struct net_device *ndev, int sset)
849{
850 switch (sset) {
851 case ETH_SS_STATS:
852 return CPSW_STATS_LEN;
853 default:
854 return -EOPNOTSUPP;
855 }
856}
857
858static void cpsw_get_strings(struct net_device *ndev, u32 stringset, u8 *data)
859{
860 u8 *p = data;
861 int i;
862
863 switch (stringset) {
864 case ETH_SS_STATS:
865 for (i = 0; i < CPSW_STATS_LEN; i++) {
866 memcpy(p, cpsw_gstrings_stats[i].stat_string,
867 ETH_GSTRING_LEN);
868 p += ETH_GSTRING_LEN;
869 }
870 break;
871 }
872}
873
874static void cpsw_get_ethtool_stats(struct net_device *ndev,
875 struct ethtool_stats *stats, u64 *data)
876{
877 struct cpsw_priv *priv = netdev_priv(ndev);
878 struct cpdma_chan_stats rx_stats;
879 struct cpdma_chan_stats tx_stats;
880 u32 val;
881 u8 *p;
882 int i;
883
884 /* Collect Davinci CPDMA stats for Rx and Tx Channel */
885 cpdma_chan_get_stats(priv->rxch, &rx_stats);
886 cpdma_chan_get_stats(priv->txch, &tx_stats);
887
888 for (i = 0; i < CPSW_STATS_LEN; i++) {
889 switch (cpsw_gstrings_stats[i].type) {
890 case CPSW_STATS:
891 val = readl(priv->hw_stats +
892 cpsw_gstrings_stats[i].stat_offset);
893 data[i] = val;
894 break;
895
896 case CPDMA_RX_STATS:
897 p = (u8 *)&rx_stats +
898 cpsw_gstrings_stats[i].stat_offset;
899 data[i] = *(u32 *)p;
900 break;
901
902 case CPDMA_TX_STATS:
903 p = (u8 *)&tx_stats +
904 cpsw_gstrings_stats[i].stat_offset;
905 data[i] = *(u32 *)p;
906 break;
907 }
908 }
909}
910
Mugunthan V Ndf828592012-03-18 20:17:54 +0000911static inline int __show_stat(char *buf, int maxlen, const char *name, u32 val)
912{
913 static char *leader = "........................................";
914
915 if (!val)
916 return 0;
917 else
918 return snprintf(buf, maxlen, "%s %s %10d\n", name,
919 leader + strlen(name), val);
920}
921
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000922static int cpsw_common_res_usage_state(struct cpsw_priv *priv)
923{
924 u32 i;
925 u32 usage_count = 0;
926
927 if (!priv->data.dual_emac)
928 return 0;
929
930 for (i = 0; i < priv->data.slaves; i++)
931 if (priv->slaves[i].open_stat)
932 usage_count++;
933
934 return usage_count;
935}
936
937static inline int cpsw_tx_packet_submit(struct net_device *ndev,
938 struct cpsw_priv *priv, struct sk_buff *skb)
939{
940 if (!priv->data.dual_emac)
941 return cpdma_chan_submit(priv->txch, skb, skb->data,
Sebastian Siewioraef614e2013-04-23 07:31:38 +0000942 skb->len, 0);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000943
944 if (ndev == cpsw_get_slave_ndev(priv, 0))
945 return cpdma_chan_submit(priv->txch, skb, skb->data,
Sebastian Siewioraef614e2013-04-23 07:31:38 +0000946 skb->len, 1);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000947 else
948 return cpdma_chan_submit(priv->txch, skb, skb->data,
Sebastian Siewioraef614e2013-04-23 07:31:38 +0000949 skb->len, 2);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000950}
951
952static inline void cpsw_add_dual_emac_def_ale_entries(
953 struct cpsw_priv *priv, struct cpsw_slave *slave,
954 u32 slave_port)
955{
956 u32 port_mask = 1 << slave_port | 1 << priv->host_port;
957
958 if (priv->version == CPSW_VERSION_1)
959 slave_write(slave, slave->port_vlan, CPSW1_PORT_VLAN);
960 else
961 slave_write(slave, slave->port_vlan, CPSW2_PORT_VLAN);
962 cpsw_ale_add_vlan(priv->ale, slave->port_vlan, port_mask,
963 port_mask, port_mask, 0);
964 cpsw_ale_add_mcast(priv->ale, priv->ndev->broadcast,
965 port_mask, ALE_VLAN, slave->port_vlan, 0);
966 cpsw_ale_add_ucast(priv->ale, priv->mac_addr,
967 priv->host_port, ALE_VLAN, slave->port_vlan);
968}
969
Daniel Mack1e7a2e22013-11-15 08:29:16 +0100970static void soft_reset_slave(struct cpsw_slave *slave)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000971{
972 char name[32];
Daniel Mack1e7a2e22013-11-15 08:29:16 +0100973
974 snprintf(name, sizeof(name), "slave-%d", slave->slave_num);
975 soft_reset(name, &slave->sliver->soft_reset);
976}
977
978static void cpsw_slave_open(struct cpsw_slave *slave, struct cpsw_priv *priv)
979{
Mugunthan V Ndf828592012-03-18 20:17:54 +0000980 u32 slave_port;
981
Daniel Mack1e7a2e22013-11-15 08:29:16 +0100982 soft_reset_slave(slave);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000983
984 /* setup priority mapping */
985 __raw_writel(RX_PRIORITY_MAPPING, &slave->sliver->rx_pri_map);
Richard Cochran9750a3a2012-10-29 08:45:15 +0000986
987 switch (priv->version) {
988 case CPSW_VERSION_1:
989 slave_write(slave, TX_PRIORITY_MAPPING, CPSW1_TX_PRI_MAP);
990 break;
991 case CPSW_VERSION_2:
Mugunthan V Nc193f362013-08-05 17:30:05 +0530992 case CPSW_VERSION_3:
Mugunthan V N926489b2013-08-12 17:11:15 +0530993 case CPSW_VERSION_4:
Richard Cochran9750a3a2012-10-29 08:45:15 +0000994 slave_write(slave, TX_PRIORITY_MAPPING, CPSW2_TX_PRI_MAP);
995 break;
996 }
Mugunthan V Ndf828592012-03-18 20:17:54 +0000997
998 /* setup max packet size, and mac address */
999 __raw_writel(priv->rx_packet_max, &slave->sliver->rx_maxlen);
1000 cpsw_set_slave_mac(slave, priv);
1001
1002 slave->mac_control = 0; /* no link yet */
1003
1004 slave_port = cpsw_get_slave_port(priv, slave->slave_num);
1005
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001006 if (priv->data.dual_emac)
1007 cpsw_add_dual_emac_def_ale_entries(priv, slave, slave_port);
1008 else
1009 cpsw_ale_add_mcast(priv->ale, priv->ndev->broadcast,
1010 1 << slave_port, 0, 0, ALE_MCAST_FWD_2);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001011
1012 slave->phy = phy_connect(priv->ndev, slave->data->phy_id,
Florian Fainellif9a8f832013-01-14 00:52:52 +00001013 &cpsw_adjust_link, slave->data->phy_if);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001014 if (IS_ERR(slave->phy)) {
1015 dev_err(priv->dev, "phy %s not found on slave %d\n",
1016 slave->data->phy_id, slave->slave_num);
1017 slave->phy = NULL;
1018 } else {
1019 dev_info(priv->dev, "phy found : id is : 0x%x\n",
1020 slave->phy->phy_id);
1021 phy_start(slave->phy);
Mugunthan V N388367a2013-09-21 00:50:40 +05301022
1023 /* Configure GMII_SEL register */
1024 cpsw_phy_sel(&priv->pdev->dev, slave->phy->interface,
1025 slave->slave_num);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001026 }
1027}
1028
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001029static inline void cpsw_add_default_vlan(struct cpsw_priv *priv)
1030{
1031 const int vlan = priv->data.default_vlan;
1032 const int port = priv->host_port;
1033 u32 reg;
1034 int i;
1035
1036 reg = (priv->version == CPSW_VERSION_1) ? CPSW1_PORT_VLAN :
1037 CPSW2_PORT_VLAN;
1038
1039 writel(vlan, &priv->host_port_regs->port_vlan);
1040
Daniel Mack0237c112013-02-26 04:06:20 +00001041 for (i = 0; i < priv->data.slaves; i++)
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001042 slave_write(priv->slaves + i, vlan, reg);
1043
1044 cpsw_ale_add_vlan(priv->ale, vlan, ALE_ALL_PORTS << port,
1045 ALE_ALL_PORTS << port, ALE_ALL_PORTS << port,
1046 (ALE_PORT_1 | ALE_PORT_2) << port);
1047}
1048
Mugunthan V Ndf828592012-03-18 20:17:54 +00001049static void cpsw_init_host_port(struct cpsw_priv *priv)
1050{
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001051 u32 control_reg;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001052 u32 fifo_mode;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001053
Mugunthan V Ndf828592012-03-18 20:17:54 +00001054 /* soft reset the controller and initialize ale */
1055 soft_reset("cpsw", &priv->regs->soft_reset);
1056 cpsw_ale_start(priv->ale);
1057
1058 /* switch to vlan unaware mode */
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001059 cpsw_ale_control_set(priv->ale, priv->host_port, ALE_VLAN_AWARE,
1060 CPSW_ALE_VLAN_AWARE);
1061 control_reg = readl(&priv->regs->control);
1062 control_reg |= CPSW_VLAN_AWARE;
1063 writel(control_reg, &priv->regs->control);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001064 fifo_mode = (priv->data.dual_emac) ? CPSW_FIFO_DUAL_MAC_MODE :
1065 CPSW_FIFO_NORMAL_MODE;
1066 writel(fifo_mode, &priv->host_port_regs->tx_in_ctl);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001067
1068 /* setup host port priority mapping */
1069 __raw_writel(CPDMA_TX_PRIORITY_MAP,
1070 &priv->host_port_regs->cpdma_tx_pri_map);
1071 __raw_writel(0, &priv->host_port_regs->cpdma_rx_chan_map);
1072
1073 cpsw_ale_control_set(priv->ale, priv->host_port,
1074 ALE_PORT_STATE, ALE_PORT_STATE_FORWARD);
1075
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001076 if (!priv->data.dual_emac) {
1077 cpsw_ale_add_ucast(priv->ale, priv->mac_addr, priv->host_port,
1078 0, 0);
1079 cpsw_ale_add_mcast(priv->ale, priv->ndev->broadcast,
1080 1 << priv->host_port, 0, 0, ALE_MCAST_FWD_2);
1081 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001082}
1083
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001084static void cpsw_slave_stop(struct cpsw_slave *slave, struct cpsw_priv *priv)
1085{
1086 if (!slave->phy)
1087 return;
1088 phy_stop(slave->phy);
1089 phy_disconnect(slave->phy);
1090 slave->phy = NULL;
1091}
1092
Mugunthan V Ndf828592012-03-18 20:17:54 +00001093static int cpsw_ndo_open(struct net_device *ndev)
1094{
1095 struct cpsw_priv *priv = netdev_priv(ndev);
Sebastian Siewiora11fbba2013-04-24 08:48:25 +00001096 struct cpsw_priv *prim_cpsw;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001097 int i, ret;
1098 u32 reg;
1099
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001100 if (!cpsw_common_res_usage_state(priv))
1101 cpsw_intr_disable(priv);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001102 netif_carrier_off(ndev);
1103
Mugunthan V Nf150bd72012-07-17 08:09:50 +00001104 pm_runtime_get_sync(&priv->pdev->dev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001105
Richard Cochran549985e2012-11-14 09:07:56 +00001106 reg = priv->version;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001107
1108 dev_info(priv->dev, "initializing cpsw version %d.%d (%d)\n",
1109 CPSW_MAJOR_VERSION(reg), CPSW_MINOR_VERSION(reg),
1110 CPSW_RTL_VERSION(reg));
1111
1112 /* initialize host and slave ports */
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001113 if (!cpsw_common_res_usage_state(priv))
1114 cpsw_init_host_port(priv);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001115 for_each_slave(priv, cpsw_slave_open, priv);
1116
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001117 /* Add default VLAN */
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001118 if (!priv->data.dual_emac)
1119 cpsw_add_default_vlan(priv);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001120
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001121 if (!cpsw_common_res_usage_state(priv)) {
1122 /* setup tx dma to fixed prio and zero offset */
1123 cpdma_control_set(priv->dma, CPDMA_TX_PRIO_FIXED, 1);
1124 cpdma_control_set(priv->dma, CPDMA_RX_BUFFER_OFFSET, 0);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001125
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001126 /* disable priority elevation */
1127 __raw_writel(0, &priv->regs->ptype);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001128
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001129 /* enable statistics collection only on all ports */
1130 __raw_writel(0x7, &priv->regs->stat_port_en);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001131
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001132 if (WARN_ON(!priv->data.rx_descs))
1133 priv->data.rx_descs = 128;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001134
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001135 for (i = 0; i < priv->data.rx_descs; i++) {
1136 struct sk_buff *skb;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001137
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001138 ret = -ENOMEM;
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001139 skb = __netdev_alloc_skb_ip_align(priv->ndev,
1140 priv->rx_packet_max, GFP_KERNEL);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001141 if (!skb)
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001142 goto err_cleanup;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001143 ret = cpdma_chan_submit(priv->rxch, skb, skb->data,
Sebastian Siewioraef614e2013-04-23 07:31:38 +00001144 skb_tailroom(skb), 0);
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001145 if (ret < 0) {
1146 kfree_skb(skb);
1147 goto err_cleanup;
1148 }
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001149 }
1150 /* continue even if we didn't manage to submit all
1151 * receive descs
1152 */
1153 cpsw_info(priv, ifup, "submitted %d rx descriptors\n", i);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001154 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001155
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001156 /* Enable Interrupt pacing if configured */
1157 if (priv->coal_intvl != 0) {
1158 struct ethtool_coalesce coal;
1159
1160 coal.rx_coalesce_usecs = (priv->coal_intvl << 4);
1161 cpsw_set_coalesce(ndev, &coal);
1162 }
1163
Sebastian Siewiora11fbba2013-04-24 08:48:25 +00001164 prim_cpsw = cpsw_get_slave_priv(priv, 0);
1165 if (prim_cpsw->irq_enabled == false) {
1166 if ((priv == prim_cpsw) || !netif_running(prim_cpsw->ndev)) {
1167 prim_cpsw->irq_enabled = true;
1168 cpsw_enable_irq(prim_cpsw);
1169 }
1170 }
1171
Markus Pargmanndbbd2ad2013-10-13 21:17:01 +02001172 napi_enable(&priv->napi);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001173 cpdma_ctlr_start(priv->dma);
1174 cpsw_intr_enable(priv);
Mugunthan V N510a1e722013-02-17 22:19:20 +00001175 cpdma_ctlr_eoi(priv->dma, CPDMA_EOI_RX);
1176 cpdma_ctlr_eoi(priv->dma, CPDMA_EOI_TX);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001177
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001178 if (priv->data.dual_emac)
1179 priv->slaves[priv->emac_port].open_stat = true;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001180 return 0;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001181
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001182err_cleanup:
1183 cpdma_ctlr_stop(priv->dma);
1184 for_each_slave(priv, cpsw_slave_stop, priv);
1185 pm_runtime_put_sync(&priv->pdev->dev);
1186 netif_carrier_off(priv->ndev);
1187 return ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001188}
1189
1190static int cpsw_ndo_stop(struct net_device *ndev)
1191{
1192 struct cpsw_priv *priv = netdev_priv(ndev);
1193
1194 cpsw_info(priv, ifdown, "shutting down cpsw device\n");
Mugunthan V Ndf828592012-03-18 20:17:54 +00001195 netif_stop_queue(priv->ndev);
1196 napi_disable(&priv->napi);
1197 netif_carrier_off(priv->ndev);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001198
1199 if (cpsw_common_res_usage_state(priv) <= 1) {
1200 cpsw_intr_disable(priv);
1201 cpdma_ctlr_int_ctrl(priv->dma, false);
1202 cpdma_ctlr_stop(priv->dma);
1203 cpsw_ale_stop(priv->ale);
1204 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001205 for_each_slave(priv, cpsw_slave_stop, priv);
Mugunthan V Nf150bd72012-07-17 08:09:50 +00001206 pm_runtime_put_sync(&priv->pdev->dev);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001207 if (priv->data.dual_emac)
1208 priv->slaves[priv->emac_port].open_stat = false;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001209 return 0;
1210}
1211
1212static netdev_tx_t cpsw_ndo_start_xmit(struct sk_buff *skb,
1213 struct net_device *ndev)
1214{
1215 struct cpsw_priv *priv = netdev_priv(ndev);
1216 int ret;
1217
1218 ndev->trans_start = jiffies;
1219
1220 if (skb_padto(skb, CPSW_MIN_PACKET_SIZE)) {
1221 cpsw_err(priv, tx_err, "packet pad failed\n");
1222 priv->stats.tx_dropped++;
1223 return NETDEV_TX_OK;
1224 }
1225
Mugunthan V N9232b162013-02-11 09:52:19 +00001226 if (skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP &&
1227 priv->cpts->tx_enable)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001228 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
1229
1230 skb_tx_timestamp(skb);
1231
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001232 ret = cpsw_tx_packet_submit(ndev, priv, skb);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001233 if (unlikely(ret != 0)) {
1234 cpsw_err(priv, tx_err, "desc submit failed\n");
1235 goto fail;
1236 }
1237
Mugunthan V Nfae50822013-01-17 06:31:34 +00001238 /* If there is no more tx desc left free then we need to
1239 * tell the kernel to stop sending us tx frames.
1240 */
Daniel Mackd35162f2013-03-12 06:31:19 +00001241 if (unlikely(!cpdma_check_free_tx_desc(priv->txch)))
Mugunthan V Nfae50822013-01-17 06:31:34 +00001242 netif_stop_queue(ndev);
1243
Mugunthan V Ndf828592012-03-18 20:17:54 +00001244 return NETDEV_TX_OK;
1245fail:
1246 priv->stats.tx_dropped++;
1247 netif_stop_queue(ndev);
1248 return NETDEV_TX_BUSY;
1249}
1250
1251static void cpsw_ndo_change_rx_flags(struct net_device *ndev, int flags)
1252{
1253 /*
1254 * The switch cannot operate in promiscuous mode without substantial
1255 * headache. For promiscuous mode to work, we would need to put the
1256 * ALE in bypass mode and route all traffic to the host port.
1257 * Subsequently, the host will need to operate as a "bridge", learn,
1258 * and flood as needed. For now, we simply complain here and
1259 * do nothing about it :-)
1260 */
1261 if ((flags & IFF_PROMISC) && (ndev->flags & IFF_PROMISC))
1262 dev_err(&ndev->dev, "promiscuity ignored!\n");
1263
1264 /*
1265 * The switch cannot filter multicast traffic unless it is configured
1266 * in "VLAN Aware" mode. Unfortunately, VLAN awareness requires a
1267 * whole bunch of additional logic that this driver does not implement
1268 * at present.
1269 */
1270 if ((flags & IFF_ALLMULTI) && !(ndev->flags & IFF_ALLMULTI))
1271 dev_err(&ndev->dev, "multicast traffic cannot be filtered!\n");
1272}
1273
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001274#ifdef CONFIG_TI_CPTS
1275
1276static void cpsw_hwtstamp_v1(struct cpsw_priv *priv)
1277{
Mugunthan V Ne86ac132013-03-11 23:16:35 +00001278 struct cpsw_slave *slave = &priv->slaves[priv->data.active_slave];
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001279 u32 ts_en, seq_id;
1280
Mugunthan V N9232b162013-02-11 09:52:19 +00001281 if (!priv->cpts->tx_enable && !priv->cpts->rx_enable) {
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001282 slave_write(slave, 0, CPSW1_TS_CTL);
1283 return;
1284 }
1285
1286 seq_id = (30 << CPSW_V1_SEQ_ID_OFS_SHIFT) | ETH_P_1588;
1287 ts_en = EVENT_MSG_BITS << CPSW_V1_MSG_TYPE_OFS;
1288
Mugunthan V N9232b162013-02-11 09:52:19 +00001289 if (priv->cpts->tx_enable)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001290 ts_en |= CPSW_V1_TS_TX_EN;
1291
Mugunthan V N9232b162013-02-11 09:52:19 +00001292 if (priv->cpts->rx_enable)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001293 ts_en |= CPSW_V1_TS_RX_EN;
1294
1295 slave_write(slave, ts_en, CPSW1_TS_CTL);
1296 slave_write(slave, seq_id, CPSW1_TS_SEQ_LTYPE);
1297}
1298
1299static void cpsw_hwtstamp_v2(struct cpsw_priv *priv)
1300{
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001301 struct cpsw_slave *slave;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001302 u32 ctrl, mtype;
1303
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001304 if (priv->data.dual_emac)
1305 slave = &priv->slaves[priv->emac_port];
1306 else
Mugunthan V Ne86ac132013-03-11 23:16:35 +00001307 slave = &priv->slaves[priv->data.active_slave];
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001308
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001309 ctrl = slave_read(slave, CPSW2_CONTROL);
1310 ctrl &= ~CTRL_ALL_TS_MASK;
1311
Mugunthan V N9232b162013-02-11 09:52:19 +00001312 if (priv->cpts->tx_enable)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001313 ctrl |= CTRL_TX_TS_BITS;
1314
Mugunthan V N9232b162013-02-11 09:52:19 +00001315 if (priv->cpts->rx_enable)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001316 ctrl |= CTRL_RX_TS_BITS;
1317
1318 mtype = (30 << TS_SEQ_ID_OFFSET_SHIFT) | EVENT_MSG_BITS;
1319
1320 slave_write(slave, mtype, CPSW2_TS_SEQ_MTYPE);
1321 slave_write(slave, ctrl, CPSW2_CONTROL);
1322 __raw_writel(ETH_P_1588, &priv->regs->ts_ltype);
1323}
1324
Ben Hutchingsa5b41452013-11-18 23:23:40 +00001325static int cpsw_hwtstamp_set(struct net_device *dev, struct ifreq *ifr)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001326{
Mugunthan V N3177bf62012-11-27 07:53:40 +00001327 struct cpsw_priv *priv = netdev_priv(dev);
Mugunthan V N9232b162013-02-11 09:52:19 +00001328 struct cpts *cpts = priv->cpts;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001329 struct hwtstamp_config cfg;
1330
Ben Hutchings2ee91e52013-11-14 00:47:36 +00001331 if (priv->version != CPSW_VERSION_1 &&
1332 priv->version != CPSW_VERSION_2)
1333 return -EOPNOTSUPP;
1334
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001335 if (copy_from_user(&cfg, ifr->ifr_data, sizeof(cfg)))
1336 return -EFAULT;
1337
1338 /* reserved for future extensions */
1339 if (cfg.flags)
1340 return -EINVAL;
1341
Ben Hutchings2ee91e52013-11-14 00:47:36 +00001342 if (cfg.tx_type != HWTSTAMP_TX_OFF && cfg.tx_type != HWTSTAMP_TX_ON)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001343 return -ERANGE;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001344
1345 switch (cfg.rx_filter) {
1346 case HWTSTAMP_FILTER_NONE:
1347 cpts->rx_enable = 0;
1348 break;
1349 case HWTSTAMP_FILTER_ALL:
1350 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
1351 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
1352 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
1353 return -ERANGE;
1354 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
1355 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
1356 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
1357 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
1358 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
1359 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
1360 case HWTSTAMP_FILTER_PTP_V2_EVENT:
1361 case HWTSTAMP_FILTER_PTP_V2_SYNC:
1362 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
1363 cpts->rx_enable = 1;
1364 cfg.rx_filter = HWTSTAMP_FILTER_PTP_V2_EVENT;
1365 break;
1366 default:
1367 return -ERANGE;
1368 }
1369
Ben Hutchings2ee91e52013-11-14 00:47:36 +00001370 cpts->tx_enable = cfg.tx_type == HWTSTAMP_TX_ON;
1371
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001372 switch (priv->version) {
1373 case CPSW_VERSION_1:
1374 cpsw_hwtstamp_v1(priv);
1375 break;
1376 case CPSW_VERSION_2:
1377 cpsw_hwtstamp_v2(priv);
1378 break;
1379 default:
Ben Hutchings2ee91e52013-11-14 00:47:36 +00001380 WARN_ON(1);
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001381 }
1382
1383 return copy_to_user(ifr->ifr_data, &cfg, sizeof(cfg)) ? -EFAULT : 0;
1384}
1385
Ben Hutchingsa5b41452013-11-18 23:23:40 +00001386static int cpsw_hwtstamp_get(struct net_device *dev, struct ifreq *ifr)
1387{
1388 struct cpsw_priv *priv = netdev_priv(dev);
1389 struct cpts *cpts = priv->cpts;
1390 struct hwtstamp_config cfg;
1391
1392 if (priv->version != CPSW_VERSION_1 &&
1393 priv->version != CPSW_VERSION_2)
1394 return -EOPNOTSUPP;
1395
1396 cfg.flags = 0;
1397 cfg.tx_type = cpts->tx_enable ? HWTSTAMP_TX_ON : HWTSTAMP_TX_OFF;
1398 cfg.rx_filter = (cpts->rx_enable ?
1399 HWTSTAMP_FILTER_PTP_V2_EVENT : HWTSTAMP_FILTER_NONE);
1400
1401 return copy_to_user(ifr->ifr_data, &cfg, sizeof(cfg)) ? -EFAULT : 0;
1402}
1403
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001404#endif /*CONFIG_TI_CPTS*/
1405
1406static int cpsw_ndo_ioctl(struct net_device *dev, struct ifreq *req, int cmd)
1407{
Mugunthan V N11f2c982013-03-11 23:16:38 +00001408 struct cpsw_priv *priv = netdev_priv(dev);
1409 struct mii_ioctl_data *data = if_mii(req);
1410 int slave_no = cpsw_slave_index(priv);
1411
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001412 if (!netif_running(dev))
1413 return -EINVAL;
1414
Mugunthan V N11f2c982013-03-11 23:16:38 +00001415 switch (cmd) {
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001416#ifdef CONFIG_TI_CPTS
Mugunthan V N11f2c982013-03-11 23:16:38 +00001417 case SIOCSHWTSTAMP:
Ben Hutchingsa5b41452013-11-18 23:23:40 +00001418 return cpsw_hwtstamp_set(dev, req);
1419 case SIOCGHWTSTAMP:
1420 return cpsw_hwtstamp_get(dev, req);
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001421#endif
Mugunthan V N11f2c982013-03-11 23:16:38 +00001422 case SIOCGMIIPHY:
1423 data->phy_id = priv->slaves[slave_no].phy->addr;
1424 break;
1425 default:
1426 return -ENOTSUPP;
1427 }
1428
1429 return 0;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001430}
1431
Mugunthan V Ndf828592012-03-18 20:17:54 +00001432static void cpsw_ndo_tx_timeout(struct net_device *ndev)
1433{
1434 struct cpsw_priv *priv = netdev_priv(ndev);
1435
1436 cpsw_err(priv, tx_err, "transmit timeout, restarting dma\n");
1437 priv->stats.tx_errors++;
1438 cpsw_intr_disable(priv);
1439 cpdma_ctlr_int_ctrl(priv->dma, false);
1440 cpdma_chan_stop(priv->txch);
1441 cpdma_chan_start(priv->txch);
1442 cpdma_ctlr_int_ctrl(priv->dma, true);
1443 cpsw_intr_enable(priv);
Mugunthan V N510a1e722013-02-17 22:19:20 +00001444 cpdma_ctlr_eoi(priv->dma, CPDMA_EOI_RX);
1445 cpdma_ctlr_eoi(priv->dma, CPDMA_EOI_TX);
1446
Mugunthan V Ndf828592012-03-18 20:17:54 +00001447}
1448
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301449static int cpsw_ndo_set_mac_address(struct net_device *ndev, void *p)
1450{
1451 struct cpsw_priv *priv = netdev_priv(ndev);
1452 struct sockaddr *addr = (struct sockaddr *)p;
1453 int flags = 0;
1454 u16 vid = 0;
1455
1456 if (!is_valid_ether_addr(addr->sa_data))
1457 return -EADDRNOTAVAIL;
1458
1459 if (priv->data.dual_emac) {
1460 vid = priv->slaves[priv->emac_port].port_vlan;
1461 flags = ALE_VLAN;
1462 }
1463
1464 cpsw_ale_del_ucast(priv->ale, priv->mac_addr, priv->host_port,
1465 flags, vid);
1466 cpsw_ale_add_ucast(priv->ale, addr->sa_data, priv->host_port,
1467 flags, vid);
1468
1469 memcpy(priv->mac_addr, addr->sa_data, ETH_ALEN);
1470 memcpy(ndev->dev_addr, priv->mac_addr, ETH_ALEN);
1471 for_each_slave(priv, cpsw_set_slave_mac, priv);
1472
1473 return 0;
1474}
1475
Mugunthan V Ndf828592012-03-18 20:17:54 +00001476static struct net_device_stats *cpsw_ndo_get_stats(struct net_device *ndev)
1477{
1478 struct cpsw_priv *priv = netdev_priv(ndev);
1479 return &priv->stats;
1480}
1481
1482#ifdef CONFIG_NET_POLL_CONTROLLER
1483static void cpsw_ndo_poll_controller(struct net_device *ndev)
1484{
1485 struct cpsw_priv *priv = netdev_priv(ndev);
1486
1487 cpsw_intr_disable(priv);
1488 cpdma_ctlr_int_ctrl(priv->dma, false);
1489 cpsw_interrupt(ndev->irq, priv);
1490 cpdma_ctlr_int_ctrl(priv->dma, true);
1491 cpsw_intr_enable(priv);
Mugunthan V N510a1e722013-02-17 22:19:20 +00001492 cpdma_ctlr_eoi(priv->dma, CPDMA_EOI_RX);
1493 cpdma_ctlr_eoi(priv->dma, CPDMA_EOI_TX);
1494
Mugunthan V Ndf828592012-03-18 20:17:54 +00001495}
1496#endif
1497
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001498static inline int cpsw_add_vlan_ale_entry(struct cpsw_priv *priv,
1499 unsigned short vid)
1500{
1501 int ret;
1502
1503 ret = cpsw_ale_add_vlan(priv->ale, vid,
1504 ALE_ALL_PORTS << priv->host_port,
1505 0, ALE_ALL_PORTS << priv->host_port,
1506 (ALE_PORT_1 | ALE_PORT_2) << priv->host_port);
1507 if (ret != 0)
1508 return ret;
1509
1510 ret = cpsw_ale_add_ucast(priv->ale, priv->mac_addr,
1511 priv->host_port, ALE_VLAN, vid);
1512 if (ret != 0)
1513 goto clean_vid;
1514
1515 ret = cpsw_ale_add_mcast(priv->ale, priv->ndev->broadcast,
1516 ALE_ALL_PORTS << priv->host_port,
1517 ALE_VLAN, vid, 0);
1518 if (ret != 0)
1519 goto clean_vlan_ucast;
1520 return 0;
1521
1522clean_vlan_ucast:
1523 cpsw_ale_del_ucast(priv->ale, priv->mac_addr,
1524 priv->host_port, ALE_VLAN, vid);
1525clean_vid:
1526 cpsw_ale_del_vlan(priv->ale, vid, 0);
1527 return ret;
1528}
1529
1530static int cpsw_ndo_vlan_rx_add_vid(struct net_device *ndev,
Patrick McHardy80d5c362013-04-19 02:04:28 +00001531 __be16 proto, u16 vid)
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001532{
1533 struct cpsw_priv *priv = netdev_priv(ndev);
1534
1535 if (vid == priv->data.default_vlan)
1536 return 0;
1537
1538 dev_info(priv->dev, "Adding vlanid %d to vlan filter\n", vid);
1539 return cpsw_add_vlan_ale_entry(priv, vid);
1540}
1541
1542static int cpsw_ndo_vlan_rx_kill_vid(struct net_device *ndev,
Patrick McHardy80d5c362013-04-19 02:04:28 +00001543 __be16 proto, u16 vid)
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001544{
1545 struct cpsw_priv *priv = netdev_priv(ndev);
1546 int ret;
1547
1548 if (vid == priv->data.default_vlan)
1549 return 0;
1550
1551 dev_info(priv->dev, "removing vlanid %d from vlan filter\n", vid);
1552 ret = cpsw_ale_del_vlan(priv->ale, vid, 0);
1553 if (ret != 0)
1554 return ret;
1555
1556 ret = cpsw_ale_del_ucast(priv->ale, priv->mac_addr,
1557 priv->host_port, ALE_VLAN, vid);
1558 if (ret != 0)
1559 return ret;
1560
1561 return cpsw_ale_del_mcast(priv->ale, priv->ndev->broadcast,
1562 0, ALE_VLAN, vid);
1563}
1564
Mugunthan V Ndf828592012-03-18 20:17:54 +00001565static const struct net_device_ops cpsw_netdev_ops = {
1566 .ndo_open = cpsw_ndo_open,
1567 .ndo_stop = cpsw_ndo_stop,
1568 .ndo_start_xmit = cpsw_ndo_start_xmit,
1569 .ndo_change_rx_flags = cpsw_ndo_change_rx_flags,
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301570 .ndo_set_mac_address = cpsw_ndo_set_mac_address,
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001571 .ndo_do_ioctl = cpsw_ndo_ioctl,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001572 .ndo_validate_addr = eth_validate_addr,
David S. Miller5c473ed2012-03-20 00:33:59 -04001573 .ndo_change_mtu = eth_change_mtu,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001574 .ndo_tx_timeout = cpsw_ndo_tx_timeout,
1575 .ndo_get_stats = cpsw_ndo_get_stats,
Mugunthan V N5c50a852012-10-29 08:45:11 +00001576 .ndo_set_rx_mode = cpsw_ndo_set_rx_mode,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001577#ifdef CONFIG_NET_POLL_CONTROLLER
1578 .ndo_poll_controller = cpsw_ndo_poll_controller,
1579#endif
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001580 .ndo_vlan_rx_add_vid = cpsw_ndo_vlan_rx_add_vid,
1581 .ndo_vlan_rx_kill_vid = cpsw_ndo_vlan_rx_kill_vid,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001582};
1583
1584static void cpsw_get_drvinfo(struct net_device *ndev,
1585 struct ethtool_drvinfo *info)
1586{
1587 struct cpsw_priv *priv = netdev_priv(ndev);
Jiri Pirko7826d432013-01-06 00:44:26 +00001588
1589 strlcpy(info->driver, "TI CPSW Driver v1.0", sizeof(info->driver));
1590 strlcpy(info->version, "1.0", sizeof(info->version));
1591 strlcpy(info->bus_info, priv->pdev->name, sizeof(info->bus_info));
Mugunthan V Ndf828592012-03-18 20:17:54 +00001592}
1593
1594static u32 cpsw_get_msglevel(struct net_device *ndev)
1595{
1596 struct cpsw_priv *priv = netdev_priv(ndev);
1597 return priv->msg_enable;
1598}
1599
1600static void cpsw_set_msglevel(struct net_device *ndev, u32 value)
1601{
1602 struct cpsw_priv *priv = netdev_priv(ndev);
1603 priv->msg_enable = value;
1604}
1605
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001606static int cpsw_get_ts_info(struct net_device *ndev,
1607 struct ethtool_ts_info *info)
1608{
1609#ifdef CONFIG_TI_CPTS
1610 struct cpsw_priv *priv = netdev_priv(ndev);
1611
1612 info->so_timestamping =
1613 SOF_TIMESTAMPING_TX_HARDWARE |
1614 SOF_TIMESTAMPING_TX_SOFTWARE |
1615 SOF_TIMESTAMPING_RX_HARDWARE |
1616 SOF_TIMESTAMPING_RX_SOFTWARE |
1617 SOF_TIMESTAMPING_SOFTWARE |
1618 SOF_TIMESTAMPING_RAW_HARDWARE;
Mugunthan V N9232b162013-02-11 09:52:19 +00001619 info->phc_index = priv->cpts->phc_index;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001620 info->tx_types =
1621 (1 << HWTSTAMP_TX_OFF) |
1622 (1 << HWTSTAMP_TX_ON);
1623 info->rx_filters =
1624 (1 << HWTSTAMP_FILTER_NONE) |
1625 (1 << HWTSTAMP_FILTER_PTP_V2_EVENT);
1626#else
1627 info->so_timestamping =
1628 SOF_TIMESTAMPING_TX_SOFTWARE |
1629 SOF_TIMESTAMPING_RX_SOFTWARE |
1630 SOF_TIMESTAMPING_SOFTWARE;
1631 info->phc_index = -1;
1632 info->tx_types = 0;
1633 info->rx_filters = 0;
1634#endif
1635 return 0;
1636}
1637
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +00001638static int cpsw_get_settings(struct net_device *ndev,
1639 struct ethtool_cmd *ecmd)
1640{
1641 struct cpsw_priv *priv = netdev_priv(ndev);
1642 int slave_no = cpsw_slave_index(priv);
1643
1644 if (priv->slaves[slave_no].phy)
1645 return phy_ethtool_gset(priv->slaves[slave_no].phy, ecmd);
1646 else
1647 return -EOPNOTSUPP;
1648}
1649
1650static int cpsw_set_settings(struct net_device *ndev, struct ethtool_cmd *ecmd)
1651{
1652 struct cpsw_priv *priv = netdev_priv(ndev);
1653 int slave_no = cpsw_slave_index(priv);
1654
1655 if (priv->slaves[slave_no].phy)
1656 return phy_ethtool_sset(priv->slaves[slave_no].phy, ecmd);
1657 else
1658 return -EOPNOTSUPP;
1659}
1660
Matus Ujhelyid8a64422013-08-20 07:59:38 +02001661static void cpsw_get_wol(struct net_device *ndev, struct ethtool_wolinfo *wol)
1662{
1663 struct cpsw_priv *priv = netdev_priv(ndev);
1664 int slave_no = cpsw_slave_index(priv);
1665
1666 wol->supported = 0;
1667 wol->wolopts = 0;
1668
1669 if (priv->slaves[slave_no].phy)
1670 phy_ethtool_get_wol(priv->slaves[slave_no].phy, wol);
1671}
1672
1673static int cpsw_set_wol(struct net_device *ndev, struct ethtool_wolinfo *wol)
1674{
1675 struct cpsw_priv *priv = netdev_priv(ndev);
1676 int slave_no = cpsw_slave_index(priv);
1677
1678 if (priv->slaves[slave_no].phy)
1679 return phy_ethtool_set_wol(priv->slaves[slave_no].phy, wol);
1680 else
1681 return -EOPNOTSUPP;
1682}
1683
Mugunthan V Ndf828592012-03-18 20:17:54 +00001684static const struct ethtool_ops cpsw_ethtool_ops = {
1685 .get_drvinfo = cpsw_get_drvinfo,
1686 .get_msglevel = cpsw_get_msglevel,
1687 .set_msglevel = cpsw_set_msglevel,
1688 .get_link = ethtool_op_get_link,
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001689 .get_ts_info = cpsw_get_ts_info,
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +00001690 .get_settings = cpsw_get_settings,
1691 .set_settings = cpsw_set_settings,
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001692 .get_coalesce = cpsw_get_coalesce,
1693 .set_coalesce = cpsw_set_coalesce,
Mugunthan V Nd9718542013-07-23 15:38:17 +05301694 .get_sset_count = cpsw_get_sset_count,
1695 .get_strings = cpsw_get_strings,
1696 .get_ethtool_stats = cpsw_get_ethtool_stats,
Matus Ujhelyid8a64422013-08-20 07:59:38 +02001697 .get_wol = cpsw_get_wol,
1698 .set_wol = cpsw_set_wol,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001699};
1700
Richard Cochran549985e2012-11-14 09:07:56 +00001701static void cpsw_slave_init(struct cpsw_slave *slave, struct cpsw_priv *priv,
1702 u32 slave_reg_ofs, u32 sliver_reg_ofs)
Mugunthan V Ndf828592012-03-18 20:17:54 +00001703{
1704 void __iomem *regs = priv->regs;
1705 int slave_num = slave->slave_num;
1706 struct cpsw_slave_data *data = priv->data.slave_data + slave_num;
1707
1708 slave->data = data;
Richard Cochran549985e2012-11-14 09:07:56 +00001709 slave->regs = regs + slave_reg_ofs;
1710 slave->sliver = regs + sliver_reg_ofs;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001711 slave->port_vlan = data->dual_emac_res_vlan;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001712}
1713
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001714static int cpsw_probe_dt(struct cpsw_platform_data *data,
1715 struct platform_device *pdev)
1716{
1717 struct device_node *node = pdev->dev.of_node;
1718 struct device_node *slave_node;
1719 int i = 0, ret;
1720 u32 prop;
1721
1722 if (!node)
1723 return -EINVAL;
1724
1725 if (of_property_read_u32(node, "slaves", &prop)) {
1726 pr_err("Missing slaves property in the DT.\n");
1727 return -EINVAL;
1728 }
1729 data->slaves = prop;
1730
Mugunthan V Ne86ac132013-03-11 23:16:35 +00001731 if (of_property_read_u32(node, "active_slave", &prop)) {
1732 pr_err("Missing active_slave property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301733 return -EINVAL;
Richard Cochran78ca0b22012-10-29 08:45:18 +00001734 }
Mugunthan V Ne86ac132013-03-11 23:16:35 +00001735 data->active_slave = prop;
Richard Cochran78ca0b22012-10-29 08:45:18 +00001736
Richard Cochran00ab94e2012-10-29 08:45:19 +00001737 if (of_property_read_u32(node, "cpts_clock_mult", &prop)) {
1738 pr_err("Missing cpts_clock_mult property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301739 return -EINVAL;
Richard Cochran00ab94e2012-10-29 08:45:19 +00001740 }
1741 data->cpts_clock_mult = prop;
1742
1743 if (of_property_read_u32(node, "cpts_clock_shift", &prop)) {
1744 pr_err("Missing cpts_clock_shift property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301745 return -EINVAL;
Richard Cochran00ab94e2012-10-29 08:45:19 +00001746 }
1747 data->cpts_clock_shift = prop;
1748
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301749 data->slave_data = devm_kzalloc(&pdev->dev, data->slaves
1750 * sizeof(struct cpsw_slave_data),
1751 GFP_KERNEL);
Joe Perchesb2adaca2013-02-03 17:43:58 +00001752 if (!data->slave_data)
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301753 return -ENOMEM;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001754
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001755 if (of_property_read_u32(node, "cpdma_channels", &prop)) {
1756 pr_err("Missing cpdma_channels property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301757 return -EINVAL;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001758 }
1759 data->channels = prop;
1760
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001761 if (of_property_read_u32(node, "ale_entries", &prop)) {
1762 pr_err("Missing ale_entries property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301763 return -EINVAL;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001764 }
1765 data->ale_entries = prop;
1766
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001767 if (of_property_read_u32(node, "bd_ram_size", &prop)) {
1768 pr_err("Missing bd_ram_size property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301769 return -EINVAL;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001770 }
1771 data->bd_ram_size = prop;
1772
1773 if (of_property_read_u32(node, "rx_descs", &prop)) {
1774 pr_err("Missing rx_descs property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301775 return -EINVAL;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001776 }
1777 data->rx_descs = prop;
1778
1779 if (of_property_read_u32(node, "mac_control", &prop)) {
1780 pr_err("Missing mac_control property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301781 return -EINVAL;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001782 }
1783 data->mac_control = prop;
1784
Markus Pargmann281abd92013-10-04 14:44:40 +02001785 if (of_property_read_bool(node, "dual_emac"))
1786 data->dual_emac = 1;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001787
Vaibhav Hiremath1fb19aa2012-11-14 09:07:55 +00001788 /*
1789 * Populate all the child nodes here...
1790 */
1791 ret = of_platform_populate(node, NULL, NULL, &pdev->dev);
1792 /* We do not want to force this, as in some cases may not have child */
1793 if (ret)
1794 pr_warn("Doesn't have any child node\n");
1795
Markus Pargmannf468b102013-10-04 14:44:39 +02001796 for_each_child_of_node(node, slave_node) {
Richard Cochran549985e2012-11-14 09:07:56 +00001797 struct cpsw_slave_data *slave_data = data->slave_data + i;
1798 const void *mac_addr = NULL;
1799 u32 phyid;
1800 int lenp;
1801 const __be32 *parp;
1802 struct device_node *mdio_node;
1803 struct platform_device *mdio;
1804
Markus Pargmannf468b102013-10-04 14:44:39 +02001805 /* This is no slave child node, continue */
1806 if (strcmp(slave_node->name, "slave"))
1807 continue;
1808
Richard Cochran549985e2012-11-14 09:07:56 +00001809 parp = of_get_property(slave_node, "phy_id", &lenp);
Lothar Waßmannce162942013-03-21 02:20:11 +00001810 if ((parp == NULL) || (lenp != (sizeof(void *) * 2))) {
Richard Cochran549985e2012-11-14 09:07:56 +00001811 pr_err("Missing slave[%d] phy_id property\n", i);
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301812 return -EINVAL;
Richard Cochran549985e2012-11-14 09:07:56 +00001813 }
1814 mdio_node = of_find_node_by_phandle(be32_to_cpup(parp));
1815 phyid = be32_to_cpup(parp+1);
1816 mdio = of_find_device_by_node(mdio_node);
1817 snprintf(slave_data->phy_id, sizeof(slave_data->phy_id),
1818 PHY_ID_FMT, mdio->name, phyid);
1819
1820 mac_addr = of_get_mac_address(slave_node);
1821 if (mac_addr)
1822 memcpy(slave_data->mac_addr, mac_addr, ETH_ALEN);
1823
Mugunthan V Nc5ceea72013-06-03 20:10:10 +00001824 slave_data->phy_if = of_get_phy_mode(slave_node);
1825
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001826 if (data->dual_emac) {
Mugunthan V N91c41662013-04-15 07:31:28 +00001827 if (of_property_read_u32(slave_node, "dual_emac_res_vlan",
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001828 &prop)) {
1829 pr_err("Missing dual_emac_res_vlan in DT.\n");
1830 slave_data->dual_emac_res_vlan = i+1;
1831 pr_err("Using %d as Reserved VLAN for %d slave\n",
1832 slave_data->dual_emac_res_vlan, i);
1833 } else {
1834 slave_data->dual_emac_res_vlan = prop;
1835 }
1836 }
1837
Richard Cochran549985e2012-11-14 09:07:56 +00001838 i++;
1839 }
1840
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001841 return 0;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001842}
1843
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001844static int cpsw_probe_dual_emac(struct platform_device *pdev,
1845 struct cpsw_priv *priv)
1846{
1847 struct cpsw_platform_data *data = &priv->data;
1848 struct net_device *ndev;
1849 struct cpsw_priv *priv_sl2;
1850 int ret = 0, i;
1851
1852 ndev = alloc_etherdev(sizeof(struct cpsw_priv));
1853 if (!ndev) {
1854 pr_err("cpsw: error allocating net_device\n");
1855 return -ENOMEM;
1856 }
1857
1858 priv_sl2 = netdev_priv(ndev);
1859 spin_lock_init(&priv_sl2->lock);
1860 priv_sl2->data = *data;
1861 priv_sl2->pdev = pdev;
1862 priv_sl2->ndev = ndev;
1863 priv_sl2->dev = &ndev->dev;
1864 priv_sl2->msg_enable = netif_msg_init(debug_level, CPSW_DEBUG);
1865 priv_sl2->rx_packet_max = max(rx_packet_max, 128);
1866
1867 if (is_valid_ether_addr(data->slave_data[1].mac_addr)) {
1868 memcpy(priv_sl2->mac_addr, data->slave_data[1].mac_addr,
1869 ETH_ALEN);
1870 pr_info("cpsw: Detected MACID = %pM\n", priv_sl2->mac_addr);
1871 } else {
1872 random_ether_addr(priv_sl2->mac_addr);
1873 pr_info("cpsw: Random MACID = %pM\n", priv_sl2->mac_addr);
1874 }
1875 memcpy(ndev->dev_addr, priv_sl2->mac_addr, ETH_ALEN);
1876
1877 priv_sl2->slaves = priv->slaves;
1878 priv_sl2->clk = priv->clk;
1879
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001880 priv_sl2->coal_intvl = 0;
1881 priv_sl2->bus_freq_mhz = priv->bus_freq_mhz;
1882
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001883 priv_sl2->regs = priv->regs;
1884 priv_sl2->host_port = priv->host_port;
1885 priv_sl2->host_port_regs = priv->host_port_regs;
1886 priv_sl2->wr_regs = priv->wr_regs;
Mugunthan V Nd9718542013-07-23 15:38:17 +05301887 priv_sl2->hw_stats = priv->hw_stats;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001888 priv_sl2->dma = priv->dma;
1889 priv_sl2->txch = priv->txch;
1890 priv_sl2->rxch = priv->rxch;
1891 priv_sl2->ale = priv->ale;
1892 priv_sl2->emac_port = 1;
1893 priv->slaves[1].ndev = ndev;
1894 priv_sl2->cpts = priv->cpts;
1895 priv_sl2->version = priv->version;
1896
1897 for (i = 0; i < priv->num_irqs; i++) {
1898 priv_sl2->irqs_table[i] = priv->irqs_table[i];
1899 priv_sl2->num_irqs = priv->num_irqs;
1900 }
Patrick McHardyf6469682013-04-19 02:04:27 +00001901 ndev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001902
1903 ndev->netdev_ops = &cpsw_netdev_ops;
1904 SET_ETHTOOL_OPS(ndev, &cpsw_ethtool_ops);
1905 netif_napi_add(ndev, &priv_sl2->napi, cpsw_poll, CPSW_POLL_WEIGHT);
1906
1907 /* register the network device */
1908 SET_NETDEV_DEV(ndev, &pdev->dev);
1909 ret = register_netdev(ndev);
1910 if (ret) {
1911 pr_err("cpsw: error registering net device\n");
1912 free_netdev(ndev);
1913 ret = -ENODEV;
1914 }
1915
1916 return ret;
1917}
1918
Bill Pemberton663e12e2012-12-03 09:23:45 -05001919static int cpsw_probe(struct platform_device *pdev)
Mugunthan V Ndf828592012-03-18 20:17:54 +00001920{
Sebastian Siewiord1bd9ac2013-04-24 08:48:23 +00001921 struct cpsw_platform_data *data;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001922 struct net_device *ndev;
1923 struct cpsw_priv *priv;
1924 struct cpdma_params dma_params;
1925 struct cpsw_ale_params ale_params;
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301926 void __iomem *ss_regs;
1927 struct resource *res, *ss_res;
Richard Cochran549985e2012-11-14 09:07:56 +00001928 u32 slave_offset, sliver_offset, slave_size;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001929 int ret = 0, i, k = 0;
1930
Mugunthan V Ndf828592012-03-18 20:17:54 +00001931 ndev = alloc_etherdev(sizeof(struct cpsw_priv));
1932 if (!ndev) {
1933 pr_err("error allocating net_device\n");
1934 return -ENOMEM;
1935 }
1936
1937 platform_set_drvdata(pdev, ndev);
1938 priv = netdev_priv(ndev);
1939 spin_lock_init(&priv->lock);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001940 priv->pdev = pdev;
1941 priv->ndev = ndev;
1942 priv->dev = &ndev->dev;
1943 priv->msg_enable = netif_msg_init(debug_level, CPSW_DEBUG);
1944 priv->rx_packet_max = max(rx_packet_max, 128);
Mugunthan V N9232b162013-02-11 09:52:19 +00001945 priv->cpts = devm_kzalloc(&pdev->dev, sizeof(struct cpts), GFP_KERNEL);
Mugunthan V N7dcf3132013-04-29 23:27:28 +00001946 priv->irq_enabled = true;
Sebastian Siewiorab8e99d2013-06-17 19:31:52 +02001947 if (!priv->cpts) {
Mugunthan V N9232b162013-02-11 09:52:19 +00001948 pr_err("error allocating cpts\n");
1949 goto clean_ndev_ret;
1950 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001951
Vaibhav Hiremath1fb19aa2012-11-14 09:07:55 +00001952 /*
1953 * This may be required here for child devices.
1954 */
1955 pm_runtime_enable(&pdev->dev);
1956
Mugunthan V N739683b2013-06-06 23:45:14 +05301957 /* Select default pin state */
1958 pinctrl_pm_select_default_state(&pdev->dev);
1959
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001960 if (cpsw_probe_dt(&priv->data, pdev)) {
1961 pr_err("cpsw: platform data missing\n");
1962 ret = -ENODEV;
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301963 goto clean_runtime_disable_ret;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001964 }
1965 data = &priv->data;
1966
Mugunthan V Ndf828592012-03-18 20:17:54 +00001967 if (is_valid_ether_addr(data->slave_data[0].mac_addr)) {
1968 memcpy(priv->mac_addr, data->slave_data[0].mac_addr, ETH_ALEN);
Daniel Mackcf6122b2013-06-27 11:40:47 +02001969 pr_info("Detected MACID = %pM\n", priv->mac_addr);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001970 } else {
Joe Perches7efd26d2012-07-12 19:33:06 +00001971 eth_random_addr(priv->mac_addr);
Daniel Mackcf6122b2013-06-27 11:40:47 +02001972 pr_info("Random MACID = %pM\n", priv->mac_addr);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001973 }
1974
1975 memcpy(ndev->dev_addr, priv->mac_addr, ETH_ALEN);
1976
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301977 priv->slaves = devm_kzalloc(&pdev->dev,
1978 sizeof(struct cpsw_slave) * data->slaves,
1979 GFP_KERNEL);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001980 if (!priv->slaves) {
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301981 ret = -ENOMEM;
1982 goto clean_runtime_disable_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001983 }
1984 for (i = 0; i < data->slaves; i++)
1985 priv->slaves[i].slave_num = i;
1986
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001987 priv->slaves[0].ndev = ndev;
1988 priv->emac_port = 0;
1989
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301990 priv->clk = devm_clk_get(&pdev->dev, "fck");
Mugunthan V Ndf828592012-03-18 20:17:54 +00001991 if (IS_ERR(priv->clk)) {
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301992 dev_err(priv->dev, "fck is not found\n");
Mugunthan V Nf150bd72012-07-17 08:09:50 +00001993 ret = -ENODEV;
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301994 goto clean_runtime_disable_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001995 }
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001996 priv->coal_intvl = 0;
1997 priv->bus_freq_mhz = clk_get_rate(priv->clk) / 1000000;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001998
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301999 ss_res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2000 ss_regs = devm_ioremap_resource(&pdev->dev, ss_res);
2001 if (IS_ERR(ss_regs)) {
2002 ret = PTR_ERR(ss_regs);
2003 goto clean_runtime_disable_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002004 }
Richard Cochran549985e2012-11-14 09:07:56 +00002005 priv->regs = ss_regs;
2006 priv->version = __raw_readl(&priv->regs->id_ver);
2007 priv->host_port = HOST_PORT_NUM;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002008
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302009 res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
2010 priv->wr_regs = devm_ioremap_resource(&pdev->dev, res);
2011 if (IS_ERR(priv->wr_regs)) {
2012 ret = PTR_ERR(priv->wr_regs);
2013 goto clean_runtime_disable_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002014 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00002015
2016 memset(&dma_params, 0, sizeof(dma_params));
Richard Cochran549985e2012-11-14 09:07:56 +00002017 memset(&ale_params, 0, sizeof(ale_params));
2018
2019 switch (priv->version) {
2020 case CPSW_VERSION_1:
2021 priv->host_port_regs = ss_regs + CPSW1_HOST_PORT_OFFSET;
Mugunthan V Nd9718542013-07-23 15:38:17 +05302022 priv->cpts->reg = ss_regs + CPSW1_CPTS_OFFSET;
2023 priv->hw_stats = ss_regs + CPSW1_HW_STATS;
Richard Cochran549985e2012-11-14 09:07:56 +00002024 dma_params.dmaregs = ss_regs + CPSW1_CPDMA_OFFSET;
2025 dma_params.txhdp = ss_regs + CPSW1_STATERAM_OFFSET;
2026 ale_params.ale_regs = ss_regs + CPSW1_ALE_OFFSET;
2027 slave_offset = CPSW1_SLAVE_OFFSET;
2028 slave_size = CPSW1_SLAVE_SIZE;
2029 sliver_offset = CPSW1_SLIVER_OFFSET;
2030 dma_params.desc_mem_phys = 0;
2031 break;
2032 case CPSW_VERSION_2:
Mugunthan V Nc193f362013-08-05 17:30:05 +05302033 case CPSW_VERSION_3:
Mugunthan V N926489b2013-08-12 17:11:15 +05302034 case CPSW_VERSION_4:
Richard Cochran549985e2012-11-14 09:07:56 +00002035 priv->host_port_regs = ss_regs + CPSW2_HOST_PORT_OFFSET;
Mugunthan V Nd9718542013-07-23 15:38:17 +05302036 priv->cpts->reg = ss_regs + CPSW2_CPTS_OFFSET;
2037 priv->hw_stats = ss_regs + CPSW2_HW_STATS;
Richard Cochran549985e2012-11-14 09:07:56 +00002038 dma_params.dmaregs = ss_regs + CPSW2_CPDMA_OFFSET;
2039 dma_params.txhdp = ss_regs + CPSW2_STATERAM_OFFSET;
2040 ale_params.ale_regs = ss_regs + CPSW2_ALE_OFFSET;
2041 slave_offset = CPSW2_SLAVE_OFFSET;
2042 slave_size = CPSW2_SLAVE_SIZE;
2043 sliver_offset = CPSW2_SLIVER_OFFSET;
2044 dma_params.desc_mem_phys =
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302045 (u32 __force) ss_res->start + CPSW2_BD_OFFSET;
Richard Cochran549985e2012-11-14 09:07:56 +00002046 break;
2047 default:
2048 dev_err(priv->dev, "unknown version 0x%08x\n", priv->version);
2049 ret = -ENODEV;
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302050 goto clean_runtime_disable_ret;
Richard Cochran549985e2012-11-14 09:07:56 +00002051 }
2052 for (i = 0; i < priv->data.slaves; i++) {
2053 struct cpsw_slave *slave = &priv->slaves[i];
2054 cpsw_slave_init(slave, priv, slave_offset, sliver_offset);
2055 slave_offset += slave_size;
2056 sliver_offset += SLIVER_SIZE;
2057 }
2058
Mugunthan V Ndf828592012-03-18 20:17:54 +00002059 dma_params.dev = &pdev->dev;
Richard Cochran549985e2012-11-14 09:07:56 +00002060 dma_params.rxthresh = dma_params.dmaregs + CPDMA_RXTHRESH;
2061 dma_params.rxfree = dma_params.dmaregs + CPDMA_RXFREE;
2062 dma_params.rxhdp = dma_params.txhdp + CPDMA_RXHDP;
2063 dma_params.txcp = dma_params.txhdp + CPDMA_TXCP;
2064 dma_params.rxcp = dma_params.txhdp + CPDMA_RXCP;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002065
2066 dma_params.num_chan = data->channels;
2067 dma_params.has_soft_reset = true;
2068 dma_params.min_packet_size = CPSW_MIN_PACKET_SIZE;
2069 dma_params.desc_mem_size = data->bd_ram_size;
2070 dma_params.desc_align = 16;
2071 dma_params.has_ext_regs = true;
Richard Cochran549985e2012-11-14 09:07:56 +00002072 dma_params.desc_hw_addr = dma_params.desc_mem_phys;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002073
2074 priv->dma = cpdma_ctlr_create(&dma_params);
2075 if (!priv->dma) {
2076 dev_err(priv->dev, "error initializing dma\n");
2077 ret = -ENOMEM;
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302078 goto clean_runtime_disable_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002079 }
2080
2081 priv->txch = cpdma_chan_create(priv->dma, tx_chan_num(0),
2082 cpsw_tx_handler);
2083 priv->rxch = cpdma_chan_create(priv->dma, rx_chan_num(0),
2084 cpsw_rx_handler);
2085
2086 if (WARN_ON(!priv->txch || !priv->rxch)) {
2087 dev_err(priv->dev, "error initializing dma channels\n");
2088 ret = -ENOMEM;
2089 goto clean_dma_ret;
2090 }
2091
Mugunthan V Ndf828592012-03-18 20:17:54 +00002092 ale_params.dev = &ndev->dev;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002093 ale_params.ale_ageout = ale_ageout;
2094 ale_params.ale_entries = data->ale_entries;
2095 ale_params.ale_ports = data->slaves;
2096
2097 priv->ale = cpsw_ale_create(&ale_params);
2098 if (!priv->ale) {
2099 dev_err(priv->dev, "error initializing ale engine\n");
2100 ret = -ENODEV;
2101 goto clean_dma_ret;
2102 }
2103
2104 ndev->irq = platform_get_irq(pdev, 0);
2105 if (ndev->irq < 0) {
2106 dev_err(priv->dev, "error getting irq resource\n");
2107 ret = -ENOENT;
2108 goto clean_ale_ret;
2109 }
2110
2111 while ((res = platform_get_resource(priv->pdev, IORESOURCE_IRQ, k))) {
2112 for (i = res->start; i <= res->end; i++) {
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302113 if (devm_request_irq(&pdev->dev, i, cpsw_interrupt, 0,
2114 dev_name(priv->dev), priv)) {
Mugunthan V Ndf828592012-03-18 20:17:54 +00002115 dev_err(priv->dev, "error attaching irq\n");
2116 goto clean_ale_ret;
2117 }
2118 priv->irqs_table[k] = i;
Sebastian Siewiord1bd9ac2013-04-24 08:48:23 +00002119 priv->num_irqs = k + 1;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002120 }
2121 k++;
2122 }
2123
Patrick McHardyf6469682013-04-19 02:04:27 +00002124 ndev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002125
2126 ndev->netdev_ops = &cpsw_netdev_ops;
2127 SET_ETHTOOL_OPS(ndev, &cpsw_ethtool_ops);
2128 netif_napi_add(ndev, &priv->napi, cpsw_poll, CPSW_POLL_WEIGHT);
2129
2130 /* register the network device */
2131 SET_NETDEV_DEV(ndev, &pdev->dev);
2132 ret = register_netdev(ndev);
2133 if (ret) {
2134 dev_err(priv->dev, "error registering net device\n");
2135 ret = -ENODEV;
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302136 goto clean_ale_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002137 }
2138
Mugunthan V N9232b162013-02-11 09:52:19 +00002139 if (cpts_register(&pdev->dev, priv->cpts,
Richard Cochran2e5b38a2012-10-29 08:45:20 +00002140 data->cpts_clock_mult, data->cpts_clock_shift))
2141 dev_err(priv->dev, "error registering cpts device\n");
2142
Mugunthan V Ndf828592012-03-18 20:17:54 +00002143 cpsw_notice(priv, probe, "initialized device (regs %x, irq %d)\n",
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302144 ss_res->start, ndev->irq);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002145
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002146 if (priv->data.dual_emac) {
2147 ret = cpsw_probe_dual_emac(pdev, priv);
2148 if (ret) {
2149 cpsw_err(priv, probe, "error probe slave 2 emac interface\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302150 goto clean_ale_ret;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002151 }
2152 }
2153
Mugunthan V Ndf828592012-03-18 20:17:54 +00002154 return 0;
2155
Mugunthan V Ndf828592012-03-18 20:17:54 +00002156clean_ale_ret:
2157 cpsw_ale_destroy(priv->ale);
2158clean_dma_ret:
2159 cpdma_chan_destroy(priv->txch);
2160 cpdma_chan_destroy(priv->rxch);
2161 cpdma_ctlr_destroy(priv->dma);
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302162clean_runtime_disable_ret:
Mugunthan V Nf150bd72012-07-17 08:09:50 +00002163 pm_runtime_disable(&pdev->dev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002164clean_ndev_ret:
Sebastian Siewiord1bd9ac2013-04-24 08:48:23 +00002165 free_netdev(priv->ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002166 return ret;
2167}
2168
Bill Pemberton663e12e2012-12-03 09:23:45 -05002169static int cpsw_remove(struct platform_device *pdev)
Mugunthan V Ndf828592012-03-18 20:17:54 +00002170{
2171 struct net_device *ndev = platform_get_drvdata(pdev);
2172 struct cpsw_priv *priv = netdev_priv(ndev);
2173
Sebastian Siewiord1bd9ac2013-04-24 08:48:23 +00002174 if (priv->data.dual_emac)
2175 unregister_netdev(cpsw_get_slave_ndev(priv, 1));
2176 unregister_netdev(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002177
Mugunthan V N9232b162013-02-11 09:52:19 +00002178 cpts_unregister(priv->cpts);
Sebastian Siewiord1bd9ac2013-04-24 08:48:23 +00002179
Mugunthan V Ndf828592012-03-18 20:17:54 +00002180 cpsw_ale_destroy(priv->ale);
2181 cpdma_chan_destroy(priv->txch);
2182 cpdma_chan_destroy(priv->rxch);
2183 cpdma_ctlr_destroy(priv->dma);
Mugunthan V Nf150bd72012-07-17 08:09:50 +00002184 pm_runtime_disable(&pdev->dev);
Sebastian Siewiord1bd9ac2013-04-24 08:48:23 +00002185 if (priv->data.dual_emac)
2186 free_netdev(cpsw_get_slave_ndev(priv, 1));
Mugunthan V Ndf828592012-03-18 20:17:54 +00002187 free_netdev(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002188 return 0;
2189}
2190
2191static int cpsw_suspend(struct device *dev)
2192{
2193 struct platform_device *pdev = to_platform_device(dev);
2194 struct net_device *ndev = platform_get_drvdata(pdev);
Mugunthan V Nb90fc272013-06-21 19:15:09 +05302195 struct cpsw_priv *priv = netdev_priv(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002196
2197 if (netif_running(ndev))
2198 cpsw_ndo_stop(ndev);
Daniel Mack1e7a2e22013-11-15 08:29:16 +01002199
2200 for_each_slave(priv, soft_reset_slave);
2201
Mugunthan V Nf150bd72012-07-17 08:09:50 +00002202 pm_runtime_put_sync(&pdev->dev);
2203
Mugunthan V N739683b2013-06-06 23:45:14 +05302204 /* Select sleep pin state */
2205 pinctrl_pm_select_sleep_state(&pdev->dev);
2206
Mugunthan V Ndf828592012-03-18 20:17:54 +00002207 return 0;
2208}
2209
2210static int cpsw_resume(struct device *dev)
2211{
2212 struct platform_device *pdev = to_platform_device(dev);
2213 struct net_device *ndev = platform_get_drvdata(pdev);
2214
Mugunthan V Nf150bd72012-07-17 08:09:50 +00002215 pm_runtime_get_sync(&pdev->dev);
Mugunthan V N739683b2013-06-06 23:45:14 +05302216
2217 /* Select default pin state */
2218 pinctrl_pm_select_default_state(&pdev->dev);
2219
Mugunthan V Ndf828592012-03-18 20:17:54 +00002220 if (netif_running(ndev))
2221 cpsw_ndo_open(ndev);
2222 return 0;
2223}
2224
2225static const struct dev_pm_ops cpsw_pm_ops = {
2226 .suspend = cpsw_suspend,
2227 .resume = cpsw_resume,
2228};
2229
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002230static const struct of_device_id cpsw_of_mtable[] = {
2231 { .compatible = "ti,cpsw", },
2232 { /* sentinel */ },
2233};
Sebastian Siewior4bc21d42013-04-24 08:48:22 +00002234MODULE_DEVICE_TABLE(of, cpsw_of_mtable);
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002235
Mugunthan V Ndf828592012-03-18 20:17:54 +00002236static struct platform_driver cpsw_driver = {
2237 .driver = {
2238 .name = "cpsw",
2239 .owner = THIS_MODULE,
2240 .pm = &cpsw_pm_ops,
Sachin Kamat1e5c76d2013-09-30 09:55:12 +05302241 .of_match_table = cpsw_of_mtable,
Mugunthan V Ndf828592012-03-18 20:17:54 +00002242 },
2243 .probe = cpsw_probe,
Bill Pemberton663e12e2012-12-03 09:23:45 -05002244 .remove = cpsw_remove,
Mugunthan V Ndf828592012-03-18 20:17:54 +00002245};
2246
2247static int __init cpsw_init(void)
2248{
2249 return platform_driver_register(&cpsw_driver);
2250}
2251late_initcall(cpsw_init);
2252
2253static void __exit cpsw_exit(void)
2254{
2255 platform_driver_unregister(&cpsw_driver);
2256}
2257module_exit(cpsw_exit);
2258
2259MODULE_LICENSE("GPL");
2260MODULE_AUTHOR("Cyril Chemparathy <cyril@ti.com>");
2261MODULE_AUTHOR("Mugunthan V N <mugunthanvnm@ti.com>");
2262MODULE_DESCRIPTION("TI CPSW Ethernet driver");