1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17#include <linux/clk.h>
18#include <linux/io.h>
19#include <linux/iopoll.h>
20#include <linux/mdio-mux.h>
21#include <linux/mfd/syscon.h>
22#include <linux/module.h>
23#include <linux/of_device.h>
24#include <linux/of_mdio.h>
25#include <linux/of_net.h>
26#include <linux/phy.h>
27#include <linux/platform_device.h>
28#include <linux/regulator/consumer.h>
29#include <linux/regmap.h>
30#include <linux/stmmac.h>
31
32#include "stmmac.h"
33#include "stmmac_platform.h"
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57struct emac_variant {
58 u32 default_syscon_value;
59 const struct reg_field *syscon_field;
60 bool soc_has_internal_phy;
61 bool support_mii;
62 bool support_rmii;
63 bool support_rgmii;
64 u8 rx_delay_max;
65 u8 tx_delay_max;
66};
67
68
69
70
71
72
73
74
75
76
77
78struct sunxi_priv_data {
79 struct clk *tx_clk;
80 struct clk *ephy_clk;
81 struct regulator *regulator;
82 struct reset_control *rst_ephy;
83 const struct emac_variant *variant;
84 struct regmap_field *regmap_field;
85 bool internal_phy_powered;
86 void *mux_handle;
87};
88
89
90static const struct reg_field sun8i_syscon_reg_field = {
91 .reg = 0x30,
92 .lsb = 0,
93 .msb = 31,
94};
95
96
97static const struct reg_field sun8i_ccu_reg_field = {
98 .reg = 0x164,
99 .lsb = 0,
100 .msb = 31,
101};
102
103static const struct emac_variant emac_variant_h3 = {
104 .default_syscon_value = 0x58000,
105 .syscon_field = &sun8i_syscon_reg_field,
106 .soc_has_internal_phy = true,
107 .support_mii = true,
108 .support_rmii = true,
109 .support_rgmii = true,
110 .rx_delay_max = 31,
111 .tx_delay_max = 7,
112};
113
114static const struct emac_variant emac_variant_v3s = {
115 .default_syscon_value = 0x38000,
116 .syscon_field = &sun8i_syscon_reg_field,
117 .soc_has_internal_phy = true,
118 .support_mii = true
119};
120
121static const struct emac_variant emac_variant_a83t = {
122 .default_syscon_value = 0,
123 .syscon_field = &sun8i_syscon_reg_field,
124 .soc_has_internal_phy = false,
125 .support_mii = true,
126 .support_rgmii = true,
127 .rx_delay_max = 31,
128 .tx_delay_max = 7,
129};
130
131static const struct emac_variant emac_variant_r40 = {
132 .default_syscon_value = 0,
133 .syscon_field = &sun8i_ccu_reg_field,
134 .support_mii = true,
135 .support_rgmii = true,
136 .rx_delay_max = 7,
137};
138
139static const struct emac_variant emac_variant_a64 = {
140 .default_syscon_value = 0,
141 .syscon_field = &sun8i_syscon_reg_field,
142 .soc_has_internal_phy = false,
143 .support_mii = true,
144 .support_rmii = true,
145 .support_rgmii = true,
146 .rx_delay_max = 31,
147 .tx_delay_max = 7,
148};
149
150#define EMAC_BASIC_CTL0 0x00
151#define EMAC_BASIC_CTL1 0x04
152#define EMAC_INT_STA 0x08
153#define EMAC_INT_EN 0x0C
154#define EMAC_TX_CTL0 0x10
155#define EMAC_TX_CTL1 0x14
156#define EMAC_TX_FLOW_CTL 0x1C
157#define EMAC_TX_DESC_LIST 0x20
158#define EMAC_RX_CTL0 0x24
159#define EMAC_RX_CTL1 0x28
160#define EMAC_RX_DESC_LIST 0x34
161#define EMAC_RX_FRM_FLT 0x38
162#define EMAC_MDIO_CMD 0x48
163#define EMAC_MDIO_DATA 0x4C
164#define EMAC_MACADDR_HI(reg) (0x50 + (reg) * 8)
165#define EMAC_MACADDR_LO(reg) (0x54 + (reg) * 8)
166#define EMAC_TX_DMA_STA 0xB0
167#define EMAC_TX_CUR_DESC 0xB4
168#define EMAC_TX_CUR_BUF 0xB8
169#define EMAC_RX_DMA_STA 0xC0
170#define EMAC_RX_CUR_DESC 0xC4
171#define EMAC_RX_CUR_BUF 0xC8
172
173
174#define EMAC_DUPLEX_FULL BIT(0)
175#define EMAC_LOOPBACK BIT(1)
176#define EMAC_SPEED_1000 0
177#define EMAC_SPEED_100 (0x03 << 2)
178#define EMAC_SPEED_10 (0x02 << 2)
179
180
181#define EMAC_BURSTLEN_SHIFT 24
182
183
184#define EMAC_FRM_FLT_RXALL BIT(0)
185#define EMAC_FRM_FLT_CTL BIT(13)
186#define EMAC_FRM_FLT_MULTICAST BIT(16)
187
188
189#define EMAC_RX_MD BIT(1)
190#define EMAC_RX_TH_MASK GENMASK(4, 5)
191#define EMAC_RX_TH_32 0
192#define EMAC_RX_TH_64 (0x1 << 4)
193#define EMAC_RX_TH_96 (0x2 << 4)
194#define EMAC_RX_TH_128 (0x3 << 4)
195#define EMAC_RX_DMA_EN BIT(30)
196#define EMAC_RX_DMA_START BIT(31)
197
198
199#define EMAC_TX_MD BIT(1)
200#define EMAC_TX_NEXT_FRM BIT(2)
201#define EMAC_TX_TH_MASK GENMASK(8, 10)
202#define EMAC_TX_TH_64 0
203#define EMAC_TX_TH_128 (0x1 << 8)
204#define EMAC_TX_TH_192 (0x2 << 8)
205#define EMAC_TX_TH_256 (0x3 << 8)
206#define EMAC_TX_DMA_EN BIT(30)
207#define EMAC_TX_DMA_START BIT(31)
208
209
210#define EMAC_RX_RECEIVER_EN BIT(31)
211#define EMAC_RX_DO_CRC BIT(27)
212#define EMAC_RX_FLOW_CTL_EN BIT(16)
213
214
215#define EMAC_TX_TRANSMITTER_EN BIT(31)
216
217
218#define EMAC_TX_FLOW_CTL_EN BIT(0)
219
220
221#define EMAC_TX_INT BIT(0)
222#define EMAC_TX_DMA_STOP_INT BIT(1)
223#define EMAC_TX_BUF_UA_INT BIT(2)
224#define EMAC_TX_TIMEOUT_INT BIT(3)
225#define EMAC_TX_UNDERFLOW_INT BIT(4)
226#define EMAC_TX_EARLY_INT BIT(5)
227#define EMAC_RX_INT BIT(8)
228#define EMAC_RX_BUF_UA_INT BIT(9)
229#define EMAC_RX_DMA_STOP_INT BIT(10)
230#define EMAC_RX_TIMEOUT_INT BIT(11)
231#define EMAC_RX_OVERFLOW_INT BIT(12)
232#define EMAC_RX_EARLY_INT BIT(13)
233#define EMAC_RGMII_STA_INT BIT(16)
234
235#define MAC_ADDR_TYPE_DST BIT(31)
236
237
238#define H3_EPHY_ADDR_SHIFT 20
239#define H3_EPHY_CLK_SEL BIT(18)
240#define H3_EPHY_LED_POL BIT(17)
241#define H3_EPHY_SHUTDOWN BIT(16)
242#define H3_EPHY_SELECT BIT(15)
243#define H3_EPHY_MUX_MASK (H3_EPHY_SHUTDOWN | H3_EPHY_SELECT)
244#define DWMAC_SUN8I_MDIO_MUX_INTERNAL_ID 1
245#define DWMAC_SUN8I_MDIO_MUX_EXTERNAL_ID 2
246
247
248#define SYSCON_RMII_EN BIT(13)
249
250
251#define SYSCON_ETXDC_SHIFT 10
252#define SYSCON_ERXDC_SHIFT 5
253
254#define SYSCON_EPIT BIT(2)
255#define SYSCON_ETCS_MASK GENMASK(1, 0)
256#define SYSCON_ETCS_MII 0x0
257#define SYSCON_ETCS_EXT_GMII 0x1
258#define SYSCON_ETCS_INT_GMII 0x2
259
260
261
262
263static int sun8i_dwmac_dma_reset(void __iomem *ioaddr)
264{
265 writel(0, ioaddr + EMAC_RX_CTL1);
266 writel(0, ioaddr + EMAC_TX_CTL1);
267 writel(0, ioaddr + EMAC_RX_FRM_FLT);
268 writel(0, ioaddr + EMAC_RX_DESC_LIST);
269 writel(0, ioaddr + EMAC_TX_DESC_LIST);
270 writel(0, ioaddr + EMAC_INT_EN);
271 writel(0x1FFFFFF, ioaddr + EMAC_INT_STA);
272 return 0;
273}
274
275
276
277
278static void sun8i_dwmac_dma_init(void __iomem *ioaddr,
279 struct stmmac_dma_cfg *dma_cfg, int atds)
280{
281 writel(EMAC_RX_INT | EMAC_TX_INT, ioaddr + EMAC_INT_EN);
282 writel(0x1FFFFFF, ioaddr + EMAC_INT_STA);
283}
284
285static void sun8i_dwmac_dma_init_rx(void __iomem *ioaddr,
286 struct stmmac_dma_cfg *dma_cfg,
287 u32 dma_rx_phy, u32 chan)
288{
289
290 writel(dma_rx_phy, ioaddr + EMAC_RX_DESC_LIST);
291}
292
293static void sun8i_dwmac_dma_init_tx(void __iomem *ioaddr,
294 struct stmmac_dma_cfg *dma_cfg,
295 u32 dma_tx_phy, u32 chan)
296{
297
298 writel(dma_tx_phy, ioaddr + EMAC_TX_DESC_LIST);
299}
300
301
302
303
304
305static void sun8i_dwmac_dump_regs(void __iomem *ioaddr, u32 *reg_space)
306{
307 int i;
308
309 for (i = 0; i < 0xC8; i += 4) {
310 if (i == 0x32 || i == 0x3C)
311 continue;
312 reg_space[i / 4] = readl(ioaddr + i);
313 }
314}
315
316
317
318
319
320static void sun8i_dwmac_dump_mac_regs(struct mac_device_info *hw,
321 u32 *reg_space)
322{
323 int i;
324 void __iomem *ioaddr = hw->pcsr;
325
326 for (i = 0; i < 0xC8; i += 4) {
327 if (i == 0x32 || i == 0x3C)
328 continue;
329 reg_space[i / 4] = readl(ioaddr + i);
330 }
331}
332
333static void sun8i_dwmac_enable_dma_irq(void __iomem *ioaddr, u32 chan)
334{
335 writel(EMAC_RX_INT | EMAC_TX_INT, ioaddr + EMAC_INT_EN);
336}
337
338static void sun8i_dwmac_disable_dma_irq(void __iomem *ioaddr, u32 chan)
339{
340 writel(0, ioaddr + EMAC_INT_EN);
341}
342
343static void sun8i_dwmac_dma_start_tx(void __iomem *ioaddr, u32 chan)
344{
345 u32 v;
346
347 v = readl(ioaddr + EMAC_TX_CTL1);
348 v |= EMAC_TX_DMA_START;
349 v |= EMAC_TX_DMA_EN;
350 writel(v, ioaddr + EMAC_TX_CTL1);
351}
352
353static void sun8i_dwmac_enable_dma_transmission(void __iomem *ioaddr)
354{
355 u32 v;
356
357 v = readl(ioaddr + EMAC_TX_CTL1);
358 v |= EMAC_TX_DMA_START;
359 v |= EMAC_TX_DMA_EN;
360 writel(v, ioaddr + EMAC_TX_CTL1);
361}
362
363static void sun8i_dwmac_dma_stop_tx(void __iomem *ioaddr, u32 chan)
364{
365 u32 v;
366
367 v = readl(ioaddr + EMAC_TX_CTL1);
368 v &= ~EMAC_TX_DMA_EN;
369 writel(v, ioaddr + EMAC_TX_CTL1);
370}
371
372static void sun8i_dwmac_dma_start_rx(void __iomem *ioaddr, u32 chan)
373{
374 u32 v;
375
376 v = readl(ioaddr + EMAC_RX_CTL1);
377 v |= EMAC_RX_DMA_START;
378 v |= EMAC_RX_DMA_EN;
379 writel(v, ioaddr + EMAC_RX_CTL1);
380}
381
382static void sun8i_dwmac_dma_stop_rx(void __iomem *ioaddr, u32 chan)
383{
384 u32 v;
385
386 v = readl(ioaddr + EMAC_RX_CTL1);
387 v &= ~EMAC_RX_DMA_EN;
388 writel(v, ioaddr + EMAC_RX_CTL1);
389}
390
391static int sun8i_dwmac_dma_interrupt(void __iomem *ioaddr,
392 struct stmmac_extra_stats *x, u32 chan)
393{
394 u32 v;
395 int ret = 0;
396
397 v = readl(ioaddr + EMAC_INT_STA);
398
399 if (v & EMAC_TX_INT) {
400 ret |= handle_tx;
401 x->tx_normal_irq_n++;
402 }
403
404 if (v & EMAC_TX_DMA_STOP_INT)
405 x->tx_process_stopped_irq++;
406
407 if (v & EMAC_TX_BUF_UA_INT)
408 x->tx_process_stopped_irq++;
409
410 if (v & EMAC_TX_TIMEOUT_INT)
411 ret |= tx_hard_error;
412
413 if (v & EMAC_TX_UNDERFLOW_INT) {
414 ret |= tx_hard_error;
415 x->tx_undeflow_irq++;
416 }
417
418 if (v & EMAC_TX_EARLY_INT)
419 x->tx_early_irq++;
420
421 if (v & EMAC_RX_INT) {
422 ret |= handle_rx;
423 x->rx_normal_irq_n++;
424 }
425
426 if (v & EMAC_RX_BUF_UA_INT)
427 x->rx_buf_unav_irq++;
428
429 if (v & EMAC_RX_DMA_STOP_INT)
430 x->rx_process_stopped_irq++;
431
432 if (v & EMAC_RX_TIMEOUT_INT)
433 ret |= tx_hard_error;
434
435 if (v & EMAC_RX_OVERFLOW_INT) {
436 ret |= tx_hard_error;
437 x->rx_overflow_irq++;
438 }
439
440 if (v & EMAC_RX_EARLY_INT)
441 x->rx_early_irq++;
442
443 if (v & EMAC_RGMII_STA_INT)
444 x->irq_rgmii_n++;
445
446 writel(v, ioaddr + EMAC_INT_STA);
447
448 return ret;
449}
450
451static void sun8i_dwmac_dma_operation_mode_rx(void __iomem *ioaddr, int mode,
452 u32 channel, int fifosz, u8 qmode)
453{
454 u32 v;
455
456 v = readl(ioaddr + EMAC_RX_CTL1);
457 if (mode == SF_DMA_MODE) {
458 v |= EMAC_RX_MD;
459 } else {
460 v &= ~EMAC_RX_MD;
461 v &= ~EMAC_RX_TH_MASK;
462 if (mode < 32)
463 v |= EMAC_RX_TH_32;
464 else if (mode < 64)
465 v |= EMAC_RX_TH_64;
466 else if (mode < 96)
467 v |= EMAC_RX_TH_96;
468 else if (mode < 128)
469 v |= EMAC_RX_TH_128;
470 }
471 writel(v, ioaddr + EMAC_RX_CTL1);
472}
473
474static void sun8i_dwmac_dma_operation_mode_tx(void __iomem *ioaddr, int mode,
475 u32 channel, int fifosz, u8 qmode)
476{
477 u32 v;
478
479 v = readl(ioaddr + EMAC_TX_CTL1);
480 if (mode == SF_DMA_MODE) {
481 v |= EMAC_TX_MD;
482
483
484
485
486
487 v |= EMAC_TX_NEXT_FRM;
488 } else {
489 v &= ~EMAC_TX_MD;
490 v &= ~EMAC_TX_TH_MASK;
491 if (mode < 64)
492 v |= EMAC_TX_TH_64;
493 else if (mode < 128)
494 v |= EMAC_TX_TH_128;
495 else if (mode < 192)
496 v |= EMAC_TX_TH_192;
497 else if (mode < 256)
498 v |= EMAC_TX_TH_256;
499 }
500 writel(v, ioaddr + EMAC_TX_CTL1);
501}
502
503static const struct stmmac_dma_ops sun8i_dwmac_dma_ops = {
504 .reset = sun8i_dwmac_dma_reset,
505 .init = sun8i_dwmac_dma_init,
506 .init_rx_chan = sun8i_dwmac_dma_init_rx,
507 .init_tx_chan = sun8i_dwmac_dma_init_tx,
508 .dump_regs = sun8i_dwmac_dump_regs,
509 .dma_rx_mode = sun8i_dwmac_dma_operation_mode_rx,
510 .dma_tx_mode = sun8i_dwmac_dma_operation_mode_tx,
511 .enable_dma_transmission = sun8i_dwmac_enable_dma_transmission,
512 .enable_dma_irq = sun8i_dwmac_enable_dma_irq,
513 .disable_dma_irq = sun8i_dwmac_disable_dma_irq,
514 .start_tx = sun8i_dwmac_dma_start_tx,
515 .stop_tx = sun8i_dwmac_dma_stop_tx,
516 .start_rx = sun8i_dwmac_dma_start_rx,
517 .stop_rx = sun8i_dwmac_dma_stop_rx,
518 .dma_interrupt = sun8i_dwmac_dma_interrupt,
519};
520
521static int sun8i_dwmac_init(struct platform_device *pdev, void *priv)
522{
523 struct sunxi_priv_data *gmac = priv;
524 int ret;
525
526 if (gmac->regulator) {
527 ret = regulator_enable(gmac->regulator);
528 if (ret) {
529 dev_err(&pdev->dev, "Fail to enable regulator\n");
530 return ret;
531 }
532 }
533
534 ret = clk_prepare_enable(gmac->tx_clk);
535 if (ret) {
536 if (gmac->regulator)
537 regulator_disable(gmac->regulator);
538 dev_err(&pdev->dev, "Could not enable AHB clock\n");
539 return ret;
540 }
541
542 return 0;
543}
544
545static void sun8i_dwmac_core_init(struct mac_device_info *hw,
546 struct net_device *dev)
547{
548 void __iomem *ioaddr = hw->pcsr;
549 u32 v;
550
551 v = (8 << EMAC_BURSTLEN_SHIFT);
552 writel(v, ioaddr + EMAC_BASIC_CTL1);
553}
554
555static void sun8i_dwmac_set_mac(void __iomem *ioaddr, bool enable)
556{
557 u32 t, r;
558
559 t = readl(ioaddr + EMAC_TX_CTL0);
560 r = readl(ioaddr + EMAC_RX_CTL0);
561 if (enable) {
562 t |= EMAC_TX_TRANSMITTER_EN;
563 r |= EMAC_RX_RECEIVER_EN;
564 } else {
565 t &= ~EMAC_TX_TRANSMITTER_EN;
566 r &= ~EMAC_RX_RECEIVER_EN;
567 }
568 writel(t, ioaddr + EMAC_TX_CTL0);
569 writel(r, ioaddr + EMAC_RX_CTL0);
570}
571
572
573
574
575
576static void sun8i_dwmac_set_umac_addr(struct mac_device_info *hw,
577 unsigned char *addr,
578 unsigned int reg_n)
579{
580 void __iomem *ioaddr = hw->pcsr;
581 u32 v;
582
583 if (!addr) {
584 writel(0, ioaddr + EMAC_MACADDR_HI(reg_n));
585 return;
586 }
587
588 stmmac_set_mac_addr(ioaddr, addr, EMAC_MACADDR_HI(reg_n),
589 EMAC_MACADDR_LO(reg_n));
590 if (reg_n > 0) {
591 v = readl(ioaddr + EMAC_MACADDR_HI(reg_n));
592 v |= MAC_ADDR_TYPE_DST;
593 writel(v, ioaddr + EMAC_MACADDR_HI(reg_n));
594 }
595}
596
597static void sun8i_dwmac_get_umac_addr(struct mac_device_info *hw,
598 unsigned char *addr,
599 unsigned int reg_n)
600{
601 void __iomem *ioaddr = hw->pcsr;
602
603 stmmac_get_mac_addr(ioaddr, addr, EMAC_MACADDR_HI(reg_n),
604 EMAC_MACADDR_LO(reg_n));
605}
606
607
608static int sun8i_dwmac_rx_ipc_enable(struct mac_device_info *hw)
609{
610 void __iomem *ioaddr = hw->pcsr;
611 u32 v;
612
613 v = readl(ioaddr + EMAC_RX_CTL0);
614 v |= EMAC_RX_DO_CRC;
615 writel(v, ioaddr + EMAC_RX_CTL0);
616
617 return 1;
618}
619
620static void sun8i_dwmac_set_filter(struct mac_device_info *hw,
621 struct net_device *dev)
622{
623 void __iomem *ioaddr = hw->pcsr;
624 u32 v;
625 int i = 1;
626 struct netdev_hw_addr *ha;
627 int macaddrs = netdev_uc_count(dev) + netdev_mc_count(dev) + 1;
628
629 v = EMAC_FRM_FLT_CTL;
630
631 if (dev->flags & IFF_PROMISC) {
632 v = EMAC_FRM_FLT_RXALL;
633 } else if (dev->flags & IFF_ALLMULTI) {
634 v |= EMAC_FRM_FLT_MULTICAST;
635 } else if (macaddrs <= hw->unicast_filter_entries) {
636 if (!netdev_mc_empty(dev)) {
637 netdev_for_each_mc_addr(ha, dev) {
638 sun8i_dwmac_set_umac_addr(hw, ha->addr, i);
639 i++;
640 }
641 }
642 if (!netdev_uc_empty(dev)) {
643 netdev_for_each_uc_addr(ha, dev) {
644 sun8i_dwmac_set_umac_addr(hw, ha->addr, i);
645 i++;
646 }
647 }
648 } else {
649 netdev_info(dev, "Too many address, switching to promiscuous\n");
650 v = EMAC_FRM_FLT_RXALL;
651 }
652
653
654 while (i < hw->unicast_filter_entries)
655 sun8i_dwmac_set_umac_addr(hw, NULL, i++);
656
657 writel(v, ioaddr + EMAC_RX_FRM_FLT);
658}
659
660static void sun8i_dwmac_flow_ctrl(struct mac_device_info *hw,
661 unsigned int duplex, unsigned int fc,
662 unsigned int pause_time, u32 tx_cnt)
663{
664 void __iomem *ioaddr = hw->pcsr;
665 u32 v;
666
667 v = readl(ioaddr + EMAC_RX_CTL0);
668 if (fc == FLOW_AUTO)
669 v |= EMAC_RX_FLOW_CTL_EN;
670 else
671 v &= ~EMAC_RX_FLOW_CTL_EN;
672 writel(v, ioaddr + EMAC_RX_CTL0);
673
674 v = readl(ioaddr + EMAC_TX_FLOW_CTL);
675 if (fc == FLOW_AUTO)
676 v |= EMAC_TX_FLOW_CTL_EN;
677 else
678 v &= ~EMAC_TX_FLOW_CTL_EN;
679 writel(v, ioaddr + EMAC_TX_FLOW_CTL);
680}
681
682static int sun8i_dwmac_reset(struct stmmac_priv *priv)
683{
684 u32 v;
685 int err;
686
687 v = readl(priv->ioaddr + EMAC_BASIC_CTL1);
688 writel(v | 0x01, priv->ioaddr + EMAC_BASIC_CTL1);
689
690
691
692
693 err = readl_poll_timeout(priv->ioaddr + EMAC_BASIC_CTL1, v,
694 !(v & 0x01), 100, 100000);
695
696 if (err) {
697 dev_err(priv->device, "EMAC reset timeout\n");
698 return -EFAULT;
699 }
700 return 0;
701}
702
703
704static int get_ephy_nodes(struct stmmac_priv *priv)
705{
706 struct sunxi_priv_data *gmac = priv->plat->bsp_priv;
707 struct device_node *mdio_mux, *iphynode;
708 struct device_node *mdio_internal;
709 int ret;
710
711 mdio_mux = of_get_child_by_name(priv->device->of_node, "mdio-mux");
712 if (!mdio_mux) {
713 dev_err(priv->device, "Cannot get mdio-mux node\n");
714 return -ENODEV;
715 }
716
717 mdio_internal = of_get_compatible_child(mdio_mux,
718 "allwinner,sun8i-h3-mdio-internal");
719 of_node_put(mdio_mux);
720 if (!mdio_internal) {
721 dev_err(priv->device, "Cannot get internal_mdio node\n");
722 return -ENODEV;
723 }
724
725
726 for_each_child_of_node(mdio_internal, iphynode) {
727 gmac->ephy_clk = of_clk_get(iphynode, 0);
728 if (IS_ERR(gmac->ephy_clk))
729 continue;
730 gmac->rst_ephy = of_reset_control_get_exclusive(iphynode, NULL);
731 if (IS_ERR(gmac->rst_ephy)) {
732 ret = PTR_ERR(gmac->rst_ephy);
733 if (ret == -EPROBE_DEFER) {
734 of_node_put(iphynode);
735 of_node_put(mdio_internal);
736 return ret;
737 }
738 continue;
739 }
740 dev_info(priv->device, "Found internal PHY node\n");
741 of_node_put(iphynode);
742 of_node_put(mdio_internal);
743 return 0;
744 }
745
746 of_node_put(mdio_internal);
747 return -ENODEV;
748}
749
750static int sun8i_dwmac_power_internal_phy(struct stmmac_priv *priv)
751{
752 struct sunxi_priv_data *gmac = priv->plat->bsp_priv;
753 int ret;
754
755 if (gmac->internal_phy_powered) {
756 dev_warn(priv->device, "Internal PHY already powered\n");
757 return 0;
758 }
759
760 dev_info(priv->device, "Powering internal PHY\n");
761 ret = clk_prepare_enable(gmac->ephy_clk);
762 if (ret) {
763 dev_err(priv->device, "Cannot enable internal PHY\n");
764 return ret;
765 }
766
767
768
769
770 reset_control_assert(gmac->rst_ephy);
771
772 ret = reset_control_deassert(gmac->rst_ephy);
773 if (ret) {
774 dev_err(priv->device, "Cannot deassert internal phy\n");
775 clk_disable_unprepare(gmac->ephy_clk);
776 return ret;
777 }
778
779 gmac->internal_phy_powered = true;
780
781 return 0;
782}
783
784static int sun8i_dwmac_unpower_internal_phy(struct sunxi_priv_data *gmac)
785{
786 if (!gmac->internal_phy_powered)
787 return 0;
788
789 clk_disable_unprepare(gmac->ephy_clk);
790 reset_control_assert(gmac->rst_ephy);
791 gmac->internal_phy_powered = false;
792 return 0;
793}
794
795
796
797
798
799
800
801
802
803
804
805static int mdio_mux_syscon_switch_fn(int current_child, int desired_child,
806 void *data)
807{
808 struct stmmac_priv *priv = data;
809 struct sunxi_priv_data *gmac = priv->plat->bsp_priv;
810 u32 reg, val;
811 int ret = 0;
812 bool need_power_ephy = false;
813
814 if (current_child ^ desired_child) {
815 regmap_field_read(gmac->regmap_field, ®);
816 switch (desired_child) {
817 case DWMAC_SUN8I_MDIO_MUX_INTERNAL_ID:
818 dev_info(priv->device, "Switch mux to internal PHY");
819 val = (reg & ~H3_EPHY_MUX_MASK) | H3_EPHY_SELECT;
820
821 need_power_ephy = true;
822 break;
823 case DWMAC_SUN8I_MDIO_MUX_EXTERNAL_ID:
824 dev_info(priv->device, "Switch mux to external PHY");
825 val = (reg & ~H3_EPHY_MUX_MASK) | H3_EPHY_SHUTDOWN;
826 need_power_ephy = false;
827 break;
828 default:
829 dev_err(priv->device, "Invalid child ID %x\n",
830 desired_child);
831 return -EINVAL;
832 }
833 regmap_field_write(gmac->regmap_field, val);
834 if (need_power_ephy) {
835 ret = sun8i_dwmac_power_internal_phy(priv);
836 if (ret)
837 return ret;
838 } else {
839 sun8i_dwmac_unpower_internal_phy(gmac);
840 }
841
842
843
844 ret = sun8i_dwmac_reset(priv);
845 }
846 return ret;
847}
848
849static int sun8i_dwmac_register_mdio_mux(struct stmmac_priv *priv)
850{
851 int ret;
852 struct device_node *mdio_mux;
853 struct sunxi_priv_data *gmac = priv->plat->bsp_priv;
854
855 mdio_mux = of_get_child_by_name(priv->device->of_node, "mdio-mux");
856 if (!mdio_mux)
857 return -ENODEV;
858
859 ret = mdio_mux_init(priv->device, mdio_mux, mdio_mux_syscon_switch_fn,
860 &gmac->mux_handle, priv, priv->mii);
861 return ret;
862}
863
864static int sun8i_dwmac_set_syscon(struct stmmac_priv *priv)
865{
866 struct sunxi_priv_data *gmac = priv->plat->bsp_priv;
867 struct device_node *node = priv->device->of_node;
868 int ret;
869 u32 reg, val;
870
871 regmap_field_read(gmac->regmap_field, &val);
872 reg = gmac->variant->default_syscon_value;
873 if (reg != val)
874 dev_warn(priv->device,
875 "Current syscon value is not the default %x (expect %x)\n",
876 val, reg);
877
878 if (gmac->variant->soc_has_internal_phy) {
879 if (of_property_read_bool(node, "allwinner,leds-active-low"))
880 reg |= H3_EPHY_LED_POL;
881 else
882 reg &= ~H3_EPHY_LED_POL;
883
884
885 reg |= H3_EPHY_CLK_SEL;
886
887 ret = of_mdio_parse_addr(priv->device, priv->plat->phy_node);
888 if (ret < 0) {
889 dev_err(priv->device, "Could not parse MDIO addr\n");
890 return ret;
891 }
892
893
894
895 reg |= 1 << H3_EPHY_ADDR_SHIFT;
896 }
897
898 if (!of_property_read_u32(node, "allwinner,tx-delay-ps", &val)) {
899 if (val % 100) {
900 dev_err(priv->device, "tx-delay must be a multiple of 100\n");
901 return -EINVAL;
902 }
903 val /= 100;
904 dev_dbg(priv->device, "set tx-delay to %x\n", val);
905 if (val <= gmac->variant->tx_delay_max) {
906 reg &= ~(gmac->variant->tx_delay_max <<
907 SYSCON_ETXDC_SHIFT);
908 reg |= (val << SYSCON_ETXDC_SHIFT);
909 } else {
910 dev_err(priv->device, "Invalid TX clock delay: %d\n",
911 val);
912 return -EINVAL;
913 }
914 }
915
916 if (!of_property_read_u32(node, "allwinner,rx-delay-ps", &val)) {
917 if (val % 100) {
918 dev_err(priv->device, "rx-delay must be a multiple of 100\n");
919 return -EINVAL;
920 }
921 val /= 100;
922 dev_dbg(priv->device, "set rx-delay to %x\n", val);
923 if (val <= gmac->variant->rx_delay_max) {
924 reg &= ~(gmac->variant->rx_delay_max <<
925 SYSCON_ERXDC_SHIFT);
926 reg |= (val << SYSCON_ERXDC_SHIFT);
927 } else {
928 dev_err(priv->device, "Invalid RX clock delay: %d\n",
929 val);
930 return -EINVAL;
931 }
932 }
933
934
935 reg &= ~(SYSCON_ETCS_MASK | SYSCON_EPIT);
936 if (gmac->variant->support_rmii)
937 reg &= ~SYSCON_RMII_EN;
938
939 switch (priv->plat->interface) {
940 case PHY_INTERFACE_MODE_MII:
941
942 break;
943 case PHY_INTERFACE_MODE_RGMII:
944 reg |= SYSCON_EPIT | SYSCON_ETCS_INT_GMII;
945 break;
946 case PHY_INTERFACE_MODE_RMII:
947 reg |= SYSCON_RMII_EN | SYSCON_ETCS_EXT_GMII;
948 break;
949 default:
950 dev_err(priv->device, "Unsupported interface mode: %s",
951 phy_modes(priv->plat->interface));
952 return -EINVAL;
953 }
954
955 regmap_field_write(gmac->regmap_field, reg);
956
957 return 0;
958}
959
960static void sun8i_dwmac_unset_syscon(struct sunxi_priv_data *gmac)
961{
962 u32 reg = gmac->variant->default_syscon_value;
963
964 regmap_field_write(gmac->regmap_field, reg);
965}
966
967static void sun8i_dwmac_exit(struct platform_device *pdev, void *priv)
968{
969 struct sunxi_priv_data *gmac = priv;
970
971 if (gmac->variant->soc_has_internal_phy) {
972
973 if (gmac->mux_handle)
974 mdio_mux_uninit(gmac->mux_handle);
975 if (gmac->internal_phy_powered)
976 sun8i_dwmac_unpower_internal_phy(gmac);
977 }
978
979 sun8i_dwmac_unset_syscon(gmac);
980
981 reset_control_put(gmac->rst_ephy);
982
983 clk_disable_unprepare(gmac->tx_clk);
984
985 if (gmac->regulator)
986 regulator_disable(gmac->regulator);
987}
988
989static const struct stmmac_ops sun8i_dwmac_ops = {
990 .core_init = sun8i_dwmac_core_init,
991 .set_mac = sun8i_dwmac_set_mac,
992 .dump_regs = sun8i_dwmac_dump_mac_regs,
993 .rx_ipc = sun8i_dwmac_rx_ipc_enable,
994 .set_filter = sun8i_dwmac_set_filter,
995 .flow_ctrl = sun8i_dwmac_flow_ctrl,
996 .set_umac_addr = sun8i_dwmac_set_umac_addr,
997 .get_umac_addr = sun8i_dwmac_get_umac_addr,
998};
999
1000static struct mac_device_info *sun8i_dwmac_setup(void *ppriv)
1001{
1002 struct mac_device_info *mac;
1003 struct stmmac_priv *priv = ppriv;
1004 int ret;
1005
1006 mac = devm_kzalloc(priv->device, sizeof(*mac), GFP_KERNEL);
1007 if (!mac)
1008 return NULL;
1009
1010 ret = sun8i_dwmac_set_syscon(priv);
1011 if (ret)
1012 return NULL;
1013
1014 mac->pcsr = priv->ioaddr;
1015 mac->mac = &sun8i_dwmac_ops;
1016 mac->dma = &sun8i_dwmac_dma_ops;
1017
1018
1019
1020
1021
1022 mac->link.speed_mask = GENMASK(3, 2) | EMAC_LOOPBACK;
1023 mac->link.speed10 = EMAC_SPEED_10;
1024 mac->link.speed100 = EMAC_SPEED_100;
1025 mac->link.speed1000 = EMAC_SPEED_1000;
1026 mac->link.duplex = EMAC_DUPLEX_FULL;
1027 mac->mii.addr = EMAC_MDIO_CMD;
1028 mac->mii.data = EMAC_MDIO_DATA;
1029 mac->mii.reg_shift = 4;
1030 mac->mii.reg_mask = GENMASK(8, 4);
1031 mac->mii.addr_shift = 12;
1032 mac->mii.addr_mask = GENMASK(16, 12);
1033 mac->mii.clk_csr_shift = 20;
1034 mac->mii.clk_csr_mask = GENMASK(22, 20);
1035 mac->unicast_filter_entries = 8;
1036
1037
1038 priv->synopsys_id = 0;
1039
1040 return mac;
1041}
1042
1043static struct regmap *sun8i_dwmac_get_syscon_from_dev(struct device_node *node)
1044{
1045 struct device_node *syscon_node;
1046 struct platform_device *syscon_pdev;
1047 struct regmap *regmap = NULL;
1048
1049 syscon_node = of_parse_phandle(node, "syscon", 0);
1050 if (!syscon_node)
1051 return ERR_PTR(-ENODEV);
1052
1053 syscon_pdev = of_find_device_by_node(syscon_node);
1054 if (!syscon_pdev) {
1055
1056 regmap = ERR_PTR(-EPROBE_DEFER);
1057 goto out_put_node;
1058 }
1059
1060
1061 regmap = dev_get_regmap(&syscon_pdev->dev, NULL);
1062 if (!regmap)
1063 regmap = ERR_PTR(-EINVAL);
1064
1065 platform_device_put(syscon_pdev);
1066out_put_node:
1067 of_node_put(syscon_node);
1068 return regmap;
1069}
1070
1071static int sun8i_dwmac_probe(struct platform_device *pdev)
1072{
1073 struct plat_stmmacenet_data *plat_dat;
1074 struct stmmac_resources stmmac_res;
1075 struct sunxi_priv_data *gmac;
1076 struct device *dev = &pdev->dev;
1077 int ret;
1078 struct stmmac_priv *priv;
1079 struct net_device *ndev;
1080 struct regmap *regmap;
1081
1082 ret = stmmac_get_platform_resources(pdev, &stmmac_res);
1083 if (ret)
1084 return ret;
1085
1086 plat_dat = stmmac_probe_config_dt(pdev, &stmmac_res.mac);
1087 if (IS_ERR(plat_dat))
1088 return PTR_ERR(plat_dat);
1089
1090 gmac = devm_kzalloc(dev, sizeof(*gmac), GFP_KERNEL);
1091 if (!gmac)
1092 return -ENOMEM;
1093
1094 gmac->variant = of_device_get_match_data(&pdev->dev);
1095 if (!gmac->variant) {
1096 dev_err(&pdev->dev, "Missing dwmac-sun8i variant\n");
1097 return -EINVAL;
1098 }
1099
1100 gmac->tx_clk = devm_clk_get(dev, "stmmaceth");
1101 if (IS_ERR(gmac->tx_clk)) {
1102 dev_err(dev, "Could not get TX clock\n");
1103 return PTR_ERR(gmac->tx_clk);
1104 }
1105
1106
1107 gmac->regulator = devm_regulator_get_optional(dev, "phy");
1108 if (IS_ERR(gmac->regulator)) {
1109 if (PTR_ERR(gmac->regulator) == -EPROBE_DEFER)
1110 return -EPROBE_DEFER;
1111 dev_info(dev, "No regulator found\n");
1112 gmac->regulator = NULL;
1113 }
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132 regmap = sun8i_dwmac_get_syscon_from_dev(pdev->dev.of_node);
1133 if (IS_ERR(regmap))
1134 regmap = syscon_regmap_lookup_by_phandle(pdev->dev.of_node,
1135 "syscon");
1136 if (IS_ERR(regmap)) {
1137 ret = PTR_ERR(regmap);
1138 dev_err(&pdev->dev, "Unable to map syscon: %d\n", ret);
1139 return ret;
1140 }
1141
1142 gmac->regmap_field = devm_regmap_field_alloc(dev, regmap,
1143 *gmac->variant->syscon_field);
1144 if (IS_ERR(gmac->regmap_field)) {
1145 ret = PTR_ERR(gmac->regmap_field);
1146 dev_err(dev, "Unable to map syscon register: %d\n", ret);
1147 return ret;
1148 }
1149
1150 ret = of_get_phy_mode(dev->of_node);
1151 if (ret < 0)
1152 return -EINVAL;
1153 plat_dat->interface = ret;
1154
1155
1156
1157
1158 plat_dat->rx_coe = STMMAC_RX_COE_TYPE2;
1159 plat_dat->tx_coe = 1;
1160 plat_dat->has_sun8i = true;
1161 plat_dat->bsp_priv = gmac;
1162 plat_dat->init = sun8i_dwmac_init;
1163 plat_dat->exit = sun8i_dwmac_exit;
1164 plat_dat->setup = sun8i_dwmac_setup;
1165
1166 ret = sun8i_dwmac_init(pdev, plat_dat->bsp_priv);
1167 if (ret)
1168 return ret;
1169
1170 ret = stmmac_dvr_probe(&pdev->dev, plat_dat, &stmmac_res);
1171 if (ret)
1172 goto dwmac_exit;
1173
1174 ndev = dev_get_drvdata(&pdev->dev);
1175 priv = netdev_priv(ndev);
1176
1177
1178
1179 if (gmac->variant->soc_has_internal_phy) {
1180 ret = get_ephy_nodes(priv);
1181 if (ret)
1182 goto dwmac_exit;
1183 ret = sun8i_dwmac_register_mdio_mux(priv);
1184 if (ret) {
1185 dev_err(&pdev->dev, "Failed to register mux\n");
1186 goto dwmac_mux;
1187 }
1188 } else {
1189 ret = sun8i_dwmac_reset(priv);
1190 if (ret)
1191 goto dwmac_exit;
1192 }
1193
1194 return ret;
1195dwmac_mux:
1196 sun8i_dwmac_unset_syscon(gmac);
1197dwmac_exit:
1198 sun8i_dwmac_exit(pdev, plat_dat->bsp_priv);
1199return ret;
1200}
1201
1202static const struct of_device_id sun8i_dwmac_match[] = {
1203 { .compatible = "allwinner,sun8i-h3-emac",
1204 .data = &emac_variant_h3 },
1205 { .compatible = "allwinner,sun8i-v3s-emac",
1206 .data = &emac_variant_v3s },
1207 { .compatible = "allwinner,sun8i-a83t-emac",
1208 .data = &emac_variant_a83t },
1209 { .compatible = "allwinner,sun8i-r40-gmac",
1210 .data = &emac_variant_r40 },
1211 { .compatible = "allwinner,sun50i-a64-emac",
1212 .data = &emac_variant_a64 },
1213 { }
1214};
1215MODULE_DEVICE_TABLE(of, sun8i_dwmac_match);
1216
1217static struct platform_driver sun8i_dwmac_driver = {
1218 .probe = sun8i_dwmac_probe,
1219 .remove = stmmac_pltfr_remove,
1220 .driver = {
1221 .name = "dwmac-sun8i",
1222 .pm = &stmmac_pltfr_pm_ops,
1223 .of_match_table = sun8i_dwmac_match,
1224 },
1225};
1226module_platform_driver(sun8i_dwmac_driver);
1227
1228MODULE_AUTHOR("Corentin Labbe <clabbe.montjoie@gmail.com>");
1229MODULE_DESCRIPTION("Allwinner sun8i DWMAC specific glue layer");
1230MODULE_LICENSE("GPL");
1231