This source file includes following definitions.
- dwmac4_core_init
- dwmac4_rx_queue_enable
- dwmac4_rx_queue_priority
- dwmac4_tx_queue_priority
- dwmac4_rx_queue_routing
- dwmac4_prog_mtl_rx_algorithms
- dwmac4_prog_mtl_tx_algorithms
- dwmac4_set_mtl_tx_queue_weight
- dwmac4_map_mtl_dma
- dwmac4_config_cbs
- dwmac4_dump_regs
- dwmac4_rx_ipc_enable
- dwmac4_pmt
- dwmac4_set_umac_addr
- dwmac4_get_umac_addr
- dwmac4_set_eee_mode
- dwmac4_reset_eee_mode
- dwmac4_set_eee_pls
- dwmac4_set_eee_timer
- dwmac4_set_filter
- dwmac4_flow_ctrl
- dwmac4_ctrl_ane
- dwmac4_rane
- dwmac4_get_adv_lp
- dwmac4_phystatus
- dwmac4_irq_mtl_status
- dwmac4_irq_status
- dwmac4_debug
- dwmac4_set_mac_loopback
- dwmac4_update_vlan_hash
- dwmac4_sarc_configure
- dwmac4_enable_vlan
- dwmac4_set_arp_offload
- dwmac4_setup
1
2
3
4
5
6
7
8
9
10
11
12
13 #include <linux/crc32.h>
14 #include <linux/slab.h>
15 #include <linux/ethtool.h>
16 #include <linux/io.h>
17 #include <net/dsa.h>
18 #include "stmmac.h"
19 #include "stmmac_pcs.h"
20 #include "dwmac4.h"
21 #include "dwmac5.h"
22
23 static void dwmac4_core_init(struct mac_device_info *hw,
24 struct net_device *dev)
25 {
26 void __iomem *ioaddr = hw->pcsr;
27 u32 value = readl(ioaddr + GMAC_CONFIG);
28
29 value |= GMAC_CORE_INIT;
30
31 if (hw->ps) {
32 value |= GMAC_CONFIG_TE;
33
34 value &= hw->link.speed_mask;
35 switch (hw->ps) {
36 case SPEED_1000:
37 value |= hw->link.speed1000;
38 break;
39 case SPEED_100:
40 value |= hw->link.speed100;
41 break;
42 case SPEED_10:
43 value |= hw->link.speed10;
44 break;
45 }
46 }
47
48 writel(value, ioaddr + GMAC_CONFIG);
49
50
51 value = GMAC_INT_DEFAULT_ENABLE;
52
53 if (hw->pcs)
54 value |= GMAC_PCS_IRQ_DEFAULT;
55
56 writel(value, ioaddr + GMAC_INT_EN);
57 }
58
59 static void dwmac4_rx_queue_enable(struct mac_device_info *hw,
60 u8 mode, u32 queue)
61 {
62 void __iomem *ioaddr = hw->pcsr;
63 u32 value = readl(ioaddr + GMAC_RXQ_CTRL0);
64
65 value &= GMAC_RX_QUEUE_CLEAR(queue);
66 if (mode == MTL_QUEUE_AVB)
67 value |= GMAC_RX_AV_QUEUE_ENABLE(queue);
68 else if (mode == MTL_QUEUE_DCB)
69 value |= GMAC_RX_DCB_QUEUE_ENABLE(queue);
70
71 writel(value, ioaddr + GMAC_RXQ_CTRL0);
72 }
73
74 static void dwmac4_rx_queue_priority(struct mac_device_info *hw,
75 u32 prio, u32 queue)
76 {
77 void __iomem *ioaddr = hw->pcsr;
78 u32 base_register;
79 u32 value;
80
81 base_register = (queue < 4) ? GMAC_RXQ_CTRL2 : GMAC_RXQ_CTRL3;
82 if (queue >= 4)
83 queue -= 4;
84
85 value = readl(ioaddr + base_register);
86
87 value &= ~GMAC_RXQCTRL_PSRQX_MASK(queue);
88 value |= (prio << GMAC_RXQCTRL_PSRQX_SHIFT(queue)) &
89 GMAC_RXQCTRL_PSRQX_MASK(queue);
90 writel(value, ioaddr + base_register);
91 }
92
93 static void dwmac4_tx_queue_priority(struct mac_device_info *hw,
94 u32 prio, u32 queue)
95 {
96 void __iomem *ioaddr = hw->pcsr;
97 u32 base_register;
98 u32 value;
99
100 base_register = (queue < 4) ? GMAC_TXQ_PRTY_MAP0 : GMAC_TXQ_PRTY_MAP1;
101 if (queue >= 4)
102 queue -= 4;
103
104 value = readl(ioaddr + base_register);
105
106 value &= ~GMAC_TXQCTRL_PSTQX_MASK(queue);
107 value |= (prio << GMAC_TXQCTRL_PSTQX_SHIFT(queue)) &
108 GMAC_TXQCTRL_PSTQX_MASK(queue);
109
110 writel(value, ioaddr + base_register);
111 }
112
113 static void dwmac4_rx_queue_routing(struct mac_device_info *hw,
114 u8 packet, u32 queue)
115 {
116 void __iomem *ioaddr = hw->pcsr;
117 u32 value;
118
119 static const struct stmmac_rx_routing route_possibilities[] = {
120 { GMAC_RXQCTRL_AVCPQ_MASK, GMAC_RXQCTRL_AVCPQ_SHIFT },
121 { GMAC_RXQCTRL_PTPQ_MASK, GMAC_RXQCTRL_PTPQ_SHIFT },
122 { GMAC_RXQCTRL_DCBCPQ_MASK, GMAC_RXQCTRL_DCBCPQ_SHIFT },
123 { GMAC_RXQCTRL_UPQ_MASK, GMAC_RXQCTRL_UPQ_SHIFT },
124 { GMAC_RXQCTRL_MCBCQ_MASK, GMAC_RXQCTRL_MCBCQ_SHIFT },
125 };
126
127 value = readl(ioaddr + GMAC_RXQ_CTRL1);
128
129
130 value &= ~route_possibilities[packet - 1].reg_mask;
131 value |= (queue << route_possibilities[packet-1].reg_shift) &
132 route_possibilities[packet - 1].reg_mask;
133
134
135 if (packet == PACKET_AVCPQ) {
136 value &= ~GMAC_RXQCTRL_TACPQE;
137 value |= 0x1 << GMAC_RXQCTRL_TACPQE_SHIFT;
138 } else if (packet == PACKET_MCBCQ) {
139 value &= ~GMAC_RXQCTRL_MCBCQEN;
140 value |= 0x1 << GMAC_RXQCTRL_MCBCQEN_SHIFT;
141 }
142
143 writel(value, ioaddr + GMAC_RXQ_CTRL1);
144 }
145
146 static void dwmac4_prog_mtl_rx_algorithms(struct mac_device_info *hw,
147 u32 rx_alg)
148 {
149 void __iomem *ioaddr = hw->pcsr;
150 u32 value = readl(ioaddr + MTL_OPERATION_MODE);
151
152 value &= ~MTL_OPERATION_RAA;
153 switch (rx_alg) {
154 case MTL_RX_ALGORITHM_SP:
155 value |= MTL_OPERATION_RAA_SP;
156 break;
157 case MTL_RX_ALGORITHM_WSP:
158 value |= MTL_OPERATION_RAA_WSP;
159 break;
160 default:
161 break;
162 }
163
164 writel(value, ioaddr + MTL_OPERATION_MODE);
165 }
166
167 static void dwmac4_prog_mtl_tx_algorithms(struct mac_device_info *hw,
168 u32 tx_alg)
169 {
170 void __iomem *ioaddr = hw->pcsr;
171 u32 value = readl(ioaddr + MTL_OPERATION_MODE);
172
173 value &= ~MTL_OPERATION_SCHALG_MASK;
174 switch (tx_alg) {
175 case MTL_TX_ALGORITHM_WRR:
176 value |= MTL_OPERATION_SCHALG_WRR;
177 break;
178 case MTL_TX_ALGORITHM_WFQ:
179 value |= MTL_OPERATION_SCHALG_WFQ;
180 break;
181 case MTL_TX_ALGORITHM_DWRR:
182 value |= MTL_OPERATION_SCHALG_DWRR;
183 break;
184 case MTL_TX_ALGORITHM_SP:
185 value |= MTL_OPERATION_SCHALG_SP;
186 break;
187 default:
188 break;
189 }
190
191 writel(value, ioaddr + MTL_OPERATION_MODE);
192 }
193
194 static void dwmac4_set_mtl_tx_queue_weight(struct mac_device_info *hw,
195 u32 weight, u32 queue)
196 {
197 void __iomem *ioaddr = hw->pcsr;
198 u32 value = readl(ioaddr + MTL_TXQX_WEIGHT_BASE_ADDR(queue));
199
200 value &= ~MTL_TXQ_WEIGHT_ISCQW_MASK;
201 value |= weight & MTL_TXQ_WEIGHT_ISCQW_MASK;
202 writel(value, ioaddr + MTL_TXQX_WEIGHT_BASE_ADDR(queue));
203 }
204
205 static void dwmac4_map_mtl_dma(struct mac_device_info *hw, u32 queue, u32 chan)
206 {
207 void __iomem *ioaddr = hw->pcsr;
208 u32 value;
209
210 if (queue < 4)
211 value = readl(ioaddr + MTL_RXQ_DMA_MAP0);
212 else
213 value = readl(ioaddr + MTL_RXQ_DMA_MAP1);
214
215 if (queue == 0 || queue == 4) {
216 value &= ~MTL_RXQ_DMA_Q04MDMACH_MASK;
217 value |= MTL_RXQ_DMA_Q04MDMACH(chan);
218 } else {
219 value &= ~MTL_RXQ_DMA_QXMDMACH_MASK(queue);
220 value |= MTL_RXQ_DMA_QXMDMACH(chan, queue);
221 }
222
223 if (queue < 4)
224 writel(value, ioaddr + MTL_RXQ_DMA_MAP0);
225 else
226 writel(value, ioaddr + MTL_RXQ_DMA_MAP1);
227 }
228
229 static void dwmac4_config_cbs(struct mac_device_info *hw,
230 u32 send_slope, u32 idle_slope,
231 u32 high_credit, u32 low_credit, u32 queue)
232 {
233 void __iomem *ioaddr = hw->pcsr;
234 u32 value;
235
236 pr_debug("Queue %d configured as AVB. Parameters:\n", queue);
237 pr_debug("\tsend_slope: 0x%08x\n", send_slope);
238 pr_debug("\tidle_slope: 0x%08x\n", idle_slope);
239 pr_debug("\thigh_credit: 0x%08x\n", high_credit);
240 pr_debug("\tlow_credit: 0x%08x\n", low_credit);
241
242
243 value = readl(ioaddr + MTL_ETSX_CTRL_BASE_ADDR(queue));
244 value |= MTL_ETS_CTRL_AVALG;
245 value |= MTL_ETS_CTRL_CC;
246 writel(value, ioaddr + MTL_ETSX_CTRL_BASE_ADDR(queue));
247
248
249 value = readl(ioaddr + MTL_SEND_SLP_CREDX_BASE_ADDR(queue));
250 value &= ~MTL_SEND_SLP_CRED_SSC_MASK;
251 value |= send_slope & MTL_SEND_SLP_CRED_SSC_MASK;
252 writel(value, ioaddr + MTL_SEND_SLP_CREDX_BASE_ADDR(queue));
253
254
255 dwmac4_set_mtl_tx_queue_weight(hw, idle_slope, queue);
256
257
258 value = readl(ioaddr + MTL_HIGH_CREDX_BASE_ADDR(queue));
259 value &= ~MTL_HIGH_CRED_HC_MASK;
260 value |= high_credit & MTL_HIGH_CRED_HC_MASK;
261 writel(value, ioaddr + MTL_HIGH_CREDX_BASE_ADDR(queue));
262
263
264 value = readl(ioaddr + MTL_LOW_CREDX_BASE_ADDR(queue));
265 value &= ~MTL_HIGH_CRED_LC_MASK;
266 value |= low_credit & MTL_HIGH_CRED_LC_MASK;
267 writel(value, ioaddr + MTL_LOW_CREDX_BASE_ADDR(queue));
268 }
269
270 static void dwmac4_dump_regs(struct mac_device_info *hw, u32 *reg_space)
271 {
272 void __iomem *ioaddr = hw->pcsr;
273 int i;
274
275 for (i = 0; i < GMAC_REG_NUM; i++)
276 reg_space[i] = readl(ioaddr + i * 4);
277 }
278
279 static int dwmac4_rx_ipc_enable(struct mac_device_info *hw)
280 {
281 void __iomem *ioaddr = hw->pcsr;
282 u32 value = readl(ioaddr + GMAC_CONFIG);
283
284 if (hw->rx_csum)
285 value |= GMAC_CONFIG_IPC;
286 else
287 value &= ~GMAC_CONFIG_IPC;
288
289 writel(value, ioaddr + GMAC_CONFIG);
290
291 value = readl(ioaddr + GMAC_CONFIG);
292
293 return !!(value & GMAC_CONFIG_IPC);
294 }
295
296 static void dwmac4_pmt(struct mac_device_info *hw, unsigned long mode)
297 {
298 void __iomem *ioaddr = hw->pcsr;
299 unsigned int pmt = 0;
300 u32 config;
301
302 if (mode & WAKE_MAGIC) {
303 pr_debug("GMAC: WOL Magic frame\n");
304 pmt |= power_down | magic_pkt_en;
305 }
306 if (mode & WAKE_UCAST) {
307 pr_debug("GMAC: WOL on global unicast\n");
308 pmt |= power_down | global_unicast | wake_up_frame_en;
309 }
310
311 if (pmt) {
312
313 config = readl(ioaddr + GMAC_CONFIG);
314 config |= GMAC_CONFIG_RE;
315 writel(config, ioaddr + GMAC_CONFIG);
316 }
317 writel(pmt, ioaddr + GMAC_PMT);
318 }
319
320 static void dwmac4_set_umac_addr(struct mac_device_info *hw,
321 unsigned char *addr, unsigned int reg_n)
322 {
323 void __iomem *ioaddr = hw->pcsr;
324
325 stmmac_dwmac4_set_mac_addr(ioaddr, addr, GMAC_ADDR_HIGH(reg_n),
326 GMAC_ADDR_LOW(reg_n));
327 }
328
329 static void dwmac4_get_umac_addr(struct mac_device_info *hw,
330 unsigned char *addr, unsigned int reg_n)
331 {
332 void __iomem *ioaddr = hw->pcsr;
333
334 stmmac_dwmac4_get_mac_addr(ioaddr, addr, GMAC_ADDR_HIGH(reg_n),
335 GMAC_ADDR_LOW(reg_n));
336 }
337
338 static void dwmac4_set_eee_mode(struct mac_device_info *hw,
339 bool en_tx_lpi_clockgating)
340 {
341 void __iomem *ioaddr = hw->pcsr;
342 u32 value;
343
344
345
346
347
348 value = readl(ioaddr + GMAC4_LPI_CTRL_STATUS);
349 value |= GMAC4_LPI_CTRL_STATUS_LPIEN | GMAC4_LPI_CTRL_STATUS_LPITXA;
350
351 if (en_tx_lpi_clockgating)
352 value |= GMAC4_LPI_CTRL_STATUS_LPITCSE;
353
354 writel(value, ioaddr + GMAC4_LPI_CTRL_STATUS);
355 }
356
357 static void dwmac4_reset_eee_mode(struct mac_device_info *hw)
358 {
359 void __iomem *ioaddr = hw->pcsr;
360 u32 value;
361
362 value = readl(ioaddr + GMAC4_LPI_CTRL_STATUS);
363 value &= ~(GMAC4_LPI_CTRL_STATUS_LPIEN | GMAC4_LPI_CTRL_STATUS_LPITXA);
364 writel(value, ioaddr + GMAC4_LPI_CTRL_STATUS);
365 }
366
367 static void dwmac4_set_eee_pls(struct mac_device_info *hw, int link)
368 {
369 void __iomem *ioaddr = hw->pcsr;
370 u32 value;
371
372 value = readl(ioaddr + GMAC4_LPI_CTRL_STATUS);
373
374 if (link)
375 value |= GMAC4_LPI_CTRL_STATUS_PLS;
376 else
377 value &= ~GMAC4_LPI_CTRL_STATUS_PLS;
378
379 writel(value, ioaddr + GMAC4_LPI_CTRL_STATUS);
380 }
381
382 static void dwmac4_set_eee_timer(struct mac_device_info *hw, int ls, int tw)
383 {
384 void __iomem *ioaddr = hw->pcsr;
385 int value = ((tw & 0xffff)) | ((ls & 0x3ff) << 16);
386
387
388
389
390
391
392
393
394 writel(value, ioaddr + GMAC4_LPI_TIMER_CTRL);
395 }
396
397 static void dwmac4_set_filter(struct mac_device_info *hw,
398 struct net_device *dev)
399 {
400 void __iomem *ioaddr = (void __iomem *)dev->base_addr;
401 int numhashregs = (hw->multicast_filter_bins >> 5);
402 int mcbitslog2 = hw->mcast_bits_log2;
403 unsigned int value;
404 u32 mc_filter[8];
405 int i;
406
407 memset(mc_filter, 0, sizeof(mc_filter));
408
409 value = readl(ioaddr + GMAC_PACKET_FILTER);
410 value &= ~GMAC_PACKET_FILTER_HMC;
411 value &= ~GMAC_PACKET_FILTER_HPF;
412 value &= ~GMAC_PACKET_FILTER_PCF;
413 value &= ~GMAC_PACKET_FILTER_PM;
414 value &= ~GMAC_PACKET_FILTER_PR;
415 if (dev->flags & IFF_PROMISC) {
416 value = GMAC_PACKET_FILTER_PR | GMAC_PACKET_FILTER_PCF;
417 } else if ((dev->flags & IFF_ALLMULTI) ||
418 (netdev_mc_count(dev) > hw->multicast_filter_bins)) {
419
420 value |= GMAC_PACKET_FILTER_PM;
421
422 memset(mc_filter, 0xff, sizeof(mc_filter));
423 } else if (!netdev_mc_empty(dev)) {
424 struct netdev_hw_addr *ha;
425
426
427 value |= GMAC_PACKET_FILTER_HMC;
428
429 netdev_for_each_mc_addr(ha, dev) {
430
431
432
433
434
435 u32 bit_nr = bitrev32(~crc32_le(~0, ha->addr,
436 ETH_ALEN)) >> (32 - mcbitslog2);
437
438
439
440
441 mc_filter[bit_nr >> 5] |= (1 << (bit_nr & 0x1f));
442 }
443 }
444
445 for (i = 0; i < numhashregs; i++)
446 writel(mc_filter[i], ioaddr + GMAC_HASH_TAB(i));
447
448 value |= GMAC_PACKET_FILTER_HPF;
449
450
451 if (netdev_uc_count(dev) > hw->unicast_filter_entries) {
452
453
454
455 value |= GMAC_PACKET_FILTER_PR;
456 } else {
457 struct netdev_hw_addr *ha;
458 int reg = 1;
459
460 netdev_for_each_uc_addr(ha, dev) {
461 dwmac4_set_umac_addr(hw, ha->addr, reg);
462 reg++;
463 }
464
465 while (reg < GMAC_MAX_PERFECT_ADDRESSES) {
466 writel(0, ioaddr + GMAC_ADDR_HIGH(reg));
467 writel(0, ioaddr + GMAC_ADDR_LOW(reg));
468 reg++;
469 }
470 }
471
472 writel(value, ioaddr + GMAC_PACKET_FILTER);
473 }
474
475 static void dwmac4_flow_ctrl(struct mac_device_info *hw, unsigned int duplex,
476 unsigned int fc, unsigned int pause_time,
477 u32 tx_cnt)
478 {
479 void __iomem *ioaddr = hw->pcsr;
480 unsigned int flow = 0;
481 u32 queue = 0;
482
483 pr_debug("GMAC Flow-Control:\n");
484 if (fc & FLOW_RX) {
485 pr_debug("\tReceive Flow-Control ON\n");
486 flow |= GMAC_RX_FLOW_CTRL_RFE;
487 }
488 writel(flow, ioaddr + GMAC_RX_FLOW_CTRL);
489
490 if (fc & FLOW_TX) {
491 pr_debug("\tTransmit Flow-Control ON\n");
492
493 if (duplex)
494 pr_debug("\tduplex mode: PAUSE %d\n", pause_time);
495
496 for (queue = 0; queue < tx_cnt; queue++) {
497 flow = GMAC_TX_FLOW_CTRL_TFE;
498
499 if (duplex)
500 flow |=
501 (pause_time << GMAC_TX_FLOW_CTRL_PT_SHIFT);
502
503 writel(flow, ioaddr + GMAC_QX_TX_FLOW_CTRL(queue));
504 }
505 } else {
506 for (queue = 0; queue < tx_cnt; queue++)
507 writel(0, ioaddr + GMAC_QX_TX_FLOW_CTRL(queue));
508 }
509 }
510
511 static void dwmac4_ctrl_ane(void __iomem *ioaddr, bool ane, bool srgmi_ral,
512 bool loopback)
513 {
514 dwmac_ctrl_ane(ioaddr, GMAC_PCS_BASE, ane, srgmi_ral, loopback);
515 }
516
517 static void dwmac4_rane(void __iomem *ioaddr, bool restart)
518 {
519 dwmac_rane(ioaddr, GMAC_PCS_BASE, restart);
520 }
521
522 static void dwmac4_get_adv_lp(void __iomem *ioaddr, struct rgmii_adv *adv)
523 {
524 dwmac_get_adv_lp(ioaddr, GMAC_PCS_BASE, adv);
525 }
526
527
528 static void dwmac4_phystatus(void __iomem *ioaddr, struct stmmac_extra_stats *x)
529 {
530 u32 status;
531
532 status = readl(ioaddr + GMAC_PHYIF_CONTROL_STATUS);
533 x->irq_rgmii_n++;
534
535
536 if (status & GMAC_PHYIF_CTRLSTATUS_LNKSTS) {
537 int speed_value;
538
539 x->pcs_link = 1;
540
541 speed_value = ((status & GMAC_PHYIF_CTRLSTATUS_SPEED) >>
542 GMAC_PHYIF_CTRLSTATUS_SPEED_SHIFT);
543 if (speed_value == GMAC_PHYIF_CTRLSTATUS_SPEED_125)
544 x->pcs_speed = SPEED_1000;
545 else if (speed_value == GMAC_PHYIF_CTRLSTATUS_SPEED_25)
546 x->pcs_speed = SPEED_100;
547 else
548 x->pcs_speed = SPEED_10;
549
550 x->pcs_duplex = (status & GMAC_PHYIF_CTRLSTATUS_LNKMOD_MASK);
551
552 pr_info("Link is Up - %d/%s\n", (int)x->pcs_speed,
553 x->pcs_duplex ? "Full" : "Half");
554 } else {
555 x->pcs_link = 0;
556 pr_info("Link is Down\n");
557 }
558 }
559
560 static int dwmac4_irq_mtl_status(struct mac_device_info *hw, u32 chan)
561 {
562 void __iomem *ioaddr = hw->pcsr;
563 u32 mtl_int_qx_status;
564 int ret = 0;
565
566 mtl_int_qx_status = readl(ioaddr + MTL_INT_STATUS);
567
568
569 if (mtl_int_qx_status & MTL_INT_QX(chan)) {
570
571 u32 status = readl(ioaddr + MTL_CHAN_INT_CTRL(chan));
572
573 if (status & MTL_RX_OVERFLOW_INT) {
574
575 writel(status | MTL_RX_OVERFLOW_INT,
576 ioaddr + MTL_CHAN_INT_CTRL(chan));
577 ret = CORE_IRQ_MTL_RX_OVERFLOW;
578 }
579 }
580
581 return ret;
582 }
583
584 static int dwmac4_irq_status(struct mac_device_info *hw,
585 struct stmmac_extra_stats *x)
586 {
587 void __iomem *ioaddr = hw->pcsr;
588 u32 intr_status = readl(ioaddr + GMAC_INT_STATUS);
589 u32 intr_enable = readl(ioaddr + GMAC_INT_EN);
590 int ret = 0;
591
592
593 intr_status &= intr_enable;
594
595
596 if ((intr_status & mmc_tx_irq))
597 x->mmc_tx_irq_n++;
598 if (unlikely(intr_status & mmc_rx_irq))
599 x->mmc_rx_irq_n++;
600 if (unlikely(intr_status & mmc_rx_csum_offload_irq))
601 x->mmc_rx_csum_offload_irq_n++;
602
603 if (unlikely(intr_status & pmt_irq)) {
604 readl(ioaddr + GMAC_PMT);
605 x->irq_receive_pmt_irq_n++;
606 }
607
608
609 if (intr_status & lpi_irq) {
610
611 u32 status = readl(ioaddr + GMAC4_LPI_CTRL_STATUS);
612
613 if (status & GMAC4_LPI_CTRL_STATUS_TLPIEN) {
614 ret |= CORE_IRQ_TX_PATH_IN_LPI_MODE;
615 x->irq_tx_path_in_lpi_mode_n++;
616 }
617 if (status & GMAC4_LPI_CTRL_STATUS_TLPIEX) {
618 ret |= CORE_IRQ_TX_PATH_EXIT_LPI_MODE;
619 x->irq_tx_path_exit_lpi_mode_n++;
620 }
621 if (status & GMAC4_LPI_CTRL_STATUS_RLPIEN)
622 x->irq_rx_path_in_lpi_mode_n++;
623 if (status & GMAC4_LPI_CTRL_STATUS_RLPIEX)
624 x->irq_rx_path_exit_lpi_mode_n++;
625 }
626
627 dwmac_pcs_isr(ioaddr, GMAC_PCS_BASE, intr_status, x);
628 if (intr_status & PCS_RGSMIIIS_IRQ)
629 dwmac4_phystatus(ioaddr, x);
630
631 return ret;
632 }
633
634 static void dwmac4_debug(void __iomem *ioaddr, struct stmmac_extra_stats *x,
635 u32 rx_queues, u32 tx_queues)
636 {
637 u32 value;
638 u32 queue;
639
640 for (queue = 0; queue < tx_queues; queue++) {
641 value = readl(ioaddr + MTL_CHAN_TX_DEBUG(queue));
642
643 if (value & MTL_DEBUG_TXSTSFSTS)
644 x->mtl_tx_status_fifo_full++;
645 if (value & MTL_DEBUG_TXFSTS)
646 x->mtl_tx_fifo_not_empty++;
647 if (value & MTL_DEBUG_TWCSTS)
648 x->mmtl_fifo_ctrl++;
649 if (value & MTL_DEBUG_TRCSTS_MASK) {
650 u32 trcsts = (value & MTL_DEBUG_TRCSTS_MASK)
651 >> MTL_DEBUG_TRCSTS_SHIFT;
652 if (trcsts == MTL_DEBUG_TRCSTS_WRITE)
653 x->mtl_tx_fifo_read_ctrl_write++;
654 else if (trcsts == MTL_DEBUG_TRCSTS_TXW)
655 x->mtl_tx_fifo_read_ctrl_wait++;
656 else if (trcsts == MTL_DEBUG_TRCSTS_READ)
657 x->mtl_tx_fifo_read_ctrl_read++;
658 else
659 x->mtl_tx_fifo_read_ctrl_idle++;
660 }
661 if (value & MTL_DEBUG_TXPAUSED)
662 x->mac_tx_in_pause++;
663 }
664
665 for (queue = 0; queue < rx_queues; queue++) {
666 value = readl(ioaddr + MTL_CHAN_RX_DEBUG(queue));
667
668 if (value & MTL_DEBUG_RXFSTS_MASK) {
669 u32 rxfsts = (value & MTL_DEBUG_RXFSTS_MASK)
670 >> MTL_DEBUG_RRCSTS_SHIFT;
671
672 if (rxfsts == MTL_DEBUG_RXFSTS_FULL)
673 x->mtl_rx_fifo_fill_level_full++;
674 else if (rxfsts == MTL_DEBUG_RXFSTS_AT)
675 x->mtl_rx_fifo_fill_above_thresh++;
676 else if (rxfsts == MTL_DEBUG_RXFSTS_BT)
677 x->mtl_rx_fifo_fill_below_thresh++;
678 else
679 x->mtl_rx_fifo_fill_level_empty++;
680 }
681 if (value & MTL_DEBUG_RRCSTS_MASK) {
682 u32 rrcsts = (value & MTL_DEBUG_RRCSTS_MASK) >>
683 MTL_DEBUG_RRCSTS_SHIFT;
684
685 if (rrcsts == MTL_DEBUG_RRCSTS_FLUSH)
686 x->mtl_rx_fifo_read_ctrl_flush++;
687 else if (rrcsts == MTL_DEBUG_RRCSTS_RSTAT)
688 x->mtl_rx_fifo_read_ctrl_read_data++;
689 else if (rrcsts == MTL_DEBUG_RRCSTS_RDATA)
690 x->mtl_rx_fifo_read_ctrl_status++;
691 else
692 x->mtl_rx_fifo_read_ctrl_idle++;
693 }
694 if (value & MTL_DEBUG_RWCSTS)
695 x->mtl_rx_fifo_ctrl_active++;
696 }
697
698
699 value = readl(ioaddr + GMAC_DEBUG);
700
701 if (value & GMAC_DEBUG_TFCSTS_MASK) {
702 u32 tfcsts = (value & GMAC_DEBUG_TFCSTS_MASK)
703 >> GMAC_DEBUG_TFCSTS_SHIFT;
704
705 if (tfcsts == GMAC_DEBUG_TFCSTS_XFER)
706 x->mac_tx_frame_ctrl_xfer++;
707 else if (tfcsts == GMAC_DEBUG_TFCSTS_GEN_PAUSE)
708 x->mac_tx_frame_ctrl_pause++;
709 else if (tfcsts == GMAC_DEBUG_TFCSTS_WAIT)
710 x->mac_tx_frame_ctrl_wait++;
711 else
712 x->mac_tx_frame_ctrl_idle++;
713 }
714 if (value & GMAC_DEBUG_TPESTS)
715 x->mac_gmii_tx_proto_engine++;
716 if (value & GMAC_DEBUG_RFCFCSTS_MASK)
717 x->mac_rx_frame_ctrl_fifo = (value & GMAC_DEBUG_RFCFCSTS_MASK)
718 >> GMAC_DEBUG_RFCFCSTS_SHIFT;
719 if (value & GMAC_DEBUG_RPESTS)
720 x->mac_gmii_rx_proto_engine++;
721 }
722
723 static void dwmac4_set_mac_loopback(void __iomem *ioaddr, bool enable)
724 {
725 u32 value = readl(ioaddr + GMAC_CONFIG);
726
727 if (enable)
728 value |= GMAC_CONFIG_LM;
729 else
730 value &= ~GMAC_CONFIG_LM;
731
732 writel(value, ioaddr + GMAC_CONFIG);
733 }
734
735 static void dwmac4_update_vlan_hash(struct mac_device_info *hw, u32 hash,
736 bool is_double)
737 {
738 void __iomem *ioaddr = hw->pcsr;
739
740 writel(hash, ioaddr + GMAC_VLAN_HASH_TABLE);
741
742 if (hash) {
743 u32 value = GMAC_VLAN_VTHM | GMAC_VLAN_ETV;
744 if (is_double) {
745 value |= GMAC_VLAN_EDVLP;
746 value |= GMAC_VLAN_ESVL;
747 value |= GMAC_VLAN_DOVLTC;
748 }
749
750 writel(value, ioaddr + GMAC_VLAN_TAG);
751 } else {
752 u32 value = readl(ioaddr + GMAC_VLAN_TAG);
753
754 value &= ~(GMAC_VLAN_VTHM | GMAC_VLAN_ETV);
755 value &= ~(GMAC_VLAN_EDVLP | GMAC_VLAN_ESVL);
756 value &= ~GMAC_VLAN_DOVLTC;
757 value &= ~GMAC_VLAN_VID;
758
759 writel(value, ioaddr + GMAC_VLAN_TAG);
760 }
761 }
762
763 static void dwmac4_sarc_configure(void __iomem *ioaddr, int val)
764 {
765 u32 value = readl(ioaddr + GMAC_CONFIG);
766
767 value &= ~GMAC_CONFIG_SARC;
768 value |= val << GMAC_CONFIG_SARC_SHIFT;
769
770 writel(value, ioaddr + GMAC_CONFIG);
771 }
772
773 static void dwmac4_enable_vlan(struct mac_device_info *hw, u32 type)
774 {
775 void __iomem *ioaddr = hw->pcsr;
776 u32 value;
777
778 value = readl(ioaddr + GMAC_VLAN_INCL);
779 value |= GMAC_VLAN_VLTI;
780 value |= GMAC_VLAN_CSVL;
781 value &= ~GMAC_VLAN_VLC;
782 value |= (type << GMAC_VLAN_VLC_SHIFT) & GMAC_VLAN_VLC;
783 writel(value, ioaddr + GMAC_VLAN_INCL);
784 }
785
786 static void dwmac4_set_arp_offload(struct mac_device_info *hw, bool en,
787 u32 addr)
788 {
789 void __iomem *ioaddr = hw->pcsr;
790 u32 value;
791
792 writel(addr, ioaddr + GMAC_ARP_ADDR);
793
794 value = readl(ioaddr + GMAC_CONFIG);
795 if (en)
796 value |= GMAC_CONFIG_ARPEN;
797 else
798 value &= ~GMAC_CONFIG_ARPEN;
799 writel(value, ioaddr + GMAC_CONFIG);
800 }
801
802 const struct stmmac_ops dwmac4_ops = {
803 .core_init = dwmac4_core_init,
804 .set_mac = stmmac_set_mac,
805 .rx_ipc = dwmac4_rx_ipc_enable,
806 .rx_queue_enable = dwmac4_rx_queue_enable,
807 .rx_queue_prio = dwmac4_rx_queue_priority,
808 .tx_queue_prio = dwmac4_tx_queue_priority,
809 .rx_queue_routing = dwmac4_rx_queue_routing,
810 .prog_mtl_rx_algorithms = dwmac4_prog_mtl_rx_algorithms,
811 .prog_mtl_tx_algorithms = dwmac4_prog_mtl_tx_algorithms,
812 .set_mtl_tx_queue_weight = dwmac4_set_mtl_tx_queue_weight,
813 .map_mtl_to_dma = dwmac4_map_mtl_dma,
814 .config_cbs = dwmac4_config_cbs,
815 .dump_regs = dwmac4_dump_regs,
816 .host_irq_status = dwmac4_irq_status,
817 .host_mtl_irq_status = dwmac4_irq_mtl_status,
818 .flow_ctrl = dwmac4_flow_ctrl,
819 .pmt = dwmac4_pmt,
820 .set_umac_addr = dwmac4_set_umac_addr,
821 .get_umac_addr = dwmac4_get_umac_addr,
822 .set_eee_mode = dwmac4_set_eee_mode,
823 .reset_eee_mode = dwmac4_reset_eee_mode,
824 .set_eee_timer = dwmac4_set_eee_timer,
825 .set_eee_pls = dwmac4_set_eee_pls,
826 .pcs_ctrl_ane = dwmac4_ctrl_ane,
827 .pcs_rane = dwmac4_rane,
828 .pcs_get_adv_lp = dwmac4_get_adv_lp,
829 .debug = dwmac4_debug,
830 .set_filter = dwmac4_set_filter,
831 .set_mac_loopback = dwmac4_set_mac_loopback,
832 .update_vlan_hash = dwmac4_update_vlan_hash,
833 .sarc_configure = dwmac4_sarc_configure,
834 .enable_vlan = dwmac4_enable_vlan,
835 .set_arp_offload = dwmac4_set_arp_offload,
836 };
837
838 const struct stmmac_ops dwmac410_ops = {
839 .core_init = dwmac4_core_init,
840 .set_mac = stmmac_dwmac4_set_mac,
841 .rx_ipc = dwmac4_rx_ipc_enable,
842 .rx_queue_enable = dwmac4_rx_queue_enable,
843 .rx_queue_prio = dwmac4_rx_queue_priority,
844 .tx_queue_prio = dwmac4_tx_queue_priority,
845 .rx_queue_routing = dwmac4_rx_queue_routing,
846 .prog_mtl_rx_algorithms = dwmac4_prog_mtl_rx_algorithms,
847 .prog_mtl_tx_algorithms = dwmac4_prog_mtl_tx_algorithms,
848 .set_mtl_tx_queue_weight = dwmac4_set_mtl_tx_queue_weight,
849 .map_mtl_to_dma = dwmac4_map_mtl_dma,
850 .config_cbs = dwmac4_config_cbs,
851 .dump_regs = dwmac4_dump_regs,
852 .host_irq_status = dwmac4_irq_status,
853 .host_mtl_irq_status = dwmac4_irq_mtl_status,
854 .flow_ctrl = dwmac4_flow_ctrl,
855 .pmt = dwmac4_pmt,
856 .set_umac_addr = dwmac4_set_umac_addr,
857 .get_umac_addr = dwmac4_get_umac_addr,
858 .set_eee_mode = dwmac4_set_eee_mode,
859 .reset_eee_mode = dwmac4_reset_eee_mode,
860 .set_eee_timer = dwmac4_set_eee_timer,
861 .set_eee_pls = dwmac4_set_eee_pls,
862 .pcs_ctrl_ane = dwmac4_ctrl_ane,
863 .pcs_rane = dwmac4_rane,
864 .pcs_get_adv_lp = dwmac4_get_adv_lp,
865 .debug = dwmac4_debug,
866 .set_filter = dwmac4_set_filter,
867 .set_mac_loopback = dwmac4_set_mac_loopback,
868 .update_vlan_hash = dwmac4_update_vlan_hash,
869 .sarc_configure = dwmac4_sarc_configure,
870 .enable_vlan = dwmac4_enable_vlan,
871 .set_arp_offload = dwmac4_set_arp_offload,
872 };
873
874 const struct stmmac_ops dwmac510_ops = {
875 .core_init = dwmac4_core_init,
876 .set_mac = stmmac_dwmac4_set_mac,
877 .rx_ipc = dwmac4_rx_ipc_enable,
878 .rx_queue_enable = dwmac4_rx_queue_enable,
879 .rx_queue_prio = dwmac4_rx_queue_priority,
880 .tx_queue_prio = dwmac4_tx_queue_priority,
881 .rx_queue_routing = dwmac4_rx_queue_routing,
882 .prog_mtl_rx_algorithms = dwmac4_prog_mtl_rx_algorithms,
883 .prog_mtl_tx_algorithms = dwmac4_prog_mtl_tx_algorithms,
884 .set_mtl_tx_queue_weight = dwmac4_set_mtl_tx_queue_weight,
885 .map_mtl_to_dma = dwmac4_map_mtl_dma,
886 .config_cbs = dwmac4_config_cbs,
887 .dump_regs = dwmac4_dump_regs,
888 .host_irq_status = dwmac4_irq_status,
889 .host_mtl_irq_status = dwmac4_irq_mtl_status,
890 .flow_ctrl = dwmac4_flow_ctrl,
891 .pmt = dwmac4_pmt,
892 .set_umac_addr = dwmac4_set_umac_addr,
893 .get_umac_addr = dwmac4_get_umac_addr,
894 .set_eee_mode = dwmac4_set_eee_mode,
895 .reset_eee_mode = dwmac4_reset_eee_mode,
896 .set_eee_timer = dwmac4_set_eee_timer,
897 .set_eee_pls = dwmac4_set_eee_pls,
898 .pcs_ctrl_ane = dwmac4_ctrl_ane,
899 .pcs_rane = dwmac4_rane,
900 .pcs_get_adv_lp = dwmac4_get_adv_lp,
901 .debug = dwmac4_debug,
902 .set_filter = dwmac4_set_filter,
903 .safety_feat_config = dwmac5_safety_feat_config,
904 .safety_feat_irq_status = dwmac5_safety_feat_irq_status,
905 .safety_feat_dump = dwmac5_safety_feat_dump,
906 .rxp_config = dwmac5_rxp_config,
907 .flex_pps_config = dwmac5_flex_pps_config,
908 .set_mac_loopback = dwmac4_set_mac_loopback,
909 .update_vlan_hash = dwmac4_update_vlan_hash,
910 .sarc_configure = dwmac4_sarc_configure,
911 .enable_vlan = dwmac4_enable_vlan,
912 .set_arp_offload = dwmac4_set_arp_offload,
913 };
914
915 int dwmac4_setup(struct stmmac_priv *priv)
916 {
917 struct mac_device_info *mac = priv->hw;
918
919 dev_info(priv->device, "\tDWMAC4/5\n");
920
921 priv->dev->priv_flags |= IFF_UNICAST_FLT;
922 mac->pcsr = priv->ioaddr;
923 mac->multicast_filter_bins = priv->plat->multicast_filter_bins;
924 mac->unicast_filter_entries = priv->plat->unicast_filter_entries;
925 mac->mcast_bits_log2 = 0;
926
927 if (mac->multicast_filter_bins)
928 mac->mcast_bits_log2 = ilog2(mac->multicast_filter_bins);
929
930 mac->link.duplex = GMAC_CONFIG_DM;
931 mac->link.speed10 = GMAC_CONFIG_PS;
932 mac->link.speed100 = GMAC_CONFIG_FES | GMAC_CONFIG_PS;
933 mac->link.speed1000 = 0;
934 mac->link.speed_mask = GMAC_CONFIG_FES | GMAC_CONFIG_PS;
935 mac->mii.addr = GMAC_MDIO_ADDR;
936 mac->mii.data = GMAC_MDIO_DATA;
937 mac->mii.addr_shift = 21;
938 mac->mii.addr_mask = GENMASK(25, 21);
939 mac->mii.reg_shift = 16;
940 mac->mii.reg_mask = GENMASK(20, 16);
941 mac->mii.clk_csr_shift = 8;
942 mac->mii.clk_csr_mask = GENMASK(11, 8);
943
944 return 0;
945 }