blob: c99d52c85d72d01db5fa5a6c43d4726f03b07401 [file] [log] [blame]
Stefan Roese96c19042016-02-10 07:22:10 +01001/*
2 * Driver for Marvell PPv2 network controller for Armada 375 SoC.
3 *
4 * Copyright (C) 2014 Marvell
5 *
6 * Marcin Wojtas <mw@semihalf.com>
7 *
8 * U-Boot version:
Stefan Roese38801d42017-02-24 10:12:41 +01009 * Copyright (C) 2016-2017 Stefan Roese <sr@denx.de>
Stefan Roese96c19042016-02-10 07:22:10 +010010 *
11 * This file is licensed under the terms of the GNU General Public
12 * License version 2. This program is licensed "as is" without any
13 * warranty of any kind, whether express or implied.
14 */
15
16#include <common.h>
Simon Glass63334482019-11-14 12:57:39 -070017#include <cpu_func.h>
Stefan Roese96c19042016-02-10 07:22:10 +010018#include <dm.h>
Simon Glass274e0b02020-05-10 11:39:56 -060019#include <asm/cache.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060020#include <asm/global_data.h>
Stefan Roese96c19042016-02-10 07:22:10 +010021#include <dm/device-internal.h>
Simon Glass9bc15642020-02-03 07:36:16 -070022#include <dm/device_compat.h>
Simon Glassd66c5f72020-02-03 07:36:15 -070023#include <dm/devres.h>
Stefan Roese96c19042016-02-10 07:22:10 +010024#include <dm/lists.h>
25#include <net.h>
26#include <netdev.h>
27#include <config.h>
28#include <malloc.h>
29#include <asm/io.h>
Simon Glass4dcacfc2020-05-10 11:40:13 -060030#include <linux/bitops.h>
Simon Glassc06c1be2020-05-10 11:40:08 -060031#include <linux/bug.h>
Simon Glassdbd79542020-05-10 11:40:11 -060032#include <linux/delay.h>
Simon Glassd66c5f72020-02-03 07:36:15 -070033#include <linux/err.h>
Masahiro Yamada56a931c2016-09-21 11:28:55 +090034#include <linux/errno.h>
Stefan Roese96c19042016-02-10 07:22:10 +010035#include <phy.h>
36#include <miiphy.h>
37#include <watchdog.h>
38#include <asm/arch/cpu.h>
39#include <asm/arch/soc.h>
40#include <linux/compat.h>
Simon Glass2dc9c342020-05-10 11:40:01 -060041#include <linux/libfdt.h>
Stefan Roese96c19042016-02-10 07:22:10 +010042#include <linux/mbus.h>
Stefan Chulski0d65eb62017-08-09 10:37:43 +030043#include <asm-generic/gpio.h>
Stefan Chulski4bc456a2017-08-09 10:37:44 +030044#include <fdt_support.h>
Nevo Hed5e975612019-08-15 18:08:44 -040045#include <linux/mdio.h>
Stefan Roese96c19042016-02-10 07:22:10 +010046
47DECLARE_GLOBAL_DATA_PTR;
48
Stefan Roese96c19042016-02-10 07:22:10 +010049#define __verify_pcpu_ptr(ptr) \
50do { \
51 const void __percpu *__vpp_verify = (typeof((ptr) + 0))NULL; \
52 (void)__vpp_verify; \
53} while (0)
54
55#define VERIFY_PERCPU_PTR(__p) \
56({ \
57 __verify_pcpu_ptr(__p); \
58 (typeof(*(__p)) __kernel __force *)(__p); \
59})
60
61#define per_cpu_ptr(ptr, cpu) ({ (void)(cpu); VERIFY_PERCPU_PTR(ptr); })
62#define smp_processor_id() 0
63#define num_present_cpus() 1
64#define for_each_present_cpu(cpu) \
65 for ((cpu) = 0; (cpu) < 1; (cpu)++)
66
67#define NET_SKB_PAD max(32, MVPP2_CPU_D_CACHE_LINE_SIZE)
68
Stefan Roese96c19042016-02-10 07:22:10 +010069/* 2(HW hdr) 14(MAC hdr) 4(CRC) 32(extra for cache prefetch) */
70#define WRAP (2 + ETH_HLEN + 4 + 32)
71#define MTU 1500
72#define RX_BUFFER_SIZE (ALIGN(MTU + WRAP, ARCH_DMA_MINALIGN))
73
Stefan Roese96c19042016-02-10 07:22:10 +010074/* RX Fifo Registers */
75#define MVPP2_RX_DATA_FIFO_SIZE_REG(port) (0x00 + 4 * (port))
76#define MVPP2_RX_ATTR_FIFO_SIZE_REG(port) (0x20 + 4 * (port))
77#define MVPP2_RX_MIN_PKT_SIZE_REG 0x60
78#define MVPP2_RX_FIFO_INIT_REG 0x64
79
80/* RX DMA Top Registers */
81#define MVPP2_RX_CTRL_REG(port) (0x140 + 4 * (port))
82#define MVPP2_RX_LOW_LATENCY_PKT_SIZE(s) (((s) & 0xfff) << 16)
83#define MVPP2_RX_USE_PSEUDO_FOR_CSUM_MASK BIT(31)
84#define MVPP2_POOL_BUF_SIZE_REG(pool) (0x180 + 4 * (pool))
85#define MVPP2_POOL_BUF_SIZE_OFFSET 5
86#define MVPP2_RXQ_CONFIG_REG(rxq) (0x800 + 4 * (rxq))
87#define MVPP2_SNOOP_PKT_SIZE_MASK 0x1ff
88#define MVPP2_SNOOP_BUF_HDR_MASK BIT(9)
89#define MVPP2_RXQ_POOL_SHORT_OFFS 20
Thomas Petazzoni2321c922017-02-16 06:53:51 +010090#define MVPP21_RXQ_POOL_SHORT_MASK 0x700000
91#define MVPP22_RXQ_POOL_SHORT_MASK 0xf00000
Stefan Roese96c19042016-02-10 07:22:10 +010092#define MVPP2_RXQ_POOL_LONG_OFFS 24
Thomas Petazzoni2321c922017-02-16 06:53:51 +010093#define MVPP21_RXQ_POOL_LONG_MASK 0x7000000
94#define MVPP22_RXQ_POOL_LONG_MASK 0xf000000
Stefan Roese96c19042016-02-10 07:22:10 +010095#define MVPP2_RXQ_PACKET_OFFSET_OFFS 28
96#define MVPP2_RXQ_PACKET_OFFSET_MASK 0x70000000
97#define MVPP2_RXQ_DISABLE_MASK BIT(31)
98
99/* Parser Registers */
100#define MVPP2_PRS_INIT_LOOKUP_REG 0x1000
101#define MVPP2_PRS_PORT_LU_MAX 0xf
102#define MVPP2_PRS_PORT_LU_MASK(port) (0xff << ((port) * 4))
103#define MVPP2_PRS_PORT_LU_VAL(port, val) ((val) << ((port) * 4))
104#define MVPP2_PRS_INIT_OFFS_REG(port) (0x1004 + ((port) & 4))
105#define MVPP2_PRS_INIT_OFF_MASK(port) (0x3f << (((port) % 4) * 8))
106#define MVPP2_PRS_INIT_OFF_VAL(port, val) ((val) << (((port) % 4) * 8))
107#define MVPP2_PRS_MAX_LOOP_REG(port) (0x100c + ((port) & 4))
108#define MVPP2_PRS_MAX_LOOP_MASK(port) (0xff << (((port) % 4) * 8))
109#define MVPP2_PRS_MAX_LOOP_VAL(port, val) ((val) << (((port) % 4) * 8))
110#define MVPP2_PRS_TCAM_IDX_REG 0x1100
111#define MVPP2_PRS_TCAM_DATA_REG(idx) (0x1104 + (idx) * 4)
112#define MVPP2_PRS_TCAM_INV_MASK BIT(31)
113#define MVPP2_PRS_SRAM_IDX_REG 0x1200
114#define MVPP2_PRS_SRAM_DATA_REG(idx) (0x1204 + (idx) * 4)
115#define MVPP2_PRS_TCAM_CTRL_REG 0x1230
116#define MVPP2_PRS_TCAM_EN_MASK BIT(0)
117
118/* Classifier Registers */
119#define MVPP2_CLS_MODE_REG 0x1800
120#define MVPP2_CLS_MODE_ACTIVE_MASK BIT(0)
121#define MVPP2_CLS_PORT_WAY_REG 0x1810
122#define MVPP2_CLS_PORT_WAY_MASK(port) (1 << (port))
123#define MVPP2_CLS_LKP_INDEX_REG 0x1814
124#define MVPP2_CLS_LKP_INDEX_WAY_OFFS 6
125#define MVPP2_CLS_LKP_TBL_REG 0x1818
126#define MVPP2_CLS_LKP_TBL_RXQ_MASK 0xff
127#define MVPP2_CLS_LKP_TBL_LOOKUP_EN_MASK BIT(25)
128#define MVPP2_CLS_FLOW_INDEX_REG 0x1820
129#define MVPP2_CLS_FLOW_TBL0_REG 0x1824
130#define MVPP2_CLS_FLOW_TBL1_REG 0x1828
131#define MVPP2_CLS_FLOW_TBL2_REG 0x182c
132#define MVPP2_CLS_OVERSIZE_RXQ_LOW_REG(port) (0x1980 + ((port) * 4))
133#define MVPP2_CLS_OVERSIZE_RXQ_LOW_BITS 3
134#define MVPP2_CLS_OVERSIZE_RXQ_LOW_MASK 0x7
135#define MVPP2_CLS_SWFWD_P2HQ_REG(port) (0x19b0 + ((port) * 4))
136#define MVPP2_CLS_SWFWD_PCTRL_REG 0x19d0
137#define MVPP2_CLS_SWFWD_PCTRL_MASK(port) (1 << (port))
138
139/* Descriptor Manager Top Registers */
140#define MVPP2_RXQ_NUM_REG 0x2040
141#define MVPP2_RXQ_DESC_ADDR_REG 0x2044
Thomas Petazzoni7f215c72017-02-20 11:36:57 +0100142#define MVPP22_DESC_ADDR_OFFS 8
Stefan Roese96c19042016-02-10 07:22:10 +0100143#define MVPP2_RXQ_DESC_SIZE_REG 0x2048
144#define MVPP2_RXQ_DESC_SIZE_MASK 0x3ff0
145#define MVPP2_RXQ_STATUS_UPDATE_REG(rxq) (0x3000 + 4 * (rxq))
146#define MVPP2_RXQ_NUM_PROCESSED_OFFSET 0
147#define MVPP2_RXQ_NUM_NEW_OFFSET 16
148#define MVPP2_RXQ_STATUS_REG(rxq) (0x3400 + 4 * (rxq))
149#define MVPP2_RXQ_OCCUPIED_MASK 0x3fff
150#define MVPP2_RXQ_NON_OCCUPIED_OFFSET 16
151#define MVPP2_RXQ_NON_OCCUPIED_MASK 0x3fff0000
152#define MVPP2_RXQ_THRESH_REG 0x204c
153#define MVPP2_OCCUPIED_THRESH_OFFSET 0
154#define MVPP2_OCCUPIED_THRESH_MASK 0x3fff
155#define MVPP2_RXQ_INDEX_REG 0x2050
156#define MVPP2_TXQ_NUM_REG 0x2080
157#define MVPP2_TXQ_DESC_ADDR_REG 0x2084
158#define MVPP2_TXQ_DESC_SIZE_REG 0x2088
159#define MVPP2_TXQ_DESC_SIZE_MASK 0x3ff0
160#define MVPP2_AGGR_TXQ_UPDATE_REG 0x2090
161#define MVPP2_TXQ_THRESH_REG 0x2094
162#define MVPP2_TRANSMITTED_THRESH_OFFSET 16
163#define MVPP2_TRANSMITTED_THRESH_MASK 0x3fff0000
164#define MVPP2_TXQ_INDEX_REG 0x2098
165#define MVPP2_TXQ_PREF_BUF_REG 0x209c
166#define MVPP2_PREF_BUF_PTR(desc) ((desc) & 0xfff)
167#define MVPP2_PREF_BUF_SIZE_4 (BIT(12) | BIT(13))
168#define MVPP2_PREF_BUF_SIZE_16 (BIT(12) | BIT(14))
169#define MVPP2_PREF_BUF_THRESH(val) ((val) << 17)
170#define MVPP2_TXQ_DRAIN_EN_MASK BIT(31)
171#define MVPP2_TXQ_PENDING_REG 0x20a0
172#define MVPP2_TXQ_PENDING_MASK 0x3fff
173#define MVPP2_TXQ_INT_STATUS_REG 0x20a4
174#define MVPP2_TXQ_SENT_REG(txq) (0x3c00 + 4 * (txq))
175#define MVPP2_TRANSMITTED_COUNT_OFFSET 16
176#define MVPP2_TRANSMITTED_COUNT_MASK 0x3fff0000
177#define MVPP2_TXQ_RSVD_REQ_REG 0x20b0
178#define MVPP2_TXQ_RSVD_REQ_Q_OFFSET 16
179#define MVPP2_TXQ_RSVD_RSLT_REG 0x20b4
180#define MVPP2_TXQ_RSVD_RSLT_MASK 0x3fff
181#define MVPP2_TXQ_RSVD_CLR_REG 0x20b8
182#define MVPP2_TXQ_RSVD_CLR_OFFSET 16
183#define MVPP2_AGGR_TXQ_DESC_ADDR_REG(cpu) (0x2100 + 4 * (cpu))
Thomas Petazzoni7f215c72017-02-20 11:36:57 +0100184#define MVPP22_AGGR_TXQ_DESC_ADDR_OFFS 8
Stefan Roese96c19042016-02-10 07:22:10 +0100185#define MVPP2_AGGR_TXQ_DESC_SIZE_REG(cpu) (0x2140 + 4 * (cpu))
186#define MVPP2_AGGR_TXQ_DESC_SIZE_MASK 0x3ff0
187#define MVPP2_AGGR_TXQ_STATUS_REG(cpu) (0x2180 + 4 * (cpu))
188#define MVPP2_AGGR_TXQ_PENDING_MASK 0x3fff
189#define MVPP2_AGGR_TXQ_INDEX_REG(cpu) (0x21c0 + 4 * (cpu))
190
191/* MBUS bridge registers */
192#define MVPP2_WIN_BASE(w) (0x4000 + ((w) << 2))
193#define MVPP2_WIN_SIZE(w) (0x4020 + ((w) << 2))
194#define MVPP2_WIN_REMAP(w) (0x4040 + ((w) << 2))
195#define MVPP2_BASE_ADDR_ENABLE 0x4060
196
Thomas Petazzonica560ab2017-02-16 08:41:07 +0100197/* AXI Bridge Registers */
198#define MVPP22_AXI_BM_WR_ATTR_REG 0x4100
199#define MVPP22_AXI_BM_RD_ATTR_REG 0x4104
200#define MVPP22_AXI_AGGRQ_DESCR_RD_ATTR_REG 0x4110
201#define MVPP22_AXI_TXQ_DESCR_WR_ATTR_REG 0x4114
202#define MVPP22_AXI_TXQ_DESCR_RD_ATTR_REG 0x4118
203#define MVPP22_AXI_RXQ_DESCR_WR_ATTR_REG 0x411c
204#define MVPP22_AXI_RX_DATA_WR_ATTR_REG 0x4120
205#define MVPP22_AXI_TX_DATA_RD_ATTR_REG 0x4130
206#define MVPP22_AXI_RD_NORMAL_CODE_REG 0x4150
207#define MVPP22_AXI_RD_SNOOP_CODE_REG 0x4154
208#define MVPP22_AXI_WR_NORMAL_CODE_REG 0x4160
209#define MVPP22_AXI_WR_SNOOP_CODE_REG 0x4164
210
211/* Values for AXI Bridge registers */
212#define MVPP22_AXI_ATTR_CACHE_OFFS 0
213#define MVPP22_AXI_ATTR_DOMAIN_OFFS 12
214
215#define MVPP22_AXI_CODE_CACHE_OFFS 0
216#define MVPP22_AXI_CODE_DOMAIN_OFFS 4
217
218#define MVPP22_AXI_CODE_CACHE_NON_CACHE 0x3
219#define MVPP22_AXI_CODE_CACHE_WR_CACHE 0x7
220#define MVPP22_AXI_CODE_CACHE_RD_CACHE 0xb
221
222#define MVPP22_AXI_CODE_DOMAIN_OUTER_DOM 2
223#define MVPP22_AXI_CODE_DOMAIN_SYSTEM 3
224
Stefan Roese96c19042016-02-10 07:22:10 +0100225/* Interrupt Cause and Mask registers */
226#define MVPP2_ISR_RX_THRESHOLD_REG(rxq) (0x5200 + 4 * (rxq))
Thomas Petazzonif1077472017-02-16 08:46:37 +0100227#define MVPP21_ISR_RXQ_GROUP_REG(rxq) (0x5400 + 4 * (rxq))
228
229#define MVPP22_ISR_RXQ_GROUP_INDEX_REG 0x5400
230#define MVPP22_ISR_RXQ_GROUP_INDEX_SUBGROUP_MASK 0xf
231#define MVPP22_ISR_RXQ_GROUP_INDEX_GROUP_MASK 0x380
232#define MVPP22_ISR_RXQ_GROUP_INDEX_GROUP_OFFSET 7
233
234#define MVPP22_ISR_RXQ_GROUP_INDEX_SUBGROUP_MASK 0xf
235#define MVPP22_ISR_RXQ_GROUP_INDEX_GROUP_MASK 0x380
236
237#define MVPP22_ISR_RXQ_SUB_GROUP_CONFIG_REG 0x5404
238#define MVPP22_ISR_RXQ_SUB_GROUP_STARTQ_MASK 0x1f
239#define MVPP22_ISR_RXQ_SUB_GROUP_SIZE_MASK 0xf00
240#define MVPP22_ISR_RXQ_SUB_GROUP_SIZE_OFFSET 8
241
Stefan Roese96c19042016-02-10 07:22:10 +0100242#define MVPP2_ISR_ENABLE_REG(port) (0x5420 + 4 * (port))
243#define MVPP2_ISR_ENABLE_INTERRUPT(mask) ((mask) & 0xffff)
244#define MVPP2_ISR_DISABLE_INTERRUPT(mask) (((mask) << 16) & 0xffff0000)
245#define MVPP2_ISR_RX_TX_CAUSE_REG(port) (0x5480 + 4 * (port))
246#define MVPP2_CAUSE_RXQ_OCCUP_DESC_ALL_MASK 0xffff
247#define MVPP2_CAUSE_TXQ_OCCUP_DESC_ALL_MASK 0xff0000
248#define MVPP2_CAUSE_RX_FIFO_OVERRUN_MASK BIT(24)
249#define MVPP2_CAUSE_FCS_ERR_MASK BIT(25)
250#define MVPP2_CAUSE_TX_FIFO_UNDERRUN_MASK BIT(26)
251#define MVPP2_CAUSE_TX_EXCEPTION_SUM_MASK BIT(29)
252#define MVPP2_CAUSE_RX_EXCEPTION_SUM_MASK BIT(30)
253#define MVPP2_CAUSE_MISC_SUM_MASK BIT(31)
254#define MVPP2_ISR_RX_TX_MASK_REG(port) (0x54a0 + 4 * (port))
255#define MVPP2_ISR_PON_RX_TX_MASK_REG 0x54bc
256#define MVPP2_PON_CAUSE_RXQ_OCCUP_DESC_ALL_MASK 0xffff
257#define MVPP2_PON_CAUSE_TXP_OCCUP_DESC_ALL_MASK 0x3fc00000
258#define MVPP2_PON_CAUSE_MISC_SUM_MASK BIT(31)
259#define MVPP2_ISR_MISC_CAUSE_REG 0x55b0
260
261/* Buffer Manager registers */
262#define MVPP2_BM_POOL_BASE_REG(pool) (0x6000 + ((pool) * 4))
263#define MVPP2_BM_POOL_BASE_ADDR_MASK 0xfffff80
264#define MVPP2_BM_POOL_SIZE_REG(pool) (0x6040 + ((pool) * 4))
265#define MVPP2_BM_POOL_SIZE_MASK 0xfff0
266#define MVPP2_BM_POOL_READ_PTR_REG(pool) (0x6080 + ((pool) * 4))
267#define MVPP2_BM_POOL_GET_READ_PTR_MASK 0xfff0
268#define MVPP2_BM_POOL_PTRS_NUM_REG(pool) (0x60c0 + ((pool) * 4))
269#define MVPP2_BM_POOL_PTRS_NUM_MASK 0xfff0
270#define MVPP2_BM_BPPI_READ_PTR_REG(pool) (0x6100 + ((pool) * 4))
271#define MVPP2_BM_BPPI_PTRS_NUM_REG(pool) (0x6140 + ((pool) * 4))
272#define MVPP2_BM_BPPI_PTR_NUM_MASK 0x7ff
273#define MVPP2_BM_BPPI_PREFETCH_FULL_MASK BIT(16)
274#define MVPP2_BM_POOL_CTRL_REG(pool) (0x6200 + ((pool) * 4))
275#define MVPP2_BM_START_MASK BIT(0)
276#define MVPP2_BM_STOP_MASK BIT(1)
277#define MVPP2_BM_STATE_MASK BIT(4)
278#define MVPP2_BM_LOW_THRESH_OFFS 8
279#define MVPP2_BM_LOW_THRESH_MASK 0x7f00
280#define MVPP2_BM_LOW_THRESH_VALUE(val) ((val) << \
281 MVPP2_BM_LOW_THRESH_OFFS)
282#define MVPP2_BM_HIGH_THRESH_OFFS 16
283#define MVPP2_BM_HIGH_THRESH_MASK 0x7f0000
284#define MVPP2_BM_HIGH_THRESH_VALUE(val) ((val) << \
285 MVPP2_BM_HIGH_THRESH_OFFS)
286#define MVPP2_BM_INTR_CAUSE_REG(pool) (0x6240 + ((pool) * 4))
287#define MVPP2_BM_RELEASED_DELAY_MASK BIT(0)
288#define MVPP2_BM_ALLOC_FAILED_MASK BIT(1)
289#define MVPP2_BM_BPPE_EMPTY_MASK BIT(2)
290#define MVPP2_BM_BPPE_FULL_MASK BIT(3)
291#define MVPP2_BM_AVAILABLE_BP_LOW_MASK BIT(4)
292#define MVPP2_BM_INTR_MASK_REG(pool) (0x6280 + ((pool) * 4))
293#define MVPP2_BM_PHY_ALLOC_REG(pool) (0x6400 + ((pool) * 4))
294#define MVPP2_BM_PHY_ALLOC_GRNTD_MASK BIT(0)
295#define MVPP2_BM_VIRT_ALLOC_REG 0x6440
Thomas Petazzoni3520a332017-02-20 11:29:16 +0100296#define MVPP2_BM_ADDR_HIGH_ALLOC 0x6444
297#define MVPP2_BM_ADDR_HIGH_PHYS_MASK 0xff
298#define MVPP2_BM_ADDR_HIGH_VIRT_MASK 0xff00
299#define MVPP2_BM_ADDR_HIGH_VIRT_SHIFT 8
Stefan Roese96c19042016-02-10 07:22:10 +0100300#define MVPP2_BM_PHY_RLS_REG(pool) (0x6480 + ((pool) * 4))
301#define MVPP2_BM_PHY_RLS_MC_BUFF_MASK BIT(0)
302#define MVPP2_BM_PHY_RLS_PRIO_EN_MASK BIT(1)
303#define MVPP2_BM_PHY_RLS_GRNTD_MASK BIT(2)
304#define MVPP2_BM_VIRT_RLS_REG 0x64c0
Thomas Petazzoni3520a332017-02-20 11:29:16 +0100305#define MVPP21_BM_MC_RLS_REG 0x64c4
Stefan Roese96c19042016-02-10 07:22:10 +0100306#define MVPP2_BM_MC_ID_MASK 0xfff
307#define MVPP2_BM_FORCE_RELEASE_MASK BIT(12)
Thomas Petazzoni3520a332017-02-20 11:29:16 +0100308#define MVPP22_BM_ADDR_HIGH_RLS_REG 0x64c4
309#define MVPP22_BM_ADDR_HIGH_PHYS_RLS_MASK 0xff
310#define MVPP22_BM_ADDR_HIGH_VIRT_RLS_MASK 0xff00
311#define MVPP22_BM_ADDR_HIGH_VIRT_RLS_SHIFT 8
312#define MVPP22_BM_MC_RLS_REG 0x64d4
Stefan Chulski115f76f2017-08-09 10:37:50 +0300313#define MVPP22_BM_POOL_BASE_HIGH_REG 0x6310
314#define MVPP22_BM_POOL_BASE_HIGH_MASK 0xff
Stefan Roese96c19042016-02-10 07:22:10 +0100315
316/* TX Scheduler registers */
317#define MVPP2_TXP_SCHED_PORT_INDEX_REG 0x8000
318#define MVPP2_TXP_SCHED_Q_CMD_REG 0x8004
319#define MVPP2_TXP_SCHED_ENQ_MASK 0xff
320#define MVPP2_TXP_SCHED_DISQ_OFFSET 8
321#define MVPP2_TXP_SCHED_CMD_1_REG 0x8010
322#define MVPP2_TXP_SCHED_PERIOD_REG 0x8018
323#define MVPP2_TXP_SCHED_MTU_REG 0x801c
324#define MVPP2_TXP_MTU_MAX 0x7FFFF
325#define MVPP2_TXP_SCHED_REFILL_REG 0x8020
326#define MVPP2_TXP_REFILL_TOKENS_ALL_MASK 0x7ffff
327#define MVPP2_TXP_REFILL_PERIOD_ALL_MASK 0x3ff00000
328#define MVPP2_TXP_REFILL_PERIOD_MASK(v) ((v) << 20)
329#define MVPP2_TXP_SCHED_TOKEN_SIZE_REG 0x8024
330#define MVPP2_TXP_TOKEN_SIZE_MAX 0xffffffff
331#define MVPP2_TXQ_SCHED_REFILL_REG(q) (0x8040 + ((q) << 2))
332#define MVPP2_TXQ_REFILL_TOKENS_ALL_MASK 0x7ffff
333#define MVPP2_TXQ_REFILL_PERIOD_ALL_MASK 0x3ff00000
334#define MVPP2_TXQ_REFILL_PERIOD_MASK(v) ((v) << 20)
335#define MVPP2_TXQ_SCHED_TOKEN_SIZE_REG(q) (0x8060 + ((q) << 2))
336#define MVPP2_TXQ_TOKEN_SIZE_MAX 0x7fffffff
337#define MVPP2_TXQ_SCHED_TOKEN_CNTR_REG(q) (0x8080 + ((q) << 2))
338#define MVPP2_TXQ_TOKEN_CNTR_MAX 0xffffffff
339
340/* TX general registers */
341#define MVPP2_TX_SNOOP_REG 0x8800
342#define MVPP2_TX_PORT_FLUSH_REG 0x8810
343#define MVPP2_TX_PORT_FLUSH_MASK(port) (1 << (port))
344
345/* LMS registers */
346#define MVPP2_SRC_ADDR_MIDDLE 0x24
347#define MVPP2_SRC_ADDR_HIGH 0x28
348#define MVPP2_PHY_AN_CFG0_REG 0x34
349#define MVPP2_PHY_AN_STOP_SMI0_MASK BIT(7)
Stefan Roese96c19042016-02-10 07:22:10 +0100350#define MVPP2_MNG_EXTENDED_GLOBAL_CTRL_REG 0x305c
Thomas Petazzoniebbe76f2017-02-15 12:16:23 +0100351#define MVPP2_EXT_GLOBAL_CTRL_DEFAULT 0x27
Stefan Roese96c19042016-02-10 07:22:10 +0100352
353/* Per-port registers */
354#define MVPP2_GMAC_CTRL_0_REG 0x0
355#define MVPP2_GMAC_PORT_EN_MASK BIT(0)
Stefan Roese40e749b2017-03-22 15:07:30 +0100356#define MVPP2_GMAC_PORT_TYPE_MASK BIT(1)
Stefan Roese96c19042016-02-10 07:22:10 +0100357#define MVPP2_GMAC_MAX_RX_SIZE_OFFS 2
358#define MVPP2_GMAC_MAX_RX_SIZE_MASK 0x7ffc
359#define MVPP2_GMAC_MIB_CNTR_EN_MASK BIT(15)
360#define MVPP2_GMAC_CTRL_1_REG 0x4
361#define MVPP2_GMAC_PERIODIC_XON_EN_MASK BIT(1)
362#define MVPP2_GMAC_GMII_LB_EN_MASK BIT(5)
363#define MVPP2_GMAC_PCS_LB_EN_BIT 6
364#define MVPP2_GMAC_PCS_LB_EN_MASK BIT(6)
365#define MVPP2_GMAC_SA_LOW_OFFS 7
366#define MVPP2_GMAC_CTRL_2_REG 0x8
367#define MVPP2_GMAC_INBAND_AN_MASK BIT(0)
Stefan Roese40e749b2017-03-22 15:07:30 +0100368#define MVPP2_GMAC_SGMII_MODE_MASK BIT(0)
Stefan Roese96c19042016-02-10 07:22:10 +0100369#define MVPP2_GMAC_PCS_ENABLE_MASK BIT(3)
370#define MVPP2_GMAC_PORT_RGMII_MASK BIT(4)
Stefan Roese40e749b2017-03-22 15:07:30 +0100371#define MVPP2_GMAC_PORT_DIS_PADING_MASK BIT(5)
Stefan Roese96c19042016-02-10 07:22:10 +0100372#define MVPP2_GMAC_PORT_RESET_MASK BIT(6)
Stefan Roese40e749b2017-03-22 15:07:30 +0100373#define MVPP2_GMAC_CLK_125_BYPS_EN_MASK BIT(9)
Stefan Roese96c19042016-02-10 07:22:10 +0100374#define MVPP2_GMAC_AUTONEG_CONFIG 0xc
375#define MVPP2_GMAC_FORCE_LINK_DOWN BIT(0)
376#define MVPP2_GMAC_FORCE_LINK_PASS BIT(1)
Stefan Roese40e749b2017-03-22 15:07:30 +0100377#define MVPP2_GMAC_EN_PCS_AN BIT(2)
378#define MVPP2_GMAC_AN_BYPASS_EN BIT(3)
Stefan Roese96c19042016-02-10 07:22:10 +0100379#define MVPP2_GMAC_CONFIG_MII_SPEED BIT(5)
380#define MVPP2_GMAC_CONFIG_GMII_SPEED BIT(6)
381#define MVPP2_GMAC_AN_SPEED_EN BIT(7)
382#define MVPP2_GMAC_FC_ADV_EN BIT(9)
Stefan Roese40e749b2017-03-22 15:07:30 +0100383#define MVPP2_GMAC_EN_FC_AN BIT(11)
Stefan Roese96c19042016-02-10 07:22:10 +0100384#define MVPP2_GMAC_CONFIG_FULL_DUPLEX BIT(12)
385#define MVPP2_GMAC_AN_DUPLEX_EN BIT(13)
Stefan Roese40e749b2017-03-22 15:07:30 +0100386#define MVPP2_GMAC_CHOOSE_SAMPLE_TX_CONFIG BIT(15)
Stefan Roese96c19042016-02-10 07:22:10 +0100387#define MVPP2_GMAC_PORT_FIFO_CFG_1_REG 0x1c
388#define MVPP2_GMAC_TX_FIFO_MIN_TH_OFFS 6
389#define MVPP2_GMAC_TX_FIFO_MIN_TH_ALL_MASK 0x1fc0
390#define MVPP2_GMAC_TX_FIFO_MIN_TH_MASK(v) (((v) << 6) & \
391 MVPP2_GMAC_TX_FIFO_MIN_TH_ALL_MASK)
Stefan Roese40e749b2017-03-22 15:07:30 +0100392#define MVPP2_GMAC_CTRL_4_REG 0x90
393#define MVPP2_GMAC_CTRL4_EXT_PIN_GMII_SEL_MASK BIT(0)
394#define MVPP2_GMAC_CTRL4_DP_CLK_SEL_MASK BIT(5)
395#define MVPP2_GMAC_CTRL4_SYNC_BYPASS_MASK BIT(6)
396#define MVPP2_GMAC_CTRL4_QSGMII_BYPASS_ACTIVE_MASK BIT(7)
Stefan Roese96c19042016-02-10 07:22:10 +0100397
Stefan Roese40e749b2017-03-22 15:07:30 +0100398/*
399 * Per-port XGMAC registers. PPv2.2 only, only for GOP port 0,
400 * relative to port->base.
401 */
402
403/* Port Mac Control0 */
404#define MVPP22_XLG_CTRL0_REG 0x100
405#define MVPP22_XLG_PORT_EN BIT(0)
406#define MVPP22_XLG_MAC_RESETN BIT(1)
407#define MVPP22_XLG_RX_FC_EN BIT(7)
408#define MVPP22_XLG_MIBCNT_DIS BIT(13)
409/* Port Mac Control1 */
410#define MVPP22_XLG_CTRL1_REG 0x104
411#define MVPP22_XLG_MAX_RX_SIZE_OFFS 0
412#define MVPP22_XLG_MAX_RX_SIZE_MASK 0x1fff
413/* Port Interrupt Mask */
414#define MVPP22_XLG_INTERRUPT_MASK_REG 0x118
415#define MVPP22_XLG_INTERRUPT_LINK_CHANGE BIT(1)
416/* Port Mac Control3 */
417#define MVPP22_XLG_CTRL3_REG 0x11c
418#define MVPP22_XLG_CTRL3_MACMODESELECT_MASK (7 << 13)
419#define MVPP22_XLG_CTRL3_MACMODESELECT_GMAC (0 << 13)
420#define MVPP22_XLG_CTRL3_MACMODESELECT_10GMAC (1 << 13)
421/* Port Mac Control4 */
422#define MVPP22_XLG_CTRL4_REG 0x184
423#define MVPP22_XLG_FORWARD_802_3X_FC_EN BIT(5)
424#define MVPP22_XLG_FORWARD_PFC_EN BIT(6)
425#define MVPP22_XLG_MODE_DMA_1G BIT(12)
426#define MVPP22_XLG_EN_IDLE_CHECK_FOR_LINK BIT(14)
427
428/* XPCS registers */
429
430/* Global Configuration 0 */
431#define MVPP22_XPCS_GLOBAL_CFG_0_REG 0x0
432#define MVPP22_XPCS_PCSRESET BIT(0)
433#define MVPP22_XPCS_PCSMODE_OFFS 3
434#define MVPP22_XPCS_PCSMODE_MASK (0x3 << \
435 MVPP22_XPCS_PCSMODE_OFFS)
436#define MVPP22_XPCS_LANEACTIVE_OFFS 5
437#define MVPP22_XPCS_LANEACTIVE_MASK (0x3 << \
438 MVPP22_XPCS_LANEACTIVE_OFFS)
439
440/* MPCS registers */
441
442#define PCS40G_COMMON_CONTROL 0x14
Stefan Chulskia27adcb2017-04-06 15:39:08 +0200443#define FORWARD_ERROR_CORRECTION_MASK BIT(10)
Stefan Roese40e749b2017-03-22 15:07:30 +0100444
445#define PCS_CLOCK_RESET 0x14c
446#define TX_SD_CLK_RESET_MASK BIT(0)
447#define RX_SD_CLK_RESET_MASK BIT(1)
448#define MAC_CLK_RESET_MASK BIT(2)
449#define CLK_DIVISION_RATIO_OFFS 4
450#define CLK_DIVISION_RATIO_MASK (0x7 << CLK_DIVISION_RATIO_OFFS)
451#define CLK_DIV_PHASE_SET_MASK BIT(11)
452
453/* System Soft Reset 1 */
454#define GOP_SOFT_RESET_1_REG 0x108
455#define NETC_GOP_SOFT_RESET_OFFS 6
456#define NETC_GOP_SOFT_RESET_MASK (0x1 << \
457 NETC_GOP_SOFT_RESET_OFFS)
458
459/* Ports Control 0 */
460#define NETCOMP_PORTS_CONTROL_0_REG 0x110
461#define NETC_BUS_WIDTH_SELECT_OFFS 1
462#define NETC_BUS_WIDTH_SELECT_MASK (0x1 << \
463 NETC_BUS_WIDTH_SELECT_OFFS)
464#define NETC_GIG_RX_DATA_SAMPLE_OFFS 29
465#define NETC_GIG_RX_DATA_SAMPLE_MASK (0x1 << \
466 NETC_GIG_RX_DATA_SAMPLE_OFFS)
467#define NETC_CLK_DIV_PHASE_OFFS 31
468#define NETC_CLK_DIV_PHASE_MASK (0x1 << NETC_CLK_DIV_PHASE_OFFS)
469/* Ports Control 1 */
470#define NETCOMP_PORTS_CONTROL_1_REG 0x114
471#define NETC_PORTS_ACTIVE_OFFSET(p) (0 + p)
472#define NETC_PORTS_ACTIVE_MASK(p) (0x1 << \
473 NETC_PORTS_ACTIVE_OFFSET(p))
474#define NETC_PORT_GIG_RF_RESET_OFFS(p) (28 + p)
475#define NETC_PORT_GIG_RF_RESET_MASK(p) (0x1 << \
476 NETC_PORT_GIG_RF_RESET_OFFS(p))
477#define NETCOMP_CONTROL_0_REG 0x120
478#define NETC_GBE_PORT0_SGMII_MODE_OFFS 0
479#define NETC_GBE_PORT0_SGMII_MODE_MASK (0x1 << \
480 NETC_GBE_PORT0_SGMII_MODE_OFFS)
481#define NETC_GBE_PORT1_SGMII_MODE_OFFS 1
482#define NETC_GBE_PORT1_SGMII_MODE_MASK (0x1 << \
483 NETC_GBE_PORT1_SGMII_MODE_OFFS)
484#define NETC_GBE_PORT1_MII_MODE_OFFS 2
485#define NETC_GBE_PORT1_MII_MODE_MASK (0x1 << \
486 NETC_GBE_PORT1_MII_MODE_OFFS)
487
488#define MVPP22_SMI_MISC_CFG_REG (MVPP22_SMI + 0x04)
Thomas Petazzonicc2445f2017-02-20 11:42:51 +0100489#define MVPP22_SMI_POLLING_EN BIT(10)
490
Stefan Roese96c19042016-02-10 07:22:10 +0100491#define MVPP2_CAUSE_TXQ_SENT_DESC_ALL_MASK 0xff
492
493/* Descriptor ring Macros */
494#define MVPP2_QUEUE_NEXT_DESC(q, index) \
495 (((index) < (q)->last_desc) ? ((index) + 1) : 0)
496
Stefan Roeseb71c2a32017-02-16 08:31:32 +0100497/* PP2.2: SMI: 0x12a200 -> offset 0x1200 to iface_base */
498#define MVPP22_SMI 0x1200
Stefan Roese96c19042016-02-10 07:22:10 +0100499
Stefan Roese40e749b2017-03-22 15:07:30 +0100500/* Additional PPv2.2 offsets */
501#define MVPP22_MPCS 0x007000
502#define MVPP22_XPCS 0x007400
503#define MVPP22_PORT_BASE 0x007e00
504#define MVPP22_PORT_OFFSET 0x001000
505#define MVPP22_RFU1 0x318000
506
507/* Maximum number of ports */
508#define MVPP22_GOP_MAC_NUM 4
509
510/* Sets the field located at the specified in data */
511#define MVPP2_RGMII_TX_FIFO_MIN_TH 0x41
512#define MVPP2_SGMII_TX_FIFO_MIN_TH 0x5
513#define MVPP2_SGMII2_5_TX_FIFO_MIN_TH 0xb
514
515/* Net Complex */
516enum mv_netc_topology {
517 MV_NETC_GE_MAC2_SGMII = BIT(0),
Stefan Chulskib3f12b52021-05-03 08:08:45 +0200518 MV_NETC_GE_MAC2_RGMII = BIT(1),
519 MV_NETC_GE_MAC3_SGMII = BIT(2),
520 MV_NETC_GE_MAC3_RGMII = BIT(3),
Stefan Roese40e749b2017-03-22 15:07:30 +0100521};
522
523enum mv_netc_phase {
524 MV_NETC_FIRST_PHASE,
525 MV_NETC_SECOND_PHASE,
526};
527
528enum mv_netc_sgmii_xmi_mode {
529 MV_NETC_GBE_SGMII,
530 MV_NETC_GBE_XMII,
531};
532
533enum mv_netc_mii_mode {
534 MV_NETC_GBE_RGMII,
535 MV_NETC_GBE_MII,
536};
537
538enum mv_netc_lanes {
539 MV_NETC_LANE_23,
540 MV_NETC_LANE_45,
541};
542
Stefan Roese96c19042016-02-10 07:22:10 +0100543/* Various constants */
544
545/* Coalescing */
546#define MVPP2_TXDONE_COAL_PKTS_THRESH 15
547#define MVPP2_TXDONE_HRTIMER_PERIOD_NS 1000000UL
548#define MVPP2_RX_COAL_PKTS 32
549#define MVPP2_RX_COAL_USEC 100
550
551/* The two bytes Marvell header. Either contains a special value used
552 * by Marvell switches when a specific hardware mode is enabled (not
553 * supported by this driver) or is filled automatically by zeroes on
554 * the RX side. Those two bytes being at the front of the Ethernet
555 * header, they allow to have the IP header aligned on a 4 bytes
556 * boundary automatically: the hardware skips those two bytes on its
557 * own.
558 */
559#define MVPP2_MH_SIZE 2
560#define MVPP2_ETH_TYPE_LEN 2
561#define MVPP2_PPPOE_HDR_SIZE 8
562#define MVPP2_VLAN_TAG_LEN 4
563
564/* Lbtd 802.3 type */
565#define MVPP2_IP_LBDT_TYPE 0xfffa
566
567#define MVPP2_CPU_D_CACHE_LINE_SIZE 32
568#define MVPP2_TX_CSUM_MAX_SIZE 9800
569
570/* Timeout constants */
571#define MVPP2_TX_DISABLE_TIMEOUT_MSEC 1000
572#define MVPP2_TX_PENDING_TIMEOUT_MSEC 1000
573
574#define MVPP2_TX_MTU_MAX 0x7ffff
575
576/* Maximum number of T-CONTs of PON port */
577#define MVPP2_MAX_TCONT 16
578
579/* Maximum number of supported ports */
580#define MVPP2_MAX_PORTS 4
581
582/* Maximum number of TXQs used by single port */
583#define MVPP2_MAX_TXQ 8
584
Stefan Roese96c19042016-02-10 07:22:10 +0100585/* Default number of TXQs in use */
586#define MVPP2_DEFAULT_TXQ 1
587
Flavio Suligoi50b91ce2020-01-29 09:38:56 +0100588/* Default number of RXQs in use */
Stefan Roese96c19042016-02-10 07:22:10 +0100589#define MVPP2_DEFAULT_RXQ 1
Tom Rini364d0022023-01-10 11:19:45 -0500590#define CFG_MV_ETH_RXQ 8 /* increment by 8 */
Stefan Roese96c19042016-02-10 07:22:10 +0100591
Stefan Roese96c19042016-02-10 07:22:10 +0100592/* Max number of Rx descriptors */
593#define MVPP2_MAX_RXD 16
594
595/* Max number of Tx descriptors */
596#define MVPP2_MAX_TXD 16
597
598/* Amount of Tx descriptors that can be reserved at once by CPU */
Stefan Chulskib528d122017-08-09 10:37:47 +0300599#define MVPP2_CPU_DESC_CHUNK 16
Stefan Roese96c19042016-02-10 07:22:10 +0100600
601/* Max number of Tx descriptors in each aggregated queue */
Stefan Chulskib528d122017-08-09 10:37:47 +0300602#define MVPP2_AGGR_TXQ_SIZE 16
Stefan Roese96c19042016-02-10 07:22:10 +0100603
604/* Descriptor aligned size */
605#define MVPP2_DESC_ALIGNED_SIZE 32
606
607/* Descriptor alignment mask */
608#define MVPP2_TX_DESC_ALIGN (MVPP2_DESC_ALIGNED_SIZE - 1)
609
610/* RX FIFO constants */
Stefan Roesea8801ed2017-03-01 13:09:42 +0100611#define MVPP21_RX_FIFO_PORT_DATA_SIZE 0x2000
612#define MVPP21_RX_FIFO_PORT_ATTR_SIZE 0x80
613#define MVPP22_RX_FIFO_10GB_PORT_DATA_SIZE 0x8000
614#define MVPP22_RX_FIFO_2_5GB_PORT_DATA_SIZE 0x2000
615#define MVPP22_RX_FIFO_1GB_PORT_DATA_SIZE 0x1000
616#define MVPP22_RX_FIFO_10GB_PORT_ATTR_SIZE 0x200
617#define MVPP22_RX_FIFO_2_5GB_PORT_ATTR_SIZE 0x80
618#define MVPP22_RX_FIFO_1GB_PORT_ATTR_SIZE 0x40
619#define MVPP2_RX_FIFO_PORT_MIN_PKT 0x80
620
621/* TX general registers */
622#define MVPP22_TX_FIFO_SIZE_REG(eth_tx_port) (0x8860 + ((eth_tx_port) << 2))
623#define MVPP22_TX_FIFO_SIZE_MASK 0xf
624
625/* TX FIFO constants */
626#define MVPP2_TX_FIFO_DATA_SIZE_10KB 0xa
627#define MVPP2_TX_FIFO_DATA_SIZE_3KB 0x3
Stefan Roese96c19042016-02-10 07:22:10 +0100628
629/* RX buffer constants */
630#define MVPP2_SKB_SHINFO_SIZE \
631 0
632
633#define MVPP2_RX_PKT_SIZE(mtu) \
634 ALIGN((mtu) + MVPP2_MH_SIZE + MVPP2_VLAN_TAG_LEN + \
635 ETH_HLEN + ETH_FCS_LEN, MVPP2_CPU_D_CACHE_LINE_SIZE)
636
637#define MVPP2_RX_BUF_SIZE(pkt_size) ((pkt_size) + NET_SKB_PAD)
638#define MVPP2_RX_TOTAL_SIZE(buf_size) ((buf_size) + MVPP2_SKB_SHINFO_SIZE)
639#define MVPP2_RX_MAX_PKT_SIZE(total_size) \
640 ((total_size) - NET_SKB_PAD - MVPP2_SKB_SHINFO_SIZE)
641
642#define MVPP2_BIT_TO_BYTE(bit) ((bit) / 8)
643
644/* IPv6 max L3 address size */
645#define MVPP2_MAX_L3_ADDR_SIZE 16
646
647/* Port flags */
648#define MVPP2_F_LOOPBACK BIT(0)
649
650/* Marvell tag types */
651enum mvpp2_tag_type {
652 MVPP2_TAG_TYPE_NONE = 0,
653 MVPP2_TAG_TYPE_MH = 1,
654 MVPP2_TAG_TYPE_DSA = 2,
655 MVPP2_TAG_TYPE_EDSA = 3,
656 MVPP2_TAG_TYPE_VLAN = 4,
657 MVPP2_TAG_TYPE_LAST = 5
658};
659
660/* Parser constants */
661#define MVPP2_PRS_TCAM_SRAM_SIZE 256
662#define MVPP2_PRS_TCAM_WORDS 6
663#define MVPP2_PRS_SRAM_WORDS 4
664#define MVPP2_PRS_FLOW_ID_SIZE 64
665#define MVPP2_PRS_FLOW_ID_MASK 0x3f
666#define MVPP2_PRS_TCAM_ENTRY_INVALID 1
667#define MVPP2_PRS_TCAM_DSA_TAGGED_BIT BIT(5)
668#define MVPP2_PRS_IPV4_HEAD 0x40
669#define MVPP2_PRS_IPV4_HEAD_MASK 0xf0
670#define MVPP2_PRS_IPV4_MC 0xe0
671#define MVPP2_PRS_IPV4_MC_MASK 0xf0
672#define MVPP2_PRS_IPV4_BC_MASK 0xff
673#define MVPP2_PRS_IPV4_IHL 0x5
674#define MVPP2_PRS_IPV4_IHL_MASK 0xf
675#define MVPP2_PRS_IPV6_MC 0xff
676#define MVPP2_PRS_IPV6_MC_MASK 0xff
677#define MVPP2_PRS_IPV6_HOP_MASK 0xff
678#define MVPP2_PRS_TCAM_PROTO_MASK 0xff
679#define MVPP2_PRS_TCAM_PROTO_MASK_L 0x3f
680#define MVPP2_PRS_DBL_VLANS_MAX 100
681
682/* Tcam structure:
683 * - lookup ID - 4 bits
684 * - port ID - 1 byte
685 * - additional information - 1 byte
686 * - header data - 8 bytes
687 * The fields are represented by MVPP2_PRS_TCAM_DATA_REG(5)->(0).
688 */
689#define MVPP2_PRS_AI_BITS 8
690#define MVPP2_PRS_PORT_MASK 0xff
691#define MVPP2_PRS_LU_MASK 0xf
692#define MVPP2_PRS_TCAM_DATA_BYTE(offs) \
693 (((offs) - ((offs) % 2)) * 2 + ((offs) % 2))
694#define MVPP2_PRS_TCAM_DATA_BYTE_EN(offs) \
695 (((offs) * 2) - ((offs) % 2) + 2)
696#define MVPP2_PRS_TCAM_AI_BYTE 16
697#define MVPP2_PRS_TCAM_PORT_BYTE 17
698#define MVPP2_PRS_TCAM_LU_BYTE 20
699#define MVPP2_PRS_TCAM_EN_OFFS(offs) ((offs) + 2)
700#define MVPP2_PRS_TCAM_INV_WORD 5
701/* Tcam entries ID */
702#define MVPP2_PE_DROP_ALL 0
703#define MVPP2_PE_FIRST_FREE_TID 1
704#define MVPP2_PE_LAST_FREE_TID (MVPP2_PRS_TCAM_SRAM_SIZE - 31)
705#define MVPP2_PE_IP6_EXT_PROTO_UN (MVPP2_PRS_TCAM_SRAM_SIZE - 30)
706#define MVPP2_PE_MAC_MC_IP6 (MVPP2_PRS_TCAM_SRAM_SIZE - 29)
707#define MVPP2_PE_IP6_ADDR_UN (MVPP2_PRS_TCAM_SRAM_SIZE - 28)
708#define MVPP2_PE_IP4_ADDR_UN (MVPP2_PRS_TCAM_SRAM_SIZE - 27)
709#define MVPP2_PE_LAST_DEFAULT_FLOW (MVPP2_PRS_TCAM_SRAM_SIZE - 26)
710#define MVPP2_PE_FIRST_DEFAULT_FLOW (MVPP2_PRS_TCAM_SRAM_SIZE - 19)
711#define MVPP2_PE_EDSA_TAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 18)
712#define MVPP2_PE_EDSA_UNTAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 17)
713#define MVPP2_PE_DSA_TAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 16)
714#define MVPP2_PE_DSA_UNTAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 15)
715#define MVPP2_PE_ETYPE_EDSA_TAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 14)
716#define MVPP2_PE_ETYPE_EDSA_UNTAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 13)
717#define MVPP2_PE_ETYPE_DSA_TAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 12)
718#define MVPP2_PE_ETYPE_DSA_UNTAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 11)
719#define MVPP2_PE_MH_DEFAULT (MVPP2_PRS_TCAM_SRAM_SIZE - 10)
720#define MVPP2_PE_DSA_DEFAULT (MVPP2_PRS_TCAM_SRAM_SIZE - 9)
721#define MVPP2_PE_IP6_PROTO_UN (MVPP2_PRS_TCAM_SRAM_SIZE - 8)
722#define MVPP2_PE_IP4_PROTO_UN (MVPP2_PRS_TCAM_SRAM_SIZE - 7)
723#define MVPP2_PE_ETH_TYPE_UN (MVPP2_PRS_TCAM_SRAM_SIZE - 6)
724#define MVPP2_PE_VLAN_DBL (MVPP2_PRS_TCAM_SRAM_SIZE - 5)
725#define MVPP2_PE_VLAN_NONE (MVPP2_PRS_TCAM_SRAM_SIZE - 4)
726#define MVPP2_PE_MAC_MC_ALL (MVPP2_PRS_TCAM_SRAM_SIZE - 3)
727#define MVPP2_PE_MAC_PROMISCUOUS (MVPP2_PRS_TCAM_SRAM_SIZE - 2)
728#define MVPP2_PE_MAC_NON_PROMISCUOUS (MVPP2_PRS_TCAM_SRAM_SIZE - 1)
729
730/* Sram structure
731 * The fields are represented by MVPP2_PRS_TCAM_DATA_REG(3)->(0).
732 */
733#define MVPP2_PRS_SRAM_RI_OFFS 0
734#define MVPP2_PRS_SRAM_RI_WORD 0
735#define MVPP2_PRS_SRAM_RI_CTRL_OFFS 32
736#define MVPP2_PRS_SRAM_RI_CTRL_WORD 1
737#define MVPP2_PRS_SRAM_RI_CTRL_BITS 32
738#define MVPP2_PRS_SRAM_SHIFT_OFFS 64
739#define MVPP2_PRS_SRAM_SHIFT_SIGN_BIT 72
740#define MVPP2_PRS_SRAM_UDF_OFFS 73
741#define MVPP2_PRS_SRAM_UDF_BITS 8
742#define MVPP2_PRS_SRAM_UDF_MASK 0xff
743#define MVPP2_PRS_SRAM_UDF_SIGN_BIT 81
744#define MVPP2_PRS_SRAM_UDF_TYPE_OFFS 82
745#define MVPP2_PRS_SRAM_UDF_TYPE_MASK 0x7
746#define MVPP2_PRS_SRAM_UDF_TYPE_L3 1
747#define MVPP2_PRS_SRAM_UDF_TYPE_L4 4
748#define MVPP2_PRS_SRAM_OP_SEL_SHIFT_OFFS 85
749#define MVPP2_PRS_SRAM_OP_SEL_SHIFT_MASK 0x3
750#define MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD 1
751#define MVPP2_PRS_SRAM_OP_SEL_SHIFT_IP4_ADD 2
752#define MVPP2_PRS_SRAM_OP_SEL_SHIFT_IP6_ADD 3
753#define MVPP2_PRS_SRAM_OP_SEL_UDF_OFFS 87
754#define MVPP2_PRS_SRAM_OP_SEL_UDF_BITS 2
755#define MVPP2_PRS_SRAM_OP_SEL_UDF_MASK 0x3
756#define MVPP2_PRS_SRAM_OP_SEL_UDF_ADD 0
757#define MVPP2_PRS_SRAM_OP_SEL_UDF_IP4_ADD 2
758#define MVPP2_PRS_SRAM_OP_SEL_UDF_IP6_ADD 3
759#define MVPP2_PRS_SRAM_OP_SEL_BASE_OFFS 89
760#define MVPP2_PRS_SRAM_AI_OFFS 90
761#define MVPP2_PRS_SRAM_AI_CTRL_OFFS 98
762#define MVPP2_PRS_SRAM_AI_CTRL_BITS 8
763#define MVPP2_PRS_SRAM_AI_MASK 0xff
764#define MVPP2_PRS_SRAM_NEXT_LU_OFFS 106
765#define MVPP2_PRS_SRAM_NEXT_LU_MASK 0xf
766#define MVPP2_PRS_SRAM_LU_DONE_BIT 110
767#define MVPP2_PRS_SRAM_LU_GEN_BIT 111
768
769/* Sram result info bits assignment */
770#define MVPP2_PRS_RI_MAC_ME_MASK 0x1
771#define MVPP2_PRS_RI_DSA_MASK 0x2
Thomas Petazzoni265b3c62017-02-15 12:19:36 +0100772#define MVPP2_PRS_RI_VLAN_MASK (BIT(2) | BIT(3))
773#define MVPP2_PRS_RI_VLAN_NONE 0x0
Stefan Roese96c19042016-02-10 07:22:10 +0100774#define MVPP2_PRS_RI_VLAN_SINGLE BIT(2)
775#define MVPP2_PRS_RI_VLAN_DOUBLE BIT(3)
776#define MVPP2_PRS_RI_VLAN_TRIPLE (BIT(2) | BIT(3))
777#define MVPP2_PRS_RI_CPU_CODE_MASK 0x70
778#define MVPP2_PRS_RI_CPU_CODE_RX_SPEC BIT(4)
Thomas Petazzoni265b3c62017-02-15 12:19:36 +0100779#define MVPP2_PRS_RI_L2_CAST_MASK (BIT(9) | BIT(10))
780#define MVPP2_PRS_RI_L2_UCAST 0x0
Stefan Roese96c19042016-02-10 07:22:10 +0100781#define MVPP2_PRS_RI_L2_MCAST BIT(9)
782#define MVPP2_PRS_RI_L2_BCAST BIT(10)
783#define MVPP2_PRS_RI_PPPOE_MASK 0x800
Thomas Petazzoni265b3c62017-02-15 12:19:36 +0100784#define MVPP2_PRS_RI_L3_PROTO_MASK (BIT(12) | BIT(13) | BIT(14))
785#define MVPP2_PRS_RI_L3_UN 0x0
Stefan Roese96c19042016-02-10 07:22:10 +0100786#define MVPP2_PRS_RI_L3_IP4 BIT(12)
787#define MVPP2_PRS_RI_L3_IP4_OPT BIT(13)
788#define MVPP2_PRS_RI_L3_IP4_OTHER (BIT(12) | BIT(13))
789#define MVPP2_PRS_RI_L3_IP6 BIT(14)
790#define MVPP2_PRS_RI_L3_IP6_EXT (BIT(12) | BIT(14))
791#define MVPP2_PRS_RI_L3_ARP (BIT(13) | BIT(14))
Thomas Petazzoni265b3c62017-02-15 12:19:36 +0100792#define MVPP2_PRS_RI_L3_ADDR_MASK (BIT(15) | BIT(16))
793#define MVPP2_PRS_RI_L3_UCAST 0x0
Stefan Roese96c19042016-02-10 07:22:10 +0100794#define MVPP2_PRS_RI_L3_MCAST BIT(15)
795#define MVPP2_PRS_RI_L3_BCAST (BIT(15) | BIT(16))
796#define MVPP2_PRS_RI_IP_FRAG_MASK 0x20000
797#define MVPP2_PRS_RI_UDF3_MASK 0x300000
798#define MVPP2_PRS_RI_UDF3_RX_SPECIAL BIT(21)
799#define MVPP2_PRS_RI_L4_PROTO_MASK 0x1c00000
800#define MVPP2_PRS_RI_L4_TCP BIT(22)
801#define MVPP2_PRS_RI_L4_UDP BIT(23)
802#define MVPP2_PRS_RI_L4_OTHER (BIT(22) | BIT(23))
803#define MVPP2_PRS_RI_UDF7_MASK 0x60000000
804#define MVPP2_PRS_RI_UDF7_IP6_LITE BIT(29)
805#define MVPP2_PRS_RI_DROP_MASK 0x80000000
806
807/* Sram additional info bits assignment */
808#define MVPP2_PRS_IPV4_DIP_AI_BIT BIT(0)
809#define MVPP2_PRS_IPV6_NO_EXT_AI_BIT BIT(0)
810#define MVPP2_PRS_IPV6_EXT_AI_BIT BIT(1)
811#define MVPP2_PRS_IPV6_EXT_AH_AI_BIT BIT(2)
812#define MVPP2_PRS_IPV6_EXT_AH_LEN_AI_BIT BIT(3)
813#define MVPP2_PRS_IPV6_EXT_AH_L4_AI_BIT BIT(4)
814#define MVPP2_PRS_SINGLE_VLAN_AI 0
815#define MVPP2_PRS_DBL_VLAN_AI_BIT BIT(7)
816
817/* DSA/EDSA type */
818#define MVPP2_PRS_TAGGED true
819#define MVPP2_PRS_UNTAGGED false
820#define MVPP2_PRS_EDSA true
821#define MVPP2_PRS_DSA false
822
823/* MAC entries, shadow udf */
824enum mvpp2_prs_udf {
825 MVPP2_PRS_UDF_MAC_DEF,
826 MVPP2_PRS_UDF_MAC_RANGE,
827 MVPP2_PRS_UDF_L2_DEF,
828 MVPP2_PRS_UDF_L2_DEF_COPY,
829 MVPP2_PRS_UDF_L2_USER,
830};
831
832/* Lookup ID */
833enum mvpp2_prs_lookup {
834 MVPP2_PRS_LU_MH,
835 MVPP2_PRS_LU_MAC,
836 MVPP2_PRS_LU_DSA,
837 MVPP2_PRS_LU_VLAN,
838 MVPP2_PRS_LU_L2,
839 MVPP2_PRS_LU_PPPOE,
840 MVPP2_PRS_LU_IP4,
841 MVPP2_PRS_LU_IP6,
842 MVPP2_PRS_LU_FLOWS,
843 MVPP2_PRS_LU_LAST,
844};
845
846/* L3 cast enum */
847enum mvpp2_prs_l3_cast {
848 MVPP2_PRS_L3_UNI_CAST,
849 MVPP2_PRS_L3_MULTI_CAST,
850 MVPP2_PRS_L3_BROAD_CAST
851};
852
853/* Classifier constants */
854#define MVPP2_CLS_FLOWS_TBL_SIZE 512
855#define MVPP2_CLS_FLOWS_TBL_DATA_WORDS 3
856#define MVPP2_CLS_LKP_TBL_SIZE 64
857
858/* BM constants */
859#define MVPP2_BM_POOLS_NUM 1
860#define MVPP2_BM_LONG_BUF_NUM 16
861#define MVPP2_BM_SHORT_BUF_NUM 16
862#define MVPP2_BM_POOL_SIZE_MAX (16*1024 - MVPP2_BM_POOL_PTR_ALIGN/4)
863#define MVPP2_BM_POOL_PTR_ALIGN 128
864#define MVPP2_BM_SWF_LONG_POOL(port) 0
865
866/* BM cookie (32 bits) definition */
867#define MVPP2_BM_COOKIE_POOL_OFFS 8
868#define MVPP2_BM_COOKIE_CPU_OFFS 24
869
870/* BM short pool packet size
871 * These value assure that for SWF the total number
872 * of bytes allocated for each buffer will be 512
873 */
874#define MVPP2_BM_SHORT_PKT_SIZE MVPP2_RX_MAX_PKT_SIZE(512)
875
876enum mvpp2_bm_type {
877 MVPP2_BM_FREE,
878 MVPP2_BM_SWF_LONG,
879 MVPP2_BM_SWF_SHORT
880};
881
882/* Definitions */
883
884/* Shared Packet Processor resources */
885struct mvpp2 {
886 /* Shared registers' base addresses */
887 void __iomem *base;
888 void __iomem *lms_base;
Thomas Petazzoni5555f072017-02-16 08:03:37 +0100889 void __iomem *iface_base;
Stefan Roese96c19042016-02-10 07:22:10 +0100890
Stefan Roese40e749b2017-03-22 15:07:30 +0100891 void __iomem *mpcs_base;
892 void __iomem *xpcs_base;
893 void __iomem *rfu1_base;
894
895 u32 netc_config;
896
Stefan Roese96c19042016-02-10 07:22:10 +0100897 /* List of pointers to port structures */
898 struct mvpp2_port **port_list;
899
900 /* Aggregated TXQs */
901 struct mvpp2_tx_queue *aggr_txqs;
902
903 /* BM pools */
904 struct mvpp2_bm_pool *bm_pools;
905
906 /* PRS shadow table */
907 struct mvpp2_prs_shadow *prs_shadow;
908 /* PRS auxiliary table for double vlan entries control */
909 bool *prs_double_vlans;
910
911 /* Tclk value */
912 u32 tclk;
913
Thomas Petazzoni51ccb412017-02-15 14:08:59 +0100914 /* HW version */
915 enum { MVPP21, MVPP22 } hw_version;
916
Thomas Petazzoni38a23282017-02-16 09:03:16 +0100917 /* Maximum number of RXQs per port */
918 unsigned int max_port_rxqs;
919
Stefan Roesed017cdf2017-02-16 15:26:06 +0100920 int probe_done;
Stefan Chulski75872182017-08-09 10:37:46 +0300921 u8 num_ports;
Stefan Roese96c19042016-02-10 07:22:10 +0100922};
923
924struct mvpp2_pcpu_stats {
925 u64 rx_packets;
926 u64 rx_bytes;
927 u64 tx_packets;
928 u64 tx_bytes;
929};
930
931struct mvpp2_port {
932 u8 id;
933
Thomas Petazzoni5555f072017-02-16 08:03:37 +0100934 /* Index of the port from the "group of ports" complex point
935 * of view
936 */
937 int gop_id;
938
Stefan Roese96c19042016-02-10 07:22:10 +0100939 int irq;
940
941 struct mvpp2 *priv;
942
943 /* Per-port registers' base address */
944 void __iomem *base;
945
946 struct mvpp2_rx_queue **rxqs;
947 struct mvpp2_tx_queue **txqs;
948
949 int pkt_size;
950
951 u32 pending_cause_rx;
952
953 /* Per-CPU port control */
954 struct mvpp2_port_pcpu __percpu *pcpu;
955
956 /* Flags */
957 unsigned long flags;
958
959 u16 tx_ring_size;
960 u16 rx_ring_size;
961 struct mvpp2_pcpu_stats __percpu *stats;
962
963 struct phy_device *phy_dev;
964 phy_interface_t phy_interface;
Stefan Roese96c19042016-02-10 07:22:10 +0100965 int phyaddr;
Nevo Hed5e975612019-08-15 18:08:44 -0400966 struct udevice *mdio_dev;
Simon Glassfa4689a2019-12-06 21:41:35 -0700967 struct mii_dev *bus;
968#if CONFIG_IS_ENABLED(DM_GPIO)
Stefan Chulski0d65eb62017-08-09 10:37:43 +0300969 struct gpio_desc phy_reset_gpio;
970 struct gpio_desc phy_tx_disable_gpio;
971#endif
Stefan Roese96c19042016-02-10 07:22:10 +0100972 int init;
973 unsigned int link;
974 unsigned int duplex;
975 unsigned int speed;
976
977 struct mvpp2_bm_pool *pool_long;
978 struct mvpp2_bm_pool *pool_short;
979
980 /* Index of first port's physical RXQ */
981 u8 first_rxq;
982
983 u8 dev_addr[ETH_ALEN];
984};
985
986/* The mvpp2_tx_desc and mvpp2_rx_desc structures describe the
987 * layout of the transmit and reception DMA descriptors, and their
988 * layout is therefore defined by the hardware design
989 */
990
991#define MVPP2_TXD_L3_OFF_SHIFT 0
992#define MVPP2_TXD_IP_HLEN_SHIFT 8
993#define MVPP2_TXD_L4_CSUM_FRAG BIT(13)
994#define MVPP2_TXD_L4_CSUM_NOT BIT(14)
995#define MVPP2_TXD_IP_CSUM_DISABLE BIT(15)
996#define MVPP2_TXD_PADDING_DISABLE BIT(23)
997#define MVPP2_TXD_L4_UDP BIT(24)
998#define MVPP2_TXD_L3_IP6 BIT(26)
999#define MVPP2_TXD_L_DESC BIT(28)
1000#define MVPP2_TXD_F_DESC BIT(29)
1001
1002#define MVPP2_RXD_ERR_SUMMARY BIT(15)
1003#define MVPP2_RXD_ERR_CODE_MASK (BIT(13) | BIT(14))
1004#define MVPP2_RXD_ERR_CRC 0x0
1005#define MVPP2_RXD_ERR_OVERRUN BIT(13)
1006#define MVPP2_RXD_ERR_RESOURCE (BIT(13) | BIT(14))
1007#define MVPP2_RXD_BM_POOL_ID_OFFS 16
1008#define MVPP2_RXD_BM_POOL_ID_MASK (BIT(16) | BIT(17) | BIT(18))
1009#define MVPP2_RXD_HWF_SYNC BIT(21)
1010#define MVPP2_RXD_L4_CSUM_OK BIT(22)
1011#define MVPP2_RXD_IP4_HEADER_ERR BIT(24)
1012#define MVPP2_RXD_L4_TCP BIT(25)
1013#define MVPP2_RXD_L4_UDP BIT(26)
1014#define MVPP2_RXD_L3_IP4 BIT(28)
1015#define MVPP2_RXD_L3_IP6 BIT(30)
1016#define MVPP2_RXD_BUF_HDR BIT(31)
1017
Thomas Petazzonie3645a02017-02-15 16:25:53 +01001018/* HW TX descriptor for PPv2.1 */
1019struct mvpp21_tx_desc {
Stefan Roese96c19042016-02-10 07:22:10 +01001020 u32 command; /* Options used by HW for packet transmitting.*/
1021 u8 packet_offset; /* the offset from the buffer beginning */
1022 u8 phys_txq; /* destination queue ID */
1023 u16 data_size; /* data size of transmitted packet in bytes */
Thomas Petazzonic49aff22017-02-20 10:27:51 +01001024 u32 buf_dma_addr; /* physical addr of transmitted buffer */
Stefan Roese96c19042016-02-10 07:22:10 +01001025 u32 buf_cookie; /* cookie for access to TX buffer in tx path */
1026 u32 reserved1[3]; /* hw_cmd (for future use, BM, PON, PNC) */
1027 u32 reserved2; /* reserved (for future use) */
1028};
1029
Thomas Petazzonie3645a02017-02-15 16:25:53 +01001030/* HW RX descriptor for PPv2.1 */
1031struct mvpp21_rx_desc {
Stefan Roese96c19042016-02-10 07:22:10 +01001032 u32 status; /* info about received packet */
1033 u16 reserved1; /* parser_info (for future use, PnC) */
1034 u16 data_size; /* size of received packet in bytes */
Thomas Petazzonic49aff22017-02-20 10:27:51 +01001035 u32 buf_dma_addr; /* physical address of the buffer */
Stefan Roese96c19042016-02-10 07:22:10 +01001036 u32 buf_cookie; /* cookie for access to RX buffer in rx path */
1037 u16 reserved2; /* gem_port_id (for future use, PON) */
1038 u16 reserved3; /* csum_l4 (for future use, PnC) */
1039 u8 reserved4; /* bm_qset (for future use, BM) */
1040 u8 reserved5;
1041 u16 reserved6; /* classify_info (for future use, PnC) */
1042 u32 reserved7; /* flow_id (for future use, PnC) */
1043 u32 reserved8;
1044};
1045
Thomas Petazzoni56563ad2017-02-20 11:08:46 +01001046/* HW TX descriptor for PPv2.2 */
1047struct mvpp22_tx_desc {
1048 u32 command;
1049 u8 packet_offset;
1050 u8 phys_txq;
1051 u16 data_size;
1052 u64 reserved1;
1053 u64 buf_dma_addr_ptp;
1054 u64 buf_cookie_misc;
1055};
1056
1057/* HW RX descriptor for PPv2.2 */
1058struct mvpp22_rx_desc {
1059 u32 status;
1060 u16 reserved1;
1061 u16 data_size;
1062 u32 reserved2;
1063 u32 reserved3;
1064 u64 buf_dma_addr_key_hash;
1065 u64 buf_cookie_misc;
1066};
1067
Thomas Petazzonie3645a02017-02-15 16:25:53 +01001068/* Opaque type used by the driver to manipulate the HW TX and RX
1069 * descriptors
1070 */
1071struct mvpp2_tx_desc {
1072 union {
1073 struct mvpp21_tx_desc pp21;
Thomas Petazzoni56563ad2017-02-20 11:08:46 +01001074 struct mvpp22_tx_desc pp22;
Thomas Petazzonie3645a02017-02-15 16:25:53 +01001075 };
1076};
1077
1078struct mvpp2_rx_desc {
1079 union {
1080 struct mvpp21_rx_desc pp21;
Thomas Petazzoni56563ad2017-02-20 11:08:46 +01001081 struct mvpp22_rx_desc pp22;
Thomas Petazzonie3645a02017-02-15 16:25:53 +01001082 };
1083};
1084
Stefan Roese96c19042016-02-10 07:22:10 +01001085/* Per-CPU Tx queue control */
1086struct mvpp2_txq_pcpu {
1087 int cpu;
1088
1089 /* Number of Tx DMA descriptors in the descriptor ring */
1090 int size;
1091
1092 /* Number of currently used Tx DMA descriptor in the
1093 * descriptor ring
1094 */
1095 int count;
1096
1097 /* Number of Tx DMA descriptors reserved for each CPU */
1098 int reserved_num;
1099
1100 /* Index of last TX DMA descriptor that was inserted */
1101 int txq_put_index;
1102
1103 /* Index of the TX DMA descriptor to be cleaned up */
1104 int txq_get_index;
1105};
1106
1107struct mvpp2_tx_queue {
1108 /* Physical number of this Tx queue */
1109 u8 id;
1110
1111 /* Logical number of this Tx queue */
1112 u8 log_id;
1113
1114 /* Number of Tx DMA descriptors in the descriptor ring */
1115 int size;
1116
1117 /* Number of currently used Tx DMA descriptor in the descriptor ring */
1118 int count;
1119
1120 /* Per-CPU control of physical Tx queues */
1121 struct mvpp2_txq_pcpu __percpu *pcpu;
1122
1123 u32 done_pkts_coal;
1124
1125 /* Virtual address of thex Tx DMA descriptors array */
1126 struct mvpp2_tx_desc *descs;
1127
1128 /* DMA address of the Tx DMA descriptors array */
Thomas Petazzonic49aff22017-02-20 10:27:51 +01001129 dma_addr_t descs_dma;
Stefan Roese96c19042016-02-10 07:22:10 +01001130
1131 /* Index of the last Tx DMA descriptor */
1132 int last_desc;
1133
1134 /* Index of the next Tx DMA descriptor to process */
1135 int next_desc_to_proc;
1136};
1137
1138struct mvpp2_rx_queue {
1139 /* RX queue number, in the range 0-31 for physical RXQs */
1140 u8 id;
1141
1142 /* Num of rx descriptors in the rx descriptor ring */
1143 int size;
1144
1145 u32 pkts_coal;
1146 u32 time_coal;
1147
1148 /* Virtual address of the RX DMA descriptors array */
1149 struct mvpp2_rx_desc *descs;
1150
1151 /* DMA address of the RX DMA descriptors array */
Thomas Petazzonic49aff22017-02-20 10:27:51 +01001152 dma_addr_t descs_dma;
Stefan Roese96c19042016-02-10 07:22:10 +01001153
1154 /* Index of the last RX DMA descriptor */
1155 int last_desc;
1156
1157 /* Index of the next RX DMA descriptor to process */
1158 int next_desc_to_proc;
1159
1160 /* ID of port to which physical RXQ is mapped */
1161 int port;
1162
1163 /* Port's logic RXQ number to which physical RXQ is mapped */
1164 int logic_rxq;
1165};
1166
1167union mvpp2_prs_tcam_entry {
1168 u32 word[MVPP2_PRS_TCAM_WORDS];
1169 u8 byte[MVPP2_PRS_TCAM_WORDS * 4];
1170};
1171
1172union mvpp2_prs_sram_entry {
1173 u32 word[MVPP2_PRS_SRAM_WORDS];
1174 u8 byte[MVPP2_PRS_SRAM_WORDS * 4];
1175};
1176
1177struct mvpp2_prs_entry {
1178 u32 index;
1179 union mvpp2_prs_tcam_entry tcam;
1180 union mvpp2_prs_sram_entry sram;
1181};
1182
1183struct mvpp2_prs_shadow {
1184 bool valid;
1185 bool finish;
1186
1187 /* Lookup ID */
1188 int lu;
1189
1190 /* User defined offset */
1191 int udf;
1192
1193 /* Result info */
1194 u32 ri;
1195 u32 ri_mask;
1196};
1197
1198struct mvpp2_cls_flow_entry {
1199 u32 index;
1200 u32 data[MVPP2_CLS_FLOWS_TBL_DATA_WORDS];
1201};
1202
1203struct mvpp2_cls_lookup_entry {
1204 u32 lkpid;
1205 u32 way;
1206 u32 data;
1207};
1208
1209struct mvpp2_bm_pool {
1210 /* Pool number in the range 0-7 */
1211 int id;
1212 enum mvpp2_bm_type type;
1213
1214 /* Buffer Pointers Pool External (BPPE) size */
1215 int size;
1216 /* Number of buffers for this pool */
1217 int buf_num;
1218 /* Pool buffer size */
1219 int buf_size;
1220 /* Packet size */
1221 int pkt_size;
1222
1223 /* BPPE virtual base address */
Stefan Roesefeb0b332017-02-15 12:46:18 +01001224 unsigned long *virt_addr;
Thomas Petazzonic49aff22017-02-20 10:27:51 +01001225 /* BPPE DMA base address */
1226 dma_addr_t dma_addr;
Stefan Roese96c19042016-02-10 07:22:10 +01001227
1228 /* Ports using BM pool */
1229 u32 port_map;
Stefan Roese96c19042016-02-10 07:22:10 +01001230};
1231
Stefan Roese96c19042016-02-10 07:22:10 +01001232/* Static declaractions */
1233
1234/* Number of RXQs used by single port */
1235static int rxq_number = MVPP2_DEFAULT_RXQ;
1236/* Number of TXQs used by single port */
1237static int txq_number = MVPP2_DEFAULT_TXQ;
1238
Stefan Roese38801d42017-02-24 10:12:41 +01001239static int base_id;
1240
Stefan Roese96c19042016-02-10 07:22:10 +01001241#define MVPP2_DRIVER_NAME "mvpp2"
1242#define MVPP2_DRIVER_VERSION "1.0"
1243
1244/*
1245 * U-Boot internal data, mostly uncached buffers for descriptors and data
1246 */
1247struct buffer_location {
1248 struct mvpp2_tx_desc *aggr_tx_descs;
1249 struct mvpp2_tx_desc *tx_descs;
1250 struct mvpp2_rx_desc *rx_descs;
Stefan Roesefeb0b332017-02-15 12:46:18 +01001251 unsigned long *bm_pool[MVPP2_BM_POOLS_NUM];
1252 unsigned long *rx_buffer[MVPP2_BM_LONG_BUF_NUM];
Stefan Roese96c19042016-02-10 07:22:10 +01001253 int first_rxq;
1254};
1255
1256/*
1257 * All 4 interfaces use the same global buffer, since only one interface
1258 * can be enabled at once
1259 */
1260static struct buffer_location buffer_loc;
Sven Auhagena50bca12020-07-01 17:43:43 +02001261static int buffer_loc_init;
Stefan Roese96c19042016-02-10 07:22:10 +01001262
1263/*
1264 * Page table entries are set to 1MB, or multiples of 1MB
1265 * (not < 1MB). driver uses less bd's so use 1MB bdspace.
1266 */
1267#define BD_SPACE (1 << 20)
1268
1269/* Utility/helper methods */
1270
1271static void mvpp2_write(struct mvpp2 *priv, u32 offset, u32 data)
1272{
1273 writel(data, priv->base + offset);
1274}
1275
1276static u32 mvpp2_read(struct mvpp2 *priv, u32 offset)
1277{
1278 return readl(priv->base + offset);
1279}
1280
Thomas Petazzonifb3a7bb2017-02-15 15:35:00 +01001281static void mvpp2_txdesc_dma_addr_set(struct mvpp2_port *port,
1282 struct mvpp2_tx_desc *tx_desc,
1283 dma_addr_t dma_addr)
1284{
Thomas Petazzoni56563ad2017-02-20 11:08:46 +01001285 if (port->priv->hw_version == MVPP21) {
1286 tx_desc->pp21.buf_dma_addr = dma_addr;
1287 } else {
1288 u64 val = (u64)dma_addr;
1289
1290 tx_desc->pp22.buf_dma_addr_ptp &= ~GENMASK_ULL(40, 0);
1291 tx_desc->pp22.buf_dma_addr_ptp |= val;
1292 }
Thomas Petazzonifb3a7bb2017-02-15 15:35:00 +01001293}
1294
1295static void mvpp2_txdesc_size_set(struct mvpp2_port *port,
1296 struct mvpp2_tx_desc *tx_desc,
1297 size_t size)
1298{
Thomas Petazzoni56563ad2017-02-20 11:08:46 +01001299 if (port->priv->hw_version == MVPP21)
1300 tx_desc->pp21.data_size = size;
1301 else
1302 tx_desc->pp22.data_size = size;
Thomas Petazzonifb3a7bb2017-02-15 15:35:00 +01001303}
1304
1305static void mvpp2_txdesc_txq_set(struct mvpp2_port *port,
1306 struct mvpp2_tx_desc *tx_desc,
1307 unsigned int txq)
1308{
Thomas Petazzoni56563ad2017-02-20 11:08:46 +01001309 if (port->priv->hw_version == MVPP21)
1310 tx_desc->pp21.phys_txq = txq;
1311 else
1312 tx_desc->pp22.phys_txq = txq;
Thomas Petazzonifb3a7bb2017-02-15 15:35:00 +01001313}
1314
1315static void mvpp2_txdesc_cmd_set(struct mvpp2_port *port,
1316 struct mvpp2_tx_desc *tx_desc,
1317 unsigned int command)
1318{
Thomas Petazzoni56563ad2017-02-20 11:08:46 +01001319 if (port->priv->hw_version == MVPP21)
1320 tx_desc->pp21.command = command;
1321 else
1322 tx_desc->pp22.command = command;
Thomas Petazzonifb3a7bb2017-02-15 15:35:00 +01001323}
1324
1325static void mvpp2_txdesc_offset_set(struct mvpp2_port *port,
1326 struct mvpp2_tx_desc *tx_desc,
1327 unsigned int offset)
1328{
Thomas Petazzoni56563ad2017-02-20 11:08:46 +01001329 if (port->priv->hw_version == MVPP21)
1330 tx_desc->pp21.packet_offset = offset;
1331 else
1332 tx_desc->pp22.packet_offset = offset;
Thomas Petazzonifb3a7bb2017-02-15 15:35:00 +01001333}
1334
1335static dma_addr_t mvpp2_rxdesc_dma_addr_get(struct mvpp2_port *port,
1336 struct mvpp2_rx_desc *rx_desc)
1337{
Thomas Petazzoni56563ad2017-02-20 11:08:46 +01001338 if (port->priv->hw_version == MVPP21)
1339 return rx_desc->pp21.buf_dma_addr;
1340 else
1341 return rx_desc->pp22.buf_dma_addr_key_hash & GENMASK_ULL(40, 0);
Thomas Petazzonifb3a7bb2017-02-15 15:35:00 +01001342}
1343
1344static unsigned long mvpp2_rxdesc_cookie_get(struct mvpp2_port *port,
1345 struct mvpp2_rx_desc *rx_desc)
1346{
Thomas Petazzoni56563ad2017-02-20 11:08:46 +01001347 if (port->priv->hw_version == MVPP21)
1348 return rx_desc->pp21.buf_cookie;
1349 else
1350 return rx_desc->pp22.buf_cookie_misc & GENMASK_ULL(40, 0);
Thomas Petazzonifb3a7bb2017-02-15 15:35:00 +01001351}
1352
1353static size_t mvpp2_rxdesc_size_get(struct mvpp2_port *port,
1354 struct mvpp2_rx_desc *rx_desc)
1355{
Thomas Petazzoni56563ad2017-02-20 11:08:46 +01001356 if (port->priv->hw_version == MVPP21)
1357 return rx_desc->pp21.data_size;
1358 else
1359 return rx_desc->pp22.data_size;
Thomas Petazzonifb3a7bb2017-02-15 15:35:00 +01001360}
1361
1362static u32 mvpp2_rxdesc_status_get(struct mvpp2_port *port,
1363 struct mvpp2_rx_desc *rx_desc)
1364{
Thomas Petazzoni56563ad2017-02-20 11:08:46 +01001365 if (port->priv->hw_version == MVPP21)
1366 return rx_desc->pp21.status;
1367 else
1368 return rx_desc->pp22.status;
Thomas Petazzonifb3a7bb2017-02-15 15:35:00 +01001369}
1370
Stefan Roese96c19042016-02-10 07:22:10 +01001371static void mvpp2_txq_inc_get(struct mvpp2_txq_pcpu *txq_pcpu)
1372{
1373 txq_pcpu->txq_get_index++;
1374 if (txq_pcpu->txq_get_index == txq_pcpu->size)
1375 txq_pcpu->txq_get_index = 0;
1376}
1377
1378/* Get number of physical egress port */
1379static inline int mvpp2_egress_port(struct mvpp2_port *port)
1380{
1381 return MVPP2_MAX_TCONT + port->id;
1382}
1383
1384/* Get number of physical TXQ */
1385static inline int mvpp2_txq_phys(int port, int txq)
1386{
1387 return (MVPP2_MAX_TCONT + port) * MVPP2_MAX_TXQ + txq;
1388}
1389
1390/* Parser configuration routines */
1391
1392/* Update parser tcam and sram hw entries */
1393static int mvpp2_prs_hw_write(struct mvpp2 *priv, struct mvpp2_prs_entry *pe)
1394{
1395 int i;
1396
1397 if (pe->index > MVPP2_PRS_TCAM_SRAM_SIZE - 1)
1398 return -EINVAL;
1399
1400 /* Clear entry invalidation bit */
1401 pe->tcam.word[MVPP2_PRS_TCAM_INV_WORD] &= ~MVPP2_PRS_TCAM_INV_MASK;
1402
1403 /* Write tcam index - indirect access */
1404 mvpp2_write(priv, MVPP2_PRS_TCAM_IDX_REG, pe->index);
1405 for (i = 0; i < MVPP2_PRS_TCAM_WORDS; i++)
1406 mvpp2_write(priv, MVPP2_PRS_TCAM_DATA_REG(i), pe->tcam.word[i]);
1407
1408 /* Write sram index - indirect access */
1409 mvpp2_write(priv, MVPP2_PRS_SRAM_IDX_REG, pe->index);
1410 for (i = 0; i < MVPP2_PRS_SRAM_WORDS; i++)
1411 mvpp2_write(priv, MVPP2_PRS_SRAM_DATA_REG(i), pe->sram.word[i]);
1412
1413 return 0;
1414}
1415
1416/* Read tcam entry from hw */
1417static int mvpp2_prs_hw_read(struct mvpp2 *priv, struct mvpp2_prs_entry *pe)
1418{
1419 int i;
1420
1421 if (pe->index > MVPP2_PRS_TCAM_SRAM_SIZE - 1)
1422 return -EINVAL;
1423
1424 /* Write tcam index - indirect access */
1425 mvpp2_write(priv, MVPP2_PRS_TCAM_IDX_REG, pe->index);
1426
1427 pe->tcam.word[MVPP2_PRS_TCAM_INV_WORD] = mvpp2_read(priv,
1428 MVPP2_PRS_TCAM_DATA_REG(MVPP2_PRS_TCAM_INV_WORD));
1429 if (pe->tcam.word[MVPP2_PRS_TCAM_INV_WORD] & MVPP2_PRS_TCAM_INV_MASK)
1430 return MVPP2_PRS_TCAM_ENTRY_INVALID;
1431
1432 for (i = 0; i < MVPP2_PRS_TCAM_WORDS; i++)
1433 pe->tcam.word[i] = mvpp2_read(priv, MVPP2_PRS_TCAM_DATA_REG(i));
1434
1435 /* Write sram index - indirect access */
1436 mvpp2_write(priv, MVPP2_PRS_SRAM_IDX_REG, pe->index);
1437 for (i = 0; i < MVPP2_PRS_SRAM_WORDS; i++)
1438 pe->sram.word[i] = mvpp2_read(priv, MVPP2_PRS_SRAM_DATA_REG(i));
1439
1440 return 0;
1441}
1442
1443/* Invalidate tcam hw entry */
1444static void mvpp2_prs_hw_inv(struct mvpp2 *priv, int index)
1445{
1446 /* Write index - indirect access */
1447 mvpp2_write(priv, MVPP2_PRS_TCAM_IDX_REG, index);
1448 mvpp2_write(priv, MVPP2_PRS_TCAM_DATA_REG(MVPP2_PRS_TCAM_INV_WORD),
1449 MVPP2_PRS_TCAM_INV_MASK);
1450}
1451
1452/* Enable shadow table entry and set its lookup ID */
1453static void mvpp2_prs_shadow_set(struct mvpp2 *priv, int index, int lu)
1454{
1455 priv->prs_shadow[index].valid = true;
1456 priv->prs_shadow[index].lu = lu;
1457}
1458
1459/* Update ri fields in shadow table entry */
1460static void mvpp2_prs_shadow_ri_set(struct mvpp2 *priv, int index,
1461 unsigned int ri, unsigned int ri_mask)
1462{
1463 priv->prs_shadow[index].ri_mask = ri_mask;
1464 priv->prs_shadow[index].ri = ri;
1465}
1466
1467/* Update lookup field in tcam sw entry */
1468static void mvpp2_prs_tcam_lu_set(struct mvpp2_prs_entry *pe, unsigned int lu)
1469{
1470 int enable_off = MVPP2_PRS_TCAM_EN_OFFS(MVPP2_PRS_TCAM_LU_BYTE);
1471
1472 pe->tcam.byte[MVPP2_PRS_TCAM_LU_BYTE] = lu;
1473 pe->tcam.byte[enable_off] = MVPP2_PRS_LU_MASK;
1474}
1475
1476/* Update mask for single port in tcam sw entry */
1477static void mvpp2_prs_tcam_port_set(struct mvpp2_prs_entry *pe,
1478 unsigned int port, bool add)
1479{
1480 int enable_off = MVPP2_PRS_TCAM_EN_OFFS(MVPP2_PRS_TCAM_PORT_BYTE);
1481
1482 if (add)
1483 pe->tcam.byte[enable_off] &= ~(1 << port);
1484 else
1485 pe->tcam.byte[enable_off] |= 1 << port;
1486}
1487
1488/* Update port map in tcam sw entry */
1489static void mvpp2_prs_tcam_port_map_set(struct mvpp2_prs_entry *pe,
1490 unsigned int ports)
1491{
1492 unsigned char port_mask = MVPP2_PRS_PORT_MASK;
1493 int enable_off = MVPP2_PRS_TCAM_EN_OFFS(MVPP2_PRS_TCAM_PORT_BYTE);
1494
1495 pe->tcam.byte[MVPP2_PRS_TCAM_PORT_BYTE] = 0;
1496 pe->tcam.byte[enable_off] &= ~port_mask;
1497 pe->tcam.byte[enable_off] |= ~ports & MVPP2_PRS_PORT_MASK;
1498}
1499
1500/* Obtain port map from tcam sw entry */
1501static unsigned int mvpp2_prs_tcam_port_map_get(struct mvpp2_prs_entry *pe)
1502{
1503 int enable_off = MVPP2_PRS_TCAM_EN_OFFS(MVPP2_PRS_TCAM_PORT_BYTE);
1504
1505 return ~(pe->tcam.byte[enable_off]) & MVPP2_PRS_PORT_MASK;
1506}
1507
1508/* Set byte of data and its enable bits in tcam sw entry */
1509static void mvpp2_prs_tcam_data_byte_set(struct mvpp2_prs_entry *pe,
1510 unsigned int offs, unsigned char byte,
1511 unsigned char enable)
1512{
1513 pe->tcam.byte[MVPP2_PRS_TCAM_DATA_BYTE(offs)] = byte;
1514 pe->tcam.byte[MVPP2_PRS_TCAM_DATA_BYTE_EN(offs)] = enable;
1515}
1516
1517/* Get byte of data and its enable bits from tcam sw entry */
1518static void mvpp2_prs_tcam_data_byte_get(struct mvpp2_prs_entry *pe,
1519 unsigned int offs, unsigned char *byte,
1520 unsigned char *enable)
1521{
1522 *byte = pe->tcam.byte[MVPP2_PRS_TCAM_DATA_BYTE(offs)];
1523 *enable = pe->tcam.byte[MVPP2_PRS_TCAM_DATA_BYTE_EN(offs)];
1524}
1525
1526/* Set ethertype in tcam sw entry */
1527static void mvpp2_prs_match_etype(struct mvpp2_prs_entry *pe, int offset,
1528 unsigned short ethertype)
1529{
1530 mvpp2_prs_tcam_data_byte_set(pe, offset + 0, ethertype >> 8, 0xff);
1531 mvpp2_prs_tcam_data_byte_set(pe, offset + 1, ethertype & 0xff, 0xff);
1532}
1533
1534/* Set bits in sram sw entry */
1535static void mvpp2_prs_sram_bits_set(struct mvpp2_prs_entry *pe, int bit_num,
1536 int val)
1537{
1538 pe->sram.byte[MVPP2_BIT_TO_BYTE(bit_num)] |= (val << (bit_num % 8));
1539}
1540
1541/* Clear bits in sram sw entry */
1542static void mvpp2_prs_sram_bits_clear(struct mvpp2_prs_entry *pe, int bit_num,
1543 int val)
1544{
1545 pe->sram.byte[MVPP2_BIT_TO_BYTE(bit_num)] &= ~(val << (bit_num % 8));
1546}
1547
1548/* Update ri bits in sram sw entry */
1549static void mvpp2_prs_sram_ri_update(struct mvpp2_prs_entry *pe,
1550 unsigned int bits, unsigned int mask)
1551{
1552 unsigned int i;
1553
1554 for (i = 0; i < MVPP2_PRS_SRAM_RI_CTRL_BITS; i++) {
1555 int ri_off = MVPP2_PRS_SRAM_RI_OFFS;
1556
1557 if (!(mask & BIT(i)))
1558 continue;
1559
1560 if (bits & BIT(i))
1561 mvpp2_prs_sram_bits_set(pe, ri_off + i, 1);
1562 else
1563 mvpp2_prs_sram_bits_clear(pe, ri_off + i, 1);
1564
1565 mvpp2_prs_sram_bits_set(pe, MVPP2_PRS_SRAM_RI_CTRL_OFFS + i, 1);
1566 }
1567}
1568
1569/* Update ai bits in sram sw entry */
1570static void mvpp2_prs_sram_ai_update(struct mvpp2_prs_entry *pe,
1571 unsigned int bits, unsigned int mask)
1572{
1573 unsigned int i;
1574 int ai_off = MVPP2_PRS_SRAM_AI_OFFS;
1575
1576 for (i = 0; i < MVPP2_PRS_SRAM_AI_CTRL_BITS; i++) {
1577
1578 if (!(mask & BIT(i)))
1579 continue;
1580
1581 if (bits & BIT(i))
1582 mvpp2_prs_sram_bits_set(pe, ai_off + i, 1);
1583 else
1584 mvpp2_prs_sram_bits_clear(pe, ai_off + i, 1);
1585
1586 mvpp2_prs_sram_bits_set(pe, MVPP2_PRS_SRAM_AI_CTRL_OFFS + i, 1);
1587 }
1588}
1589
1590/* Read ai bits from sram sw entry */
1591static int mvpp2_prs_sram_ai_get(struct mvpp2_prs_entry *pe)
1592{
1593 u8 bits;
1594 int ai_off = MVPP2_BIT_TO_BYTE(MVPP2_PRS_SRAM_AI_OFFS);
1595 int ai_en_off = ai_off + 1;
1596 int ai_shift = MVPP2_PRS_SRAM_AI_OFFS % 8;
1597
1598 bits = (pe->sram.byte[ai_off] >> ai_shift) |
1599 (pe->sram.byte[ai_en_off] << (8 - ai_shift));
1600
1601 return bits;
1602}
1603
1604/* In sram sw entry set lookup ID field of the tcam key to be used in the next
1605 * lookup interation
1606 */
1607static void mvpp2_prs_sram_next_lu_set(struct mvpp2_prs_entry *pe,
1608 unsigned int lu)
1609{
1610 int sram_next_off = MVPP2_PRS_SRAM_NEXT_LU_OFFS;
1611
1612 mvpp2_prs_sram_bits_clear(pe, sram_next_off,
1613 MVPP2_PRS_SRAM_NEXT_LU_MASK);
1614 mvpp2_prs_sram_bits_set(pe, sram_next_off, lu);
1615}
1616
1617/* In the sram sw entry set sign and value of the next lookup offset
1618 * and the offset value generated to the classifier
1619 */
1620static void mvpp2_prs_sram_shift_set(struct mvpp2_prs_entry *pe, int shift,
1621 unsigned int op)
1622{
1623 /* Set sign */
1624 if (shift < 0) {
1625 mvpp2_prs_sram_bits_set(pe, MVPP2_PRS_SRAM_SHIFT_SIGN_BIT, 1);
1626 shift = 0 - shift;
1627 } else {
1628 mvpp2_prs_sram_bits_clear(pe, MVPP2_PRS_SRAM_SHIFT_SIGN_BIT, 1);
1629 }
1630
1631 /* Set value */
1632 pe->sram.byte[MVPP2_BIT_TO_BYTE(MVPP2_PRS_SRAM_SHIFT_OFFS)] =
1633 (unsigned char)shift;
1634
1635 /* Reset and set operation */
1636 mvpp2_prs_sram_bits_clear(pe, MVPP2_PRS_SRAM_OP_SEL_SHIFT_OFFS,
1637 MVPP2_PRS_SRAM_OP_SEL_SHIFT_MASK);
1638 mvpp2_prs_sram_bits_set(pe, MVPP2_PRS_SRAM_OP_SEL_SHIFT_OFFS, op);
1639
1640 /* Set base offset as current */
1641 mvpp2_prs_sram_bits_clear(pe, MVPP2_PRS_SRAM_OP_SEL_BASE_OFFS, 1);
1642}
1643
1644/* In the sram sw entry set sign and value of the user defined offset
1645 * generated to the classifier
1646 */
1647static void mvpp2_prs_sram_offset_set(struct mvpp2_prs_entry *pe,
1648 unsigned int type, int offset,
1649 unsigned int op)
1650{
1651 /* Set sign */
1652 if (offset < 0) {
1653 mvpp2_prs_sram_bits_set(pe, MVPP2_PRS_SRAM_UDF_SIGN_BIT, 1);
1654 offset = 0 - offset;
1655 } else {
1656 mvpp2_prs_sram_bits_clear(pe, MVPP2_PRS_SRAM_UDF_SIGN_BIT, 1);
1657 }
1658
1659 /* Set value */
1660 mvpp2_prs_sram_bits_clear(pe, MVPP2_PRS_SRAM_UDF_OFFS,
1661 MVPP2_PRS_SRAM_UDF_MASK);
1662 mvpp2_prs_sram_bits_set(pe, MVPP2_PRS_SRAM_UDF_OFFS, offset);
1663 pe->sram.byte[MVPP2_BIT_TO_BYTE(MVPP2_PRS_SRAM_UDF_OFFS +
1664 MVPP2_PRS_SRAM_UDF_BITS)] &=
1665 ~(MVPP2_PRS_SRAM_UDF_MASK >> (8 - (MVPP2_PRS_SRAM_UDF_OFFS % 8)));
1666 pe->sram.byte[MVPP2_BIT_TO_BYTE(MVPP2_PRS_SRAM_UDF_OFFS +
1667 MVPP2_PRS_SRAM_UDF_BITS)] |=
1668 (offset >> (8 - (MVPP2_PRS_SRAM_UDF_OFFS % 8)));
1669
1670 /* Set offset type */
1671 mvpp2_prs_sram_bits_clear(pe, MVPP2_PRS_SRAM_UDF_TYPE_OFFS,
1672 MVPP2_PRS_SRAM_UDF_TYPE_MASK);
1673 mvpp2_prs_sram_bits_set(pe, MVPP2_PRS_SRAM_UDF_TYPE_OFFS, type);
1674
1675 /* Set offset operation */
1676 mvpp2_prs_sram_bits_clear(pe, MVPP2_PRS_SRAM_OP_SEL_UDF_OFFS,
1677 MVPP2_PRS_SRAM_OP_SEL_UDF_MASK);
1678 mvpp2_prs_sram_bits_set(pe, MVPP2_PRS_SRAM_OP_SEL_UDF_OFFS, op);
1679
1680 pe->sram.byte[MVPP2_BIT_TO_BYTE(MVPP2_PRS_SRAM_OP_SEL_UDF_OFFS +
1681 MVPP2_PRS_SRAM_OP_SEL_UDF_BITS)] &=
1682 ~(MVPP2_PRS_SRAM_OP_SEL_UDF_MASK >>
1683 (8 - (MVPP2_PRS_SRAM_OP_SEL_UDF_OFFS % 8)));
1684
1685 pe->sram.byte[MVPP2_BIT_TO_BYTE(MVPP2_PRS_SRAM_OP_SEL_UDF_OFFS +
1686 MVPP2_PRS_SRAM_OP_SEL_UDF_BITS)] |=
1687 (op >> (8 - (MVPP2_PRS_SRAM_OP_SEL_UDF_OFFS % 8)));
1688
1689 /* Set base offset as current */
1690 mvpp2_prs_sram_bits_clear(pe, MVPP2_PRS_SRAM_OP_SEL_BASE_OFFS, 1);
1691}
1692
1693/* Find parser flow entry */
1694static struct mvpp2_prs_entry *mvpp2_prs_flow_find(struct mvpp2 *priv, int flow)
1695{
1696 struct mvpp2_prs_entry *pe;
1697 int tid;
1698
1699 pe = kzalloc(sizeof(*pe), GFP_KERNEL);
1700 if (!pe)
1701 return NULL;
1702 mvpp2_prs_tcam_lu_set(pe, MVPP2_PRS_LU_FLOWS);
1703
1704 /* Go through the all entires with MVPP2_PRS_LU_FLOWS */
1705 for (tid = MVPP2_PRS_TCAM_SRAM_SIZE - 1; tid >= 0; tid--) {
1706 u8 bits;
1707
1708 if (!priv->prs_shadow[tid].valid ||
1709 priv->prs_shadow[tid].lu != MVPP2_PRS_LU_FLOWS)
1710 continue;
1711
1712 pe->index = tid;
1713 mvpp2_prs_hw_read(priv, pe);
1714 bits = mvpp2_prs_sram_ai_get(pe);
1715
1716 /* Sram store classification lookup ID in AI bits [5:0] */
1717 if ((bits & MVPP2_PRS_FLOW_ID_MASK) == flow)
1718 return pe;
1719 }
1720 kfree(pe);
1721
1722 return NULL;
1723}
1724
1725/* Return first free tcam index, seeking from start to end */
1726static int mvpp2_prs_tcam_first_free(struct mvpp2 *priv, unsigned char start,
1727 unsigned char end)
1728{
1729 int tid;
1730
1731 if (start > end)
1732 swap(start, end);
1733
1734 if (end >= MVPP2_PRS_TCAM_SRAM_SIZE)
1735 end = MVPP2_PRS_TCAM_SRAM_SIZE - 1;
1736
1737 for (tid = start; tid <= end; tid++) {
1738 if (!priv->prs_shadow[tid].valid)
1739 return tid;
1740 }
1741
1742 return -EINVAL;
1743}
1744
1745/* Enable/disable dropping all mac da's */
1746static void mvpp2_prs_mac_drop_all_set(struct mvpp2 *priv, int port, bool add)
1747{
1748 struct mvpp2_prs_entry pe;
1749
1750 if (priv->prs_shadow[MVPP2_PE_DROP_ALL].valid) {
1751 /* Entry exist - update port only */
1752 pe.index = MVPP2_PE_DROP_ALL;
1753 mvpp2_prs_hw_read(priv, &pe);
1754 } else {
1755 /* Entry doesn't exist - create new */
1756 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
1757 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_MAC);
1758 pe.index = MVPP2_PE_DROP_ALL;
1759
1760 /* Non-promiscuous mode for all ports - DROP unknown packets */
1761 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_DROP_MASK,
1762 MVPP2_PRS_RI_DROP_MASK);
1763
1764 mvpp2_prs_sram_bits_set(&pe, MVPP2_PRS_SRAM_LU_GEN_BIT, 1);
1765 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_FLOWS);
1766
1767 /* Update shadow table */
1768 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_MAC);
1769
1770 /* Mask all ports */
1771 mvpp2_prs_tcam_port_map_set(&pe, 0);
1772 }
1773
1774 /* Update port mask */
1775 mvpp2_prs_tcam_port_set(&pe, port, add);
1776
1777 mvpp2_prs_hw_write(priv, &pe);
1778}
1779
1780/* Set port to promiscuous mode */
1781static void mvpp2_prs_mac_promisc_set(struct mvpp2 *priv, int port, bool add)
1782{
1783 struct mvpp2_prs_entry pe;
1784
1785 /* Promiscuous mode - Accept unknown packets */
1786
1787 if (priv->prs_shadow[MVPP2_PE_MAC_PROMISCUOUS].valid) {
1788 /* Entry exist - update port only */
1789 pe.index = MVPP2_PE_MAC_PROMISCUOUS;
1790 mvpp2_prs_hw_read(priv, &pe);
1791 } else {
1792 /* Entry doesn't exist - create new */
1793 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
1794 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_MAC);
1795 pe.index = MVPP2_PE_MAC_PROMISCUOUS;
1796
1797 /* Continue - set next lookup */
1798 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_DSA);
1799
1800 /* Set result info bits */
1801 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L2_UCAST,
1802 MVPP2_PRS_RI_L2_CAST_MASK);
1803
1804 /* Shift to ethertype */
1805 mvpp2_prs_sram_shift_set(&pe, 2 * ETH_ALEN,
1806 MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
1807
1808 /* Mask all ports */
1809 mvpp2_prs_tcam_port_map_set(&pe, 0);
1810
1811 /* Update shadow table */
1812 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_MAC);
1813 }
1814
1815 /* Update port mask */
1816 mvpp2_prs_tcam_port_set(&pe, port, add);
1817
1818 mvpp2_prs_hw_write(priv, &pe);
1819}
1820
1821/* Accept multicast */
1822static void mvpp2_prs_mac_multi_set(struct mvpp2 *priv, int port, int index,
1823 bool add)
1824{
1825 struct mvpp2_prs_entry pe;
1826 unsigned char da_mc;
1827
1828 /* Ethernet multicast address first byte is
1829 * 0x01 for IPv4 and 0x33 for IPv6
1830 */
1831 da_mc = (index == MVPP2_PE_MAC_MC_ALL) ? 0x01 : 0x33;
1832
1833 if (priv->prs_shadow[index].valid) {
1834 /* Entry exist - update port only */
1835 pe.index = index;
1836 mvpp2_prs_hw_read(priv, &pe);
1837 } else {
1838 /* Entry doesn't exist - create new */
1839 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
1840 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_MAC);
1841 pe.index = index;
1842
1843 /* Continue - set next lookup */
1844 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_DSA);
1845
1846 /* Set result info bits */
1847 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L2_MCAST,
1848 MVPP2_PRS_RI_L2_CAST_MASK);
1849
1850 /* Update tcam entry data first byte */
1851 mvpp2_prs_tcam_data_byte_set(&pe, 0, da_mc, 0xff);
1852
1853 /* Shift to ethertype */
1854 mvpp2_prs_sram_shift_set(&pe, 2 * ETH_ALEN,
1855 MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
1856
1857 /* Mask all ports */
1858 mvpp2_prs_tcam_port_map_set(&pe, 0);
1859
1860 /* Update shadow table */
1861 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_MAC);
1862 }
1863
1864 /* Update port mask */
1865 mvpp2_prs_tcam_port_set(&pe, port, add);
1866
1867 mvpp2_prs_hw_write(priv, &pe);
1868}
1869
1870/* Parser per-port initialization */
1871static void mvpp2_prs_hw_port_init(struct mvpp2 *priv, int port, int lu_first,
1872 int lu_max, int offset)
1873{
1874 u32 val;
1875
1876 /* Set lookup ID */
1877 val = mvpp2_read(priv, MVPP2_PRS_INIT_LOOKUP_REG);
1878 val &= ~MVPP2_PRS_PORT_LU_MASK(port);
1879 val |= MVPP2_PRS_PORT_LU_VAL(port, lu_first);
1880 mvpp2_write(priv, MVPP2_PRS_INIT_LOOKUP_REG, val);
1881
1882 /* Set maximum number of loops for packet received from port */
1883 val = mvpp2_read(priv, MVPP2_PRS_MAX_LOOP_REG(port));
1884 val &= ~MVPP2_PRS_MAX_LOOP_MASK(port);
1885 val |= MVPP2_PRS_MAX_LOOP_VAL(port, lu_max);
1886 mvpp2_write(priv, MVPP2_PRS_MAX_LOOP_REG(port), val);
1887
1888 /* Set initial offset for packet header extraction for the first
1889 * searching loop
1890 */
1891 val = mvpp2_read(priv, MVPP2_PRS_INIT_OFFS_REG(port));
1892 val &= ~MVPP2_PRS_INIT_OFF_MASK(port);
1893 val |= MVPP2_PRS_INIT_OFF_VAL(port, offset);
1894 mvpp2_write(priv, MVPP2_PRS_INIT_OFFS_REG(port), val);
1895}
1896
1897/* Default flow entries initialization for all ports */
1898static void mvpp2_prs_def_flow_init(struct mvpp2 *priv)
1899{
1900 struct mvpp2_prs_entry pe;
1901 int port;
1902
1903 for (port = 0; port < MVPP2_MAX_PORTS; port++) {
1904 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
1905 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_FLOWS);
1906 pe.index = MVPP2_PE_FIRST_DEFAULT_FLOW - port;
1907
1908 /* Mask all ports */
1909 mvpp2_prs_tcam_port_map_set(&pe, 0);
1910
1911 /* Set flow ID*/
1912 mvpp2_prs_sram_ai_update(&pe, port, MVPP2_PRS_FLOW_ID_MASK);
1913 mvpp2_prs_sram_bits_set(&pe, MVPP2_PRS_SRAM_LU_DONE_BIT, 1);
1914
1915 /* Update shadow table and hw entry */
1916 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_FLOWS);
1917 mvpp2_prs_hw_write(priv, &pe);
1918 }
1919}
1920
1921/* Set default entry for Marvell Header field */
1922static void mvpp2_prs_mh_init(struct mvpp2 *priv)
1923{
1924 struct mvpp2_prs_entry pe;
1925
1926 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
1927
1928 pe.index = MVPP2_PE_MH_DEFAULT;
1929 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_MH);
1930 mvpp2_prs_sram_shift_set(&pe, MVPP2_MH_SIZE,
1931 MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
1932 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_MAC);
1933
1934 /* Unmask all ports */
1935 mvpp2_prs_tcam_port_map_set(&pe, MVPP2_PRS_PORT_MASK);
1936
1937 /* Update shadow table and hw entry */
1938 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_MH);
1939 mvpp2_prs_hw_write(priv, &pe);
1940}
1941
1942/* Set default entires (place holder) for promiscuous, non-promiscuous and
1943 * multicast MAC addresses
1944 */
1945static void mvpp2_prs_mac_init(struct mvpp2 *priv)
1946{
1947 struct mvpp2_prs_entry pe;
1948
1949 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
1950
1951 /* Non-promiscuous mode for all ports - DROP unknown packets */
1952 pe.index = MVPP2_PE_MAC_NON_PROMISCUOUS;
1953 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_MAC);
1954
1955 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_DROP_MASK,
1956 MVPP2_PRS_RI_DROP_MASK);
1957 mvpp2_prs_sram_bits_set(&pe, MVPP2_PRS_SRAM_LU_GEN_BIT, 1);
1958 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_FLOWS);
1959
1960 /* Unmask all ports */
1961 mvpp2_prs_tcam_port_map_set(&pe, MVPP2_PRS_PORT_MASK);
1962
1963 /* Update shadow table and hw entry */
1964 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_MAC);
1965 mvpp2_prs_hw_write(priv, &pe);
1966
1967 /* place holders only - no ports */
1968 mvpp2_prs_mac_drop_all_set(priv, 0, false);
1969 mvpp2_prs_mac_promisc_set(priv, 0, false);
1970 mvpp2_prs_mac_multi_set(priv, MVPP2_PE_MAC_MC_ALL, 0, false);
1971 mvpp2_prs_mac_multi_set(priv, MVPP2_PE_MAC_MC_IP6, 0, false);
1972}
1973
1974/* Match basic ethertypes */
1975static int mvpp2_prs_etype_init(struct mvpp2 *priv)
1976{
1977 struct mvpp2_prs_entry pe;
1978 int tid;
1979
1980 /* Ethertype: PPPoE */
1981 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
1982 MVPP2_PE_LAST_FREE_TID);
1983 if (tid < 0)
1984 return tid;
1985
1986 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
1987 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_L2);
1988 pe.index = tid;
1989
1990 mvpp2_prs_match_etype(&pe, 0, PROT_PPP_SES);
1991
1992 mvpp2_prs_sram_shift_set(&pe, MVPP2_PPPOE_HDR_SIZE,
1993 MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
1994 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_PPPOE);
1995 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_PPPOE_MASK,
1996 MVPP2_PRS_RI_PPPOE_MASK);
1997
1998 /* Update shadow table and hw entry */
1999 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_L2);
2000 priv->prs_shadow[pe.index].udf = MVPP2_PRS_UDF_L2_DEF;
2001 priv->prs_shadow[pe.index].finish = false;
2002 mvpp2_prs_shadow_ri_set(priv, pe.index, MVPP2_PRS_RI_PPPOE_MASK,
2003 MVPP2_PRS_RI_PPPOE_MASK);
2004 mvpp2_prs_hw_write(priv, &pe);
2005
2006 /* Ethertype: ARP */
2007 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
2008 MVPP2_PE_LAST_FREE_TID);
2009 if (tid < 0)
2010 return tid;
2011
2012 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
2013 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_L2);
2014 pe.index = tid;
2015
2016 mvpp2_prs_match_etype(&pe, 0, PROT_ARP);
2017
2018 /* Generate flow in the next iteration*/
2019 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_FLOWS);
2020 mvpp2_prs_sram_bits_set(&pe, MVPP2_PRS_SRAM_LU_GEN_BIT, 1);
2021 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L3_ARP,
2022 MVPP2_PRS_RI_L3_PROTO_MASK);
2023 /* Set L3 offset */
2024 mvpp2_prs_sram_offset_set(&pe, MVPP2_PRS_SRAM_UDF_TYPE_L3,
2025 MVPP2_ETH_TYPE_LEN,
2026 MVPP2_PRS_SRAM_OP_SEL_UDF_ADD);
2027
2028 /* Update shadow table and hw entry */
2029 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_L2);
2030 priv->prs_shadow[pe.index].udf = MVPP2_PRS_UDF_L2_DEF;
2031 priv->prs_shadow[pe.index].finish = true;
2032 mvpp2_prs_shadow_ri_set(priv, pe.index, MVPP2_PRS_RI_L3_ARP,
2033 MVPP2_PRS_RI_L3_PROTO_MASK);
2034 mvpp2_prs_hw_write(priv, &pe);
2035
2036 /* Ethertype: LBTD */
2037 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
2038 MVPP2_PE_LAST_FREE_TID);
2039 if (tid < 0)
2040 return tid;
2041
2042 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
2043 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_L2);
2044 pe.index = tid;
2045
2046 mvpp2_prs_match_etype(&pe, 0, MVPP2_IP_LBDT_TYPE);
2047
2048 /* Generate flow in the next iteration*/
2049 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_FLOWS);
2050 mvpp2_prs_sram_bits_set(&pe, MVPP2_PRS_SRAM_LU_GEN_BIT, 1);
2051 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_CPU_CODE_RX_SPEC |
2052 MVPP2_PRS_RI_UDF3_RX_SPECIAL,
2053 MVPP2_PRS_RI_CPU_CODE_MASK |
2054 MVPP2_PRS_RI_UDF3_MASK);
2055 /* Set L3 offset */
2056 mvpp2_prs_sram_offset_set(&pe, MVPP2_PRS_SRAM_UDF_TYPE_L3,
2057 MVPP2_ETH_TYPE_LEN,
2058 MVPP2_PRS_SRAM_OP_SEL_UDF_ADD);
2059
2060 /* Update shadow table and hw entry */
2061 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_L2);
2062 priv->prs_shadow[pe.index].udf = MVPP2_PRS_UDF_L2_DEF;
2063 priv->prs_shadow[pe.index].finish = true;
2064 mvpp2_prs_shadow_ri_set(priv, pe.index, MVPP2_PRS_RI_CPU_CODE_RX_SPEC |
2065 MVPP2_PRS_RI_UDF3_RX_SPECIAL,
2066 MVPP2_PRS_RI_CPU_CODE_MASK |
2067 MVPP2_PRS_RI_UDF3_MASK);
2068 mvpp2_prs_hw_write(priv, &pe);
2069
2070 /* Ethertype: IPv4 without options */
2071 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
2072 MVPP2_PE_LAST_FREE_TID);
2073 if (tid < 0)
2074 return tid;
2075
2076 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
2077 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_L2);
2078 pe.index = tid;
2079
2080 mvpp2_prs_match_etype(&pe, 0, PROT_IP);
2081 mvpp2_prs_tcam_data_byte_set(&pe, MVPP2_ETH_TYPE_LEN,
2082 MVPP2_PRS_IPV4_HEAD | MVPP2_PRS_IPV4_IHL,
2083 MVPP2_PRS_IPV4_HEAD_MASK |
2084 MVPP2_PRS_IPV4_IHL_MASK);
2085
2086 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_IP4);
2087 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L3_IP4,
2088 MVPP2_PRS_RI_L3_PROTO_MASK);
2089 /* Skip eth_type + 4 bytes of IP header */
2090 mvpp2_prs_sram_shift_set(&pe, MVPP2_ETH_TYPE_LEN + 4,
2091 MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
2092 /* Set L3 offset */
2093 mvpp2_prs_sram_offset_set(&pe, MVPP2_PRS_SRAM_UDF_TYPE_L3,
2094 MVPP2_ETH_TYPE_LEN,
2095 MVPP2_PRS_SRAM_OP_SEL_UDF_ADD);
2096
2097 /* Update shadow table and hw entry */
2098 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_L2);
2099 priv->prs_shadow[pe.index].udf = MVPP2_PRS_UDF_L2_DEF;
2100 priv->prs_shadow[pe.index].finish = false;
2101 mvpp2_prs_shadow_ri_set(priv, pe.index, MVPP2_PRS_RI_L3_IP4,
2102 MVPP2_PRS_RI_L3_PROTO_MASK);
2103 mvpp2_prs_hw_write(priv, &pe);
2104
2105 /* Ethertype: IPv4 with options */
2106 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
2107 MVPP2_PE_LAST_FREE_TID);
2108 if (tid < 0)
2109 return tid;
2110
2111 pe.index = tid;
2112
2113 /* Clear tcam data before updating */
2114 pe.tcam.byte[MVPP2_PRS_TCAM_DATA_BYTE(MVPP2_ETH_TYPE_LEN)] = 0x0;
2115 pe.tcam.byte[MVPP2_PRS_TCAM_DATA_BYTE_EN(MVPP2_ETH_TYPE_LEN)] = 0x0;
2116
2117 mvpp2_prs_tcam_data_byte_set(&pe, MVPP2_ETH_TYPE_LEN,
2118 MVPP2_PRS_IPV4_HEAD,
2119 MVPP2_PRS_IPV4_HEAD_MASK);
2120
2121 /* Clear ri before updating */
2122 pe.sram.word[MVPP2_PRS_SRAM_RI_WORD] = 0x0;
2123 pe.sram.word[MVPP2_PRS_SRAM_RI_CTRL_WORD] = 0x0;
2124 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L3_IP4_OPT,
2125 MVPP2_PRS_RI_L3_PROTO_MASK);
2126
2127 /* Update shadow table and hw entry */
2128 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_L2);
2129 priv->prs_shadow[pe.index].udf = MVPP2_PRS_UDF_L2_DEF;
2130 priv->prs_shadow[pe.index].finish = false;
2131 mvpp2_prs_shadow_ri_set(priv, pe.index, MVPP2_PRS_RI_L3_IP4_OPT,
2132 MVPP2_PRS_RI_L3_PROTO_MASK);
2133 mvpp2_prs_hw_write(priv, &pe);
2134
2135 /* Ethertype: IPv6 without options */
2136 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
2137 MVPP2_PE_LAST_FREE_TID);
2138 if (tid < 0)
2139 return tid;
2140
2141 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
2142 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_L2);
2143 pe.index = tid;
2144
2145 mvpp2_prs_match_etype(&pe, 0, PROT_IPV6);
2146
2147 /* Skip DIP of IPV6 header */
2148 mvpp2_prs_sram_shift_set(&pe, MVPP2_ETH_TYPE_LEN + 8 +
2149 MVPP2_MAX_L3_ADDR_SIZE,
2150 MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
2151 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_IP6);
2152 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L3_IP6,
2153 MVPP2_PRS_RI_L3_PROTO_MASK);
2154 /* Set L3 offset */
2155 mvpp2_prs_sram_offset_set(&pe, MVPP2_PRS_SRAM_UDF_TYPE_L3,
2156 MVPP2_ETH_TYPE_LEN,
2157 MVPP2_PRS_SRAM_OP_SEL_UDF_ADD);
2158
2159 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_L2);
2160 priv->prs_shadow[pe.index].udf = MVPP2_PRS_UDF_L2_DEF;
2161 priv->prs_shadow[pe.index].finish = false;
2162 mvpp2_prs_shadow_ri_set(priv, pe.index, MVPP2_PRS_RI_L3_IP6,
2163 MVPP2_PRS_RI_L3_PROTO_MASK);
2164 mvpp2_prs_hw_write(priv, &pe);
2165
2166 /* Default entry for MVPP2_PRS_LU_L2 - Unknown ethtype */
2167 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
2168 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_L2);
2169 pe.index = MVPP2_PE_ETH_TYPE_UN;
2170
2171 /* Unmask all ports */
2172 mvpp2_prs_tcam_port_map_set(&pe, MVPP2_PRS_PORT_MASK);
2173
2174 /* Generate flow in the next iteration*/
2175 mvpp2_prs_sram_bits_set(&pe, MVPP2_PRS_SRAM_LU_GEN_BIT, 1);
2176 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_FLOWS);
2177 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L3_UN,
2178 MVPP2_PRS_RI_L3_PROTO_MASK);
2179 /* Set L3 offset even it's unknown L3 */
2180 mvpp2_prs_sram_offset_set(&pe, MVPP2_PRS_SRAM_UDF_TYPE_L3,
2181 MVPP2_ETH_TYPE_LEN,
2182 MVPP2_PRS_SRAM_OP_SEL_UDF_ADD);
2183
2184 /* Update shadow table and hw entry */
2185 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_L2);
2186 priv->prs_shadow[pe.index].udf = MVPP2_PRS_UDF_L2_DEF;
2187 priv->prs_shadow[pe.index].finish = true;
2188 mvpp2_prs_shadow_ri_set(priv, pe.index, MVPP2_PRS_RI_L3_UN,
2189 MVPP2_PRS_RI_L3_PROTO_MASK);
2190 mvpp2_prs_hw_write(priv, &pe);
2191
2192 return 0;
2193}
2194
2195/* Parser default initialization */
2196static int mvpp2_prs_default_init(struct udevice *dev,
2197 struct mvpp2 *priv)
2198{
2199 int err, index, i;
2200
2201 /* Enable tcam table */
2202 mvpp2_write(priv, MVPP2_PRS_TCAM_CTRL_REG, MVPP2_PRS_TCAM_EN_MASK);
2203
2204 /* Clear all tcam and sram entries */
2205 for (index = 0; index < MVPP2_PRS_TCAM_SRAM_SIZE; index++) {
2206 mvpp2_write(priv, MVPP2_PRS_TCAM_IDX_REG, index);
2207 for (i = 0; i < MVPP2_PRS_TCAM_WORDS; i++)
2208 mvpp2_write(priv, MVPP2_PRS_TCAM_DATA_REG(i), 0);
2209
2210 mvpp2_write(priv, MVPP2_PRS_SRAM_IDX_REG, index);
2211 for (i = 0; i < MVPP2_PRS_SRAM_WORDS; i++)
2212 mvpp2_write(priv, MVPP2_PRS_SRAM_DATA_REG(i), 0);
2213 }
2214
2215 /* Invalidate all tcam entries */
2216 for (index = 0; index < MVPP2_PRS_TCAM_SRAM_SIZE; index++)
2217 mvpp2_prs_hw_inv(priv, index);
2218
2219 priv->prs_shadow = devm_kcalloc(dev, MVPP2_PRS_TCAM_SRAM_SIZE,
2220 sizeof(struct mvpp2_prs_shadow),
2221 GFP_KERNEL);
2222 if (!priv->prs_shadow)
2223 return -ENOMEM;
2224
2225 /* Always start from lookup = 0 */
2226 for (index = 0; index < MVPP2_MAX_PORTS; index++)
2227 mvpp2_prs_hw_port_init(priv, index, MVPP2_PRS_LU_MH,
2228 MVPP2_PRS_PORT_LU_MAX, 0);
2229
2230 mvpp2_prs_def_flow_init(priv);
2231
2232 mvpp2_prs_mh_init(priv);
2233
2234 mvpp2_prs_mac_init(priv);
2235
2236 err = mvpp2_prs_etype_init(priv);
2237 if (err)
2238 return err;
2239
2240 return 0;
2241}
2242
2243/* Compare MAC DA with tcam entry data */
2244static bool mvpp2_prs_mac_range_equals(struct mvpp2_prs_entry *pe,
2245 const u8 *da, unsigned char *mask)
2246{
2247 unsigned char tcam_byte, tcam_mask;
2248 int index;
2249
2250 for (index = 0; index < ETH_ALEN; index++) {
2251 mvpp2_prs_tcam_data_byte_get(pe, index, &tcam_byte, &tcam_mask);
2252 if (tcam_mask != mask[index])
2253 return false;
2254
2255 if ((tcam_mask & tcam_byte) != (da[index] & mask[index]))
2256 return false;
2257 }
2258
2259 return true;
2260}
2261
2262/* Find tcam entry with matched pair <MAC DA, port> */
2263static struct mvpp2_prs_entry *
2264mvpp2_prs_mac_da_range_find(struct mvpp2 *priv, int pmap, const u8 *da,
2265 unsigned char *mask, int udf_type)
2266{
2267 struct mvpp2_prs_entry *pe;
2268 int tid;
2269
2270 pe = kzalloc(sizeof(*pe), GFP_KERNEL);
2271 if (!pe)
2272 return NULL;
2273 mvpp2_prs_tcam_lu_set(pe, MVPP2_PRS_LU_MAC);
2274
2275 /* Go through the all entires with MVPP2_PRS_LU_MAC */
2276 for (tid = MVPP2_PE_FIRST_FREE_TID;
2277 tid <= MVPP2_PE_LAST_FREE_TID; tid++) {
2278 unsigned int entry_pmap;
2279
2280 if (!priv->prs_shadow[tid].valid ||
2281 (priv->prs_shadow[tid].lu != MVPP2_PRS_LU_MAC) ||
2282 (priv->prs_shadow[tid].udf != udf_type))
2283 continue;
2284
2285 pe->index = tid;
2286 mvpp2_prs_hw_read(priv, pe);
2287 entry_pmap = mvpp2_prs_tcam_port_map_get(pe);
2288
2289 if (mvpp2_prs_mac_range_equals(pe, da, mask) &&
2290 entry_pmap == pmap)
2291 return pe;
2292 }
2293 kfree(pe);
2294
2295 return NULL;
2296}
2297
2298/* Update parser's mac da entry */
2299static int mvpp2_prs_mac_da_accept(struct mvpp2 *priv, int port,
2300 const u8 *da, bool add)
2301{
2302 struct mvpp2_prs_entry *pe;
2303 unsigned int pmap, len, ri;
2304 unsigned char mask[ETH_ALEN] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
2305 int tid;
2306
2307 /* Scan TCAM and see if entry with this <MAC DA, port> already exist */
2308 pe = mvpp2_prs_mac_da_range_find(priv, (1 << port), da, mask,
2309 MVPP2_PRS_UDF_MAC_DEF);
2310
2311 /* No such entry */
2312 if (!pe) {
2313 if (!add)
2314 return 0;
2315
2316 /* Create new TCAM entry */
2317 /* Find first range mac entry*/
2318 for (tid = MVPP2_PE_FIRST_FREE_TID;
2319 tid <= MVPP2_PE_LAST_FREE_TID; tid++)
2320 if (priv->prs_shadow[tid].valid &&
2321 (priv->prs_shadow[tid].lu == MVPP2_PRS_LU_MAC) &&
2322 (priv->prs_shadow[tid].udf ==
2323 MVPP2_PRS_UDF_MAC_RANGE))
2324 break;
2325
2326 /* Go through the all entries from first to last */
2327 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
2328 tid - 1);
2329 if (tid < 0)
2330 return tid;
2331
2332 pe = kzalloc(sizeof(*pe), GFP_KERNEL);
2333 if (!pe)
2334 return -1;
2335 mvpp2_prs_tcam_lu_set(pe, MVPP2_PRS_LU_MAC);
2336 pe->index = tid;
2337
2338 /* Mask all ports */
2339 mvpp2_prs_tcam_port_map_set(pe, 0);
2340 }
2341
2342 /* Update port mask */
2343 mvpp2_prs_tcam_port_set(pe, port, add);
2344
2345 /* Invalidate the entry if no ports are left enabled */
2346 pmap = mvpp2_prs_tcam_port_map_get(pe);
2347 if (pmap == 0) {
2348 if (add) {
2349 kfree(pe);
2350 return -1;
2351 }
2352 mvpp2_prs_hw_inv(priv, pe->index);
2353 priv->prs_shadow[pe->index].valid = false;
2354 kfree(pe);
2355 return 0;
2356 }
2357
2358 /* Continue - set next lookup */
2359 mvpp2_prs_sram_next_lu_set(pe, MVPP2_PRS_LU_DSA);
2360
2361 /* Set match on DA */
2362 len = ETH_ALEN;
2363 while (len--)
2364 mvpp2_prs_tcam_data_byte_set(pe, len, da[len], 0xff);
2365
2366 /* Set result info bits */
2367 ri = MVPP2_PRS_RI_L2_UCAST | MVPP2_PRS_RI_MAC_ME_MASK;
2368
2369 mvpp2_prs_sram_ri_update(pe, ri, MVPP2_PRS_RI_L2_CAST_MASK |
2370 MVPP2_PRS_RI_MAC_ME_MASK);
2371 mvpp2_prs_shadow_ri_set(priv, pe->index, ri, MVPP2_PRS_RI_L2_CAST_MASK |
2372 MVPP2_PRS_RI_MAC_ME_MASK);
2373
2374 /* Shift to ethertype */
2375 mvpp2_prs_sram_shift_set(pe, 2 * ETH_ALEN,
2376 MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
2377
2378 /* Update shadow table and hw entry */
2379 priv->prs_shadow[pe->index].udf = MVPP2_PRS_UDF_MAC_DEF;
2380 mvpp2_prs_shadow_set(priv, pe->index, MVPP2_PRS_LU_MAC);
2381 mvpp2_prs_hw_write(priv, pe);
2382
2383 kfree(pe);
2384
2385 return 0;
2386}
2387
2388static int mvpp2_prs_update_mac_da(struct mvpp2_port *port, const u8 *da)
2389{
2390 int err;
2391
2392 /* Remove old parser entry */
2393 err = mvpp2_prs_mac_da_accept(port->priv, port->id, port->dev_addr,
2394 false);
2395 if (err)
2396 return err;
2397
2398 /* Add new parser entry */
2399 err = mvpp2_prs_mac_da_accept(port->priv, port->id, da, true);
2400 if (err)
2401 return err;
2402
2403 /* Set addr in the device */
2404 memcpy(port->dev_addr, da, ETH_ALEN);
2405
2406 return 0;
2407}
2408
2409/* Set prs flow for the port */
2410static int mvpp2_prs_def_flow(struct mvpp2_port *port)
2411{
2412 struct mvpp2_prs_entry *pe;
2413 int tid;
2414
2415 pe = mvpp2_prs_flow_find(port->priv, port->id);
2416
2417 /* Such entry not exist */
2418 if (!pe) {
2419 /* Go through the all entires from last to first */
2420 tid = mvpp2_prs_tcam_first_free(port->priv,
2421 MVPP2_PE_LAST_FREE_TID,
2422 MVPP2_PE_FIRST_FREE_TID);
2423 if (tid < 0)
2424 return tid;
2425
2426 pe = kzalloc(sizeof(*pe), GFP_KERNEL);
2427 if (!pe)
2428 return -ENOMEM;
2429
2430 mvpp2_prs_tcam_lu_set(pe, MVPP2_PRS_LU_FLOWS);
2431 pe->index = tid;
2432
2433 /* Set flow ID*/
2434 mvpp2_prs_sram_ai_update(pe, port->id, MVPP2_PRS_FLOW_ID_MASK);
2435 mvpp2_prs_sram_bits_set(pe, MVPP2_PRS_SRAM_LU_DONE_BIT, 1);
2436
2437 /* Update shadow table */
2438 mvpp2_prs_shadow_set(port->priv, pe->index, MVPP2_PRS_LU_FLOWS);
2439 }
2440
2441 mvpp2_prs_tcam_port_map_set(pe, (1 << port->id));
2442 mvpp2_prs_hw_write(port->priv, pe);
2443 kfree(pe);
2444
2445 return 0;
2446}
2447
2448/* Classifier configuration routines */
2449
2450/* Update classification flow table registers */
2451static void mvpp2_cls_flow_write(struct mvpp2 *priv,
2452 struct mvpp2_cls_flow_entry *fe)
2453{
2454 mvpp2_write(priv, MVPP2_CLS_FLOW_INDEX_REG, fe->index);
2455 mvpp2_write(priv, MVPP2_CLS_FLOW_TBL0_REG, fe->data[0]);
2456 mvpp2_write(priv, MVPP2_CLS_FLOW_TBL1_REG, fe->data[1]);
2457 mvpp2_write(priv, MVPP2_CLS_FLOW_TBL2_REG, fe->data[2]);
2458}
2459
2460/* Update classification lookup table register */
2461static void mvpp2_cls_lookup_write(struct mvpp2 *priv,
2462 struct mvpp2_cls_lookup_entry *le)
2463{
2464 u32 val;
2465
2466 val = (le->way << MVPP2_CLS_LKP_INDEX_WAY_OFFS) | le->lkpid;
2467 mvpp2_write(priv, MVPP2_CLS_LKP_INDEX_REG, val);
2468 mvpp2_write(priv, MVPP2_CLS_LKP_TBL_REG, le->data);
2469}
2470
2471/* Classifier default initialization */
2472static void mvpp2_cls_init(struct mvpp2 *priv)
2473{
2474 struct mvpp2_cls_lookup_entry le;
2475 struct mvpp2_cls_flow_entry fe;
2476 int index;
2477
2478 /* Enable classifier */
2479 mvpp2_write(priv, MVPP2_CLS_MODE_REG, MVPP2_CLS_MODE_ACTIVE_MASK);
2480
2481 /* Clear classifier flow table */
2482 memset(&fe.data, 0, MVPP2_CLS_FLOWS_TBL_DATA_WORDS);
2483 for (index = 0; index < MVPP2_CLS_FLOWS_TBL_SIZE; index++) {
2484 fe.index = index;
2485 mvpp2_cls_flow_write(priv, &fe);
2486 }
2487
2488 /* Clear classifier lookup table */
2489 le.data = 0;
2490 for (index = 0; index < MVPP2_CLS_LKP_TBL_SIZE; index++) {
2491 le.lkpid = index;
2492 le.way = 0;
2493 mvpp2_cls_lookup_write(priv, &le);
2494
2495 le.way = 1;
2496 mvpp2_cls_lookup_write(priv, &le);
2497 }
2498}
2499
2500static void mvpp2_cls_port_config(struct mvpp2_port *port)
2501{
2502 struct mvpp2_cls_lookup_entry le;
2503 u32 val;
2504
2505 /* Set way for the port */
2506 val = mvpp2_read(port->priv, MVPP2_CLS_PORT_WAY_REG);
2507 val &= ~MVPP2_CLS_PORT_WAY_MASK(port->id);
2508 mvpp2_write(port->priv, MVPP2_CLS_PORT_WAY_REG, val);
2509
2510 /* Pick the entry to be accessed in lookup ID decoding table
2511 * according to the way and lkpid.
2512 */
2513 le.lkpid = port->id;
2514 le.way = 0;
2515 le.data = 0;
2516
2517 /* Set initial CPU queue for receiving packets */
2518 le.data &= ~MVPP2_CLS_LKP_TBL_RXQ_MASK;
2519 le.data |= port->first_rxq;
2520
2521 /* Disable classification engines */
2522 le.data &= ~MVPP2_CLS_LKP_TBL_LOOKUP_EN_MASK;
2523
2524 /* Update lookup ID table entry */
2525 mvpp2_cls_lookup_write(port->priv, &le);
2526}
2527
2528/* Set CPU queue number for oversize packets */
2529static void mvpp2_cls_oversize_rxq_set(struct mvpp2_port *port)
2530{
2531 u32 val;
2532
2533 mvpp2_write(port->priv, MVPP2_CLS_OVERSIZE_RXQ_LOW_REG(port->id),
2534 port->first_rxq & MVPP2_CLS_OVERSIZE_RXQ_LOW_MASK);
2535
2536 mvpp2_write(port->priv, MVPP2_CLS_SWFWD_P2HQ_REG(port->id),
2537 (port->first_rxq >> MVPP2_CLS_OVERSIZE_RXQ_LOW_BITS));
2538
2539 val = mvpp2_read(port->priv, MVPP2_CLS_SWFWD_PCTRL_REG);
2540 val |= MVPP2_CLS_SWFWD_PCTRL_MASK(port->id);
2541 mvpp2_write(port->priv, MVPP2_CLS_SWFWD_PCTRL_REG, val);
2542}
2543
2544/* Buffer Manager configuration routines */
2545
2546/* Create pool */
2547static int mvpp2_bm_pool_create(struct udevice *dev,
2548 struct mvpp2 *priv,
2549 struct mvpp2_bm_pool *bm_pool, int size)
2550{
2551 u32 val;
2552
Thomas Petazzoni3520a332017-02-20 11:29:16 +01002553 /* Number of buffer pointers must be a multiple of 16, as per
2554 * hardware constraints
2555 */
2556 if (!IS_ALIGNED(size, 16))
2557 return -EINVAL;
2558
Stefan Roese96c19042016-02-10 07:22:10 +01002559 bm_pool->virt_addr = buffer_loc.bm_pool[bm_pool->id];
Thomas Petazzonic49aff22017-02-20 10:27:51 +01002560 bm_pool->dma_addr = (dma_addr_t)buffer_loc.bm_pool[bm_pool->id];
Stefan Roese96c19042016-02-10 07:22:10 +01002561 if (!bm_pool->virt_addr)
2562 return -ENOMEM;
2563
Thomas Petazzonia3c988f2017-02-15 12:31:53 +01002564 if (!IS_ALIGNED((unsigned long)bm_pool->virt_addr,
2565 MVPP2_BM_POOL_PTR_ALIGN)) {
Sean Anderson77a88792020-09-15 10:44:56 -04002566 dev_err(dev, "BM pool %d is not %d bytes aligned\n",
Stefan Roese96c19042016-02-10 07:22:10 +01002567 bm_pool->id, MVPP2_BM_POOL_PTR_ALIGN);
2568 return -ENOMEM;
2569 }
2570
2571 mvpp2_write(priv, MVPP2_BM_POOL_BASE_REG(bm_pool->id),
Thomas Petazzoni3520a332017-02-20 11:29:16 +01002572 lower_32_bits(bm_pool->dma_addr));
Stefan Chulski115f76f2017-08-09 10:37:50 +03002573 if (priv->hw_version == MVPP22)
2574 mvpp2_write(priv, MVPP22_BM_POOL_BASE_HIGH_REG,
2575 (upper_32_bits(bm_pool->dma_addr) &
2576 MVPP22_BM_POOL_BASE_HIGH_MASK));
Stefan Roese96c19042016-02-10 07:22:10 +01002577 mvpp2_write(priv, MVPP2_BM_POOL_SIZE_REG(bm_pool->id), size);
2578
2579 val = mvpp2_read(priv, MVPP2_BM_POOL_CTRL_REG(bm_pool->id));
2580 val |= MVPP2_BM_START_MASK;
2581 mvpp2_write(priv, MVPP2_BM_POOL_CTRL_REG(bm_pool->id), val);
2582
2583 bm_pool->type = MVPP2_BM_FREE;
2584 bm_pool->size = size;
2585 bm_pool->pkt_size = 0;
2586 bm_pool->buf_num = 0;
2587
2588 return 0;
2589}
2590
2591/* Set pool buffer size */
2592static void mvpp2_bm_pool_bufsize_set(struct mvpp2 *priv,
2593 struct mvpp2_bm_pool *bm_pool,
2594 int buf_size)
2595{
2596 u32 val;
2597
2598 bm_pool->buf_size = buf_size;
2599
2600 val = ALIGN(buf_size, 1 << MVPP2_POOL_BUF_SIZE_OFFSET);
2601 mvpp2_write(priv, MVPP2_POOL_BUF_SIZE_REG(bm_pool->id), val);
2602}
2603
2604/* Free all buffers from the pool */
2605static void mvpp2_bm_bufs_free(struct udevice *dev, struct mvpp2 *priv,
2606 struct mvpp2_bm_pool *bm_pool)
2607{
Stefan Roese380b3232017-03-23 17:01:59 +01002608 int i;
2609
2610 for (i = 0; i < bm_pool->buf_num; i++) {
2611 /* Allocate buffer back from the buffer manager */
2612 mvpp2_read(priv, MVPP2_BM_PHY_ALLOC_REG(bm_pool->id));
2613 }
2614
Stefan Roese96c19042016-02-10 07:22:10 +01002615 bm_pool->buf_num = 0;
2616}
2617
2618/* Cleanup pool */
2619static int mvpp2_bm_pool_destroy(struct udevice *dev,
2620 struct mvpp2 *priv,
2621 struct mvpp2_bm_pool *bm_pool)
2622{
2623 u32 val;
2624
2625 mvpp2_bm_bufs_free(dev, priv, bm_pool);
2626 if (bm_pool->buf_num) {
2627 dev_err(dev, "cannot free all buffers in pool %d\n", bm_pool->id);
2628 return 0;
2629 }
2630
2631 val = mvpp2_read(priv, MVPP2_BM_POOL_CTRL_REG(bm_pool->id));
2632 val |= MVPP2_BM_STOP_MASK;
2633 mvpp2_write(priv, MVPP2_BM_POOL_CTRL_REG(bm_pool->id), val);
2634
2635 return 0;
2636}
2637
2638static int mvpp2_bm_pools_init(struct udevice *dev,
2639 struct mvpp2 *priv)
2640{
2641 int i, err, size;
2642 struct mvpp2_bm_pool *bm_pool;
2643
2644 /* Create all pools with maximum size */
2645 size = MVPP2_BM_POOL_SIZE_MAX;
2646 for (i = 0; i < MVPP2_BM_POOLS_NUM; i++) {
2647 bm_pool = &priv->bm_pools[i];
2648 bm_pool->id = i;
2649 err = mvpp2_bm_pool_create(dev, priv, bm_pool, size);
2650 if (err)
2651 goto err_unroll_pools;
Stefan Chulski36eb98a2017-08-09 10:37:52 +03002652 mvpp2_bm_pool_bufsize_set(priv, bm_pool, RX_BUFFER_SIZE);
Stefan Roese96c19042016-02-10 07:22:10 +01002653 }
2654 return 0;
2655
2656err_unroll_pools:
Sean Anderson77a88792020-09-15 10:44:56 -04002657 dev_err(dev, "failed to create BM pool %d, size %d\n", i, size);
Stefan Roese96c19042016-02-10 07:22:10 +01002658 for (i = i - 1; i >= 0; i--)
2659 mvpp2_bm_pool_destroy(dev, priv, &priv->bm_pools[i]);
2660 return err;
2661}
2662
2663static int mvpp2_bm_init(struct udevice *dev, struct mvpp2 *priv)
2664{
2665 int i, err;
2666
2667 for (i = 0; i < MVPP2_BM_POOLS_NUM; i++) {
2668 /* Mask BM all interrupts */
2669 mvpp2_write(priv, MVPP2_BM_INTR_MASK_REG(i), 0);
2670 /* Clear BM cause register */
2671 mvpp2_write(priv, MVPP2_BM_INTR_CAUSE_REG(i), 0);
2672 }
2673
2674 /* Allocate and initialize BM pools */
2675 priv->bm_pools = devm_kcalloc(dev, MVPP2_BM_POOLS_NUM,
2676 sizeof(struct mvpp2_bm_pool), GFP_KERNEL);
2677 if (!priv->bm_pools)
2678 return -ENOMEM;
2679
2680 err = mvpp2_bm_pools_init(dev, priv);
2681 if (err < 0)
2682 return err;
2683 return 0;
2684}
2685
2686/* Attach long pool to rxq */
2687static void mvpp2_rxq_long_pool_set(struct mvpp2_port *port,
2688 int lrxq, int long_pool)
2689{
Thomas Petazzoni2321c922017-02-16 06:53:51 +01002690 u32 val, mask;
Stefan Roese96c19042016-02-10 07:22:10 +01002691 int prxq;
2692
2693 /* Get queue physical ID */
2694 prxq = port->rxqs[lrxq]->id;
2695
Thomas Petazzoni2321c922017-02-16 06:53:51 +01002696 if (port->priv->hw_version == MVPP21)
2697 mask = MVPP21_RXQ_POOL_LONG_MASK;
2698 else
2699 mask = MVPP22_RXQ_POOL_LONG_MASK;
Stefan Roese96c19042016-02-10 07:22:10 +01002700
Thomas Petazzoni2321c922017-02-16 06:53:51 +01002701 val = mvpp2_read(port->priv, MVPP2_RXQ_CONFIG_REG(prxq));
2702 val &= ~mask;
2703 val |= (long_pool << MVPP2_RXQ_POOL_LONG_OFFS) & mask;
Stefan Roese96c19042016-02-10 07:22:10 +01002704 mvpp2_write(port->priv, MVPP2_RXQ_CONFIG_REG(prxq), val);
2705}
2706
2707/* Set pool number in a BM cookie */
2708static inline u32 mvpp2_bm_cookie_pool_set(u32 cookie, int pool)
2709{
2710 u32 bm;
2711
2712 bm = cookie & ~(0xFF << MVPP2_BM_COOKIE_POOL_OFFS);
2713 bm |= ((pool & 0xFF) << MVPP2_BM_COOKIE_POOL_OFFS);
2714
2715 return bm;
2716}
2717
2718/* Get pool number from a BM cookie */
Thomas Petazzonia3c988f2017-02-15 12:31:53 +01002719static inline int mvpp2_bm_cookie_pool_get(unsigned long cookie)
Stefan Roese96c19042016-02-10 07:22:10 +01002720{
2721 return (cookie >> MVPP2_BM_COOKIE_POOL_OFFS) & 0xFF;
2722}
2723
2724/* Release buffer to BM */
2725static inline void mvpp2_bm_pool_put(struct mvpp2_port *port, int pool,
Thomas Petazzonic49aff22017-02-20 10:27:51 +01002726 dma_addr_t buf_dma_addr,
Thomas Petazzoni09831762017-02-20 10:37:59 +01002727 unsigned long buf_phys_addr)
Stefan Roese96c19042016-02-10 07:22:10 +01002728{
Thomas Petazzoni3520a332017-02-20 11:29:16 +01002729 if (port->priv->hw_version == MVPP22) {
2730 u32 val = 0;
2731
2732 if (sizeof(dma_addr_t) == 8)
2733 val |= upper_32_bits(buf_dma_addr) &
2734 MVPP22_BM_ADDR_HIGH_PHYS_RLS_MASK;
2735
2736 if (sizeof(phys_addr_t) == 8)
2737 val |= (upper_32_bits(buf_phys_addr)
2738 << MVPP22_BM_ADDR_HIGH_VIRT_RLS_SHIFT) &
2739 MVPP22_BM_ADDR_HIGH_VIRT_RLS_MASK;
2740
2741 mvpp2_write(port->priv, MVPP22_BM_ADDR_HIGH_RLS_REG, val);
2742 }
2743
Thomas Petazzoni09831762017-02-20 10:37:59 +01002744 /* MVPP2_BM_VIRT_RLS_REG is not interpreted by HW, and simply
2745 * returned in the "cookie" field of the RX
2746 * descriptor. Instead of storing the virtual address, we
2747 * store the physical address
2748 */
2749 mvpp2_write(port->priv, MVPP2_BM_VIRT_RLS_REG, buf_phys_addr);
Thomas Petazzonic49aff22017-02-20 10:27:51 +01002750 mvpp2_write(port->priv, MVPP2_BM_PHY_RLS_REG(pool), buf_dma_addr);
Stefan Roese96c19042016-02-10 07:22:10 +01002751}
2752
2753/* Refill BM pool */
2754static void mvpp2_pool_refill(struct mvpp2_port *port, u32 bm,
Thomas Petazzonic49aff22017-02-20 10:27:51 +01002755 dma_addr_t dma_addr,
Thomas Petazzoni09831762017-02-20 10:37:59 +01002756 phys_addr_t phys_addr)
Stefan Roese96c19042016-02-10 07:22:10 +01002757{
2758 int pool = mvpp2_bm_cookie_pool_get(bm);
2759
Thomas Petazzoni09831762017-02-20 10:37:59 +01002760 mvpp2_bm_pool_put(port, pool, dma_addr, phys_addr);
Stefan Roese96c19042016-02-10 07:22:10 +01002761}
2762
2763/* Allocate buffers for the pool */
2764static int mvpp2_bm_bufs_add(struct mvpp2_port *port,
2765 struct mvpp2_bm_pool *bm_pool, int buf_num)
2766{
2767 int i;
Stefan Roese96c19042016-02-10 07:22:10 +01002768
2769 if (buf_num < 0 ||
2770 (buf_num + bm_pool->buf_num > bm_pool->size)) {
Sean Andersonc7cbf092020-09-15 10:44:57 -04002771 dev_err(port->phy_dev->dev,
2772 "cannot allocate %d buffers for pool %d\n", buf_num,
2773 bm_pool->id);
Stefan Roese96c19042016-02-10 07:22:10 +01002774 return 0;
2775 }
2776
Stefan Roese96c19042016-02-10 07:22:10 +01002777 for (i = 0; i < buf_num; i++) {
Thomas Petazzoni1b085c52017-02-15 12:13:43 +01002778 mvpp2_bm_pool_put(port, bm_pool->id,
Thomas Petazzonia3c988f2017-02-15 12:31:53 +01002779 (dma_addr_t)buffer_loc.rx_buffer[i],
2780 (unsigned long)buffer_loc.rx_buffer[i]);
Thomas Petazzoni1b085c52017-02-15 12:13:43 +01002781
Stefan Roese96c19042016-02-10 07:22:10 +01002782 }
2783
2784 /* Update BM driver with number of buffers added to pool */
2785 bm_pool->buf_num += i;
Stefan Roese96c19042016-02-10 07:22:10 +01002786
2787 return i;
2788}
2789
2790/* Notify the driver that BM pool is being used as specific type and return the
2791 * pool pointer on success
2792 */
2793static struct mvpp2_bm_pool *
2794mvpp2_bm_pool_use(struct mvpp2_port *port, int pool, enum mvpp2_bm_type type,
2795 int pkt_size)
2796{
2797 struct mvpp2_bm_pool *new_pool = &port->priv->bm_pools[pool];
2798 int num;
2799
2800 if (new_pool->type != MVPP2_BM_FREE && new_pool->type != type) {
Sean Andersonc7cbf092020-09-15 10:44:57 -04002801 dev_err(port->phy_dev->dev, "mixing pool types is forbidden\n");
Stefan Roese96c19042016-02-10 07:22:10 +01002802 return NULL;
2803 }
2804
2805 if (new_pool->type == MVPP2_BM_FREE)
2806 new_pool->type = type;
2807
2808 /* Allocate buffers in case BM pool is used as long pool, but packet
2809 * size doesn't match MTU or BM pool hasn't being used yet
2810 */
2811 if (((type == MVPP2_BM_SWF_LONG) && (pkt_size > new_pool->pkt_size)) ||
2812 (new_pool->pkt_size == 0)) {
2813 int pkts_num;
2814
2815 /* Set default buffer number or free all the buffers in case
2816 * the pool is not empty
2817 */
2818 pkts_num = new_pool->buf_num;
2819 if (pkts_num == 0)
2820 pkts_num = type == MVPP2_BM_SWF_LONG ?
2821 MVPP2_BM_LONG_BUF_NUM :
2822 MVPP2_BM_SHORT_BUF_NUM;
2823 else
2824 mvpp2_bm_bufs_free(NULL,
2825 port->priv, new_pool);
2826
2827 new_pool->pkt_size = pkt_size;
2828
2829 /* Allocate buffers for this pool */
2830 num = mvpp2_bm_bufs_add(port, new_pool, pkts_num);
2831 if (num != pkts_num) {
Sean Anderson77a88792020-09-15 10:44:56 -04002832 dev_err(port->phy_dev->dev,
2833 "pool %d: %d of %d allocated\n", new_pool->id,
2834 num, pkts_num);
Stefan Roese96c19042016-02-10 07:22:10 +01002835 return NULL;
2836 }
2837 }
2838
Stefan Roese96c19042016-02-10 07:22:10 +01002839 return new_pool;
2840}
2841
2842/* Initialize pools for swf */
2843static int mvpp2_swf_bm_pool_init(struct mvpp2_port *port)
2844{
2845 int rxq;
2846
2847 if (!port->pool_long) {
2848 port->pool_long =
2849 mvpp2_bm_pool_use(port, MVPP2_BM_SWF_LONG_POOL(port->id),
2850 MVPP2_BM_SWF_LONG,
2851 port->pkt_size);
2852 if (!port->pool_long)
2853 return -ENOMEM;
2854
2855 port->pool_long->port_map |= (1 << port->id);
2856
2857 for (rxq = 0; rxq < rxq_number; rxq++)
2858 mvpp2_rxq_long_pool_set(port, rxq, port->pool_long->id);
2859 }
2860
2861 return 0;
2862}
2863
2864/* Port configuration routines */
2865
2866static void mvpp2_port_mii_set(struct mvpp2_port *port)
2867{
2868 u32 val;
2869
2870 val = readl(port->base + MVPP2_GMAC_CTRL_2_REG);
2871
2872 switch (port->phy_interface) {
2873 case PHY_INTERFACE_MODE_SGMII:
2874 val |= MVPP2_GMAC_INBAND_AN_MASK;
2875 break;
Stefan Chulski237105f2021-05-03 08:08:46 +02002876 case PHY_INTERFACE_MODE_1000BASEX:
2877 case PHY_INTERFACE_MODE_2500BASEX:
2878 val &= ~MVPP2_GMAC_INBAND_AN_MASK;
2879 break;
Stefan Roese96c19042016-02-10 07:22:10 +01002880 case PHY_INTERFACE_MODE_RGMII:
Stefan Roesec20e4e42017-03-22 15:11:00 +01002881 case PHY_INTERFACE_MODE_RGMII_ID:
Stefan Roese96c19042016-02-10 07:22:10 +01002882 val |= MVPP2_GMAC_PORT_RGMII_MASK;
2883 default:
2884 val &= ~MVPP2_GMAC_PCS_ENABLE_MASK;
2885 }
2886
2887 writel(val, port->base + MVPP2_GMAC_CTRL_2_REG);
2888}
2889
2890static void mvpp2_port_fc_adv_enable(struct mvpp2_port *port)
2891{
2892 u32 val;
2893
2894 val = readl(port->base + MVPP2_GMAC_AUTONEG_CONFIG);
2895 val |= MVPP2_GMAC_FC_ADV_EN;
2896 writel(val, port->base + MVPP2_GMAC_AUTONEG_CONFIG);
2897}
2898
2899static void mvpp2_port_enable(struct mvpp2_port *port)
2900{
2901 u32 val;
2902
2903 val = readl(port->base + MVPP2_GMAC_CTRL_0_REG);
2904 val |= MVPP2_GMAC_PORT_EN_MASK;
2905 val |= MVPP2_GMAC_MIB_CNTR_EN_MASK;
2906 writel(val, port->base + MVPP2_GMAC_CTRL_0_REG);
2907}
2908
2909static void mvpp2_port_disable(struct mvpp2_port *port)
2910{
2911 u32 val;
2912
2913 val = readl(port->base + MVPP2_GMAC_CTRL_0_REG);
2914 val &= ~(MVPP2_GMAC_PORT_EN_MASK);
2915 writel(val, port->base + MVPP2_GMAC_CTRL_0_REG);
2916}
2917
2918/* Set IEEE 802.3x Flow Control Xon Packet Transmission Mode */
2919static void mvpp2_port_periodic_xon_disable(struct mvpp2_port *port)
2920{
2921 u32 val;
2922
2923 val = readl(port->base + MVPP2_GMAC_CTRL_1_REG) &
2924 ~MVPP2_GMAC_PERIODIC_XON_EN_MASK;
2925 writel(val, port->base + MVPP2_GMAC_CTRL_1_REG);
2926}
2927
2928/* Configure loopback port */
2929static void mvpp2_port_loopback_set(struct mvpp2_port *port)
2930{
2931 u32 val;
2932
2933 val = readl(port->base + MVPP2_GMAC_CTRL_1_REG);
2934
2935 if (port->speed == 1000)
2936 val |= MVPP2_GMAC_GMII_LB_EN_MASK;
2937 else
2938 val &= ~MVPP2_GMAC_GMII_LB_EN_MASK;
2939
Stefan Chulski237105f2021-05-03 08:08:46 +02002940 if (port->phy_interface == PHY_INTERFACE_MODE_SGMII ||
2941 port->phy_interface == PHY_INTERFACE_MODE_1000BASEX ||
2942 port->phy_interface == PHY_INTERFACE_MODE_2500BASEX)
Stefan Roese96c19042016-02-10 07:22:10 +01002943 val |= MVPP2_GMAC_PCS_LB_EN_MASK;
2944 else
2945 val &= ~MVPP2_GMAC_PCS_LB_EN_MASK;
2946
2947 writel(val, port->base + MVPP2_GMAC_CTRL_1_REG);
2948}
2949
2950static void mvpp2_port_reset(struct mvpp2_port *port)
2951{
2952 u32 val;
2953
2954 val = readl(port->base + MVPP2_GMAC_CTRL_2_REG) &
2955 ~MVPP2_GMAC_PORT_RESET_MASK;
2956 writel(val, port->base + MVPP2_GMAC_CTRL_2_REG);
2957
2958 while (readl(port->base + MVPP2_GMAC_CTRL_2_REG) &
2959 MVPP2_GMAC_PORT_RESET_MASK)
2960 continue;
2961}
2962
2963/* Change maximum receive size of the port */
2964static inline void mvpp2_gmac_max_rx_size_set(struct mvpp2_port *port)
2965{
2966 u32 val;
2967
2968 val = readl(port->base + MVPP2_GMAC_CTRL_0_REG);
2969 val &= ~MVPP2_GMAC_MAX_RX_SIZE_MASK;
2970 val |= (((port->pkt_size - MVPP2_MH_SIZE) / 2) <<
2971 MVPP2_GMAC_MAX_RX_SIZE_OFFS);
2972 writel(val, port->base + MVPP2_GMAC_CTRL_0_REG);
2973}
2974
Stefan Roese40e749b2017-03-22 15:07:30 +01002975/* PPv2.2 GoP/GMAC config */
2976
2977/* Set the MAC to reset or exit from reset */
2978static int gop_gmac_reset(struct mvpp2_port *port, int reset)
2979{
2980 u32 val;
2981
2982 /* read - modify - write */
2983 val = readl(port->base + MVPP2_GMAC_CTRL_2_REG);
2984 if (reset)
2985 val |= MVPP2_GMAC_PORT_RESET_MASK;
2986 else
2987 val &= ~MVPP2_GMAC_PORT_RESET_MASK;
2988 writel(val, port->base + MVPP2_GMAC_CTRL_2_REG);
2989
2990 return 0;
2991}
2992
2993/*
2994 * gop_gpcs_mode_cfg
2995 *
2996 * Configure port to working with Gig PCS or don't.
2997 */
2998static int gop_gpcs_mode_cfg(struct mvpp2_port *port, int en)
2999{
3000 u32 val;
3001
3002 val = readl(port->base + MVPP2_GMAC_CTRL_2_REG);
3003 if (en)
3004 val |= MVPP2_GMAC_PCS_ENABLE_MASK;
3005 else
3006 val &= ~MVPP2_GMAC_PCS_ENABLE_MASK;
3007 /* enable / disable PCS on this port */
3008 writel(val, port->base + MVPP2_GMAC_CTRL_2_REG);
3009
3010 return 0;
3011}
3012
3013static int gop_bypass_clk_cfg(struct mvpp2_port *port, int en)
3014{
3015 u32 val;
3016
3017 val = readl(port->base + MVPP2_GMAC_CTRL_2_REG);
3018 if (en)
3019 val |= MVPP2_GMAC_CLK_125_BYPS_EN_MASK;
3020 else
3021 val &= ~MVPP2_GMAC_CLK_125_BYPS_EN_MASK;
3022 /* enable / disable PCS on this port */
3023 writel(val, port->base + MVPP2_GMAC_CTRL_2_REG);
3024
3025 return 0;
3026}
3027
Stefan Roese40e749b2017-03-22 15:07:30 +01003028static void gop_gmac_sgmii_cfg(struct mvpp2_port *port)
3029{
3030 u32 val, thresh;
3031
3032 /*
3033 * Configure minimal level of the Tx FIFO before the lower part
3034 * starts to read a packet
3035 */
3036 thresh = MVPP2_SGMII_TX_FIFO_MIN_TH;
3037 val = readl(port->base + MVPP2_GMAC_PORT_FIFO_CFG_1_REG);
3038 val &= ~MVPP2_GMAC_TX_FIFO_MIN_TH_ALL_MASK;
3039 val |= MVPP2_GMAC_TX_FIFO_MIN_TH_MASK(thresh);
3040 writel(val, port->base + MVPP2_GMAC_PORT_FIFO_CFG_1_REG);
3041
3042 /* Disable bypass of sync module */
3043 val = readl(port->base + MVPP2_GMAC_CTRL_4_REG);
3044 val |= MVPP2_GMAC_CTRL4_SYNC_BYPASS_MASK;
3045 /* configure DP clock select according to mode */
3046 val &= ~MVPP2_GMAC_CTRL4_DP_CLK_SEL_MASK;
3047 /* configure QSGMII bypass according to mode */
3048 val |= MVPP2_GMAC_CTRL4_QSGMII_BYPASS_ACTIVE_MASK;
3049 writel(val, port->base + MVPP2_GMAC_CTRL_4_REG);
3050
Stefan Roese40e749b2017-03-22 15:07:30 +01003051 val = readl(port->base + MVPP2_GMAC_CTRL_0_REG);
3052 /* configure GIG MAC to SGMII mode */
3053 val &= ~MVPP2_GMAC_PORT_TYPE_MASK;
3054 writel(val, port->base + MVPP2_GMAC_CTRL_0_REG);
3055
3056 /* configure AN */
3057 val = MVPP2_GMAC_EN_PCS_AN |
3058 MVPP2_GMAC_AN_BYPASS_EN |
3059 MVPP2_GMAC_AN_SPEED_EN |
3060 MVPP2_GMAC_EN_FC_AN |
3061 MVPP2_GMAC_AN_DUPLEX_EN |
3062 MVPP2_GMAC_CHOOSE_SAMPLE_TX_CONFIG;
3063 writel(val, port->base + MVPP2_GMAC_AUTONEG_CONFIG);
3064}
3065
Stefan Chulski237105f2021-05-03 08:08:46 +02003066static void gop_gmac_2500basex_cfg(struct mvpp2_port *port)
3067{
3068 u32 val, thresh;
3069
3070 /*
3071 * Configure minimal level of the Tx FIFO before the lower part
3072 * starts to read a packet
3073 */
3074 thresh = MVPP2_SGMII2_5_TX_FIFO_MIN_TH;
3075 val = readl(port->base + MVPP2_GMAC_PORT_FIFO_CFG_1_REG);
3076 val &= ~MVPP2_GMAC_TX_FIFO_MIN_TH_ALL_MASK;
3077 val |= MVPP2_GMAC_TX_FIFO_MIN_TH_MASK(thresh);
3078 writel(val, port->base + MVPP2_GMAC_PORT_FIFO_CFG_1_REG);
3079
3080 /* Disable bypass of sync module */
3081 val = readl(port->base + MVPP2_GMAC_CTRL_4_REG);
3082 val |= MVPP2_GMAC_CTRL4_SYNC_BYPASS_MASK;
3083 /* configure DP clock select according to mode */
3084 val |= MVPP2_GMAC_CTRL4_DP_CLK_SEL_MASK;
3085 /* configure QSGMII bypass according to mode */
3086 val |= MVPP2_GMAC_CTRL4_QSGMII_BYPASS_ACTIVE_MASK;
3087 writel(val, port->base + MVPP2_GMAC_CTRL_4_REG);
3088
3089 val = readl(port->base + MVPP2_GMAC_CTRL_0_REG);
3090 /*
3091 * Configure GIG MAC to 2500Base-X mode connected to a fiber
3092 * transceiver
3093 */
3094 val |= MVPP2_GMAC_PORT_TYPE_MASK;
3095 writel(val, port->base + MVPP2_GMAC_CTRL_0_REG);
3096
3097 /* In 2500BaseX mode, we can't negotiate speed
3098 * and we do not want InBand autoneg
3099 * bypass enabled (link interrupt storm risk
3100 * otherwise).
3101 */
Ben Peled03da3622021-05-03 08:08:49 +02003102 val = MVPP2_GMAC_AN_BYPASS_EN |
3103 MVPP2_GMAC_EN_PCS_AN |
Stefan Chulski237105f2021-05-03 08:08:46 +02003104 MVPP2_GMAC_CONFIG_GMII_SPEED |
3105 MVPP2_GMAC_CONFIG_FULL_DUPLEX |
3106 MVPP2_GMAC_CHOOSE_SAMPLE_TX_CONFIG;
3107 writel(val, port->base + MVPP2_GMAC_AUTONEG_CONFIG);
3108}
3109
3110static void gop_gmac_1000basex_cfg(struct mvpp2_port *port)
3111{
3112 u32 val, thresh;
3113
3114 /*
3115 * Configure minimal level of the Tx FIFO before the lower part
3116 * starts to read a packet
3117 */
3118 thresh = MVPP2_SGMII_TX_FIFO_MIN_TH;
3119 val = readl(port->base + MVPP2_GMAC_PORT_FIFO_CFG_1_REG);
3120 val &= ~MVPP2_GMAC_TX_FIFO_MIN_TH_ALL_MASK;
3121 val |= MVPP2_GMAC_TX_FIFO_MIN_TH_MASK(thresh);
3122 writel(val, port->base + MVPP2_GMAC_PORT_FIFO_CFG_1_REG);
3123
3124 /* Disable bypass of sync module */
3125 val = readl(port->base + MVPP2_GMAC_CTRL_4_REG);
3126 val |= MVPP2_GMAC_CTRL4_SYNC_BYPASS_MASK;
3127 /* configure DP clock select according to mode */
3128 val &= ~MVPP2_GMAC_CTRL4_DP_CLK_SEL_MASK;
3129 /* configure QSGMII bypass according to mode */
3130 val |= MVPP2_GMAC_CTRL4_QSGMII_BYPASS_ACTIVE_MASK;
3131 writel(val, port->base + MVPP2_GMAC_CTRL_4_REG);
3132
3133 val = readl(port->base + MVPP2_GMAC_CTRL_0_REG);
3134 /* configure GIG MAC to 1000BASEX mode */
3135 val |= MVPP2_GMAC_PORT_TYPE_MASK;
3136 writel(val, port->base + MVPP2_GMAC_CTRL_0_REG);
3137
3138 /* In 1000BaseX mode, we can't negotiate speed (it's
3139 * only 1000), and we do not want InBand autoneg
3140 * bypass enabled (link interrupt storm risk
3141 * otherwise).
3142 */
Ben Peled03da3622021-05-03 08:08:49 +02003143 val = MVPP2_GMAC_AN_BYPASS_EN |
3144 MVPP2_GMAC_EN_PCS_AN |
Stefan Chulski237105f2021-05-03 08:08:46 +02003145 MVPP2_GMAC_CONFIG_GMII_SPEED |
3146 MVPP2_GMAC_CONFIG_FULL_DUPLEX |
3147 MVPP2_GMAC_CHOOSE_SAMPLE_TX_CONFIG;
3148 writel(val, port->base + MVPP2_GMAC_AUTONEG_CONFIG);
3149}
3150
Stefan Roese40e749b2017-03-22 15:07:30 +01003151static void gop_gmac_rgmii_cfg(struct mvpp2_port *port)
3152{
3153 u32 val, thresh;
3154
3155 /*
3156 * Configure minimal level of the Tx FIFO before the lower part
3157 * starts to read a packet
3158 */
3159 thresh = MVPP2_RGMII_TX_FIFO_MIN_TH;
3160 val = readl(port->base + MVPP2_GMAC_PORT_FIFO_CFG_1_REG);
3161 val &= ~MVPP2_GMAC_TX_FIFO_MIN_TH_ALL_MASK;
3162 val |= MVPP2_GMAC_TX_FIFO_MIN_TH_MASK(thresh);
3163 writel(val, port->base + MVPP2_GMAC_PORT_FIFO_CFG_1_REG);
3164
3165 /* Disable bypass of sync module */
3166 val = readl(port->base + MVPP2_GMAC_CTRL_4_REG);
3167 val |= MVPP2_GMAC_CTRL4_SYNC_BYPASS_MASK;
3168 /* configure DP clock select according to mode */
3169 val &= ~MVPP2_GMAC_CTRL4_DP_CLK_SEL_MASK;
3170 val |= MVPP2_GMAC_CTRL4_QSGMII_BYPASS_ACTIVE_MASK;
3171 val |= MVPP2_GMAC_CTRL4_EXT_PIN_GMII_SEL_MASK;
3172 writel(val, port->base + MVPP2_GMAC_CTRL_4_REG);
3173
Stefan Roese40e749b2017-03-22 15:07:30 +01003174 val = readl(port->base + MVPP2_GMAC_CTRL_0_REG);
3175 /* configure GIG MAC to SGMII mode */
3176 val &= ~MVPP2_GMAC_PORT_TYPE_MASK;
3177 writel(val, port->base + MVPP2_GMAC_CTRL_0_REG);
3178
3179 /* configure AN 0xb8e8 */
3180 val = MVPP2_GMAC_AN_BYPASS_EN |
3181 MVPP2_GMAC_AN_SPEED_EN |
3182 MVPP2_GMAC_EN_FC_AN |
3183 MVPP2_GMAC_AN_DUPLEX_EN |
3184 MVPP2_GMAC_CHOOSE_SAMPLE_TX_CONFIG;
3185 writel(val, port->base + MVPP2_GMAC_AUTONEG_CONFIG);
3186}
3187
3188/* Set the internal mux's to the required MAC in the GOP */
3189static int gop_gmac_mode_cfg(struct mvpp2_port *port)
3190{
3191 u32 val;
3192
3193 /* Set TX FIFO thresholds */
3194 switch (port->phy_interface) {
3195 case PHY_INTERFACE_MODE_SGMII:
Marcin Wojtas0db0f352021-05-03 08:08:53 +02003196 gop_gmac_sgmii_cfg(port);
Stefan Roese40e749b2017-03-22 15:07:30 +01003197 break;
Stefan Chulski237105f2021-05-03 08:08:46 +02003198 case PHY_INTERFACE_MODE_1000BASEX:
3199 gop_gmac_1000basex_cfg(port);
Ben Peled95c292c2021-05-03 08:08:51 +02003200 break;
Stefan Chulski237105f2021-05-03 08:08:46 +02003201
3202 case PHY_INTERFACE_MODE_2500BASEX:
3203 gop_gmac_2500basex_cfg(port);
Ben Peled95c292c2021-05-03 08:08:51 +02003204 break;
Stefan Chulski237105f2021-05-03 08:08:46 +02003205
Stefan Roese40e749b2017-03-22 15:07:30 +01003206 case PHY_INTERFACE_MODE_RGMII:
3207 case PHY_INTERFACE_MODE_RGMII_ID:
3208 gop_gmac_rgmii_cfg(port);
3209 break;
3210
3211 default:
3212 return -1;
3213 }
3214
3215 /* Jumbo frame support - 0x1400*2= 0x2800 bytes */
3216 val = readl(port->base + MVPP2_GMAC_CTRL_0_REG);
3217 val &= ~MVPP2_GMAC_MAX_RX_SIZE_MASK;
3218 val |= 0x1400 << MVPP2_GMAC_MAX_RX_SIZE_OFFS;
3219 writel(val, port->base + MVPP2_GMAC_CTRL_0_REG);
3220
3221 /* PeriodicXonEn disable */
3222 val = readl(port->base + MVPP2_GMAC_CTRL_1_REG);
3223 val &= ~MVPP2_GMAC_PERIODIC_XON_EN_MASK;
3224 writel(val, port->base + MVPP2_GMAC_CTRL_1_REG);
3225
3226 return 0;
3227}
3228
3229static void gop_xlg_2_gig_mac_cfg(struct mvpp2_port *port)
3230{
3231 u32 val;
3232
3233 /* relevant only for MAC0 (XLG0 and GMAC0) */
3234 if (port->gop_id > 0)
3235 return;
3236
3237 /* configure 1Gig MAC mode */
3238 val = readl(port->base + MVPP22_XLG_CTRL3_REG);
3239 val &= ~MVPP22_XLG_CTRL3_MACMODESELECT_MASK;
3240 val |= MVPP22_XLG_CTRL3_MACMODESELECT_GMAC;
3241 writel(val, port->base + MVPP22_XLG_CTRL3_REG);
3242}
3243
3244static int gop_gpcs_reset(struct mvpp2_port *port, int reset)
3245{
3246 u32 val;
3247
3248 val = readl(port->base + MVPP2_GMAC_CTRL_2_REG);
3249 if (reset)
3250 val &= ~MVPP2_GMAC_SGMII_MODE_MASK;
3251 else
3252 val |= MVPP2_GMAC_SGMII_MODE_MASK;
3253 writel(val, port->base + MVPP2_GMAC_CTRL_2_REG);
3254
3255 return 0;
3256}
3257
Stefan Roese01647642017-03-22 15:09:38 +01003258static int gop_mpcs_mode(struct mvpp2_port *port)
3259{
3260 u32 val;
3261
3262 /* configure PCS40G COMMON CONTROL */
Stefan Chulskib3f12b52021-05-03 08:08:45 +02003263 val = readl(port->priv->mpcs_base + port->gop_id * MVPP22_PORT_OFFSET +
3264 PCS40G_COMMON_CONTROL);
Stefan Roese01647642017-03-22 15:09:38 +01003265 val &= ~FORWARD_ERROR_CORRECTION_MASK;
Stefan Chulskib3f12b52021-05-03 08:08:45 +02003266 writel(val, port->priv->mpcs_base + port->gop_id * MVPP22_PORT_OFFSET +
3267 PCS40G_COMMON_CONTROL);
Stefan Roese01647642017-03-22 15:09:38 +01003268
3269 /* configure PCS CLOCK RESET */
Stefan Chulskib3f12b52021-05-03 08:08:45 +02003270 val = readl(port->priv->mpcs_base + port->gop_id * MVPP22_PORT_OFFSET +
3271 PCS_CLOCK_RESET);
Stefan Roese01647642017-03-22 15:09:38 +01003272 val &= ~CLK_DIVISION_RATIO_MASK;
3273 val |= 1 << CLK_DIVISION_RATIO_OFFS;
Stefan Chulskib3f12b52021-05-03 08:08:45 +02003274 writel(val, port->priv->mpcs_base + port->gop_id * MVPP22_PORT_OFFSET +
3275 PCS_CLOCK_RESET);
Stefan Roese01647642017-03-22 15:09:38 +01003276
3277 val &= ~CLK_DIV_PHASE_SET_MASK;
3278 val |= MAC_CLK_RESET_MASK;
3279 val |= RX_SD_CLK_RESET_MASK;
3280 val |= TX_SD_CLK_RESET_MASK;
Stefan Chulskib3f12b52021-05-03 08:08:45 +02003281 writel(val, port->priv->mpcs_base + port->gop_id * MVPP22_PORT_OFFSET +
3282 PCS_CLOCK_RESET);
Stefan Roese01647642017-03-22 15:09:38 +01003283
3284 return 0;
3285}
3286
3287/* Set the internal mux's to the required MAC in the GOP */
3288static int gop_xlg_mac_mode_cfg(struct mvpp2_port *port, int num_of_act_lanes)
3289{
3290 u32 val;
3291
3292 /* configure 10G MAC mode */
3293 val = readl(port->base + MVPP22_XLG_CTRL0_REG);
3294 val |= MVPP22_XLG_RX_FC_EN;
3295 writel(val, port->base + MVPP22_XLG_CTRL0_REG);
3296
3297 val = readl(port->base + MVPP22_XLG_CTRL3_REG);
3298 val &= ~MVPP22_XLG_CTRL3_MACMODESELECT_MASK;
3299 val |= MVPP22_XLG_CTRL3_MACMODESELECT_10GMAC;
3300 writel(val, port->base + MVPP22_XLG_CTRL3_REG);
3301
3302 /* read - modify - write */
3303 val = readl(port->base + MVPP22_XLG_CTRL4_REG);
3304 val &= ~MVPP22_XLG_MODE_DMA_1G;
3305 val |= MVPP22_XLG_FORWARD_PFC_EN;
3306 val |= MVPP22_XLG_FORWARD_802_3X_FC_EN;
3307 val &= ~MVPP22_XLG_EN_IDLE_CHECK_FOR_LINK;
3308 writel(val, port->base + MVPP22_XLG_CTRL4_REG);
3309
3310 /* Jumbo frame support: 0x1400 * 2 = 0x2800 bytes */
3311 val = readl(port->base + MVPP22_XLG_CTRL1_REG);
3312 val &= ~MVPP22_XLG_MAX_RX_SIZE_MASK;
3313 val |= 0x1400 << MVPP22_XLG_MAX_RX_SIZE_OFFS;
3314 writel(val, port->base + MVPP22_XLG_CTRL1_REG);
3315
3316 /* unmask link change interrupt */
3317 val = readl(port->base + MVPP22_XLG_INTERRUPT_MASK_REG);
3318 val |= MVPP22_XLG_INTERRUPT_LINK_CHANGE;
3319 val |= 1; /* unmask summary bit */
3320 writel(val, port->base + MVPP22_XLG_INTERRUPT_MASK_REG);
3321
3322 return 0;
3323}
3324
Stefan Roese01647642017-03-22 15:09:38 +01003325/* Set the MAC to reset or exit from reset */
3326static int gop_xlg_mac_reset(struct mvpp2_port *port, int reset)
3327{
3328 u32 val;
3329
3330 /* read - modify - write */
3331 val = readl(port->base + MVPP22_XLG_CTRL0_REG);
3332 if (reset)
3333 val &= ~MVPP22_XLG_MAC_RESETN;
3334 else
3335 val |= MVPP22_XLG_MAC_RESETN;
3336 writel(val, port->base + MVPP22_XLG_CTRL0_REG);
3337
3338 return 0;
3339}
3340
Stefan Roese40e749b2017-03-22 15:07:30 +01003341/*
3342 * gop_port_init
3343 *
3344 * Init physical port. Configures the port mode and all it's elements
3345 * accordingly.
3346 * Does not verify that the selected mode/port number is valid at the
3347 * core level.
3348 */
3349static int gop_port_init(struct mvpp2_port *port)
3350{
3351 int mac_num = port->gop_id;
Stefan Roese01647642017-03-22 15:09:38 +01003352 int num_of_act_lanes;
Stefan Roese40e749b2017-03-22 15:07:30 +01003353
3354 if (mac_num >= MVPP22_GOP_MAC_NUM) {
Sean Andersonc7cbf092020-09-15 10:44:57 -04003355 log_err("illegal port number %d", mac_num);
Stefan Roese40e749b2017-03-22 15:07:30 +01003356 return -1;
3357 }
3358
3359 switch (port->phy_interface) {
3360 case PHY_INTERFACE_MODE_RGMII:
3361 case PHY_INTERFACE_MODE_RGMII_ID:
3362 gop_gmac_reset(port, 1);
3363
3364 /* configure PCS */
3365 gop_gpcs_mode_cfg(port, 0);
3366 gop_bypass_clk_cfg(port, 1);
3367
3368 /* configure MAC */
3369 gop_gmac_mode_cfg(port);
3370 /* pcs unreset */
3371 gop_gpcs_reset(port, 0);
3372
3373 /* mac unreset */
3374 gop_gmac_reset(port, 0);
3375 break;
3376
3377 case PHY_INTERFACE_MODE_SGMII:
Stefan Chulski237105f2021-05-03 08:08:46 +02003378 case PHY_INTERFACE_MODE_1000BASEX:
3379 case PHY_INTERFACE_MODE_2500BASEX:
Stefan Roese40e749b2017-03-22 15:07:30 +01003380 /* configure PCS */
3381 gop_gpcs_mode_cfg(port, 1);
3382
3383 /* configure MAC */
3384 gop_gmac_mode_cfg(port);
3385 /* select proper Mac mode */
3386 gop_xlg_2_gig_mac_cfg(port);
3387
3388 /* pcs unreset */
3389 gop_gpcs_reset(port, 0);
3390 /* mac unreset */
3391 gop_gmac_reset(port, 0);
3392 break;
3393
Stefan Roese01647642017-03-22 15:09:38 +01003394 case PHY_INTERFACE_MODE_SFI:
3395 num_of_act_lanes = 2;
3396 mac_num = 0;
3397 /* configure PCS */
Stefan Roese01647642017-03-22 15:09:38 +01003398 gop_mpcs_mode(port);
3399 /* configure MAC */
3400 gop_xlg_mac_mode_cfg(port, num_of_act_lanes);
3401
Stefan Roese01647642017-03-22 15:09:38 +01003402 /* mac unreset */
3403 gop_xlg_mac_reset(port, 0);
3404 break;
3405
Stefan Roese40e749b2017-03-22 15:07:30 +01003406 default:
Sean Andersonc7cbf092020-09-15 10:44:57 -04003407 log_err("Requested port mode (%d) not supported\n",
3408 port->phy_interface);
Stefan Roese40e749b2017-03-22 15:07:30 +01003409 return -1;
3410 }
3411
3412 return 0;
3413}
3414
Stefan Roese01647642017-03-22 15:09:38 +01003415static void gop_xlg_mac_port_enable(struct mvpp2_port *port, int enable)
3416{
3417 u32 val;
3418
3419 val = readl(port->base + MVPP22_XLG_CTRL0_REG);
3420 if (enable) {
3421 /* Enable port and MIB counters update */
3422 val |= MVPP22_XLG_PORT_EN;
3423 val &= ~MVPP22_XLG_MIBCNT_DIS;
3424 } else {
3425 /* Disable port */
3426 val &= ~MVPP22_XLG_PORT_EN;
3427 }
3428 writel(val, port->base + MVPP22_XLG_CTRL0_REG);
3429}
3430
Stefan Roese40e749b2017-03-22 15:07:30 +01003431static void gop_port_enable(struct mvpp2_port *port, int enable)
3432{
3433 switch (port->phy_interface) {
3434 case PHY_INTERFACE_MODE_RGMII:
3435 case PHY_INTERFACE_MODE_RGMII_ID:
3436 case PHY_INTERFACE_MODE_SGMII:
Stefan Chulski237105f2021-05-03 08:08:46 +02003437 case PHY_INTERFACE_MODE_1000BASEX:
3438 case PHY_INTERFACE_MODE_2500BASEX:
Stefan Roese40e749b2017-03-22 15:07:30 +01003439 if (enable)
3440 mvpp2_port_enable(port);
3441 else
3442 mvpp2_port_disable(port);
3443 break;
3444
Stefan Roese01647642017-03-22 15:09:38 +01003445 case PHY_INTERFACE_MODE_SFI:
3446 gop_xlg_mac_port_enable(port, enable);
3447
3448 break;
Stefan Roese40e749b2017-03-22 15:07:30 +01003449 default:
Sean Andersonc7cbf092020-09-15 10:44:57 -04003450 log_err("%s: Wrong port mode (%d)\n", __func__,
3451 port->phy_interface);
Stefan Roese40e749b2017-03-22 15:07:30 +01003452 return;
3453 }
3454}
3455
3456/* RFU1 functions */
3457static inline u32 gop_rfu1_read(struct mvpp2 *priv, u32 offset)
3458{
3459 return readl(priv->rfu1_base + offset);
3460}
3461
3462static inline void gop_rfu1_write(struct mvpp2 *priv, u32 offset, u32 data)
3463{
3464 writel(data, priv->rfu1_base + offset);
3465}
3466
3467static u32 mvpp2_netc_cfg_create(int gop_id, phy_interface_t phy_type)
3468{
3469 u32 val = 0;
3470
3471 if (gop_id == 2) {
Stefan Chulski237105f2021-05-03 08:08:46 +02003472 if (phy_type == PHY_INTERFACE_MODE_SGMII ||
3473 phy_type == PHY_INTERFACE_MODE_1000BASEX ||
3474 phy_type == PHY_INTERFACE_MODE_2500BASEX)
Stefan Roese40e749b2017-03-22 15:07:30 +01003475 val |= MV_NETC_GE_MAC2_SGMII;
Stefan Chulskib3f12b52021-05-03 08:08:45 +02003476 else if (phy_type == PHY_INTERFACE_MODE_RGMII ||
3477 phy_type == PHY_INTERFACE_MODE_RGMII_ID)
3478 val |= MV_NETC_GE_MAC2_RGMII;
Stefan Roese40e749b2017-03-22 15:07:30 +01003479 }
3480
3481 if (gop_id == 3) {
Stefan Chulski237105f2021-05-03 08:08:46 +02003482 if (phy_type == PHY_INTERFACE_MODE_SGMII ||
3483 phy_type == PHY_INTERFACE_MODE_1000BASEX ||
3484 phy_type == PHY_INTERFACE_MODE_2500BASEX)
Stefan Roese40e749b2017-03-22 15:07:30 +01003485 val |= MV_NETC_GE_MAC3_SGMII;
3486 else if (phy_type == PHY_INTERFACE_MODE_RGMII ||
3487 phy_type == PHY_INTERFACE_MODE_RGMII_ID)
3488 val |= MV_NETC_GE_MAC3_RGMII;
3489 }
3490
3491 return val;
3492}
3493
3494static void gop_netc_active_port(struct mvpp2 *priv, int gop_id, u32 val)
3495{
3496 u32 reg;
3497
3498 reg = gop_rfu1_read(priv, NETCOMP_PORTS_CONTROL_1_REG);
3499 reg &= ~(NETC_PORTS_ACTIVE_MASK(gop_id));
3500
3501 val <<= NETC_PORTS_ACTIVE_OFFSET(gop_id);
3502 val &= NETC_PORTS_ACTIVE_MASK(gop_id);
3503
3504 reg |= val;
3505
3506 gop_rfu1_write(priv, NETCOMP_PORTS_CONTROL_1_REG, reg);
3507}
3508
3509static void gop_netc_mii_mode(struct mvpp2 *priv, int gop_id, u32 val)
3510{
3511 u32 reg;
3512
3513 reg = gop_rfu1_read(priv, NETCOMP_CONTROL_0_REG);
3514 reg &= ~NETC_GBE_PORT1_MII_MODE_MASK;
3515
3516 val <<= NETC_GBE_PORT1_MII_MODE_OFFS;
3517 val &= NETC_GBE_PORT1_MII_MODE_MASK;
3518
3519 reg |= val;
3520
3521 gop_rfu1_write(priv, NETCOMP_CONTROL_0_REG, reg);
3522}
3523
3524static void gop_netc_gop_reset(struct mvpp2 *priv, u32 val)
3525{
3526 u32 reg;
3527
3528 reg = gop_rfu1_read(priv, GOP_SOFT_RESET_1_REG);
3529 reg &= ~NETC_GOP_SOFT_RESET_MASK;
3530
3531 val <<= NETC_GOP_SOFT_RESET_OFFS;
3532 val &= NETC_GOP_SOFT_RESET_MASK;
3533
3534 reg |= val;
3535
3536 gop_rfu1_write(priv, GOP_SOFT_RESET_1_REG, reg);
3537}
3538
3539static void gop_netc_gop_clock_logic_set(struct mvpp2 *priv, u32 val)
3540{
3541 u32 reg;
3542
3543 reg = gop_rfu1_read(priv, NETCOMP_PORTS_CONTROL_0_REG);
3544 reg &= ~NETC_CLK_DIV_PHASE_MASK;
3545
3546 val <<= NETC_CLK_DIV_PHASE_OFFS;
3547 val &= NETC_CLK_DIV_PHASE_MASK;
3548
3549 reg |= val;
3550
3551 gop_rfu1_write(priv, NETCOMP_PORTS_CONTROL_0_REG, reg);
3552}
3553
3554static void gop_netc_port_rf_reset(struct mvpp2 *priv, int gop_id, u32 val)
3555{
3556 u32 reg;
3557
3558 reg = gop_rfu1_read(priv, NETCOMP_PORTS_CONTROL_1_REG);
3559 reg &= ~(NETC_PORT_GIG_RF_RESET_MASK(gop_id));
3560
3561 val <<= NETC_PORT_GIG_RF_RESET_OFFS(gop_id);
3562 val &= NETC_PORT_GIG_RF_RESET_MASK(gop_id);
3563
3564 reg |= val;
3565
3566 gop_rfu1_write(priv, NETCOMP_PORTS_CONTROL_1_REG, reg);
3567}
3568
3569static void gop_netc_gbe_sgmii_mode_select(struct mvpp2 *priv, int gop_id,
3570 u32 val)
3571{
3572 u32 reg, mask, offset;
3573
3574 if (gop_id == 2) {
3575 mask = NETC_GBE_PORT0_SGMII_MODE_MASK;
3576 offset = NETC_GBE_PORT0_SGMII_MODE_OFFS;
3577 } else {
3578 mask = NETC_GBE_PORT1_SGMII_MODE_MASK;
3579 offset = NETC_GBE_PORT1_SGMII_MODE_OFFS;
3580 }
3581 reg = gop_rfu1_read(priv, NETCOMP_CONTROL_0_REG);
3582 reg &= ~mask;
3583
3584 val <<= offset;
3585 val &= mask;
3586
3587 reg |= val;
3588
3589 gop_rfu1_write(priv, NETCOMP_CONTROL_0_REG, reg);
3590}
3591
3592static void gop_netc_bus_width_select(struct mvpp2 *priv, u32 val)
3593{
3594 u32 reg;
3595
3596 reg = gop_rfu1_read(priv, NETCOMP_PORTS_CONTROL_0_REG);
3597 reg &= ~NETC_BUS_WIDTH_SELECT_MASK;
3598
3599 val <<= NETC_BUS_WIDTH_SELECT_OFFS;
3600 val &= NETC_BUS_WIDTH_SELECT_MASK;
3601
3602 reg |= val;
3603
3604 gop_rfu1_write(priv, NETCOMP_PORTS_CONTROL_0_REG, reg);
3605}
3606
3607static void gop_netc_sample_stages_timing(struct mvpp2 *priv, u32 val)
3608{
3609 u32 reg;
3610
3611 reg = gop_rfu1_read(priv, NETCOMP_PORTS_CONTROL_0_REG);
3612 reg &= ~NETC_GIG_RX_DATA_SAMPLE_MASK;
3613
3614 val <<= NETC_GIG_RX_DATA_SAMPLE_OFFS;
3615 val &= NETC_GIG_RX_DATA_SAMPLE_MASK;
3616
3617 reg |= val;
3618
3619 gop_rfu1_write(priv, NETCOMP_PORTS_CONTROL_0_REG, reg);
3620}
3621
3622static void gop_netc_mac_to_xgmii(struct mvpp2 *priv, int gop_id,
3623 enum mv_netc_phase phase)
3624{
3625 switch (phase) {
3626 case MV_NETC_FIRST_PHASE:
3627 /* Set Bus Width to HB mode = 1 */
3628 gop_netc_bus_width_select(priv, 1);
3629 /* Select RGMII mode */
3630 gop_netc_gbe_sgmii_mode_select(priv, gop_id, MV_NETC_GBE_XMII);
3631 break;
3632
3633 case MV_NETC_SECOND_PHASE:
3634 /* De-assert the relevant port HB reset */
3635 gop_netc_port_rf_reset(priv, gop_id, 1);
3636 break;
3637 }
3638}
3639
3640static void gop_netc_mac_to_sgmii(struct mvpp2 *priv, int gop_id,
3641 enum mv_netc_phase phase)
3642{
3643 switch (phase) {
3644 case MV_NETC_FIRST_PHASE:
3645 /* Set Bus Width to HB mode = 1 */
3646 gop_netc_bus_width_select(priv, 1);
3647 /* Select SGMII mode */
3648 if (gop_id >= 1) {
3649 gop_netc_gbe_sgmii_mode_select(priv, gop_id,
3650 MV_NETC_GBE_SGMII);
3651 }
3652
3653 /* Configure the sample stages */
3654 gop_netc_sample_stages_timing(priv, 0);
3655 /* Configure the ComPhy Selector */
3656 /* gop_netc_com_phy_selector_config(netComplex); */
3657 break;
3658
3659 case MV_NETC_SECOND_PHASE:
3660 /* De-assert the relevant port HB reset */
3661 gop_netc_port_rf_reset(priv, gop_id, 1);
3662 break;
3663 }
3664}
3665
3666static int gop_netc_init(struct mvpp2 *priv, enum mv_netc_phase phase)
3667{
3668 u32 c = priv->netc_config;
3669
3670 if (c & MV_NETC_GE_MAC2_SGMII)
3671 gop_netc_mac_to_sgmii(priv, 2, phase);
Stefan Chulskib3f12b52021-05-03 08:08:45 +02003672 else if (c & MV_NETC_GE_MAC2_RGMII)
Stefan Roese40e749b2017-03-22 15:07:30 +01003673 gop_netc_mac_to_xgmii(priv, 2, phase);
3674
3675 if (c & MV_NETC_GE_MAC3_SGMII) {
3676 gop_netc_mac_to_sgmii(priv, 3, phase);
3677 } else {
3678 gop_netc_mac_to_xgmii(priv, 3, phase);
3679 if (c & MV_NETC_GE_MAC3_RGMII)
3680 gop_netc_mii_mode(priv, 3, MV_NETC_GBE_RGMII);
3681 else
3682 gop_netc_mii_mode(priv, 3, MV_NETC_GBE_MII);
3683 }
3684
3685 /* Activate gop ports 0, 2, 3 */
3686 gop_netc_active_port(priv, 0, 1);
3687 gop_netc_active_port(priv, 2, 1);
3688 gop_netc_active_port(priv, 3, 1);
3689
3690 if (phase == MV_NETC_SECOND_PHASE) {
3691 /* Enable the GOP internal clock logic */
3692 gop_netc_gop_clock_logic_set(priv, 1);
3693 /* De-assert GOP unit reset */
3694 gop_netc_gop_reset(priv, 1);
3695 }
3696
3697 return 0;
3698}
3699
Stefan Roese96c19042016-02-10 07:22:10 +01003700/* Set defaults to the MVPP2 port */
3701static void mvpp2_defaults_set(struct mvpp2_port *port)
3702{
3703 int tx_port_num, val, queue, ptxq, lrxq;
3704
Thomas Petazzoni58159ee2017-02-16 06:57:24 +01003705 if (port->priv->hw_version == MVPP21) {
3706 /* Configure port to loopback if needed */
3707 if (port->flags & MVPP2_F_LOOPBACK)
3708 mvpp2_port_loopback_set(port);
Stefan Roese96c19042016-02-10 07:22:10 +01003709
Thomas Petazzoni58159ee2017-02-16 06:57:24 +01003710 /* Update TX FIFO MIN Threshold */
3711 val = readl(port->base + MVPP2_GMAC_PORT_FIFO_CFG_1_REG);
3712 val &= ~MVPP2_GMAC_TX_FIFO_MIN_TH_ALL_MASK;
3713 /* Min. TX threshold must be less than minimal packet length */
3714 val |= MVPP2_GMAC_TX_FIFO_MIN_TH_MASK(64 - 4 - 2);
3715 writel(val, port->base + MVPP2_GMAC_PORT_FIFO_CFG_1_REG);
3716 }
Stefan Roese96c19042016-02-10 07:22:10 +01003717
3718 /* Disable Legacy WRR, Disable EJP, Release from reset */
3719 tx_port_num = mvpp2_egress_port(port);
3720 mvpp2_write(port->priv, MVPP2_TXP_SCHED_PORT_INDEX_REG,
3721 tx_port_num);
3722 mvpp2_write(port->priv, MVPP2_TXP_SCHED_CMD_1_REG, 0);
3723
3724 /* Close bandwidth for all queues */
3725 for (queue = 0; queue < MVPP2_MAX_TXQ; queue++) {
3726 ptxq = mvpp2_txq_phys(port->id, queue);
3727 mvpp2_write(port->priv,
3728 MVPP2_TXQ_SCHED_TOKEN_CNTR_REG(ptxq), 0);
3729 }
3730
3731 /* Set refill period to 1 usec, refill tokens
3732 * and bucket size to maximum
3733 */
3734 mvpp2_write(port->priv, MVPP2_TXP_SCHED_PERIOD_REG, 0xc8);
3735 val = mvpp2_read(port->priv, MVPP2_TXP_SCHED_REFILL_REG);
3736 val &= ~MVPP2_TXP_REFILL_PERIOD_ALL_MASK;
3737 val |= MVPP2_TXP_REFILL_PERIOD_MASK(1);
3738 val |= MVPP2_TXP_REFILL_TOKENS_ALL_MASK;
3739 mvpp2_write(port->priv, MVPP2_TXP_SCHED_REFILL_REG, val);
3740 val = MVPP2_TXP_TOKEN_SIZE_MAX;
3741 mvpp2_write(port->priv, MVPP2_TXP_SCHED_TOKEN_SIZE_REG, val);
3742
3743 /* Set MaximumLowLatencyPacketSize value to 256 */
3744 mvpp2_write(port->priv, MVPP2_RX_CTRL_REG(port->id),
3745 MVPP2_RX_USE_PSEUDO_FOR_CSUM_MASK |
3746 MVPP2_RX_LOW_LATENCY_PKT_SIZE(256));
3747
3748 /* Enable Rx cache snoop */
3749 for (lrxq = 0; lrxq < rxq_number; lrxq++) {
3750 queue = port->rxqs[lrxq]->id;
3751 val = mvpp2_read(port->priv, MVPP2_RXQ_CONFIG_REG(queue));
3752 val |= MVPP2_SNOOP_PKT_SIZE_MASK |
3753 MVPP2_SNOOP_BUF_HDR_MASK;
3754 mvpp2_write(port->priv, MVPP2_RXQ_CONFIG_REG(queue), val);
3755 }
3756}
3757
3758/* Enable/disable receiving packets */
3759static void mvpp2_ingress_enable(struct mvpp2_port *port)
3760{
3761 u32 val;
3762 int lrxq, queue;
3763
3764 for (lrxq = 0; lrxq < rxq_number; lrxq++) {
3765 queue = port->rxqs[lrxq]->id;
3766 val = mvpp2_read(port->priv, MVPP2_RXQ_CONFIG_REG(queue));
3767 val &= ~MVPP2_RXQ_DISABLE_MASK;
3768 mvpp2_write(port->priv, MVPP2_RXQ_CONFIG_REG(queue), val);
3769 }
3770}
3771
3772static void mvpp2_ingress_disable(struct mvpp2_port *port)
3773{
3774 u32 val;
3775 int lrxq, queue;
3776
3777 for (lrxq = 0; lrxq < rxq_number; lrxq++) {
3778 queue = port->rxqs[lrxq]->id;
3779 val = mvpp2_read(port->priv, MVPP2_RXQ_CONFIG_REG(queue));
3780 val |= MVPP2_RXQ_DISABLE_MASK;
3781 mvpp2_write(port->priv, MVPP2_RXQ_CONFIG_REG(queue), val);
3782 }
3783}
3784
3785/* Enable transmit via physical egress queue
3786 * - HW starts take descriptors from DRAM
3787 */
3788static void mvpp2_egress_enable(struct mvpp2_port *port)
3789{
3790 u32 qmap;
3791 int queue;
3792 int tx_port_num = mvpp2_egress_port(port);
3793
3794 /* Enable all initialized TXs. */
3795 qmap = 0;
3796 for (queue = 0; queue < txq_number; queue++) {
3797 struct mvpp2_tx_queue *txq = port->txqs[queue];
3798
3799 if (txq->descs != NULL)
3800 qmap |= (1 << queue);
3801 }
3802
3803 mvpp2_write(port->priv, MVPP2_TXP_SCHED_PORT_INDEX_REG, tx_port_num);
3804 mvpp2_write(port->priv, MVPP2_TXP_SCHED_Q_CMD_REG, qmap);
3805}
3806
3807/* Disable transmit via physical egress queue
3808 * - HW doesn't take descriptors from DRAM
3809 */
3810static void mvpp2_egress_disable(struct mvpp2_port *port)
3811{
3812 u32 reg_data;
3813 int delay;
3814 int tx_port_num = mvpp2_egress_port(port);
3815
3816 /* Issue stop command for active channels only */
3817 mvpp2_write(port->priv, MVPP2_TXP_SCHED_PORT_INDEX_REG, tx_port_num);
3818 reg_data = (mvpp2_read(port->priv, MVPP2_TXP_SCHED_Q_CMD_REG)) &
3819 MVPP2_TXP_SCHED_ENQ_MASK;
3820 if (reg_data != 0)
3821 mvpp2_write(port->priv, MVPP2_TXP_SCHED_Q_CMD_REG,
3822 (reg_data << MVPP2_TXP_SCHED_DISQ_OFFSET));
3823
3824 /* Wait for all Tx activity to terminate. */
3825 delay = 0;
3826 do {
3827 if (delay >= MVPP2_TX_DISABLE_TIMEOUT_MSEC) {
Sean Andersonc7cbf092020-09-15 10:44:57 -04003828 dev_warn(port->phy_dev->dev,
3829 "Tx stop timed out, status=0x%08x\n",
3830 reg_data);
Stefan Roese96c19042016-02-10 07:22:10 +01003831 break;
3832 }
3833 mdelay(1);
3834 delay++;
3835
3836 /* Check port TX Command register that all
3837 * Tx queues are stopped
3838 */
3839 reg_data = mvpp2_read(port->priv, MVPP2_TXP_SCHED_Q_CMD_REG);
3840 } while (reg_data & MVPP2_TXP_SCHED_ENQ_MASK);
3841}
3842
3843/* Rx descriptors helper methods */
3844
3845/* Get number of Rx descriptors occupied by received packets */
3846static inline int
3847mvpp2_rxq_received(struct mvpp2_port *port, int rxq_id)
3848{
3849 u32 val = mvpp2_read(port->priv, MVPP2_RXQ_STATUS_REG(rxq_id));
3850
3851 return val & MVPP2_RXQ_OCCUPIED_MASK;
3852}
3853
3854/* Update Rx queue status with the number of occupied and available
3855 * Rx descriptor slots.
3856 */
3857static inline void
3858mvpp2_rxq_status_update(struct mvpp2_port *port, int rxq_id,
3859 int used_count, int free_count)
3860{
3861 /* Decrement the number of used descriptors and increment count
3862 * increment the number of free descriptors.
3863 */
3864 u32 val = used_count | (free_count << MVPP2_RXQ_NUM_NEW_OFFSET);
3865
3866 mvpp2_write(port->priv, MVPP2_RXQ_STATUS_UPDATE_REG(rxq_id), val);
3867}
3868
3869/* Get pointer to next RX descriptor to be processed by SW */
3870static inline struct mvpp2_rx_desc *
3871mvpp2_rxq_next_desc_get(struct mvpp2_rx_queue *rxq)
3872{
3873 int rx_desc = rxq->next_desc_to_proc;
3874
3875 rxq->next_desc_to_proc = MVPP2_QUEUE_NEXT_DESC(rxq, rx_desc);
3876 prefetch(rxq->descs + rxq->next_desc_to_proc);
3877 return rxq->descs + rx_desc;
3878}
3879
3880/* Set rx queue offset */
3881static void mvpp2_rxq_offset_set(struct mvpp2_port *port,
3882 int prxq, int offset)
3883{
3884 u32 val;
3885
3886 /* Convert offset from bytes to units of 32 bytes */
3887 offset = offset >> 5;
3888
3889 val = mvpp2_read(port->priv, MVPP2_RXQ_CONFIG_REG(prxq));
3890 val &= ~MVPP2_RXQ_PACKET_OFFSET_MASK;
3891
3892 /* Offset is in */
3893 val |= ((offset << MVPP2_RXQ_PACKET_OFFSET_OFFS) &
3894 MVPP2_RXQ_PACKET_OFFSET_MASK);
3895
3896 mvpp2_write(port->priv, MVPP2_RXQ_CONFIG_REG(prxq), val);
3897}
3898
3899/* Obtain BM cookie information from descriptor */
Thomas Petazzonifb3a7bb2017-02-15 15:35:00 +01003900static u32 mvpp2_bm_cookie_build(struct mvpp2_port *port,
3901 struct mvpp2_rx_desc *rx_desc)
Stefan Roese96c19042016-02-10 07:22:10 +01003902{
Stefan Roese96c19042016-02-10 07:22:10 +01003903 int cpu = smp_processor_id();
Thomas Petazzonifb3a7bb2017-02-15 15:35:00 +01003904 int pool;
3905
3906 pool = (mvpp2_rxdesc_status_get(port, rx_desc) &
3907 MVPP2_RXD_BM_POOL_ID_MASK) >>
3908 MVPP2_RXD_BM_POOL_ID_OFFS;
Stefan Roese96c19042016-02-10 07:22:10 +01003909
3910 return ((pool & 0xFF) << MVPP2_BM_COOKIE_POOL_OFFS) |
3911 ((cpu & 0xFF) << MVPP2_BM_COOKIE_CPU_OFFS);
3912}
3913
3914/* Tx descriptors helper methods */
3915
3916/* Get number of Tx descriptors waiting to be transmitted by HW */
3917static int mvpp2_txq_pend_desc_num_get(struct mvpp2_port *port,
3918 struct mvpp2_tx_queue *txq)
3919{
3920 u32 val;
3921
3922 mvpp2_write(port->priv, MVPP2_TXQ_NUM_REG, txq->id);
3923 val = mvpp2_read(port->priv, MVPP2_TXQ_PENDING_REG);
3924
3925 return val & MVPP2_TXQ_PENDING_MASK;
3926}
3927
3928/* Get pointer to next Tx descriptor to be processed (send) by HW */
3929static struct mvpp2_tx_desc *
3930mvpp2_txq_next_desc_get(struct mvpp2_tx_queue *txq)
3931{
3932 int tx_desc = txq->next_desc_to_proc;
3933
3934 txq->next_desc_to_proc = MVPP2_QUEUE_NEXT_DESC(txq, tx_desc);
3935 return txq->descs + tx_desc;
3936}
3937
3938/* Update HW with number of aggregated Tx descriptors to be sent */
3939static void mvpp2_aggr_txq_pend_desc_add(struct mvpp2_port *port, int pending)
3940{
3941 /* aggregated access - relevant TXQ number is written in TX desc */
3942 mvpp2_write(port->priv, MVPP2_AGGR_TXQ_UPDATE_REG, pending);
3943}
3944
3945/* Get number of sent descriptors and decrement counter.
3946 * The number of sent descriptors is returned.
3947 * Per-CPU access
3948 */
3949static inline int mvpp2_txq_sent_desc_proc(struct mvpp2_port *port,
3950 struct mvpp2_tx_queue *txq)
3951{
3952 u32 val;
3953
3954 /* Reading status reg resets transmitted descriptor counter */
3955 val = mvpp2_read(port->priv, MVPP2_TXQ_SENT_REG(txq->id));
3956
3957 return (val & MVPP2_TRANSMITTED_COUNT_MASK) >>
3958 MVPP2_TRANSMITTED_COUNT_OFFSET;
3959}
3960
3961static void mvpp2_txq_sent_counter_clear(void *arg)
3962{
3963 struct mvpp2_port *port = arg;
3964 int queue;
3965
3966 for (queue = 0; queue < txq_number; queue++) {
3967 int id = port->txqs[queue]->id;
3968
3969 mvpp2_read(port->priv, MVPP2_TXQ_SENT_REG(id));
3970 }
3971}
3972
3973/* Set max sizes for Tx queues */
3974static void mvpp2_txp_max_tx_size_set(struct mvpp2_port *port)
3975{
3976 u32 val, size, mtu;
3977 int txq, tx_port_num;
3978
3979 mtu = port->pkt_size * 8;
3980 if (mtu > MVPP2_TXP_MTU_MAX)
3981 mtu = MVPP2_TXP_MTU_MAX;
3982
3983 /* WA for wrong Token bucket update: Set MTU value = 3*real MTU value */
3984 mtu = 3 * mtu;
3985
3986 /* Indirect access to registers */
3987 tx_port_num = mvpp2_egress_port(port);
3988 mvpp2_write(port->priv, MVPP2_TXP_SCHED_PORT_INDEX_REG, tx_port_num);
3989
3990 /* Set MTU */
3991 val = mvpp2_read(port->priv, MVPP2_TXP_SCHED_MTU_REG);
3992 val &= ~MVPP2_TXP_MTU_MAX;
3993 val |= mtu;
3994 mvpp2_write(port->priv, MVPP2_TXP_SCHED_MTU_REG, val);
3995
3996 /* TXP token size and all TXQs token size must be larger that MTU */
3997 val = mvpp2_read(port->priv, MVPP2_TXP_SCHED_TOKEN_SIZE_REG);
3998 size = val & MVPP2_TXP_TOKEN_SIZE_MAX;
3999 if (size < mtu) {
4000 size = mtu;
4001 val &= ~MVPP2_TXP_TOKEN_SIZE_MAX;
4002 val |= size;
4003 mvpp2_write(port->priv, MVPP2_TXP_SCHED_TOKEN_SIZE_REG, val);
4004 }
4005
4006 for (txq = 0; txq < txq_number; txq++) {
4007 val = mvpp2_read(port->priv,
4008 MVPP2_TXQ_SCHED_TOKEN_SIZE_REG(txq));
4009 size = val & MVPP2_TXQ_TOKEN_SIZE_MAX;
4010
4011 if (size < mtu) {
4012 size = mtu;
4013 val &= ~MVPP2_TXQ_TOKEN_SIZE_MAX;
4014 val |= size;
4015 mvpp2_write(port->priv,
4016 MVPP2_TXQ_SCHED_TOKEN_SIZE_REG(txq),
4017 val);
4018 }
4019 }
4020}
4021
4022/* Free Tx queue skbuffs */
4023static void mvpp2_txq_bufs_free(struct mvpp2_port *port,
4024 struct mvpp2_tx_queue *txq,
4025 struct mvpp2_txq_pcpu *txq_pcpu, int num)
4026{
4027 int i;
4028
4029 for (i = 0; i < num; i++)
4030 mvpp2_txq_inc_get(txq_pcpu);
4031}
4032
4033static inline struct mvpp2_rx_queue *mvpp2_get_rx_queue(struct mvpp2_port *port,
4034 u32 cause)
4035{
4036 int queue = fls(cause) - 1;
4037
4038 return port->rxqs[queue];
4039}
4040
4041static inline struct mvpp2_tx_queue *mvpp2_get_tx_queue(struct mvpp2_port *port,
4042 u32 cause)
4043{
4044 int queue = fls(cause) - 1;
4045
4046 return port->txqs[queue];
4047}
4048
4049/* Rx/Tx queue initialization/cleanup methods */
4050
4051/* Allocate and initialize descriptors for aggr TXQ */
4052static int mvpp2_aggr_txq_init(struct udevice *dev,
4053 struct mvpp2_tx_queue *aggr_txq,
4054 int desc_num, int cpu,
4055 struct mvpp2 *priv)
4056{
Thomas Petazzoni7f215c72017-02-20 11:36:57 +01004057 u32 txq_dma;
4058
Stefan Roese96c19042016-02-10 07:22:10 +01004059 /* Allocate memory for TX descriptors */
4060 aggr_txq->descs = buffer_loc.aggr_tx_descs;
Thomas Petazzonic49aff22017-02-20 10:27:51 +01004061 aggr_txq->descs_dma = (dma_addr_t)buffer_loc.aggr_tx_descs;
Stefan Roese96c19042016-02-10 07:22:10 +01004062 if (!aggr_txq->descs)
4063 return -ENOMEM;
4064
4065 /* Make sure descriptor address is cache line size aligned */
4066 BUG_ON(aggr_txq->descs !=
4067 PTR_ALIGN(aggr_txq->descs, MVPP2_CPU_D_CACHE_LINE_SIZE));
4068
4069 aggr_txq->last_desc = aggr_txq->size - 1;
4070
4071 /* Aggr TXQ no reset WA */
4072 aggr_txq->next_desc_to_proc = mvpp2_read(priv,
4073 MVPP2_AGGR_TXQ_INDEX_REG(cpu));
4074
Thomas Petazzoni7f215c72017-02-20 11:36:57 +01004075 /* Set Tx descriptors queue starting address indirect
4076 * access
4077 */
4078 if (priv->hw_version == MVPP21)
4079 txq_dma = aggr_txq->descs_dma;
4080 else
4081 txq_dma = aggr_txq->descs_dma >>
4082 MVPP22_AGGR_TXQ_DESC_ADDR_OFFS;
4083
4084 mvpp2_write(priv, MVPP2_AGGR_TXQ_DESC_ADDR_REG(cpu), txq_dma);
Stefan Roese96c19042016-02-10 07:22:10 +01004085 mvpp2_write(priv, MVPP2_AGGR_TXQ_DESC_SIZE_REG(cpu), desc_num);
4086
4087 return 0;
4088}
4089
4090/* Create a specified Rx queue */
4091static int mvpp2_rxq_init(struct mvpp2_port *port,
4092 struct mvpp2_rx_queue *rxq)
4093
4094{
Thomas Petazzoni7f215c72017-02-20 11:36:57 +01004095 u32 rxq_dma;
4096
Stefan Roese96c19042016-02-10 07:22:10 +01004097 rxq->size = port->rx_ring_size;
4098
4099 /* Allocate memory for RX descriptors */
4100 rxq->descs = buffer_loc.rx_descs;
Thomas Petazzonic49aff22017-02-20 10:27:51 +01004101 rxq->descs_dma = (dma_addr_t)buffer_loc.rx_descs;
Stefan Roese96c19042016-02-10 07:22:10 +01004102 if (!rxq->descs)
4103 return -ENOMEM;
4104
4105 BUG_ON(rxq->descs !=
4106 PTR_ALIGN(rxq->descs, MVPP2_CPU_D_CACHE_LINE_SIZE));
4107
4108 rxq->last_desc = rxq->size - 1;
4109
4110 /* Zero occupied and non-occupied counters - direct access */
4111 mvpp2_write(port->priv, MVPP2_RXQ_STATUS_REG(rxq->id), 0);
4112
4113 /* Set Rx descriptors queue starting address - indirect access */
4114 mvpp2_write(port->priv, MVPP2_RXQ_NUM_REG, rxq->id);
Thomas Petazzoni7f215c72017-02-20 11:36:57 +01004115 if (port->priv->hw_version == MVPP21)
4116 rxq_dma = rxq->descs_dma;
4117 else
4118 rxq_dma = rxq->descs_dma >> MVPP22_DESC_ADDR_OFFS;
4119 mvpp2_write(port->priv, MVPP2_RXQ_DESC_ADDR_REG, rxq_dma);
Stefan Roese96c19042016-02-10 07:22:10 +01004120 mvpp2_write(port->priv, MVPP2_RXQ_DESC_SIZE_REG, rxq->size);
4121 mvpp2_write(port->priv, MVPP2_RXQ_INDEX_REG, 0);
4122
4123 /* Set Offset */
4124 mvpp2_rxq_offset_set(port, rxq->id, NET_SKB_PAD);
4125
4126 /* Add number of descriptors ready for receiving packets */
4127 mvpp2_rxq_status_update(port, rxq->id, 0, rxq->size);
4128
4129 return 0;
4130}
4131
4132/* Push packets received by the RXQ to BM pool */
4133static void mvpp2_rxq_drop_pkts(struct mvpp2_port *port,
4134 struct mvpp2_rx_queue *rxq)
4135{
4136 int rx_received, i;
4137
4138 rx_received = mvpp2_rxq_received(port, rxq->id);
4139 if (!rx_received)
4140 return;
4141
4142 for (i = 0; i < rx_received; i++) {
4143 struct mvpp2_rx_desc *rx_desc = mvpp2_rxq_next_desc_get(rxq);
Thomas Petazzonifb3a7bb2017-02-15 15:35:00 +01004144 u32 bm = mvpp2_bm_cookie_build(port, rx_desc);
Stefan Roese96c19042016-02-10 07:22:10 +01004145
Thomas Petazzonifb3a7bb2017-02-15 15:35:00 +01004146 mvpp2_pool_refill(port, bm,
4147 mvpp2_rxdesc_dma_addr_get(port, rx_desc),
4148 mvpp2_rxdesc_cookie_get(port, rx_desc));
Stefan Roese96c19042016-02-10 07:22:10 +01004149 }
4150 mvpp2_rxq_status_update(port, rxq->id, rx_received, rx_received);
4151}
4152
4153/* Cleanup Rx queue */
4154static void mvpp2_rxq_deinit(struct mvpp2_port *port,
4155 struct mvpp2_rx_queue *rxq)
4156{
4157 mvpp2_rxq_drop_pkts(port, rxq);
4158
4159 rxq->descs = NULL;
4160 rxq->last_desc = 0;
4161 rxq->next_desc_to_proc = 0;
Thomas Petazzonic49aff22017-02-20 10:27:51 +01004162 rxq->descs_dma = 0;
Stefan Roese96c19042016-02-10 07:22:10 +01004163
4164 /* Clear Rx descriptors queue starting address and size;
4165 * free descriptor number
4166 */
4167 mvpp2_write(port->priv, MVPP2_RXQ_STATUS_REG(rxq->id), 0);
4168 mvpp2_write(port->priv, MVPP2_RXQ_NUM_REG, rxq->id);
4169 mvpp2_write(port->priv, MVPP2_RXQ_DESC_ADDR_REG, 0);
4170 mvpp2_write(port->priv, MVPP2_RXQ_DESC_SIZE_REG, 0);
4171}
4172
4173/* Create and initialize a Tx queue */
4174static int mvpp2_txq_init(struct mvpp2_port *port,
4175 struct mvpp2_tx_queue *txq)
4176{
4177 u32 val;
4178 int cpu, desc, desc_per_txq, tx_port_num;
4179 struct mvpp2_txq_pcpu *txq_pcpu;
4180
4181 txq->size = port->tx_ring_size;
4182
4183 /* Allocate memory for Tx descriptors */
4184 txq->descs = buffer_loc.tx_descs;
Thomas Petazzonic49aff22017-02-20 10:27:51 +01004185 txq->descs_dma = (dma_addr_t)buffer_loc.tx_descs;
Stefan Roese96c19042016-02-10 07:22:10 +01004186 if (!txq->descs)
4187 return -ENOMEM;
4188
4189 /* Make sure descriptor address is cache line size aligned */
4190 BUG_ON(txq->descs !=
4191 PTR_ALIGN(txq->descs, MVPP2_CPU_D_CACHE_LINE_SIZE));
4192
4193 txq->last_desc = txq->size - 1;
4194
4195 /* Set Tx descriptors queue starting address - indirect access */
4196 mvpp2_write(port->priv, MVPP2_TXQ_NUM_REG, txq->id);
Thomas Petazzonic49aff22017-02-20 10:27:51 +01004197 mvpp2_write(port->priv, MVPP2_TXQ_DESC_ADDR_REG, txq->descs_dma);
Stefan Roese96c19042016-02-10 07:22:10 +01004198 mvpp2_write(port->priv, MVPP2_TXQ_DESC_SIZE_REG, txq->size &
4199 MVPP2_TXQ_DESC_SIZE_MASK);
4200 mvpp2_write(port->priv, MVPP2_TXQ_INDEX_REG, 0);
4201 mvpp2_write(port->priv, MVPP2_TXQ_RSVD_CLR_REG,
4202 txq->id << MVPP2_TXQ_RSVD_CLR_OFFSET);
4203 val = mvpp2_read(port->priv, MVPP2_TXQ_PENDING_REG);
4204 val &= ~MVPP2_TXQ_PENDING_MASK;
4205 mvpp2_write(port->priv, MVPP2_TXQ_PENDING_REG, val);
4206
4207 /* Calculate base address in prefetch buffer. We reserve 16 descriptors
4208 * for each existing TXQ.
4209 * TCONTS for PON port must be continuous from 0 to MVPP2_MAX_TCONT
4210 * GBE ports assumed to be continious from 0 to MVPP2_MAX_PORTS
4211 */
4212 desc_per_txq = 16;
4213 desc = (port->id * MVPP2_MAX_TXQ * desc_per_txq) +
4214 (txq->log_id * desc_per_txq);
4215
4216 mvpp2_write(port->priv, MVPP2_TXQ_PREF_BUF_REG,
4217 MVPP2_PREF_BUF_PTR(desc) | MVPP2_PREF_BUF_SIZE_16 |
Thomas Petazzoni5555f072017-02-16 08:03:37 +01004218 MVPP2_PREF_BUF_THRESH(desc_per_txq / 2));
Stefan Roese96c19042016-02-10 07:22:10 +01004219
4220 /* WRR / EJP configuration - indirect access */
4221 tx_port_num = mvpp2_egress_port(port);
4222 mvpp2_write(port->priv, MVPP2_TXP_SCHED_PORT_INDEX_REG, tx_port_num);
4223
4224 val = mvpp2_read(port->priv, MVPP2_TXQ_SCHED_REFILL_REG(txq->log_id));
4225 val &= ~MVPP2_TXQ_REFILL_PERIOD_ALL_MASK;
4226 val |= MVPP2_TXQ_REFILL_PERIOD_MASK(1);
4227 val |= MVPP2_TXQ_REFILL_TOKENS_ALL_MASK;
4228 mvpp2_write(port->priv, MVPP2_TXQ_SCHED_REFILL_REG(txq->log_id), val);
4229
4230 val = MVPP2_TXQ_TOKEN_SIZE_MAX;
4231 mvpp2_write(port->priv, MVPP2_TXQ_SCHED_TOKEN_SIZE_REG(txq->log_id),
4232 val);
4233
4234 for_each_present_cpu(cpu) {
4235 txq_pcpu = per_cpu_ptr(txq->pcpu, cpu);
4236 txq_pcpu->size = txq->size;
4237 }
4238
4239 return 0;
4240}
4241
4242/* Free allocated TXQ resources */
4243static void mvpp2_txq_deinit(struct mvpp2_port *port,
4244 struct mvpp2_tx_queue *txq)
4245{
4246 txq->descs = NULL;
4247 txq->last_desc = 0;
4248 txq->next_desc_to_proc = 0;
Thomas Petazzonic49aff22017-02-20 10:27:51 +01004249 txq->descs_dma = 0;
Stefan Roese96c19042016-02-10 07:22:10 +01004250
4251 /* Set minimum bandwidth for disabled TXQs */
4252 mvpp2_write(port->priv, MVPP2_TXQ_SCHED_TOKEN_CNTR_REG(txq->id), 0);
4253
4254 /* Set Tx descriptors queue starting address and size */
4255 mvpp2_write(port->priv, MVPP2_TXQ_NUM_REG, txq->id);
4256 mvpp2_write(port->priv, MVPP2_TXQ_DESC_ADDR_REG, 0);
4257 mvpp2_write(port->priv, MVPP2_TXQ_DESC_SIZE_REG, 0);
4258}
4259
4260/* Cleanup Tx ports */
4261static void mvpp2_txq_clean(struct mvpp2_port *port, struct mvpp2_tx_queue *txq)
4262{
4263 struct mvpp2_txq_pcpu *txq_pcpu;
4264 int delay, pending, cpu;
4265 u32 val;
4266
4267 mvpp2_write(port->priv, MVPP2_TXQ_NUM_REG, txq->id);
4268 val = mvpp2_read(port->priv, MVPP2_TXQ_PREF_BUF_REG);
4269 val |= MVPP2_TXQ_DRAIN_EN_MASK;
4270 mvpp2_write(port->priv, MVPP2_TXQ_PREF_BUF_REG, val);
4271
4272 /* The napi queue has been stopped so wait for all packets
4273 * to be transmitted.
4274 */
4275 delay = 0;
4276 do {
4277 if (delay >= MVPP2_TX_PENDING_TIMEOUT_MSEC) {
Sean Andersonc7cbf092020-09-15 10:44:57 -04004278 dev_warn(port->phy_dev->dev,
4279 "port %d: cleaning queue %d timed out\n",
4280 port->id, txq->log_id);
Stefan Roese96c19042016-02-10 07:22:10 +01004281 break;
4282 }
4283 mdelay(1);
4284 delay++;
4285
4286 pending = mvpp2_txq_pend_desc_num_get(port, txq);
4287 } while (pending);
4288
4289 val &= ~MVPP2_TXQ_DRAIN_EN_MASK;
4290 mvpp2_write(port->priv, MVPP2_TXQ_PREF_BUF_REG, val);
4291
4292 for_each_present_cpu(cpu) {
4293 txq_pcpu = per_cpu_ptr(txq->pcpu, cpu);
4294
4295 /* Release all packets */
4296 mvpp2_txq_bufs_free(port, txq, txq_pcpu, txq_pcpu->count);
4297
4298 /* Reset queue */
4299 txq_pcpu->count = 0;
4300 txq_pcpu->txq_put_index = 0;
4301 txq_pcpu->txq_get_index = 0;
4302 }
4303}
4304
4305/* Cleanup all Tx queues */
4306static void mvpp2_cleanup_txqs(struct mvpp2_port *port)
4307{
4308 struct mvpp2_tx_queue *txq;
4309 int queue;
4310 u32 val;
4311
4312 val = mvpp2_read(port->priv, MVPP2_TX_PORT_FLUSH_REG);
4313
4314 /* Reset Tx ports and delete Tx queues */
4315 val |= MVPP2_TX_PORT_FLUSH_MASK(port->id);
4316 mvpp2_write(port->priv, MVPP2_TX_PORT_FLUSH_REG, val);
4317
4318 for (queue = 0; queue < txq_number; queue++) {
4319 txq = port->txqs[queue];
4320 mvpp2_txq_clean(port, txq);
4321 mvpp2_txq_deinit(port, txq);
4322 }
4323
4324 mvpp2_txq_sent_counter_clear(port);
4325
4326 val &= ~MVPP2_TX_PORT_FLUSH_MASK(port->id);
4327 mvpp2_write(port->priv, MVPP2_TX_PORT_FLUSH_REG, val);
4328}
4329
4330/* Cleanup all Rx queues */
4331static void mvpp2_cleanup_rxqs(struct mvpp2_port *port)
4332{
4333 int queue;
4334
4335 for (queue = 0; queue < rxq_number; queue++)
4336 mvpp2_rxq_deinit(port, port->rxqs[queue]);
4337}
4338
4339/* Init all Rx queues for port */
4340static int mvpp2_setup_rxqs(struct mvpp2_port *port)
4341{
4342 int queue, err;
4343
4344 for (queue = 0; queue < rxq_number; queue++) {
4345 err = mvpp2_rxq_init(port, port->rxqs[queue]);
4346 if (err)
4347 goto err_cleanup;
4348 }
4349 return 0;
4350
4351err_cleanup:
4352 mvpp2_cleanup_rxqs(port);
4353 return err;
4354}
4355
4356/* Init all tx queues for port */
4357static int mvpp2_setup_txqs(struct mvpp2_port *port)
4358{
4359 struct mvpp2_tx_queue *txq;
4360 int queue, err;
4361
4362 for (queue = 0; queue < txq_number; queue++) {
4363 txq = port->txqs[queue];
4364 err = mvpp2_txq_init(port, txq);
4365 if (err)
4366 goto err_cleanup;
4367 }
4368
4369 mvpp2_txq_sent_counter_clear(port);
4370 return 0;
4371
4372err_cleanup:
4373 mvpp2_cleanup_txqs(port);
4374 return err;
4375}
4376
4377/* Adjust link */
4378static void mvpp2_link_event(struct mvpp2_port *port)
4379{
4380 struct phy_device *phydev = port->phy_dev;
4381 int status_change = 0;
4382 u32 val;
4383
4384 if (phydev->link) {
4385 if ((port->speed != phydev->speed) ||
4386 (port->duplex != phydev->duplex)) {
4387 u32 val;
4388
4389 val = readl(port->base + MVPP2_GMAC_AUTONEG_CONFIG);
4390 val &= ~(MVPP2_GMAC_CONFIG_MII_SPEED |
4391 MVPP2_GMAC_CONFIG_GMII_SPEED |
4392 MVPP2_GMAC_CONFIG_FULL_DUPLEX |
4393 MVPP2_GMAC_AN_SPEED_EN |
4394 MVPP2_GMAC_AN_DUPLEX_EN);
4395
4396 if (phydev->duplex)
4397 val |= MVPP2_GMAC_CONFIG_FULL_DUPLEX;
4398
Stefan Chulski4de58cb2021-05-03 08:08:48 +02004399 if (phydev->speed == SPEED_1000 ||
4400 phydev->speed == 2500)
Stefan Roese96c19042016-02-10 07:22:10 +01004401 val |= MVPP2_GMAC_CONFIG_GMII_SPEED;
4402 else if (phydev->speed == SPEED_100)
4403 val |= MVPP2_GMAC_CONFIG_MII_SPEED;
4404
4405 writel(val, port->base + MVPP2_GMAC_AUTONEG_CONFIG);
4406
4407 port->duplex = phydev->duplex;
4408 port->speed = phydev->speed;
4409 }
4410 }
4411
4412 if (phydev->link != port->link) {
4413 if (!phydev->link) {
4414 port->duplex = -1;
4415 port->speed = 0;
4416 }
4417
4418 port->link = phydev->link;
4419 status_change = 1;
4420 }
4421
4422 if (status_change) {
4423 if (phydev->link) {
4424 val = readl(port->base + MVPP2_GMAC_AUTONEG_CONFIG);
4425 val |= (MVPP2_GMAC_FORCE_LINK_PASS |
4426 MVPP2_GMAC_FORCE_LINK_DOWN);
4427 writel(val, port->base + MVPP2_GMAC_AUTONEG_CONFIG);
4428 mvpp2_egress_enable(port);
4429 mvpp2_ingress_enable(port);
4430 } else {
4431 mvpp2_ingress_disable(port);
4432 mvpp2_egress_disable(port);
4433 }
4434 }
4435}
4436
4437/* Main RX/TX processing routines */
4438
4439/* Display more error info */
4440static void mvpp2_rx_error(struct mvpp2_port *port,
4441 struct mvpp2_rx_desc *rx_desc)
4442{
Thomas Petazzonifb3a7bb2017-02-15 15:35:00 +01004443 u32 status = mvpp2_rxdesc_status_get(port, rx_desc);
4444 size_t sz = mvpp2_rxdesc_size_get(port, rx_desc);
Stefan Roese96c19042016-02-10 07:22:10 +01004445
4446 switch (status & MVPP2_RXD_ERR_CODE_MASK) {
4447 case MVPP2_RXD_ERR_CRC:
Sean Andersonc7cbf092020-09-15 10:44:57 -04004448 dev_err(port->phy_dev->dev,
4449 "bad rx status %08x (crc error), size=%zu\n", status,
4450 sz);
Stefan Roese96c19042016-02-10 07:22:10 +01004451 break;
4452 case MVPP2_RXD_ERR_OVERRUN:
Sean Andersonc7cbf092020-09-15 10:44:57 -04004453 dev_err(port->phy_dev->dev,
4454 "bad rx status %08x (overrun error), size=%zu\n",
4455 status, sz);
Stefan Roese96c19042016-02-10 07:22:10 +01004456 break;
4457 case MVPP2_RXD_ERR_RESOURCE:
Sean Andersonc7cbf092020-09-15 10:44:57 -04004458 dev_err(port->phy_dev->dev,
4459 "bad rx status %08x (resource error), size=%zu\n",
4460 status, sz);
Stefan Roese96c19042016-02-10 07:22:10 +01004461 break;
4462 }
4463}
4464
4465/* Reuse skb if possible, or allocate a new skb and add it to BM pool */
4466static int mvpp2_rx_refill(struct mvpp2_port *port,
4467 struct mvpp2_bm_pool *bm_pool,
Thomas Petazzonic49aff22017-02-20 10:27:51 +01004468 u32 bm, dma_addr_t dma_addr)
Stefan Roese96c19042016-02-10 07:22:10 +01004469{
Thomas Petazzonic49aff22017-02-20 10:27:51 +01004470 mvpp2_pool_refill(port, bm, dma_addr, (unsigned long)dma_addr);
Stefan Roese96c19042016-02-10 07:22:10 +01004471 return 0;
4472}
4473
4474/* Set hw internals when starting port */
4475static void mvpp2_start_dev(struct mvpp2_port *port)
4476{
Stefan Chulskia27adcb2017-04-06 15:39:08 +02004477 switch (port->phy_interface) {
4478 case PHY_INTERFACE_MODE_RGMII:
4479 case PHY_INTERFACE_MODE_RGMII_ID:
4480 case PHY_INTERFACE_MODE_SGMII:
Stefan Chulski237105f2021-05-03 08:08:46 +02004481 case PHY_INTERFACE_MODE_1000BASEX:
4482 case PHY_INTERFACE_MODE_2500BASEX:
Stefan Chulskia27adcb2017-04-06 15:39:08 +02004483 mvpp2_gmac_max_rx_size_set(port);
4484 default:
4485 break;
4486 }
4487
Stefan Roese96c19042016-02-10 07:22:10 +01004488 mvpp2_txp_max_tx_size_set(port);
4489
Stefan Roese40e749b2017-03-22 15:07:30 +01004490 if (port->priv->hw_version == MVPP21)
4491 mvpp2_port_enable(port);
4492 else
4493 gop_port_enable(port, 1);
Stefan Roese96c19042016-02-10 07:22:10 +01004494}
4495
4496/* Set hw internals when stopping port */
4497static void mvpp2_stop_dev(struct mvpp2_port *port)
4498{
4499 /* Stop new packets from arriving to RXQs */
4500 mvpp2_ingress_disable(port);
4501
4502 mvpp2_egress_disable(port);
Stefan Roese40e749b2017-03-22 15:07:30 +01004503
4504 if (port->priv->hw_version == MVPP21)
4505 mvpp2_port_disable(port);
4506 else
4507 gop_port_enable(port, 0);
Stefan Roese96c19042016-02-10 07:22:10 +01004508}
4509
Stefan Chulskib261d1b2019-08-15 18:08:41 -04004510static void mvpp2_phy_connect(struct udevice *dev, struct mvpp2_port *port)
Stefan Roese96c19042016-02-10 07:22:10 +01004511{
4512 struct phy_device *phy_dev;
4513
4514 if (!port->init || port->link == 0) {
Nevo Hed5e975612019-08-15 18:08:44 -04004515 phy_dev = dm_mdio_phy_connect(port->mdio_dev, port->phyaddr,
4516 dev, port->phy_interface);
Grzegorz Jaszczyka531afd2019-08-15 18:08:42 -04004517
4518 /*
4519 * If the phy doesn't match with any existing u-boot drivers the
4520 * phy framework will connect it to generic one which
4521 * uid == 0xffffffff. In this case act as if the phy wouldn't be
4522 * declared in dts. Otherwise in case of 3310 (for which the
4523 * driver doesn't exist) the link will not be correctly
4524 * detected. Removing phy entry from dts in case of 3310 is not
4525 * an option because it is required for the phy_fw_down
4526 * procedure.
4527 */
4528 if (phy_dev &&
4529 phy_dev->drv->uid == 0xffffffff) {/* Generic phy */
Sean Andersonc7cbf092020-09-15 10:44:57 -04004530 dev_warn(port->phy_dev->dev,
4531 "Marking phy as invalid, link will not be checked\n");
Grzegorz Jaszczyka531afd2019-08-15 18:08:42 -04004532 /* set phy_addr to invalid value */
4533 port->phyaddr = PHY_MAX_ADDR;
4534 mvpp2_egress_enable(port);
4535 mvpp2_ingress_enable(port);
4536
4537 return;
4538 }
4539
Stefan Roese96c19042016-02-10 07:22:10 +01004540 port->phy_dev = phy_dev;
4541 if (!phy_dev) {
Sean Andersonc7cbf092020-09-15 10:44:57 -04004542 dev_err(port->phy_dev->dev, "cannot connect to phy\n");
Stefan Chulskib261d1b2019-08-15 18:08:41 -04004543 return;
Stefan Roese96c19042016-02-10 07:22:10 +01004544 }
4545 phy_dev->supported &= PHY_GBIT_FEATURES;
4546 phy_dev->advertising = phy_dev->supported;
4547
4548 port->phy_dev = phy_dev;
4549 port->link = 0;
4550 port->duplex = 0;
4551 port->speed = 0;
4552
4553 phy_config(phy_dev);
4554 phy_startup(phy_dev);
Stefan Chulskib261d1b2019-08-15 18:08:41 -04004555 if (!phy_dev->link)
Stefan Roese96c19042016-02-10 07:22:10 +01004556 printf("%s: No link\n", phy_dev->dev->name);
Stefan Chulskib261d1b2019-08-15 18:08:41 -04004557 else
4558 port->init = 1;
Stefan Roese96c19042016-02-10 07:22:10 +01004559 } else {
4560 mvpp2_egress_enable(port);
4561 mvpp2_ingress_enable(port);
4562 }
Stefan Roese96c19042016-02-10 07:22:10 +01004563}
4564
4565static int mvpp2_open(struct udevice *dev, struct mvpp2_port *port)
4566{
4567 unsigned char mac_bcast[ETH_ALEN] = {
4568 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
4569 int err;
4570
4571 err = mvpp2_prs_mac_da_accept(port->priv, port->id, mac_bcast, true);
4572 if (err) {
Sean Andersonc7cbf092020-09-15 10:44:57 -04004573 dev_err(dev, "mvpp2_prs_mac_da_accept BC failed\n");
Stefan Roese96c19042016-02-10 07:22:10 +01004574 return err;
4575 }
4576 err = mvpp2_prs_mac_da_accept(port->priv, port->id,
4577 port->dev_addr, true);
4578 if (err) {
Sean Andersonc7cbf092020-09-15 10:44:57 -04004579 dev_err(dev, "mvpp2_prs_mac_da_accept MC failed\n");
Stefan Roese96c19042016-02-10 07:22:10 +01004580 return err;
4581 }
4582 err = mvpp2_prs_def_flow(port);
4583 if (err) {
Sean Andersonc7cbf092020-09-15 10:44:57 -04004584 dev_err(dev, "mvpp2_prs_def_flow failed\n");
Stefan Roese96c19042016-02-10 07:22:10 +01004585 return err;
4586 }
4587
4588 /* Allocate the Rx/Tx queues */
4589 err = mvpp2_setup_rxqs(port);
4590 if (err) {
Sean Andersonc7cbf092020-09-15 10:44:57 -04004591 dev_err(port->phy_dev->dev, "cannot allocate Rx queues\n");
Stefan Roese96c19042016-02-10 07:22:10 +01004592 return err;
4593 }
4594
4595 err = mvpp2_setup_txqs(port);
4596 if (err) {
Sean Andersonc7cbf092020-09-15 10:44:57 -04004597 dev_err(port->phy_dev->dev, "cannot allocate Tx queues\n");
Stefan Roese96c19042016-02-10 07:22:10 +01004598 return err;
4599 }
4600
Nevo Hed5e975612019-08-15 18:08:44 -04004601 if (port->phyaddr < PHY_MAX_ADDR) {
Stefan Chulskib261d1b2019-08-15 18:08:41 -04004602 mvpp2_phy_connect(dev, port);
Stefan Chulskia27adcb2017-04-06 15:39:08 +02004603 mvpp2_link_event(port);
4604 } else {
4605 mvpp2_egress_enable(port);
4606 mvpp2_ingress_enable(port);
4607 }
Stefan Roese96c19042016-02-10 07:22:10 +01004608
4609 mvpp2_start_dev(port);
4610
4611 return 0;
4612}
4613
4614/* No Device ops here in U-Boot */
4615
4616/* Driver initialization */
4617
4618static void mvpp2_port_power_up(struct mvpp2_port *port)
4619{
Thomas Petazzonicc2445f2017-02-20 11:42:51 +01004620 struct mvpp2 *priv = port->priv;
4621
Stefan Roese40e749b2017-03-22 15:07:30 +01004622 /* On PPv2.2 the GoP / interface configuration has already been done */
4623 if (priv->hw_version == MVPP21)
4624 mvpp2_port_mii_set(port);
Stefan Roese96c19042016-02-10 07:22:10 +01004625 mvpp2_port_periodic_xon_disable(port);
Thomas Petazzonicc2445f2017-02-20 11:42:51 +01004626 if (priv->hw_version == MVPP21)
4627 mvpp2_port_fc_adv_enable(port);
Stefan Roese96c19042016-02-10 07:22:10 +01004628 mvpp2_port_reset(port);
4629}
4630
4631/* Initialize port HW */
4632static int mvpp2_port_init(struct udevice *dev, struct mvpp2_port *port)
4633{
4634 struct mvpp2 *priv = port->priv;
4635 struct mvpp2_txq_pcpu *txq_pcpu;
4636 int queue, cpu, err;
4637
Thomas Petazzoni38a23282017-02-16 09:03:16 +01004638 if (port->first_rxq + rxq_number >
4639 MVPP2_MAX_PORTS * priv->max_port_rxqs)
Stefan Roese96c19042016-02-10 07:22:10 +01004640 return -EINVAL;
4641
4642 /* Disable port */
4643 mvpp2_egress_disable(port);
Stefan Roese40e749b2017-03-22 15:07:30 +01004644 if (priv->hw_version == MVPP21)
4645 mvpp2_port_disable(port);
4646 else
4647 gop_port_enable(port, 0);
Stefan Roese96c19042016-02-10 07:22:10 +01004648
4649 port->txqs = devm_kcalloc(dev, txq_number, sizeof(*port->txqs),
4650 GFP_KERNEL);
4651 if (!port->txqs)
4652 return -ENOMEM;
4653
4654 /* Associate physical Tx queues to this port and initialize.
4655 * The mapping is predefined.
4656 */
4657 for (queue = 0; queue < txq_number; queue++) {
4658 int queue_phy_id = mvpp2_txq_phys(port->id, queue);
4659 struct mvpp2_tx_queue *txq;
4660
4661 txq = devm_kzalloc(dev, sizeof(*txq), GFP_KERNEL);
4662 if (!txq)
4663 return -ENOMEM;
4664
4665 txq->pcpu = devm_kzalloc(dev, sizeof(struct mvpp2_txq_pcpu),
4666 GFP_KERNEL);
4667 if (!txq->pcpu)
4668 return -ENOMEM;
4669
4670 txq->id = queue_phy_id;
4671 txq->log_id = queue;
4672 txq->done_pkts_coal = MVPP2_TXDONE_COAL_PKTS_THRESH;
4673 for_each_present_cpu(cpu) {
4674 txq_pcpu = per_cpu_ptr(txq->pcpu, cpu);
4675 txq_pcpu->cpu = cpu;
4676 }
4677
4678 port->txqs[queue] = txq;
4679 }
4680
4681 port->rxqs = devm_kcalloc(dev, rxq_number, sizeof(*port->rxqs),
4682 GFP_KERNEL);
4683 if (!port->rxqs)
4684 return -ENOMEM;
4685
4686 /* Allocate and initialize Rx queue for this port */
4687 for (queue = 0; queue < rxq_number; queue++) {
4688 struct mvpp2_rx_queue *rxq;
4689
4690 /* Map physical Rx queue to port's logical Rx queue */
4691 rxq = devm_kzalloc(dev, sizeof(*rxq), GFP_KERNEL);
4692 if (!rxq)
4693 return -ENOMEM;
4694 /* Map this Rx queue to a physical queue */
4695 rxq->id = port->first_rxq + queue;
4696 rxq->port = port->id;
4697 rxq->logic_rxq = queue;
4698
4699 port->rxqs[queue] = rxq;
4700 }
4701
Stefan Roese96c19042016-02-10 07:22:10 +01004702
4703 /* Create Rx descriptor rings */
4704 for (queue = 0; queue < rxq_number; queue++) {
4705 struct mvpp2_rx_queue *rxq = port->rxqs[queue];
4706
4707 rxq->size = port->rx_ring_size;
4708 rxq->pkts_coal = MVPP2_RX_COAL_PKTS;
4709 rxq->time_coal = MVPP2_RX_COAL_USEC;
4710 }
4711
4712 mvpp2_ingress_disable(port);
4713
4714 /* Port default configuration */
4715 mvpp2_defaults_set(port);
4716
4717 /* Port's classifier configuration */
4718 mvpp2_cls_oversize_rxq_set(port);
4719 mvpp2_cls_port_config(port);
4720
4721 /* Provide an initial Rx packet size */
4722 port->pkt_size = MVPP2_RX_PKT_SIZE(PKTSIZE_ALIGN);
4723
4724 /* Initialize pools for swf */
4725 err = mvpp2_swf_bm_pool_init(port);
4726 if (err)
4727 return err;
4728
4729 return 0;
4730}
4731
Stefan Roese8ba5f0b2017-03-22 14:11:16 +01004732static int phy_info_parse(struct udevice *dev, struct mvpp2_port *port)
Stefan Roese96c19042016-02-10 07:22:10 +01004733{
Stefan Roese8ba5f0b2017-03-22 14:11:16 +01004734 int port_node = dev_of_offset(dev);
Baruch Siach4f42c862018-11-21 13:05:33 +02004735 int phy_node;
Stefan Roese96c19042016-02-10 07:22:10 +01004736 u32 id;
Stefan Chulskia27adcb2017-04-06 15:39:08 +02004737 u32 phyaddr = 0;
Stefan Chulski4032d402021-05-03 08:08:52 +02004738 int fixed_link = 0;
Nevo Hed5e975612019-08-15 18:08:44 -04004739 int ret;
Baruch Siach3cf0f2e2018-11-21 13:05:34 +02004740
Stefan Roese96c19042016-02-10 07:22:10 +01004741 phy_node = fdtdec_lookup_phandle(gd->fdt_blob, port_node, "phy");
Stefan Chulski4032d402021-05-03 08:08:52 +02004742 fixed_link = fdt_subnode_offset(gd->fdt_blob, port_node, "fixed-link");
Stefan Chulskia27adcb2017-04-06 15:39:08 +02004743
4744 if (phy_node > 0) {
Nevo Hed5e975612019-08-15 18:08:44 -04004745 int parent;
Stefan Chulski4032d402021-05-03 08:08:52 +02004746
4747 if (fixed_link != -FDT_ERR_NOTFOUND) {
4748 /* phy_addr is set to invalid value for fixed links */
4749 phyaddr = PHY_MAX_ADDR;
4750 } else {
4751 phyaddr = fdtdec_get_int(gd->fdt_blob, phy_node,
4752 "reg", 0);
4753 if (phyaddr < 0) {
4754 dev_err(dev, "could not find phy address\n");
4755 return -1;
4756 }
Stefan Chulskia27adcb2017-04-06 15:39:08 +02004757 }
Nevo Hed5e975612019-08-15 18:08:44 -04004758 parent = fdt_parent_offset(gd->fdt_blob, phy_node);
4759 ret = uclass_get_device_by_of_offset(UCLASS_MDIO, parent,
4760 &port->mdio_dev);
4761 if (ret)
4762 return ret;
Stefan Chulskia27adcb2017-04-06 15:39:08 +02004763 } else {
Nevo Hed5e975612019-08-15 18:08:44 -04004764 /* phy_addr is set to invalid value */
4765 phyaddr = PHY_MAX_ADDR;
Stefan Roese96c19042016-02-10 07:22:10 +01004766 }
4767
Marek Behúnbc194772022-04-07 00:33:01 +02004768 port->phy_interface = dev_read_phy_mode(dev);
Marek Behún48631e42022-04-07 00:33:03 +02004769 if (port->phy_interface == PHY_INTERFACE_MODE_NA) {
Sean Anderson77a88792020-09-15 10:44:56 -04004770 dev_err(dev, "incorrect phy mode\n");
Stefan Roese96c19042016-02-10 07:22:10 +01004771 return -EINVAL;
4772 }
4773
4774 id = fdtdec_get_int(gd->fdt_blob, port_node, "port-id", -1);
4775 if (id == -1) {
Sean Anderson77a88792020-09-15 10:44:56 -04004776 dev_err(dev, "missing port-id value\n");
Stefan Roese96c19042016-02-10 07:22:10 +01004777 return -EINVAL;
4778 }
4779
Simon Glassfa4689a2019-12-06 21:41:35 -07004780#if CONFIG_IS_ENABLED(DM_GPIO)
Stefan Chulski0d65eb62017-08-09 10:37:43 +03004781 gpio_request_by_name(dev, "phy-reset-gpios", 0,
4782 &port->phy_reset_gpio, GPIOD_IS_OUT);
4783 gpio_request_by_name(dev, "marvell,sfp-tx-disable-gpio", 0,
4784 &port->phy_tx_disable_gpio, GPIOD_IS_OUT);
4785#endif
4786
Stefan Roese96c19042016-02-10 07:22:10 +01004787 port->id = id;
Stefan Roese8ba5f0b2017-03-22 14:11:16 +01004788 if (port->priv->hw_version == MVPP21)
Thomas Petazzoni38a23282017-02-16 09:03:16 +01004789 port->first_rxq = port->id * rxq_number;
4790 else
Stefan Roese8ba5f0b2017-03-22 14:11:16 +01004791 port->first_rxq = port->id * port->priv->max_port_rxqs;
Stefan Roese96c19042016-02-10 07:22:10 +01004792 port->phyaddr = phyaddr;
4793
Stefan Roese8ba5f0b2017-03-22 14:11:16 +01004794 return 0;
4795}
Thomas Petazzoni5555f072017-02-16 08:03:37 +01004796
Simon Glassfa4689a2019-12-06 21:41:35 -07004797#if CONFIG_IS_ENABLED(DM_GPIO)
Stefan Chulski0d65eb62017-08-09 10:37:43 +03004798/* Port GPIO initialization */
4799static void mvpp2_gpio_init(struct mvpp2_port *port)
4800{
4801 if (dm_gpio_is_valid(&port->phy_reset_gpio)) {
Stefan Chulski0d65eb62017-08-09 10:37:43 +03004802 dm_gpio_set_value(&port->phy_reset_gpio, 1);
Baruch Siach67674e42018-10-15 13:16:48 +03004803 mdelay(10);
Baruch Siach187dced2018-10-15 13:16:47 +03004804 dm_gpio_set_value(&port->phy_reset_gpio, 0);
Stefan Chulski0d65eb62017-08-09 10:37:43 +03004805 }
4806
4807 if (dm_gpio_is_valid(&port->phy_tx_disable_gpio))
4808 dm_gpio_set_value(&port->phy_tx_disable_gpio, 0);
4809}
4810#endif
4811
Stefan Roese8ba5f0b2017-03-22 14:11:16 +01004812/* Ports initialization */
4813static int mvpp2_port_probe(struct udevice *dev,
4814 struct mvpp2_port *port,
4815 int port_node,
4816 struct mvpp2 *priv)
4817{
4818 int err;
Stefan Roese96c19042016-02-10 07:22:10 +01004819
4820 port->tx_ring_size = MVPP2_MAX_TXD;
4821 port->rx_ring_size = MVPP2_MAX_RXD;
4822
4823 err = mvpp2_port_init(dev, port);
4824 if (err < 0) {
Sean Anderson77a88792020-09-15 10:44:56 -04004825 dev_err(dev, "failed to init port %d\n", port->id);
Stefan Roese96c19042016-02-10 07:22:10 +01004826 return err;
4827 }
4828 mvpp2_port_power_up(port);
4829
Simon Glassfa4689a2019-12-06 21:41:35 -07004830#if CONFIG_IS_ENABLED(DM_GPIO)
Stefan Chulski0d65eb62017-08-09 10:37:43 +03004831 mvpp2_gpio_init(port);
4832#endif
4833
Stefan Roese8ba5f0b2017-03-22 14:11:16 +01004834 priv->port_list[port->id] = port;
Stefan Chulski75872182017-08-09 10:37:46 +03004835 priv->num_ports++;
Stefan Roese96c19042016-02-10 07:22:10 +01004836 return 0;
4837}
4838
4839/* Initialize decoding windows */
4840static void mvpp2_conf_mbus_windows(const struct mbus_dram_target_info *dram,
4841 struct mvpp2 *priv)
4842{
4843 u32 win_enable;
4844 int i;
4845
4846 for (i = 0; i < 6; i++) {
4847 mvpp2_write(priv, MVPP2_WIN_BASE(i), 0);
4848 mvpp2_write(priv, MVPP2_WIN_SIZE(i), 0);
4849
4850 if (i < 4)
4851 mvpp2_write(priv, MVPP2_WIN_REMAP(i), 0);
4852 }
4853
4854 win_enable = 0;
4855
4856 for (i = 0; i < dram->num_cs; i++) {
4857 const struct mbus_dram_window *cs = dram->cs + i;
4858
4859 mvpp2_write(priv, MVPP2_WIN_BASE(i),
4860 (cs->base & 0xffff0000) | (cs->mbus_attr << 8) |
4861 dram->mbus_dram_target_id);
4862
4863 mvpp2_write(priv, MVPP2_WIN_SIZE(i),
4864 (cs->size - 1) & 0xffff0000);
4865
4866 win_enable |= (1 << i);
4867 }
4868
4869 mvpp2_write(priv, MVPP2_BASE_ADDR_ENABLE, win_enable);
4870}
4871
4872/* Initialize Rx FIFO's */
4873static void mvpp2_rx_fifo_init(struct mvpp2 *priv)
4874{
4875 int port;
4876
4877 for (port = 0; port < MVPP2_MAX_PORTS; port++) {
Stefan Roesea8801ed2017-03-01 13:09:42 +01004878 if (priv->hw_version == MVPP22) {
4879 if (port == 0) {
4880 mvpp2_write(priv,
4881 MVPP2_RX_DATA_FIFO_SIZE_REG(port),
4882 MVPP22_RX_FIFO_10GB_PORT_DATA_SIZE);
4883 mvpp2_write(priv,
4884 MVPP2_RX_ATTR_FIFO_SIZE_REG(port),
4885 MVPP22_RX_FIFO_10GB_PORT_ATTR_SIZE);
4886 } else if (port == 1) {
4887 mvpp2_write(priv,
4888 MVPP2_RX_DATA_FIFO_SIZE_REG(port),
4889 MVPP22_RX_FIFO_2_5GB_PORT_DATA_SIZE);
4890 mvpp2_write(priv,
4891 MVPP2_RX_ATTR_FIFO_SIZE_REG(port),
4892 MVPP22_RX_FIFO_2_5GB_PORT_ATTR_SIZE);
4893 } else {
4894 mvpp2_write(priv,
4895 MVPP2_RX_DATA_FIFO_SIZE_REG(port),
4896 MVPP22_RX_FIFO_1GB_PORT_DATA_SIZE);
4897 mvpp2_write(priv,
4898 MVPP2_RX_ATTR_FIFO_SIZE_REG(port),
4899 MVPP22_RX_FIFO_1GB_PORT_ATTR_SIZE);
4900 }
4901 } else {
4902 mvpp2_write(priv, MVPP2_RX_DATA_FIFO_SIZE_REG(port),
4903 MVPP21_RX_FIFO_PORT_DATA_SIZE);
4904 mvpp2_write(priv, MVPP2_RX_ATTR_FIFO_SIZE_REG(port),
4905 MVPP21_RX_FIFO_PORT_ATTR_SIZE);
4906 }
Stefan Roese96c19042016-02-10 07:22:10 +01004907 }
4908
4909 mvpp2_write(priv, MVPP2_RX_MIN_PKT_SIZE_REG,
4910 MVPP2_RX_FIFO_PORT_MIN_PKT);
4911 mvpp2_write(priv, MVPP2_RX_FIFO_INIT_REG, 0x1);
4912}
4913
Stefan Roesea8801ed2017-03-01 13:09:42 +01004914/* Initialize Tx FIFO's */
4915static void mvpp2_tx_fifo_init(struct mvpp2 *priv)
4916{
4917 int port, val;
4918
4919 for (port = 0; port < MVPP2_MAX_PORTS; port++) {
4920 /* Port 0 supports 10KB TX FIFO */
4921 if (port == 0) {
4922 val = MVPP2_TX_FIFO_DATA_SIZE_10KB &
4923 MVPP22_TX_FIFO_SIZE_MASK;
4924 } else {
4925 val = MVPP2_TX_FIFO_DATA_SIZE_3KB &
4926 MVPP22_TX_FIFO_SIZE_MASK;
4927 }
4928 mvpp2_write(priv, MVPP22_TX_FIFO_SIZE_REG(port), val);
4929 }
4930}
4931
Thomas Petazzonica560ab2017-02-16 08:41:07 +01004932static void mvpp2_axi_init(struct mvpp2 *priv)
4933{
4934 u32 val, rdval, wrval;
4935
4936 mvpp2_write(priv, MVPP22_BM_ADDR_HIGH_RLS_REG, 0x0);
4937
4938 /* AXI Bridge Configuration */
4939
4940 rdval = MVPP22_AXI_CODE_CACHE_RD_CACHE
4941 << MVPP22_AXI_ATTR_CACHE_OFFS;
4942 rdval |= MVPP22_AXI_CODE_DOMAIN_OUTER_DOM
4943 << MVPP22_AXI_ATTR_DOMAIN_OFFS;
4944
4945 wrval = MVPP22_AXI_CODE_CACHE_WR_CACHE
4946 << MVPP22_AXI_ATTR_CACHE_OFFS;
4947 wrval |= MVPP22_AXI_CODE_DOMAIN_OUTER_DOM
4948 << MVPP22_AXI_ATTR_DOMAIN_OFFS;
4949
4950 /* BM */
4951 mvpp2_write(priv, MVPP22_AXI_BM_WR_ATTR_REG, wrval);
4952 mvpp2_write(priv, MVPP22_AXI_BM_RD_ATTR_REG, rdval);
4953
4954 /* Descriptors */
4955 mvpp2_write(priv, MVPP22_AXI_AGGRQ_DESCR_RD_ATTR_REG, rdval);
4956 mvpp2_write(priv, MVPP22_AXI_TXQ_DESCR_WR_ATTR_REG, wrval);
4957 mvpp2_write(priv, MVPP22_AXI_TXQ_DESCR_RD_ATTR_REG, rdval);
4958 mvpp2_write(priv, MVPP22_AXI_RXQ_DESCR_WR_ATTR_REG, wrval);
4959
4960 /* Buffer Data */
4961 mvpp2_write(priv, MVPP22_AXI_TX_DATA_RD_ATTR_REG, rdval);
4962 mvpp2_write(priv, MVPP22_AXI_RX_DATA_WR_ATTR_REG, wrval);
4963
4964 val = MVPP22_AXI_CODE_CACHE_NON_CACHE
4965 << MVPP22_AXI_CODE_CACHE_OFFS;
4966 val |= MVPP22_AXI_CODE_DOMAIN_SYSTEM
4967 << MVPP22_AXI_CODE_DOMAIN_OFFS;
4968 mvpp2_write(priv, MVPP22_AXI_RD_NORMAL_CODE_REG, val);
4969 mvpp2_write(priv, MVPP22_AXI_WR_NORMAL_CODE_REG, val);
4970
4971 val = MVPP22_AXI_CODE_CACHE_RD_CACHE
4972 << MVPP22_AXI_CODE_CACHE_OFFS;
4973 val |= MVPP22_AXI_CODE_DOMAIN_OUTER_DOM
4974 << MVPP22_AXI_CODE_DOMAIN_OFFS;
4975
4976 mvpp2_write(priv, MVPP22_AXI_RD_SNOOP_CODE_REG, val);
4977
4978 val = MVPP22_AXI_CODE_CACHE_WR_CACHE
4979 << MVPP22_AXI_CODE_CACHE_OFFS;
4980 val |= MVPP22_AXI_CODE_DOMAIN_OUTER_DOM
4981 << MVPP22_AXI_CODE_DOMAIN_OFFS;
4982
4983 mvpp2_write(priv, MVPP22_AXI_WR_SNOOP_CODE_REG, val);
4984}
4985
Stefan Roese96c19042016-02-10 07:22:10 +01004986/* Initialize network controller common part HW */
4987static int mvpp2_init(struct udevice *dev, struct mvpp2 *priv)
4988{
4989 const struct mbus_dram_target_info *dram_target_info;
4990 int err, i;
4991 u32 val;
4992
4993 /* Checks for hardware constraints (U-Boot uses only one rxq) */
Thomas Petazzoni38a23282017-02-16 09:03:16 +01004994 if ((rxq_number > priv->max_port_rxqs) ||
4995 (txq_number > MVPP2_MAX_TXQ)) {
Sean Anderson77a88792020-09-15 10:44:56 -04004996 dev_err(dev, "invalid queue size parameter\n");
Stefan Roese96c19042016-02-10 07:22:10 +01004997 return -EINVAL;
4998 }
4999
Thomas Petazzonica560ab2017-02-16 08:41:07 +01005000 if (priv->hw_version == MVPP22)
5001 mvpp2_axi_init(priv);
Stefan Chulskicaa97bf2017-08-09 10:37:48 +03005002 else {
5003 /* MBUS windows configuration */
5004 dram_target_info = mvebu_mbus_dram_info();
5005 if (dram_target_info)
5006 mvpp2_conf_mbus_windows(dram_target_info, priv);
5007 }
Thomas Petazzonica560ab2017-02-16 08:41:07 +01005008
Thomas Petazzonicc2445f2017-02-20 11:42:51 +01005009 if (priv->hw_version == MVPP21) {
Stefan Roeseb851e402017-03-09 12:01:57 +01005010 /* Disable HW PHY polling */
Thomas Petazzonicc2445f2017-02-20 11:42:51 +01005011 val = readl(priv->lms_base + MVPP2_PHY_AN_CFG0_REG);
5012 val |= MVPP2_PHY_AN_STOP_SMI0_MASK;
5013 writel(val, priv->lms_base + MVPP2_PHY_AN_CFG0_REG);
5014 } else {
Stefan Roeseb851e402017-03-09 12:01:57 +01005015 /* Enable HW PHY polling */
Thomas Petazzonicc2445f2017-02-20 11:42:51 +01005016 val = readl(priv->iface_base + MVPP22_SMI_MISC_CFG_REG);
Stefan Roeseb851e402017-03-09 12:01:57 +01005017 val |= MVPP22_SMI_POLLING_EN;
Thomas Petazzonicc2445f2017-02-20 11:42:51 +01005018 writel(val, priv->iface_base + MVPP22_SMI_MISC_CFG_REG);
5019 }
Stefan Roese96c19042016-02-10 07:22:10 +01005020
5021 /* Allocate and initialize aggregated TXQs */
5022 priv->aggr_txqs = devm_kcalloc(dev, num_present_cpus(),
5023 sizeof(struct mvpp2_tx_queue),
5024 GFP_KERNEL);
5025 if (!priv->aggr_txqs)
5026 return -ENOMEM;
5027
5028 for_each_present_cpu(i) {
5029 priv->aggr_txqs[i].id = i;
5030 priv->aggr_txqs[i].size = MVPP2_AGGR_TXQ_SIZE;
5031 err = mvpp2_aggr_txq_init(dev, &priv->aggr_txqs[i],
5032 MVPP2_AGGR_TXQ_SIZE, i, priv);
5033 if (err < 0)
5034 return err;
5035 }
5036
5037 /* Rx Fifo Init */
5038 mvpp2_rx_fifo_init(priv);
5039
Stefan Roesea8801ed2017-03-01 13:09:42 +01005040 /* Tx Fifo Init */
5041 if (priv->hw_version == MVPP22)
5042 mvpp2_tx_fifo_init(priv);
5043
Thomas Petazzonicc2445f2017-02-20 11:42:51 +01005044 if (priv->hw_version == MVPP21)
5045 writel(MVPP2_EXT_GLOBAL_CTRL_DEFAULT,
5046 priv->lms_base + MVPP2_MNG_EXTENDED_GLOBAL_CTRL_REG);
Stefan Roese96c19042016-02-10 07:22:10 +01005047
5048 /* Allow cache snoop when transmiting packets */
5049 mvpp2_write(priv, MVPP2_TX_SNOOP_REG, 0x1);
5050
5051 /* Buffer Manager initialization */
5052 err = mvpp2_bm_init(dev, priv);
5053 if (err < 0)
5054 return err;
5055
5056 /* Parser default initialization */
5057 err = mvpp2_prs_default_init(dev, priv);
5058 if (err < 0)
5059 return err;
5060
5061 /* Classifier default initialization */
5062 mvpp2_cls_init(priv);
5063
5064 return 0;
5065}
5066
Stefan Roese96c19042016-02-10 07:22:10 +01005067static int mvpp2_recv(struct udevice *dev, int flags, uchar **packetp)
5068{
5069 struct mvpp2_port *port = dev_get_priv(dev);
5070 struct mvpp2_rx_desc *rx_desc;
5071 struct mvpp2_bm_pool *bm_pool;
Thomas Petazzonic49aff22017-02-20 10:27:51 +01005072 dma_addr_t dma_addr;
Stefan Roese96c19042016-02-10 07:22:10 +01005073 u32 bm, rx_status;
5074 int pool, rx_bytes, err;
5075 int rx_received;
5076 struct mvpp2_rx_queue *rxq;
Stefan Roese96c19042016-02-10 07:22:10 +01005077 u8 *data;
5078
Nevo Hed5e975612019-08-15 18:08:44 -04005079 if (port->phyaddr < PHY_MAX_ADDR)
Stefan Chulskib261d1b2019-08-15 18:08:41 -04005080 if (!port->phy_dev->link)
5081 return 0;
5082
Stefan Roese96c19042016-02-10 07:22:10 +01005083 /* Process RX packets */
Stefan Chulskib4025532017-08-09 10:37:49 +03005084 rxq = port->rxqs[0];
Stefan Roese96c19042016-02-10 07:22:10 +01005085
5086 /* Get number of received packets and clamp the to-do */
5087 rx_received = mvpp2_rxq_received(port, rxq->id);
5088
5089 /* Return if no packets are received */
5090 if (!rx_received)
5091 return 0;
5092
5093 rx_desc = mvpp2_rxq_next_desc_get(rxq);
Thomas Petazzonifb3a7bb2017-02-15 15:35:00 +01005094 rx_status = mvpp2_rxdesc_status_get(port, rx_desc);
5095 rx_bytes = mvpp2_rxdesc_size_get(port, rx_desc);
5096 rx_bytes -= MVPP2_MH_SIZE;
5097 dma_addr = mvpp2_rxdesc_dma_addr_get(port, rx_desc);
Stefan Roese96c19042016-02-10 07:22:10 +01005098
Thomas Petazzonifb3a7bb2017-02-15 15:35:00 +01005099 bm = mvpp2_bm_cookie_build(port, rx_desc);
Stefan Roese96c19042016-02-10 07:22:10 +01005100 pool = mvpp2_bm_cookie_pool_get(bm);
5101 bm_pool = &port->priv->bm_pools[pool];
5102
Stefan Roese96c19042016-02-10 07:22:10 +01005103 /* In case of an error, release the requested buffer pointer
5104 * to the Buffer Manager. This request process is controlled
5105 * by the hardware, and the information about the buffer is
5106 * comprised by the RX descriptor.
5107 */
5108 if (rx_status & MVPP2_RXD_ERR_SUMMARY) {
5109 mvpp2_rx_error(port, rx_desc);
5110 /* Return the buffer to the pool */
Thomas Petazzonifb3a7bb2017-02-15 15:35:00 +01005111 mvpp2_pool_refill(port, bm, dma_addr, dma_addr);
Stefan Roese96c19042016-02-10 07:22:10 +01005112 return 0;
5113 }
5114
Thomas Petazzonic49aff22017-02-20 10:27:51 +01005115 err = mvpp2_rx_refill(port, bm_pool, bm, dma_addr);
Stefan Roese96c19042016-02-10 07:22:10 +01005116 if (err) {
Sean Andersonc7cbf092020-09-15 10:44:57 -04005117 dev_err(port->phy_dev->dev, "failed to refill BM pools\n");
Stefan Roese96c19042016-02-10 07:22:10 +01005118 return 0;
5119 }
5120
5121 /* Update Rx queue management counters */
5122 mb();
5123 mvpp2_rxq_status_update(port, rxq->id, 1, 1);
5124
5125 /* give packet to stack - skip on first n bytes */
Thomas Petazzonic49aff22017-02-20 10:27:51 +01005126 data = (u8 *)dma_addr + 2 + 32;
Stefan Roese96c19042016-02-10 07:22:10 +01005127
5128 if (rx_bytes <= 0)
5129 return 0;
5130
5131 /*
5132 * No cache invalidation needed here, since the rx_buffer's are
5133 * located in a uncached memory region
5134 */
5135 *packetp = data;
5136
5137 return rx_bytes;
5138}
5139
Stefan Roese96c19042016-02-10 07:22:10 +01005140static int mvpp2_send(struct udevice *dev, void *packet, int length)
5141{
5142 struct mvpp2_port *port = dev_get_priv(dev);
5143 struct mvpp2_tx_queue *txq, *aggr_txq;
5144 struct mvpp2_tx_desc *tx_desc;
5145 int tx_done;
5146 int timeout;
5147
Nevo Hed5e975612019-08-15 18:08:44 -04005148 if (port->phyaddr < PHY_MAX_ADDR)
Stefan Chulskib261d1b2019-08-15 18:08:41 -04005149 if (!port->phy_dev->link)
5150 return 0;
5151
Stefan Roese96c19042016-02-10 07:22:10 +01005152 txq = port->txqs[0];
5153 aggr_txq = &port->priv->aggr_txqs[smp_processor_id()];
5154
5155 /* Get a descriptor for the first part of the packet */
5156 tx_desc = mvpp2_txq_next_desc_get(aggr_txq);
Thomas Petazzonifb3a7bb2017-02-15 15:35:00 +01005157 mvpp2_txdesc_txq_set(port, tx_desc, txq->id);
5158 mvpp2_txdesc_size_set(port, tx_desc, length);
5159 mvpp2_txdesc_offset_set(port, tx_desc,
5160 (dma_addr_t)packet & MVPP2_TX_DESC_ALIGN);
5161 mvpp2_txdesc_dma_addr_set(port, tx_desc,
5162 (dma_addr_t)packet & ~MVPP2_TX_DESC_ALIGN);
Stefan Roese96c19042016-02-10 07:22:10 +01005163 /* First and Last descriptor */
Thomas Petazzonifb3a7bb2017-02-15 15:35:00 +01005164 mvpp2_txdesc_cmd_set(port, tx_desc,
5165 MVPP2_TXD_L4_CSUM_NOT | MVPP2_TXD_IP_CSUM_DISABLE
5166 | MVPP2_TXD_F_DESC | MVPP2_TXD_L_DESC);
Stefan Roese96c19042016-02-10 07:22:10 +01005167
5168 /* Flush tx data */
Stefan Roeseb4268e22017-02-16 13:58:37 +01005169 flush_dcache_range((unsigned long)packet,
5170 (unsigned long)packet + ALIGN(length, PKTALIGN));
Stefan Roese96c19042016-02-10 07:22:10 +01005171
5172 /* Enable transmit */
5173 mb();
5174 mvpp2_aggr_txq_pend_desc_add(port, 1);
5175
5176 mvpp2_write(port->priv, MVPP2_TXQ_NUM_REG, txq->id);
5177
5178 timeout = 0;
5179 do {
5180 if (timeout++ > 10000) {
5181 printf("timeout: packet not sent from aggregated to phys TXQ\n");
5182 return 0;
5183 }
5184 tx_done = mvpp2_txq_pend_desc_num_get(port, txq);
5185 } while (tx_done);
5186
Stefan Roese96c19042016-02-10 07:22:10 +01005187 timeout = 0;
5188 do {
5189 if (timeout++ > 10000) {
5190 printf("timeout: packet not sent\n");
5191 return 0;
5192 }
5193 tx_done = mvpp2_txq_sent_desc_proc(port, txq);
5194 } while (!tx_done);
5195
Stefan Roese96c19042016-02-10 07:22:10 +01005196 return 0;
5197}
5198
5199static int mvpp2_start(struct udevice *dev)
5200{
Simon Glassfa20e932020-12-03 16:55:20 -07005201 struct eth_pdata *pdata = dev_get_plat(dev);
Stefan Roese96c19042016-02-10 07:22:10 +01005202 struct mvpp2_port *port = dev_get_priv(dev);
5203
5204 /* Load current MAC address */
5205 memcpy(port->dev_addr, pdata->enetaddr, ETH_ALEN);
5206
5207 /* Reconfigure parser accept the original MAC address */
5208 mvpp2_prs_update_mac_da(port, port->dev_addr);
5209
Stefan Chulskia27adcb2017-04-06 15:39:08 +02005210 switch (port->phy_interface) {
5211 case PHY_INTERFACE_MODE_RGMII:
5212 case PHY_INTERFACE_MODE_RGMII_ID:
5213 case PHY_INTERFACE_MODE_SGMII:
Stefan Chulski237105f2021-05-03 08:08:46 +02005214 case PHY_INTERFACE_MODE_1000BASEX:
5215 case PHY_INTERFACE_MODE_2500BASEX:
Stefan Chulskia27adcb2017-04-06 15:39:08 +02005216 mvpp2_port_power_up(port);
5217 default:
5218 break;
5219 }
Stefan Roese96c19042016-02-10 07:22:10 +01005220
5221 mvpp2_open(dev, port);
5222
5223 return 0;
5224}
5225
5226static void mvpp2_stop(struct udevice *dev)
5227{
5228 struct mvpp2_port *port = dev_get_priv(dev);
5229
5230 mvpp2_stop_dev(port);
5231 mvpp2_cleanup_rxqs(port);
5232 mvpp2_cleanup_txqs(port);
5233}
5234
Matt Pelland5712d7d2019-07-30 09:40:24 -04005235static int mvpp2_write_hwaddr(struct udevice *dev)
5236{
5237 struct mvpp2_port *port = dev_get_priv(dev);
5238
5239 return mvpp2_prs_update_mac_da(port, port->dev_addr);
5240}
5241
Stefan Roese96c19042016-02-10 07:22:10 +01005242static int mvpp2_base_probe(struct udevice *dev)
5243{
5244 struct mvpp2 *priv = dev_get_priv(dev);
Stefan Roese96c19042016-02-10 07:22:10 +01005245 void *bd_space;
5246 u32 size = 0;
5247 int i;
5248
Thomas Petazzoni51ccb412017-02-15 14:08:59 +01005249 /* Save hw-version */
5250 priv->hw_version = dev_get_driver_data(dev);
5251
Stefan Roese96c19042016-02-10 07:22:10 +01005252 /*
5253 * U-Boot special buffer handling:
5254 *
5255 * Allocate buffer area for descs and rx_buffers. This is only
5256 * done once for all interfaces. As only one interface can
5257 * be active. Make this area DMA-safe by disabling the D-cache
5258 */
5259
Sven Auhagena50bca12020-07-01 17:43:43 +02005260 if (!buffer_loc_init) {
5261 /* Align buffer area for descs and rx_buffers to 1MiB */
5262 bd_space = memalign(1 << MMU_SECTION_SHIFT, BD_SPACE);
5263 mmu_set_region_dcache_behaviour((unsigned long)bd_space,
5264 BD_SPACE, DCACHE_OFF);
Stefan Roese96c19042016-02-10 07:22:10 +01005265
Sven Auhagena50bca12020-07-01 17:43:43 +02005266 buffer_loc.aggr_tx_descs = (struct mvpp2_tx_desc *)bd_space;
5267 size += MVPP2_AGGR_TXQ_SIZE * MVPP2_DESC_ALIGNED_SIZE;
Stefan Roese96c19042016-02-10 07:22:10 +01005268
Sven Auhagena50bca12020-07-01 17:43:43 +02005269 buffer_loc.tx_descs =
5270 (struct mvpp2_tx_desc *)((unsigned long)bd_space + size);
5271 size += MVPP2_MAX_TXD * MVPP2_DESC_ALIGNED_SIZE;
Stefan Roese96c19042016-02-10 07:22:10 +01005272
Sven Auhagena50bca12020-07-01 17:43:43 +02005273 buffer_loc.rx_descs =
5274 (struct mvpp2_rx_desc *)((unsigned long)bd_space + size);
5275 size += MVPP2_MAX_RXD * MVPP2_DESC_ALIGNED_SIZE;
Stefan Roese96c19042016-02-10 07:22:10 +01005276
Sven Auhagena50bca12020-07-01 17:43:43 +02005277 for (i = 0; i < MVPP2_BM_POOLS_NUM; i++) {
5278 buffer_loc.bm_pool[i] =
5279 (unsigned long *)((unsigned long)bd_space + size);
5280 if (priv->hw_version == MVPP21)
5281 size += MVPP2_BM_POOL_SIZE_MAX * 2 * sizeof(u32);
5282 else
5283 size += MVPP2_BM_POOL_SIZE_MAX * 2 * sizeof(u64);
5284 }
Stefan Roese96c19042016-02-10 07:22:10 +01005285
Sven Auhagena50bca12020-07-01 17:43:43 +02005286 for (i = 0; i < MVPP2_BM_LONG_BUF_NUM; i++) {
5287 buffer_loc.rx_buffer[i] =
5288 (unsigned long *)((unsigned long)bd_space + size);
5289 size += RX_BUFFER_SIZE;
5290 }
Stefan Roese96c19042016-02-10 07:22:10 +01005291
Sven Auhagena50bca12020-07-01 17:43:43 +02005292 /* Clear the complete area so that all descriptors are cleared */
5293 memset(bd_space, 0, size);
5294
5295 buffer_loc_init = 1;
5296 }
Stefan Roese4cc75412017-02-16 13:29:08 +01005297
Stefan Roese96c19042016-02-10 07:22:10 +01005298 /* Save base addresses for later use */
Simon Glassba1dea42017-05-17 17:18:05 -06005299 priv->base = (void *)devfdt_get_addr_index(dev, 0);
Stefan Roese96c19042016-02-10 07:22:10 +01005300 if (IS_ERR(priv->base))
5301 return PTR_ERR(priv->base);
5302
Thomas Petazzoni5555f072017-02-16 08:03:37 +01005303 if (priv->hw_version == MVPP21) {
Simon Glassba1dea42017-05-17 17:18:05 -06005304 priv->lms_base = (void *)devfdt_get_addr_index(dev, 1);
Thomas Petazzoni5555f072017-02-16 08:03:37 +01005305 if (IS_ERR(priv->lms_base))
5306 return PTR_ERR(priv->lms_base);
5307 } else {
Simon Glassba1dea42017-05-17 17:18:05 -06005308 priv->iface_base = (void *)devfdt_get_addr_index(dev, 1);
Thomas Petazzoni5555f072017-02-16 08:03:37 +01005309 if (IS_ERR(priv->iface_base))
5310 return PTR_ERR(priv->iface_base);
Stefan Roeseb71c2a32017-02-16 08:31:32 +01005311
Stefan Roese40e749b2017-03-22 15:07:30 +01005312 /* Store common base addresses for all ports */
5313 priv->mpcs_base = priv->iface_base + MVPP22_MPCS;
5314 priv->xpcs_base = priv->iface_base + MVPP22_XPCS;
5315 priv->rfu1_base = priv->iface_base + MVPP22_RFU1;
Thomas Petazzoni5555f072017-02-16 08:03:37 +01005316 }
Stefan Roese96c19042016-02-10 07:22:10 +01005317
Thomas Petazzoni38a23282017-02-16 09:03:16 +01005318 if (priv->hw_version == MVPP21)
5319 priv->max_port_rxqs = 8;
5320 else
5321 priv->max_port_rxqs = 32;
5322
Baruch Siach3cf0f2e2018-11-21 13:05:34 +02005323 return 0;
Stefan Roese96c19042016-02-10 07:22:10 +01005324}
5325
Stefan Roesed017cdf2017-02-16 15:26:06 +01005326static int mvpp2_probe(struct udevice *dev)
5327{
5328 struct mvpp2_port *port = dev_get_priv(dev);
5329 struct mvpp2 *priv = dev_get_priv(dev->parent);
5330 int err;
5331
5332 /* Only call the probe function for the parent once */
Stefan Chulski75872182017-08-09 10:37:46 +03005333 if (!priv->probe_done)
Stefan Roesed017cdf2017-02-16 15:26:06 +01005334 err = mvpp2_base_probe(dev->parent);
Stefan Roese8ba5f0b2017-03-22 14:11:16 +01005335
Nevo Hed5e975612019-08-15 18:08:44 -04005336 port->priv = priv;
Baruch Siach3cf0f2e2018-11-21 13:05:34 +02005337
Stefan Roese8ba5f0b2017-03-22 14:11:16 +01005338 err = phy_info_parse(dev, port);
5339 if (err)
5340 return err;
5341
5342 /*
5343 * We need the port specific io base addresses at this stage, since
5344 * gop_port_init() accesses these registers
5345 */
5346 if (priv->hw_version == MVPP21) {
5347 int priv_common_regs_num = 2;
5348
Simon Glassba1dea42017-05-17 17:18:05 -06005349 port->base = (void __iomem *)devfdt_get_addr_index(
Stefan Roese8ba5f0b2017-03-22 14:11:16 +01005350 dev->parent, priv_common_regs_num + port->id);
5351 if (IS_ERR(port->base))
5352 return PTR_ERR(port->base);
5353 } else {
5354 port->gop_id = fdtdec_get_int(gd->fdt_blob, dev_of_offset(dev),
5355 "gop-port-id", -1);
5356 if (port->id == -1) {
Sean Anderson77a88792020-09-15 10:44:56 -04005357 dev_err(dev, "missing gop-port-id value\n");
Stefan Roese8ba5f0b2017-03-22 14:11:16 +01005358 return -EINVAL;
5359 }
5360
5361 port->base = priv->iface_base + MVPP22_PORT_BASE +
5362 port->gop_id * MVPP22_PORT_OFFSET;
Stefan Roese40e749b2017-03-22 15:07:30 +01005363
5364 /* GoP Init */
5365 gop_port_init(port);
Stefan Roese8ba5f0b2017-03-22 14:11:16 +01005366 }
5367
Stefan Chulski75872182017-08-09 10:37:46 +03005368 if (!priv->probe_done) {
5369 /* Initialize network controller */
5370 err = mvpp2_init(dev, priv);
5371 if (err < 0) {
Sean Anderson77a88792020-09-15 10:44:56 -04005372 dev_err(dev, "failed to initialize controller\n");
Stefan Chulski75872182017-08-09 10:37:46 +03005373 return err;
5374 }
5375 priv->num_ports = 0;
5376 priv->probe_done = 1;
Stefan Roesed017cdf2017-02-16 15:26:06 +01005377 }
5378
Stefan Roese40e749b2017-03-22 15:07:30 +01005379 err = mvpp2_port_probe(dev, port, dev_of_offset(dev), priv);
5380 if (err)
5381 return err;
5382
5383 if (priv->hw_version == MVPP22) {
5384 priv->netc_config |= mvpp2_netc_cfg_create(port->gop_id,
5385 port->phy_interface);
5386
5387 /* Netcomplex configurations for all ports */
5388 gop_netc_init(priv, MV_NETC_FIRST_PHASE);
5389 gop_netc_init(priv, MV_NETC_SECOND_PHASE);
5390 }
5391
5392 return 0;
Stefan Roesed017cdf2017-02-16 15:26:06 +01005393}
5394
Stefan Roese380b3232017-03-23 17:01:59 +01005395/*
5396 * Empty BM pool and stop its activity before the OS is started
5397 */
5398static int mvpp2_remove(struct udevice *dev)
5399{
5400 struct mvpp2_port *port = dev_get_priv(dev);
5401 struct mvpp2 *priv = port->priv;
5402 int i;
5403
Stefan Chulski75872182017-08-09 10:37:46 +03005404 priv->num_ports--;
5405
5406 if (priv->num_ports)
5407 return 0;
5408
Stefan Roese380b3232017-03-23 17:01:59 +01005409 for (i = 0; i < MVPP2_BM_POOLS_NUM; i++)
5410 mvpp2_bm_pool_destroy(dev, priv, &priv->bm_pools[i]);
5411
5412 return 0;
5413}
5414
Stefan Roesed017cdf2017-02-16 15:26:06 +01005415static const struct eth_ops mvpp2_ops = {
5416 .start = mvpp2_start,
5417 .send = mvpp2_send,
5418 .recv = mvpp2_recv,
5419 .stop = mvpp2_stop,
Matt Pelland5712d7d2019-07-30 09:40:24 -04005420 .write_hwaddr = mvpp2_write_hwaddr
Stefan Roesed017cdf2017-02-16 15:26:06 +01005421};
5422
5423static struct driver mvpp2_driver = {
5424 .name = "mvpp2",
5425 .id = UCLASS_ETH,
5426 .probe = mvpp2_probe,
Stefan Roese380b3232017-03-23 17:01:59 +01005427 .remove = mvpp2_remove,
Stefan Roesed017cdf2017-02-16 15:26:06 +01005428 .ops = &mvpp2_ops,
Simon Glass8a2b47f2020-12-03 16:55:17 -07005429 .priv_auto = sizeof(struct mvpp2_port),
Simon Glass71fa5b42020-12-03 16:55:18 -07005430 .plat_auto = sizeof(struct eth_pdata),
Stefan Roese380b3232017-03-23 17:01:59 +01005431 .flags = DM_FLAG_ACTIVE_DMA,
Stefan Roesed017cdf2017-02-16 15:26:06 +01005432};
5433
5434/*
5435 * Use a MISC device to bind the n instances (child nodes) of the
5436 * network base controller in UCLASS_ETH.
5437 */
Stefan Roese96c19042016-02-10 07:22:10 +01005438static int mvpp2_base_bind(struct udevice *parent)
5439{
5440 const void *blob = gd->fdt_blob;
Simon Glassdd79d6e2017-01-17 16:52:55 -07005441 int node = dev_of_offset(parent);
Stefan Roese96c19042016-02-10 07:22:10 +01005442 struct uclass_driver *drv;
5443 struct udevice *dev;
5444 struct eth_pdata *plat;
5445 char *name;
5446 int subnode;
5447 u32 id;
Stefan Roese38801d42017-02-24 10:12:41 +01005448 int base_id_add;
Stefan Roese96c19042016-02-10 07:22:10 +01005449
5450 /* Lookup eth driver */
5451 drv = lists_uclass_lookup(UCLASS_ETH);
5452 if (!drv) {
5453 puts("Cannot find eth driver\n");
5454 return -ENOENT;
5455 }
5456
Stefan Roese38801d42017-02-24 10:12:41 +01005457 base_id_add = base_id;
5458
Simon Glass499c29e2016-10-02 17:59:29 -06005459 fdt_for_each_subnode(subnode, blob, node) {
Stefan Roese38801d42017-02-24 10:12:41 +01005460 /* Increment base_id for all subnodes, also the disabled ones */
5461 base_id++;
5462
Stefan Roese96c19042016-02-10 07:22:10 +01005463 /* Skip disabled ports */
5464 if (!fdtdec_get_is_enabled(blob, subnode))
5465 continue;
5466
5467 plat = calloc(1, sizeof(*plat));
5468 if (!plat)
5469 return -ENOMEM;
5470
5471 id = fdtdec_get_int(blob, subnode, "port-id", -1);
Stefan Roese38801d42017-02-24 10:12:41 +01005472 id += base_id_add;
Stefan Roese96c19042016-02-10 07:22:10 +01005473
5474 name = calloc(1, 16);
Heinrich Schuchardtd0c42d72018-03-07 03:39:04 +01005475 if (!name) {
5476 free(plat);
5477 return -ENOMEM;
5478 }
Stefan Roese96c19042016-02-10 07:22:10 +01005479 sprintf(name, "mvpp2-%d", id);
5480
5481 /* Create child device UCLASS_ETH and bind it */
Simon Glass6996c662020-11-28 17:50:03 -07005482 device_bind(parent, &mvpp2_driver, name, plat,
5483 offset_to_ofnode(subnode), &dev);
Stefan Roese96c19042016-02-10 07:22:10 +01005484 }
5485
5486 return 0;
5487}
5488
5489static const struct udevice_id mvpp2_ids[] = {
Thomas Petazzoni51ccb412017-02-15 14:08:59 +01005490 {
5491 .compatible = "marvell,armada-375-pp2",
5492 .data = MVPP21,
5493 },
Thomas Petazzonie595a232017-02-20 11:54:31 +01005494 {
5495 .compatible = "marvell,armada-7k-pp22",
5496 .data = MVPP22,
5497 },
Stefan Roese96c19042016-02-10 07:22:10 +01005498 { }
5499};
5500
5501U_BOOT_DRIVER(mvpp2_base) = {
5502 .name = "mvpp2_base",
5503 .id = UCLASS_MISC,
5504 .of_match = mvpp2_ids,
5505 .bind = mvpp2_base_bind,
Simon Glass8a2b47f2020-12-03 16:55:17 -07005506 .priv_auto = sizeof(struct mvpp2),
Stefan Roese96c19042016-02-10 07:22:10 +01005507};