blob: a6995df873caf62b0e5902d417d64183cc8d45ea [file] [log] [blame]
developerfd40db22021-04-29 10:08:25 +08001/* SPDX-License-Identifier: GPL-2.0-only */
2/*
3 *
4 * Copyright (C) 2009-2016 John Crispin <blogic@openwrt.org>
5 * Copyright (C) 2009-2016 Felix Fietkau <nbd@openwrt.org>
6 * Copyright (C) 2013-2016 Michael Lee <igvtee@gmail.com>
7 */
8
9#ifndef MTK_ETH_H
10#define MTK_ETH_H
11
12#include <linux/dma-mapping.h>
13#include <linux/netdevice.h>
14#include <linux/of_net.h>
15#include <linux/u64_stats_sync.h>
16#include <linux/refcount.h>
17#include <linux/phylink.h>
18
19#define MTK_QDMA_PAGE_SIZE 2048
20#define MTK_MAX_RX_LENGTH 1536
21#define MTK_DMA_SIZE 2048
22#define MTK_NAPI_WEIGHT 256
23#define MTK_MAC_COUNT 2
24#define MTK_RX_ETH_HLEN (VLAN_ETH_HLEN + VLAN_HLEN + ETH_FCS_LEN)
25#define MTK_RX_HLEN (NET_SKB_PAD + MTK_RX_ETH_HLEN + NET_IP_ALIGN)
26#define MTK_DMA_DUMMY_DESC 0xffffffff
27#define MTK_DEFAULT_MSG_ENABLE (NETIF_MSG_DRV | \
28 NETIF_MSG_PROBE | \
29 NETIF_MSG_LINK | \
30 NETIF_MSG_TIMER | \
31 NETIF_MSG_IFDOWN | \
32 NETIF_MSG_IFUP | \
33 NETIF_MSG_RX_ERR | \
34 NETIF_MSG_TX_ERR)
35#define MTK_HW_FEATURES (NETIF_F_IP_CSUM | \
36 NETIF_F_RXCSUM | \
37 NETIF_F_HW_VLAN_CTAG_TX | \
developerfd40db22021-04-29 10:08:25 +080038 NETIF_F_SG | NETIF_F_TSO | \
39 NETIF_F_TSO6 | \
40 NETIF_F_IPV6_CSUM)
41#define MTK_SET_FEATURES (NETIF_F_LRO | \
42 NETIF_F_HW_VLAN_CTAG_RX)
43#define MTK_HW_FEATURES_MT7628 (NETIF_F_SG | NETIF_F_RXCSUM)
44#define NEXT_DESP_IDX(X, Y) (((X) + 1) & ((Y) - 1))
45
developerfd40db22021-04-29 10:08:25 +080046#define MTK_HW_LRO_DMA_SIZE 8
47
48#define MTK_MAX_LRO_RX_LENGTH (4096 * 3)
49#define MTK_MAX_LRO_IP_CNT 2
50#define MTK_HW_LRO_TIMER_UNIT 1 /* 20 us */
51#define MTK_HW_LRO_REFRESH_TIME 50000 /* 1 sec. */
52#define MTK_HW_LRO_AGG_TIME 10 /* 200us */
53#define MTK_HW_LRO_AGE_TIME 50 /* 1ms */
54#define MTK_HW_LRO_MAX_AGG_CNT 64
55#define MTK_HW_LRO_BW_THRE 3000
56#define MTK_HW_LRO_REPLACE_DELTA 1000
57#define MTK_HW_LRO_SDL_REMAIN_ROOM 1522
58
59/* Frame Engine Global Reset Register */
60#define MTK_RST_GL 0x04
61#define RST_GL_PSE BIT(0)
62
63/* Frame Engine Interrupt Status Register */
64#define MTK_INT_STATUS2 0x08
65#define MTK_GDM1_AF BIT(28)
66#define MTK_GDM2_AF BIT(29)
67
68/* PDMA HW LRO Alter Flow Timer Register */
69#define MTK_PDMA_LRO_ALT_REFRESH_TIMER 0x1c
70
71/* Frame Engine Interrupt Grouping Register */
72#define MTK_FE_INT_GRP 0x20
73
developer77d03a72021-06-06 00:06:00 +080074/* Frame Engine LRO auto-learn table info */
75#define MTK_FE_ALT_CF8 0x300
76#define MTK_FE_ALT_SGL_CFC 0x304
77#define MTK_FE_ALT_SEQ_CFC 0x308
78
developerfd40db22021-04-29 10:08:25 +080079/* CDMP Ingress Control Register */
80#define MTK_CDMQ_IG_CTRL 0x1400
81#define MTK_CDMQ_STAG_EN BIT(0)
82
83/* CDMP Ingress Control Register */
84#define MTK_CDMP_IG_CTRL 0x400
85#define MTK_CDMP_STAG_EN BIT(0)
86
87/* CDMP Exgress Control Register */
88#define MTK_CDMP_EG_CTRL 0x404
89
90/* GDM Exgress Control Register */
91#define MTK_GDMA_FWD_CFG(x) (0x500 + (x * 0x1000))
92#define MTK_GDMA_SPECIAL_TAG BIT(24)
93#define MTK_GDMA_ICS_EN BIT(22)
94#define MTK_GDMA_TCS_EN BIT(21)
95#define MTK_GDMA_UCS_EN BIT(20)
96#define MTK_GDMA_TO_PDMA 0x0
97#define MTK_GDMA_DROP_ALL 0x7777
98
99/* Unicast Filter MAC Address Register - Low */
100#define MTK_GDMA_MAC_ADRL(x) (0x508 + (x * 0x1000))
101
102/* Unicast Filter MAC Address Register - High */
103#define MTK_GDMA_MAC_ADRH(x) (0x50C + (x * 0x1000))
104
105/* Internal SRAM offset */
106#define MTK_ETH_SRAM_OFFSET 0x40000
107
108/* FE global misc reg*/
109#define MTK_FE_GLO_MISC 0x124
110
developerfef9efd2021-06-16 18:28:09 +0800111/* PSE Free Queue Flow Control */
112#define PSE_FQFC_CFG1 0x100
113#define PSE_FQFC_CFG2 0x104
developer81bcad32021-07-15 14:14:38 +0800114#define PSE_DROP_CFG 0x108
developerfef9efd2021-06-16 18:28:09 +0800115
developerfd40db22021-04-29 10:08:25 +0800116/* PSE Input Queue Reservation Register*/
117#define PSE_IQ_REV(x) (0x140 + ((x - 1) * 0x4))
118
119/* PSE Output Queue Threshold Register*/
120#define PSE_OQ_TH(x) (0x160 + ((x - 1) * 0x4))
121
developerfef9efd2021-06-16 18:28:09 +0800122/* GDM and CDM Threshold */
123#define MTK_GDM2_THRES 0x1530
124#define MTK_CDMW0_THRES 0x164c
125#define MTK_CDMW1_THRES 0x1650
126#define MTK_CDME0_THRES 0x1654
127#define MTK_CDME1_THRES 0x1658
128#define MTK_CDMM_THRES 0x165c
129
developerfd40db22021-04-29 10:08:25 +0800130#define MTK_PDMA_V2 BIT(4)
developerfd40db22021-04-29 10:08:25 +0800131
developera2bdbd52021-05-31 19:10:17 +0800132#if defined(CONFIG_MEDIATEK_NETSYS_V2)
developerfd40db22021-04-29 10:08:25 +0800133#define PDMA_BASE 0x6000
developerfd40db22021-04-29 10:08:25 +0800134#define QDMA_BASE 0x4400
135#else
136#define PDMA_BASE 0x0800
137#define QDMA_BASE 0x1800
138#endif
139/* PDMA RX Base Pointer Register */
140#define MTK_PRX_BASE_PTR0 (PDMA_BASE + 0x100)
141#define MTK_PRX_BASE_PTR_CFG(x) (MTK_PRX_BASE_PTR0 + (x * 0x10))
142
143/* PDMA RX Maximum Count Register */
144#define MTK_PRX_MAX_CNT0 (MTK_PRX_BASE_PTR0 + 0x04)
145#define MTK_PRX_MAX_CNT_CFG(x) (MTK_PRX_MAX_CNT0 + (x * 0x10))
146
147/* PDMA RX CPU Pointer Register */
148#define MTK_PRX_CRX_IDX0 (MTK_PRX_BASE_PTR0 + 0x08)
149#define MTK_PRX_CRX_IDX_CFG(x) (MTK_PRX_CRX_IDX0 + (x * 0x10))
150
151/* PDMA HW LRO Control Registers */
developer77d03a72021-06-06 00:06:00 +0800152#define BITS(m, n) (~(BIT(m) - 1) & ((BIT(n) - 1) | BIT(n)))
153#if defined(CONFIG_MEDIATEK_NETSYS_V2)
154#define MTK_MAX_RX_RING_NUM (8)
155#define MTK_HW_LRO_RING_NUM (4)
156#define IS_HW_LRO_RING(ring_no) (((ring_no) > 3) && ((ring_no) < 8))
157#define MTK_PDMA_LRO_CTRL_DW0 (PDMA_BASE + 0x408)
158#define MTK_LRO_ALT_SCORE_DELTA (PDMA_BASE + 0x41c)
159#define MTK_LRO_RX_RING0_CTRL_DW1 (PDMA_BASE + 0x438)
160#define MTK_LRO_RX_RING0_CTRL_DW2 (PDMA_BASE + 0x43c)
161#define MTK_LRO_RX_RING0_CTRL_DW3 (PDMA_BASE + 0x440)
162#define MTK_L3_CKS_UPD_EN BIT(19)
163#define MTK_LRO_CRSN_BNW BIT(22)
164#define MTK_LRO_RING_RELINGUISH_REQ (0xf << 24)
165#define MTK_LRO_RING_RELINGUISH_DONE (0xf << 28)
166#else
167#define MTK_MAX_RX_RING_NUM (4)
168#define MTK_HW_LRO_RING_NUM (3)
169#define IS_HW_LRO_RING(ring_no) (((ring_no) > 0) && ((ring_no) < 4))
170#define MTK_PDMA_LRO_CTRL_DW0 (PDMA_BASE + 0x180)
171#define MTK_LRO_ALT_SCORE_DELTA (PDMA_BASE + 0x24c)
172#define MTK_LRO_RX_RING0_CTRL_DW1 (PDMA_BASE + 0x328)
173#define MTK_LRO_RX_RING0_CTRL_DW2 (PDMA_BASE + 0x32c)
174#define MTK_LRO_RX_RING0_CTRL_DW3 (PDMA_BASE + 0x330)
175#define MTK_LRO_CRSN_BNW BIT(6)
developerfd40db22021-04-29 10:08:25 +0800176#define MTK_L3_CKS_UPD_EN BIT(7)
developer77d03a72021-06-06 00:06:00 +0800177#define MTK_LRO_RING_RELINGUISH_REQ (0x7 << 26)
178#define MTK_LRO_RING_RELINGUISH_DONE (0x7 << 29)
179#endif
180
181#define IS_NORMAL_RING(ring_no) ((ring_no) == 0)
182#define MTK_LRO_EN BIT(0)
developer18f46a82021-07-20 21:08:21 +0800183#define MTK_NON_LRO_MULTI_EN BIT(2)
184#define MTK_LRO_DLY_INT_EN BIT(5)
developerfd40db22021-04-29 10:08:25 +0800185#define MTK_LRO_ALT_PKT_CNT_MODE BIT(21)
developer77d03a72021-06-06 00:06:00 +0800186#define MTK_LRO_L4_CTRL_PSH_EN BIT(23)
187#define MTK_CTRL_DW0_SDL_OFFSET (3)
188#define MTK_CTRL_DW0_SDL_MASK BITS(3, 18)
developerfd40db22021-04-29 10:08:25 +0800189
190#define MTK_PDMA_LRO_CTRL_DW1 (MTK_PDMA_LRO_CTRL_DW0 + 0x04)
191#define MTK_PDMA_LRO_CTRL_DW2 (MTK_PDMA_LRO_CTRL_DW0 + 0x08)
192#define MTK_PDMA_LRO_CTRL_DW3 (MTK_PDMA_LRO_CTRL_DW0 + 0x0c)
193#define MTK_ADMA_MODE BIT(15)
194#define MTK_LRO_MIN_RXD_SDL (MTK_HW_LRO_SDL_REMAIN_ROOM << 16)
195
developer18f46a82021-07-20 21:08:21 +0800196/* PDMA RSS Control Registers */
197#if defined(CONFIG_MEDIATEK_NETSYS_V2)
198#define MTK_PDMA_RSS_GLO_CFG (PDMA_BASE + 0x800)
199#define MTK_RX_NAPI_NUM (2)
200#define MTK_MAX_IRQ_NUM (4)
201#else
202#define MTK_PDMA_RSS_GLO_CFG 0x3000
203#define MTK_RX_NAPI_NUM (1)
204#define MTK_MAX_IRQ_NUM (3)
205#endif
206#define MTK_RSS_RING1 (1)
207#define MTK_RSS_EN BIT(0)
208#define MTK_RSS_CFG_REQ BIT(2)
209#define MTK_RSS_IPV6_STATIC_HASH (0x7 << 8)
210#define MTK_RSS_IPV4_STATIC_HASH (0x7 << 12)
211#define MTK_RSS_INDR_TABLE_DW0 (MTK_PDMA_RSS_GLO_CFG + 0x50)
212#define MTK_RSS_INDR_TABLE_DW1 (MTK_PDMA_RSS_GLO_CFG + 0x54)
213#define MTK_RSS_INDR_TABLE_DW2 (MTK_PDMA_RSS_GLO_CFG + 0x58)
214#define MTK_RSS_INDR_TABLE_DW3 (MTK_PDMA_RSS_GLO_CFG + 0x5C)
215#define MTK_RSS_INDR_TABLE_DW4 (MTK_PDMA_RSS_GLO_CFG + 0x60)
216#define MTK_RSS_INDR_TABLE_DW5 (MTK_PDMA_RSS_GLO_CFG + 0x64)
217#define MTK_RSS_INDR_TABLE_DW6 (MTK_PDMA_RSS_GLO_CFG + 0x68)
218#define MTK_RSS_INDR_TABLE_DW7 (MTK_PDMA_RSS_GLO_CFG + 0x6C)
219#define MTK_RSS_INDR_TABLE_SIZE4 0x44444444
220
developerfd40db22021-04-29 10:08:25 +0800221/* PDMA Global Configuration Register */
222#define MTK_PDMA_GLO_CFG (PDMA_BASE + 0x204)
developer77d03a72021-06-06 00:06:00 +0800223#define MTK_RX_DMA_LRO_EN BIT(8)
developerfd40db22021-04-29 10:08:25 +0800224#define MTK_MULTI_EN BIT(10)
225#define MTK_PDMA_SIZE_8DWORDS (1 << 4)
226
developer77d03a72021-06-06 00:06:00 +0800227/* PDMA Global Configuration Register */
228#define MTK_PDMA_RX_CFG (PDMA_BASE + 0x210)
229#define MTK_PDMA_LRO_SDL (0x3000)
230#define MTK_RX_CFG_SDL_OFFSET (16)
231
developerfd40db22021-04-29 10:08:25 +0800232/* PDMA Reset Index Register */
233#define MTK_PDMA_RST_IDX (PDMA_BASE + 0x208)
234#define MTK_PST_DRX_IDX0 BIT(16)
235#define MTK_PST_DRX_IDX_CFG(x) (MTK_PST_DRX_IDX0 << (x))
236
237/* PDMA Delay Interrupt Register */
238#define MTK_PDMA_DELAY_INT (PDMA_BASE + 0x20c)
239#define MTK_PDMA_DELAY_RX_EN BIT(15)
240#define MTK_PDMA_DELAY_RX_PINT 4
241#define MTK_PDMA_DELAY_RX_PINT_SHIFT 8
242#define MTK_PDMA_DELAY_RX_PTIME 4
243#define MTK_PDMA_DELAY_RX_DELAY \
244 (MTK_PDMA_DELAY_RX_EN | MTK_PDMA_DELAY_RX_PTIME | \
245 (MTK_PDMA_DELAY_RX_PINT << MTK_PDMA_DELAY_RX_PINT_SHIFT))
246
247/* PDMA Interrupt Status Register */
248#define MTK_PDMA_INT_STATUS (PDMA_BASE + 0x220)
249
250/* PDMA Interrupt Mask Register */
251#define MTK_PDMA_INT_MASK (PDMA_BASE + 0x228)
252
developerfd40db22021-04-29 10:08:25 +0800253/* PDMA Interrupt grouping registers */
254#define MTK_PDMA_INT_GRP1 (PDMA_BASE + 0x250)
255#define MTK_PDMA_INT_GRP2 (PDMA_BASE + 0x254)
developer18f46a82021-07-20 21:08:21 +0800256#if defined(CONFIG_MEDIATEK_NETSYS_V2)
257#define MTK_PDMA_INT_GRP3 (PDMA_BASE + 0x258)
258#else
259#define MTK_PDMA_INT_GRP3 (PDMA_BASE + 0x22c)
260#endif
261#define MTK_LRO_RX1_DLY_INT 0xa70
262#define MTK_MAX_DELAY_INT 0x8f0f8f0f
developerfd40db22021-04-29 10:08:25 +0800263
264/* PDMA HW LRO IP Setting Registers */
developer77d03a72021-06-06 00:06:00 +0800265#if defined(CONFIG_MEDIATEK_NETSYS_V2)
266#define MTK_LRO_RX_RING0_DIP_DW0 (PDMA_BASE + 0x414)
267#else
developerfd40db22021-04-29 10:08:25 +0800268#define MTK_LRO_RX_RING0_DIP_DW0 (PDMA_BASE + 0x304)
developer77d03a72021-06-06 00:06:00 +0800269#endif
developerfd40db22021-04-29 10:08:25 +0800270#define MTK_LRO_DIP_DW0_CFG(x) (MTK_LRO_RX_RING0_DIP_DW0 + (x * 0x40))
271#define MTK_RING_MYIP_VLD BIT(9)
272
developer77d03a72021-06-06 00:06:00 +0800273/* PDMA HW LRO ALT Debug Registers */
274#define MTK_LRO_ALT_DBG (PDMA_BASE + 0x440)
275#define MTK_LRO_ALT_INDEX_OFFSET (8)
276
277/* PDMA HW LRO ALT Data Registers */
278#define MTK_LRO_ALT_DBG_DATA (PDMA_BASE + 0x444)
279
developerfd40db22021-04-29 10:08:25 +0800280/* PDMA HW LRO Ring Control Registers */
developerfd40db22021-04-29 10:08:25 +0800281#define MTK_LRO_CTRL_DW1_CFG(x) (MTK_LRO_RX_RING0_CTRL_DW1 + (x * 0x40))
282#define MTK_LRO_CTRL_DW2_CFG(x) (MTK_LRO_RX_RING0_CTRL_DW2 + (x * 0x40))
283#define MTK_LRO_CTRL_DW3_CFG(x) (MTK_LRO_RX_RING0_CTRL_DW3 + (x * 0x40))
284#define MTK_RING_AGE_TIME_L ((MTK_HW_LRO_AGE_TIME & 0x3ff) << 22)
285#define MTK_RING_AGE_TIME_H ((MTK_HW_LRO_AGE_TIME >> 10) & 0x3f)
developer18f46a82021-07-20 21:08:21 +0800286#define MTK_RING_PSE_MODE (1 << 6)
developerfd40db22021-04-29 10:08:25 +0800287#define MTK_RING_AUTO_LERAN_MODE (3 << 6)
288#define MTK_RING_VLD BIT(8)
289#define MTK_RING_MAX_AGG_TIME ((MTK_HW_LRO_AGG_TIME & 0xffff) << 10)
290#define MTK_RING_MAX_AGG_CNT_L ((MTK_HW_LRO_MAX_AGG_CNT & 0x3f) << 26)
291#define MTK_RING_MAX_AGG_CNT_H ((MTK_HW_LRO_MAX_AGG_CNT >> 6) & 0x3)
292
developer77d03a72021-06-06 00:06:00 +0800293/* LRO_RX_RING_CTRL_DW masks */
294#define MTK_LRO_RING_AGG_TIME_MASK BITS(10, 25)
295#define MTK_LRO_RING_AGG_CNT_L_MASK BITS(26, 31)
296#define MTK_LRO_RING_AGG_CNT_H_MASK BITS(0, 1)
297#define MTK_LRO_RING_AGE_TIME_L_MASK BITS(22, 31)
298#define MTK_LRO_RING_AGE_TIME_H_MASK BITS(0, 5)
299
300/* LRO_RX_RING_CTRL_DW0 offsets */
301#define MTK_RX_IPV6_FORCE_OFFSET (0)
302#define MTK_RX_IPV4_FORCE_OFFSET (1)
303
304/* LRO_RX_RING_CTRL_DW1 offsets */
305#define MTK_LRO_RING_AGE_TIME_L_OFFSET (22)
306
307/* LRO_RX_RING_CTRL_DW2 offsets */
308#define MTK_LRO_RING_AGE_TIME_H_OFFSET (0)
309#define MTK_RX_MODE_OFFSET (6)
310#define MTK_RX_PORT_VALID_OFFSET (8)
311#define MTK_RX_MYIP_VALID_OFFSET (9)
312#define MTK_LRO_RING_AGG_TIME_OFFSET (10)
313#define MTK_LRO_RING_AGG_CNT_L_OFFSET (26)
314
315/* LRO_RX_RING_CTRL_DW3 offsets */
316#define MTK_LRO_RING_AGG_CNT_H_OFFSET (0)
317
318/* LRO_RX_RING_STP_DTP_DW offsets */
319#define MTK_RX_TCP_DEST_PORT_OFFSET (0)
320#define MTK_RX_TCP_SRC_PORT_OFFSET (16)
321
developerfd40db22021-04-29 10:08:25 +0800322/* QDMA TX Queue Configuration Registers */
323#define MTK_QTX_CFG(x) (QDMA_BASE + (x * 0x10))
324#define QDMA_RES_THRES 4
325
326/* QDMA TX Queue Scheduler Registers */
327#define MTK_QTX_SCH(x) (QDMA_BASE + 4 + (x * 0x10))
328
329/* QDMA RX Base Pointer Register */
330#define MTK_QRX_BASE_PTR0 (QDMA_BASE + 0x100)
331#define MTK_QRX_BASE_PTR_CFG(x) (MTK_QRX_BASE_PTR0 + ((x) * 0x10))
332
333/* QDMA RX Maximum Count Register */
334#define MTK_QRX_MAX_CNT0 (QDMA_BASE + 0x104)
335#define MTK_QRX_MAX_CNT_CFG(x) (MTK_QRX_MAX_CNT0 + ((x) * 0x10))
336
337/* QDMA RX CPU Pointer Register */
338#define MTK_QRX_CRX_IDX0 (QDMA_BASE + 0x108)
339#define MTK_QRX_CRX_IDX_CFG(x) (MTK_QRX_CRX_IDX0 + ((x) * 0x10))
340
341/* QDMA RX DMA Pointer Register */
342#define MTK_QRX_DRX_IDX0 (QDMA_BASE + 0x10c)
343
344/* QDMA Global Configuration Register */
345#define MTK_QDMA_GLO_CFG (QDMA_BASE + 0x204)
346#define MTK_RX_2B_OFFSET BIT(31)
347#define MTK_RX_BT_32DWORDS (3 << 11)
348#define MTK_NDP_CO_PRO BIT(10)
349#define MTK_TX_WB_DDONE BIT(6)
350#define MTK_DMA_SIZE_16DWORDS (2 << 4)
351#define MTK_DMA_SIZE_32DWORDS (3 << 4)
352#define MTK_RX_DMA_BUSY BIT(3)
353#define MTK_TX_DMA_BUSY BIT(1)
354#define MTK_RX_DMA_EN BIT(2)
355#define MTK_TX_DMA_EN BIT(0)
356#define MTK_DMA_BUSY_TIMEOUT HZ
357
358/* QDMA V2 Global Configuration Register */
359#define MTK_CHK_DDONE_EN BIT(28)
360#define MTK_DMAD_WR_WDONE BIT(26)
361#define MTK_WCOMP_EN BIT(24)
362#define MTK_RESV_BUF (0x40 << 16)
363#define MTK_MUTLI_CNT (0x4 << 12)
364
365/* QDMA Reset Index Register */
366#define MTK_QDMA_RST_IDX (QDMA_BASE + 0x208)
367
368/* QDMA Delay Interrupt Register */
369#define MTK_QDMA_DELAY_INT (QDMA_BASE + 0x20c)
370
371/* QDMA Flow Control Register */
372#define MTK_QDMA_FC_THRES (QDMA_BASE + 0x210)
373#define FC_THRES_DROP_MODE BIT(20)
374#define FC_THRES_DROP_EN (7 << 16)
375#define FC_THRES_MIN 0x4444
376
377/* QDMA Interrupt Status Register */
378#define MTK_QDMA_INT_STATUS (QDMA_BASE + 0x218)
developera2bdbd52021-05-31 19:10:17 +0800379#if defined(CONFIG_MEDIATEK_NETSYS_V2)
developer18f46a82021-07-20 21:08:21 +0800380#define MTK_RX_DONE_INT(ring_no) \
381 ((ring_no)? BIT(16 + (ring_no)) : BIT(14))
developerfd40db22021-04-29 10:08:25 +0800382#else
developer18f46a82021-07-20 21:08:21 +0800383#define MTK_RX_DONE_INT(ring_no) \
384 ((ring_no)? BIT(24 + (ring_no)) : BIT(30))
developerfd40db22021-04-29 10:08:25 +0800385#endif
386#define MTK_RX_DONE_INT3 BIT(19)
387#define MTK_RX_DONE_INT2 BIT(18)
388#define MTK_RX_DONE_INT1 BIT(17)
389#define MTK_RX_DONE_INT0 BIT(16)
390#define MTK_TX_DONE_INT3 BIT(3)
391#define MTK_TX_DONE_INT2 BIT(2)
392#define MTK_TX_DONE_INT1 BIT(1)
393#define MTK_TX_DONE_INT0 BIT(0)
developerfd40db22021-04-29 10:08:25 +0800394#define MTK_TX_DONE_DLY BIT(28)
395#define MTK_TX_DONE_INT MTK_TX_DONE_DLY
396
397/* QDMA Interrupt grouping registers */
398#define MTK_QDMA_INT_GRP1 (QDMA_BASE + 0x220)
399#define MTK_QDMA_INT_GRP2 (QDMA_BASE + 0x224)
400#define MTK_RLS_DONE_INT BIT(0)
401
402/* QDMA Interrupt Status Register */
403#define MTK_QDMA_INT_MASK (QDMA_BASE + 0x21c)
404
405/* QDMA Interrupt Mask Register */
406#define MTK_QDMA_HRED2 (QDMA_BASE + 0x244)
407
408/* QDMA TX Forward CPU Pointer Register */
409#define MTK_QTX_CTX_PTR (QDMA_BASE +0x300)
410
411/* QDMA TX Forward DMA Pointer Register */
412#define MTK_QTX_DTX_PTR (QDMA_BASE +0x304)
413
414/* QDMA TX Release CPU Pointer Register */
415#define MTK_QTX_CRX_PTR (QDMA_BASE +0x310)
416
417/* QDMA TX Release DMA Pointer Register */
418#define MTK_QTX_DRX_PTR (QDMA_BASE +0x314)
419
420/* QDMA FQ Head Pointer Register */
421#define MTK_QDMA_FQ_HEAD (QDMA_BASE +0x320)
422
423/* QDMA FQ Head Pointer Register */
424#define MTK_QDMA_FQ_TAIL (QDMA_BASE +0x324)
425
426/* QDMA FQ Free Page Counter Register */
427#define MTK_QDMA_FQ_CNT (QDMA_BASE +0x328)
428
429/* QDMA FQ Free Page Buffer Length Register */
430#define MTK_QDMA_FQ_BLEN (QDMA_BASE +0x32c)
431
432/* GMA1 Received Good Byte Count Register */
433#if defined(CONFIG_MEDIATEK_NETSYS_V2)
434#define MTK_GDM1_TX_GBCNT 0x1C00
435#else
436#define MTK_GDM1_TX_GBCNT 0x2400
437#endif
438#define MTK_STAT_OFFSET 0x40
439
440/* QDMA TX NUM */
441#define MTK_QDMA_TX_NUM 16
442#define MTK_QDMA_TX_MASK ((MTK_QDMA_TX_NUM) - 1)
443#define QID_LOW_BITS(x) ((x) & 0xf)
444#define QID_HIGH_BITS(x) ((((x) >> 4) & 0x3) << 20)
445#define QID_BITS_V2(x) (((x) & 0x3f) << 16)
446
447/* QDMA V2 descriptor txd6 */
448#define TX_DMA_INS_VLAN_V2 BIT(16)
449
450/* QDMA V2 descriptor txd5 */
451#define TX_DMA_CHKSUM_V2 (0x7 << 28)
452#define TX_DMA_TSO_V2 BIT(31)
453
454/* QDMA V2 descriptor txd4 */
455#define TX_DMA_FPORT_SHIFT_V2 8
456#define TX_DMA_FPORT_MASK_V2 0xf
457#define TX_DMA_SWC_V2 BIT(30)
458
459#if defined(CONFIG_MEDIATEK_NETSYS_V2)
460#define MTK_TX_DMA_BUF_LEN 0xffff
461#define MTK_TX_DMA_BUF_SHIFT 8
462#else
463#define MTK_TX_DMA_BUF_LEN 0x3fff
464#define MTK_TX_DMA_BUF_SHIFT 16
465#endif
466
developera2bdbd52021-05-31 19:10:17 +0800467#if defined(CONFIG_MEDIATEK_NETSYS_V2)
developerfd40db22021-04-29 10:08:25 +0800468#define MTK_RX_DMA_BUF_LEN 0xffff
469#define MTK_RX_DMA_BUF_SHIFT 8
470#define RX_DMA_SPORT_SHIFT 26
471#define RX_DMA_SPORT_MASK 0xf
472#else
473#define MTK_RX_DMA_BUF_LEN 0x3fff
474#define MTK_RX_DMA_BUF_SHIFT 16
475#define RX_DMA_SPORT_SHIFT 19
476#define RX_DMA_SPORT_MASK 0x7
477#endif
478
479/* QDMA descriptor txd4 */
480#define TX_DMA_CHKSUM (0x7 << 29)
481#define TX_DMA_TSO BIT(28)
482#define TX_DMA_FPORT_SHIFT 25
483#define TX_DMA_FPORT_MASK 0x7
484#define TX_DMA_INS_VLAN BIT(16)
485
486/* QDMA descriptor txd3 */
487#define TX_DMA_OWNER_CPU BIT(31)
488#define TX_DMA_LS0 BIT(30)
489#define TX_DMA_PLEN0(_x) (((_x) & MTK_TX_DMA_BUF_LEN) << MTK_TX_DMA_BUF_SHIFT)
490#define TX_DMA_PLEN1(_x) ((_x) & MTK_TX_DMA_BUF_LEN)
491#define TX_DMA_SWC BIT(14)
492#define TX_DMA_SDL(_x) (TX_DMA_PLEN0(_x))
493
494/* PDMA on MT7628 */
495#define TX_DMA_DONE BIT(31)
496#define TX_DMA_LS1 BIT(14)
497#define TX_DMA_DESP2_DEF (TX_DMA_LS0 | TX_DMA_DONE)
498
499/* QDMA descriptor rxd2 */
500#define RX_DMA_DONE BIT(31)
501#define RX_DMA_LSO BIT(30)
502#define RX_DMA_PLEN0(_x) (((_x) & MTK_RX_DMA_BUF_LEN) << MTK_RX_DMA_BUF_SHIFT)
503#define RX_DMA_GET_PLEN0(_x) (((_x) >> MTK_RX_DMA_BUF_SHIFT) & MTK_RX_DMA_BUF_LEN)
developer77d03a72021-06-06 00:06:00 +0800504#define RX_DMA_GET_AGG_CNT(_x) (((_x) >> 2) & 0xff)
505#define RX_DMA_GET_REV(_x) (((_x) >> 10) & 0x1f)
developerfd40db22021-04-29 10:08:25 +0800506#define RX_DMA_VTAG BIT(15)
507
508/* QDMA descriptor rxd3 */
509#define RX_DMA_VID(_x) ((_x) & VLAN_VID_MASK)
510#define RX_DMA_TCI(_x) ((_x) & (VLAN_PRIO_MASK | VLAN_VID_MASK))
511#define RX_DMA_VPID(_x) (((_x) >> 16) & 0xffff)
512
513/* QDMA descriptor rxd4 */
514#define RX_DMA_L4_VALID BIT(24)
515#define RX_DMA_L4_VALID_PDMA BIT(30) /* when PDMA is used */
516#define RX_DMA_SPECIAL_TAG BIT(22) /* switch header in packet */
517
518#define RX_DMA_GET_SPORT(_x) (((_x) >> RX_DMA_SPORT_SHIFT) & RX_DMA_SPORT_MASK)
519
520/* PDMA V2 descriptor rxd3 */
521#define RX_DMA_VTAG_V2 BIT(0)
522#define RX_DMA_L4_VALID_V2 BIT(2)
523
524/* PDMA V2 descriptor rxd4 */
525#define RX_DMA_VID_V2(_x) RX_DMA_VID(_x)
developer255bba22021-07-27 15:16:33 +0800526#define RX_DMA_TCI_V2(_x) RX_DMA_TCI(_x)
527#define RX_DMA_VPID_V2(_x) RX_DMA_VPID(_x)
developerfd40db22021-04-29 10:08:25 +0800528
developer77d03a72021-06-06 00:06:00 +0800529/* PDMA V2 descriptor rxd6 */
530#define RX_DMA_GET_FLUSH_RSN_V2(_x) ((_x) & 0x7)
531#define RX_DMA_GET_AGG_CNT_V2(_x) (((_x) >> 16) & 0xff)
532
developerfd40db22021-04-29 10:08:25 +0800533/* PHY Indirect Access Control registers */
534#define MTK_PHY_IAC 0x10004
535#define PHY_IAC_ACCESS BIT(31)
536#define PHY_IAC_READ BIT(19)
537#define PHY_IAC_WRITE BIT(18)
538#define PHY_IAC_START BIT(16)
539#define PHY_IAC_ADDR_SHIFT 20
540#define PHY_IAC_REG_SHIFT 25
541#define PHY_IAC_TIMEOUT HZ
542
543#define MTK_MAC_MISC 0x1000c
544#define MTK_MUX_TO_ESW BIT(0)
545
546/* Mac control registers */
547#define MTK_MAC_MCR(x) (0x10100 + (x * 0x100))
548#define MAC_MCR_MAX_RX_1536 BIT(24)
549#define MAC_MCR_IPG_CFG (BIT(18) | BIT(16))
550#define MAC_MCR_FORCE_MODE BIT(15)
551#define MAC_MCR_TX_EN BIT(14)
552#define MAC_MCR_RX_EN BIT(13)
553#define MAC_MCR_BACKOFF_EN BIT(9)
554#define MAC_MCR_BACKPR_EN BIT(8)
555#define MAC_MCR_FORCE_RX_FC BIT(5)
556#define MAC_MCR_FORCE_TX_FC BIT(4)
557#define MAC_MCR_SPEED_1000 BIT(3)
558#define MAC_MCR_SPEED_100 BIT(2)
559#define MAC_MCR_FORCE_DPX BIT(1)
560#define MAC_MCR_FORCE_LINK BIT(0)
561#define MAC_MCR_FORCE_LINK_DOWN (MAC_MCR_FORCE_MODE)
562
563/* Mac status registers */
564#define MTK_MAC_MSR(x) (0x10108 + (x * 0x100))
565#define MAC_MSR_EEE1G BIT(7)
566#define MAC_MSR_EEE100M BIT(6)
567#define MAC_MSR_RX_FC BIT(5)
568#define MAC_MSR_TX_FC BIT(4)
569#define MAC_MSR_SPEED_1000 BIT(3)
570#define MAC_MSR_SPEED_100 BIT(2)
571#define MAC_MSR_SPEED_MASK (MAC_MSR_SPEED_1000 | MAC_MSR_SPEED_100)
572#define MAC_MSR_DPX BIT(1)
573#define MAC_MSR_LINK BIT(0)
574
575/* TRGMII RXC control register */
576#define TRGMII_RCK_CTRL 0x10300
577#define DQSI0(x) ((x << 0) & GENMASK(6, 0))
578#define DQSI1(x) ((x << 8) & GENMASK(14, 8))
579#define RXCTL_DMWTLAT(x) ((x << 16) & GENMASK(18, 16))
580#define RXC_RST BIT(31)
581#define RXC_DQSISEL BIT(30)
582#define RCK_CTRL_RGMII_1000 (RXC_DQSISEL | RXCTL_DMWTLAT(2) | DQSI1(16))
583#define RCK_CTRL_RGMII_10_100 RXCTL_DMWTLAT(2)
584
585#define NUM_TRGMII_CTRL 5
586
587/* TRGMII RXC control register */
588#define TRGMII_TCK_CTRL 0x10340
589#define TXCTL_DMWTLAT(x) ((x << 16) & GENMASK(18, 16))
590#define TXC_INV BIT(30)
591#define TCK_CTRL_RGMII_1000 TXCTL_DMWTLAT(2)
592#define TCK_CTRL_RGMII_10_100 (TXC_INV | TXCTL_DMWTLAT(2))
593
594/* TRGMII TX Drive Strength */
595#define TRGMII_TD_ODT(i) (0x10354 + 8 * (i))
596#define TD_DM_DRVP(x) ((x) & 0xf)
597#define TD_DM_DRVN(x) (((x) & 0xf) << 4)
598
599/* TRGMII Interface mode register */
600#define INTF_MODE 0x10390
601#define TRGMII_INTF_DIS BIT(0)
602#define TRGMII_MODE BIT(1)
603#define TRGMII_CENTRAL_ALIGNED BIT(2)
604#define INTF_MODE_RGMII_1000 (TRGMII_MODE | TRGMII_CENTRAL_ALIGNED)
605#define INTF_MODE_RGMII_10_100 0
606
607/* GPIO port control registers for GMAC 2*/
608#define GPIO_OD33_CTRL8 0x4c0
609#define GPIO_BIAS_CTRL 0xed0
610#define GPIO_DRV_SEL10 0xf00
611
612/* ethernet subsystem chip id register */
613#define ETHSYS_CHIPID0_3 0x0
614#define ETHSYS_CHIPID4_7 0x4
615#define MT7623_ETH 7623
616#define MT7622_ETH 7622
617#define MT7621_ETH 7621
618
619/* ethernet system control register */
620#define ETHSYS_SYSCFG 0x10
621#define SYSCFG_DRAM_TYPE_DDR2 BIT(4)
622
623/* ethernet subsystem config register */
624#define ETHSYS_SYSCFG0 0x14
625#define SYSCFG0_GE_MASK 0x3
626#define SYSCFG0_GE_MODE(x, y) (x << (12 + (y * 2)))
627#define SYSCFG0_SGMII_MASK GENMASK(9, 8)
628#define SYSCFG0_SGMII_GMAC1 ((2 << 8) & SYSCFG0_SGMII_MASK)
629#define SYSCFG0_SGMII_GMAC2 ((3 << 8) & SYSCFG0_SGMII_MASK)
630#define SYSCFG0_SGMII_GMAC1_V2 BIT(9)
631#define SYSCFG0_SGMII_GMAC2_V2 BIT(8)
632
633
634/* ethernet subsystem clock register */
635#define ETHSYS_CLKCFG0 0x2c
636#define ETHSYS_TRGMII_CLK_SEL362_5 BIT(11)
637#define ETHSYS_TRGMII_MT7621_MASK (BIT(5) | BIT(6))
638#define ETHSYS_TRGMII_MT7621_APLL BIT(6)
639#define ETHSYS_TRGMII_MT7621_DDR_PLL BIT(5)
640
641/* ethernet reset control register */
developer545abf02021-07-15 17:47:01 +0800642#define ETHSYS_RSTCTRL 0x34
643#define RSTCTRL_FE BIT(6)
644#define RSTCTRL_PPE BIT(31)
645#define RSTCTRL_PPE1 BIT(30)
646#define RSTCTRL_ETH BIT(23)
647
648/* ethernet reset check idle register */
649#define ETHSYS_FE_RST_CHK_IDLE_EN 0x28
650
developerfd40db22021-04-29 10:08:25 +0800651
652/* SGMII subsystem config registers */
653/* Register to auto-negotiation restart */
654#define SGMSYS_PCS_CONTROL_1 0x0
655#define SGMII_AN_RESTART BIT(9)
656#define SGMII_ISOLATE BIT(10)
657#define SGMII_AN_ENABLE BIT(12)
658#define SGMII_LINK_STATYS BIT(18)
659#define SGMII_AN_ABILITY BIT(19)
660#define SGMII_AN_COMPLETE BIT(21)
661#define SGMII_PCS_FAULT BIT(23)
662#define SGMII_AN_EXPANSION_CLR BIT(30)
663
664/* Register to programmable link timer, the unit in 2 * 8ns */
665#define SGMSYS_PCS_LINK_TIMER 0x18
666#define SGMII_LINK_TIMER_DEFAULT (0x186a0 & GENMASK(19, 0))
667
668/* Register to control remote fault */
669#define SGMSYS_SGMII_MODE 0x20
670#define SGMII_IF_MODE_BIT0 BIT(0)
671#define SGMII_SPEED_DUPLEX_AN BIT(1)
672#define SGMII_SPEED_10 0x0
673#define SGMII_SPEED_100 BIT(2)
674#define SGMII_SPEED_1000 BIT(3)
675#define SGMII_DUPLEX_FULL BIT(4)
676#define SGMII_IF_MODE_BIT5 BIT(5)
677#define SGMII_REMOTE_FAULT_DIS BIT(8)
678#define SGMII_CODE_SYNC_SET_VAL BIT(9)
679#define SGMII_CODE_SYNC_SET_EN BIT(10)
680#define SGMII_SEND_AN_ERROR_EN BIT(11)
681#define SGMII_IF_MODE_MASK GENMASK(5, 1)
682
683/* Register to set SGMII speed, ANA RG_ Control Signals III*/
684#define SGMSYS_ANA_RG_CS3 0x2028
685#define RG_PHY_SPEED_MASK (BIT(2) | BIT(3))
686#define RG_PHY_SPEED_1_25G 0x0
687#define RG_PHY_SPEED_3_125G BIT(2)
688
689/* Register to power up QPHY */
690#define SGMSYS_QPHY_PWR_STATE_CTRL 0xe8
691#define SGMII_PHYA_PWD BIT(4)
692
developerf8ac94a2021-07-29 16:40:01 +0800693/* Register to QPHY wrapper control */
694#define SGMSYS_QPHY_WRAP_CTRL 0xec
695#define SGMII_PN_SWAP_MASK GENMASK(1, 0)
696#define SGMII_PN_SWAP_TX_RX (BIT(0) | BIT(1))
697
developerfd40db22021-04-29 10:08:25 +0800698/* Infrasys subsystem config registers */
699#define INFRA_MISC2 0x70c
700#define CO_QPHY_SEL BIT(0)
701#define GEPHY_MAC_SEL BIT(1)
702
developer255bba22021-07-27 15:16:33 +0800703/* Top misc registers */
704#define USB_PHY_SWITCH_REG 0x218
705#define QPHY_SEL_MASK GENMASK(1, 0)
706#define SGMII_QPHY_SEL 0x10
707
developerfd40db22021-04-29 10:08:25 +0800708/*MDIO control*/
709#define MII_MMD_ACC_CTL_REG 0x0d
710#define MII_MMD_ADDR_DATA_REG 0x0e
711#define MMD_OP_MODE_DATA BIT(14)
712
713/* MT7628/88 specific stuff */
714#define MT7628_PDMA_OFFSET 0x0800
715#define MT7628_SDM_OFFSET 0x0c00
716
717#define MT7628_TX_BASE_PTR0 (MT7628_PDMA_OFFSET + 0x00)
718#define MT7628_TX_MAX_CNT0 (MT7628_PDMA_OFFSET + 0x04)
719#define MT7628_TX_CTX_IDX0 (MT7628_PDMA_OFFSET + 0x08)
720#define MT7628_TX_DTX_IDX0 (MT7628_PDMA_OFFSET + 0x0c)
721#define MT7628_PST_DTX_IDX0 BIT(0)
722
723#define MT7628_SDM_MAC_ADRL (MT7628_SDM_OFFSET + 0x0c)
724#define MT7628_SDM_MAC_ADRH (MT7628_SDM_OFFSET + 0x10)
725
726struct mtk_rx_dma {
727 unsigned int rxd1;
728 unsigned int rxd2;
729 unsigned int rxd3;
730 unsigned int rxd4;
developera2bdbd52021-05-31 19:10:17 +0800731#if defined(CONFIG_MEDIATEK_NETSYS_V2)
developerfd40db22021-04-29 10:08:25 +0800732 unsigned int rxd5;
733 unsigned int rxd6;
734 unsigned int rxd7;
735 unsigned int rxd8;
736#endif
737} __packed __aligned(4);
738
739struct mtk_tx_dma {
740 unsigned int txd1;
741 unsigned int txd2;
742 unsigned int txd3;
743 unsigned int txd4;
744#if defined(CONFIG_MEDIATEK_NETSYS_V2)
745 unsigned int txd5;
746 unsigned int txd6;
747 unsigned int txd7;
748 unsigned int txd8;
749#endif
750} __packed __aligned(4);
751
752struct mtk_eth;
753struct mtk_mac;
754
755/* struct mtk_hw_stats - the structure that holds the traffic statistics.
756 * @stats_lock: make sure that stats operations are atomic
757 * @reg_offset: the status register offset of the SoC
758 * @syncp: the refcount
759 *
760 * All of the supported SoCs have hardware counters for traffic statistics.
761 * Whenever the status IRQ triggers we can read the latest stats from these
762 * counters and store them in this struct.
763 */
764struct mtk_hw_stats {
765 u64 tx_bytes;
766 u64 tx_packets;
767 u64 tx_skip;
768 u64 tx_collisions;
769 u64 rx_bytes;
770 u64 rx_packets;
771 u64 rx_overflow;
772 u64 rx_fcs_errors;
773 u64 rx_short_errors;
774 u64 rx_long_errors;
775 u64 rx_checksum_errors;
776 u64 rx_flow_control_packets;
777
778 spinlock_t stats_lock;
779 u32 reg_offset;
780 struct u64_stats_sync syncp;
781};
782
783enum mtk_tx_flags {
784 /* PDMA descriptor can point at 1-2 segments. This enum allows us to
785 * track how memory was allocated so that it can be freed properly.
786 */
787 MTK_TX_FLAGS_SINGLE0 = 0x01,
788 MTK_TX_FLAGS_PAGE0 = 0x02,
789
790 /* MTK_TX_FLAGS_FPORTx allows tracking which port the transmitted
791 * SKB out instead of looking up through hardware TX descriptor.
792 */
793 MTK_TX_FLAGS_FPORT0 = 0x04,
794 MTK_TX_FLAGS_FPORT1 = 0x08,
795};
796
797/* This enum allows us to identify how the clock is defined on the array of the
798 * clock in the order
799 */
800enum mtk_clks_map {
801 MTK_CLK_ETHIF,
802 MTK_CLK_SGMIITOP,
803 MTK_CLK_ESW,
804 MTK_CLK_GP0,
805 MTK_CLK_GP1,
806 MTK_CLK_GP2,
807 MTK_CLK_FE,
808 MTK_CLK_TRGPLL,
809 MTK_CLK_SGMII_TX_250M,
810 MTK_CLK_SGMII_RX_250M,
811 MTK_CLK_SGMII_CDR_REF,
812 MTK_CLK_SGMII_CDR_FB,
813 MTK_CLK_SGMII2_TX_250M,
814 MTK_CLK_SGMII2_RX_250M,
815 MTK_CLK_SGMII2_CDR_REF,
816 MTK_CLK_SGMII2_CDR_FB,
817 MTK_CLK_SGMII_CK,
818 MTK_CLK_ETH2PLL,
819 MTK_CLK_WOCPU0,
820 MTK_CLK_WOCPU1,
821 MTK_CLK_MAX
822};
823
824#define MT7623_CLKS_BITMAP (BIT(MTK_CLK_ETHIF) | BIT(MTK_CLK_ESW) | \
825 BIT(MTK_CLK_GP1) | BIT(MTK_CLK_GP2) | \
826 BIT(MTK_CLK_TRGPLL))
827#define MT7622_CLKS_BITMAP (BIT(MTK_CLK_ETHIF) | BIT(MTK_CLK_ESW) | \
828 BIT(MTK_CLK_GP0) | BIT(MTK_CLK_GP1) | \
829 BIT(MTK_CLK_GP2) | \
830 BIT(MTK_CLK_SGMII_TX_250M) | \
831 BIT(MTK_CLK_SGMII_RX_250M) | \
832 BIT(MTK_CLK_SGMII_CDR_REF) | \
833 BIT(MTK_CLK_SGMII_CDR_FB) | \
834 BIT(MTK_CLK_SGMII_CK) | \
835 BIT(MTK_CLK_ETH2PLL))
836#define MT7621_CLKS_BITMAP (0)
837#define MT7628_CLKS_BITMAP (0)
838#define MT7629_CLKS_BITMAP (BIT(MTK_CLK_ETHIF) | BIT(MTK_CLK_ESW) | \
839 BIT(MTK_CLK_GP0) | BIT(MTK_CLK_GP1) | \
840 BIT(MTK_CLK_GP2) | BIT(MTK_CLK_FE) | \
841 BIT(MTK_CLK_SGMII_TX_250M) | \
842 BIT(MTK_CLK_SGMII_RX_250M) | \
843 BIT(MTK_CLK_SGMII_CDR_REF) | \
844 BIT(MTK_CLK_SGMII_CDR_FB) | \
845 BIT(MTK_CLK_SGMII2_TX_250M) | \
846 BIT(MTK_CLK_SGMII2_RX_250M) | \
847 BIT(MTK_CLK_SGMII2_CDR_REF) | \
848 BIT(MTK_CLK_SGMII2_CDR_FB) | \
849 BIT(MTK_CLK_SGMII_CK) | \
850 BIT(MTK_CLK_ETH2PLL) | BIT(MTK_CLK_SGMIITOP))
851
852#define MT7986_CLKS_BITMAP (BIT(MTK_CLK_FE) | BIT(MTK_CLK_GP2) | BIT(MTK_CLK_GP1) | \
853 BIT(MTK_CLK_WOCPU1) | BIT(MTK_CLK_WOCPU0) | \
854 BIT(MTK_CLK_SGMII_TX_250M) | \
855 BIT(MTK_CLK_SGMII_RX_250M) | \
856 BIT(MTK_CLK_SGMII_CDR_REF) | \
857 BIT(MTK_CLK_SGMII_CDR_FB) | \
858 BIT(MTK_CLK_SGMII2_TX_250M) | \
859 BIT(MTK_CLK_SGMII2_RX_250M) | \
860 BIT(MTK_CLK_SGMII2_CDR_REF) | \
861 BIT(MTK_CLK_SGMII2_CDR_FB))
862
developer255bba22021-07-27 15:16:33 +0800863#define MT7981_CLKS_BITMAP (MT7986_CLKS_BITMAP)
864
developerfd40db22021-04-29 10:08:25 +0800865enum mtk_dev_state {
866 MTK_HW_INIT,
867 MTK_RESETTING
868};
869
870/* struct mtk_tx_buf - This struct holds the pointers to the memory pointed at
871 * by the TX descriptor s
872 * @skb: The SKB pointer of the packet being sent
873 * @dma_addr0: The base addr of the first segment
874 * @dma_len0: The length of the first segment
875 * @dma_addr1: The base addr of the second segment
876 * @dma_len1: The length of the second segment
877 */
878struct mtk_tx_buf {
879 struct sk_buff *skb;
880 u32 flags;
881 DEFINE_DMA_UNMAP_ADDR(dma_addr0);
882 DEFINE_DMA_UNMAP_LEN(dma_len0);
883 DEFINE_DMA_UNMAP_ADDR(dma_addr1);
884 DEFINE_DMA_UNMAP_LEN(dma_len1);
885};
886
887/* struct mtk_tx_ring - This struct holds info describing a TX ring
888 * @dma: The descriptor ring
889 * @buf: The memory pointed at by the ring
890 * @phys: The physical addr of tx_buf
891 * @next_free: Pointer to the next free descriptor
892 * @last_free: Pointer to the last free descriptor
developerc4671b22021-05-28 13:16:42 +0800893 * @last_free_ptr: Hardware pointer value of the last free descriptor
developerfd40db22021-04-29 10:08:25 +0800894 * @thresh: The threshold of minimum amount of free descriptors
895 * @free_count: QDMA uses a linked list. Track how many free descriptors
896 * are present
897 */
898struct mtk_tx_ring {
899 struct mtk_tx_dma *dma;
900 struct mtk_tx_buf *buf;
901 dma_addr_t phys;
902 struct mtk_tx_dma *next_free;
903 struct mtk_tx_dma *last_free;
developerc4671b22021-05-28 13:16:42 +0800904 u32 last_free_ptr;
developerfd40db22021-04-29 10:08:25 +0800905 u16 thresh;
906 atomic_t free_count;
907 int dma_size;
908 struct mtk_tx_dma *dma_pdma; /* For MT7628/88 PDMA handling */
909 dma_addr_t phys_pdma;
910 int cpu_idx;
911};
912
913/* PDMA rx ring mode */
914enum mtk_rx_flags {
915 MTK_RX_FLAGS_NORMAL = 0,
916 MTK_RX_FLAGS_HWLRO,
917 MTK_RX_FLAGS_QDMA,
918};
919
920/* struct mtk_rx_ring - This struct holds info describing a RX ring
921 * @dma: The descriptor ring
922 * @data: The memory pointed at by the ring
923 * @phys: The physical addr of rx_buf
924 * @frag_size: How big can each fragment be
925 * @buf_size: The size of each packet buffer
926 * @calc_idx: The current head of ring
developer77d03a72021-06-06 00:06:00 +0800927 * @ring_no: The index of ring
developerfd40db22021-04-29 10:08:25 +0800928 */
929struct mtk_rx_ring {
930 struct mtk_rx_dma *dma;
931 u8 **data;
932 dma_addr_t phys;
933 u16 frag_size;
934 u16 buf_size;
935 u16 dma_size;
936 bool calc_idx_update;
937 u16 calc_idx;
938 u32 crx_idx_reg;
developer77d03a72021-06-06 00:06:00 +0800939 u32 ring_no;
developerfd40db22021-04-29 10:08:25 +0800940};
941
developer18f46a82021-07-20 21:08:21 +0800942/* struct mtk_napi - This is the structure holding NAPI-related information,
943 * and a mtk_napi struct is binding to one interrupt group
944 * @napi: The NAPI struct
945 * @rx_ring: Pointer to the memory holding info about the RX ring
946 * @irq_grp_idx: The index indicates which interrupt group that this
947 * mtk_napi is binding to
948 */
949struct mtk_napi {
950 struct napi_struct napi;
951 struct mtk_eth *eth;
952 struct mtk_rx_ring *rx_ring;
953 u32 irq_grp_no;
954};
955
developerfd40db22021-04-29 10:08:25 +0800956enum mkt_eth_capabilities {
957 MTK_RGMII_BIT = 0,
958 MTK_TRGMII_BIT,
959 MTK_SGMII_BIT,
960 MTK_ESW_BIT,
961 MTK_GEPHY_BIT,
962 MTK_MUX_BIT,
963 MTK_INFRA_BIT,
964 MTK_SHARED_SGMII_BIT,
965 MTK_HWLRO_BIT,
developer18f46a82021-07-20 21:08:21 +0800966 MTK_RSS_BIT,
developerfd40db22021-04-29 10:08:25 +0800967 MTK_SHARED_INT_BIT,
968 MTK_TRGMII_MT7621_CLK_BIT,
969 MTK_QDMA_BIT,
developera2bdbd52021-05-31 19:10:17 +0800970 MTK_NETSYS_V2_BIT,
developerfd40db22021-04-29 10:08:25 +0800971 MTK_SOC_MT7628_BIT,
developer545abf02021-07-15 17:47:01 +0800972 MTK_RSTCTRL_PPE1_BIT,
developer255bba22021-07-27 15:16:33 +0800973 MTK_U3_COPHY_V2_BIT,
developerfd40db22021-04-29 10:08:25 +0800974
975 /* MUX BITS*/
976 MTK_ETH_MUX_GDM1_TO_GMAC1_ESW_BIT,
977 MTK_ETH_MUX_GMAC2_GMAC0_TO_GEPHY_BIT,
978 MTK_ETH_MUX_U3_GMAC2_TO_QPHY_BIT,
979 MTK_ETH_MUX_GMAC1_GMAC2_TO_SGMII_RGMII_BIT,
980 MTK_ETH_MUX_GMAC12_TO_GEPHY_SGMII_BIT,
981
982 /* PATH BITS */
983 MTK_ETH_PATH_GMAC1_RGMII_BIT,
984 MTK_ETH_PATH_GMAC1_TRGMII_BIT,
985 MTK_ETH_PATH_GMAC1_SGMII_BIT,
986 MTK_ETH_PATH_GMAC2_RGMII_BIT,
987 MTK_ETH_PATH_GMAC2_SGMII_BIT,
988 MTK_ETH_PATH_GMAC2_GEPHY_BIT,
989 MTK_ETH_PATH_GDM1_ESW_BIT,
990};
991
992/* Supported hardware group on SoCs */
993#define MTK_RGMII BIT(MTK_RGMII_BIT)
994#define MTK_TRGMII BIT(MTK_TRGMII_BIT)
995#define MTK_SGMII BIT(MTK_SGMII_BIT)
996#define MTK_ESW BIT(MTK_ESW_BIT)
997#define MTK_GEPHY BIT(MTK_GEPHY_BIT)
998#define MTK_MUX BIT(MTK_MUX_BIT)
999#define MTK_INFRA BIT(MTK_INFRA_BIT)
1000#define MTK_SHARED_SGMII BIT(MTK_SHARED_SGMII_BIT)
1001#define MTK_HWLRO BIT(MTK_HWLRO_BIT)
developer18f46a82021-07-20 21:08:21 +08001002#define MTK_RSS BIT(MTK_RSS_BIT)
developerfd40db22021-04-29 10:08:25 +08001003#define MTK_SHARED_INT BIT(MTK_SHARED_INT_BIT)
1004#define MTK_TRGMII_MT7621_CLK BIT(MTK_TRGMII_MT7621_CLK_BIT)
1005#define MTK_QDMA BIT(MTK_QDMA_BIT)
developera2bdbd52021-05-31 19:10:17 +08001006#define MTK_NETSYS_V2 BIT(MTK_NETSYS_V2_BIT)
developerfd40db22021-04-29 10:08:25 +08001007#define MTK_SOC_MT7628 BIT(MTK_SOC_MT7628_BIT)
developer545abf02021-07-15 17:47:01 +08001008#define MTK_RSTCTRL_PPE1 BIT(MTK_RSTCTRL_PPE1_BIT)
developer255bba22021-07-27 15:16:33 +08001009#define MTK_U3_COPHY_V2 BIT(MTK_U3_COPHY_V2_BIT)
developerfd40db22021-04-29 10:08:25 +08001010
1011#define MTK_ETH_MUX_GDM1_TO_GMAC1_ESW \
1012 BIT(MTK_ETH_MUX_GDM1_TO_GMAC1_ESW_BIT)
1013#define MTK_ETH_MUX_GMAC2_GMAC0_TO_GEPHY \
1014 BIT(MTK_ETH_MUX_GMAC2_GMAC0_TO_GEPHY_BIT)
1015#define MTK_ETH_MUX_U3_GMAC2_TO_QPHY \
1016 BIT(MTK_ETH_MUX_U3_GMAC2_TO_QPHY_BIT)
1017#define MTK_ETH_MUX_GMAC1_GMAC2_TO_SGMII_RGMII \
1018 BIT(MTK_ETH_MUX_GMAC1_GMAC2_TO_SGMII_RGMII_BIT)
1019#define MTK_ETH_MUX_GMAC12_TO_GEPHY_SGMII \
1020 BIT(MTK_ETH_MUX_GMAC12_TO_GEPHY_SGMII_BIT)
1021
1022/* Supported path present on SoCs */
1023#define MTK_ETH_PATH_GMAC1_RGMII BIT(MTK_ETH_PATH_GMAC1_RGMII_BIT)
1024#define MTK_ETH_PATH_GMAC1_TRGMII BIT(MTK_ETH_PATH_GMAC1_TRGMII_BIT)
1025#define MTK_ETH_PATH_GMAC1_SGMII BIT(MTK_ETH_PATH_GMAC1_SGMII_BIT)
1026#define MTK_ETH_PATH_GMAC2_RGMII BIT(MTK_ETH_PATH_GMAC2_RGMII_BIT)
1027#define MTK_ETH_PATH_GMAC2_SGMII BIT(MTK_ETH_PATH_GMAC2_SGMII_BIT)
1028#define MTK_ETH_PATH_GMAC2_GEPHY BIT(MTK_ETH_PATH_GMAC2_GEPHY_BIT)
1029#define MTK_ETH_PATH_GDM1_ESW BIT(MTK_ETH_PATH_GDM1_ESW_BIT)
1030
1031#define MTK_GMAC1_RGMII (MTK_ETH_PATH_GMAC1_RGMII | MTK_RGMII)
1032#define MTK_GMAC1_TRGMII (MTK_ETH_PATH_GMAC1_TRGMII | MTK_TRGMII)
1033#define MTK_GMAC1_SGMII (MTK_ETH_PATH_GMAC1_SGMII | MTK_SGMII)
1034#define MTK_GMAC2_RGMII (MTK_ETH_PATH_GMAC2_RGMII | MTK_RGMII)
1035#define MTK_GMAC2_SGMII (MTK_ETH_PATH_GMAC2_SGMII | MTK_SGMII)
1036#define MTK_GMAC2_GEPHY (MTK_ETH_PATH_GMAC2_GEPHY | MTK_GEPHY)
1037#define MTK_GDM1_ESW (MTK_ETH_PATH_GDM1_ESW | MTK_ESW)
1038
1039/* MUXes present on SoCs */
1040/* 0: GDM1 -> GMAC1, 1: GDM1 -> ESW */
1041#define MTK_MUX_GDM1_TO_GMAC1_ESW (MTK_ETH_MUX_GDM1_TO_GMAC1_ESW | MTK_MUX)
1042
1043/* 0: GMAC2 -> GEPHY, 1: GMAC0 -> GePHY */
1044#define MTK_MUX_GMAC2_GMAC0_TO_GEPHY \
1045 (MTK_ETH_MUX_GMAC2_GMAC0_TO_GEPHY | MTK_MUX | MTK_INFRA)
1046
1047/* 0: U3 -> QPHY, 1: GMAC2 -> QPHY */
1048#define MTK_MUX_U3_GMAC2_TO_QPHY \
1049 (MTK_ETH_MUX_U3_GMAC2_TO_QPHY | MTK_MUX | MTK_INFRA)
1050
1051/* 2: GMAC1 -> SGMII, 3: GMAC2 -> SGMII */
1052#define MTK_MUX_GMAC1_GMAC2_TO_SGMII_RGMII \
1053 (MTK_ETH_MUX_GMAC1_GMAC2_TO_SGMII_RGMII | MTK_MUX | \
1054 MTK_SHARED_SGMII)
1055
1056/* 0: GMACx -> GEPHY, 1: GMACx -> SGMII where x is 1 or 2 */
1057#define MTK_MUX_GMAC12_TO_GEPHY_SGMII \
1058 (MTK_ETH_MUX_GMAC12_TO_GEPHY_SGMII | MTK_MUX)
1059
1060#define MTK_HAS_CAPS(caps, _x) (((caps) & (_x)) == (_x))
1061
1062#define MT7621_CAPS (MTK_GMAC1_RGMII | MTK_GMAC1_TRGMII | \
1063 MTK_GMAC2_RGMII | MTK_SHARED_INT | \
1064 MTK_TRGMII_MT7621_CLK | MTK_QDMA)
1065
1066#define MT7622_CAPS (MTK_GMAC1_RGMII | MTK_GMAC1_SGMII | MTK_GMAC2_RGMII | \
1067 MTK_GMAC2_SGMII | MTK_GDM1_ESW | \
1068 MTK_MUX_GDM1_TO_GMAC1_ESW | \
1069 MTK_MUX_GMAC1_GMAC2_TO_SGMII_RGMII | MTK_QDMA)
1070
1071#define MT7623_CAPS (MTK_GMAC1_RGMII | MTK_GMAC1_TRGMII | MTK_GMAC2_RGMII | \
1072 MTK_QDMA)
1073
1074#define MT7628_CAPS (MTK_SHARED_INT | MTK_SOC_MT7628)
1075
1076#define MT7629_CAPS (MTK_GMAC1_SGMII | MTK_GMAC2_SGMII | MTK_GMAC2_GEPHY | \
1077 MTK_GDM1_ESW | MTK_MUX_GDM1_TO_GMAC1_ESW | \
1078 MTK_MUX_GMAC2_GMAC0_TO_GEPHY | \
1079 MTK_MUX_U3_GMAC2_TO_QPHY | \
1080 MTK_MUX_GMAC12_TO_GEPHY_SGMII | MTK_QDMA)
1081
developerfd40db22021-04-29 10:08:25 +08001082#define MT7986_CAPS (MTK_GMAC1_SGMII | MTK_GMAC2_SGMII | \
1083 MTK_MUX_GMAC12_TO_GEPHY_SGMII | MTK_QDMA | \
developer545abf02021-07-15 17:47:01 +08001084 MTK_NETSYS_V2 | MTK_RSTCTRL_PPE1)
developerfd40db22021-04-29 10:08:25 +08001085
developer255bba22021-07-27 15:16:33 +08001086#define MT7981_CAPS (MTK_GMAC1_SGMII | MTK_GMAC2_SGMII | MTK_GMAC2_GEPHY | \
1087 MTK_MUX_GMAC12_TO_GEPHY_SGMII | MTK_QDMA | \
1088 MTK_MUX_U3_GMAC2_TO_QPHY | MTK_U3_COPHY_V2 | \
1089 MTK_NETSYS_V2)
1090
developerfd40db22021-04-29 10:08:25 +08001091/* struct mtk_eth_data - This is the structure holding all differences
1092 * among various plaforms
1093 * @ana_rgc3: The offset for register ANA_RGC3 related to
1094 * sgmiisys syscon
1095 * @caps Flags shown the extra capability for the SoC
1096 * @hw_features Flags shown HW features
1097 * @required_clks Flags shown the bitmap for required clocks on
1098 * the target SoC
1099 * @required_pctl A bool value to show whether the SoC requires
1100 * the extra setup for those pins used by GMAC.
1101 */
1102struct mtk_soc_data {
1103 u32 ana_rgc3;
1104 u32 caps;
1105 u32 required_clks;
1106 bool required_pctl;
1107 netdev_features_t hw_features;
1108 bool has_sram;
1109};
1110
1111/* currently no SoC has more than 2 macs */
1112#define MTK_MAX_DEVS 2
1113
1114#define MTK_SGMII_PHYSPEED_AN BIT(31)
1115#define MTK_SGMII_PHYSPEED_MASK GENMASK(2, 0)
1116#define MTK_SGMII_PHYSPEED_1000 BIT(0)
1117#define MTK_SGMII_PHYSPEED_2500 BIT(1)
developerf8ac94a2021-07-29 16:40:01 +08001118#define MTK_SGMII_PN_SWAP BIT(16)
developerfd40db22021-04-29 10:08:25 +08001119#define MTK_HAS_FLAGS(flags, _x) (((flags) & (_x)) == (_x))
1120
1121/* struct mtk_sgmii - This is the structure holding sgmii regmap and its
1122 * characteristics
1123 * @regmap: The register map pointing at the range used to setup
1124 * SGMII modes
1125 * @flags: The enum refers to which mode the sgmii wants to run on
1126 * @ana_rgc3: The offset refers to register ANA_RGC3 related to regmap
1127 */
1128
1129struct mtk_sgmii {
1130 struct regmap *regmap[MTK_MAX_DEVS];
1131 u32 flags[MTK_MAX_DEVS];
1132 u32 ana_rgc3;
1133};
1134
1135/* struct mtk_eth - This is the main datasructure for holding the state
1136 * of the driver
1137 * @dev: The device pointer
1138 * @base: The mapped register i/o base
1139 * @page_lock: Make sure that register operations are atomic
1140 * @tx_irq__lock: Make sure that IRQ register operations are atomic
1141 * @rx_irq__lock: Make sure that IRQ register operations are atomic
1142 * @dummy_dev: we run 2 netdevs on 1 physical DMA ring and need a
1143 * dummy for NAPI to work
1144 * @netdev: The netdev instances
1145 * @mac: Each netdev is linked to a physical MAC
1146 * @irq: The IRQ that we are using
1147 * @msg_enable: Ethtool msg level
1148 * @ethsys: The register map pointing at the range used to setup
1149 * MII modes
1150 * @infra: The register map pointing at the range used to setup
1151 * SGMII and GePHY path
1152 * @pctl: The register map pointing at the range used to setup
1153 * GMAC port drive/slew values
1154 * @dma_refcnt: track how many netdevs are using the DMA engine
1155 * @tx_ring: Pointer to the memory holding info about the TX ring
1156 * @rx_ring: Pointer to the memory holding info about the RX ring
1157 * @rx_ring_qdma: Pointer to the memory holding info about the QDMA RX ring
1158 * @tx_napi: The TX NAPI struct
1159 * @rx_napi: The RX NAPI struct
1160 * @scratch_ring: Newer SoCs need memory for a second HW managed TX ring
1161 * @phy_scratch_ring: physical address of scratch_ring
1162 * @scratch_head: The scratch memory that scratch_ring points to.
1163 * @clks: clock array for all clocks required
1164 * @mii_bus: If there is a bus we need to create an instance for it
1165 * @pending_work: The workqueue used to reset the dma ring
1166 * @state: Initialization and runtime state of the device
1167 * @soc: Holding specific data among vaious SoCs
1168 */
1169
1170struct mtk_eth {
1171 struct device *dev;
1172 void __iomem *base;
1173 spinlock_t page_lock;
1174 spinlock_t tx_irq_lock;
1175 spinlock_t rx_irq_lock;
1176 struct net_device dummy_dev;
1177 struct net_device *netdev[MTK_MAX_DEVS];
1178 struct mtk_mac *mac[MTK_MAX_DEVS];
developer18f46a82021-07-20 21:08:21 +08001179 int irq[MTK_MAX_IRQ_NUM];
developerfd40db22021-04-29 10:08:25 +08001180 u32 msg_enable;
1181 unsigned long sysclk;
1182 struct regmap *ethsys;
1183 struct regmap *infra;
1184 struct mtk_sgmii *sgmii;
1185 struct regmap *pctl;
1186 bool hwlro;
1187 refcount_t dma_refcnt;
1188 struct mtk_tx_ring tx_ring;
1189 struct mtk_rx_ring rx_ring[MTK_MAX_RX_RING_NUM];
1190 struct mtk_rx_ring rx_ring_qdma;
1191 struct napi_struct tx_napi;
developer18f46a82021-07-20 21:08:21 +08001192 struct mtk_napi rx_napi[MTK_RX_NAPI_NUM];
developerfd40db22021-04-29 10:08:25 +08001193 struct mtk_tx_dma *scratch_ring;
1194 dma_addr_t phy_scratch_ring;
1195 void *scratch_head;
1196 struct clk *clks[MTK_CLK_MAX];
1197
1198 struct mii_bus *mii_bus;
1199 struct work_struct pending_work;
1200 unsigned long state;
1201
1202 const struct mtk_soc_data *soc;
1203
1204 u32 tx_int_mask_reg;
1205 u32 tx_int_status_reg;
1206 u32 rx_dma_l4_valid;
1207 int ip_align;
1208};
1209
1210/* struct mtk_mac - the structure that holds the info about the MACs of the
1211 * SoC
1212 * @id: The number of the MAC
1213 * @interface: Interface mode kept for detecting change in hw settings
1214 * @of_node: Our devicetree node
1215 * @hw: Backpointer to our main datastruture
1216 * @hw_stats: Packet statistics counter
1217 */
1218struct mtk_mac {
1219 int id;
1220 phy_interface_t interface;
1221 unsigned int mode;
1222 int speed;
1223 struct device_node *of_node;
1224 struct phylink *phylink;
1225 struct phylink_config phylink_config;
1226 struct mtk_eth *hw;
1227 struct mtk_hw_stats *hw_stats;
1228 __be32 hwlro_ip[MTK_MAX_LRO_IP_CNT];
1229 int hwlro_ip_cnt;
1230};
1231
1232/* the struct describing the SoC. these are declared in the soc_xyz.c files */
1233extern const struct of_device_id of_mtk_match[];
developer77d03a72021-06-06 00:06:00 +08001234extern u32 mtk_hwlro_stats_ebl;
developerfd40db22021-04-29 10:08:25 +08001235
1236/* read the hardware status register */
1237void mtk_stats_update_mac(struct mtk_mac *mac);
1238
1239void mtk_w32(struct mtk_eth *eth, u32 val, unsigned reg);
1240u32 mtk_r32(struct mtk_eth *eth, unsigned reg);
1241
1242int mtk_sgmii_init(struct mtk_sgmii *ss, struct device_node *np,
1243 u32 ana_rgc3);
1244int mtk_sgmii_setup_mode_an(struct mtk_sgmii *ss, int id);
1245int mtk_sgmii_setup_mode_force(struct mtk_sgmii *ss, int id,
1246 const struct phylink_link_state *state);
1247void mtk_sgmii_restart_an(struct mtk_eth *eth, int mac_id);
1248
1249int mtk_gmac_sgmii_path_setup(struct mtk_eth *eth, int mac_id);
1250int mtk_gmac_gephy_path_setup(struct mtk_eth *eth, int mac_id);
1251int mtk_gmac_rgmii_path_setup(struct mtk_eth *eth, int mac_id);
1252
1253#endif /* MTK_ETH_H */