net: stmmac: dwmac4: Always update the MAC Hash Filter
[linux-2.6-block.git] / drivers / net / ethernet / stmicro / stmmac / dwmac4_core.c
CommitLineData
75a6faf6 1// SPDX-License-Identifier: GPL-2.0-only
477286b5
AT
2/*
3 * This is the driver for the GMAC on-chip Ethernet controller for ST SoCs.
4 * DWC Ether MAC version 4.00 has been used for developing this code.
5 *
6 * This only implements the mac core functions for this chip.
7 *
8 * Copyright (C) 2015 STMicroelectronics Ltd
9 *
477286b5
AT
10 * Author: Alexandre Torgue <alexandre.torgue@st.com>
11 */
12
13#include <linux/crc32.h>
14#include <linux/slab.h>
15#include <linux/ethtool.h>
16#include <linux/io.h>
8cad443e 17#include <net/dsa.h>
5f0456b4 18#include "stmmac.h"
70523e63 19#include "stmmac_pcs.h"
477286b5 20#include "dwmac4.h"
8bf993a5 21#include "dwmac5.h"
477286b5 22
8cad443e
FF
23static void dwmac4_core_init(struct mac_device_info *hw,
24 struct net_device *dev)
477286b5
AT
25{
26 void __iomem *ioaddr = hw->pcsr;
27 u32 value = readl(ioaddr + GMAC_CONFIG);
28
29 value |= GMAC_CORE_INIT;
30
02e57b9d
GC
31 if (hw->ps) {
32 value |= GMAC_CONFIG_TE;
33
ca84dfb9
LC
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;
02e57b9d
GC
45 }
46 }
47
477286b5
AT
48 writel(value, ioaddr + GMAC_CONFIG);
49
e879b7ab
NC
50 /* Enable GMAC interrupts */
51 value = GMAC_INT_DEFAULT_ENABLE;
10291171 52
3fe5cadb
GC
53 if (hw->pcs)
54 value |= GMAC_PCS_IRQ_DEFAULT;
55
56 writel(value, ioaddr + GMAC_INT_EN);
477286b5
AT
57}
58
4f6046f5
JP
59static void dwmac4_rx_queue_enable(struct mac_device_info *hw,
60 u8 mode, u32 queue)
9eb12474 61{
62 void __iomem *ioaddr = hw->pcsr;
63 u32 value = readl(ioaddr + GMAC_RXQ_CTRL0);
64
65 value &= GMAC_RX_QUEUE_CLEAR(queue);
19d91873 66 if (mode == MTL_QUEUE_AVB)
4f6046f5 67 value |= GMAC_RX_AV_QUEUE_ENABLE(queue);
19d91873 68 else if (mode == MTL_QUEUE_DCB)
4f6046f5 69 value |= GMAC_RX_DCB_QUEUE_ENABLE(queue);
9eb12474 70
71 writel(value, ioaddr + GMAC_RXQ_CTRL0);
72}
73
a8f5102a
JP
74static 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;
e8df7e8c
JA
82 if (queue >= 4)
83 queue -= 4;
a8f5102a
JP
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
93static 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;
e8df7e8c
JA
101 if (queue >= 4)
102 queue -= 4;
a8f5102a
JP
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
e5a01992 113static void dwmac4_rx_queue_routing(struct mac_device_info *hw,
abe80fdc
JP
114 u8 packet, u32 queue)
115{
116 void __iomem *ioaddr = hw->pcsr;
117 u32 value;
118
f56ff774 119 static const struct stmmac_rx_routing route_possibilities[] = {
abe80fdc
JP
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 /* routing configuration */
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 /* some packets require extra ops */
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
d0a9c9f9
JP
146static 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
167static 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 }
68a5cde9
CH
190
191 writel(value, ioaddr + MTL_OPERATION_MODE);
d0a9c9f9
JP
192}
193
6a3a7193
JP
194static 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
d43042f4
JP
205static 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
19d91873
JP
229static 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 /* enable AV algorithm */
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 /* configure send slope */
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 /* configure idle slope (same register as tx weight) */
255 dwmac4_set_mtl_tx_queue_weight(hw, idle_slope, queue);
256
257 /* configure high credit */
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 /* configure high credit */
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
fbf68229 270static void dwmac4_dump_regs(struct mac_device_info *hw, u32 *reg_space)
477286b5
AT
271{
272 void __iomem *ioaddr = hw->pcsr;
273 int i;
274
fbf68229
LC
275 for (i = 0; i < GMAC_REG_NUM; i++)
276 reg_space[i] = readl(ioaddr + i * 4);
477286b5
AT
277}
278
279static 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
296static void dwmac4_pmt(struct mac_device_info *hw, unsigned long mode)
297{
298 void __iomem *ioaddr = hw->pcsr;
299 unsigned int pmt = 0;
1579f678 300 u32 config;
477286b5
AT
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");
19cd1203 308 pmt |= power_down | global_unicast | wake_up_frame_en;
477286b5
AT
309 }
310
1579f678
EB
311 if (pmt) {
312 /* The receiver must be enabled for WOL before powering down */
313 config = readl(ioaddr + GMAC_CONFIG);
314 config |= GMAC_CONFIG_RE;
315 writel(config, ioaddr + GMAC_CONFIG);
316 }
477286b5
AT
317 writel(pmt, ioaddr + GMAC_PMT);
318}
319
320static 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
329static 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
b4b7b772 338static void dwmac4_set_eee_mode(struct mac_device_info *hw,
339 bool en_tx_lpi_clockgating)
afbb1674 340{
341 void __iomem *ioaddr = hw->pcsr;
342 u32 value;
343
344 /* Enable the link status receive on RGMII, SGMII ore SMII
345 * receive path and instruct the transmit to enter in LPI
346 * state.
347 */
348 value = readl(ioaddr + GMAC4_LPI_CTRL_STATUS);
349 value |= GMAC4_LPI_CTRL_STATUS_LPIEN | GMAC4_LPI_CTRL_STATUS_LPITXA;
350
b4b7b772 351 if (en_tx_lpi_clockgating)
352 value |= GMAC4_LPI_CTRL_STATUS_LPITCSE;
353
afbb1674 354 writel(value, ioaddr + GMAC4_LPI_CTRL_STATUS);
355}
356
357static 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
367static 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
382static void dwmac4_set_eee_timer(struct mac_device_info *hw, int ls, int tw)
383{
384 void __iomem *ioaddr = hw->pcsr;
f4ec6064 385 int value = ((tw & 0xffff)) | ((ls & 0x3ff) << 16);
afbb1674 386
387 /* Program the timers in the LPI timer control register:
388 * LS: minimum time (ms) for which the link
389 * status from PHY should be ok before transmitting
390 * the LPI pattern.
391 * TW: minimum time (us) for which the core waits
392 * after it has stopped transmitting the LPI pattern.
393 */
394 writel(value, ioaddr + GMAC4_LPI_TIMER_CTRL);
395}
396
477286b5
AT
397static void dwmac4_set_filter(struct mac_device_info *hw,
398 struct net_device *dev)
399{
400 void __iomem *ioaddr = (void __iomem *)dev->base_addr;
b8ef7020
BH
401 int numhashregs = (hw->multicast_filter_bins >> 5);
402 int mcbitslog2 = hw->mcast_bits_log2;
403 unsigned int value;
f79bfda3 404 u32 mc_filter[8];
b8ef7020 405 int i;
477286b5 406
f79bfda3
JA
407 memset(mc_filter, 0, sizeof(mc_filter));
408
b8ef7020
BH
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;
477286b5 415 if (dev->flags & IFF_PROMISC) {
2b783e61 416 value = GMAC_PACKET_FILTER_PR | GMAC_PACKET_FILTER_PCF;
477286b5 417 } else if ((dev->flags & IFF_ALLMULTI) ||
b8ef7020 418 (netdev_mc_count(dev) > hw->multicast_filter_bins)) {
477286b5 419 /* Pass all multi */
b8ef7020
BH
420 value |= GMAC_PACKET_FILTER_PM;
421 /* Set all the bits of the HASH tab */
f79bfda3 422 memset(mc_filter, 0xff, sizeof(mc_filter));
477286b5 423 } else if (!netdev_mc_empty(dev)) {
477286b5
AT
424 struct netdev_hw_addr *ha;
425
426 /* Hash filter for multicast */
b8ef7020 427 value |= GMAC_PACKET_FILTER_HMC;
477286b5 428
477286b5 429 netdev_for_each_mc_addr(ha, dev) {
b8ef7020
BH
430 /* The upper n bits of the calculated CRC are used to
431 * index the contents of the hash table. The number of
432 * bits used depends on the hardware configuration
433 * selected at core configuration time.
477286b5 434 */
b8ef7020
BH
435 int bit_nr = bitrev32(~crc32_le(~0, ha->addr,
436 ETH_ALEN)) >> (32 - mcbitslog2);
437 /* The most significant bit determines the register to
438 * use (H/L) while the other 5 bits determine the bit
439 * within the register.
477286b5 440 */
b8ef7020 441 mc_filter[bit_nr >> 5] |= (1 << (bit_nr & 0x1f));
477286b5 442 }
477286b5
AT
443 }
444
f79bfda3
JA
445 for (i = 0; i < numhashregs; i++)
446 writel(mc_filter[i], ioaddr + GMAC_HASH_TAB(i));
447
f9c5f7d7
JA
448 value |= GMAC_PACKET_FILTER_HPF;
449
477286b5
AT
450 /* Handle multiple unicast addresses */
451 if (netdev_uc_count(dev) > GMAC_MAX_PERFECT_ADDRESSES) {
452 /* Switch to promiscuous mode if more than 128 addrs
453 * are required
454 */
455 value |= GMAC_PACKET_FILTER_PR;
0620ec6c 456 } else {
477286b5 457 struct netdev_hw_addr *ha;
0620ec6c 458 int reg = 1;
477286b5
AT
459
460 netdev_for_each_uc_addr(ha, dev) {
ca8bdaf1 461 dwmac4_set_umac_addr(hw, ha->addr, reg);
477286b5
AT
462 reg++;
463 }
0620ec6c 464
efd58adf 465 while (reg < GMAC_MAX_PERFECT_ADDRESSES) {
0620ec6c
JA
466 writel(0, ioaddr + GMAC_ADDR_HIGH(reg));
467 writel(0, ioaddr + GMAC_ADDR_LOW(reg));
468 reg++;
469 }
477286b5
AT
470 }
471
472 writel(value, ioaddr + GMAC_PACKET_FILTER);
473}
474
475static void dwmac4_flow_ctrl(struct mac_device_info *hw, unsigned int duplex,
29feff39
JP
476 unsigned int fc, unsigned int pause_time,
477 u32 tx_cnt)
477286b5
AT
478{
479 void __iomem *ioaddr = hw->pcsr;
477286b5 480 unsigned int flow = 0;
29feff39 481 u32 queue = 0;
477286b5
AT
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;
477286b5 487 }
ee326fd0
BH
488 writel(flow, ioaddr + GMAC_RX_FLOW_CTRL);
489
477286b5
AT
490 if (fc & FLOW_TX) {
491 pr_debug("\tTransmit Flow-Control ON\n");
477286b5 492
29feff39 493 if (duplex)
477286b5 494 pr_debug("\tduplex mode: PAUSE %d\n", pause_time);
29feff39
JP
495
496 for (queue = 0; queue < tx_cnt; queue++) {
ee326fd0 497 flow = GMAC_TX_FLOW_CTRL_TFE;
29feff39
JP
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));
477286b5 504 }
ee326fd0
BH
505 } else {
506 for (queue = 0; queue < tx_cnt; queue++)
507 writel(0, ioaddr + GMAC_QX_TX_FLOW_CTRL(queue));
477286b5
AT
508 }
509}
510
70523e63
GC
511static void dwmac4_ctrl_ane(void __iomem *ioaddr, bool ane, bool srgmi_ral,
512 bool loopback)
477286b5 513{
70523e63
GC
514 dwmac_ctrl_ane(ioaddr, GMAC_PCS_BASE, ane, srgmi_ral, loopback);
515}
477286b5 516
70523e63
GC
517static void dwmac4_rane(void __iomem *ioaddr, bool restart)
518{
519 dwmac_rane(ioaddr, GMAC_PCS_BASE, restart);
520}
477286b5 521
70523e63
GC
522static void dwmac4_get_adv_lp(void __iomem *ioaddr, struct rgmii_adv *adv)
523{
524 dwmac_get_adv_lp(ioaddr, GMAC_PCS_BASE, adv);
477286b5
AT
525}
526
70523e63
GC
527/* RGMII or SMII interface */
528static void dwmac4_phystatus(void __iomem *ioaddr, struct stmmac_extra_stats *x)
477286b5 529{
70523e63 530 u32 status;
477286b5 531
70523e63
GC
532 status = readl(ioaddr + GMAC_PHYIF_CONTROL_STATUS);
533 x->irq_rgmii_n++;
477286b5 534
70523e63
GC
535 /* Check the link status */
536 if (status & GMAC_PHYIF_CTRLSTATUS_LNKSTS) {
537 int speed_value;
477286b5 538
70523e63 539 x->pcs_link = 1;
477286b5 540
70523e63
GC
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);
477286b5 551
70523e63
GC
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 }
477286b5
AT
558}
559
8f71a88d
JP
560static 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 /* Check MTL Interrupt */
569 if (mtl_int_qx_status & MTL_INT_QX(chan)) {
570 /* read Queue x Interrupt status */
571 u32 status = readl(ioaddr + MTL_CHAN_INT_CTRL(chan));
572
573 if (status & MTL_RX_OVERFLOW_INT) {
574 /* clear Interrupt */
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
477286b5
AT
584static int dwmac4_irq_status(struct mac_device_info *hw,
585 struct stmmac_extra_stats *x)
586{
587 void __iomem *ioaddr = hw->pcsr;
1b84ca18
NC
588 u32 intr_status = readl(ioaddr + GMAC_INT_STATUS);
589 u32 intr_enable = readl(ioaddr + GMAC_INT_EN);
477286b5
AT
590 int ret = 0;
591
1b84ca18
NC
592 /* Discard disabled bits */
593 intr_status &= intr_enable;
477286b5
AT
594
595 /* Not used events (e.g. MMC interrupts) are not handled. */
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 /* Clear the PMT bits 5 and 6 by reading the PMT status reg */
603 if (unlikely(intr_status & pmt_irq)) {
604 readl(ioaddr + GMAC_PMT);
605 x->irq_receive_pmt_irq_n++;
606 }
607
4497478c
NC
608 /* MAC tx/rx EEE LPI entry/exit interrupts */
609 if (intr_status & lpi_irq) {
610 /* Clear LPI interrupt by reading MAC_LPI_Control_Status */
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
70523e63
GC
627 dwmac_pcs_isr(ioaddr, GMAC_PCS_BASE, intr_status, x);
628 if (intr_status & PCS_RGSMIIIS_IRQ)
629 dwmac4_phystatus(ioaddr, x);
630
477286b5
AT
631 return ret;
632}
633
ad5a87d7
JP
634static void dwmac4_debug(void __iomem *ioaddr, struct stmmac_extra_stats *x,
635 u32 rx_queues, u32 tx_queues)
477286b5
AT
636{
637 u32 value;
ad5a87d7
JP
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++;
477286b5 663 }
477286b5 664
ad5a87d7
JP
665 for (queue = 0; queue < rx_queues; queue++) {
666 value = readl(ioaddr + MTL_CHAN_RX_DEBUG(queue));
477286b5 667
ad5a87d7
JP
668 if (value & MTL_DEBUG_RXFSTS_MASK) {
669 u32 rxfsts = (value & MTL_DEBUG_RXFSTS_MASK)
670 >> MTL_DEBUG_RRCSTS_SHIFT;
477286b5 671
ad5a87d7
JP
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++;
477286b5 696 }
477286b5
AT
697
698 /* GMAC debug */
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
4ce84f4d
JA
723static 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
c1be0022
JA
735static 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
1d982e93
JA
763static 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
e94e3f3b
JA
773static 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; /* Only use SVLAN */
781 value &= ~GMAC_VLAN_VLC;
782 value |= (type << GMAC_VLAN_VLC_SHIFT) & GMAC_VLAN_VLC;
783 writel(value, ioaddr + GMAC_VLAN_INCL);
784}
785
c9b10043
JA
786static 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
5f0456b4 802const struct stmmac_ops dwmac4_ops = {
477286b5 803 .core_init = dwmac4_core_init,
270c7759
LC
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,
e5a01992 809 .rx_queue_routing = dwmac4_rx_queue_routing,
270c7759
LC
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,
4ce84f4d 831 .set_mac_loopback = dwmac4_set_mac_loopback,
c1be0022 832 .update_vlan_hash = dwmac4_update_vlan_hash,
1d982e93 833 .sarc_configure = dwmac4_sarc_configure,
e94e3f3b 834 .enable_vlan = dwmac4_enable_vlan,
c9b10043 835 .set_arp_offload = dwmac4_set_arp_offload,
270c7759
LC
836};
837
5f0456b4 838const struct stmmac_ops dwmac410_ops = {
270c7759
LC
839 .core_init = dwmac4_core_init,
840 .set_mac = stmmac_dwmac4_set_mac,
477286b5 841 .rx_ipc = dwmac4_rx_ipc_enable,
9eb12474 842 .rx_queue_enable = dwmac4_rx_queue_enable,
a8f5102a
JP
843 .rx_queue_prio = dwmac4_rx_queue_priority,
844 .tx_queue_prio = dwmac4_tx_queue_priority,
e5a01992 845 .rx_queue_routing = dwmac4_rx_queue_routing,
d0a9c9f9
JP
846 .prog_mtl_rx_algorithms = dwmac4_prog_mtl_rx_algorithms,
847 .prog_mtl_tx_algorithms = dwmac4_prog_mtl_tx_algorithms,
6a3a7193 848 .set_mtl_tx_queue_weight = dwmac4_set_mtl_tx_queue_weight,
d43042f4 849 .map_mtl_to_dma = dwmac4_map_mtl_dma,
19d91873 850 .config_cbs = dwmac4_config_cbs,
477286b5
AT
851 .dump_regs = dwmac4_dump_regs,
852 .host_irq_status = dwmac4_irq_status,
8f71a88d 853 .host_mtl_irq_status = dwmac4_irq_mtl_status,
477286b5
AT
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,
afbb1674 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,
70523e63
GC
862 .pcs_ctrl_ane = dwmac4_ctrl_ane,
863 .pcs_rane = dwmac4_rane,
864 .pcs_get_adv_lp = dwmac4_get_adv_lp,
477286b5
AT
865 .debug = dwmac4_debug,
866 .set_filter = dwmac4_set_filter,
4ce84f4d 867 .set_mac_loopback = dwmac4_set_mac_loopback,
c1be0022 868 .update_vlan_hash = dwmac4_update_vlan_hash,
1d982e93 869 .sarc_configure = dwmac4_sarc_configure,
e94e3f3b 870 .enable_vlan = dwmac4_enable_vlan,
c9b10043 871 .set_arp_offload = dwmac4_set_arp_offload,
477286b5
AT
872};
873
5f0456b4 874const struct stmmac_ops dwmac510_ops = {
8bf993a5
JA
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,
4dbbe8dd 906 .rxp_config = dwmac5_rxp_config,
9a8a02c9 907 .flex_pps_config = dwmac5_flex_pps_config,
4ce84f4d 908 .set_mac_loopback = dwmac4_set_mac_loopback,
c1be0022 909 .update_vlan_hash = dwmac4_update_vlan_hash,
1d982e93 910 .sarc_configure = dwmac4_sarc_configure,
e94e3f3b 911 .enable_vlan = dwmac4_enable_vlan,
c9b10043 912 .set_arp_offload = dwmac4_set_arp_offload,
8bf993a5
JA
913};
914
5f0456b4 915int dwmac4_setup(struct stmmac_priv *priv)
477286b5 916{
5f0456b4 917 struct mac_device_info *mac = priv->hw;
477286b5 918
5f0456b4 919 dev_info(priv->device, "\tDWMAC4/5\n");
477286b5 920
5f0456b4
JA
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;
477286b5
AT
925 mac->mcast_bits_log2 = 0;
926
927 if (mac->multicast_filter_bins)
928 mac->mcast_bits_log2 = ilog2(mac->multicast_filter_bins);
929
477286b5 930 mac->link.duplex = GMAC_CONFIG_DM;
ca84dfb9
LC
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;
477286b5
AT
935 mac->mii.addr = GMAC_MDIO_ADDR;
936 mac->mii.data = GMAC_MDIO_DATA;
b91dce4c
LC
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);
477286b5 943
5f0456b4 944 return 0;
477286b5 945}