blob: d39464d1c6e18e0958dc460424ff7ac45f1982c4 [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
693/* Infrasys subsystem config registers */
694#define INFRA_MISC2 0x70c
695#define CO_QPHY_SEL BIT(0)
696#define GEPHY_MAC_SEL BIT(1)
697
developer255bba22021-07-27 15:16:33 +0800698/* Top misc registers */
699#define USB_PHY_SWITCH_REG 0x218
700#define QPHY_SEL_MASK GENMASK(1, 0)
701#define SGMII_QPHY_SEL 0x10
702
developerfd40db22021-04-29 10:08:25 +0800703/*MDIO control*/
704#define MII_MMD_ACC_CTL_REG 0x0d
705#define MII_MMD_ADDR_DATA_REG 0x0e
706#define MMD_OP_MODE_DATA BIT(14)
707
708/* MT7628/88 specific stuff */
709#define MT7628_PDMA_OFFSET 0x0800
710#define MT7628_SDM_OFFSET 0x0c00
711
712#define MT7628_TX_BASE_PTR0 (MT7628_PDMA_OFFSET + 0x00)
713#define MT7628_TX_MAX_CNT0 (MT7628_PDMA_OFFSET + 0x04)
714#define MT7628_TX_CTX_IDX0 (MT7628_PDMA_OFFSET + 0x08)
715#define MT7628_TX_DTX_IDX0 (MT7628_PDMA_OFFSET + 0x0c)
716#define MT7628_PST_DTX_IDX0 BIT(0)
717
718#define MT7628_SDM_MAC_ADRL (MT7628_SDM_OFFSET + 0x0c)
719#define MT7628_SDM_MAC_ADRH (MT7628_SDM_OFFSET + 0x10)
720
721struct mtk_rx_dma {
722 unsigned int rxd1;
723 unsigned int rxd2;
724 unsigned int rxd3;
725 unsigned int rxd4;
developera2bdbd52021-05-31 19:10:17 +0800726#if defined(CONFIG_MEDIATEK_NETSYS_V2)
developerfd40db22021-04-29 10:08:25 +0800727 unsigned int rxd5;
728 unsigned int rxd6;
729 unsigned int rxd7;
730 unsigned int rxd8;
731#endif
732} __packed __aligned(4);
733
734struct mtk_tx_dma {
735 unsigned int txd1;
736 unsigned int txd2;
737 unsigned int txd3;
738 unsigned int txd4;
739#if defined(CONFIG_MEDIATEK_NETSYS_V2)
740 unsigned int txd5;
741 unsigned int txd6;
742 unsigned int txd7;
743 unsigned int txd8;
744#endif
745} __packed __aligned(4);
746
747struct mtk_eth;
748struct mtk_mac;
749
750/* struct mtk_hw_stats - the structure that holds the traffic statistics.
751 * @stats_lock: make sure that stats operations are atomic
752 * @reg_offset: the status register offset of the SoC
753 * @syncp: the refcount
754 *
755 * All of the supported SoCs have hardware counters for traffic statistics.
756 * Whenever the status IRQ triggers we can read the latest stats from these
757 * counters and store them in this struct.
758 */
759struct mtk_hw_stats {
760 u64 tx_bytes;
761 u64 tx_packets;
762 u64 tx_skip;
763 u64 tx_collisions;
764 u64 rx_bytes;
765 u64 rx_packets;
766 u64 rx_overflow;
767 u64 rx_fcs_errors;
768 u64 rx_short_errors;
769 u64 rx_long_errors;
770 u64 rx_checksum_errors;
771 u64 rx_flow_control_packets;
772
773 spinlock_t stats_lock;
774 u32 reg_offset;
775 struct u64_stats_sync syncp;
776};
777
778enum mtk_tx_flags {
779 /* PDMA descriptor can point at 1-2 segments. This enum allows us to
780 * track how memory was allocated so that it can be freed properly.
781 */
782 MTK_TX_FLAGS_SINGLE0 = 0x01,
783 MTK_TX_FLAGS_PAGE0 = 0x02,
784
785 /* MTK_TX_FLAGS_FPORTx allows tracking which port the transmitted
786 * SKB out instead of looking up through hardware TX descriptor.
787 */
788 MTK_TX_FLAGS_FPORT0 = 0x04,
789 MTK_TX_FLAGS_FPORT1 = 0x08,
790};
791
792/* This enum allows us to identify how the clock is defined on the array of the
793 * clock in the order
794 */
795enum mtk_clks_map {
796 MTK_CLK_ETHIF,
797 MTK_CLK_SGMIITOP,
798 MTK_CLK_ESW,
799 MTK_CLK_GP0,
800 MTK_CLK_GP1,
801 MTK_CLK_GP2,
802 MTK_CLK_FE,
803 MTK_CLK_TRGPLL,
804 MTK_CLK_SGMII_TX_250M,
805 MTK_CLK_SGMII_RX_250M,
806 MTK_CLK_SGMII_CDR_REF,
807 MTK_CLK_SGMII_CDR_FB,
808 MTK_CLK_SGMII2_TX_250M,
809 MTK_CLK_SGMII2_RX_250M,
810 MTK_CLK_SGMII2_CDR_REF,
811 MTK_CLK_SGMII2_CDR_FB,
812 MTK_CLK_SGMII_CK,
813 MTK_CLK_ETH2PLL,
814 MTK_CLK_WOCPU0,
815 MTK_CLK_WOCPU1,
816 MTK_CLK_MAX
817};
818
819#define MT7623_CLKS_BITMAP (BIT(MTK_CLK_ETHIF) | BIT(MTK_CLK_ESW) | \
820 BIT(MTK_CLK_GP1) | BIT(MTK_CLK_GP2) | \
821 BIT(MTK_CLK_TRGPLL))
822#define MT7622_CLKS_BITMAP (BIT(MTK_CLK_ETHIF) | BIT(MTK_CLK_ESW) | \
823 BIT(MTK_CLK_GP0) | BIT(MTK_CLK_GP1) | \
824 BIT(MTK_CLK_GP2) | \
825 BIT(MTK_CLK_SGMII_TX_250M) | \
826 BIT(MTK_CLK_SGMII_RX_250M) | \
827 BIT(MTK_CLK_SGMII_CDR_REF) | \
828 BIT(MTK_CLK_SGMII_CDR_FB) | \
829 BIT(MTK_CLK_SGMII_CK) | \
830 BIT(MTK_CLK_ETH2PLL))
831#define MT7621_CLKS_BITMAP (0)
832#define MT7628_CLKS_BITMAP (0)
833#define MT7629_CLKS_BITMAP (BIT(MTK_CLK_ETHIF) | BIT(MTK_CLK_ESW) | \
834 BIT(MTK_CLK_GP0) | BIT(MTK_CLK_GP1) | \
835 BIT(MTK_CLK_GP2) | BIT(MTK_CLK_FE) | \
836 BIT(MTK_CLK_SGMII_TX_250M) | \
837 BIT(MTK_CLK_SGMII_RX_250M) | \
838 BIT(MTK_CLK_SGMII_CDR_REF) | \
839 BIT(MTK_CLK_SGMII_CDR_FB) | \
840 BIT(MTK_CLK_SGMII2_TX_250M) | \
841 BIT(MTK_CLK_SGMII2_RX_250M) | \
842 BIT(MTK_CLK_SGMII2_CDR_REF) | \
843 BIT(MTK_CLK_SGMII2_CDR_FB) | \
844 BIT(MTK_CLK_SGMII_CK) | \
845 BIT(MTK_CLK_ETH2PLL) | BIT(MTK_CLK_SGMIITOP))
846
847#define MT7986_CLKS_BITMAP (BIT(MTK_CLK_FE) | BIT(MTK_CLK_GP2) | BIT(MTK_CLK_GP1) | \
848 BIT(MTK_CLK_WOCPU1) | BIT(MTK_CLK_WOCPU0) | \
849 BIT(MTK_CLK_SGMII_TX_250M) | \
850 BIT(MTK_CLK_SGMII_RX_250M) | \
851 BIT(MTK_CLK_SGMII_CDR_REF) | \
852 BIT(MTK_CLK_SGMII_CDR_FB) | \
853 BIT(MTK_CLK_SGMII2_TX_250M) | \
854 BIT(MTK_CLK_SGMII2_RX_250M) | \
855 BIT(MTK_CLK_SGMII2_CDR_REF) | \
856 BIT(MTK_CLK_SGMII2_CDR_FB))
857
developer255bba22021-07-27 15:16:33 +0800858#define MT7981_CLKS_BITMAP (MT7986_CLKS_BITMAP)
859
developerfd40db22021-04-29 10:08:25 +0800860enum mtk_dev_state {
861 MTK_HW_INIT,
862 MTK_RESETTING
863};
864
865/* struct mtk_tx_buf - This struct holds the pointers to the memory pointed at
866 * by the TX descriptor s
867 * @skb: The SKB pointer of the packet being sent
868 * @dma_addr0: The base addr of the first segment
869 * @dma_len0: The length of the first segment
870 * @dma_addr1: The base addr of the second segment
871 * @dma_len1: The length of the second segment
872 */
873struct mtk_tx_buf {
874 struct sk_buff *skb;
875 u32 flags;
876 DEFINE_DMA_UNMAP_ADDR(dma_addr0);
877 DEFINE_DMA_UNMAP_LEN(dma_len0);
878 DEFINE_DMA_UNMAP_ADDR(dma_addr1);
879 DEFINE_DMA_UNMAP_LEN(dma_len1);
880};
881
882/* struct mtk_tx_ring - This struct holds info describing a TX ring
883 * @dma: The descriptor ring
884 * @buf: The memory pointed at by the ring
885 * @phys: The physical addr of tx_buf
886 * @next_free: Pointer to the next free descriptor
887 * @last_free: Pointer to the last free descriptor
developerc4671b22021-05-28 13:16:42 +0800888 * @last_free_ptr: Hardware pointer value of the last free descriptor
developerfd40db22021-04-29 10:08:25 +0800889 * @thresh: The threshold of minimum amount of free descriptors
890 * @free_count: QDMA uses a linked list. Track how many free descriptors
891 * are present
892 */
893struct mtk_tx_ring {
894 struct mtk_tx_dma *dma;
895 struct mtk_tx_buf *buf;
896 dma_addr_t phys;
897 struct mtk_tx_dma *next_free;
898 struct mtk_tx_dma *last_free;
developerc4671b22021-05-28 13:16:42 +0800899 u32 last_free_ptr;
developerfd40db22021-04-29 10:08:25 +0800900 u16 thresh;
901 atomic_t free_count;
902 int dma_size;
903 struct mtk_tx_dma *dma_pdma; /* For MT7628/88 PDMA handling */
904 dma_addr_t phys_pdma;
905 int cpu_idx;
906};
907
908/* PDMA rx ring mode */
909enum mtk_rx_flags {
910 MTK_RX_FLAGS_NORMAL = 0,
911 MTK_RX_FLAGS_HWLRO,
912 MTK_RX_FLAGS_QDMA,
913};
914
915/* struct mtk_rx_ring - This struct holds info describing a RX ring
916 * @dma: The descriptor ring
917 * @data: The memory pointed at by the ring
918 * @phys: The physical addr of rx_buf
919 * @frag_size: How big can each fragment be
920 * @buf_size: The size of each packet buffer
921 * @calc_idx: The current head of ring
developer77d03a72021-06-06 00:06:00 +0800922 * @ring_no: The index of ring
developerfd40db22021-04-29 10:08:25 +0800923 */
924struct mtk_rx_ring {
925 struct mtk_rx_dma *dma;
926 u8 **data;
927 dma_addr_t phys;
928 u16 frag_size;
929 u16 buf_size;
930 u16 dma_size;
931 bool calc_idx_update;
932 u16 calc_idx;
933 u32 crx_idx_reg;
developer77d03a72021-06-06 00:06:00 +0800934 u32 ring_no;
developerfd40db22021-04-29 10:08:25 +0800935};
936
developer18f46a82021-07-20 21:08:21 +0800937/* struct mtk_napi - This is the structure holding NAPI-related information,
938 * and a mtk_napi struct is binding to one interrupt group
939 * @napi: The NAPI struct
940 * @rx_ring: Pointer to the memory holding info about the RX ring
941 * @irq_grp_idx: The index indicates which interrupt group that this
942 * mtk_napi is binding to
943 */
944struct mtk_napi {
945 struct napi_struct napi;
946 struct mtk_eth *eth;
947 struct mtk_rx_ring *rx_ring;
948 u32 irq_grp_no;
949};
950
developerfd40db22021-04-29 10:08:25 +0800951enum mkt_eth_capabilities {
952 MTK_RGMII_BIT = 0,
953 MTK_TRGMII_BIT,
954 MTK_SGMII_BIT,
955 MTK_ESW_BIT,
956 MTK_GEPHY_BIT,
957 MTK_MUX_BIT,
958 MTK_INFRA_BIT,
959 MTK_SHARED_SGMII_BIT,
960 MTK_HWLRO_BIT,
developer18f46a82021-07-20 21:08:21 +0800961 MTK_RSS_BIT,
developerfd40db22021-04-29 10:08:25 +0800962 MTK_SHARED_INT_BIT,
963 MTK_TRGMII_MT7621_CLK_BIT,
964 MTK_QDMA_BIT,
developera2bdbd52021-05-31 19:10:17 +0800965 MTK_NETSYS_V2_BIT,
developerfd40db22021-04-29 10:08:25 +0800966 MTK_SOC_MT7628_BIT,
developer545abf02021-07-15 17:47:01 +0800967 MTK_RSTCTRL_PPE1_BIT,
developer255bba22021-07-27 15:16:33 +0800968 MTK_U3_COPHY_V2_BIT,
developerfd40db22021-04-29 10:08:25 +0800969
970 /* MUX BITS*/
971 MTK_ETH_MUX_GDM1_TO_GMAC1_ESW_BIT,
972 MTK_ETH_MUX_GMAC2_GMAC0_TO_GEPHY_BIT,
973 MTK_ETH_MUX_U3_GMAC2_TO_QPHY_BIT,
974 MTK_ETH_MUX_GMAC1_GMAC2_TO_SGMII_RGMII_BIT,
975 MTK_ETH_MUX_GMAC12_TO_GEPHY_SGMII_BIT,
976
977 /* PATH BITS */
978 MTK_ETH_PATH_GMAC1_RGMII_BIT,
979 MTK_ETH_PATH_GMAC1_TRGMII_BIT,
980 MTK_ETH_PATH_GMAC1_SGMII_BIT,
981 MTK_ETH_PATH_GMAC2_RGMII_BIT,
982 MTK_ETH_PATH_GMAC2_SGMII_BIT,
983 MTK_ETH_PATH_GMAC2_GEPHY_BIT,
984 MTK_ETH_PATH_GDM1_ESW_BIT,
985};
986
987/* Supported hardware group on SoCs */
988#define MTK_RGMII BIT(MTK_RGMII_BIT)
989#define MTK_TRGMII BIT(MTK_TRGMII_BIT)
990#define MTK_SGMII BIT(MTK_SGMII_BIT)
991#define MTK_ESW BIT(MTK_ESW_BIT)
992#define MTK_GEPHY BIT(MTK_GEPHY_BIT)
993#define MTK_MUX BIT(MTK_MUX_BIT)
994#define MTK_INFRA BIT(MTK_INFRA_BIT)
995#define MTK_SHARED_SGMII BIT(MTK_SHARED_SGMII_BIT)
996#define MTK_HWLRO BIT(MTK_HWLRO_BIT)
developer18f46a82021-07-20 21:08:21 +0800997#define MTK_RSS BIT(MTK_RSS_BIT)
developerfd40db22021-04-29 10:08:25 +0800998#define MTK_SHARED_INT BIT(MTK_SHARED_INT_BIT)
999#define MTK_TRGMII_MT7621_CLK BIT(MTK_TRGMII_MT7621_CLK_BIT)
1000#define MTK_QDMA BIT(MTK_QDMA_BIT)
developera2bdbd52021-05-31 19:10:17 +08001001#define MTK_NETSYS_V2 BIT(MTK_NETSYS_V2_BIT)
developerfd40db22021-04-29 10:08:25 +08001002#define MTK_SOC_MT7628 BIT(MTK_SOC_MT7628_BIT)
developer545abf02021-07-15 17:47:01 +08001003#define MTK_RSTCTRL_PPE1 BIT(MTK_RSTCTRL_PPE1_BIT)
developer255bba22021-07-27 15:16:33 +08001004#define MTK_U3_COPHY_V2 BIT(MTK_U3_COPHY_V2_BIT)
developerfd40db22021-04-29 10:08:25 +08001005
1006#define MTK_ETH_MUX_GDM1_TO_GMAC1_ESW \
1007 BIT(MTK_ETH_MUX_GDM1_TO_GMAC1_ESW_BIT)
1008#define MTK_ETH_MUX_GMAC2_GMAC0_TO_GEPHY \
1009 BIT(MTK_ETH_MUX_GMAC2_GMAC0_TO_GEPHY_BIT)
1010#define MTK_ETH_MUX_U3_GMAC2_TO_QPHY \
1011 BIT(MTK_ETH_MUX_U3_GMAC2_TO_QPHY_BIT)
1012#define MTK_ETH_MUX_GMAC1_GMAC2_TO_SGMII_RGMII \
1013 BIT(MTK_ETH_MUX_GMAC1_GMAC2_TO_SGMII_RGMII_BIT)
1014#define MTK_ETH_MUX_GMAC12_TO_GEPHY_SGMII \
1015 BIT(MTK_ETH_MUX_GMAC12_TO_GEPHY_SGMII_BIT)
1016
1017/* Supported path present on SoCs */
1018#define MTK_ETH_PATH_GMAC1_RGMII BIT(MTK_ETH_PATH_GMAC1_RGMII_BIT)
1019#define MTK_ETH_PATH_GMAC1_TRGMII BIT(MTK_ETH_PATH_GMAC1_TRGMII_BIT)
1020#define MTK_ETH_PATH_GMAC1_SGMII BIT(MTK_ETH_PATH_GMAC1_SGMII_BIT)
1021#define MTK_ETH_PATH_GMAC2_RGMII BIT(MTK_ETH_PATH_GMAC2_RGMII_BIT)
1022#define MTK_ETH_PATH_GMAC2_SGMII BIT(MTK_ETH_PATH_GMAC2_SGMII_BIT)
1023#define MTK_ETH_PATH_GMAC2_GEPHY BIT(MTK_ETH_PATH_GMAC2_GEPHY_BIT)
1024#define MTK_ETH_PATH_GDM1_ESW BIT(MTK_ETH_PATH_GDM1_ESW_BIT)
1025
1026#define MTK_GMAC1_RGMII (MTK_ETH_PATH_GMAC1_RGMII | MTK_RGMII)
1027#define MTK_GMAC1_TRGMII (MTK_ETH_PATH_GMAC1_TRGMII | MTK_TRGMII)
1028#define MTK_GMAC1_SGMII (MTK_ETH_PATH_GMAC1_SGMII | MTK_SGMII)
1029#define MTK_GMAC2_RGMII (MTK_ETH_PATH_GMAC2_RGMII | MTK_RGMII)
1030#define MTK_GMAC2_SGMII (MTK_ETH_PATH_GMAC2_SGMII | MTK_SGMII)
1031#define MTK_GMAC2_GEPHY (MTK_ETH_PATH_GMAC2_GEPHY | MTK_GEPHY)
1032#define MTK_GDM1_ESW (MTK_ETH_PATH_GDM1_ESW | MTK_ESW)
1033
1034/* MUXes present on SoCs */
1035/* 0: GDM1 -> GMAC1, 1: GDM1 -> ESW */
1036#define MTK_MUX_GDM1_TO_GMAC1_ESW (MTK_ETH_MUX_GDM1_TO_GMAC1_ESW | MTK_MUX)
1037
1038/* 0: GMAC2 -> GEPHY, 1: GMAC0 -> GePHY */
1039#define MTK_MUX_GMAC2_GMAC0_TO_GEPHY \
1040 (MTK_ETH_MUX_GMAC2_GMAC0_TO_GEPHY | MTK_MUX | MTK_INFRA)
1041
1042/* 0: U3 -> QPHY, 1: GMAC2 -> QPHY */
1043#define MTK_MUX_U3_GMAC2_TO_QPHY \
1044 (MTK_ETH_MUX_U3_GMAC2_TO_QPHY | MTK_MUX | MTK_INFRA)
1045
1046/* 2: GMAC1 -> SGMII, 3: GMAC2 -> SGMII */
1047#define MTK_MUX_GMAC1_GMAC2_TO_SGMII_RGMII \
1048 (MTK_ETH_MUX_GMAC1_GMAC2_TO_SGMII_RGMII | MTK_MUX | \
1049 MTK_SHARED_SGMII)
1050
1051/* 0: GMACx -> GEPHY, 1: GMACx -> SGMII where x is 1 or 2 */
1052#define MTK_MUX_GMAC12_TO_GEPHY_SGMII \
1053 (MTK_ETH_MUX_GMAC12_TO_GEPHY_SGMII | MTK_MUX)
1054
1055#define MTK_HAS_CAPS(caps, _x) (((caps) & (_x)) == (_x))
1056
1057#define MT7621_CAPS (MTK_GMAC1_RGMII | MTK_GMAC1_TRGMII | \
1058 MTK_GMAC2_RGMII | MTK_SHARED_INT | \
1059 MTK_TRGMII_MT7621_CLK | MTK_QDMA)
1060
1061#define MT7622_CAPS (MTK_GMAC1_RGMII | MTK_GMAC1_SGMII | MTK_GMAC2_RGMII | \
1062 MTK_GMAC2_SGMII | MTK_GDM1_ESW | \
1063 MTK_MUX_GDM1_TO_GMAC1_ESW | \
1064 MTK_MUX_GMAC1_GMAC2_TO_SGMII_RGMII | MTK_QDMA)
1065
1066#define MT7623_CAPS (MTK_GMAC1_RGMII | MTK_GMAC1_TRGMII | MTK_GMAC2_RGMII | \
1067 MTK_QDMA)
1068
1069#define MT7628_CAPS (MTK_SHARED_INT | MTK_SOC_MT7628)
1070
1071#define MT7629_CAPS (MTK_GMAC1_SGMII | MTK_GMAC2_SGMII | MTK_GMAC2_GEPHY | \
1072 MTK_GDM1_ESW | MTK_MUX_GDM1_TO_GMAC1_ESW | \
1073 MTK_MUX_GMAC2_GMAC0_TO_GEPHY | \
1074 MTK_MUX_U3_GMAC2_TO_QPHY | \
1075 MTK_MUX_GMAC12_TO_GEPHY_SGMII | MTK_QDMA)
1076
developerfd40db22021-04-29 10:08:25 +08001077#define MT7986_CAPS (MTK_GMAC1_SGMII | MTK_GMAC2_SGMII | \
1078 MTK_MUX_GMAC12_TO_GEPHY_SGMII | MTK_QDMA | \
developer545abf02021-07-15 17:47:01 +08001079 MTK_NETSYS_V2 | MTK_RSTCTRL_PPE1)
developerfd40db22021-04-29 10:08:25 +08001080
developer255bba22021-07-27 15:16:33 +08001081#define MT7981_CAPS (MTK_GMAC1_SGMII | MTK_GMAC2_SGMII | MTK_GMAC2_GEPHY | \
1082 MTK_MUX_GMAC12_TO_GEPHY_SGMII | MTK_QDMA | \
1083 MTK_MUX_U3_GMAC2_TO_QPHY | MTK_U3_COPHY_V2 | \
1084 MTK_NETSYS_V2)
1085
developerfd40db22021-04-29 10:08:25 +08001086/* struct mtk_eth_data - This is the structure holding all differences
1087 * among various plaforms
1088 * @ana_rgc3: The offset for register ANA_RGC3 related to
1089 * sgmiisys syscon
1090 * @caps Flags shown the extra capability for the SoC
1091 * @hw_features Flags shown HW features
1092 * @required_clks Flags shown the bitmap for required clocks on
1093 * the target SoC
1094 * @required_pctl A bool value to show whether the SoC requires
1095 * the extra setup for those pins used by GMAC.
1096 */
1097struct mtk_soc_data {
1098 u32 ana_rgc3;
1099 u32 caps;
1100 u32 required_clks;
1101 bool required_pctl;
1102 netdev_features_t hw_features;
1103 bool has_sram;
1104};
1105
1106/* currently no SoC has more than 2 macs */
1107#define MTK_MAX_DEVS 2
1108
1109#define MTK_SGMII_PHYSPEED_AN BIT(31)
1110#define MTK_SGMII_PHYSPEED_MASK GENMASK(2, 0)
1111#define MTK_SGMII_PHYSPEED_1000 BIT(0)
1112#define MTK_SGMII_PHYSPEED_2500 BIT(1)
1113#define MTK_HAS_FLAGS(flags, _x) (((flags) & (_x)) == (_x))
1114
1115/* struct mtk_sgmii - This is the structure holding sgmii regmap and its
1116 * characteristics
1117 * @regmap: The register map pointing at the range used to setup
1118 * SGMII modes
1119 * @flags: The enum refers to which mode the sgmii wants to run on
1120 * @ana_rgc3: The offset refers to register ANA_RGC3 related to regmap
1121 */
1122
1123struct mtk_sgmii {
1124 struct regmap *regmap[MTK_MAX_DEVS];
1125 u32 flags[MTK_MAX_DEVS];
1126 u32 ana_rgc3;
1127};
1128
1129/* struct mtk_eth - This is the main datasructure for holding the state
1130 * of the driver
1131 * @dev: The device pointer
1132 * @base: The mapped register i/o base
1133 * @page_lock: Make sure that register operations are atomic
1134 * @tx_irq__lock: Make sure that IRQ register operations are atomic
1135 * @rx_irq__lock: Make sure that IRQ register operations are atomic
1136 * @dummy_dev: we run 2 netdevs on 1 physical DMA ring and need a
1137 * dummy for NAPI to work
1138 * @netdev: The netdev instances
1139 * @mac: Each netdev is linked to a physical MAC
1140 * @irq: The IRQ that we are using
1141 * @msg_enable: Ethtool msg level
1142 * @ethsys: The register map pointing at the range used to setup
1143 * MII modes
1144 * @infra: The register map pointing at the range used to setup
1145 * SGMII and GePHY path
1146 * @pctl: The register map pointing at the range used to setup
1147 * GMAC port drive/slew values
1148 * @dma_refcnt: track how many netdevs are using the DMA engine
1149 * @tx_ring: Pointer to the memory holding info about the TX ring
1150 * @rx_ring: Pointer to the memory holding info about the RX ring
1151 * @rx_ring_qdma: Pointer to the memory holding info about the QDMA RX ring
1152 * @tx_napi: The TX NAPI struct
1153 * @rx_napi: The RX NAPI struct
1154 * @scratch_ring: Newer SoCs need memory for a second HW managed TX ring
1155 * @phy_scratch_ring: physical address of scratch_ring
1156 * @scratch_head: The scratch memory that scratch_ring points to.
1157 * @clks: clock array for all clocks required
1158 * @mii_bus: If there is a bus we need to create an instance for it
1159 * @pending_work: The workqueue used to reset the dma ring
1160 * @state: Initialization and runtime state of the device
1161 * @soc: Holding specific data among vaious SoCs
1162 */
1163
1164struct mtk_eth {
1165 struct device *dev;
1166 void __iomem *base;
1167 spinlock_t page_lock;
1168 spinlock_t tx_irq_lock;
1169 spinlock_t rx_irq_lock;
1170 struct net_device dummy_dev;
1171 struct net_device *netdev[MTK_MAX_DEVS];
1172 struct mtk_mac *mac[MTK_MAX_DEVS];
developer18f46a82021-07-20 21:08:21 +08001173 int irq[MTK_MAX_IRQ_NUM];
developerfd40db22021-04-29 10:08:25 +08001174 u32 msg_enable;
1175 unsigned long sysclk;
1176 struct regmap *ethsys;
1177 struct regmap *infra;
1178 struct mtk_sgmii *sgmii;
1179 struct regmap *pctl;
1180 bool hwlro;
1181 refcount_t dma_refcnt;
1182 struct mtk_tx_ring tx_ring;
1183 struct mtk_rx_ring rx_ring[MTK_MAX_RX_RING_NUM];
1184 struct mtk_rx_ring rx_ring_qdma;
1185 struct napi_struct tx_napi;
developer18f46a82021-07-20 21:08:21 +08001186 struct mtk_napi rx_napi[MTK_RX_NAPI_NUM];
developerfd40db22021-04-29 10:08:25 +08001187 struct mtk_tx_dma *scratch_ring;
1188 dma_addr_t phy_scratch_ring;
1189 void *scratch_head;
1190 struct clk *clks[MTK_CLK_MAX];
1191
1192 struct mii_bus *mii_bus;
1193 struct work_struct pending_work;
1194 unsigned long state;
1195
1196 const struct mtk_soc_data *soc;
1197
1198 u32 tx_int_mask_reg;
1199 u32 tx_int_status_reg;
1200 u32 rx_dma_l4_valid;
1201 int ip_align;
1202};
1203
1204/* struct mtk_mac - the structure that holds the info about the MACs of the
1205 * SoC
1206 * @id: The number of the MAC
1207 * @interface: Interface mode kept for detecting change in hw settings
1208 * @of_node: Our devicetree node
1209 * @hw: Backpointer to our main datastruture
1210 * @hw_stats: Packet statistics counter
1211 */
1212struct mtk_mac {
1213 int id;
1214 phy_interface_t interface;
1215 unsigned int mode;
1216 int speed;
1217 struct device_node *of_node;
1218 struct phylink *phylink;
1219 struct phylink_config phylink_config;
1220 struct mtk_eth *hw;
1221 struct mtk_hw_stats *hw_stats;
1222 __be32 hwlro_ip[MTK_MAX_LRO_IP_CNT];
1223 int hwlro_ip_cnt;
1224};
1225
1226/* the struct describing the SoC. these are declared in the soc_xyz.c files */
1227extern const struct of_device_id of_mtk_match[];
developer77d03a72021-06-06 00:06:00 +08001228extern u32 mtk_hwlro_stats_ebl;
developerfd40db22021-04-29 10:08:25 +08001229
1230/* read the hardware status register */
1231void mtk_stats_update_mac(struct mtk_mac *mac);
1232
1233void mtk_w32(struct mtk_eth *eth, u32 val, unsigned reg);
1234u32 mtk_r32(struct mtk_eth *eth, unsigned reg);
1235
1236int mtk_sgmii_init(struct mtk_sgmii *ss, struct device_node *np,
1237 u32 ana_rgc3);
1238int mtk_sgmii_setup_mode_an(struct mtk_sgmii *ss, int id);
1239int mtk_sgmii_setup_mode_force(struct mtk_sgmii *ss, int id,
1240 const struct phylink_link_state *state);
1241void mtk_sgmii_restart_an(struct mtk_eth *eth, int mac_id);
1242
1243int mtk_gmac_sgmii_path_setup(struct mtk_eth *eth, int mac_id);
1244int mtk_gmac_gephy_path_setup(struct mtk_eth *eth, int mac_id);
1245int mtk_gmac_rgmii_path_setup(struct mtk_eth *eth, int mac_id);
1246
1247#endif /* MTK_ETH_H */