blob: 3d920e85ffefc16814efe6086d06354c2798abf0 [file] [log] [blame]
Stefan Roese99d4c6d2016-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 Roesec9607c92017-02-24 10:12:41 +01009 * Copyright (C) 2016-2017 Stefan Roese <sr@denx.de>
Stefan Roese99d4c6d2016-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 Glass1eb69ae2019-11-14 12:57:39 -070017#include <cpu_func.h>
Stefan Roese99d4c6d2016-02-10 07:22:10 +010018#include <dm.h>
Simon Glass90526e92020-05-10 11:39:56 -060019#include <asm/cache.h>
Simon Glass401d1c42020-10-30 21:38:53 -060020#include <asm/global_data.h>
Stefan Roese99d4c6d2016-02-10 07:22:10 +010021#include <dm/device-internal.h>
Simon Glass336d4612020-02-03 07:36:16 -070022#include <dm/device_compat.h>
Simon Glass61b29b82020-02-03 07:36:15 -070023#include <dm/devres.h>
Stefan Roese99d4c6d2016-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 Glasscd93d622020-05-10 11:40:13 -060030#include <linux/bitops.h>
Simon Glasseb41d8a2020-05-10 11:40:08 -060031#include <linux/bug.h>
Simon Glassc05ed002020-05-10 11:40:11 -060032#include <linux/delay.h>
Simon Glass61b29b82020-02-03 07:36:15 -070033#include <linux/err.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090034#include <linux/errno.h>
Stefan Roese99d4c6d2016-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 Glass4d72caa2020-05-10 11:40:01 -060041#include <linux/libfdt.h>
Stefan Roese99d4c6d2016-02-10 07:22:10 +010042#include <linux/mbus.h>
Stefan Chulski41893732017-08-09 10:37:43 +030043#include <asm-generic/gpio.h>
Stefan Chulski377883f2017-08-09 10:37:44 +030044#include <fdt_support.h>
Nevo Hed2a428702019-08-15 18:08:44 -040045#include <linux/mdio.h>
Stefan Roese99d4c6d2016-02-10 07:22:10 +010046
47DECLARE_GLOBAL_DATA_PTR;
48
Stefan Roese99d4c6d2016-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
69#define CONFIG_NR_CPUS 1
Stefan Roese99d4c6d2016-02-10 07:22:10 +010070
71/* 2(HW hdr) 14(MAC hdr) 4(CRC) 32(extra for cache prefetch) */
72#define WRAP (2 + ETH_HLEN + 4 + 32)
73#define MTU 1500
74#define RX_BUFFER_SIZE (ALIGN(MTU + WRAP, ARCH_DMA_MINALIGN))
75
Stefan Roese99d4c6d2016-02-10 07:22:10 +010076/* RX Fifo Registers */
77#define MVPP2_RX_DATA_FIFO_SIZE_REG(port) (0x00 + 4 * (port))
78#define MVPP2_RX_ATTR_FIFO_SIZE_REG(port) (0x20 + 4 * (port))
79#define MVPP2_RX_MIN_PKT_SIZE_REG 0x60
80#define MVPP2_RX_FIFO_INIT_REG 0x64
81
82/* RX DMA Top Registers */
83#define MVPP2_RX_CTRL_REG(port) (0x140 + 4 * (port))
84#define MVPP2_RX_LOW_LATENCY_PKT_SIZE(s) (((s) & 0xfff) << 16)
85#define MVPP2_RX_USE_PSEUDO_FOR_CSUM_MASK BIT(31)
86#define MVPP2_POOL_BUF_SIZE_REG(pool) (0x180 + 4 * (pool))
87#define MVPP2_POOL_BUF_SIZE_OFFSET 5
88#define MVPP2_RXQ_CONFIG_REG(rxq) (0x800 + 4 * (rxq))
89#define MVPP2_SNOOP_PKT_SIZE_MASK 0x1ff
90#define MVPP2_SNOOP_BUF_HDR_MASK BIT(9)
91#define MVPP2_RXQ_POOL_SHORT_OFFS 20
Thomas Petazzoni8f3e4c32017-02-16 06:53:51 +010092#define MVPP21_RXQ_POOL_SHORT_MASK 0x700000
93#define MVPP22_RXQ_POOL_SHORT_MASK 0xf00000
Stefan Roese99d4c6d2016-02-10 07:22:10 +010094#define MVPP2_RXQ_POOL_LONG_OFFS 24
Thomas Petazzoni8f3e4c32017-02-16 06:53:51 +010095#define MVPP21_RXQ_POOL_LONG_MASK 0x7000000
96#define MVPP22_RXQ_POOL_LONG_MASK 0xf000000
Stefan Roese99d4c6d2016-02-10 07:22:10 +010097#define MVPP2_RXQ_PACKET_OFFSET_OFFS 28
98#define MVPP2_RXQ_PACKET_OFFSET_MASK 0x70000000
99#define MVPP2_RXQ_DISABLE_MASK BIT(31)
100
101/* Parser Registers */
102#define MVPP2_PRS_INIT_LOOKUP_REG 0x1000
103#define MVPP2_PRS_PORT_LU_MAX 0xf
104#define MVPP2_PRS_PORT_LU_MASK(port) (0xff << ((port) * 4))
105#define MVPP2_PRS_PORT_LU_VAL(port, val) ((val) << ((port) * 4))
106#define MVPP2_PRS_INIT_OFFS_REG(port) (0x1004 + ((port) & 4))
107#define MVPP2_PRS_INIT_OFF_MASK(port) (0x3f << (((port) % 4) * 8))
108#define MVPP2_PRS_INIT_OFF_VAL(port, val) ((val) << (((port) % 4) * 8))
109#define MVPP2_PRS_MAX_LOOP_REG(port) (0x100c + ((port) & 4))
110#define MVPP2_PRS_MAX_LOOP_MASK(port) (0xff << (((port) % 4) * 8))
111#define MVPP2_PRS_MAX_LOOP_VAL(port, val) ((val) << (((port) % 4) * 8))
112#define MVPP2_PRS_TCAM_IDX_REG 0x1100
113#define MVPP2_PRS_TCAM_DATA_REG(idx) (0x1104 + (idx) * 4)
114#define MVPP2_PRS_TCAM_INV_MASK BIT(31)
115#define MVPP2_PRS_SRAM_IDX_REG 0x1200
116#define MVPP2_PRS_SRAM_DATA_REG(idx) (0x1204 + (idx) * 4)
117#define MVPP2_PRS_TCAM_CTRL_REG 0x1230
118#define MVPP2_PRS_TCAM_EN_MASK BIT(0)
119
120/* Classifier Registers */
121#define MVPP2_CLS_MODE_REG 0x1800
122#define MVPP2_CLS_MODE_ACTIVE_MASK BIT(0)
123#define MVPP2_CLS_PORT_WAY_REG 0x1810
124#define MVPP2_CLS_PORT_WAY_MASK(port) (1 << (port))
125#define MVPP2_CLS_LKP_INDEX_REG 0x1814
126#define MVPP2_CLS_LKP_INDEX_WAY_OFFS 6
127#define MVPP2_CLS_LKP_TBL_REG 0x1818
128#define MVPP2_CLS_LKP_TBL_RXQ_MASK 0xff
129#define MVPP2_CLS_LKP_TBL_LOOKUP_EN_MASK BIT(25)
130#define MVPP2_CLS_FLOW_INDEX_REG 0x1820
131#define MVPP2_CLS_FLOW_TBL0_REG 0x1824
132#define MVPP2_CLS_FLOW_TBL1_REG 0x1828
133#define MVPP2_CLS_FLOW_TBL2_REG 0x182c
134#define MVPP2_CLS_OVERSIZE_RXQ_LOW_REG(port) (0x1980 + ((port) * 4))
135#define MVPP2_CLS_OVERSIZE_RXQ_LOW_BITS 3
136#define MVPP2_CLS_OVERSIZE_RXQ_LOW_MASK 0x7
137#define MVPP2_CLS_SWFWD_P2HQ_REG(port) (0x19b0 + ((port) * 4))
138#define MVPP2_CLS_SWFWD_PCTRL_REG 0x19d0
139#define MVPP2_CLS_SWFWD_PCTRL_MASK(port) (1 << (port))
140
141/* Descriptor Manager Top Registers */
142#define MVPP2_RXQ_NUM_REG 0x2040
143#define MVPP2_RXQ_DESC_ADDR_REG 0x2044
Thomas Petazzoni80350f52017-02-20 11:36:57 +0100144#define MVPP22_DESC_ADDR_OFFS 8
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100145#define MVPP2_RXQ_DESC_SIZE_REG 0x2048
146#define MVPP2_RXQ_DESC_SIZE_MASK 0x3ff0
147#define MVPP2_RXQ_STATUS_UPDATE_REG(rxq) (0x3000 + 4 * (rxq))
148#define MVPP2_RXQ_NUM_PROCESSED_OFFSET 0
149#define MVPP2_RXQ_NUM_NEW_OFFSET 16
150#define MVPP2_RXQ_STATUS_REG(rxq) (0x3400 + 4 * (rxq))
151#define MVPP2_RXQ_OCCUPIED_MASK 0x3fff
152#define MVPP2_RXQ_NON_OCCUPIED_OFFSET 16
153#define MVPP2_RXQ_NON_OCCUPIED_MASK 0x3fff0000
154#define MVPP2_RXQ_THRESH_REG 0x204c
155#define MVPP2_OCCUPIED_THRESH_OFFSET 0
156#define MVPP2_OCCUPIED_THRESH_MASK 0x3fff
157#define MVPP2_RXQ_INDEX_REG 0x2050
158#define MVPP2_TXQ_NUM_REG 0x2080
159#define MVPP2_TXQ_DESC_ADDR_REG 0x2084
160#define MVPP2_TXQ_DESC_SIZE_REG 0x2088
161#define MVPP2_TXQ_DESC_SIZE_MASK 0x3ff0
162#define MVPP2_AGGR_TXQ_UPDATE_REG 0x2090
163#define MVPP2_TXQ_THRESH_REG 0x2094
164#define MVPP2_TRANSMITTED_THRESH_OFFSET 16
165#define MVPP2_TRANSMITTED_THRESH_MASK 0x3fff0000
166#define MVPP2_TXQ_INDEX_REG 0x2098
167#define MVPP2_TXQ_PREF_BUF_REG 0x209c
168#define MVPP2_PREF_BUF_PTR(desc) ((desc) & 0xfff)
169#define MVPP2_PREF_BUF_SIZE_4 (BIT(12) | BIT(13))
170#define MVPP2_PREF_BUF_SIZE_16 (BIT(12) | BIT(14))
171#define MVPP2_PREF_BUF_THRESH(val) ((val) << 17)
172#define MVPP2_TXQ_DRAIN_EN_MASK BIT(31)
173#define MVPP2_TXQ_PENDING_REG 0x20a0
174#define MVPP2_TXQ_PENDING_MASK 0x3fff
175#define MVPP2_TXQ_INT_STATUS_REG 0x20a4
176#define MVPP2_TXQ_SENT_REG(txq) (0x3c00 + 4 * (txq))
177#define MVPP2_TRANSMITTED_COUNT_OFFSET 16
178#define MVPP2_TRANSMITTED_COUNT_MASK 0x3fff0000
179#define MVPP2_TXQ_RSVD_REQ_REG 0x20b0
180#define MVPP2_TXQ_RSVD_REQ_Q_OFFSET 16
181#define MVPP2_TXQ_RSVD_RSLT_REG 0x20b4
182#define MVPP2_TXQ_RSVD_RSLT_MASK 0x3fff
183#define MVPP2_TXQ_RSVD_CLR_REG 0x20b8
184#define MVPP2_TXQ_RSVD_CLR_OFFSET 16
185#define MVPP2_AGGR_TXQ_DESC_ADDR_REG(cpu) (0x2100 + 4 * (cpu))
Thomas Petazzoni80350f52017-02-20 11:36:57 +0100186#define MVPP22_AGGR_TXQ_DESC_ADDR_OFFS 8
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100187#define MVPP2_AGGR_TXQ_DESC_SIZE_REG(cpu) (0x2140 + 4 * (cpu))
188#define MVPP2_AGGR_TXQ_DESC_SIZE_MASK 0x3ff0
189#define MVPP2_AGGR_TXQ_STATUS_REG(cpu) (0x2180 + 4 * (cpu))
190#define MVPP2_AGGR_TXQ_PENDING_MASK 0x3fff
191#define MVPP2_AGGR_TXQ_INDEX_REG(cpu) (0x21c0 + 4 * (cpu))
192
193/* MBUS bridge registers */
194#define MVPP2_WIN_BASE(w) (0x4000 + ((w) << 2))
195#define MVPP2_WIN_SIZE(w) (0x4020 + ((w) << 2))
196#define MVPP2_WIN_REMAP(w) (0x4040 + ((w) << 2))
197#define MVPP2_BASE_ADDR_ENABLE 0x4060
198
Thomas Petazzonicdf77792017-02-16 08:41:07 +0100199/* AXI Bridge Registers */
200#define MVPP22_AXI_BM_WR_ATTR_REG 0x4100
201#define MVPP22_AXI_BM_RD_ATTR_REG 0x4104
202#define MVPP22_AXI_AGGRQ_DESCR_RD_ATTR_REG 0x4110
203#define MVPP22_AXI_TXQ_DESCR_WR_ATTR_REG 0x4114
204#define MVPP22_AXI_TXQ_DESCR_RD_ATTR_REG 0x4118
205#define MVPP22_AXI_RXQ_DESCR_WR_ATTR_REG 0x411c
206#define MVPP22_AXI_RX_DATA_WR_ATTR_REG 0x4120
207#define MVPP22_AXI_TX_DATA_RD_ATTR_REG 0x4130
208#define MVPP22_AXI_RD_NORMAL_CODE_REG 0x4150
209#define MVPP22_AXI_RD_SNOOP_CODE_REG 0x4154
210#define MVPP22_AXI_WR_NORMAL_CODE_REG 0x4160
211#define MVPP22_AXI_WR_SNOOP_CODE_REG 0x4164
212
213/* Values for AXI Bridge registers */
214#define MVPP22_AXI_ATTR_CACHE_OFFS 0
215#define MVPP22_AXI_ATTR_DOMAIN_OFFS 12
216
217#define MVPP22_AXI_CODE_CACHE_OFFS 0
218#define MVPP22_AXI_CODE_DOMAIN_OFFS 4
219
220#define MVPP22_AXI_CODE_CACHE_NON_CACHE 0x3
221#define MVPP22_AXI_CODE_CACHE_WR_CACHE 0x7
222#define MVPP22_AXI_CODE_CACHE_RD_CACHE 0xb
223
224#define MVPP22_AXI_CODE_DOMAIN_OUTER_DOM 2
225#define MVPP22_AXI_CODE_DOMAIN_SYSTEM 3
226
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100227/* Interrupt Cause and Mask registers */
228#define MVPP2_ISR_RX_THRESHOLD_REG(rxq) (0x5200 + 4 * (rxq))
Thomas Petazzonibc0bbf42017-02-16 08:46:37 +0100229#define MVPP21_ISR_RXQ_GROUP_REG(rxq) (0x5400 + 4 * (rxq))
230
231#define MVPP22_ISR_RXQ_GROUP_INDEX_REG 0x5400
232#define MVPP22_ISR_RXQ_GROUP_INDEX_SUBGROUP_MASK 0xf
233#define MVPP22_ISR_RXQ_GROUP_INDEX_GROUP_MASK 0x380
234#define MVPP22_ISR_RXQ_GROUP_INDEX_GROUP_OFFSET 7
235
236#define MVPP22_ISR_RXQ_GROUP_INDEX_SUBGROUP_MASK 0xf
237#define MVPP22_ISR_RXQ_GROUP_INDEX_GROUP_MASK 0x380
238
239#define MVPP22_ISR_RXQ_SUB_GROUP_CONFIG_REG 0x5404
240#define MVPP22_ISR_RXQ_SUB_GROUP_STARTQ_MASK 0x1f
241#define MVPP22_ISR_RXQ_SUB_GROUP_SIZE_MASK 0xf00
242#define MVPP22_ISR_RXQ_SUB_GROUP_SIZE_OFFSET 8
243
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100244#define MVPP2_ISR_ENABLE_REG(port) (0x5420 + 4 * (port))
245#define MVPP2_ISR_ENABLE_INTERRUPT(mask) ((mask) & 0xffff)
246#define MVPP2_ISR_DISABLE_INTERRUPT(mask) (((mask) << 16) & 0xffff0000)
247#define MVPP2_ISR_RX_TX_CAUSE_REG(port) (0x5480 + 4 * (port))
248#define MVPP2_CAUSE_RXQ_OCCUP_DESC_ALL_MASK 0xffff
249#define MVPP2_CAUSE_TXQ_OCCUP_DESC_ALL_MASK 0xff0000
250#define MVPP2_CAUSE_RX_FIFO_OVERRUN_MASK BIT(24)
251#define MVPP2_CAUSE_FCS_ERR_MASK BIT(25)
252#define MVPP2_CAUSE_TX_FIFO_UNDERRUN_MASK BIT(26)
253#define MVPP2_CAUSE_TX_EXCEPTION_SUM_MASK BIT(29)
254#define MVPP2_CAUSE_RX_EXCEPTION_SUM_MASK BIT(30)
255#define MVPP2_CAUSE_MISC_SUM_MASK BIT(31)
256#define MVPP2_ISR_RX_TX_MASK_REG(port) (0x54a0 + 4 * (port))
257#define MVPP2_ISR_PON_RX_TX_MASK_REG 0x54bc
258#define MVPP2_PON_CAUSE_RXQ_OCCUP_DESC_ALL_MASK 0xffff
259#define MVPP2_PON_CAUSE_TXP_OCCUP_DESC_ALL_MASK 0x3fc00000
260#define MVPP2_PON_CAUSE_MISC_SUM_MASK BIT(31)
261#define MVPP2_ISR_MISC_CAUSE_REG 0x55b0
262
263/* Buffer Manager registers */
264#define MVPP2_BM_POOL_BASE_REG(pool) (0x6000 + ((pool) * 4))
265#define MVPP2_BM_POOL_BASE_ADDR_MASK 0xfffff80
266#define MVPP2_BM_POOL_SIZE_REG(pool) (0x6040 + ((pool) * 4))
267#define MVPP2_BM_POOL_SIZE_MASK 0xfff0
268#define MVPP2_BM_POOL_READ_PTR_REG(pool) (0x6080 + ((pool) * 4))
269#define MVPP2_BM_POOL_GET_READ_PTR_MASK 0xfff0
270#define MVPP2_BM_POOL_PTRS_NUM_REG(pool) (0x60c0 + ((pool) * 4))
271#define MVPP2_BM_POOL_PTRS_NUM_MASK 0xfff0
272#define MVPP2_BM_BPPI_READ_PTR_REG(pool) (0x6100 + ((pool) * 4))
273#define MVPP2_BM_BPPI_PTRS_NUM_REG(pool) (0x6140 + ((pool) * 4))
274#define MVPP2_BM_BPPI_PTR_NUM_MASK 0x7ff
275#define MVPP2_BM_BPPI_PREFETCH_FULL_MASK BIT(16)
276#define MVPP2_BM_POOL_CTRL_REG(pool) (0x6200 + ((pool) * 4))
277#define MVPP2_BM_START_MASK BIT(0)
278#define MVPP2_BM_STOP_MASK BIT(1)
279#define MVPP2_BM_STATE_MASK BIT(4)
280#define MVPP2_BM_LOW_THRESH_OFFS 8
281#define MVPP2_BM_LOW_THRESH_MASK 0x7f00
282#define MVPP2_BM_LOW_THRESH_VALUE(val) ((val) << \
283 MVPP2_BM_LOW_THRESH_OFFS)
284#define MVPP2_BM_HIGH_THRESH_OFFS 16
285#define MVPP2_BM_HIGH_THRESH_MASK 0x7f0000
286#define MVPP2_BM_HIGH_THRESH_VALUE(val) ((val) << \
287 MVPP2_BM_HIGH_THRESH_OFFS)
288#define MVPP2_BM_INTR_CAUSE_REG(pool) (0x6240 + ((pool) * 4))
289#define MVPP2_BM_RELEASED_DELAY_MASK BIT(0)
290#define MVPP2_BM_ALLOC_FAILED_MASK BIT(1)
291#define MVPP2_BM_BPPE_EMPTY_MASK BIT(2)
292#define MVPP2_BM_BPPE_FULL_MASK BIT(3)
293#define MVPP2_BM_AVAILABLE_BP_LOW_MASK BIT(4)
294#define MVPP2_BM_INTR_MASK_REG(pool) (0x6280 + ((pool) * 4))
295#define MVPP2_BM_PHY_ALLOC_REG(pool) (0x6400 + ((pool) * 4))
296#define MVPP2_BM_PHY_ALLOC_GRNTD_MASK BIT(0)
297#define MVPP2_BM_VIRT_ALLOC_REG 0x6440
Thomas Petazzonic8feeb22017-02-20 11:29:16 +0100298#define MVPP2_BM_ADDR_HIGH_ALLOC 0x6444
299#define MVPP2_BM_ADDR_HIGH_PHYS_MASK 0xff
300#define MVPP2_BM_ADDR_HIGH_VIRT_MASK 0xff00
301#define MVPP2_BM_ADDR_HIGH_VIRT_SHIFT 8
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100302#define MVPP2_BM_PHY_RLS_REG(pool) (0x6480 + ((pool) * 4))
303#define MVPP2_BM_PHY_RLS_MC_BUFF_MASK BIT(0)
304#define MVPP2_BM_PHY_RLS_PRIO_EN_MASK BIT(1)
305#define MVPP2_BM_PHY_RLS_GRNTD_MASK BIT(2)
306#define MVPP2_BM_VIRT_RLS_REG 0x64c0
Thomas Petazzonic8feeb22017-02-20 11:29:16 +0100307#define MVPP21_BM_MC_RLS_REG 0x64c4
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100308#define MVPP2_BM_MC_ID_MASK 0xfff
309#define MVPP2_BM_FORCE_RELEASE_MASK BIT(12)
Thomas Petazzonic8feeb22017-02-20 11:29:16 +0100310#define MVPP22_BM_ADDR_HIGH_RLS_REG 0x64c4
311#define MVPP22_BM_ADDR_HIGH_PHYS_RLS_MASK 0xff
312#define MVPP22_BM_ADDR_HIGH_VIRT_RLS_MASK 0xff00
313#define MVPP22_BM_ADDR_HIGH_VIRT_RLS_SHIFT 8
314#define MVPP22_BM_MC_RLS_REG 0x64d4
Stefan Chulski783e7852017-08-09 10:37:50 +0300315#define MVPP22_BM_POOL_BASE_HIGH_REG 0x6310
316#define MVPP22_BM_POOL_BASE_HIGH_MASK 0xff
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100317
318/* TX Scheduler registers */
319#define MVPP2_TXP_SCHED_PORT_INDEX_REG 0x8000
320#define MVPP2_TXP_SCHED_Q_CMD_REG 0x8004
321#define MVPP2_TXP_SCHED_ENQ_MASK 0xff
322#define MVPP2_TXP_SCHED_DISQ_OFFSET 8
323#define MVPP2_TXP_SCHED_CMD_1_REG 0x8010
324#define MVPP2_TXP_SCHED_PERIOD_REG 0x8018
325#define MVPP2_TXP_SCHED_MTU_REG 0x801c
326#define MVPP2_TXP_MTU_MAX 0x7FFFF
327#define MVPP2_TXP_SCHED_REFILL_REG 0x8020
328#define MVPP2_TXP_REFILL_TOKENS_ALL_MASK 0x7ffff
329#define MVPP2_TXP_REFILL_PERIOD_ALL_MASK 0x3ff00000
330#define MVPP2_TXP_REFILL_PERIOD_MASK(v) ((v) << 20)
331#define MVPP2_TXP_SCHED_TOKEN_SIZE_REG 0x8024
332#define MVPP2_TXP_TOKEN_SIZE_MAX 0xffffffff
333#define MVPP2_TXQ_SCHED_REFILL_REG(q) (0x8040 + ((q) << 2))
334#define MVPP2_TXQ_REFILL_TOKENS_ALL_MASK 0x7ffff
335#define MVPP2_TXQ_REFILL_PERIOD_ALL_MASK 0x3ff00000
336#define MVPP2_TXQ_REFILL_PERIOD_MASK(v) ((v) << 20)
337#define MVPP2_TXQ_SCHED_TOKEN_SIZE_REG(q) (0x8060 + ((q) << 2))
338#define MVPP2_TXQ_TOKEN_SIZE_MAX 0x7fffffff
339#define MVPP2_TXQ_SCHED_TOKEN_CNTR_REG(q) (0x8080 + ((q) << 2))
340#define MVPP2_TXQ_TOKEN_CNTR_MAX 0xffffffff
341
342/* TX general registers */
343#define MVPP2_TX_SNOOP_REG 0x8800
344#define MVPP2_TX_PORT_FLUSH_REG 0x8810
345#define MVPP2_TX_PORT_FLUSH_MASK(port) (1 << (port))
346
347/* LMS registers */
348#define MVPP2_SRC_ADDR_MIDDLE 0x24
349#define MVPP2_SRC_ADDR_HIGH 0x28
350#define MVPP2_PHY_AN_CFG0_REG 0x34
351#define MVPP2_PHY_AN_STOP_SMI0_MASK BIT(7)
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100352#define MVPP2_MNG_EXTENDED_GLOBAL_CTRL_REG 0x305c
Thomas Petazzoni6b28f422017-02-15 12:16:23 +0100353#define MVPP2_EXT_GLOBAL_CTRL_DEFAULT 0x27
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100354
355/* Per-port registers */
356#define MVPP2_GMAC_CTRL_0_REG 0x0
357#define MVPP2_GMAC_PORT_EN_MASK BIT(0)
Stefan Roese31aa1e32017-03-22 15:07:30 +0100358#define MVPP2_GMAC_PORT_TYPE_MASK BIT(1)
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100359#define MVPP2_GMAC_MAX_RX_SIZE_OFFS 2
360#define MVPP2_GMAC_MAX_RX_SIZE_MASK 0x7ffc
361#define MVPP2_GMAC_MIB_CNTR_EN_MASK BIT(15)
362#define MVPP2_GMAC_CTRL_1_REG 0x4
363#define MVPP2_GMAC_PERIODIC_XON_EN_MASK BIT(1)
364#define MVPP2_GMAC_GMII_LB_EN_MASK BIT(5)
365#define MVPP2_GMAC_PCS_LB_EN_BIT 6
366#define MVPP2_GMAC_PCS_LB_EN_MASK BIT(6)
367#define MVPP2_GMAC_SA_LOW_OFFS 7
368#define MVPP2_GMAC_CTRL_2_REG 0x8
369#define MVPP2_GMAC_INBAND_AN_MASK BIT(0)
Stefan Roese31aa1e32017-03-22 15:07:30 +0100370#define MVPP2_GMAC_SGMII_MODE_MASK BIT(0)
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100371#define MVPP2_GMAC_PCS_ENABLE_MASK BIT(3)
372#define MVPP2_GMAC_PORT_RGMII_MASK BIT(4)
Stefan Roese31aa1e32017-03-22 15:07:30 +0100373#define MVPP2_GMAC_PORT_DIS_PADING_MASK BIT(5)
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100374#define MVPP2_GMAC_PORT_RESET_MASK BIT(6)
Stefan Roese31aa1e32017-03-22 15:07:30 +0100375#define MVPP2_GMAC_CLK_125_BYPS_EN_MASK BIT(9)
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100376#define MVPP2_GMAC_AUTONEG_CONFIG 0xc
377#define MVPP2_GMAC_FORCE_LINK_DOWN BIT(0)
378#define MVPP2_GMAC_FORCE_LINK_PASS BIT(1)
Stefan Roese31aa1e32017-03-22 15:07:30 +0100379#define MVPP2_GMAC_EN_PCS_AN BIT(2)
380#define MVPP2_GMAC_AN_BYPASS_EN BIT(3)
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100381#define MVPP2_GMAC_CONFIG_MII_SPEED BIT(5)
382#define MVPP2_GMAC_CONFIG_GMII_SPEED BIT(6)
383#define MVPP2_GMAC_AN_SPEED_EN BIT(7)
384#define MVPP2_GMAC_FC_ADV_EN BIT(9)
Stefan Roese31aa1e32017-03-22 15:07:30 +0100385#define MVPP2_GMAC_EN_FC_AN BIT(11)
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100386#define MVPP2_GMAC_CONFIG_FULL_DUPLEX BIT(12)
387#define MVPP2_GMAC_AN_DUPLEX_EN BIT(13)
Stefan Roese31aa1e32017-03-22 15:07:30 +0100388#define MVPP2_GMAC_CHOOSE_SAMPLE_TX_CONFIG BIT(15)
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100389#define MVPP2_GMAC_PORT_FIFO_CFG_1_REG 0x1c
390#define MVPP2_GMAC_TX_FIFO_MIN_TH_OFFS 6
391#define MVPP2_GMAC_TX_FIFO_MIN_TH_ALL_MASK 0x1fc0
392#define MVPP2_GMAC_TX_FIFO_MIN_TH_MASK(v) (((v) << 6) & \
393 MVPP2_GMAC_TX_FIFO_MIN_TH_ALL_MASK)
Stefan Roese31aa1e32017-03-22 15:07:30 +0100394#define MVPP2_GMAC_CTRL_4_REG 0x90
395#define MVPP2_GMAC_CTRL4_EXT_PIN_GMII_SEL_MASK BIT(0)
396#define MVPP2_GMAC_CTRL4_DP_CLK_SEL_MASK BIT(5)
397#define MVPP2_GMAC_CTRL4_SYNC_BYPASS_MASK BIT(6)
398#define MVPP2_GMAC_CTRL4_QSGMII_BYPASS_ACTIVE_MASK BIT(7)
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100399
Stefan Roese31aa1e32017-03-22 15:07:30 +0100400/*
401 * Per-port XGMAC registers. PPv2.2 only, only for GOP port 0,
402 * relative to port->base.
403 */
404
405/* Port Mac Control0 */
406#define MVPP22_XLG_CTRL0_REG 0x100
407#define MVPP22_XLG_PORT_EN BIT(0)
408#define MVPP22_XLG_MAC_RESETN BIT(1)
409#define MVPP22_XLG_RX_FC_EN BIT(7)
410#define MVPP22_XLG_MIBCNT_DIS BIT(13)
411/* Port Mac Control1 */
412#define MVPP22_XLG_CTRL1_REG 0x104
413#define MVPP22_XLG_MAX_RX_SIZE_OFFS 0
414#define MVPP22_XLG_MAX_RX_SIZE_MASK 0x1fff
415/* Port Interrupt Mask */
416#define MVPP22_XLG_INTERRUPT_MASK_REG 0x118
417#define MVPP22_XLG_INTERRUPT_LINK_CHANGE BIT(1)
418/* Port Mac Control3 */
419#define MVPP22_XLG_CTRL3_REG 0x11c
420#define MVPP22_XLG_CTRL3_MACMODESELECT_MASK (7 << 13)
421#define MVPP22_XLG_CTRL3_MACMODESELECT_GMAC (0 << 13)
422#define MVPP22_XLG_CTRL3_MACMODESELECT_10GMAC (1 << 13)
423/* Port Mac Control4 */
424#define MVPP22_XLG_CTRL4_REG 0x184
425#define MVPP22_XLG_FORWARD_802_3X_FC_EN BIT(5)
426#define MVPP22_XLG_FORWARD_PFC_EN BIT(6)
427#define MVPP22_XLG_MODE_DMA_1G BIT(12)
428#define MVPP22_XLG_EN_IDLE_CHECK_FOR_LINK BIT(14)
429
430/* XPCS registers */
431
432/* Global Configuration 0 */
433#define MVPP22_XPCS_GLOBAL_CFG_0_REG 0x0
434#define MVPP22_XPCS_PCSRESET BIT(0)
435#define MVPP22_XPCS_PCSMODE_OFFS 3
436#define MVPP22_XPCS_PCSMODE_MASK (0x3 << \
437 MVPP22_XPCS_PCSMODE_OFFS)
438#define MVPP22_XPCS_LANEACTIVE_OFFS 5
439#define MVPP22_XPCS_LANEACTIVE_MASK (0x3 << \
440 MVPP22_XPCS_LANEACTIVE_OFFS)
441
442/* MPCS registers */
443
444#define PCS40G_COMMON_CONTROL 0x14
Stefan Chulskie09d0c82017-04-06 15:39:08 +0200445#define FORWARD_ERROR_CORRECTION_MASK BIT(10)
Stefan Roese31aa1e32017-03-22 15:07:30 +0100446
447#define PCS_CLOCK_RESET 0x14c
448#define TX_SD_CLK_RESET_MASK BIT(0)
449#define RX_SD_CLK_RESET_MASK BIT(1)
450#define MAC_CLK_RESET_MASK BIT(2)
451#define CLK_DIVISION_RATIO_OFFS 4
452#define CLK_DIVISION_RATIO_MASK (0x7 << CLK_DIVISION_RATIO_OFFS)
453#define CLK_DIV_PHASE_SET_MASK BIT(11)
454
455/* System Soft Reset 1 */
456#define GOP_SOFT_RESET_1_REG 0x108
457#define NETC_GOP_SOFT_RESET_OFFS 6
458#define NETC_GOP_SOFT_RESET_MASK (0x1 << \
459 NETC_GOP_SOFT_RESET_OFFS)
460
461/* Ports Control 0 */
462#define NETCOMP_PORTS_CONTROL_0_REG 0x110
463#define NETC_BUS_WIDTH_SELECT_OFFS 1
464#define NETC_BUS_WIDTH_SELECT_MASK (0x1 << \
465 NETC_BUS_WIDTH_SELECT_OFFS)
466#define NETC_GIG_RX_DATA_SAMPLE_OFFS 29
467#define NETC_GIG_RX_DATA_SAMPLE_MASK (0x1 << \
468 NETC_GIG_RX_DATA_SAMPLE_OFFS)
469#define NETC_CLK_DIV_PHASE_OFFS 31
470#define NETC_CLK_DIV_PHASE_MASK (0x1 << NETC_CLK_DIV_PHASE_OFFS)
471/* Ports Control 1 */
472#define NETCOMP_PORTS_CONTROL_1_REG 0x114
473#define NETC_PORTS_ACTIVE_OFFSET(p) (0 + p)
474#define NETC_PORTS_ACTIVE_MASK(p) (0x1 << \
475 NETC_PORTS_ACTIVE_OFFSET(p))
476#define NETC_PORT_GIG_RF_RESET_OFFS(p) (28 + p)
477#define NETC_PORT_GIG_RF_RESET_MASK(p) (0x1 << \
478 NETC_PORT_GIG_RF_RESET_OFFS(p))
479#define NETCOMP_CONTROL_0_REG 0x120
480#define NETC_GBE_PORT0_SGMII_MODE_OFFS 0
481#define NETC_GBE_PORT0_SGMII_MODE_MASK (0x1 << \
482 NETC_GBE_PORT0_SGMII_MODE_OFFS)
483#define NETC_GBE_PORT1_SGMII_MODE_OFFS 1
484#define NETC_GBE_PORT1_SGMII_MODE_MASK (0x1 << \
485 NETC_GBE_PORT1_SGMII_MODE_OFFS)
486#define NETC_GBE_PORT1_MII_MODE_OFFS 2
487#define NETC_GBE_PORT1_MII_MODE_MASK (0x1 << \
488 NETC_GBE_PORT1_MII_MODE_OFFS)
489
490#define MVPP22_SMI_MISC_CFG_REG (MVPP22_SMI + 0x04)
Thomas Petazzoni7c7311f2017-02-20 11:42:51 +0100491#define MVPP22_SMI_POLLING_EN BIT(10)
492
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100493#define MVPP2_CAUSE_TXQ_SENT_DESC_ALL_MASK 0xff
494
495/* Descriptor ring Macros */
496#define MVPP2_QUEUE_NEXT_DESC(q, index) \
497 (((index) < (q)->last_desc) ? ((index) + 1) : 0)
498
Stefan Roese0a61e9a2017-02-16 08:31:32 +0100499/* PP2.2: SMI: 0x12a200 -> offset 0x1200 to iface_base */
500#define MVPP22_SMI 0x1200
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100501
Stefan Roese31aa1e32017-03-22 15:07:30 +0100502/* Additional PPv2.2 offsets */
503#define MVPP22_MPCS 0x007000
504#define MVPP22_XPCS 0x007400
505#define MVPP22_PORT_BASE 0x007e00
506#define MVPP22_PORT_OFFSET 0x001000
507#define MVPP22_RFU1 0x318000
508
509/* Maximum number of ports */
510#define MVPP22_GOP_MAC_NUM 4
511
512/* Sets the field located at the specified in data */
513#define MVPP2_RGMII_TX_FIFO_MIN_TH 0x41
514#define MVPP2_SGMII_TX_FIFO_MIN_TH 0x5
515#define MVPP2_SGMII2_5_TX_FIFO_MIN_TH 0xb
516
517/* Net Complex */
518enum mv_netc_topology {
519 MV_NETC_GE_MAC2_SGMII = BIT(0),
Stefan Chulski8d3aa372021-05-03 08:08:45 +0200520 MV_NETC_GE_MAC2_RGMII = BIT(1),
521 MV_NETC_GE_MAC3_SGMII = BIT(2),
522 MV_NETC_GE_MAC3_RGMII = BIT(3),
Stefan Roese31aa1e32017-03-22 15:07:30 +0100523};
524
525enum mv_netc_phase {
526 MV_NETC_FIRST_PHASE,
527 MV_NETC_SECOND_PHASE,
528};
529
530enum mv_netc_sgmii_xmi_mode {
531 MV_NETC_GBE_SGMII,
532 MV_NETC_GBE_XMII,
533};
534
535enum mv_netc_mii_mode {
536 MV_NETC_GBE_RGMII,
537 MV_NETC_GBE_MII,
538};
539
540enum mv_netc_lanes {
541 MV_NETC_LANE_23,
542 MV_NETC_LANE_45,
543};
544
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100545/* Various constants */
546
547/* Coalescing */
548#define MVPP2_TXDONE_COAL_PKTS_THRESH 15
549#define MVPP2_TXDONE_HRTIMER_PERIOD_NS 1000000UL
550#define MVPP2_RX_COAL_PKTS 32
551#define MVPP2_RX_COAL_USEC 100
552
553/* The two bytes Marvell header. Either contains a special value used
554 * by Marvell switches when a specific hardware mode is enabled (not
555 * supported by this driver) or is filled automatically by zeroes on
556 * the RX side. Those two bytes being at the front of the Ethernet
557 * header, they allow to have the IP header aligned on a 4 bytes
558 * boundary automatically: the hardware skips those two bytes on its
559 * own.
560 */
561#define MVPP2_MH_SIZE 2
562#define MVPP2_ETH_TYPE_LEN 2
563#define MVPP2_PPPOE_HDR_SIZE 8
564#define MVPP2_VLAN_TAG_LEN 4
565
566/* Lbtd 802.3 type */
567#define MVPP2_IP_LBDT_TYPE 0xfffa
568
569#define MVPP2_CPU_D_CACHE_LINE_SIZE 32
570#define MVPP2_TX_CSUM_MAX_SIZE 9800
571
572/* Timeout constants */
573#define MVPP2_TX_DISABLE_TIMEOUT_MSEC 1000
574#define MVPP2_TX_PENDING_TIMEOUT_MSEC 1000
575
576#define MVPP2_TX_MTU_MAX 0x7ffff
577
578/* Maximum number of T-CONTs of PON port */
579#define MVPP2_MAX_TCONT 16
580
581/* Maximum number of supported ports */
582#define MVPP2_MAX_PORTS 4
583
584/* Maximum number of TXQs used by single port */
585#define MVPP2_MAX_TXQ 8
586
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100587/* Default number of TXQs in use */
588#define MVPP2_DEFAULT_TXQ 1
589
Flavio Suligoidad9af52020-01-29 09:38:56 +0100590/* Default number of RXQs in use */
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100591#define MVPP2_DEFAULT_RXQ 1
592#define CONFIG_MV_ETH_RXQ 8 /* increment by 8 */
593
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100594/* Max number of Rx descriptors */
595#define MVPP2_MAX_RXD 16
596
597/* Max number of Tx descriptors */
598#define MVPP2_MAX_TXD 16
599
600/* Amount of Tx descriptors that can be reserved at once by CPU */
Stefan Chulskif0e970f2017-08-09 10:37:47 +0300601#define MVPP2_CPU_DESC_CHUNK 16
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100602
603/* Max number of Tx descriptors in each aggregated queue */
Stefan Chulskif0e970f2017-08-09 10:37:47 +0300604#define MVPP2_AGGR_TXQ_SIZE 16
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100605
606/* Descriptor aligned size */
607#define MVPP2_DESC_ALIGNED_SIZE 32
608
609/* Descriptor alignment mask */
610#define MVPP2_TX_DESC_ALIGN (MVPP2_DESC_ALIGNED_SIZE - 1)
611
612/* RX FIFO constants */
Stefan Roeseff572c62017-03-01 13:09:42 +0100613#define MVPP21_RX_FIFO_PORT_DATA_SIZE 0x2000
614#define MVPP21_RX_FIFO_PORT_ATTR_SIZE 0x80
615#define MVPP22_RX_FIFO_10GB_PORT_DATA_SIZE 0x8000
616#define MVPP22_RX_FIFO_2_5GB_PORT_DATA_SIZE 0x2000
617#define MVPP22_RX_FIFO_1GB_PORT_DATA_SIZE 0x1000
618#define MVPP22_RX_FIFO_10GB_PORT_ATTR_SIZE 0x200
619#define MVPP22_RX_FIFO_2_5GB_PORT_ATTR_SIZE 0x80
620#define MVPP22_RX_FIFO_1GB_PORT_ATTR_SIZE 0x40
621#define MVPP2_RX_FIFO_PORT_MIN_PKT 0x80
622
623/* TX general registers */
624#define MVPP22_TX_FIFO_SIZE_REG(eth_tx_port) (0x8860 + ((eth_tx_port) << 2))
625#define MVPP22_TX_FIFO_SIZE_MASK 0xf
626
627/* TX FIFO constants */
628#define MVPP2_TX_FIFO_DATA_SIZE_10KB 0xa
629#define MVPP2_TX_FIFO_DATA_SIZE_3KB 0x3
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100630
631/* RX buffer constants */
632#define MVPP2_SKB_SHINFO_SIZE \
633 0
634
635#define MVPP2_RX_PKT_SIZE(mtu) \
636 ALIGN((mtu) + MVPP2_MH_SIZE + MVPP2_VLAN_TAG_LEN + \
637 ETH_HLEN + ETH_FCS_LEN, MVPP2_CPU_D_CACHE_LINE_SIZE)
638
639#define MVPP2_RX_BUF_SIZE(pkt_size) ((pkt_size) + NET_SKB_PAD)
640#define MVPP2_RX_TOTAL_SIZE(buf_size) ((buf_size) + MVPP2_SKB_SHINFO_SIZE)
641#define MVPP2_RX_MAX_PKT_SIZE(total_size) \
642 ((total_size) - NET_SKB_PAD - MVPP2_SKB_SHINFO_SIZE)
643
644#define MVPP2_BIT_TO_BYTE(bit) ((bit) / 8)
645
646/* IPv6 max L3 address size */
647#define MVPP2_MAX_L3_ADDR_SIZE 16
648
649/* Port flags */
650#define MVPP2_F_LOOPBACK BIT(0)
651
652/* Marvell tag types */
653enum mvpp2_tag_type {
654 MVPP2_TAG_TYPE_NONE = 0,
655 MVPP2_TAG_TYPE_MH = 1,
656 MVPP2_TAG_TYPE_DSA = 2,
657 MVPP2_TAG_TYPE_EDSA = 3,
658 MVPP2_TAG_TYPE_VLAN = 4,
659 MVPP2_TAG_TYPE_LAST = 5
660};
661
662/* Parser constants */
663#define MVPP2_PRS_TCAM_SRAM_SIZE 256
664#define MVPP2_PRS_TCAM_WORDS 6
665#define MVPP2_PRS_SRAM_WORDS 4
666#define MVPP2_PRS_FLOW_ID_SIZE 64
667#define MVPP2_PRS_FLOW_ID_MASK 0x3f
668#define MVPP2_PRS_TCAM_ENTRY_INVALID 1
669#define MVPP2_PRS_TCAM_DSA_TAGGED_BIT BIT(5)
670#define MVPP2_PRS_IPV4_HEAD 0x40
671#define MVPP2_PRS_IPV4_HEAD_MASK 0xf0
672#define MVPP2_PRS_IPV4_MC 0xe0
673#define MVPP2_PRS_IPV4_MC_MASK 0xf0
674#define MVPP2_PRS_IPV4_BC_MASK 0xff
675#define MVPP2_PRS_IPV4_IHL 0x5
676#define MVPP2_PRS_IPV4_IHL_MASK 0xf
677#define MVPP2_PRS_IPV6_MC 0xff
678#define MVPP2_PRS_IPV6_MC_MASK 0xff
679#define MVPP2_PRS_IPV6_HOP_MASK 0xff
680#define MVPP2_PRS_TCAM_PROTO_MASK 0xff
681#define MVPP2_PRS_TCAM_PROTO_MASK_L 0x3f
682#define MVPP2_PRS_DBL_VLANS_MAX 100
683
684/* Tcam structure:
685 * - lookup ID - 4 bits
686 * - port ID - 1 byte
687 * - additional information - 1 byte
688 * - header data - 8 bytes
689 * The fields are represented by MVPP2_PRS_TCAM_DATA_REG(5)->(0).
690 */
691#define MVPP2_PRS_AI_BITS 8
692#define MVPP2_PRS_PORT_MASK 0xff
693#define MVPP2_PRS_LU_MASK 0xf
694#define MVPP2_PRS_TCAM_DATA_BYTE(offs) \
695 (((offs) - ((offs) % 2)) * 2 + ((offs) % 2))
696#define MVPP2_PRS_TCAM_DATA_BYTE_EN(offs) \
697 (((offs) * 2) - ((offs) % 2) + 2)
698#define MVPP2_PRS_TCAM_AI_BYTE 16
699#define MVPP2_PRS_TCAM_PORT_BYTE 17
700#define MVPP2_PRS_TCAM_LU_BYTE 20
701#define MVPP2_PRS_TCAM_EN_OFFS(offs) ((offs) + 2)
702#define MVPP2_PRS_TCAM_INV_WORD 5
703/* Tcam entries ID */
704#define MVPP2_PE_DROP_ALL 0
705#define MVPP2_PE_FIRST_FREE_TID 1
706#define MVPP2_PE_LAST_FREE_TID (MVPP2_PRS_TCAM_SRAM_SIZE - 31)
707#define MVPP2_PE_IP6_EXT_PROTO_UN (MVPP2_PRS_TCAM_SRAM_SIZE - 30)
708#define MVPP2_PE_MAC_MC_IP6 (MVPP2_PRS_TCAM_SRAM_SIZE - 29)
709#define MVPP2_PE_IP6_ADDR_UN (MVPP2_PRS_TCAM_SRAM_SIZE - 28)
710#define MVPP2_PE_IP4_ADDR_UN (MVPP2_PRS_TCAM_SRAM_SIZE - 27)
711#define MVPP2_PE_LAST_DEFAULT_FLOW (MVPP2_PRS_TCAM_SRAM_SIZE - 26)
712#define MVPP2_PE_FIRST_DEFAULT_FLOW (MVPP2_PRS_TCAM_SRAM_SIZE - 19)
713#define MVPP2_PE_EDSA_TAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 18)
714#define MVPP2_PE_EDSA_UNTAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 17)
715#define MVPP2_PE_DSA_TAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 16)
716#define MVPP2_PE_DSA_UNTAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 15)
717#define MVPP2_PE_ETYPE_EDSA_TAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 14)
718#define MVPP2_PE_ETYPE_EDSA_UNTAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 13)
719#define MVPP2_PE_ETYPE_DSA_TAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 12)
720#define MVPP2_PE_ETYPE_DSA_UNTAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 11)
721#define MVPP2_PE_MH_DEFAULT (MVPP2_PRS_TCAM_SRAM_SIZE - 10)
722#define MVPP2_PE_DSA_DEFAULT (MVPP2_PRS_TCAM_SRAM_SIZE - 9)
723#define MVPP2_PE_IP6_PROTO_UN (MVPP2_PRS_TCAM_SRAM_SIZE - 8)
724#define MVPP2_PE_IP4_PROTO_UN (MVPP2_PRS_TCAM_SRAM_SIZE - 7)
725#define MVPP2_PE_ETH_TYPE_UN (MVPP2_PRS_TCAM_SRAM_SIZE - 6)
726#define MVPP2_PE_VLAN_DBL (MVPP2_PRS_TCAM_SRAM_SIZE - 5)
727#define MVPP2_PE_VLAN_NONE (MVPP2_PRS_TCAM_SRAM_SIZE - 4)
728#define MVPP2_PE_MAC_MC_ALL (MVPP2_PRS_TCAM_SRAM_SIZE - 3)
729#define MVPP2_PE_MAC_PROMISCUOUS (MVPP2_PRS_TCAM_SRAM_SIZE - 2)
730#define MVPP2_PE_MAC_NON_PROMISCUOUS (MVPP2_PRS_TCAM_SRAM_SIZE - 1)
731
732/* Sram structure
733 * The fields are represented by MVPP2_PRS_TCAM_DATA_REG(3)->(0).
734 */
735#define MVPP2_PRS_SRAM_RI_OFFS 0
736#define MVPP2_PRS_SRAM_RI_WORD 0
737#define MVPP2_PRS_SRAM_RI_CTRL_OFFS 32
738#define MVPP2_PRS_SRAM_RI_CTRL_WORD 1
739#define MVPP2_PRS_SRAM_RI_CTRL_BITS 32
740#define MVPP2_PRS_SRAM_SHIFT_OFFS 64
741#define MVPP2_PRS_SRAM_SHIFT_SIGN_BIT 72
742#define MVPP2_PRS_SRAM_UDF_OFFS 73
743#define MVPP2_PRS_SRAM_UDF_BITS 8
744#define MVPP2_PRS_SRAM_UDF_MASK 0xff
745#define MVPP2_PRS_SRAM_UDF_SIGN_BIT 81
746#define MVPP2_PRS_SRAM_UDF_TYPE_OFFS 82
747#define MVPP2_PRS_SRAM_UDF_TYPE_MASK 0x7
748#define MVPP2_PRS_SRAM_UDF_TYPE_L3 1
749#define MVPP2_PRS_SRAM_UDF_TYPE_L4 4
750#define MVPP2_PRS_SRAM_OP_SEL_SHIFT_OFFS 85
751#define MVPP2_PRS_SRAM_OP_SEL_SHIFT_MASK 0x3
752#define MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD 1
753#define MVPP2_PRS_SRAM_OP_SEL_SHIFT_IP4_ADD 2
754#define MVPP2_PRS_SRAM_OP_SEL_SHIFT_IP6_ADD 3
755#define MVPP2_PRS_SRAM_OP_SEL_UDF_OFFS 87
756#define MVPP2_PRS_SRAM_OP_SEL_UDF_BITS 2
757#define MVPP2_PRS_SRAM_OP_SEL_UDF_MASK 0x3
758#define MVPP2_PRS_SRAM_OP_SEL_UDF_ADD 0
759#define MVPP2_PRS_SRAM_OP_SEL_UDF_IP4_ADD 2
760#define MVPP2_PRS_SRAM_OP_SEL_UDF_IP6_ADD 3
761#define MVPP2_PRS_SRAM_OP_SEL_BASE_OFFS 89
762#define MVPP2_PRS_SRAM_AI_OFFS 90
763#define MVPP2_PRS_SRAM_AI_CTRL_OFFS 98
764#define MVPP2_PRS_SRAM_AI_CTRL_BITS 8
765#define MVPP2_PRS_SRAM_AI_MASK 0xff
766#define MVPP2_PRS_SRAM_NEXT_LU_OFFS 106
767#define MVPP2_PRS_SRAM_NEXT_LU_MASK 0xf
768#define MVPP2_PRS_SRAM_LU_DONE_BIT 110
769#define MVPP2_PRS_SRAM_LU_GEN_BIT 111
770
771/* Sram result info bits assignment */
772#define MVPP2_PRS_RI_MAC_ME_MASK 0x1
773#define MVPP2_PRS_RI_DSA_MASK 0x2
Thomas Petazzonic0abc762017-02-15 12:19:36 +0100774#define MVPP2_PRS_RI_VLAN_MASK (BIT(2) | BIT(3))
775#define MVPP2_PRS_RI_VLAN_NONE 0x0
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100776#define MVPP2_PRS_RI_VLAN_SINGLE BIT(2)
777#define MVPP2_PRS_RI_VLAN_DOUBLE BIT(3)
778#define MVPP2_PRS_RI_VLAN_TRIPLE (BIT(2) | BIT(3))
779#define MVPP2_PRS_RI_CPU_CODE_MASK 0x70
780#define MVPP2_PRS_RI_CPU_CODE_RX_SPEC BIT(4)
Thomas Petazzonic0abc762017-02-15 12:19:36 +0100781#define MVPP2_PRS_RI_L2_CAST_MASK (BIT(9) | BIT(10))
782#define MVPP2_PRS_RI_L2_UCAST 0x0
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100783#define MVPP2_PRS_RI_L2_MCAST BIT(9)
784#define MVPP2_PRS_RI_L2_BCAST BIT(10)
785#define MVPP2_PRS_RI_PPPOE_MASK 0x800
Thomas Petazzonic0abc762017-02-15 12:19:36 +0100786#define MVPP2_PRS_RI_L3_PROTO_MASK (BIT(12) | BIT(13) | BIT(14))
787#define MVPP2_PRS_RI_L3_UN 0x0
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100788#define MVPP2_PRS_RI_L3_IP4 BIT(12)
789#define MVPP2_PRS_RI_L3_IP4_OPT BIT(13)
790#define MVPP2_PRS_RI_L3_IP4_OTHER (BIT(12) | BIT(13))
791#define MVPP2_PRS_RI_L3_IP6 BIT(14)
792#define MVPP2_PRS_RI_L3_IP6_EXT (BIT(12) | BIT(14))
793#define MVPP2_PRS_RI_L3_ARP (BIT(13) | BIT(14))
Thomas Petazzonic0abc762017-02-15 12:19:36 +0100794#define MVPP2_PRS_RI_L3_ADDR_MASK (BIT(15) | BIT(16))
795#define MVPP2_PRS_RI_L3_UCAST 0x0
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100796#define MVPP2_PRS_RI_L3_MCAST BIT(15)
797#define MVPP2_PRS_RI_L3_BCAST (BIT(15) | BIT(16))
798#define MVPP2_PRS_RI_IP_FRAG_MASK 0x20000
799#define MVPP2_PRS_RI_UDF3_MASK 0x300000
800#define MVPP2_PRS_RI_UDF3_RX_SPECIAL BIT(21)
801#define MVPP2_PRS_RI_L4_PROTO_MASK 0x1c00000
802#define MVPP2_PRS_RI_L4_TCP BIT(22)
803#define MVPP2_PRS_RI_L4_UDP BIT(23)
804#define MVPP2_PRS_RI_L4_OTHER (BIT(22) | BIT(23))
805#define MVPP2_PRS_RI_UDF7_MASK 0x60000000
806#define MVPP2_PRS_RI_UDF7_IP6_LITE BIT(29)
807#define MVPP2_PRS_RI_DROP_MASK 0x80000000
808
809/* Sram additional info bits assignment */
810#define MVPP2_PRS_IPV4_DIP_AI_BIT BIT(0)
811#define MVPP2_PRS_IPV6_NO_EXT_AI_BIT BIT(0)
812#define MVPP2_PRS_IPV6_EXT_AI_BIT BIT(1)
813#define MVPP2_PRS_IPV6_EXT_AH_AI_BIT BIT(2)
814#define MVPP2_PRS_IPV6_EXT_AH_LEN_AI_BIT BIT(3)
815#define MVPP2_PRS_IPV6_EXT_AH_L4_AI_BIT BIT(4)
816#define MVPP2_PRS_SINGLE_VLAN_AI 0
817#define MVPP2_PRS_DBL_VLAN_AI_BIT BIT(7)
818
819/* DSA/EDSA type */
820#define MVPP2_PRS_TAGGED true
821#define MVPP2_PRS_UNTAGGED false
822#define MVPP2_PRS_EDSA true
823#define MVPP2_PRS_DSA false
824
825/* MAC entries, shadow udf */
826enum mvpp2_prs_udf {
827 MVPP2_PRS_UDF_MAC_DEF,
828 MVPP2_PRS_UDF_MAC_RANGE,
829 MVPP2_PRS_UDF_L2_DEF,
830 MVPP2_PRS_UDF_L2_DEF_COPY,
831 MVPP2_PRS_UDF_L2_USER,
832};
833
834/* Lookup ID */
835enum mvpp2_prs_lookup {
836 MVPP2_PRS_LU_MH,
837 MVPP2_PRS_LU_MAC,
838 MVPP2_PRS_LU_DSA,
839 MVPP2_PRS_LU_VLAN,
840 MVPP2_PRS_LU_L2,
841 MVPP2_PRS_LU_PPPOE,
842 MVPP2_PRS_LU_IP4,
843 MVPP2_PRS_LU_IP6,
844 MVPP2_PRS_LU_FLOWS,
845 MVPP2_PRS_LU_LAST,
846};
847
848/* L3 cast enum */
849enum mvpp2_prs_l3_cast {
850 MVPP2_PRS_L3_UNI_CAST,
851 MVPP2_PRS_L3_MULTI_CAST,
852 MVPP2_PRS_L3_BROAD_CAST
853};
854
855/* Classifier constants */
856#define MVPP2_CLS_FLOWS_TBL_SIZE 512
857#define MVPP2_CLS_FLOWS_TBL_DATA_WORDS 3
858#define MVPP2_CLS_LKP_TBL_SIZE 64
859
860/* BM constants */
861#define MVPP2_BM_POOLS_NUM 1
862#define MVPP2_BM_LONG_BUF_NUM 16
863#define MVPP2_BM_SHORT_BUF_NUM 16
864#define MVPP2_BM_POOL_SIZE_MAX (16*1024 - MVPP2_BM_POOL_PTR_ALIGN/4)
865#define MVPP2_BM_POOL_PTR_ALIGN 128
866#define MVPP2_BM_SWF_LONG_POOL(port) 0
867
868/* BM cookie (32 bits) definition */
869#define MVPP2_BM_COOKIE_POOL_OFFS 8
870#define MVPP2_BM_COOKIE_CPU_OFFS 24
871
872/* BM short pool packet size
873 * These value assure that for SWF the total number
874 * of bytes allocated for each buffer will be 512
875 */
876#define MVPP2_BM_SHORT_PKT_SIZE MVPP2_RX_MAX_PKT_SIZE(512)
877
878enum mvpp2_bm_type {
879 MVPP2_BM_FREE,
880 MVPP2_BM_SWF_LONG,
881 MVPP2_BM_SWF_SHORT
882};
883
884/* Definitions */
885
886/* Shared Packet Processor resources */
887struct mvpp2 {
888 /* Shared registers' base addresses */
889 void __iomem *base;
890 void __iomem *lms_base;
Thomas Petazzoni26a52782017-02-16 08:03:37 +0100891 void __iomem *iface_base;
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100892
Stefan Roese31aa1e32017-03-22 15:07:30 +0100893 void __iomem *mpcs_base;
894 void __iomem *xpcs_base;
895 void __iomem *rfu1_base;
896
897 u32 netc_config;
898
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100899 /* List of pointers to port structures */
900 struct mvpp2_port **port_list;
901
902 /* Aggregated TXQs */
903 struct mvpp2_tx_queue *aggr_txqs;
904
905 /* BM pools */
906 struct mvpp2_bm_pool *bm_pools;
907
908 /* PRS shadow table */
909 struct mvpp2_prs_shadow *prs_shadow;
910 /* PRS auxiliary table for double vlan entries control */
911 bool *prs_double_vlans;
912
913 /* Tclk value */
914 u32 tclk;
915
Thomas Petazzoni16a98982017-02-15 14:08:59 +0100916 /* HW version */
917 enum { MVPP21, MVPP22 } hw_version;
918
Thomas Petazzoni09b3f942017-02-16 09:03:16 +0100919 /* Maximum number of RXQs per port */
920 unsigned int max_port_rxqs;
921
Stefan Roese1fabbd02017-02-16 15:26:06 +0100922 int probe_done;
Stefan Chulskibb915c82017-08-09 10:37:46 +0300923 u8 num_ports;
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100924};
925
926struct mvpp2_pcpu_stats {
927 u64 rx_packets;
928 u64 rx_bytes;
929 u64 tx_packets;
930 u64 tx_bytes;
931};
932
933struct mvpp2_port {
934 u8 id;
935
Thomas Petazzoni26a52782017-02-16 08:03:37 +0100936 /* Index of the port from the "group of ports" complex point
937 * of view
938 */
939 int gop_id;
940
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100941 int irq;
942
943 struct mvpp2 *priv;
944
945 /* Per-port registers' base address */
946 void __iomem *base;
947
948 struct mvpp2_rx_queue **rxqs;
949 struct mvpp2_tx_queue **txqs;
950
951 int pkt_size;
952
953 u32 pending_cause_rx;
954
955 /* Per-CPU port control */
956 struct mvpp2_port_pcpu __percpu *pcpu;
957
958 /* Flags */
959 unsigned long flags;
960
961 u16 tx_ring_size;
962 u16 rx_ring_size;
963 struct mvpp2_pcpu_stats __percpu *stats;
964
965 struct phy_device *phy_dev;
966 phy_interface_t phy_interface;
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100967 int phyaddr;
Nevo Hed2a428702019-08-15 18:08:44 -0400968 struct udevice *mdio_dev;
Simon Glassbcee8d62019-12-06 21:41:35 -0700969 struct mii_dev *bus;
970#if CONFIG_IS_ENABLED(DM_GPIO)
Stefan Chulski41893732017-08-09 10:37:43 +0300971 struct gpio_desc phy_reset_gpio;
972 struct gpio_desc phy_tx_disable_gpio;
973#endif
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100974 int init;
975 unsigned int link;
976 unsigned int duplex;
977 unsigned int speed;
978
Stefan Roese9acb7da2017-03-22 14:15:40 +0100979 unsigned int phy_speed; /* SGMII 1Gbps vs 2.5Gbps */
980
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100981 struct mvpp2_bm_pool *pool_long;
982 struct mvpp2_bm_pool *pool_short;
983
984 /* Index of first port's physical RXQ */
985 u8 first_rxq;
986
987 u8 dev_addr[ETH_ALEN];
988};
989
990/* The mvpp2_tx_desc and mvpp2_rx_desc structures describe the
991 * layout of the transmit and reception DMA descriptors, and their
992 * layout is therefore defined by the hardware design
993 */
994
995#define MVPP2_TXD_L3_OFF_SHIFT 0
996#define MVPP2_TXD_IP_HLEN_SHIFT 8
997#define MVPP2_TXD_L4_CSUM_FRAG BIT(13)
998#define MVPP2_TXD_L4_CSUM_NOT BIT(14)
999#define MVPP2_TXD_IP_CSUM_DISABLE BIT(15)
1000#define MVPP2_TXD_PADDING_DISABLE BIT(23)
1001#define MVPP2_TXD_L4_UDP BIT(24)
1002#define MVPP2_TXD_L3_IP6 BIT(26)
1003#define MVPP2_TXD_L_DESC BIT(28)
1004#define MVPP2_TXD_F_DESC BIT(29)
1005
1006#define MVPP2_RXD_ERR_SUMMARY BIT(15)
1007#define MVPP2_RXD_ERR_CODE_MASK (BIT(13) | BIT(14))
1008#define MVPP2_RXD_ERR_CRC 0x0
1009#define MVPP2_RXD_ERR_OVERRUN BIT(13)
1010#define MVPP2_RXD_ERR_RESOURCE (BIT(13) | BIT(14))
1011#define MVPP2_RXD_BM_POOL_ID_OFFS 16
1012#define MVPP2_RXD_BM_POOL_ID_MASK (BIT(16) | BIT(17) | BIT(18))
1013#define MVPP2_RXD_HWF_SYNC BIT(21)
1014#define MVPP2_RXD_L4_CSUM_OK BIT(22)
1015#define MVPP2_RXD_IP4_HEADER_ERR BIT(24)
1016#define MVPP2_RXD_L4_TCP BIT(25)
1017#define MVPP2_RXD_L4_UDP BIT(26)
1018#define MVPP2_RXD_L3_IP4 BIT(28)
1019#define MVPP2_RXD_L3_IP6 BIT(30)
1020#define MVPP2_RXD_BUF_HDR BIT(31)
1021
Thomas Petazzoni9a6db0b2017-02-15 16:25:53 +01001022/* HW TX descriptor for PPv2.1 */
1023struct mvpp21_tx_desc {
Stefan Roese99d4c6d2016-02-10 07:22:10 +01001024 u32 command; /* Options used by HW for packet transmitting.*/
1025 u8 packet_offset; /* the offset from the buffer beginning */
1026 u8 phys_txq; /* destination queue ID */
1027 u16 data_size; /* data size of transmitted packet in bytes */
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01001028 u32 buf_dma_addr; /* physical addr of transmitted buffer */
Stefan Roese99d4c6d2016-02-10 07:22:10 +01001029 u32 buf_cookie; /* cookie for access to TX buffer in tx path */
1030 u32 reserved1[3]; /* hw_cmd (for future use, BM, PON, PNC) */
1031 u32 reserved2; /* reserved (for future use) */
1032};
1033
Thomas Petazzoni9a6db0b2017-02-15 16:25:53 +01001034/* HW RX descriptor for PPv2.1 */
1035struct mvpp21_rx_desc {
Stefan Roese99d4c6d2016-02-10 07:22:10 +01001036 u32 status; /* info about received packet */
1037 u16 reserved1; /* parser_info (for future use, PnC) */
1038 u16 data_size; /* size of received packet in bytes */
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01001039 u32 buf_dma_addr; /* physical address of the buffer */
Stefan Roese99d4c6d2016-02-10 07:22:10 +01001040 u32 buf_cookie; /* cookie for access to RX buffer in rx path */
1041 u16 reserved2; /* gem_port_id (for future use, PON) */
1042 u16 reserved3; /* csum_l4 (for future use, PnC) */
1043 u8 reserved4; /* bm_qset (for future use, BM) */
1044 u8 reserved5;
1045 u16 reserved6; /* classify_info (for future use, PnC) */
1046 u32 reserved7; /* flow_id (for future use, PnC) */
1047 u32 reserved8;
1048};
1049
Thomas Petazzonif50a0112017-02-20 11:08:46 +01001050/* HW TX descriptor for PPv2.2 */
1051struct mvpp22_tx_desc {
1052 u32 command;
1053 u8 packet_offset;
1054 u8 phys_txq;
1055 u16 data_size;
1056 u64 reserved1;
1057 u64 buf_dma_addr_ptp;
1058 u64 buf_cookie_misc;
1059};
1060
1061/* HW RX descriptor for PPv2.2 */
1062struct mvpp22_rx_desc {
1063 u32 status;
1064 u16 reserved1;
1065 u16 data_size;
1066 u32 reserved2;
1067 u32 reserved3;
1068 u64 buf_dma_addr_key_hash;
1069 u64 buf_cookie_misc;
1070};
1071
Thomas Petazzoni9a6db0b2017-02-15 16:25:53 +01001072/* Opaque type used by the driver to manipulate the HW TX and RX
1073 * descriptors
1074 */
1075struct mvpp2_tx_desc {
1076 union {
1077 struct mvpp21_tx_desc pp21;
Thomas Petazzonif50a0112017-02-20 11:08:46 +01001078 struct mvpp22_tx_desc pp22;
Thomas Petazzoni9a6db0b2017-02-15 16:25:53 +01001079 };
1080};
1081
1082struct mvpp2_rx_desc {
1083 union {
1084 struct mvpp21_rx_desc pp21;
Thomas Petazzonif50a0112017-02-20 11:08:46 +01001085 struct mvpp22_rx_desc pp22;
Thomas Petazzoni9a6db0b2017-02-15 16:25:53 +01001086 };
1087};
1088
Stefan Roese99d4c6d2016-02-10 07:22:10 +01001089/* Per-CPU Tx queue control */
1090struct mvpp2_txq_pcpu {
1091 int cpu;
1092
1093 /* Number of Tx DMA descriptors in the descriptor ring */
1094 int size;
1095
1096 /* Number of currently used Tx DMA descriptor in the
1097 * descriptor ring
1098 */
1099 int count;
1100
1101 /* Number of Tx DMA descriptors reserved for each CPU */
1102 int reserved_num;
1103
1104 /* Index of last TX DMA descriptor that was inserted */
1105 int txq_put_index;
1106
1107 /* Index of the TX DMA descriptor to be cleaned up */
1108 int txq_get_index;
1109};
1110
1111struct mvpp2_tx_queue {
1112 /* Physical number of this Tx queue */
1113 u8 id;
1114
1115 /* Logical number of this Tx queue */
1116 u8 log_id;
1117
1118 /* Number of Tx DMA descriptors in the descriptor ring */
1119 int size;
1120
1121 /* Number of currently used Tx DMA descriptor in the descriptor ring */
1122 int count;
1123
1124 /* Per-CPU control of physical Tx queues */
1125 struct mvpp2_txq_pcpu __percpu *pcpu;
1126
1127 u32 done_pkts_coal;
1128
1129 /* Virtual address of thex Tx DMA descriptors array */
1130 struct mvpp2_tx_desc *descs;
1131
1132 /* DMA address of the Tx DMA descriptors array */
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01001133 dma_addr_t descs_dma;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01001134
1135 /* Index of the last Tx DMA descriptor */
1136 int last_desc;
1137
1138 /* Index of the next Tx DMA descriptor to process */
1139 int next_desc_to_proc;
1140};
1141
1142struct mvpp2_rx_queue {
1143 /* RX queue number, in the range 0-31 for physical RXQs */
1144 u8 id;
1145
1146 /* Num of rx descriptors in the rx descriptor ring */
1147 int size;
1148
1149 u32 pkts_coal;
1150 u32 time_coal;
1151
1152 /* Virtual address of the RX DMA descriptors array */
1153 struct mvpp2_rx_desc *descs;
1154
1155 /* DMA address of the RX DMA descriptors array */
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01001156 dma_addr_t descs_dma;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01001157
1158 /* Index of the last RX DMA descriptor */
1159 int last_desc;
1160
1161 /* Index of the next RX DMA descriptor to process */
1162 int next_desc_to_proc;
1163
1164 /* ID of port to which physical RXQ is mapped */
1165 int port;
1166
1167 /* Port's logic RXQ number to which physical RXQ is mapped */
1168 int logic_rxq;
1169};
1170
1171union mvpp2_prs_tcam_entry {
1172 u32 word[MVPP2_PRS_TCAM_WORDS];
1173 u8 byte[MVPP2_PRS_TCAM_WORDS * 4];
1174};
1175
1176union mvpp2_prs_sram_entry {
1177 u32 word[MVPP2_PRS_SRAM_WORDS];
1178 u8 byte[MVPP2_PRS_SRAM_WORDS * 4];
1179};
1180
1181struct mvpp2_prs_entry {
1182 u32 index;
1183 union mvpp2_prs_tcam_entry tcam;
1184 union mvpp2_prs_sram_entry sram;
1185};
1186
1187struct mvpp2_prs_shadow {
1188 bool valid;
1189 bool finish;
1190
1191 /* Lookup ID */
1192 int lu;
1193
1194 /* User defined offset */
1195 int udf;
1196
1197 /* Result info */
1198 u32 ri;
1199 u32 ri_mask;
1200};
1201
1202struct mvpp2_cls_flow_entry {
1203 u32 index;
1204 u32 data[MVPP2_CLS_FLOWS_TBL_DATA_WORDS];
1205};
1206
1207struct mvpp2_cls_lookup_entry {
1208 u32 lkpid;
1209 u32 way;
1210 u32 data;
1211};
1212
1213struct mvpp2_bm_pool {
1214 /* Pool number in the range 0-7 */
1215 int id;
1216 enum mvpp2_bm_type type;
1217
1218 /* Buffer Pointers Pool External (BPPE) size */
1219 int size;
1220 /* Number of buffers for this pool */
1221 int buf_num;
1222 /* Pool buffer size */
1223 int buf_size;
1224 /* Packet size */
1225 int pkt_size;
1226
1227 /* BPPE virtual base address */
Stefan Roesea7c28ff2017-02-15 12:46:18 +01001228 unsigned long *virt_addr;
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01001229 /* BPPE DMA base address */
1230 dma_addr_t dma_addr;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01001231
1232 /* Ports using BM pool */
1233 u32 port_map;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01001234};
1235
Stefan Roese99d4c6d2016-02-10 07:22:10 +01001236/* Static declaractions */
1237
1238/* Number of RXQs used by single port */
1239static int rxq_number = MVPP2_DEFAULT_RXQ;
1240/* Number of TXQs used by single port */
1241static int txq_number = MVPP2_DEFAULT_TXQ;
1242
Stefan Roesec9607c92017-02-24 10:12:41 +01001243static int base_id;
1244
Stefan Roese99d4c6d2016-02-10 07:22:10 +01001245#define MVPP2_DRIVER_NAME "mvpp2"
1246#define MVPP2_DRIVER_VERSION "1.0"
1247
1248/*
1249 * U-Boot internal data, mostly uncached buffers for descriptors and data
1250 */
1251struct buffer_location {
1252 struct mvpp2_tx_desc *aggr_tx_descs;
1253 struct mvpp2_tx_desc *tx_descs;
1254 struct mvpp2_rx_desc *rx_descs;
Stefan Roesea7c28ff2017-02-15 12:46:18 +01001255 unsigned long *bm_pool[MVPP2_BM_POOLS_NUM];
1256 unsigned long *rx_buffer[MVPP2_BM_LONG_BUF_NUM];
Stefan Roese99d4c6d2016-02-10 07:22:10 +01001257 int first_rxq;
1258};
1259
1260/*
1261 * All 4 interfaces use the same global buffer, since only one interface
1262 * can be enabled at once
1263 */
1264static struct buffer_location buffer_loc;
Sven Auhagen3078e032020-07-01 17:43:43 +02001265static int buffer_loc_init;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01001266
1267/*
1268 * Page table entries are set to 1MB, or multiples of 1MB
1269 * (not < 1MB). driver uses less bd's so use 1MB bdspace.
1270 */
1271#define BD_SPACE (1 << 20)
1272
1273/* Utility/helper methods */
1274
1275static void mvpp2_write(struct mvpp2 *priv, u32 offset, u32 data)
1276{
1277 writel(data, priv->base + offset);
1278}
1279
1280static u32 mvpp2_read(struct mvpp2 *priv, u32 offset)
1281{
1282 return readl(priv->base + offset);
1283}
1284
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01001285static void mvpp2_txdesc_dma_addr_set(struct mvpp2_port *port,
1286 struct mvpp2_tx_desc *tx_desc,
1287 dma_addr_t dma_addr)
1288{
Thomas Petazzonif50a0112017-02-20 11:08:46 +01001289 if (port->priv->hw_version == MVPP21) {
1290 tx_desc->pp21.buf_dma_addr = dma_addr;
1291 } else {
1292 u64 val = (u64)dma_addr;
1293
1294 tx_desc->pp22.buf_dma_addr_ptp &= ~GENMASK_ULL(40, 0);
1295 tx_desc->pp22.buf_dma_addr_ptp |= val;
1296 }
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01001297}
1298
1299static void mvpp2_txdesc_size_set(struct mvpp2_port *port,
1300 struct mvpp2_tx_desc *tx_desc,
1301 size_t size)
1302{
Thomas Petazzonif50a0112017-02-20 11:08:46 +01001303 if (port->priv->hw_version == MVPP21)
1304 tx_desc->pp21.data_size = size;
1305 else
1306 tx_desc->pp22.data_size = size;
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01001307}
1308
1309static void mvpp2_txdesc_txq_set(struct mvpp2_port *port,
1310 struct mvpp2_tx_desc *tx_desc,
1311 unsigned int txq)
1312{
Thomas Petazzonif50a0112017-02-20 11:08:46 +01001313 if (port->priv->hw_version == MVPP21)
1314 tx_desc->pp21.phys_txq = txq;
1315 else
1316 tx_desc->pp22.phys_txq = txq;
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01001317}
1318
1319static void mvpp2_txdesc_cmd_set(struct mvpp2_port *port,
1320 struct mvpp2_tx_desc *tx_desc,
1321 unsigned int command)
1322{
Thomas Petazzonif50a0112017-02-20 11:08:46 +01001323 if (port->priv->hw_version == MVPP21)
1324 tx_desc->pp21.command = command;
1325 else
1326 tx_desc->pp22.command = command;
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01001327}
1328
1329static void mvpp2_txdesc_offset_set(struct mvpp2_port *port,
1330 struct mvpp2_tx_desc *tx_desc,
1331 unsigned int offset)
1332{
Thomas Petazzonif50a0112017-02-20 11:08:46 +01001333 if (port->priv->hw_version == MVPP21)
1334 tx_desc->pp21.packet_offset = offset;
1335 else
1336 tx_desc->pp22.packet_offset = offset;
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01001337}
1338
1339static dma_addr_t mvpp2_rxdesc_dma_addr_get(struct mvpp2_port *port,
1340 struct mvpp2_rx_desc *rx_desc)
1341{
Thomas Petazzonif50a0112017-02-20 11:08:46 +01001342 if (port->priv->hw_version == MVPP21)
1343 return rx_desc->pp21.buf_dma_addr;
1344 else
1345 return rx_desc->pp22.buf_dma_addr_key_hash & GENMASK_ULL(40, 0);
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01001346}
1347
1348static unsigned long mvpp2_rxdesc_cookie_get(struct mvpp2_port *port,
1349 struct mvpp2_rx_desc *rx_desc)
1350{
Thomas Petazzonif50a0112017-02-20 11:08:46 +01001351 if (port->priv->hw_version == MVPP21)
1352 return rx_desc->pp21.buf_cookie;
1353 else
1354 return rx_desc->pp22.buf_cookie_misc & GENMASK_ULL(40, 0);
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01001355}
1356
1357static size_t mvpp2_rxdesc_size_get(struct mvpp2_port *port,
1358 struct mvpp2_rx_desc *rx_desc)
1359{
Thomas Petazzonif50a0112017-02-20 11:08:46 +01001360 if (port->priv->hw_version == MVPP21)
1361 return rx_desc->pp21.data_size;
1362 else
1363 return rx_desc->pp22.data_size;
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01001364}
1365
1366static u32 mvpp2_rxdesc_status_get(struct mvpp2_port *port,
1367 struct mvpp2_rx_desc *rx_desc)
1368{
Thomas Petazzonif50a0112017-02-20 11:08:46 +01001369 if (port->priv->hw_version == MVPP21)
1370 return rx_desc->pp21.status;
1371 else
1372 return rx_desc->pp22.status;
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01001373}
1374
Stefan Roese99d4c6d2016-02-10 07:22:10 +01001375static void mvpp2_txq_inc_get(struct mvpp2_txq_pcpu *txq_pcpu)
1376{
1377 txq_pcpu->txq_get_index++;
1378 if (txq_pcpu->txq_get_index == txq_pcpu->size)
1379 txq_pcpu->txq_get_index = 0;
1380}
1381
1382/* Get number of physical egress port */
1383static inline int mvpp2_egress_port(struct mvpp2_port *port)
1384{
1385 return MVPP2_MAX_TCONT + port->id;
1386}
1387
1388/* Get number of physical TXQ */
1389static inline int mvpp2_txq_phys(int port, int txq)
1390{
1391 return (MVPP2_MAX_TCONT + port) * MVPP2_MAX_TXQ + txq;
1392}
1393
1394/* Parser configuration routines */
1395
1396/* Update parser tcam and sram hw entries */
1397static int mvpp2_prs_hw_write(struct mvpp2 *priv, struct mvpp2_prs_entry *pe)
1398{
1399 int i;
1400
1401 if (pe->index > MVPP2_PRS_TCAM_SRAM_SIZE - 1)
1402 return -EINVAL;
1403
1404 /* Clear entry invalidation bit */
1405 pe->tcam.word[MVPP2_PRS_TCAM_INV_WORD] &= ~MVPP2_PRS_TCAM_INV_MASK;
1406
1407 /* Write tcam index - indirect access */
1408 mvpp2_write(priv, MVPP2_PRS_TCAM_IDX_REG, pe->index);
1409 for (i = 0; i < MVPP2_PRS_TCAM_WORDS; i++)
1410 mvpp2_write(priv, MVPP2_PRS_TCAM_DATA_REG(i), pe->tcam.word[i]);
1411
1412 /* Write sram index - indirect access */
1413 mvpp2_write(priv, MVPP2_PRS_SRAM_IDX_REG, pe->index);
1414 for (i = 0; i < MVPP2_PRS_SRAM_WORDS; i++)
1415 mvpp2_write(priv, MVPP2_PRS_SRAM_DATA_REG(i), pe->sram.word[i]);
1416
1417 return 0;
1418}
1419
1420/* Read tcam entry from hw */
1421static int mvpp2_prs_hw_read(struct mvpp2 *priv, struct mvpp2_prs_entry *pe)
1422{
1423 int i;
1424
1425 if (pe->index > MVPP2_PRS_TCAM_SRAM_SIZE - 1)
1426 return -EINVAL;
1427
1428 /* Write tcam index - indirect access */
1429 mvpp2_write(priv, MVPP2_PRS_TCAM_IDX_REG, pe->index);
1430
1431 pe->tcam.word[MVPP2_PRS_TCAM_INV_WORD] = mvpp2_read(priv,
1432 MVPP2_PRS_TCAM_DATA_REG(MVPP2_PRS_TCAM_INV_WORD));
1433 if (pe->tcam.word[MVPP2_PRS_TCAM_INV_WORD] & MVPP2_PRS_TCAM_INV_MASK)
1434 return MVPP2_PRS_TCAM_ENTRY_INVALID;
1435
1436 for (i = 0; i < MVPP2_PRS_TCAM_WORDS; i++)
1437 pe->tcam.word[i] = mvpp2_read(priv, MVPP2_PRS_TCAM_DATA_REG(i));
1438
1439 /* Write sram index - indirect access */
1440 mvpp2_write(priv, MVPP2_PRS_SRAM_IDX_REG, pe->index);
1441 for (i = 0; i < MVPP2_PRS_SRAM_WORDS; i++)
1442 pe->sram.word[i] = mvpp2_read(priv, MVPP2_PRS_SRAM_DATA_REG(i));
1443
1444 return 0;
1445}
1446
1447/* Invalidate tcam hw entry */
1448static void mvpp2_prs_hw_inv(struct mvpp2 *priv, int index)
1449{
1450 /* Write index - indirect access */
1451 mvpp2_write(priv, MVPP2_PRS_TCAM_IDX_REG, index);
1452 mvpp2_write(priv, MVPP2_PRS_TCAM_DATA_REG(MVPP2_PRS_TCAM_INV_WORD),
1453 MVPP2_PRS_TCAM_INV_MASK);
1454}
1455
1456/* Enable shadow table entry and set its lookup ID */
1457static void mvpp2_prs_shadow_set(struct mvpp2 *priv, int index, int lu)
1458{
1459 priv->prs_shadow[index].valid = true;
1460 priv->prs_shadow[index].lu = lu;
1461}
1462
1463/* Update ri fields in shadow table entry */
1464static void mvpp2_prs_shadow_ri_set(struct mvpp2 *priv, int index,
1465 unsigned int ri, unsigned int ri_mask)
1466{
1467 priv->prs_shadow[index].ri_mask = ri_mask;
1468 priv->prs_shadow[index].ri = ri;
1469}
1470
1471/* Update lookup field in tcam sw entry */
1472static void mvpp2_prs_tcam_lu_set(struct mvpp2_prs_entry *pe, unsigned int lu)
1473{
1474 int enable_off = MVPP2_PRS_TCAM_EN_OFFS(MVPP2_PRS_TCAM_LU_BYTE);
1475
1476 pe->tcam.byte[MVPP2_PRS_TCAM_LU_BYTE] = lu;
1477 pe->tcam.byte[enable_off] = MVPP2_PRS_LU_MASK;
1478}
1479
1480/* Update mask for single port in tcam sw entry */
1481static void mvpp2_prs_tcam_port_set(struct mvpp2_prs_entry *pe,
1482 unsigned int port, bool add)
1483{
1484 int enable_off = MVPP2_PRS_TCAM_EN_OFFS(MVPP2_PRS_TCAM_PORT_BYTE);
1485
1486 if (add)
1487 pe->tcam.byte[enable_off] &= ~(1 << port);
1488 else
1489 pe->tcam.byte[enable_off] |= 1 << port;
1490}
1491
1492/* Update port map in tcam sw entry */
1493static void mvpp2_prs_tcam_port_map_set(struct mvpp2_prs_entry *pe,
1494 unsigned int ports)
1495{
1496 unsigned char port_mask = MVPP2_PRS_PORT_MASK;
1497 int enable_off = MVPP2_PRS_TCAM_EN_OFFS(MVPP2_PRS_TCAM_PORT_BYTE);
1498
1499 pe->tcam.byte[MVPP2_PRS_TCAM_PORT_BYTE] = 0;
1500 pe->tcam.byte[enable_off] &= ~port_mask;
1501 pe->tcam.byte[enable_off] |= ~ports & MVPP2_PRS_PORT_MASK;
1502}
1503
1504/* Obtain port map from tcam sw entry */
1505static unsigned int mvpp2_prs_tcam_port_map_get(struct mvpp2_prs_entry *pe)
1506{
1507 int enable_off = MVPP2_PRS_TCAM_EN_OFFS(MVPP2_PRS_TCAM_PORT_BYTE);
1508
1509 return ~(pe->tcam.byte[enable_off]) & MVPP2_PRS_PORT_MASK;
1510}
1511
1512/* Set byte of data and its enable bits in tcam sw entry */
1513static void mvpp2_prs_tcam_data_byte_set(struct mvpp2_prs_entry *pe,
1514 unsigned int offs, unsigned char byte,
1515 unsigned char enable)
1516{
1517 pe->tcam.byte[MVPP2_PRS_TCAM_DATA_BYTE(offs)] = byte;
1518 pe->tcam.byte[MVPP2_PRS_TCAM_DATA_BYTE_EN(offs)] = enable;
1519}
1520
1521/* Get byte of data and its enable bits from tcam sw entry */
1522static void mvpp2_prs_tcam_data_byte_get(struct mvpp2_prs_entry *pe,
1523 unsigned int offs, unsigned char *byte,
1524 unsigned char *enable)
1525{
1526 *byte = pe->tcam.byte[MVPP2_PRS_TCAM_DATA_BYTE(offs)];
1527 *enable = pe->tcam.byte[MVPP2_PRS_TCAM_DATA_BYTE_EN(offs)];
1528}
1529
1530/* Set ethertype in tcam sw entry */
1531static void mvpp2_prs_match_etype(struct mvpp2_prs_entry *pe, int offset,
1532 unsigned short ethertype)
1533{
1534 mvpp2_prs_tcam_data_byte_set(pe, offset + 0, ethertype >> 8, 0xff);
1535 mvpp2_prs_tcam_data_byte_set(pe, offset + 1, ethertype & 0xff, 0xff);
1536}
1537
1538/* Set bits in sram sw entry */
1539static void mvpp2_prs_sram_bits_set(struct mvpp2_prs_entry *pe, int bit_num,
1540 int val)
1541{
1542 pe->sram.byte[MVPP2_BIT_TO_BYTE(bit_num)] |= (val << (bit_num % 8));
1543}
1544
1545/* Clear bits in sram sw entry */
1546static void mvpp2_prs_sram_bits_clear(struct mvpp2_prs_entry *pe, int bit_num,
1547 int val)
1548{
1549 pe->sram.byte[MVPP2_BIT_TO_BYTE(bit_num)] &= ~(val << (bit_num % 8));
1550}
1551
1552/* Update ri bits in sram sw entry */
1553static void mvpp2_prs_sram_ri_update(struct mvpp2_prs_entry *pe,
1554 unsigned int bits, unsigned int mask)
1555{
1556 unsigned int i;
1557
1558 for (i = 0; i < MVPP2_PRS_SRAM_RI_CTRL_BITS; i++) {
1559 int ri_off = MVPP2_PRS_SRAM_RI_OFFS;
1560
1561 if (!(mask & BIT(i)))
1562 continue;
1563
1564 if (bits & BIT(i))
1565 mvpp2_prs_sram_bits_set(pe, ri_off + i, 1);
1566 else
1567 mvpp2_prs_sram_bits_clear(pe, ri_off + i, 1);
1568
1569 mvpp2_prs_sram_bits_set(pe, MVPP2_PRS_SRAM_RI_CTRL_OFFS + i, 1);
1570 }
1571}
1572
1573/* Update ai bits in sram sw entry */
1574static void mvpp2_prs_sram_ai_update(struct mvpp2_prs_entry *pe,
1575 unsigned int bits, unsigned int mask)
1576{
1577 unsigned int i;
1578 int ai_off = MVPP2_PRS_SRAM_AI_OFFS;
1579
1580 for (i = 0; i < MVPP2_PRS_SRAM_AI_CTRL_BITS; i++) {
1581
1582 if (!(mask & BIT(i)))
1583 continue;
1584
1585 if (bits & BIT(i))
1586 mvpp2_prs_sram_bits_set(pe, ai_off + i, 1);
1587 else
1588 mvpp2_prs_sram_bits_clear(pe, ai_off + i, 1);
1589
1590 mvpp2_prs_sram_bits_set(pe, MVPP2_PRS_SRAM_AI_CTRL_OFFS + i, 1);
1591 }
1592}
1593
1594/* Read ai bits from sram sw entry */
1595static int mvpp2_prs_sram_ai_get(struct mvpp2_prs_entry *pe)
1596{
1597 u8 bits;
1598 int ai_off = MVPP2_BIT_TO_BYTE(MVPP2_PRS_SRAM_AI_OFFS);
1599 int ai_en_off = ai_off + 1;
1600 int ai_shift = MVPP2_PRS_SRAM_AI_OFFS % 8;
1601
1602 bits = (pe->sram.byte[ai_off] >> ai_shift) |
1603 (pe->sram.byte[ai_en_off] << (8 - ai_shift));
1604
1605 return bits;
1606}
1607
1608/* In sram sw entry set lookup ID field of the tcam key to be used in the next
1609 * lookup interation
1610 */
1611static void mvpp2_prs_sram_next_lu_set(struct mvpp2_prs_entry *pe,
1612 unsigned int lu)
1613{
1614 int sram_next_off = MVPP2_PRS_SRAM_NEXT_LU_OFFS;
1615
1616 mvpp2_prs_sram_bits_clear(pe, sram_next_off,
1617 MVPP2_PRS_SRAM_NEXT_LU_MASK);
1618 mvpp2_prs_sram_bits_set(pe, sram_next_off, lu);
1619}
1620
1621/* In the sram sw entry set sign and value of the next lookup offset
1622 * and the offset value generated to the classifier
1623 */
1624static void mvpp2_prs_sram_shift_set(struct mvpp2_prs_entry *pe, int shift,
1625 unsigned int op)
1626{
1627 /* Set sign */
1628 if (shift < 0) {
1629 mvpp2_prs_sram_bits_set(pe, MVPP2_PRS_SRAM_SHIFT_SIGN_BIT, 1);
1630 shift = 0 - shift;
1631 } else {
1632 mvpp2_prs_sram_bits_clear(pe, MVPP2_PRS_SRAM_SHIFT_SIGN_BIT, 1);
1633 }
1634
1635 /* Set value */
1636 pe->sram.byte[MVPP2_BIT_TO_BYTE(MVPP2_PRS_SRAM_SHIFT_OFFS)] =
1637 (unsigned char)shift;
1638
1639 /* Reset and set operation */
1640 mvpp2_prs_sram_bits_clear(pe, MVPP2_PRS_SRAM_OP_SEL_SHIFT_OFFS,
1641 MVPP2_PRS_SRAM_OP_SEL_SHIFT_MASK);
1642 mvpp2_prs_sram_bits_set(pe, MVPP2_PRS_SRAM_OP_SEL_SHIFT_OFFS, op);
1643
1644 /* Set base offset as current */
1645 mvpp2_prs_sram_bits_clear(pe, MVPP2_PRS_SRAM_OP_SEL_BASE_OFFS, 1);
1646}
1647
1648/* In the sram sw entry set sign and value of the user defined offset
1649 * generated to the classifier
1650 */
1651static void mvpp2_prs_sram_offset_set(struct mvpp2_prs_entry *pe,
1652 unsigned int type, int offset,
1653 unsigned int op)
1654{
1655 /* Set sign */
1656 if (offset < 0) {
1657 mvpp2_prs_sram_bits_set(pe, MVPP2_PRS_SRAM_UDF_SIGN_BIT, 1);
1658 offset = 0 - offset;
1659 } else {
1660 mvpp2_prs_sram_bits_clear(pe, MVPP2_PRS_SRAM_UDF_SIGN_BIT, 1);
1661 }
1662
1663 /* Set value */
1664 mvpp2_prs_sram_bits_clear(pe, MVPP2_PRS_SRAM_UDF_OFFS,
1665 MVPP2_PRS_SRAM_UDF_MASK);
1666 mvpp2_prs_sram_bits_set(pe, MVPP2_PRS_SRAM_UDF_OFFS, offset);
1667 pe->sram.byte[MVPP2_BIT_TO_BYTE(MVPP2_PRS_SRAM_UDF_OFFS +
1668 MVPP2_PRS_SRAM_UDF_BITS)] &=
1669 ~(MVPP2_PRS_SRAM_UDF_MASK >> (8 - (MVPP2_PRS_SRAM_UDF_OFFS % 8)));
1670 pe->sram.byte[MVPP2_BIT_TO_BYTE(MVPP2_PRS_SRAM_UDF_OFFS +
1671 MVPP2_PRS_SRAM_UDF_BITS)] |=
1672 (offset >> (8 - (MVPP2_PRS_SRAM_UDF_OFFS % 8)));
1673
1674 /* Set offset type */
1675 mvpp2_prs_sram_bits_clear(pe, MVPP2_PRS_SRAM_UDF_TYPE_OFFS,
1676 MVPP2_PRS_SRAM_UDF_TYPE_MASK);
1677 mvpp2_prs_sram_bits_set(pe, MVPP2_PRS_SRAM_UDF_TYPE_OFFS, type);
1678
1679 /* Set offset operation */
1680 mvpp2_prs_sram_bits_clear(pe, MVPP2_PRS_SRAM_OP_SEL_UDF_OFFS,
1681 MVPP2_PRS_SRAM_OP_SEL_UDF_MASK);
1682 mvpp2_prs_sram_bits_set(pe, MVPP2_PRS_SRAM_OP_SEL_UDF_OFFS, op);
1683
1684 pe->sram.byte[MVPP2_BIT_TO_BYTE(MVPP2_PRS_SRAM_OP_SEL_UDF_OFFS +
1685 MVPP2_PRS_SRAM_OP_SEL_UDF_BITS)] &=
1686 ~(MVPP2_PRS_SRAM_OP_SEL_UDF_MASK >>
1687 (8 - (MVPP2_PRS_SRAM_OP_SEL_UDF_OFFS % 8)));
1688
1689 pe->sram.byte[MVPP2_BIT_TO_BYTE(MVPP2_PRS_SRAM_OP_SEL_UDF_OFFS +
1690 MVPP2_PRS_SRAM_OP_SEL_UDF_BITS)] |=
1691 (op >> (8 - (MVPP2_PRS_SRAM_OP_SEL_UDF_OFFS % 8)));
1692
1693 /* Set base offset as current */
1694 mvpp2_prs_sram_bits_clear(pe, MVPP2_PRS_SRAM_OP_SEL_BASE_OFFS, 1);
1695}
1696
1697/* Find parser flow entry */
1698static struct mvpp2_prs_entry *mvpp2_prs_flow_find(struct mvpp2 *priv, int flow)
1699{
1700 struct mvpp2_prs_entry *pe;
1701 int tid;
1702
1703 pe = kzalloc(sizeof(*pe), GFP_KERNEL);
1704 if (!pe)
1705 return NULL;
1706 mvpp2_prs_tcam_lu_set(pe, MVPP2_PRS_LU_FLOWS);
1707
1708 /* Go through the all entires with MVPP2_PRS_LU_FLOWS */
1709 for (tid = MVPP2_PRS_TCAM_SRAM_SIZE - 1; tid >= 0; tid--) {
1710 u8 bits;
1711
1712 if (!priv->prs_shadow[tid].valid ||
1713 priv->prs_shadow[tid].lu != MVPP2_PRS_LU_FLOWS)
1714 continue;
1715
1716 pe->index = tid;
1717 mvpp2_prs_hw_read(priv, pe);
1718 bits = mvpp2_prs_sram_ai_get(pe);
1719
1720 /* Sram store classification lookup ID in AI bits [5:0] */
1721 if ((bits & MVPP2_PRS_FLOW_ID_MASK) == flow)
1722 return pe;
1723 }
1724 kfree(pe);
1725
1726 return NULL;
1727}
1728
1729/* Return first free tcam index, seeking from start to end */
1730static int mvpp2_prs_tcam_first_free(struct mvpp2 *priv, unsigned char start,
1731 unsigned char end)
1732{
1733 int tid;
1734
1735 if (start > end)
1736 swap(start, end);
1737
1738 if (end >= MVPP2_PRS_TCAM_SRAM_SIZE)
1739 end = MVPP2_PRS_TCAM_SRAM_SIZE - 1;
1740
1741 for (tid = start; tid <= end; tid++) {
1742 if (!priv->prs_shadow[tid].valid)
1743 return tid;
1744 }
1745
1746 return -EINVAL;
1747}
1748
1749/* Enable/disable dropping all mac da's */
1750static void mvpp2_prs_mac_drop_all_set(struct mvpp2 *priv, int port, bool add)
1751{
1752 struct mvpp2_prs_entry pe;
1753
1754 if (priv->prs_shadow[MVPP2_PE_DROP_ALL].valid) {
1755 /* Entry exist - update port only */
1756 pe.index = MVPP2_PE_DROP_ALL;
1757 mvpp2_prs_hw_read(priv, &pe);
1758 } else {
1759 /* Entry doesn't exist - create new */
1760 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
1761 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_MAC);
1762 pe.index = MVPP2_PE_DROP_ALL;
1763
1764 /* Non-promiscuous mode for all ports - DROP unknown packets */
1765 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_DROP_MASK,
1766 MVPP2_PRS_RI_DROP_MASK);
1767
1768 mvpp2_prs_sram_bits_set(&pe, MVPP2_PRS_SRAM_LU_GEN_BIT, 1);
1769 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_FLOWS);
1770
1771 /* Update shadow table */
1772 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_MAC);
1773
1774 /* Mask all ports */
1775 mvpp2_prs_tcam_port_map_set(&pe, 0);
1776 }
1777
1778 /* Update port mask */
1779 mvpp2_prs_tcam_port_set(&pe, port, add);
1780
1781 mvpp2_prs_hw_write(priv, &pe);
1782}
1783
1784/* Set port to promiscuous mode */
1785static void mvpp2_prs_mac_promisc_set(struct mvpp2 *priv, int port, bool add)
1786{
1787 struct mvpp2_prs_entry pe;
1788
1789 /* Promiscuous mode - Accept unknown packets */
1790
1791 if (priv->prs_shadow[MVPP2_PE_MAC_PROMISCUOUS].valid) {
1792 /* Entry exist - update port only */
1793 pe.index = MVPP2_PE_MAC_PROMISCUOUS;
1794 mvpp2_prs_hw_read(priv, &pe);
1795 } else {
1796 /* Entry doesn't exist - create new */
1797 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
1798 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_MAC);
1799 pe.index = MVPP2_PE_MAC_PROMISCUOUS;
1800
1801 /* Continue - set next lookup */
1802 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_DSA);
1803
1804 /* Set result info bits */
1805 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L2_UCAST,
1806 MVPP2_PRS_RI_L2_CAST_MASK);
1807
1808 /* Shift to ethertype */
1809 mvpp2_prs_sram_shift_set(&pe, 2 * ETH_ALEN,
1810 MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
1811
1812 /* Mask all ports */
1813 mvpp2_prs_tcam_port_map_set(&pe, 0);
1814
1815 /* Update shadow table */
1816 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_MAC);
1817 }
1818
1819 /* Update port mask */
1820 mvpp2_prs_tcam_port_set(&pe, port, add);
1821
1822 mvpp2_prs_hw_write(priv, &pe);
1823}
1824
1825/* Accept multicast */
1826static void mvpp2_prs_mac_multi_set(struct mvpp2 *priv, int port, int index,
1827 bool add)
1828{
1829 struct mvpp2_prs_entry pe;
1830 unsigned char da_mc;
1831
1832 /* Ethernet multicast address first byte is
1833 * 0x01 for IPv4 and 0x33 for IPv6
1834 */
1835 da_mc = (index == MVPP2_PE_MAC_MC_ALL) ? 0x01 : 0x33;
1836
1837 if (priv->prs_shadow[index].valid) {
1838 /* Entry exist - update port only */
1839 pe.index = index;
1840 mvpp2_prs_hw_read(priv, &pe);
1841 } else {
1842 /* Entry doesn't exist - create new */
1843 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
1844 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_MAC);
1845 pe.index = index;
1846
1847 /* Continue - set next lookup */
1848 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_DSA);
1849
1850 /* Set result info bits */
1851 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L2_MCAST,
1852 MVPP2_PRS_RI_L2_CAST_MASK);
1853
1854 /* Update tcam entry data first byte */
1855 mvpp2_prs_tcam_data_byte_set(&pe, 0, da_mc, 0xff);
1856
1857 /* Shift to ethertype */
1858 mvpp2_prs_sram_shift_set(&pe, 2 * ETH_ALEN,
1859 MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
1860
1861 /* Mask all ports */
1862 mvpp2_prs_tcam_port_map_set(&pe, 0);
1863
1864 /* Update shadow table */
1865 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_MAC);
1866 }
1867
1868 /* Update port mask */
1869 mvpp2_prs_tcam_port_set(&pe, port, add);
1870
1871 mvpp2_prs_hw_write(priv, &pe);
1872}
1873
1874/* Parser per-port initialization */
1875static void mvpp2_prs_hw_port_init(struct mvpp2 *priv, int port, int lu_first,
1876 int lu_max, int offset)
1877{
1878 u32 val;
1879
1880 /* Set lookup ID */
1881 val = mvpp2_read(priv, MVPP2_PRS_INIT_LOOKUP_REG);
1882 val &= ~MVPP2_PRS_PORT_LU_MASK(port);
1883 val |= MVPP2_PRS_PORT_LU_VAL(port, lu_first);
1884 mvpp2_write(priv, MVPP2_PRS_INIT_LOOKUP_REG, val);
1885
1886 /* Set maximum number of loops for packet received from port */
1887 val = mvpp2_read(priv, MVPP2_PRS_MAX_LOOP_REG(port));
1888 val &= ~MVPP2_PRS_MAX_LOOP_MASK(port);
1889 val |= MVPP2_PRS_MAX_LOOP_VAL(port, lu_max);
1890 mvpp2_write(priv, MVPP2_PRS_MAX_LOOP_REG(port), val);
1891
1892 /* Set initial offset for packet header extraction for the first
1893 * searching loop
1894 */
1895 val = mvpp2_read(priv, MVPP2_PRS_INIT_OFFS_REG(port));
1896 val &= ~MVPP2_PRS_INIT_OFF_MASK(port);
1897 val |= MVPP2_PRS_INIT_OFF_VAL(port, offset);
1898 mvpp2_write(priv, MVPP2_PRS_INIT_OFFS_REG(port), val);
1899}
1900
1901/* Default flow entries initialization for all ports */
1902static void mvpp2_prs_def_flow_init(struct mvpp2 *priv)
1903{
1904 struct mvpp2_prs_entry pe;
1905 int port;
1906
1907 for (port = 0; port < MVPP2_MAX_PORTS; port++) {
1908 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
1909 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_FLOWS);
1910 pe.index = MVPP2_PE_FIRST_DEFAULT_FLOW - port;
1911
1912 /* Mask all ports */
1913 mvpp2_prs_tcam_port_map_set(&pe, 0);
1914
1915 /* Set flow ID*/
1916 mvpp2_prs_sram_ai_update(&pe, port, MVPP2_PRS_FLOW_ID_MASK);
1917 mvpp2_prs_sram_bits_set(&pe, MVPP2_PRS_SRAM_LU_DONE_BIT, 1);
1918
1919 /* Update shadow table and hw entry */
1920 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_FLOWS);
1921 mvpp2_prs_hw_write(priv, &pe);
1922 }
1923}
1924
1925/* Set default entry for Marvell Header field */
1926static void mvpp2_prs_mh_init(struct mvpp2 *priv)
1927{
1928 struct mvpp2_prs_entry pe;
1929
1930 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
1931
1932 pe.index = MVPP2_PE_MH_DEFAULT;
1933 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_MH);
1934 mvpp2_prs_sram_shift_set(&pe, MVPP2_MH_SIZE,
1935 MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
1936 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_MAC);
1937
1938 /* Unmask all ports */
1939 mvpp2_prs_tcam_port_map_set(&pe, MVPP2_PRS_PORT_MASK);
1940
1941 /* Update shadow table and hw entry */
1942 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_MH);
1943 mvpp2_prs_hw_write(priv, &pe);
1944}
1945
1946/* Set default entires (place holder) for promiscuous, non-promiscuous and
1947 * multicast MAC addresses
1948 */
1949static void mvpp2_prs_mac_init(struct mvpp2 *priv)
1950{
1951 struct mvpp2_prs_entry pe;
1952
1953 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
1954
1955 /* Non-promiscuous mode for all ports - DROP unknown packets */
1956 pe.index = MVPP2_PE_MAC_NON_PROMISCUOUS;
1957 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_MAC);
1958
1959 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_DROP_MASK,
1960 MVPP2_PRS_RI_DROP_MASK);
1961 mvpp2_prs_sram_bits_set(&pe, MVPP2_PRS_SRAM_LU_GEN_BIT, 1);
1962 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_FLOWS);
1963
1964 /* Unmask all ports */
1965 mvpp2_prs_tcam_port_map_set(&pe, MVPP2_PRS_PORT_MASK);
1966
1967 /* Update shadow table and hw entry */
1968 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_MAC);
1969 mvpp2_prs_hw_write(priv, &pe);
1970
1971 /* place holders only - no ports */
1972 mvpp2_prs_mac_drop_all_set(priv, 0, false);
1973 mvpp2_prs_mac_promisc_set(priv, 0, false);
1974 mvpp2_prs_mac_multi_set(priv, MVPP2_PE_MAC_MC_ALL, 0, false);
1975 mvpp2_prs_mac_multi_set(priv, MVPP2_PE_MAC_MC_IP6, 0, false);
1976}
1977
1978/* Match basic ethertypes */
1979static int mvpp2_prs_etype_init(struct mvpp2 *priv)
1980{
1981 struct mvpp2_prs_entry pe;
1982 int tid;
1983
1984 /* Ethertype: PPPoE */
1985 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
1986 MVPP2_PE_LAST_FREE_TID);
1987 if (tid < 0)
1988 return tid;
1989
1990 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
1991 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_L2);
1992 pe.index = tid;
1993
1994 mvpp2_prs_match_etype(&pe, 0, PROT_PPP_SES);
1995
1996 mvpp2_prs_sram_shift_set(&pe, MVPP2_PPPOE_HDR_SIZE,
1997 MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
1998 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_PPPOE);
1999 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_PPPOE_MASK,
2000 MVPP2_PRS_RI_PPPOE_MASK);
2001
2002 /* Update shadow table and hw entry */
2003 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_L2);
2004 priv->prs_shadow[pe.index].udf = MVPP2_PRS_UDF_L2_DEF;
2005 priv->prs_shadow[pe.index].finish = false;
2006 mvpp2_prs_shadow_ri_set(priv, pe.index, MVPP2_PRS_RI_PPPOE_MASK,
2007 MVPP2_PRS_RI_PPPOE_MASK);
2008 mvpp2_prs_hw_write(priv, &pe);
2009
2010 /* Ethertype: ARP */
2011 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
2012 MVPP2_PE_LAST_FREE_TID);
2013 if (tid < 0)
2014 return tid;
2015
2016 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
2017 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_L2);
2018 pe.index = tid;
2019
2020 mvpp2_prs_match_etype(&pe, 0, PROT_ARP);
2021
2022 /* Generate flow in the next iteration*/
2023 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_FLOWS);
2024 mvpp2_prs_sram_bits_set(&pe, MVPP2_PRS_SRAM_LU_GEN_BIT, 1);
2025 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L3_ARP,
2026 MVPP2_PRS_RI_L3_PROTO_MASK);
2027 /* Set L3 offset */
2028 mvpp2_prs_sram_offset_set(&pe, MVPP2_PRS_SRAM_UDF_TYPE_L3,
2029 MVPP2_ETH_TYPE_LEN,
2030 MVPP2_PRS_SRAM_OP_SEL_UDF_ADD);
2031
2032 /* Update shadow table and hw entry */
2033 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_L2);
2034 priv->prs_shadow[pe.index].udf = MVPP2_PRS_UDF_L2_DEF;
2035 priv->prs_shadow[pe.index].finish = true;
2036 mvpp2_prs_shadow_ri_set(priv, pe.index, MVPP2_PRS_RI_L3_ARP,
2037 MVPP2_PRS_RI_L3_PROTO_MASK);
2038 mvpp2_prs_hw_write(priv, &pe);
2039
2040 /* Ethertype: LBTD */
2041 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
2042 MVPP2_PE_LAST_FREE_TID);
2043 if (tid < 0)
2044 return tid;
2045
2046 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
2047 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_L2);
2048 pe.index = tid;
2049
2050 mvpp2_prs_match_etype(&pe, 0, MVPP2_IP_LBDT_TYPE);
2051
2052 /* Generate flow in the next iteration*/
2053 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_FLOWS);
2054 mvpp2_prs_sram_bits_set(&pe, MVPP2_PRS_SRAM_LU_GEN_BIT, 1);
2055 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_CPU_CODE_RX_SPEC |
2056 MVPP2_PRS_RI_UDF3_RX_SPECIAL,
2057 MVPP2_PRS_RI_CPU_CODE_MASK |
2058 MVPP2_PRS_RI_UDF3_MASK);
2059 /* Set L3 offset */
2060 mvpp2_prs_sram_offset_set(&pe, MVPP2_PRS_SRAM_UDF_TYPE_L3,
2061 MVPP2_ETH_TYPE_LEN,
2062 MVPP2_PRS_SRAM_OP_SEL_UDF_ADD);
2063
2064 /* Update shadow table and hw entry */
2065 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_L2);
2066 priv->prs_shadow[pe.index].udf = MVPP2_PRS_UDF_L2_DEF;
2067 priv->prs_shadow[pe.index].finish = true;
2068 mvpp2_prs_shadow_ri_set(priv, pe.index, MVPP2_PRS_RI_CPU_CODE_RX_SPEC |
2069 MVPP2_PRS_RI_UDF3_RX_SPECIAL,
2070 MVPP2_PRS_RI_CPU_CODE_MASK |
2071 MVPP2_PRS_RI_UDF3_MASK);
2072 mvpp2_prs_hw_write(priv, &pe);
2073
2074 /* Ethertype: IPv4 without options */
2075 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
2076 MVPP2_PE_LAST_FREE_TID);
2077 if (tid < 0)
2078 return tid;
2079
2080 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
2081 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_L2);
2082 pe.index = tid;
2083
2084 mvpp2_prs_match_etype(&pe, 0, PROT_IP);
2085 mvpp2_prs_tcam_data_byte_set(&pe, MVPP2_ETH_TYPE_LEN,
2086 MVPP2_PRS_IPV4_HEAD | MVPP2_PRS_IPV4_IHL,
2087 MVPP2_PRS_IPV4_HEAD_MASK |
2088 MVPP2_PRS_IPV4_IHL_MASK);
2089
2090 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_IP4);
2091 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L3_IP4,
2092 MVPP2_PRS_RI_L3_PROTO_MASK);
2093 /* Skip eth_type + 4 bytes of IP header */
2094 mvpp2_prs_sram_shift_set(&pe, MVPP2_ETH_TYPE_LEN + 4,
2095 MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
2096 /* Set L3 offset */
2097 mvpp2_prs_sram_offset_set(&pe, MVPP2_PRS_SRAM_UDF_TYPE_L3,
2098 MVPP2_ETH_TYPE_LEN,
2099 MVPP2_PRS_SRAM_OP_SEL_UDF_ADD);
2100
2101 /* Update shadow table and hw entry */
2102 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_L2);
2103 priv->prs_shadow[pe.index].udf = MVPP2_PRS_UDF_L2_DEF;
2104 priv->prs_shadow[pe.index].finish = false;
2105 mvpp2_prs_shadow_ri_set(priv, pe.index, MVPP2_PRS_RI_L3_IP4,
2106 MVPP2_PRS_RI_L3_PROTO_MASK);
2107 mvpp2_prs_hw_write(priv, &pe);
2108
2109 /* Ethertype: IPv4 with options */
2110 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
2111 MVPP2_PE_LAST_FREE_TID);
2112 if (tid < 0)
2113 return tid;
2114
2115 pe.index = tid;
2116
2117 /* Clear tcam data before updating */
2118 pe.tcam.byte[MVPP2_PRS_TCAM_DATA_BYTE(MVPP2_ETH_TYPE_LEN)] = 0x0;
2119 pe.tcam.byte[MVPP2_PRS_TCAM_DATA_BYTE_EN(MVPP2_ETH_TYPE_LEN)] = 0x0;
2120
2121 mvpp2_prs_tcam_data_byte_set(&pe, MVPP2_ETH_TYPE_LEN,
2122 MVPP2_PRS_IPV4_HEAD,
2123 MVPP2_PRS_IPV4_HEAD_MASK);
2124
2125 /* Clear ri before updating */
2126 pe.sram.word[MVPP2_PRS_SRAM_RI_WORD] = 0x0;
2127 pe.sram.word[MVPP2_PRS_SRAM_RI_CTRL_WORD] = 0x0;
2128 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L3_IP4_OPT,
2129 MVPP2_PRS_RI_L3_PROTO_MASK);
2130
2131 /* Update shadow table and hw entry */
2132 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_L2);
2133 priv->prs_shadow[pe.index].udf = MVPP2_PRS_UDF_L2_DEF;
2134 priv->prs_shadow[pe.index].finish = false;
2135 mvpp2_prs_shadow_ri_set(priv, pe.index, MVPP2_PRS_RI_L3_IP4_OPT,
2136 MVPP2_PRS_RI_L3_PROTO_MASK);
2137 mvpp2_prs_hw_write(priv, &pe);
2138
2139 /* Ethertype: IPv6 without options */
2140 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
2141 MVPP2_PE_LAST_FREE_TID);
2142 if (tid < 0)
2143 return tid;
2144
2145 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
2146 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_L2);
2147 pe.index = tid;
2148
2149 mvpp2_prs_match_etype(&pe, 0, PROT_IPV6);
2150
2151 /* Skip DIP of IPV6 header */
2152 mvpp2_prs_sram_shift_set(&pe, MVPP2_ETH_TYPE_LEN + 8 +
2153 MVPP2_MAX_L3_ADDR_SIZE,
2154 MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
2155 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_IP6);
2156 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L3_IP6,
2157 MVPP2_PRS_RI_L3_PROTO_MASK);
2158 /* Set L3 offset */
2159 mvpp2_prs_sram_offset_set(&pe, MVPP2_PRS_SRAM_UDF_TYPE_L3,
2160 MVPP2_ETH_TYPE_LEN,
2161 MVPP2_PRS_SRAM_OP_SEL_UDF_ADD);
2162
2163 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_L2);
2164 priv->prs_shadow[pe.index].udf = MVPP2_PRS_UDF_L2_DEF;
2165 priv->prs_shadow[pe.index].finish = false;
2166 mvpp2_prs_shadow_ri_set(priv, pe.index, MVPP2_PRS_RI_L3_IP6,
2167 MVPP2_PRS_RI_L3_PROTO_MASK);
2168 mvpp2_prs_hw_write(priv, &pe);
2169
2170 /* Default entry for MVPP2_PRS_LU_L2 - Unknown ethtype */
2171 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
2172 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_L2);
2173 pe.index = MVPP2_PE_ETH_TYPE_UN;
2174
2175 /* Unmask all ports */
2176 mvpp2_prs_tcam_port_map_set(&pe, MVPP2_PRS_PORT_MASK);
2177
2178 /* Generate flow in the next iteration*/
2179 mvpp2_prs_sram_bits_set(&pe, MVPP2_PRS_SRAM_LU_GEN_BIT, 1);
2180 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_FLOWS);
2181 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L3_UN,
2182 MVPP2_PRS_RI_L3_PROTO_MASK);
2183 /* Set L3 offset even it's unknown L3 */
2184 mvpp2_prs_sram_offset_set(&pe, MVPP2_PRS_SRAM_UDF_TYPE_L3,
2185 MVPP2_ETH_TYPE_LEN,
2186 MVPP2_PRS_SRAM_OP_SEL_UDF_ADD);
2187
2188 /* Update shadow table and hw entry */
2189 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_L2);
2190 priv->prs_shadow[pe.index].udf = MVPP2_PRS_UDF_L2_DEF;
2191 priv->prs_shadow[pe.index].finish = true;
2192 mvpp2_prs_shadow_ri_set(priv, pe.index, MVPP2_PRS_RI_L3_UN,
2193 MVPP2_PRS_RI_L3_PROTO_MASK);
2194 mvpp2_prs_hw_write(priv, &pe);
2195
2196 return 0;
2197}
2198
2199/* Parser default initialization */
2200static int mvpp2_prs_default_init(struct udevice *dev,
2201 struct mvpp2 *priv)
2202{
2203 int err, index, i;
2204
2205 /* Enable tcam table */
2206 mvpp2_write(priv, MVPP2_PRS_TCAM_CTRL_REG, MVPP2_PRS_TCAM_EN_MASK);
2207
2208 /* Clear all tcam and sram entries */
2209 for (index = 0; index < MVPP2_PRS_TCAM_SRAM_SIZE; index++) {
2210 mvpp2_write(priv, MVPP2_PRS_TCAM_IDX_REG, index);
2211 for (i = 0; i < MVPP2_PRS_TCAM_WORDS; i++)
2212 mvpp2_write(priv, MVPP2_PRS_TCAM_DATA_REG(i), 0);
2213
2214 mvpp2_write(priv, MVPP2_PRS_SRAM_IDX_REG, index);
2215 for (i = 0; i < MVPP2_PRS_SRAM_WORDS; i++)
2216 mvpp2_write(priv, MVPP2_PRS_SRAM_DATA_REG(i), 0);
2217 }
2218
2219 /* Invalidate all tcam entries */
2220 for (index = 0; index < MVPP2_PRS_TCAM_SRAM_SIZE; index++)
2221 mvpp2_prs_hw_inv(priv, index);
2222
2223 priv->prs_shadow = devm_kcalloc(dev, MVPP2_PRS_TCAM_SRAM_SIZE,
2224 sizeof(struct mvpp2_prs_shadow),
2225 GFP_KERNEL);
2226 if (!priv->prs_shadow)
2227 return -ENOMEM;
2228
2229 /* Always start from lookup = 0 */
2230 for (index = 0; index < MVPP2_MAX_PORTS; index++)
2231 mvpp2_prs_hw_port_init(priv, index, MVPP2_PRS_LU_MH,
2232 MVPP2_PRS_PORT_LU_MAX, 0);
2233
2234 mvpp2_prs_def_flow_init(priv);
2235
2236 mvpp2_prs_mh_init(priv);
2237
2238 mvpp2_prs_mac_init(priv);
2239
2240 err = mvpp2_prs_etype_init(priv);
2241 if (err)
2242 return err;
2243
2244 return 0;
2245}
2246
2247/* Compare MAC DA with tcam entry data */
2248static bool mvpp2_prs_mac_range_equals(struct mvpp2_prs_entry *pe,
2249 const u8 *da, unsigned char *mask)
2250{
2251 unsigned char tcam_byte, tcam_mask;
2252 int index;
2253
2254 for (index = 0; index < ETH_ALEN; index++) {
2255 mvpp2_prs_tcam_data_byte_get(pe, index, &tcam_byte, &tcam_mask);
2256 if (tcam_mask != mask[index])
2257 return false;
2258
2259 if ((tcam_mask & tcam_byte) != (da[index] & mask[index]))
2260 return false;
2261 }
2262
2263 return true;
2264}
2265
2266/* Find tcam entry with matched pair <MAC DA, port> */
2267static struct mvpp2_prs_entry *
2268mvpp2_prs_mac_da_range_find(struct mvpp2 *priv, int pmap, const u8 *da,
2269 unsigned char *mask, int udf_type)
2270{
2271 struct mvpp2_prs_entry *pe;
2272 int tid;
2273
2274 pe = kzalloc(sizeof(*pe), GFP_KERNEL);
2275 if (!pe)
2276 return NULL;
2277 mvpp2_prs_tcam_lu_set(pe, MVPP2_PRS_LU_MAC);
2278
2279 /* Go through the all entires with MVPP2_PRS_LU_MAC */
2280 for (tid = MVPP2_PE_FIRST_FREE_TID;
2281 tid <= MVPP2_PE_LAST_FREE_TID; tid++) {
2282 unsigned int entry_pmap;
2283
2284 if (!priv->prs_shadow[tid].valid ||
2285 (priv->prs_shadow[tid].lu != MVPP2_PRS_LU_MAC) ||
2286 (priv->prs_shadow[tid].udf != udf_type))
2287 continue;
2288
2289 pe->index = tid;
2290 mvpp2_prs_hw_read(priv, pe);
2291 entry_pmap = mvpp2_prs_tcam_port_map_get(pe);
2292
2293 if (mvpp2_prs_mac_range_equals(pe, da, mask) &&
2294 entry_pmap == pmap)
2295 return pe;
2296 }
2297 kfree(pe);
2298
2299 return NULL;
2300}
2301
2302/* Update parser's mac da entry */
2303static int mvpp2_prs_mac_da_accept(struct mvpp2 *priv, int port,
2304 const u8 *da, bool add)
2305{
2306 struct mvpp2_prs_entry *pe;
2307 unsigned int pmap, len, ri;
2308 unsigned char mask[ETH_ALEN] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
2309 int tid;
2310
2311 /* Scan TCAM and see if entry with this <MAC DA, port> already exist */
2312 pe = mvpp2_prs_mac_da_range_find(priv, (1 << port), da, mask,
2313 MVPP2_PRS_UDF_MAC_DEF);
2314
2315 /* No such entry */
2316 if (!pe) {
2317 if (!add)
2318 return 0;
2319
2320 /* Create new TCAM entry */
2321 /* Find first range mac entry*/
2322 for (tid = MVPP2_PE_FIRST_FREE_TID;
2323 tid <= MVPP2_PE_LAST_FREE_TID; tid++)
2324 if (priv->prs_shadow[tid].valid &&
2325 (priv->prs_shadow[tid].lu == MVPP2_PRS_LU_MAC) &&
2326 (priv->prs_shadow[tid].udf ==
2327 MVPP2_PRS_UDF_MAC_RANGE))
2328 break;
2329
2330 /* Go through the all entries from first to last */
2331 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
2332 tid - 1);
2333 if (tid < 0)
2334 return tid;
2335
2336 pe = kzalloc(sizeof(*pe), GFP_KERNEL);
2337 if (!pe)
2338 return -1;
2339 mvpp2_prs_tcam_lu_set(pe, MVPP2_PRS_LU_MAC);
2340 pe->index = tid;
2341
2342 /* Mask all ports */
2343 mvpp2_prs_tcam_port_map_set(pe, 0);
2344 }
2345
2346 /* Update port mask */
2347 mvpp2_prs_tcam_port_set(pe, port, add);
2348
2349 /* Invalidate the entry if no ports are left enabled */
2350 pmap = mvpp2_prs_tcam_port_map_get(pe);
2351 if (pmap == 0) {
2352 if (add) {
2353 kfree(pe);
2354 return -1;
2355 }
2356 mvpp2_prs_hw_inv(priv, pe->index);
2357 priv->prs_shadow[pe->index].valid = false;
2358 kfree(pe);
2359 return 0;
2360 }
2361
2362 /* Continue - set next lookup */
2363 mvpp2_prs_sram_next_lu_set(pe, MVPP2_PRS_LU_DSA);
2364
2365 /* Set match on DA */
2366 len = ETH_ALEN;
2367 while (len--)
2368 mvpp2_prs_tcam_data_byte_set(pe, len, da[len], 0xff);
2369
2370 /* Set result info bits */
2371 ri = MVPP2_PRS_RI_L2_UCAST | MVPP2_PRS_RI_MAC_ME_MASK;
2372
2373 mvpp2_prs_sram_ri_update(pe, ri, MVPP2_PRS_RI_L2_CAST_MASK |
2374 MVPP2_PRS_RI_MAC_ME_MASK);
2375 mvpp2_prs_shadow_ri_set(priv, pe->index, ri, MVPP2_PRS_RI_L2_CAST_MASK |
2376 MVPP2_PRS_RI_MAC_ME_MASK);
2377
2378 /* Shift to ethertype */
2379 mvpp2_prs_sram_shift_set(pe, 2 * ETH_ALEN,
2380 MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
2381
2382 /* Update shadow table and hw entry */
2383 priv->prs_shadow[pe->index].udf = MVPP2_PRS_UDF_MAC_DEF;
2384 mvpp2_prs_shadow_set(priv, pe->index, MVPP2_PRS_LU_MAC);
2385 mvpp2_prs_hw_write(priv, pe);
2386
2387 kfree(pe);
2388
2389 return 0;
2390}
2391
2392static int mvpp2_prs_update_mac_da(struct mvpp2_port *port, const u8 *da)
2393{
2394 int err;
2395
2396 /* Remove old parser entry */
2397 err = mvpp2_prs_mac_da_accept(port->priv, port->id, port->dev_addr,
2398 false);
2399 if (err)
2400 return err;
2401
2402 /* Add new parser entry */
2403 err = mvpp2_prs_mac_da_accept(port->priv, port->id, da, true);
2404 if (err)
2405 return err;
2406
2407 /* Set addr in the device */
2408 memcpy(port->dev_addr, da, ETH_ALEN);
2409
2410 return 0;
2411}
2412
2413/* Set prs flow for the port */
2414static int mvpp2_prs_def_flow(struct mvpp2_port *port)
2415{
2416 struct mvpp2_prs_entry *pe;
2417 int tid;
2418
2419 pe = mvpp2_prs_flow_find(port->priv, port->id);
2420
2421 /* Such entry not exist */
2422 if (!pe) {
2423 /* Go through the all entires from last to first */
2424 tid = mvpp2_prs_tcam_first_free(port->priv,
2425 MVPP2_PE_LAST_FREE_TID,
2426 MVPP2_PE_FIRST_FREE_TID);
2427 if (tid < 0)
2428 return tid;
2429
2430 pe = kzalloc(sizeof(*pe), GFP_KERNEL);
2431 if (!pe)
2432 return -ENOMEM;
2433
2434 mvpp2_prs_tcam_lu_set(pe, MVPP2_PRS_LU_FLOWS);
2435 pe->index = tid;
2436
2437 /* Set flow ID*/
2438 mvpp2_prs_sram_ai_update(pe, port->id, MVPP2_PRS_FLOW_ID_MASK);
2439 mvpp2_prs_sram_bits_set(pe, MVPP2_PRS_SRAM_LU_DONE_BIT, 1);
2440
2441 /* Update shadow table */
2442 mvpp2_prs_shadow_set(port->priv, pe->index, MVPP2_PRS_LU_FLOWS);
2443 }
2444
2445 mvpp2_prs_tcam_port_map_set(pe, (1 << port->id));
2446 mvpp2_prs_hw_write(port->priv, pe);
2447 kfree(pe);
2448
2449 return 0;
2450}
2451
2452/* Classifier configuration routines */
2453
2454/* Update classification flow table registers */
2455static void mvpp2_cls_flow_write(struct mvpp2 *priv,
2456 struct mvpp2_cls_flow_entry *fe)
2457{
2458 mvpp2_write(priv, MVPP2_CLS_FLOW_INDEX_REG, fe->index);
2459 mvpp2_write(priv, MVPP2_CLS_FLOW_TBL0_REG, fe->data[0]);
2460 mvpp2_write(priv, MVPP2_CLS_FLOW_TBL1_REG, fe->data[1]);
2461 mvpp2_write(priv, MVPP2_CLS_FLOW_TBL2_REG, fe->data[2]);
2462}
2463
2464/* Update classification lookup table register */
2465static void mvpp2_cls_lookup_write(struct mvpp2 *priv,
2466 struct mvpp2_cls_lookup_entry *le)
2467{
2468 u32 val;
2469
2470 val = (le->way << MVPP2_CLS_LKP_INDEX_WAY_OFFS) | le->lkpid;
2471 mvpp2_write(priv, MVPP2_CLS_LKP_INDEX_REG, val);
2472 mvpp2_write(priv, MVPP2_CLS_LKP_TBL_REG, le->data);
2473}
2474
2475/* Classifier default initialization */
2476static void mvpp2_cls_init(struct mvpp2 *priv)
2477{
2478 struct mvpp2_cls_lookup_entry le;
2479 struct mvpp2_cls_flow_entry fe;
2480 int index;
2481
2482 /* Enable classifier */
2483 mvpp2_write(priv, MVPP2_CLS_MODE_REG, MVPP2_CLS_MODE_ACTIVE_MASK);
2484
2485 /* Clear classifier flow table */
2486 memset(&fe.data, 0, MVPP2_CLS_FLOWS_TBL_DATA_WORDS);
2487 for (index = 0; index < MVPP2_CLS_FLOWS_TBL_SIZE; index++) {
2488 fe.index = index;
2489 mvpp2_cls_flow_write(priv, &fe);
2490 }
2491
2492 /* Clear classifier lookup table */
2493 le.data = 0;
2494 for (index = 0; index < MVPP2_CLS_LKP_TBL_SIZE; index++) {
2495 le.lkpid = index;
2496 le.way = 0;
2497 mvpp2_cls_lookup_write(priv, &le);
2498
2499 le.way = 1;
2500 mvpp2_cls_lookup_write(priv, &le);
2501 }
2502}
2503
2504static void mvpp2_cls_port_config(struct mvpp2_port *port)
2505{
2506 struct mvpp2_cls_lookup_entry le;
2507 u32 val;
2508
2509 /* Set way for the port */
2510 val = mvpp2_read(port->priv, MVPP2_CLS_PORT_WAY_REG);
2511 val &= ~MVPP2_CLS_PORT_WAY_MASK(port->id);
2512 mvpp2_write(port->priv, MVPP2_CLS_PORT_WAY_REG, val);
2513
2514 /* Pick the entry to be accessed in lookup ID decoding table
2515 * according to the way and lkpid.
2516 */
2517 le.lkpid = port->id;
2518 le.way = 0;
2519 le.data = 0;
2520
2521 /* Set initial CPU queue for receiving packets */
2522 le.data &= ~MVPP2_CLS_LKP_TBL_RXQ_MASK;
2523 le.data |= port->first_rxq;
2524
2525 /* Disable classification engines */
2526 le.data &= ~MVPP2_CLS_LKP_TBL_LOOKUP_EN_MASK;
2527
2528 /* Update lookup ID table entry */
2529 mvpp2_cls_lookup_write(port->priv, &le);
2530}
2531
2532/* Set CPU queue number for oversize packets */
2533static void mvpp2_cls_oversize_rxq_set(struct mvpp2_port *port)
2534{
2535 u32 val;
2536
2537 mvpp2_write(port->priv, MVPP2_CLS_OVERSIZE_RXQ_LOW_REG(port->id),
2538 port->first_rxq & MVPP2_CLS_OVERSIZE_RXQ_LOW_MASK);
2539
2540 mvpp2_write(port->priv, MVPP2_CLS_SWFWD_P2HQ_REG(port->id),
2541 (port->first_rxq >> MVPP2_CLS_OVERSIZE_RXQ_LOW_BITS));
2542
2543 val = mvpp2_read(port->priv, MVPP2_CLS_SWFWD_PCTRL_REG);
2544 val |= MVPP2_CLS_SWFWD_PCTRL_MASK(port->id);
2545 mvpp2_write(port->priv, MVPP2_CLS_SWFWD_PCTRL_REG, val);
2546}
2547
2548/* Buffer Manager configuration routines */
2549
2550/* Create pool */
2551static int mvpp2_bm_pool_create(struct udevice *dev,
2552 struct mvpp2 *priv,
2553 struct mvpp2_bm_pool *bm_pool, int size)
2554{
2555 u32 val;
2556
Thomas Petazzonic8feeb22017-02-20 11:29:16 +01002557 /* Number of buffer pointers must be a multiple of 16, as per
2558 * hardware constraints
2559 */
2560 if (!IS_ALIGNED(size, 16))
2561 return -EINVAL;
2562
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002563 bm_pool->virt_addr = buffer_loc.bm_pool[bm_pool->id];
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01002564 bm_pool->dma_addr = (dma_addr_t)buffer_loc.bm_pool[bm_pool->id];
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002565 if (!bm_pool->virt_addr)
2566 return -ENOMEM;
2567
Thomas Petazzonid1d075a2017-02-15 12:31:53 +01002568 if (!IS_ALIGNED((unsigned long)bm_pool->virt_addr,
2569 MVPP2_BM_POOL_PTR_ALIGN)) {
Sean Andersonddc48c12020-09-15 10:44:56 -04002570 dev_err(dev, "BM pool %d is not %d bytes aligned\n",
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002571 bm_pool->id, MVPP2_BM_POOL_PTR_ALIGN);
2572 return -ENOMEM;
2573 }
2574
2575 mvpp2_write(priv, MVPP2_BM_POOL_BASE_REG(bm_pool->id),
Thomas Petazzonic8feeb22017-02-20 11:29:16 +01002576 lower_32_bits(bm_pool->dma_addr));
Stefan Chulski783e7852017-08-09 10:37:50 +03002577 if (priv->hw_version == MVPP22)
2578 mvpp2_write(priv, MVPP22_BM_POOL_BASE_HIGH_REG,
2579 (upper_32_bits(bm_pool->dma_addr) &
2580 MVPP22_BM_POOL_BASE_HIGH_MASK));
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002581 mvpp2_write(priv, MVPP2_BM_POOL_SIZE_REG(bm_pool->id), size);
2582
2583 val = mvpp2_read(priv, MVPP2_BM_POOL_CTRL_REG(bm_pool->id));
2584 val |= MVPP2_BM_START_MASK;
2585 mvpp2_write(priv, MVPP2_BM_POOL_CTRL_REG(bm_pool->id), val);
2586
2587 bm_pool->type = MVPP2_BM_FREE;
2588 bm_pool->size = size;
2589 bm_pool->pkt_size = 0;
2590 bm_pool->buf_num = 0;
2591
2592 return 0;
2593}
2594
2595/* Set pool buffer size */
2596static void mvpp2_bm_pool_bufsize_set(struct mvpp2 *priv,
2597 struct mvpp2_bm_pool *bm_pool,
2598 int buf_size)
2599{
2600 u32 val;
2601
2602 bm_pool->buf_size = buf_size;
2603
2604 val = ALIGN(buf_size, 1 << MVPP2_POOL_BUF_SIZE_OFFSET);
2605 mvpp2_write(priv, MVPP2_POOL_BUF_SIZE_REG(bm_pool->id), val);
2606}
2607
2608/* Free all buffers from the pool */
2609static void mvpp2_bm_bufs_free(struct udevice *dev, struct mvpp2 *priv,
2610 struct mvpp2_bm_pool *bm_pool)
2611{
Stefan Roese2f720f12017-03-23 17:01:59 +01002612 int i;
2613
2614 for (i = 0; i < bm_pool->buf_num; i++) {
2615 /* Allocate buffer back from the buffer manager */
2616 mvpp2_read(priv, MVPP2_BM_PHY_ALLOC_REG(bm_pool->id));
2617 }
2618
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002619 bm_pool->buf_num = 0;
2620}
2621
2622/* Cleanup pool */
2623static int mvpp2_bm_pool_destroy(struct udevice *dev,
2624 struct mvpp2 *priv,
2625 struct mvpp2_bm_pool *bm_pool)
2626{
2627 u32 val;
2628
2629 mvpp2_bm_bufs_free(dev, priv, bm_pool);
2630 if (bm_pool->buf_num) {
2631 dev_err(dev, "cannot free all buffers in pool %d\n", bm_pool->id);
2632 return 0;
2633 }
2634
2635 val = mvpp2_read(priv, MVPP2_BM_POOL_CTRL_REG(bm_pool->id));
2636 val |= MVPP2_BM_STOP_MASK;
2637 mvpp2_write(priv, MVPP2_BM_POOL_CTRL_REG(bm_pool->id), val);
2638
2639 return 0;
2640}
2641
2642static int mvpp2_bm_pools_init(struct udevice *dev,
2643 struct mvpp2 *priv)
2644{
2645 int i, err, size;
2646 struct mvpp2_bm_pool *bm_pool;
2647
2648 /* Create all pools with maximum size */
2649 size = MVPP2_BM_POOL_SIZE_MAX;
2650 for (i = 0; i < MVPP2_BM_POOLS_NUM; i++) {
2651 bm_pool = &priv->bm_pools[i];
2652 bm_pool->id = i;
2653 err = mvpp2_bm_pool_create(dev, priv, bm_pool, size);
2654 if (err)
2655 goto err_unroll_pools;
Stefan Chulskiceec6c42017-08-09 10:37:52 +03002656 mvpp2_bm_pool_bufsize_set(priv, bm_pool, RX_BUFFER_SIZE);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002657 }
2658 return 0;
2659
2660err_unroll_pools:
Sean Andersonddc48c12020-09-15 10:44:56 -04002661 dev_err(dev, "failed to create BM pool %d, size %d\n", i, size);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002662 for (i = i - 1; i >= 0; i--)
2663 mvpp2_bm_pool_destroy(dev, priv, &priv->bm_pools[i]);
2664 return err;
2665}
2666
2667static int mvpp2_bm_init(struct udevice *dev, struct mvpp2 *priv)
2668{
2669 int i, err;
2670
2671 for (i = 0; i < MVPP2_BM_POOLS_NUM; i++) {
2672 /* Mask BM all interrupts */
2673 mvpp2_write(priv, MVPP2_BM_INTR_MASK_REG(i), 0);
2674 /* Clear BM cause register */
2675 mvpp2_write(priv, MVPP2_BM_INTR_CAUSE_REG(i), 0);
2676 }
2677
2678 /* Allocate and initialize BM pools */
2679 priv->bm_pools = devm_kcalloc(dev, MVPP2_BM_POOLS_NUM,
2680 sizeof(struct mvpp2_bm_pool), GFP_KERNEL);
2681 if (!priv->bm_pools)
2682 return -ENOMEM;
2683
2684 err = mvpp2_bm_pools_init(dev, priv);
2685 if (err < 0)
2686 return err;
2687 return 0;
2688}
2689
2690/* Attach long pool to rxq */
2691static void mvpp2_rxq_long_pool_set(struct mvpp2_port *port,
2692 int lrxq, int long_pool)
2693{
Thomas Petazzoni8f3e4c32017-02-16 06:53:51 +01002694 u32 val, mask;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002695 int prxq;
2696
2697 /* Get queue physical ID */
2698 prxq = port->rxqs[lrxq]->id;
2699
Thomas Petazzoni8f3e4c32017-02-16 06:53:51 +01002700 if (port->priv->hw_version == MVPP21)
2701 mask = MVPP21_RXQ_POOL_LONG_MASK;
2702 else
2703 mask = MVPP22_RXQ_POOL_LONG_MASK;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002704
Thomas Petazzoni8f3e4c32017-02-16 06:53:51 +01002705 val = mvpp2_read(port->priv, MVPP2_RXQ_CONFIG_REG(prxq));
2706 val &= ~mask;
2707 val |= (long_pool << MVPP2_RXQ_POOL_LONG_OFFS) & mask;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002708 mvpp2_write(port->priv, MVPP2_RXQ_CONFIG_REG(prxq), val);
2709}
2710
2711/* Set pool number in a BM cookie */
2712static inline u32 mvpp2_bm_cookie_pool_set(u32 cookie, int pool)
2713{
2714 u32 bm;
2715
2716 bm = cookie & ~(0xFF << MVPP2_BM_COOKIE_POOL_OFFS);
2717 bm |= ((pool & 0xFF) << MVPP2_BM_COOKIE_POOL_OFFS);
2718
2719 return bm;
2720}
2721
2722/* Get pool number from a BM cookie */
Thomas Petazzonid1d075a2017-02-15 12:31:53 +01002723static inline int mvpp2_bm_cookie_pool_get(unsigned long cookie)
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002724{
2725 return (cookie >> MVPP2_BM_COOKIE_POOL_OFFS) & 0xFF;
2726}
2727
2728/* Release buffer to BM */
2729static inline void mvpp2_bm_pool_put(struct mvpp2_port *port, int pool,
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01002730 dma_addr_t buf_dma_addr,
Thomas Petazzonicd9ee192017-02-20 10:37:59 +01002731 unsigned long buf_phys_addr)
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002732{
Thomas Petazzonic8feeb22017-02-20 11:29:16 +01002733 if (port->priv->hw_version == MVPP22) {
2734 u32 val = 0;
2735
2736 if (sizeof(dma_addr_t) == 8)
2737 val |= upper_32_bits(buf_dma_addr) &
2738 MVPP22_BM_ADDR_HIGH_PHYS_RLS_MASK;
2739
2740 if (sizeof(phys_addr_t) == 8)
2741 val |= (upper_32_bits(buf_phys_addr)
2742 << MVPP22_BM_ADDR_HIGH_VIRT_RLS_SHIFT) &
2743 MVPP22_BM_ADDR_HIGH_VIRT_RLS_MASK;
2744
2745 mvpp2_write(port->priv, MVPP22_BM_ADDR_HIGH_RLS_REG, val);
2746 }
2747
Thomas Petazzonicd9ee192017-02-20 10:37:59 +01002748 /* MVPP2_BM_VIRT_RLS_REG is not interpreted by HW, and simply
2749 * returned in the "cookie" field of the RX
2750 * descriptor. Instead of storing the virtual address, we
2751 * store the physical address
2752 */
2753 mvpp2_write(port->priv, MVPP2_BM_VIRT_RLS_REG, buf_phys_addr);
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01002754 mvpp2_write(port->priv, MVPP2_BM_PHY_RLS_REG(pool), buf_dma_addr);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002755}
2756
2757/* Refill BM pool */
2758static void mvpp2_pool_refill(struct mvpp2_port *port, u32 bm,
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01002759 dma_addr_t dma_addr,
Thomas Petazzonicd9ee192017-02-20 10:37:59 +01002760 phys_addr_t phys_addr)
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002761{
2762 int pool = mvpp2_bm_cookie_pool_get(bm);
2763
Thomas Petazzonicd9ee192017-02-20 10:37:59 +01002764 mvpp2_bm_pool_put(port, pool, dma_addr, phys_addr);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002765}
2766
2767/* Allocate buffers for the pool */
2768static int mvpp2_bm_bufs_add(struct mvpp2_port *port,
2769 struct mvpp2_bm_pool *bm_pool, int buf_num)
2770{
2771 int i;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002772
2773 if (buf_num < 0 ||
2774 (buf_num + bm_pool->buf_num > bm_pool->size)) {
Sean Anderson9db60ee2020-09-15 10:44:57 -04002775 dev_err(port->phy_dev->dev,
2776 "cannot allocate %d buffers for pool %d\n", buf_num,
2777 bm_pool->id);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002778 return 0;
2779 }
2780
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002781 for (i = 0; i < buf_num; i++) {
Thomas Petazzonif1060f02017-02-15 12:13:43 +01002782 mvpp2_bm_pool_put(port, bm_pool->id,
Thomas Petazzonid1d075a2017-02-15 12:31:53 +01002783 (dma_addr_t)buffer_loc.rx_buffer[i],
2784 (unsigned long)buffer_loc.rx_buffer[i]);
Thomas Petazzonif1060f02017-02-15 12:13:43 +01002785
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002786 }
2787
2788 /* Update BM driver with number of buffers added to pool */
2789 bm_pool->buf_num += i;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002790
2791 return i;
2792}
2793
2794/* Notify the driver that BM pool is being used as specific type and return the
2795 * pool pointer on success
2796 */
2797static struct mvpp2_bm_pool *
2798mvpp2_bm_pool_use(struct mvpp2_port *port, int pool, enum mvpp2_bm_type type,
2799 int pkt_size)
2800{
2801 struct mvpp2_bm_pool *new_pool = &port->priv->bm_pools[pool];
2802 int num;
2803
2804 if (new_pool->type != MVPP2_BM_FREE && new_pool->type != type) {
Sean Anderson9db60ee2020-09-15 10:44:57 -04002805 dev_err(port->phy_dev->dev, "mixing pool types is forbidden\n");
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002806 return NULL;
2807 }
2808
2809 if (new_pool->type == MVPP2_BM_FREE)
2810 new_pool->type = type;
2811
2812 /* Allocate buffers in case BM pool is used as long pool, but packet
2813 * size doesn't match MTU or BM pool hasn't being used yet
2814 */
2815 if (((type == MVPP2_BM_SWF_LONG) && (pkt_size > new_pool->pkt_size)) ||
2816 (new_pool->pkt_size == 0)) {
2817 int pkts_num;
2818
2819 /* Set default buffer number or free all the buffers in case
2820 * the pool is not empty
2821 */
2822 pkts_num = new_pool->buf_num;
2823 if (pkts_num == 0)
2824 pkts_num = type == MVPP2_BM_SWF_LONG ?
2825 MVPP2_BM_LONG_BUF_NUM :
2826 MVPP2_BM_SHORT_BUF_NUM;
2827 else
2828 mvpp2_bm_bufs_free(NULL,
2829 port->priv, new_pool);
2830
2831 new_pool->pkt_size = pkt_size;
2832
2833 /* Allocate buffers for this pool */
2834 num = mvpp2_bm_bufs_add(port, new_pool, pkts_num);
2835 if (num != pkts_num) {
Sean Andersonddc48c12020-09-15 10:44:56 -04002836 dev_err(port->phy_dev->dev,
2837 "pool %d: %d of %d allocated\n", new_pool->id,
2838 num, pkts_num);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002839 return NULL;
2840 }
2841 }
2842
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002843 return new_pool;
2844}
2845
2846/* Initialize pools for swf */
2847static int mvpp2_swf_bm_pool_init(struct mvpp2_port *port)
2848{
2849 int rxq;
2850
2851 if (!port->pool_long) {
2852 port->pool_long =
2853 mvpp2_bm_pool_use(port, MVPP2_BM_SWF_LONG_POOL(port->id),
2854 MVPP2_BM_SWF_LONG,
2855 port->pkt_size);
2856 if (!port->pool_long)
2857 return -ENOMEM;
2858
2859 port->pool_long->port_map |= (1 << port->id);
2860
2861 for (rxq = 0; rxq < rxq_number; rxq++)
2862 mvpp2_rxq_long_pool_set(port, rxq, port->pool_long->id);
2863 }
2864
2865 return 0;
2866}
2867
2868/* Port configuration routines */
2869
2870static void mvpp2_port_mii_set(struct mvpp2_port *port)
2871{
2872 u32 val;
2873
2874 val = readl(port->base + MVPP2_GMAC_CTRL_2_REG);
2875
2876 switch (port->phy_interface) {
2877 case PHY_INTERFACE_MODE_SGMII:
2878 val |= MVPP2_GMAC_INBAND_AN_MASK;
2879 break;
Stefan Chulski8299abc2021-05-03 08:08:46 +02002880 case PHY_INTERFACE_MODE_1000BASEX:
2881 case PHY_INTERFACE_MODE_2500BASEX:
2882 val &= ~MVPP2_GMAC_INBAND_AN_MASK;
2883 break;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002884 case PHY_INTERFACE_MODE_RGMII:
Stefan Roese025e5922017-03-22 15:11:00 +01002885 case PHY_INTERFACE_MODE_RGMII_ID:
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002886 val |= MVPP2_GMAC_PORT_RGMII_MASK;
2887 default:
2888 val &= ~MVPP2_GMAC_PCS_ENABLE_MASK;
2889 }
2890
2891 writel(val, port->base + MVPP2_GMAC_CTRL_2_REG);
2892}
2893
2894static void mvpp2_port_fc_adv_enable(struct mvpp2_port *port)
2895{
2896 u32 val;
2897
2898 val = readl(port->base + MVPP2_GMAC_AUTONEG_CONFIG);
2899 val |= MVPP2_GMAC_FC_ADV_EN;
2900 writel(val, port->base + MVPP2_GMAC_AUTONEG_CONFIG);
2901}
2902
2903static void mvpp2_port_enable(struct mvpp2_port *port)
2904{
2905 u32 val;
2906
2907 val = readl(port->base + MVPP2_GMAC_CTRL_0_REG);
2908 val |= MVPP2_GMAC_PORT_EN_MASK;
2909 val |= MVPP2_GMAC_MIB_CNTR_EN_MASK;
2910 writel(val, port->base + MVPP2_GMAC_CTRL_0_REG);
2911}
2912
2913static void mvpp2_port_disable(struct mvpp2_port *port)
2914{
2915 u32 val;
2916
2917 val = readl(port->base + MVPP2_GMAC_CTRL_0_REG);
2918 val &= ~(MVPP2_GMAC_PORT_EN_MASK);
2919 writel(val, port->base + MVPP2_GMAC_CTRL_0_REG);
2920}
2921
2922/* Set IEEE 802.3x Flow Control Xon Packet Transmission Mode */
2923static void mvpp2_port_periodic_xon_disable(struct mvpp2_port *port)
2924{
2925 u32 val;
2926
2927 val = readl(port->base + MVPP2_GMAC_CTRL_1_REG) &
2928 ~MVPP2_GMAC_PERIODIC_XON_EN_MASK;
2929 writel(val, port->base + MVPP2_GMAC_CTRL_1_REG);
2930}
2931
2932/* Configure loopback port */
2933static void mvpp2_port_loopback_set(struct mvpp2_port *port)
2934{
2935 u32 val;
2936
2937 val = readl(port->base + MVPP2_GMAC_CTRL_1_REG);
2938
2939 if (port->speed == 1000)
2940 val |= MVPP2_GMAC_GMII_LB_EN_MASK;
2941 else
2942 val &= ~MVPP2_GMAC_GMII_LB_EN_MASK;
2943
Stefan Chulski8299abc2021-05-03 08:08:46 +02002944 if (port->phy_interface == PHY_INTERFACE_MODE_SGMII ||
2945 port->phy_interface == PHY_INTERFACE_MODE_1000BASEX ||
2946 port->phy_interface == PHY_INTERFACE_MODE_2500BASEX)
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002947 val |= MVPP2_GMAC_PCS_LB_EN_MASK;
2948 else
2949 val &= ~MVPP2_GMAC_PCS_LB_EN_MASK;
2950
2951 writel(val, port->base + MVPP2_GMAC_CTRL_1_REG);
2952}
2953
2954static void mvpp2_port_reset(struct mvpp2_port *port)
2955{
2956 u32 val;
2957
2958 val = readl(port->base + MVPP2_GMAC_CTRL_2_REG) &
2959 ~MVPP2_GMAC_PORT_RESET_MASK;
2960 writel(val, port->base + MVPP2_GMAC_CTRL_2_REG);
2961
2962 while (readl(port->base + MVPP2_GMAC_CTRL_2_REG) &
2963 MVPP2_GMAC_PORT_RESET_MASK)
2964 continue;
2965}
2966
2967/* Change maximum receive size of the port */
2968static inline void mvpp2_gmac_max_rx_size_set(struct mvpp2_port *port)
2969{
2970 u32 val;
2971
2972 val = readl(port->base + MVPP2_GMAC_CTRL_0_REG);
2973 val &= ~MVPP2_GMAC_MAX_RX_SIZE_MASK;
2974 val |= (((port->pkt_size - MVPP2_MH_SIZE) / 2) <<
2975 MVPP2_GMAC_MAX_RX_SIZE_OFFS);
2976 writel(val, port->base + MVPP2_GMAC_CTRL_0_REG);
2977}
2978
Stefan Roese31aa1e32017-03-22 15:07:30 +01002979/* PPv2.2 GoP/GMAC config */
2980
2981/* Set the MAC to reset or exit from reset */
2982static int gop_gmac_reset(struct mvpp2_port *port, int reset)
2983{
2984 u32 val;
2985
2986 /* read - modify - write */
2987 val = readl(port->base + MVPP2_GMAC_CTRL_2_REG);
2988 if (reset)
2989 val |= MVPP2_GMAC_PORT_RESET_MASK;
2990 else
2991 val &= ~MVPP2_GMAC_PORT_RESET_MASK;
2992 writel(val, port->base + MVPP2_GMAC_CTRL_2_REG);
2993
2994 return 0;
2995}
2996
2997/*
2998 * gop_gpcs_mode_cfg
2999 *
3000 * Configure port to working with Gig PCS or don't.
3001 */
3002static int gop_gpcs_mode_cfg(struct mvpp2_port *port, int en)
3003{
3004 u32 val;
3005
3006 val = readl(port->base + MVPP2_GMAC_CTRL_2_REG);
3007 if (en)
3008 val |= MVPP2_GMAC_PCS_ENABLE_MASK;
3009 else
3010 val &= ~MVPP2_GMAC_PCS_ENABLE_MASK;
3011 /* enable / disable PCS on this port */
3012 writel(val, port->base + MVPP2_GMAC_CTRL_2_REG);
3013
3014 return 0;
3015}
3016
3017static int gop_bypass_clk_cfg(struct mvpp2_port *port, int en)
3018{
3019 u32 val;
3020
3021 val = readl(port->base + MVPP2_GMAC_CTRL_2_REG);
3022 if (en)
3023 val |= MVPP2_GMAC_CLK_125_BYPS_EN_MASK;
3024 else
3025 val &= ~MVPP2_GMAC_CLK_125_BYPS_EN_MASK;
3026 /* enable / disable PCS on this port */
3027 writel(val, port->base + MVPP2_GMAC_CTRL_2_REG);
3028
3029 return 0;
3030}
3031
3032static void gop_gmac_sgmii2_5_cfg(struct mvpp2_port *port)
3033{
3034 u32 val, thresh;
3035
3036 /*
3037 * Configure minimal level of the Tx FIFO before the lower part
3038 * starts to read a packet
3039 */
3040 thresh = MVPP2_SGMII2_5_TX_FIFO_MIN_TH;
3041 val = readl(port->base + MVPP2_GMAC_PORT_FIFO_CFG_1_REG);
3042 val &= ~MVPP2_GMAC_TX_FIFO_MIN_TH_ALL_MASK;
3043 val |= MVPP2_GMAC_TX_FIFO_MIN_TH_MASK(thresh);
3044 writel(val, port->base + MVPP2_GMAC_PORT_FIFO_CFG_1_REG);
3045
3046 /* Disable bypass of sync module */
3047 val = readl(port->base + MVPP2_GMAC_CTRL_4_REG);
3048 val |= MVPP2_GMAC_CTRL4_SYNC_BYPASS_MASK;
3049 /* configure DP clock select according to mode */
3050 val |= MVPP2_GMAC_CTRL4_DP_CLK_SEL_MASK;
3051 /* configure QSGMII bypass according to mode */
3052 val |= MVPP2_GMAC_CTRL4_QSGMII_BYPASS_ACTIVE_MASK;
3053 writel(val, port->base + MVPP2_GMAC_CTRL_4_REG);
3054
Stefan Roese31aa1e32017-03-22 15:07:30 +01003055 val = readl(port->base + MVPP2_GMAC_CTRL_0_REG);
3056 /*
Stefan Chulski8299abc2021-05-03 08:08:46 +02003057 * Configure GIG MAC to SGMII mode connected to a fiber
Stefan Roese31aa1e32017-03-22 15:07:30 +01003058 * transceiver
3059 */
Stefan Chulski8299abc2021-05-03 08:08:46 +02003060 val &= ~MVPP2_GMAC_PORT_TYPE_MASK;
Stefan Roese31aa1e32017-03-22 15:07:30 +01003061 writel(val, port->base + MVPP2_GMAC_CTRL_0_REG);
3062
3063 /* configure AN 0x9268 */
3064 val = MVPP2_GMAC_EN_PCS_AN |
3065 MVPP2_GMAC_AN_BYPASS_EN |
3066 MVPP2_GMAC_CONFIG_MII_SPEED |
3067 MVPP2_GMAC_CONFIG_GMII_SPEED |
3068 MVPP2_GMAC_FC_ADV_EN |
3069 MVPP2_GMAC_CONFIG_FULL_DUPLEX |
3070 MVPP2_GMAC_CHOOSE_SAMPLE_TX_CONFIG;
3071 writel(val, port->base + MVPP2_GMAC_AUTONEG_CONFIG);
3072}
3073
3074static void gop_gmac_sgmii_cfg(struct mvpp2_port *port)
3075{
3076 u32 val, thresh;
3077
3078 /*
3079 * Configure minimal level of the Tx FIFO before the lower part
3080 * starts to read a packet
3081 */
3082 thresh = MVPP2_SGMII_TX_FIFO_MIN_TH;
3083 val = readl(port->base + MVPP2_GMAC_PORT_FIFO_CFG_1_REG);
3084 val &= ~MVPP2_GMAC_TX_FIFO_MIN_TH_ALL_MASK;
3085 val |= MVPP2_GMAC_TX_FIFO_MIN_TH_MASK(thresh);
3086 writel(val, port->base + MVPP2_GMAC_PORT_FIFO_CFG_1_REG);
3087
3088 /* Disable bypass of sync module */
3089 val = readl(port->base + MVPP2_GMAC_CTRL_4_REG);
3090 val |= MVPP2_GMAC_CTRL4_SYNC_BYPASS_MASK;
3091 /* configure DP clock select according to mode */
3092 val &= ~MVPP2_GMAC_CTRL4_DP_CLK_SEL_MASK;
3093 /* configure QSGMII bypass according to mode */
3094 val |= MVPP2_GMAC_CTRL4_QSGMII_BYPASS_ACTIVE_MASK;
3095 writel(val, port->base + MVPP2_GMAC_CTRL_4_REG);
3096
Stefan Roese31aa1e32017-03-22 15:07:30 +01003097 val = readl(port->base + MVPP2_GMAC_CTRL_0_REG);
3098 /* configure GIG MAC to SGMII mode */
3099 val &= ~MVPP2_GMAC_PORT_TYPE_MASK;
3100 writel(val, port->base + MVPP2_GMAC_CTRL_0_REG);
3101
3102 /* configure AN */
3103 val = MVPP2_GMAC_EN_PCS_AN |
3104 MVPP2_GMAC_AN_BYPASS_EN |
3105 MVPP2_GMAC_AN_SPEED_EN |
3106 MVPP2_GMAC_EN_FC_AN |
3107 MVPP2_GMAC_AN_DUPLEX_EN |
3108 MVPP2_GMAC_CHOOSE_SAMPLE_TX_CONFIG;
3109 writel(val, port->base + MVPP2_GMAC_AUTONEG_CONFIG);
3110}
3111
Stefan Chulski8299abc2021-05-03 08:08:46 +02003112static void gop_gmac_2500basex_cfg(struct mvpp2_port *port)
3113{
3114 u32 val, thresh;
3115
3116 /*
3117 * Configure minimal level of the Tx FIFO before the lower part
3118 * starts to read a packet
3119 */
3120 thresh = MVPP2_SGMII2_5_TX_FIFO_MIN_TH;
3121 val = readl(port->base + MVPP2_GMAC_PORT_FIFO_CFG_1_REG);
3122 val &= ~MVPP2_GMAC_TX_FIFO_MIN_TH_ALL_MASK;
3123 val |= MVPP2_GMAC_TX_FIFO_MIN_TH_MASK(thresh);
3124 writel(val, port->base + MVPP2_GMAC_PORT_FIFO_CFG_1_REG);
3125
3126 /* Disable bypass of sync module */
3127 val = readl(port->base + MVPP2_GMAC_CTRL_4_REG);
3128 val |= MVPP2_GMAC_CTRL4_SYNC_BYPASS_MASK;
3129 /* configure DP clock select according to mode */
3130 val |= MVPP2_GMAC_CTRL4_DP_CLK_SEL_MASK;
3131 /* configure QSGMII bypass according to mode */
3132 val |= MVPP2_GMAC_CTRL4_QSGMII_BYPASS_ACTIVE_MASK;
3133 writel(val, port->base + MVPP2_GMAC_CTRL_4_REG);
3134
3135 val = readl(port->base + MVPP2_GMAC_CTRL_0_REG);
3136 /*
3137 * Configure GIG MAC to 2500Base-X mode connected to a fiber
3138 * transceiver
3139 */
3140 val |= MVPP2_GMAC_PORT_TYPE_MASK;
3141 writel(val, port->base + MVPP2_GMAC_CTRL_0_REG);
3142
3143 /* In 2500BaseX mode, we can't negotiate speed
3144 * and we do not want InBand autoneg
3145 * bypass enabled (link interrupt storm risk
3146 * otherwise).
3147 */
Ben Peled7589be82021-05-03 08:08:49 +02003148 val = MVPP2_GMAC_AN_BYPASS_EN |
3149 MVPP2_GMAC_EN_PCS_AN |
Stefan Chulski8299abc2021-05-03 08:08:46 +02003150 MVPP2_GMAC_CONFIG_GMII_SPEED |
3151 MVPP2_GMAC_CONFIG_FULL_DUPLEX |
3152 MVPP2_GMAC_CHOOSE_SAMPLE_TX_CONFIG;
3153 writel(val, port->base + MVPP2_GMAC_AUTONEG_CONFIG);
3154}
3155
3156static void gop_gmac_1000basex_cfg(struct mvpp2_port *port)
3157{
3158 u32 val, thresh;
3159
3160 /*
3161 * Configure minimal level of the Tx FIFO before the lower part
3162 * starts to read a packet
3163 */
3164 thresh = MVPP2_SGMII_TX_FIFO_MIN_TH;
3165 val = readl(port->base + MVPP2_GMAC_PORT_FIFO_CFG_1_REG);
3166 val &= ~MVPP2_GMAC_TX_FIFO_MIN_TH_ALL_MASK;
3167 val |= MVPP2_GMAC_TX_FIFO_MIN_TH_MASK(thresh);
3168 writel(val, port->base + MVPP2_GMAC_PORT_FIFO_CFG_1_REG);
3169
3170 /* Disable bypass of sync module */
3171 val = readl(port->base + MVPP2_GMAC_CTRL_4_REG);
3172 val |= MVPP2_GMAC_CTRL4_SYNC_BYPASS_MASK;
3173 /* configure DP clock select according to mode */
3174 val &= ~MVPP2_GMAC_CTRL4_DP_CLK_SEL_MASK;
3175 /* configure QSGMII bypass according to mode */
3176 val |= MVPP2_GMAC_CTRL4_QSGMII_BYPASS_ACTIVE_MASK;
3177 writel(val, port->base + MVPP2_GMAC_CTRL_4_REG);
3178
3179 val = readl(port->base + MVPP2_GMAC_CTRL_0_REG);
3180 /* configure GIG MAC to 1000BASEX mode */
3181 val |= MVPP2_GMAC_PORT_TYPE_MASK;
3182 writel(val, port->base + MVPP2_GMAC_CTRL_0_REG);
3183
3184 /* In 1000BaseX mode, we can't negotiate speed (it's
3185 * only 1000), and we do not want InBand autoneg
3186 * bypass enabled (link interrupt storm risk
3187 * otherwise).
3188 */
Ben Peled7589be82021-05-03 08:08:49 +02003189 val = MVPP2_GMAC_AN_BYPASS_EN |
3190 MVPP2_GMAC_EN_PCS_AN |
Stefan Chulski8299abc2021-05-03 08:08:46 +02003191 MVPP2_GMAC_CONFIG_GMII_SPEED |
3192 MVPP2_GMAC_CONFIG_FULL_DUPLEX |
3193 MVPP2_GMAC_CHOOSE_SAMPLE_TX_CONFIG;
3194 writel(val, port->base + MVPP2_GMAC_AUTONEG_CONFIG);
3195}
3196
Stefan Roese31aa1e32017-03-22 15:07:30 +01003197static void gop_gmac_rgmii_cfg(struct mvpp2_port *port)
3198{
3199 u32 val, thresh;
3200
3201 /*
3202 * Configure minimal level of the Tx FIFO before the lower part
3203 * starts to read a packet
3204 */
3205 thresh = MVPP2_RGMII_TX_FIFO_MIN_TH;
3206 val = readl(port->base + MVPP2_GMAC_PORT_FIFO_CFG_1_REG);
3207 val &= ~MVPP2_GMAC_TX_FIFO_MIN_TH_ALL_MASK;
3208 val |= MVPP2_GMAC_TX_FIFO_MIN_TH_MASK(thresh);
3209 writel(val, port->base + MVPP2_GMAC_PORT_FIFO_CFG_1_REG);
3210
3211 /* Disable bypass of sync module */
3212 val = readl(port->base + MVPP2_GMAC_CTRL_4_REG);
3213 val |= MVPP2_GMAC_CTRL4_SYNC_BYPASS_MASK;
3214 /* configure DP clock select according to mode */
3215 val &= ~MVPP2_GMAC_CTRL4_DP_CLK_SEL_MASK;
3216 val |= MVPP2_GMAC_CTRL4_QSGMII_BYPASS_ACTIVE_MASK;
3217 val |= MVPP2_GMAC_CTRL4_EXT_PIN_GMII_SEL_MASK;
3218 writel(val, port->base + MVPP2_GMAC_CTRL_4_REG);
3219
Stefan Roese31aa1e32017-03-22 15:07:30 +01003220 val = readl(port->base + MVPP2_GMAC_CTRL_0_REG);
3221 /* configure GIG MAC to SGMII mode */
3222 val &= ~MVPP2_GMAC_PORT_TYPE_MASK;
3223 writel(val, port->base + MVPP2_GMAC_CTRL_0_REG);
3224
3225 /* configure AN 0xb8e8 */
3226 val = MVPP2_GMAC_AN_BYPASS_EN |
3227 MVPP2_GMAC_AN_SPEED_EN |
3228 MVPP2_GMAC_EN_FC_AN |
3229 MVPP2_GMAC_AN_DUPLEX_EN |
3230 MVPP2_GMAC_CHOOSE_SAMPLE_TX_CONFIG;
3231 writel(val, port->base + MVPP2_GMAC_AUTONEG_CONFIG);
3232}
3233
3234/* Set the internal mux's to the required MAC in the GOP */
3235static int gop_gmac_mode_cfg(struct mvpp2_port *port)
3236{
3237 u32 val;
3238
3239 /* Set TX FIFO thresholds */
3240 switch (port->phy_interface) {
3241 case PHY_INTERFACE_MODE_SGMII:
3242 if (port->phy_speed == 2500)
3243 gop_gmac_sgmii2_5_cfg(port);
3244 else
3245 gop_gmac_sgmii_cfg(port);
3246 break;
3247
Stefan Chulski8299abc2021-05-03 08:08:46 +02003248 case PHY_INTERFACE_MODE_1000BASEX:
3249 gop_gmac_1000basex_cfg(port);
Ben Peledd757c852021-05-03 08:08:51 +02003250 break;
Stefan Chulski8299abc2021-05-03 08:08:46 +02003251
3252 case PHY_INTERFACE_MODE_2500BASEX:
3253 gop_gmac_2500basex_cfg(port);
Ben Peledd757c852021-05-03 08:08:51 +02003254 break;
Stefan Chulski8299abc2021-05-03 08:08:46 +02003255
Stefan Roese31aa1e32017-03-22 15:07:30 +01003256 case PHY_INTERFACE_MODE_RGMII:
3257 case PHY_INTERFACE_MODE_RGMII_ID:
3258 gop_gmac_rgmii_cfg(port);
3259 break;
3260
3261 default:
3262 return -1;
3263 }
3264
3265 /* Jumbo frame support - 0x1400*2= 0x2800 bytes */
3266 val = readl(port->base + MVPP2_GMAC_CTRL_0_REG);
3267 val &= ~MVPP2_GMAC_MAX_RX_SIZE_MASK;
3268 val |= 0x1400 << MVPP2_GMAC_MAX_RX_SIZE_OFFS;
3269 writel(val, port->base + MVPP2_GMAC_CTRL_0_REG);
3270
3271 /* PeriodicXonEn disable */
3272 val = readl(port->base + MVPP2_GMAC_CTRL_1_REG);
3273 val &= ~MVPP2_GMAC_PERIODIC_XON_EN_MASK;
3274 writel(val, port->base + MVPP2_GMAC_CTRL_1_REG);
3275
3276 return 0;
3277}
3278
3279static void gop_xlg_2_gig_mac_cfg(struct mvpp2_port *port)
3280{
3281 u32 val;
3282
3283 /* relevant only for MAC0 (XLG0 and GMAC0) */
3284 if (port->gop_id > 0)
3285 return;
3286
3287 /* configure 1Gig MAC mode */
3288 val = readl(port->base + MVPP22_XLG_CTRL3_REG);
3289 val &= ~MVPP22_XLG_CTRL3_MACMODESELECT_MASK;
3290 val |= MVPP22_XLG_CTRL3_MACMODESELECT_GMAC;
3291 writel(val, port->base + MVPP22_XLG_CTRL3_REG);
3292}
3293
3294static int gop_gpcs_reset(struct mvpp2_port *port, int reset)
3295{
3296 u32 val;
3297
3298 val = readl(port->base + MVPP2_GMAC_CTRL_2_REG);
3299 if (reset)
3300 val &= ~MVPP2_GMAC_SGMII_MODE_MASK;
3301 else
3302 val |= MVPP2_GMAC_SGMII_MODE_MASK;
3303 writel(val, port->base + MVPP2_GMAC_CTRL_2_REG);
3304
3305 return 0;
3306}
3307
Stefan Roese2fe23042017-03-22 15:09:38 +01003308static int gop_mpcs_mode(struct mvpp2_port *port)
3309{
3310 u32 val;
3311
3312 /* configure PCS40G COMMON CONTROL */
Stefan Chulski8d3aa372021-05-03 08:08:45 +02003313 val = readl(port->priv->mpcs_base + port->gop_id * MVPP22_PORT_OFFSET +
3314 PCS40G_COMMON_CONTROL);
Stefan Roese2fe23042017-03-22 15:09:38 +01003315 val &= ~FORWARD_ERROR_CORRECTION_MASK;
Stefan Chulski8d3aa372021-05-03 08:08:45 +02003316 writel(val, port->priv->mpcs_base + port->gop_id * MVPP22_PORT_OFFSET +
3317 PCS40G_COMMON_CONTROL);
Stefan Roese2fe23042017-03-22 15:09:38 +01003318
3319 /* configure PCS CLOCK RESET */
Stefan Chulski8d3aa372021-05-03 08:08:45 +02003320 val = readl(port->priv->mpcs_base + port->gop_id * MVPP22_PORT_OFFSET +
3321 PCS_CLOCK_RESET);
Stefan Roese2fe23042017-03-22 15:09:38 +01003322 val &= ~CLK_DIVISION_RATIO_MASK;
3323 val |= 1 << CLK_DIVISION_RATIO_OFFS;
Stefan Chulski8d3aa372021-05-03 08:08:45 +02003324 writel(val, port->priv->mpcs_base + port->gop_id * MVPP22_PORT_OFFSET +
3325 PCS_CLOCK_RESET);
Stefan Roese2fe23042017-03-22 15:09:38 +01003326
3327 val &= ~CLK_DIV_PHASE_SET_MASK;
3328 val |= MAC_CLK_RESET_MASK;
3329 val |= RX_SD_CLK_RESET_MASK;
3330 val |= TX_SD_CLK_RESET_MASK;
Stefan Chulski8d3aa372021-05-03 08:08:45 +02003331 writel(val, port->priv->mpcs_base + port->gop_id * MVPP22_PORT_OFFSET +
3332 PCS_CLOCK_RESET);
Stefan Roese2fe23042017-03-22 15:09:38 +01003333
3334 return 0;
3335}
3336
3337/* Set the internal mux's to the required MAC in the GOP */
3338static int gop_xlg_mac_mode_cfg(struct mvpp2_port *port, int num_of_act_lanes)
3339{
3340 u32 val;
3341
3342 /* configure 10G MAC mode */
3343 val = readl(port->base + MVPP22_XLG_CTRL0_REG);
3344 val |= MVPP22_XLG_RX_FC_EN;
3345 writel(val, port->base + MVPP22_XLG_CTRL0_REG);
3346
3347 val = readl(port->base + MVPP22_XLG_CTRL3_REG);
3348 val &= ~MVPP22_XLG_CTRL3_MACMODESELECT_MASK;
3349 val |= MVPP22_XLG_CTRL3_MACMODESELECT_10GMAC;
3350 writel(val, port->base + MVPP22_XLG_CTRL3_REG);
3351
3352 /* read - modify - write */
3353 val = readl(port->base + MVPP22_XLG_CTRL4_REG);
3354 val &= ~MVPP22_XLG_MODE_DMA_1G;
3355 val |= MVPP22_XLG_FORWARD_PFC_EN;
3356 val |= MVPP22_XLG_FORWARD_802_3X_FC_EN;
3357 val &= ~MVPP22_XLG_EN_IDLE_CHECK_FOR_LINK;
3358 writel(val, port->base + MVPP22_XLG_CTRL4_REG);
3359
3360 /* Jumbo frame support: 0x1400 * 2 = 0x2800 bytes */
3361 val = readl(port->base + MVPP22_XLG_CTRL1_REG);
3362 val &= ~MVPP22_XLG_MAX_RX_SIZE_MASK;
3363 val |= 0x1400 << MVPP22_XLG_MAX_RX_SIZE_OFFS;
3364 writel(val, port->base + MVPP22_XLG_CTRL1_REG);
3365
3366 /* unmask link change interrupt */
3367 val = readl(port->base + MVPP22_XLG_INTERRUPT_MASK_REG);
3368 val |= MVPP22_XLG_INTERRUPT_LINK_CHANGE;
3369 val |= 1; /* unmask summary bit */
3370 writel(val, port->base + MVPP22_XLG_INTERRUPT_MASK_REG);
3371
3372 return 0;
3373}
3374
Stefan Roese2fe23042017-03-22 15:09:38 +01003375/* Set the MAC to reset or exit from reset */
3376static int gop_xlg_mac_reset(struct mvpp2_port *port, int reset)
3377{
3378 u32 val;
3379
3380 /* read - modify - write */
3381 val = readl(port->base + MVPP22_XLG_CTRL0_REG);
3382 if (reset)
3383 val &= ~MVPP22_XLG_MAC_RESETN;
3384 else
3385 val |= MVPP22_XLG_MAC_RESETN;
3386 writel(val, port->base + MVPP22_XLG_CTRL0_REG);
3387
3388 return 0;
3389}
3390
Stefan Roese31aa1e32017-03-22 15:07:30 +01003391/*
3392 * gop_port_init
3393 *
3394 * Init physical port. Configures the port mode and all it's elements
3395 * accordingly.
3396 * Does not verify that the selected mode/port number is valid at the
3397 * core level.
3398 */
3399static int gop_port_init(struct mvpp2_port *port)
3400{
3401 int mac_num = port->gop_id;
Stefan Roese2fe23042017-03-22 15:09:38 +01003402 int num_of_act_lanes;
Stefan Roese31aa1e32017-03-22 15:07:30 +01003403
3404 if (mac_num >= MVPP22_GOP_MAC_NUM) {
Sean Anderson9db60ee2020-09-15 10:44:57 -04003405 log_err("illegal port number %d", mac_num);
Stefan Roese31aa1e32017-03-22 15:07:30 +01003406 return -1;
3407 }
3408
3409 switch (port->phy_interface) {
3410 case PHY_INTERFACE_MODE_RGMII:
3411 case PHY_INTERFACE_MODE_RGMII_ID:
3412 gop_gmac_reset(port, 1);
3413
3414 /* configure PCS */
3415 gop_gpcs_mode_cfg(port, 0);
3416 gop_bypass_clk_cfg(port, 1);
3417
3418 /* configure MAC */
3419 gop_gmac_mode_cfg(port);
3420 /* pcs unreset */
3421 gop_gpcs_reset(port, 0);
3422
3423 /* mac unreset */
3424 gop_gmac_reset(port, 0);
3425 break;
3426
3427 case PHY_INTERFACE_MODE_SGMII:
Stefan Chulski8299abc2021-05-03 08:08:46 +02003428 case PHY_INTERFACE_MODE_1000BASEX:
3429 case PHY_INTERFACE_MODE_2500BASEX:
Stefan Roese31aa1e32017-03-22 15:07:30 +01003430 /* configure PCS */
3431 gop_gpcs_mode_cfg(port, 1);
3432
3433 /* configure MAC */
3434 gop_gmac_mode_cfg(port);
3435 /* select proper Mac mode */
3436 gop_xlg_2_gig_mac_cfg(port);
3437
3438 /* pcs unreset */
3439 gop_gpcs_reset(port, 0);
3440 /* mac unreset */
3441 gop_gmac_reset(port, 0);
3442 break;
3443
Stefan Roese2fe23042017-03-22 15:09:38 +01003444 case PHY_INTERFACE_MODE_SFI:
3445 num_of_act_lanes = 2;
3446 mac_num = 0;
3447 /* configure PCS */
Stefan Roese2fe23042017-03-22 15:09:38 +01003448 gop_mpcs_mode(port);
3449 /* configure MAC */
3450 gop_xlg_mac_mode_cfg(port, num_of_act_lanes);
3451
Stefan Roese2fe23042017-03-22 15:09:38 +01003452 /* mac unreset */
3453 gop_xlg_mac_reset(port, 0);
3454 break;
3455
Stefan Roese31aa1e32017-03-22 15:07:30 +01003456 default:
Sean Anderson9db60ee2020-09-15 10:44:57 -04003457 log_err("Requested port mode (%d) not supported\n",
3458 port->phy_interface);
Stefan Roese31aa1e32017-03-22 15:07:30 +01003459 return -1;
3460 }
3461
3462 return 0;
3463}
3464
Stefan Roese2fe23042017-03-22 15:09:38 +01003465static void gop_xlg_mac_port_enable(struct mvpp2_port *port, int enable)
3466{
3467 u32 val;
3468
3469 val = readl(port->base + MVPP22_XLG_CTRL0_REG);
3470 if (enable) {
3471 /* Enable port and MIB counters update */
3472 val |= MVPP22_XLG_PORT_EN;
3473 val &= ~MVPP22_XLG_MIBCNT_DIS;
3474 } else {
3475 /* Disable port */
3476 val &= ~MVPP22_XLG_PORT_EN;
3477 }
3478 writel(val, port->base + MVPP22_XLG_CTRL0_REG);
3479}
3480
Stefan Roese31aa1e32017-03-22 15:07:30 +01003481static void gop_port_enable(struct mvpp2_port *port, int enable)
3482{
3483 switch (port->phy_interface) {
3484 case PHY_INTERFACE_MODE_RGMII:
3485 case PHY_INTERFACE_MODE_RGMII_ID:
3486 case PHY_INTERFACE_MODE_SGMII:
Stefan Chulski8299abc2021-05-03 08:08:46 +02003487 case PHY_INTERFACE_MODE_1000BASEX:
3488 case PHY_INTERFACE_MODE_2500BASEX:
Stefan Roese31aa1e32017-03-22 15:07:30 +01003489 if (enable)
3490 mvpp2_port_enable(port);
3491 else
3492 mvpp2_port_disable(port);
3493 break;
3494
Stefan Roese2fe23042017-03-22 15:09:38 +01003495 case PHY_INTERFACE_MODE_SFI:
3496 gop_xlg_mac_port_enable(port, enable);
3497
3498 break;
Stefan Roese31aa1e32017-03-22 15:07:30 +01003499 default:
Sean Anderson9db60ee2020-09-15 10:44:57 -04003500 log_err("%s: Wrong port mode (%d)\n", __func__,
3501 port->phy_interface);
Stefan Roese31aa1e32017-03-22 15:07:30 +01003502 return;
3503 }
3504}
3505
3506/* RFU1 functions */
3507static inline u32 gop_rfu1_read(struct mvpp2 *priv, u32 offset)
3508{
3509 return readl(priv->rfu1_base + offset);
3510}
3511
3512static inline void gop_rfu1_write(struct mvpp2 *priv, u32 offset, u32 data)
3513{
3514 writel(data, priv->rfu1_base + offset);
3515}
3516
3517static u32 mvpp2_netc_cfg_create(int gop_id, phy_interface_t phy_type)
3518{
3519 u32 val = 0;
3520
3521 if (gop_id == 2) {
Stefan Chulski8299abc2021-05-03 08:08:46 +02003522 if (phy_type == PHY_INTERFACE_MODE_SGMII ||
3523 phy_type == PHY_INTERFACE_MODE_1000BASEX ||
3524 phy_type == PHY_INTERFACE_MODE_2500BASEX)
Stefan Roese31aa1e32017-03-22 15:07:30 +01003525 val |= MV_NETC_GE_MAC2_SGMII;
Stefan Chulski8d3aa372021-05-03 08:08:45 +02003526 else if (phy_type == PHY_INTERFACE_MODE_RGMII ||
3527 phy_type == PHY_INTERFACE_MODE_RGMII_ID)
3528 val |= MV_NETC_GE_MAC2_RGMII;
Stefan Roese31aa1e32017-03-22 15:07:30 +01003529 }
3530
3531 if (gop_id == 3) {
Stefan Chulski8299abc2021-05-03 08:08:46 +02003532 if (phy_type == PHY_INTERFACE_MODE_SGMII ||
3533 phy_type == PHY_INTERFACE_MODE_1000BASEX ||
3534 phy_type == PHY_INTERFACE_MODE_2500BASEX)
Stefan Roese31aa1e32017-03-22 15:07:30 +01003535 val |= MV_NETC_GE_MAC3_SGMII;
3536 else if (phy_type == PHY_INTERFACE_MODE_RGMII ||
3537 phy_type == PHY_INTERFACE_MODE_RGMII_ID)
3538 val |= MV_NETC_GE_MAC3_RGMII;
3539 }
3540
3541 return val;
3542}
3543
3544static void gop_netc_active_port(struct mvpp2 *priv, int gop_id, u32 val)
3545{
3546 u32 reg;
3547
3548 reg = gop_rfu1_read(priv, NETCOMP_PORTS_CONTROL_1_REG);
3549 reg &= ~(NETC_PORTS_ACTIVE_MASK(gop_id));
3550
3551 val <<= NETC_PORTS_ACTIVE_OFFSET(gop_id);
3552 val &= NETC_PORTS_ACTIVE_MASK(gop_id);
3553
3554 reg |= val;
3555
3556 gop_rfu1_write(priv, NETCOMP_PORTS_CONTROL_1_REG, reg);
3557}
3558
3559static void gop_netc_mii_mode(struct mvpp2 *priv, int gop_id, u32 val)
3560{
3561 u32 reg;
3562
3563 reg = gop_rfu1_read(priv, NETCOMP_CONTROL_0_REG);
3564 reg &= ~NETC_GBE_PORT1_MII_MODE_MASK;
3565
3566 val <<= NETC_GBE_PORT1_MII_MODE_OFFS;
3567 val &= NETC_GBE_PORT1_MII_MODE_MASK;
3568
3569 reg |= val;
3570
3571 gop_rfu1_write(priv, NETCOMP_CONTROL_0_REG, reg);
3572}
3573
3574static void gop_netc_gop_reset(struct mvpp2 *priv, u32 val)
3575{
3576 u32 reg;
3577
3578 reg = gop_rfu1_read(priv, GOP_SOFT_RESET_1_REG);
3579 reg &= ~NETC_GOP_SOFT_RESET_MASK;
3580
3581 val <<= NETC_GOP_SOFT_RESET_OFFS;
3582 val &= NETC_GOP_SOFT_RESET_MASK;
3583
3584 reg |= val;
3585
3586 gop_rfu1_write(priv, GOP_SOFT_RESET_1_REG, reg);
3587}
3588
3589static void gop_netc_gop_clock_logic_set(struct mvpp2 *priv, u32 val)
3590{
3591 u32 reg;
3592
3593 reg = gop_rfu1_read(priv, NETCOMP_PORTS_CONTROL_0_REG);
3594 reg &= ~NETC_CLK_DIV_PHASE_MASK;
3595
3596 val <<= NETC_CLK_DIV_PHASE_OFFS;
3597 val &= NETC_CLK_DIV_PHASE_MASK;
3598
3599 reg |= val;
3600
3601 gop_rfu1_write(priv, NETCOMP_PORTS_CONTROL_0_REG, reg);
3602}
3603
3604static void gop_netc_port_rf_reset(struct mvpp2 *priv, int gop_id, u32 val)
3605{
3606 u32 reg;
3607
3608 reg = gop_rfu1_read(priv, NETCOMP_PORTS_CONTROL_1_REG);
3609 reg &= ~(NETC_PORT_GIG_RF_RESET_MASK(gop_id));
3610
3611 val <<= NETC_PORT_GIG_RF_RESET_OFFS(gop_id);
3612 val &= NETC_PORT_GIG_RF_RESET_MASK(gop_id);
3613
3614 reg |= val;
3615
3616 gop_rfu1_write(priv, NETCOMP_PORTS_CONTROL_1_REG, reg);
3617}
3618
3619static void gop_netc_gbe_sgmii_mode_select(struct mvpp2 *priv, int gop_id,
3620 u32 val)
3621{
3622 u32 reg, mask, offset;
3623
3624 if (gop_id == 2) {
3625 mask = NETC_GBE_PORT0_SGMII_MODE_MASK;
3626 offset = NETC_GBE_PORT0_SGMII_MODE_OFFS;
3627 } else {
3628 mask = NETC_GBE_PORT1_SGMII_MODE_MASK;
3629 offset = NETC_GBE_PORT1_SGMII_MODE_OFFS;
3630 }
3631 reg = gop_rfu1_read(priv, NETCOMP_CONTROL_0_REG);
3632 reg &= ~mask;
3633
3634 val <<= offset;
3635 val &= mask;
3636
3637 reg |= val;
3638
3639 gop_rfu1_write(priv, NETCOMP_CONTROL_0_REG, reg);
3640}
3641
3642static void gop_netc_bus_width_select(struct mvpp2 *priv, u32 val)
3643{
3644 u32 reg;
3645
3646 reg = gop_rfu1_read(priv, NETCOMP_PORTS_CONTROL_0_REG);
3647 reg &= ~NETC_BUS_WIDTH_SELECT_MASK;
3648
3649 val <<= NETC_BUS_WIDTH_SELECT_OFFS;
3650 val &= NETC_BUS_WIDTH_SELECT_MASK;
3651
3652 reg |= val;
3653
3654 gop_rfu1_write(priv, NETCOMP_PORTS_CONTROL_0_REG, reg);
3655}
3656
3657static void gop_netc_sample_stages_timing(struct mvpp2 *priv, u32 val)
3658{
3659 u32 reg;
3660
3661 reg = gop_rfu1_read(priv, NETCOMP_PORTS_CONTROL_0_REG);
3662 reg &= ~NETC_GIG_RX_DATA_SAMPLE_MASK;
3663
3664 val <<= NETC_GIG_RX_DATA_SAMPLE_OFFS;
3665 val &= NETC_GIG_RX_DATA_SAMPLE_MASK;
3666
3667 reg |= val;
3668
3669 gop_rfu1_write(priv, NETCOMP_PORTS_CONTROL_0_REG, reg);
3670}
3671
3672static void gop_netc_mac_to_xgmii(struct mvpp2 *priv, int gop_id,
3673 enum mv_netc_phase phase)
3674{
3675 switch (phase) {
3676 case MV_NETC_FIRST_PHASE:
3677 /* Set Bus Width to HB mode = 1 */
3678 gop_netc_bus_width_select(priv, 1);
3679 /* Select RGMII mode */
3680 gop_netc_gbe_sgmii_mode_select(priv, gop_id, MV_NETC_GBE_XMII);
3681 break;
3682
3683 case MV_NETC_SECOND_PHASE:
3684 /* De-assert the relevant port HB reset */
3685 gop_netc_port_rf_reset(priv, gop_id, 1);
3686 break;
3687 }
3688}
3689
3690static void gop_netc_mac_to_sgmii(struct mvpp2 *priv, int gop_id,
3691 enum mv_netc_phase phase)
3692{
3693 switch (phase) {
3694 case MV_NETC_FIRST_PHASE:
3695 /* Set Bus Width to HB mode = 1 */
3696 gop_netc_bus_width_select(priv, 1);
3697 /* Select SGMII mode */
3698 if (gop_id >= 1) {
3699 gop_netc_gbe_sgmii_mode_select(priv, gop_id,
3700 MV_NETC_GBE_SGMII);
3701 }
3702
3703 /* Configure the sample stages */
3704 gop_netc_sample_stages_timing(priv, 0);
3705 /* Configure the ComPhy Selector */
3706 /* gop_netc_com_phy_selector_config(netComplex); */
3707 break;
3708
3709 case MV_NETC_SECOND_PHASE:
3710 /* De-assert the relevant port HB reset */
3711 gop_netc_port_rf_reset(priv, gop_id, 1);
3712 break;
3713 }
3714}
3715
3716static int gop_netc_init(struct mvpp2 *priv, enum mv_netc_phase phase)
3717{
3718 u32 c = priv->netc_config;
3719
3720 if (c & MV_NETC_GE_MAC2_SGMII)
3721 gop_netc_mac_to_sgmii(priv, 2, phase);
Stefan Chulski8d3aa372021-05-03 08:08:45 +02003722 else if (c & MV_NETC_GE_MAC2_RGMII)
Stefan Roese31aa1e32017-03-22 15:07:30 +01003723 gop_netc_mac_to_xgmii(priv, 2, phase);
3724
3725 if (c & MV_NETC_GE_MAC3_SGMII) {
3726 gop_netc_mac_to_sgmii(priv, 3, phase);
3727 } else {
3728 gop_netc_mac_to_xgmii(priv, 3, phase);
3729 if (c & MV_NETC_GE_MAC3_RGMII)
3730 gop_netc_mii_mode(priv, 3, MV_NETC_GBE_RGMII);
3731 else
3732 gop_netc_mii_mode(priv, 3, MV_NETC_GBE_MII);
3733 }
3734
3735 /* Activate gop ports 0, 2, 3 */
3736 gop_netc_active_port(priv, 0, 1);
3737 gop_netc_active_port(priv, 2, 1);
3738 gop_netc_active_port(priv, 3, 1);
3739
3740 if (phase == MV_NETC_SECOND_PHASE) {
3741 /* Enable the GOP internal clock logic */
3742 gop_netc_gop_clock_logic_set(priv, 1);
3743 /* De-assert GOP unit reset */
3744 gop_netc_gop_reset(priv, 1);
3745 }
3746
3747 return 0;
3748}
3749
Stefan Roese99d4c6d2016-02-10 07:22:10 +01003750/* Set defaults to the MVPP2 port */
3751static void mvpp2_defaults_set(struct mvpp2_port *port)
3752{
3753 int tx_port_num, val, queue, ptxq, lrxq;
3754
Thomas Petazzonib8c8e6f2017-02-16 06:57:24 +01003755 if (port->priv->hw_version == MVPP21) {
3756 /* Configure port to loopback if needed */
3757 if (port->flags & MVPP2_F_LOOPBACK)
3758 mvpp2_port_loopback_set(port);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01003759
Thomas Petazzonib8c8e6f2017-02-16 06:57:24 +01003760 /* Update TX FIFO MIN Threshold */
3761 val = readl(port->base + MVPP2_GMAC_PORT_FIFO_CFG_1_REG);
3762 val &= ~MVPP2_GMAC_TX_FIFO_MIN_TH_ALL_MASK;
3763 /* Min. TX threshold must be less than minimal packet length */
3764 val |= MVPP2_GMAC_TX_FIFO_MIN_TH_MASK(64 - 4 - 2);
3765 writel(val, port->base + MVPP2_GMAC_PORT_FIFO_CFG_1_REG);
3766 }
Stefan Roese99d4c6d2016-02-10 07:22:10 +01003767
3768 /* Disable Legacy WRR, Disable EJP, Release from reset */
3769 tx_port_num = mvpp2_egress_port(port);
3770 mvpp2_write(port->priv, MVPP2_TXP_SCHED_PORT_INDEX_REG,
3771 tx_port_num);
3772 mvpp2_write(port->priv, MVPP2_TXP_SCHED_CMD_1_REG, 0);
3773
3774 /* Close bandwidth for all queues */
3775 for (queue = 0; queue < MVPP2_MAX_TXQ; queue++) {
3776 ptxq = mvpp2_txq_phys(port->id, queue);
3777 mvpp2_write(port->priv,
3778 MVPP2_TXQ_SCHED_TOKEN_CNTR_REG(ptxq), 0);
3779 }
3780
3781 /* Set refill period to 1 usec, refill tokens
3782 * and bucket size to maximum
3783 */
3784 mvpp2_write(port->priv, MVPP2_TXP_SCHED_PERIOD_REG, 0xc8);
3785 val = mvpp2_read(port->priv, MVPP2_TXP_SCHED_REFILL_REG);
3786 val &= ~MVPP2_TXP_REFILL_PERIOD_ALL_MASK;
3787 val |= MVPP2_TXP_REFILL_PERIOD_MASK(1);
3788 val |= MVPP2_TXP_REFILL_TOKENS_ALL_MASK;
3789 mvpp2_write(port->priv, MVPP2_TXP_SCHED_REFILL_REG, val);
3790 val = MVPP2_TXP_TOKEN_SIZE_MAX;
3791 mvpp2_write(port->priv, MVPP2_TXP_SCHED_TOKEN_SIZE_REG, val);
3792
3793 /* Set MaximumLowLatencyPacketSize value to 256 */
3794 mvpp2_write(port->priv, MVPP2_RX_CTRL_REG(port->id),
3795 MVPP2_RX_USE_PSEUDO_FOR_CSUM_MASK |
3796 MVPP2_RX_LOW_LATENCY_PKT_SIZE(256));
3797
3798 /* Enable Rx cache snoop */
3799 for (lrxq = 0; lrxq < rxq_number; lrxq++) {
3800 queue = port->rxqs[lrxq]->id;
3801 val = mvpp2_read(port->priv, MVPP2_RXQ_CONFIG_REG(queue));
3802 val |= MVPP2_SNOOP_PKT_SIZE_MASK |
3803 MVPP2_SNOOP_BUF_HDR_MASK;
3804 mvpp2_write(port->priv, MVPP2_RXQ_CONFIG_REG(queue), val);
3805 }
3806}
3807
3808/* Enable/disable receiving packets */
3809static void mvpp2_ingress_enable(struct mvpp2_port *port)
3810{
3811 u32 val;
3812 int lrxq, queue;
3813
3814 for (lrxq = 0; lrxq < rxq_number; lrxq++) {
3815 queue = port->rxqs[lrxq]->id;
3816 val = mvpp2_read(port->priv, MVPP2_RXQ_CONFIG_REG(queue));
3817 val &= ~MVPP2_RXQ_DISABLE_MASK;
3818 mvpp2_write(port->priv, MVPP2_RXQ_CONFIG_REG(queue), val);
3819 }
3820}
3821
3822static void mvpp2_ingress_disable(struct mvpp2_port *port)
3823{
3824 u32 val;
3825 int lrxq, queue;
3826
3827 for (lrxq = 0; lrxq < rxq_number; lrxq++) {
3828 queue = port->rxqs[lrxq]->id;
3829 val = mvpp2_read(port->priv, MVPP2_RXQ_CONFIG_REG(queue));
3830 val |= MVPP2_RXQ_DISABLE_MASK;
3831 mvpp2_write(port->priv, MVPP2_RXQ_CONFIG_REG(queue), val);
3832 }
3833}
3834
3835/* Enable transmit via physical egress queue
3836 * - HW starts take descriptors from DRAM
3837 */
3838static void mvpp2_egress_enable(struct mvpp2_port *port)
3839{
3840 u32 qmap;
3841 int queue;
3842 int tx_port_num = mvpp2_egress_port(port);
3843
3844 /* Enable all initialized TXs. */
3845 qmap = 0;
3846 for (queue = 0; queue < txq_number; queue++) {
3847 struct mvpp2_tx_queue *txq = port->txqs[queue];
3848
3849 if (txq->descs != NULL)
3850 qmap |= (1 << queue);
3851 }
3852
3853 mvpp2_write(port->priv, MVPP2_TXP_SCHED_PORT_INDEX_REG, tx_port_num);
3854 mvpp2_write(port->priv, MVPP2_TXP_SCHED_Q_CMD_REG, qmap);
3855}
3856
3857/* Disable transmit via physical egress queue
3858 * - HW doesn't take descriptors from DRAM
3859 */
3860static void mvpp2_egress_disable(struct mvpp2_port *port)
3861{
3862 u32 reg_data;
3863 int delay;
3864 int tx_port_num = mvpp2_egress_port(port);
3865
3866 /* Issue stop command for active channels only */
3867 mvpp2_write(port->priv, MVPP2_TXP_SCHED_PORT_INDEX_REG, tx_port_num);
3868 reg_data = (mvpp2_read(port->priv, MVPP2_TXP_SCHED_Q_CMD_REG)) &
3869 MVPP2_TXP_SCHED_ENQ_MASK;
3870 if (reg_data != 0)
3871 mvpp2_write(port->priv, MVPP2_TXP_SCHED_Q_CMD_REG,
3872 (reg_data << MVPP2_TXP_SCHED_DISQ_OFFSET));
3873
3874 /* Wait for all Tx activity to terminate. */
3875 delay = 0;
3876 do {
3877 if (delay >= MVPP2_TX_DISABLE_TIMEOUT_MSEC) {
Sean Anderson9db60ee2020-09-15 10:44:57 -04003878 dev_warn(port->phy_dev->dev,
3879 "Tx stop timed out, status=0x%08x\n",
3880 reg_data);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01003881 break;
3882 }
3883 mdelay(1);
3884 delay++;
3885
3886 /* Check port TX Command register that all
3887 * Tx queues are stopped
3888 */
3889 reg_data = mvpp2_read(port->priv, MVPP2_TXP_SCHED_Q_CMD_REG);
3890 } while (reg_data & MVPP2_TXP_SCHED_ENQ_MASK);
3891}
3892
3893/* Rx descriptors helper methods */
3894
3895/* Get number of Rx descriptors occupied by received packets */
3896static inline int
3897mvpp2_rxq_received(struct mvpp2_port *port, int rxq_id)
3898{
3899 u32 val = mvpp2_read(port->priv, MVPP2_RXQ_STATUS_REG(rxq_id));
3900
3901 return val & MVPP2_RXQ_OCCUPIED_MASK;
3902}
3903
3904/* Update Rx queue status with the number of occupied and available
3905 * Rx descriptor slots.
3906 */
3907static inline void
3908mvpp2_rxq_status_update(struct mvpp2_port *port, int rxq_id,
3909 int used_count, int free_count)
3910{
3911 /* Decrement the number of used descriptors and increment count
3912 * increment the number of free descriptors.
3913 */
3914 u32 val = used_count | (free_count << MVPP2_RXQ_NUM_NEW_OFFSET);
3915
3916 mvpp2_write(port->priv, MVPP2_RXQ_STATUS_UPDATE_REG(rxq_id), val);
3917}
3918
3919/* Get pointer to next RX descriptor to be processed by SW */
3920static inline struct mvpp2_rx_desc *
3921mvpp2_rxq_next_desc_get(struct mvpp2_rx_queue *rxq)
3922{
3923 int rx_desc = rxq->next_desc_to_proc;
3924
3925 rxq->next_desc_to_proc = MVPP2_QUEUE_NEXT_DESC(rxq, rx_desc);
3926 prefetch(rxq->descs + rxq->next_desc_to_proc);
3927 return rxq->descs + rx_desc;
3928}
3929
3930/* Set rx queue offset */
3931static void mvpp2_rxq_offset_set(struct mvpp2_port *port,
3932 int prxq, int offset)
3933{
3934 u32 val;
3935
3936 /* Convert offset from bytes to units of 32 bytes */
3937 offset = offset >> 5;
3938
3939 val = mvpp2_read(port->priv, MVPP2_RXQ_CONFIG_REG(prxq));
3940 val &= ~MVPP2_RXQ_PACKET_OFFSET_MASK;
3941
3942 /* Offset is in */
3943 val |= ((offset << MVPP2_RXQ_PACKET_OFFSET_OFFS) &
3944 MVPP2_RXQ_PACKET_OFFSET_MASK);
3945
3946 mvpp2_write(port->priv, MVPP2_RXQ_CONFIG_REG(prxq), val);
3947}
3948
3949/* Obtain BM cookie information from descriptor */
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01003950static u32 mvpp2_bm_cookie_build(struct mvpp2_port *port,
3951 struct mvpp2_rx_desc *rx_desc)
Stefan Roese99d4c6d2016-02-10 07:22:10 +01003952{
Stefan Roese99d4c6d2016-02-10 07:22:10 +01003953 int cpu = smp_processor_id();
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01003954 int pool;
3955
3956 pool = (mvpp2_rxdesc_status_get(port, rx_desc) &
3957 MVPP2_RXD_BM_POOL_ID_MASK) >>
3958 MVPP2_RXD_BM_POOL_ID_OFFS;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01003959
3960 return ((pool & 0xFF) << MVPP2_BM_COOKIE_POOL_OFFS) |
3961 ((cpu & 0xFF) << MVPP2_BM_COOKIE_CPU_OFFS);
3962}
3963
3964/* Tx descriptors helper methods */
3965
3966/* Get number of Tx descriptors waiting to be transmitted by HW */
3967static int mvpp2_txq_pend_desc_num_get(struct mvpp2_port *port,
3968 struct mvpp2_tx_queue *txq)
3969{
3970 u32 val;
3971
3972 mvpp2_write(port->priv, MVPP2_TXQ_NUM_REG, txq->id);
3973 val = mvpp2_read(port->priv, MVPP2_TXQ_PENDING_REG);
3974
3975 return val & MVPP2_TXQ_PENDING_MASK;
3976}
3977
3978/* Get pointer to next Tx descriptor to be processed (send) by HW */
3979static struct mvpp2_tx_desc *
3980mvpp2_txq_next_desc_get(struct mvpp2_tx_queue *txq)
3981{
3982 int tx_desc = txq->next_desc_to_proc;
3983
3984 txq->next_desc_to_proc = MVPP2_QUEUE_NEXT_DESC(txq, tx_desc);
3985 return txq->descs + tx_desc;
3986}
3987
3988/* Update HW with number of aggregated Tx descriptors to be sent */
3989static void mvpp2_aggr_txq_pend_desc_add(struct mvpp2_port *port, int pending)
3990{
3991 /* aggregated access - relevant TXQ number is written in TX desc */
3992 mvpp2_write(port->priv, MVPP2_AGGR_TXQ_UPDATE_REG, pending);
3993}
3994
3995/* Get number of sent descriptors and decrement counter.
3996 * The number of sent descriptors is returned.
3997 * Per-CPU access
3998 */
3999static inline int mvpp2_txq_sent_desc_proc(struct mvpp2_port *port,
4000 struct mvpp2_tx_queue *txq)
4001{
4002 u32 val;
4003
4004 /* Reading status reg resets transmitted descriptor counter */
4005 val = mvpp2_read(port->priv, MVPP2_TXQ_SENT_REG(txq->id));
4006
4007 return (val & MVPP2_TRANSMITTED_COUNT_MASK) >>
4008 MVPP2_TRANSMITTED_COUNT_OFFSET;
4009}
4010
4011static void mvpp2_txq_sent_counter_clear(void *arg)
4012{
4013 struct mvpp2_port *port = arg;
4014 int queue;
4015
4016 for (queue = 0; queue < txq_number; queue++) {
4017 int id = port->txqs[queue]->id;
4018
4019 mvpp2_read(port->priv, MVPP2_TXQ_SENT_REG(id));
4020 }
4021}
4022
4023/* Set max sizes for Tx queues */
4024static void mvpp2_txp_max_tx_size_set(struct mvpp2_port *port)
4025{
4026 u32 val, size, mtu;
4027 int txq, tx_port_num;
4028
4029 mtu = port->pkt_size * 8;
4030 if (mtu > MVPP2_TXP_MTU_MAX)
4031 mtu = MVPP2_TXP_MTU_MAX;
4032
4033 /* WA for wrong Token bucket update: Set MTU value = 3*real MTU value */
4034 mtu = 3 * mtu;
4035
4036 /* Indirect access to registers */
4037 tx_port_num = mvpp2_egress_port(port);
4038 mvpp2_write(port->priv, MVPP2_TXP_SCHED_PORT_INDEX_REG, tx_port_num);
4039
4040 /* Set MTU */
4041 val = mvpp2_read(port->priv, MVPP2_TXP_SCHED_MTU_REG);
4042 val &= ~MVPP2_TXP_MTU_MAX;
4043 val |= mtu;
4044 mvpp2_write(port->priv, MVPP2_TXP_SCHED_MTU_REG, val);
4045
4046 /* TXP token size and all TXQs token size must be larger that MTU */
4047 val = mvpp2_read(port->priv, MVPP2_TXP_SCHED_TOKEN_SIZE_REG);
4048 size = val & MVPP2_TXP_TOKEN_SIZE_MAX;
4049 if (size < mtu) {
4050 size = mtu;
4051 val &= ~MVPP2_TXP_TOKEN_SIZE_MAX;
4052 val |= size;
4053 mvpp2_write(port->priv, MVPP2_TXP_SCHED_TOKEN_SIZE_REG, val);
4054 }
4055
4056 for (txq = 0; txq < txq_number; txq++) {
4057 val = mvpp2_read(port->priv,
4058 MVPP2_TXQ_SCHED_TOKEN_SIZE_REG(txq));
4059 size = val & MVPP2_TXQ_TOKEN_SIZE_MAX;
4060
4061 if (size < mtu) {
4062 size = mtu;
4063 val &= ~MVPP2_TXQ_TOKEN_SIZE_MAX;
4064 val |= size;
4065 mvpp2_write(port->priv,
4066 MVPP2_TXQ_SCHED_TOKEN_SIZE_REG(txq),
4067 val);
4068 }
4069 }
4070}
4071
4072/* Free Tx queue skbuffs */
4073static void mvpp2_txq_bufs_free(struct mvpp2_port *port,
4074 struct mvpp2_tx_queue *txq,
4075 struct mvpp2_txq_pcpu *txq_pcpu, int num)
4076{
4077 int i;
4078
4079 for (i = 0; i < num; i++)
4080 mvpp2_txq_inc_get(txq_pcpu);
4081}
4082
4083static inline struct mvpp2_rx_queue *mvpp2_get_rx_queue(struct mvpp2_port *port,
4084 u32 cause)
4085{
4086 int queue = fls(cause) - 1;
4087
4088 return port->rxqs[queue];
4089}
4090
4091static inline struct mvpp2_tx_queue *mvpp2_get_tx_queue(struct mvpp2_port *port,
4092 u32 cause)
4093{
4094 int queue = fls(cause) - 1;
4095
4096 return port->txqs[queue];
4097}
4098
4099/* Rx/Tx queue initialization/cleanup methods */
4100
4101/* Allocate and initialize descriptors for aggr TXQ */
4102static int mvpp2_aggr_txq_init(struct udevice *dev,
4103 struct mvpp2_tx_queue *aggr_txq,
4104 int desc_num, int cpu,
4105 struct mvpp2 *priv)
4106{
Thomas Petazzoni80350f52017-02-20 11:36:57 +01004107 u32 txq_dma;
4108
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004109 /* Allocate memory for TX descriptors */
4110 aggr_txq->descs = buffer_loc.aggr_tx_descs;
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01004111 aggr_txq->descs_dma = (dma_addr_t)buffer_loc.aggr_tx_descs;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004112 if (!aggr_txq->descs)
4113 return -ENOMEM;
4114
4115 /* Make sure descriptor address is cache line size aligned */
4116 BUG_ON(aggr_txq->descs !=
4117 PTR_ALIGN(aggr_txq->descs, MVPP2_CPU_D_CACHE_LINE_SIZE));
4118
4119 aggr_txq->last_desc = aggr_txq->size - 1;
4120
4121 /* Aggr TXQ no reset WA */
4122 aggr_txq->next_desc_to_proc = mvpp2_read(priv,
4123 MVPP2_AGGR_TXQ_INDEX_REG(cpu));
4124
Thomas Petazzoni80350f52017-02-20 11:36:57 +01004125 /* Set Tx descriptors queue starting address indirect
4126 * access
4127 */
4128 if (priv->hw_version == MVPP21)
4129 txq_dma = aggr_txq->descs_dma;
4130 else
4131 txq_dma = aggr_txq->descs_dma >>
4132 MVPP22_AGGR_TXQ_DESC_ADDR_OFFS;
4133
4134 mvpp2_write(priv, MVPP2_AGGR_TXQ_DESC_ADDR_REG(cpu), txq_dma);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004135 mvpp2_write(priv, MVPP2_AGGR_TXQ_DESC_SIZE_REG(cpu), desc_num);
4136
4137 return 0;
4138}
4139
4140/* Create a specified Rx queue */
4141static int mvpp2_rxq_init(struct mvpp2_port *port,
4142 struct mvpp2_rx_queue *rxq)
4143
4144{
Thomas Petazzoni80350f52017-02-20 11:36:57 +01004145 u32 rxq_dma;
4146
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004147 rxq->size = port->rx_ring_size;
4148
4149 /* Allocate memory for RX descriptors */
4150 rxq->descs = buffer_loc.rx_descs;
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01004151 rxq->descs_dma = (dma_addr_t)buffer_loc.rx_descs;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004152 if (!rxq->descs)
4153 return -ENOMEM;
4154
4155 BUG_ON(rxq->descs !=
4156 PTR_ALIGN(rxq->descs, MVPP2_CPU_D_CACHE_LINE_SIZE));
4157
4158 rxq->last_desc = rxq->size - 1;
4159
4160 /* Zero occupied and non-occupied counters - direct access */
4161 mvpp2_write(port->priv, MVPP2_RXQ_STATUS_REG(rxq->id), 0);
4162
4163 /* Set Rx descriptors queue starting address - indirect access */
4164 mvpp2_write(port->priv, MVPP2_RXQ_NUM_REG, rxq->id);
Thomas Petazzoni80350f52017-02-20 11:36:57 +01004165 if (port->priv->hw_version == MVPP21)
4166 rxq_dma = rxq->descs_dma;
4167 else
4168 rxq_dma = rxq->descs_dma >> MVPP22_DESC_ADDR_OFFS;
4169 mvpp2_write(port->priv, MVPP2_RXQ_DESC_ADDR_REG, rxq_dma);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004170 mvpp2_write(port->priv, MVPP2_RXQ_DESC_SIZE_REG, rxq->size);
4171 mvpp2_write(port->priv, MVPP2_RXQ_INDEX_REG, 0);
4172
4173 /* Set Offset */
4174 mvpp2_rxq_offset_set(port, rxq->id, NET_SKB_PAD);
4175
4176 /* Add number of descriptors ready for receiving packets */
4177 mvpp2_rxq_status_update(port, rxq->id, 0, rxq->size);
4178
4179 return 0;
4180}
4181
4182/* Push packets received by the RXQ to BM pool */
4183static void mvpp2_rxq_drop_pkts(struct mvpp2_port *port,
4184 struct mvpp2_rx_queue *rxq)
4185{
4186 int rx_received, i;
4187
4188 rx_received = mvpp2_rxq_received(port, rxq->id);
4189 if (!rx_received)
4190 return;
4191
4192 for (i = 0; i < rx_received; i++) {
4193 struct mvpp2_rx_desc *rx_desc = mvpp2_rxq_next_desc_get(rxq);
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01004194 u32 bm = mvpp2_bm_cookie_build(port, rx_desc);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004195
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01004196 mvpp2_pool_refill(port, bm,
4197 mvpp2_rxdesc_dma_addr_get(port, rx_desc),
4198 mvpp2_rxdesc_cookie_get(port, rx_desc));
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004199 }
4200 mvpp2_rxq_status_update(port, rxq->id, rx_received, rx_received);
4201}
4202
4203/* Cleanup Rx queue */
4204static void mvpp2_rxq_deinit(struct mvpp2_port *port,
4205 struct mvpp2_rx_queue *rxq)
4206{
4207 mvpp2_rxq_drop_pkts(port, rxq);
4208
4209 rxq->descs = NULL;
4210 rxq->last_desc = 0;
4211 rxq->next_desc_to_proc = 0;
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01004212 rxq->descs_dma = 0;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004213
4214 /* Clear Rx descriptors queue starting address and size;
4215 * free descriptor number
4216 */
4217 mvpp2_write(port->priv, MVPP2_RXQ_STATUS_REG(rxq->id), 0);
4218 mvpp2_write(port->priv, MVPP2_RXQ_NUM_REG, rxq->id);
4219 mvpp2_write(port->priv, MVPP2_RXQ_DESC_ADDR_REG, 0);
4220 mvpp2_write(port->priv, MVPP2_RXQ_DESC_SIZE_REG, 0);
4221}
4222
4223/* Create and initialize a Tx queue */
4224static int mvpp2_txq_init(struct mvpp2_port *port,
4225 struct mvpp2_tx_queue *txq)
4226{
4227 u32 val;
4228 int cpu, desc, desc_per_txq, tx_port_num;
4229 struct mvpp2_txq_pcpu *txq_pcpu;
4230
4231 txq->size = port->tx_ring_size;
4232
4233 /* Allocate memory for Tx descriptors */
4234 txq->descs = buffer_loc.tx_descs;
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01004235 txq->descs_dma = (dma_addr_t)buffer_loc.tx_descs;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004236 if (!txq->descs)
4237 return -ENOMEM;
4238
4239 /* Make sure descriptor address is cache line size aligned */
4240 BUG_ON(txq->descs !=
4241 PTR_ALIGN(txq->descs, MVPP2_CPU_D_CACHE_LINE_SIZE));
4242
4243 txq->last_desc = txq->size - 1;
4244
4245 /* Set Tx descriptors queue starting address - indirect access */
4246 mvpp2_write(port->priv, MVPP2_TXQ_NUM_REG, txq->id);
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01004247 mvpp2_write(port->priv, MVPP2_TXQ_DESC_ADDR_REG, txq->descs_dma);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004248 mvpp2_write(port->priv, MVPP2_TXQ_DESC_SIZE_REG, txq->size &
4249 MVPP2_TXQ_DESC_SIZE_MASK);
4250 mvpp2_write(port->priv, MVPP2_TXQ_INDEX_REG, 0);
4251 mvpp2_write(port->priv, MVPP2_TXQ_RSVD_CLR_REG,
4252 txq->id << MVPP2_TXQ_RSVD_CLR_OFFSET);
4253 val = mvpp2_read(port->priv, MVPP2_TXQ_PENDING_REG);
4254 val &= ~MVPP2_TXQ_PENDING_MASK;
4255 mvpp2_write(port->priv, MVPP2_TXQ_PENDING_REG, val);
4256
4257 /* Calculate base address in prefetch buffer. We reserve 16 descriptors
4258 * for each existing TXQ.
4259 * TCONTS for PON port must be continuous from 0 to MVPP2_MAX_TCONT
4260 * GBE ports assumed to be continious from 0 to MVPP2_MAX_PORTS
4261 */
4262 desc_per_txq = 16;
4263 desc = (port->id * MVPP2_MAX_TXQ * desc_per_txq) +
4264 (txq->log_id * desc_per_txq);
4265
4266 mvpp2_write(port->priv, MVPP2_TXQ_PREF_BUF_REG,
4267 MVPP2_PREF_BUF_PTR(desc) | MVPP2_PREF_BUF_SIZE_16 |
Thomas Petazzoni26a52782017-02-16 08:03:37 +01004268 MVPP2_PREF_BUF_THRESH(desc_per_txq / 2));
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004269
4270 /* WRR / EJP configuration - indirect access */
4271 tx_port_num = mvpp2_egress_port(port);
4272 mvpp2_write(port->priv, MVPP2_TXP_SCHED_PORT_INDEX_REG, tx_port_num);
4273
4274 val = mvpp2_read(port->priv, MVPP2_TXQ_SCHED_REFILL_REG(txq->log_id));
4275 val &= ~MVPP2_TXQ_REFILL_PERIOD_ALL_MASK;
4276 val |= MVPP2_TXQ_REFILL_PERIOD_MASK(1);
4277 val |= MVPP2_TXQ_REFILL_TOKENS_ALL_MASK;
4278 mvpp2_write(port->priv, MVPP2_TXQ_SCHED_REFILL_REG(txq->log_id), val);
4279
4280 val = MVPP2_TXQ_TOKEN_SIZE_MAX;
4281 mvpp2_write(port->priv, MVPP2_TXQ_SCHED_TOKEN_SIZE_REG(txq->log_id),
4282 val);
4283
4284 for_each_present_cpu(cpu) {
4285 txq_pcpu = per_cpu_ptr(txq->pcpu, cpu);
4286 txq_pcpu->size = txq->size;
4287 }
4288
4289 return 0;
4290}
4291
4292/* Free allocated TXQ resources */
4293static void mvpp2_txq_deinit(struct mvpp2_port *port,
4294 struct mvpp2_tx_queue *txq)
4295{
4296 txq->descs = NULL;
4297 txq->last_desc = 0;
4298 txq->next_desc_to_proc = 0;
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01004299 txq->descs_dma = 0;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004300
4301 /* Set minimum bandwidth for disabled TXQs */
4302 mvpp2_write(port->priv, MVPP2_TXQ_SCHED_TOKEN_CNTR_REG(txq->id), 0);
4303
4304 /* Set Tx descriptors queue starting address and size */
4305 mvpp2_write(port->priv, MVPP2_TXQ_NUM_REG, txq->id);
4306 mvpp2_write(port->priv, MVPP2_TXQ_DESC_ADDR_REG, 0);
4307 mvpp2_write(port->priv, MVPP2_TXQ_DESC_SIZE_REG, 0);
4308}
4309
4310/* Cleanup Tx ports */
4311static void mvpp2_txq_clean(struct mvpp2_port *port, struct mvpp2_tx_queue *txq)
4312{
4313 struct mvpp2_txq_pcpu *txq_pcpu;
4314 int delay, pending, cpu;
4315 u32 val;
4316
4317 mvpp2_write(port->priv, MVPP2_TXQ_NUM_REG, txq->id);
4318 val = mvpp2_read(port->priv, MVPP2_TXQ_PREF_BUF_REG);
4319 val |= MVPP2_TXQ_DRAIN_EN_MASK;
4320 mvpp2_write(port->priv, MVPP2_TXQ_PREF_BUF_REG, val);
4321
4322 /* The napi queue has been stopped so wait for all packets
4323 * to be transmitted.
4324 */
4325 delay = 0;
4326 do {
4327 if (delay >= MVPP2_TX_PENDING_TIMEOUT_MSEC) {
Sean Anderson9db60ee2020-09-15 10:44:57 -04004328 dev_warn(port->phy_dev->dev,
4329 "port %d: cleaning queue %d timed out\n",
4330 port->id, txq->log_id);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004331 break;
4332 }
4333 mdelay(1);
4334 delay++;
4335
4336 pending = mvpp2_txq_pend_desc_num_get(port, txq);
4337 } while (pending);
4338
4339 val &= ~MVPP2_TXQ_DRAIN_EN_MASK;
4340 mvpp2_write(port->priv, MVPP2_TXQ_PREF_BUF_REG, val);
4341
4342 for_each_present_cpu(cpu) {
4343 txq_pcpu = per_cpu_ptr(txq->pcpu, cpu);
4344
4345 /* Release all packets */
4346 mvpp2_txq_bufs_free(port, txq, txq_pcpu, txq_pcpu->count);
4347
4348 /* Reset queue */
4349 txq_pcpu->count = 0;
4350 txq_pcpu->txq_put_index = 0;
4351 txq_pcpu->txq_get_index = 0;
4352 }
4353}
4354
4355/* Cleanup all Tx queues */
4356static void mvpp2_cleanup_txqs(struct mvpp2_port *port)
4357{
4358 struct mvpp2_tx_queue *txq;
4359 int queue;
4360 u32 val;
4361
4362 val = mvpp2_read(port->priv, MVPP2_TX_PORT_FLUSH_REG);
4363
4364 /* Reset Tx ports and delete Tx queues */
4365 val |= MVPP2_TX_PORT_FLUSH_MASK(port->id);
4366 mvpp2_write(port->priv, MVPP2_TX_PORT_FLUSH_REG, val);
4367
4368 for (queue = 0; queue < txq_number; queue++) {
4369 txq = port->txqs[queue];
4370 mvpp2_txq_clean(port, txq);
4371 mvpp2_txq_deinit(port, txq);
4372 }
4373
4374 mvpp2_txq_sent_counter_clear(port);
4375
4376 val &= ~MVPP2_TX_PORT_FLUSH_MASK(port->id);
4377 mvpp2_write(port->priv, MVPP2_TX_PORT_FLUSH_REG, val);
4378}
4379
4380/* Cleanup all Rx queues */
4381static void mvpp2_cleanup_rxqs(struct mvpp2_port *port)
4382{
4383 int queue;
4384
4385 for (queue = 0; queue < rxq_number; queue++)
4386 mvpp2_rxq_deinit(port, port->rxqs[queue]);
4387}
4388
4389/* Init all Rx queues for port */
4390static int mvpp2_setup_rxqs(struct mvpp2_port *port)
4391{
4392 int queue, err;
4393
4394 for (queue = 0; queue < rxq_number; queue++) {
4395 err = mvpp2_rxq_init(port, port->rxqs[queue]);
4396 if (err)
4397 goto err_cleanup;
4398 }
4399 return 0;
4400
4401err_cleanup:
4402 mvpp2_cleanup_rxqs(port);
4403 return err;
4404}
4405
4406/* Init all tx queues for port */
4407static int mvpp2_setup_txqs(struct mvpp2_port *port)
4408{
4409 struct mvpp2_tx_queue *txq;
4410 int queue, err;
4411
4412 for (queue = 0; queue < txq_number; queue++) {
4413 txq = port->txqs[queue];
4414 err = mvpp2_txq_init(port, txq);
4415 if (err)
4416 goto err_cleanup;
4417 }
4418
4419 mvpp2_txq_sent_counter_clear(port);
4420 return 0;
4421
4422err_cleanup:
4423 mvpp2_cleanup_txqs(port);
4424 return err;
4425}
4426
4427/* Adjust link */
4428static void mvpp2_link_event(struct mvpp2_port *port)
4429{
4430 struct phy_device *phydev = port->phy_dev;
4431 int status_change = 0;
4432 u32 val;
4433
4434 if (phydev->link) {
4435 if ((port->speed != phydev->speed) ||
4436 (port->duplex != phydev->duplex)) {
4437 u32 val;
4438
4439 val = readl(port->base + MVPP2_GMAC_AUTONEG_CONFIG);
4440 val &= ~(MVPP2_GMAC_CONFIG_MII_SPEED |
4441 MVPP2_GMAC_CONFIG_GMII_SPEED |
4442 MVPP2_GMAC_CONFIG_FULL_DUPLEX |
4443 MVPP2_GMAC_AN_SPEED_EN |
4444 MVPP2_GMAC_AN_DUPLEX_EN);
4445
4446 if (phydev->duplex)
4447 val |= MVPP2_GMAC_CONFIG_FULL_DUPLEX;
4448
Stefan Chulski08f462d2021-05-03 08:08:48 +02004449 if (phydev->speed == SPEED_1000 ||
4450 phydev->speed == 2500)
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004451 val |= MVPP2_GMAC_CONFIG_GMII_SPEED;
4452 else if (phydev->speed == SPEED_100)
4453 val |= MVPP2_GMAC_CONFIG_MII_SPEED;
4454
4455 writel(val, port->base + MVPP2_GMAC_AUTONEG_CONFIG);
4456
4457 port->duplex = phydev->duplex;
4458 port->speed = phydev->speed;
4459 }
4460 }
4461
4462 if (phydev->link != port->link) {
4463 if (!phydev->link) {
4464 port->duplex = -1;
4465 port->speed = 0;
4466 }
4467
4468 port->link = phydev->link;
4469 status_change = 1;
4470 }
4471
4472 if (status_change) {
4473 if (phydev->link) {
4474 val = readl(port->base + MVPP2_GMAC_AUTONEG_CONFIG);
4475 val |= (MVPP2_GMAC_FORCE_LINK_PASS |
4476 MVPP2_GMAC_FORCE_LINK_DOWN);
4477 writel(val, port->base + MVPP2_GMAC_AUTONEG_CONFIG);
4478 mvpp2_egress_enable(port);
4479 mvpp2_ingress_enable(port);
4480 } else {
4481 mvpp2_ingress_disable(port);
4482 mvpp2_egress_disable(port);
4483 }
4484 }
4485}
4486
4487/* Main RX/TX processing routines */
4488
4489/* Display more error info */
4490static void mvpp2_rx_error(struct mvpp2_port *port,
4491 struct mvpp2_rx_desc *rx_desc)
4492{
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01004493 u32 status = mvpp2_rxdesc_status_get(port, rx_desc);
4494 size_t sz = mvpp2_rxdesc_size_get(port, rx_desc);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004495
4496 switch (status & MVPP2_RXD_ERR_CODE_MASK) {
4497 case MVPP2_RXD_ERR_CRC:
Sean Anderson9db60ee2020-09-15 10:44:57 -04004498 dev_err(port->phy_dev->dev,
4499 "bad rx status %08x (crc error), size=%zu\n", status,
4500 sz);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004501 break;
4502 case MVPP2_RXD_ERR_OVERRUN:
Sean Anderson9db60ee2020-09-15 10:44:57 -04004503 dev_err(port->phy_dev->dev,
4504 "bad rx status %08x (overrun error), size=%zu\n",
4505 status, sz);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004506 break;
4507 case MVPP2_RXD_ERR_RESOURCE:
Sean Anderson9db60ee2020-09-15 10:44:57 -04004508 dev_err(port->phy_dev->dev,
4509 "bad rx status %08x (resource error), size=%zu\n",
4510 status, sz);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004511 break;
4512 }
4513}
4514
4515/* Reuse skb if possible, or allocate a new skb and add it to BM pool */
4516static int mvpp2_rx_refill(struct mvpp2_port *port,
4517 struct mvpp2_bm_pool *bm_pool,
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01004518 u32 bm, dma_addr_t dma_addr)
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004519{
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01004520 mvpp2_pool_refill(port, bm, dma_addr, (unsigned long)dma_addr);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004521 return 0;
4522}
4523
4524/* Set hw internals when starting port */
4525static void mvpp2_start_dev(struct mvpp2_port *port)
4526{
Stefan Chulskie09d0c82017-04-06 15:39:08 +02004527 switch (port->phy_interface) {
4528 case PHY_INTERFACE_MODE_RGMII:
4529 case PHY_INTERFACE_MODE_RGMII_ID:
4530 case PHY_INTERFACE_MODE_SGMII:
Stefan Chulski8299abc2021-05-03 08:08:46 +02004531 case PHY_INTERFACE_MODE_1000BASEX:
4532 case PHY_INTERFACE_MODE_2500BASEX:
Stefan Chulskie09d0c82017-04-06 15:39:08 +02004533 mvpp2_gmac_max_rx_size_set(port);
4534 default:
4535 break;
4536 }
4537
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004538 mvpp2_txp_max_tx_size_set(port);
4539
Stefan Roese31aa1e32017-03-22 15:07:30 +01004540 if (port->priv->hw_version == MVPP21)
4541 mvpp2_port_enable(port);
4542 else
4543 gop_port_enable(port, 1);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004544}
4545
4546/* Set hw internals when stopping port */
4547static void mvpp2_stop_dev(struct mvpp2_port *port)
4548{
4549 /* Stop new packets from arriving to RXQs */
4550 mvpp2_ingress_disable(port);
4551
4552 mvpp2_egress_disable(port);
Stefan Roese31aa1e32017-03-22 15:07:30 +01004553
4554 if (port->priv->hw_version == MVPP21)
4555 mvpp2_port_disable(port);
4556 else
4557 gop_port_enable(port, 0);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004558}
4559
Stefan Chulski13b725f2019-08-15 18:08:41 -04004560static void mvpp2_phy_connect(struct udevice *dev, struct mvpp2_port *port)
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004561{
4562 struct phy_device *phy_dev;
4563
4564 if (!port->init || port->link == 0) {
Nevo Hed2a428702019-08-15 18:08:44 -04004565 phy_dev = dm_mdio_phy_connect(port->mdio_dev, port->phyaddr,
4566 dev, port->phy_interface);
Grzegorz Jaszczyk62394832019-08-15 18:08:42 -04004567
4568 /*
4569 * If the phy doesn't match with any existing u-boot drivers the
4570 * phy framework will connect it to generic one which
4571 * uid == 0xffffffff. In this case act as if the phy wouldn't be
4572 * declared in dts. Otherwise in case of 3310 (for which the
4573 * driver doesn't exist) the link will not be correctly
4574 * detected. Removing phy entry from dts in case of 3310 is not
4575 * an option because it is required for the phy_fw_down
4576 * procedure.
4577 */
4578 if (phy_dev &&
4579 phy_dev->drv->uid == 0xffffffff) {/* Generic phy */
Sean Anderson9db60ee2020-09-15 10:44:57 -04004580 dev_warn(port->phy_dev->dev,
4581 "Marking phy as invalid, link will not be checked\n");
Grzegorz Jaszczyk62394832019-08-15 18:08:42 -04004582 /* set phy_addr to invalid value */
4583 port->phyaddr = PHY_MAX_ADDR;
4584 mvpp2_egress_enable(port);
4585 mvpp2_ingress_enable(port);
4586
4587 return;
4588 }
4589
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004590 port->phy_dev = phy_dev;
4591 if (!phy_dev) {
Sean Anderson9db60ee2020-09-15 10:44:57 -04004592 dev_err(port->phy_dev->dev, "cannot connect to phy\n");
Stefan Chulski13b725f2019-08-15 18:08:41 -04004593 return;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004594 }
4595 phy_dev->supported &= PHY_GBIT_FEATURES;
4596 phy_dev->advertising = phy_dev->supported;
4597
4598 port->phy_dev = phy_dev;
4599 port->link = 0;
4600 port->duplex = 0;
4601 port->speed = 0;
4602
4603 phy_config(phy_dev);
4604 phy_startup(phy_dev);
Stefan Chulski13b725f2019-08-15 18:08:41 -04004605 if (!phy_dev->link)
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004606 printf("%s: No link\n", phy_dev->dev->name);
Stefan Chulski13b725f2019-08-15 18:08:41 -04004607 else
4608 port->init = 1;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004609 } else {
4610 mvpp2_egress_enable(port);
4611 mvpp2_ingress_enable(port);
4612 }
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004613}
4614
4615static int mvpp2_open(struct udevice *dev, struct mvpp2_port *port)
4616{
4617 unsigned char mac_bcast[ETH_ALEN] = {
4618 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
4619 int err;
4620
4621 err = mvpp2_prs_mac_da_accept(port->priv, port->id, mac_bcast, true);
4622 if (err) {
Sean Anderson9db60ee2020-09-15 10:44:57 -04004623 dev_err(dev, "mvpp2_prs_mac_da_accept BC failed\n");
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004624 return err;
4625 }
4626 err = mvpp2_prs_mac_da_accept(port->priv, port->id,
4627 port->dev_addr, true);
4628 if (err) {
Sean Anderson9db60ee2020-09-15 10:44:57 -04004629 dev_err(dev, "mvpp2_prs_mac_da_accept MC failed\n");
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004630 return err;
4631 }
4632 err = mvpp2_prs_def_flow(port);
4633 if (err) {
Sean Anderson9db60ee2020-09-15 10:44:57 -04004634 dev_err(dev, "mvpp2_prs_def_flow failed\n");
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004635 return err;
4636 }
4637
4638 /* Allocate the Rx/Tx queues */
4639 err = mvpp2_setup_rxqs(port);
4640 if (err) {
Sean Anderson9db60ee2020-09-15 10:44:57 -04004641 dev_err(port->phy_dev->dev, "cannot allocate Rx queues\n");
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004642 return err;
4643 }
4644
4645 err = mvpp2_setup_txqs(port);
4646 if (err) {
Sean Anderson9db60ee2020-09-15 10:44:57 -04004647 dev_err(port->phy_dev->dev, "cannot allocate Tx queues\n");
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004648 return err;
4649 }
4650
Nevo Hed2a428702019-08-15 18:08:44 -04004651 if (port->phyaddr < PHY_MAX_ADDR) {
Stefan Chulski13b725f2019-08-15 18:08:41 -04004652 mvpp2_phy_connect(dev, port);
Stefan Chulskie09d0c82017-04-06 15:39:08 +02004653 mvpp2_link_event(port);
4654 } else {
4655 mvpp2_egress_enable(port);
4656 mvpp2_ingress_enable(port);
4657 }
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004658
4659 mvpp2_start_dev(port);
4660
4661 return 0;
4662}
4663
4664/* No Device ops here in U-Boot */
4665
4666/* Driver initialization */
4667
4668static void mvpp2_port_power_up(struct mvpp2_port *port)
4669{
Thomas Petazzoni7c7311f2017-02-20 11:42:51 +01004670 struct mvpp2 *priv = port->priv;
4671
Stefan Roese31aa1e32017-03-22 15:07:30 +01004672 /* On PPv2.2 the GoP / interface configuration has already been done */
4673 if (priv->hw_version == MVPP21)
4674 mvpp2_port_mii_set(port);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004675 mvpp2_port_periodic_xon_disable(port);
Thomas Petazzoni7c7311f2017-02-20 11:42:51 +01004676 if (priv->hw_version == MVPP21)
4677 mvpp2_port_fc_adv_enable(port);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004678 mvpp2_port_reset(port);
4679}
4680
4681/* Initialize port HW */
4682static int mvpp2_port_init(struct udevice *dev, struct mvpp2_port *port)
4683{
4684 struct mvpp2 *priv = port->priv;
4685 struct mvpp2_txq_pcpu *txq_pcpu;
4686 int queue, cpu, err;
4687
Thomas Petazzoni09b3f942017-02-16 09:03:16 +01004688 if (port->first_rxq + rxq_number >
4689 MVPP2_MAX_PORTS * priv->max_port_rxqs)
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004690 return -EINVAL;
4691
4692 /* Disable port */
4693 mvpp2_egress_disable(port);
Stefan Roese31aa1e32017-03-22 15:07:30 +01004694 if (priv->hw_version == MVPP21)
4695 mvpp2_port_disable(port);
4696 else
4697 gop_port_enable(port, 0);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004698
4699 port->txqs = devm_kcalloc(dev, txq_number, sizeof(*port->txqs),
4700 GFP_KERNEL);
4701 if (!port->txqs)
4702 return -ENOMEM;
4703
4704 /* Associate physical Tx queues to this port and initialize.
4705 * The mapping is predefined.
4706 */
4707 for (queue = 0; queue < txq_number; queue++) {
4708 int queue_phy_id = mvpp2_txq_phys(port->id, queue);
4709 struct mvpp2_tx_queue *txq;
4710
4711 txq = devm_kzalloc(dev, sizeof(*txq), GFP_KERNEL);
4712 if (!txq)
4713 return -ENOMEM;
4714
4715 txq->pcpu = devm_kzalloc(dev, sizeof(struct mvpp2_txq_pcpu),
4716 GFP_KERNEL);
4717 if (!txq->pcpu)
4718 return -ENOMEM;
4719
4720 txq->id = queue_phy_id;
4721 txq->log_id = queue;
4722 txq->done_pkts_coal = MVPP2_TXDONE_COAL_PKTS_THRESH;
4723 for_each_present_cpu(cpu) {
4724 txq_pcpu = per_cpu_ptr(txq->pcpu, cpu);
4725 txq_pcpu->cpu = cpu;
4726 }
4727
4728 port->txqs[queue] = txq;
4729 }
4730
4731 port->rxqs = devm_kcalloc(dev, rxq_number, sizeof(*port->rxqs),
4732 GFP_KERNEL);
4733 if (!port->rxqs)
4734 return -ENOMEM;
4735
4736 /* Allocate and initialize Rx queue for this port */
4737 for (queue = 0; queue < rxq_number; queue++) {
4738 struct mvpp2_rx_queue *rxq;
4739
4740 /* Map physical Rx queue to port's logical Rx queue */
4741 rxq = devm_kzalloc(dev, sizeof(*rxq), GFP_KERNEL);
4742 if (!rxq)
4743 return -ENOMEM;
4744 /* Map this Rx queue to a physical queue */
4745 rxq->id = port->first_rxq + queue;
4746 rxq->port = port->id;
4747 rxq->logic_rxq = queue;
4748
4749 port->rxqs[queue] = rxq;
4750 }
4751
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004752
4753 /* Create Rx descriptor rings */
4754 for (queue = 0; queue < rxq_number; queue++) {
4755 struct mvpp2_rx_queue *rxq = port->rxqs[queue];
4756
4757 rxq->size = port->rx_ring_size;
4758 rxq->pkts_coal = MVPP2_RX_COAL_PKTS;
4759 rxq->time_coal = MVPP2_RX_COAL_USEC;
4760 }
4761
4762 mvpp2_ingress_disable(port);
4763
4764 /* Port default configuration */
4765 mvpp2_defaults_set(port);
4766
4767 /* Port's classifier configuration */
4768 mvpp2_cls_oversize_rxq_set(port);
4769 mvpp2_cls_port_config(port);
4770
4771 /* Provide an initial Rx packet size */
4772 port->pkt_size = MVPP2_RX_PKT_SIZE(PKTSIZE_ALIGN);
4773
4774 /* Initialize pools for swf */
4775 err = mvpp2_swf_bm_pool_init(port);
4776 if (err)
4777 return err;
4778
4779 return 0;
4780}
4781
Stefan Roese66b11cc2017-03-22 14:11:16 +01004782static int phy_info_parse(struct udevice *dev, struct mvpp2_port *port)
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004783{
Stefan Roese66b11cc2017-03-22 14:11:16 +01004784 int port_node = dev_of_offset(dev);
4785 const char *phy_mode_str;
Baruch Siachacce7532018-11-21 13:05:33 +02004786 int phy_node;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004787 u32 id;
Stefan Chulskie09d0c82017-04-06 15:39:08 +02004788 u32 phyaddr = 0;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004789 int phy_mode = -1;
Nevo Hed2a428702019-08-15 18:08:44 -04004790 int ret;
Baruch Siach21586cd2018-11-21 13:05:34 +02004791
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004792 phy_node = fdtdec_lookup_phandle(gd->fdt_blob, port_node, "phy");
Stefan Chulskie09d0c82017-04-06 15:39:08 +02004793
4794 if (phy_node > 0) {
Nevo Hed2a428702019-08-15 18:08:44 -04004795 int parent;
Stefan Chulskie09d0c82017-04-06 15:39:08 +02004796 phyaddr = fdtdec_get_int(gd->fdt_blob, phy_node, "reg", 0);
4797 if (phyaddr < 0) {
Sean Andersonddc48c12020-09-15 10:44:56 -04004798 dev_err(dev, "could not find phy address\n");
Stefan Chulskie09d0c82017-04-06 15:39:08 +02004799 return -1;
4800 }
Nevo Hed2a428702019-08-15 18:08:44 -04004801 parent = fdt_parent_offset(gd->fdt_blob, phy_node);
4802 ret = uclass_get_device_by_of_offset(UCLASS_MDIO, parent,
4803 &port->mdio_dev);
4804 if (ret)
4805 return ret;
Stefan Chulskie09d0c82017-04-06 15:39:08 +02004806 } else {
Nevo Hed2a428702019-08-15 18:08:44 -04004807 /* phy_addr is set to invalid value */
4808 phyaddr = PHY_MAX_ADDR;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004809 }
4810
4811 phy_mode_str = fdt_getprop(gd->fdt_blob, port_node, "phy-mode", NULL);
4812 if (phy_mode_str)
4813 phy_mode = phy_get_interface_by_name(phy_mode_str);
4814 if (phy_mode == -1) {
Sean Andersonddc48c12020-09-15 10:44:56 -04004815 dev_err(dev, "incorrect phy mode\n");
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004816 return -EINVAL;
4817 }
4818
4819 id = fdtdec_get_int(gd->fdt_blob, port_node, "port-id", -1);
4820 if (id == -1) {
Sean Andersonddc48c12020-09-15 10:44:56 -04004821 dev_err(dev, "missing port-id value\n");
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004822 return -EINVAL;
4823 }
4824
Simon Glassbcee8d62019-12-06 21:41:35 -07004825#if CONFIG_IS_ENABLED(DM_GPIO)
Stefan Chulski41893732017-08-09 10:37:43 +03004826 gpio_request_by_name(dev, "phy-reset-gpios", 0,
4827 &port->phy_reset_gpio, GPIOD_IS_OUT);
4828 gpio_request_by_name(dev, "marvell,sfp-tx-disable-gpio", 0,
4829 &port->phy_tx_disable_gpio, GPIOD_IS_OUT);
4830#endif
4831
Stefan Roese9acb7da2017-03-22 14:15:40 +01004832 /*
4833 * ToDo:
4834 * Not sure if this DT property "phy-speed" will get accepted, so
4835 * this might change later
4836 */
4837 /* Get phy-speed for SGMII 2.5Gbps vs 1Gbps setup */
4838 port->phy_speed = fdtdec_get_int(gd->fdt_blob, port_node,
4839 "phy-speed", 1000);
4840
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004841 port->id = id;
Stefan Roese66b11cc2017-03-22 14:11:16 +01004842 if (port->priv->hw_version == MVPP21)
Thomas Petazzoni09b3f942017-02-16 09:03:16 +01004843 port->first_rxq = port->id * rxq_number;
4844 else
Stefan Roese66b11cc2017-03-22 14:11:16 +01004845 port->first_rxq = port->id * port->priv->max_port_rxqs;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004846 port->phy_interface = phy_mode;
4847 port->phyaddr = phyaddr;
4848
Stefan Roese66b11cc2017-03-22 14:11:16 +01004849 return 0;
4850}
Thomas Petazzoni26a52782017-02-16 08:03:37 +01004851
Simon Glassbcee8d62019-12-06 21:41:35 -07004852#if CONFIG_IS_ENABLED(DM_GPIO)
Stefan Chulski41893732017-08-09 10:37:43 +03004853/* Port GPIO initialization */
4854static void mvpp2_gpio_init(struct mvpp2_port *port)
4855{
4856 if (dm_gpio_is_valid(&port->phy_reset_gpio)) {
Stefan Chulski41893732017-08-09 10:37:43 +03004857 dm_gpio_set_value(&port->phy_reset_gpio, 1);
Baruch Siach18593fa2018-10-15 13:16:48 +03004858 mdelay(10);
Baruch Siachfa140272018-10-15 13:16:47 +03004859 dm_gpio_set_value(&port->phy_reset_gpio, 0);
Stefan Chulski41893732017-08-09 10:37:43 +03004860 }
4861
4862 if (dm_gpio_is_valid(&port->phy_tx_disable_gpio))
4863 dm_gpio_set_value(&port->phy_tx_disable_gpio, 0);
4864}
4865#endif
4866
Stefan Roese66b11cc2017-03-22 14:11:16 +01004867/* Ports initialization */
4868static int mvpp2_port_probe(struct udevice *dev,
4869 struct mvpp2_port *port,
4870 int port_node,
4871 struct mvpp2 *priv)
4872{
4873 int err;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004874
4875 port->tx_ring_size = MVPP2_MAX_TXD;
4876 port->rx_ring_size = MVPP2_MAX_RXD;
4877
4878 err = mvpp2_port_init(dev, port);
4879 if (err < 0) {
Sean Andersonddc48c12020-09-15 10:44:56 -04004880 dev_err(dev, "failed to init port %d\n", port->id);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004881 return err;
4882 }
4883 mvpp2_port_power_up(port);
4884
Simon Glassbcee8d62019-12-06 21:41:35 -07004885#if CONFIG_IS_ENABLED(DM_GPIO)
Stefan Chulski41893732017-08-09 10:37:43 +03004886 mvpp2_gpio_init(port);
4887#endif
4888
Stefan Roese66b11cc2017-03-22 14:11:16 +01004889 priv->port_list[port->id] = port;
Stefan Chulskibb915c82017-08-09 10:37:46 +03004890 priv->num_ports++;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004891 return 0;
4892}
4893
4894/* Initialize decoding windows */
4895static void mvpp2_conf_mbus_windows(const struct mbus_dram_target_info *dram,
4896 struct mvpp2 *priv)
4897{
4898 u32 win_enable;
4899 int i;
4900
4901 for (i = 0; i < 6; i++) {
4902 mvpp2_write(priv, MVPP2_WIN_BASE(i), 0);
4903 mvpp2_write(priv, MVPP2_WIN_SIZE(i), 0);
4904
4905 if (i < 4)
4906 mvpp2_write(priv, MVPP2_WIN_REMAP(i), 0);
4907 }
4908
4909 win_enable = 0;
4910
4911 for (i = 0; i < dram->num_cs; i++) {
4912 const struct mbus_dram_window *cs = dram->cs + i;
4913
4914 mvpp2_write(priv, MVPP2_WIN_BASE(i),
4915 (cs->base & 0xffff0000) | (cs->mbus_attr << 8) |
4916 dram->mbus_dram_target_id);
4917
4918 mvpp2_write(priv, MVPP2_WIN_SIZE(i),
4919 (cs->size - 1) & 0xffff0000);
4920
4921 win_enable |= (1 << i);
4922 }
4923
4924 mvpp2_write(priv, MVPP2_BASE_ADDR_ENABLE, win_enable);
4925}
4926
4927/* Initialize Rx FIFO's */
4928static void mvpp2_rx_fifo_init(struct mvpp2 *priv)
4929{
4930 int port;
4931
4932 for (port = 0; port < MVPP2_MAX_PORTS; port++) {
Stefan Roeseff572c62017-03-01 13:09:42 +01004933 if (priv->hw_version == MVPP22) {
4934 if (port == 0) {
4935 mvpp2_write(priv,
4936 MVPP2_RX_DATA_FIFO_SIZE_REG(port),
4937 MVPP22_RX_FIFO_10GB_PORT_DATA_SIZE);
4938 mvpp2_write(priv,
4939 MVPP2_RX_ATTR_FIFO_SIZE_REG(port),
4940 MVPP22_RX_FIFO_10GB_PORT_ATTR_SIZE);
4941 } else if (port == 1) {
4942 mvpp2_write(priv,
4943 MVPP2_RX_DATA_FIFO_SIZE_REG(port),
4944 MVPP22_RX_FIFO_2_5GB_PORT_DATA_SIZE);
4945 mvpp2_write(priv,
4946 MVPP2_RX_ATTR_FIFO_SIZE_REG(port),
4947 MVPP22_RX_FIFO_2_5GB_PORT_ATTR_SIZE);
4948 } else {
4949 mvpp2_write(priv,
4950 MVPP2_RX_DATA_FIFO_SIZE_REG(port),
4951 MVPP22_RX_FIFO_1GB_PORT_DATA_SIZE);
4952 mvpp2_write(priv,
4953 MVPP2_RX_ATTR_FIFO_SIZE_REG(port),
4954 MVPP22_RX_FIFO_1GB_PORT_ATTR_SIZE);
4955 }
4956 } else {
4957 mvpp2_write(priv, MVPP2_RX_DATA_FIFO_SIZE_REG(port),
4958 MVPP21_RX_FIFO_PORT_DATA_SIZE);
4959 mvpp2_write(priv, MVPP2_RX_ATTR_FIFO_SIZE_REG(port),
4960 MVPP21_RX_FIFO_PORT_ATTR_SIZE);
4961 }
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004962 }
4963
4964 mvpp2_write(priv, MVPP2_RX_MIN_PKT_SIZE_REG,
4965 MVPP2_RX_FIFO_PORT_MIN_PKT);
4966 mvpp2_write(priv, MVPP2_RX_FIFO_INIT_REG, 0x1);
4967}
4968
Stefan Roeseff572c62017-03-01 13:09:42 +01004969/* Initialize Tx FIFO's */
4970static void mvpp2_tx_fifo_init(struct mvpp2 *priv)
4971{
4972 int port, val;
4973
4974 for (port = 0; port < MVPP2_MAX_PORTS; port++) {
4975 /* Port 0 supports 10KB TX FIFO */
4976 if (port == 0) {
4977 val = MVPP2_TX_FIFO_DATA_SIZE_10KB &
4978 MVPP22_TX_FIFO_SIZE_MASK;
4979 } else {
4980 val = MVPP2_TX_FIFO_DATA_SIZE_3KB &
4981 MVPP22_TX_FIFO_SIZE_MASK;
4982 }
4983 mvpp2_write(priv, MVPP22_TX_FIFO_SIZE_REG(port), val);
4984 }
4985}
4986
Thomas Petazzonicdf77792017-02-16 08:41:07 +01004987static void mvpp2_axi_init(struct mvpp2 *priv)
4988{
4989 u32 val, rdval, wrval;
4990
4991 mvpp2_write(priv, MVPP22_BM_ADDR_HIGH_RLS_REG, 0x0);
4992
4993 /* AXI Bridge Configuration */
4994
4995 rdval = MVPP22_AXI_CODE_CACHE_RD_CACHE
4996 << MVPP22_AXI_ATTR_CACHE_OFFS;
4997 rdval |= MVPP22_AXI_CODE_DOMAIN_OUTER_DOM
4998 << MVPP22_AXI_ATTR_DOMAIN_OFFS;
4999
5000 wrval = MVPP22_AXI_CODE_CACHE_WR_CACHE
5001 << MVPP22_AXI_ATTR_CACHE_OFFS;
5002 wrval |= MVPP22_AXI_CODE_DOMAIN_OUTER_DOM
5003 << MVPP22_AXI_ATTR_DOMAIN_OFFS;
5004
5005 /* BM */
5006 mvpp2_write(priv, MVPP22_AXI_BM_WR_ATTR_REG, wrval);
5007 mvpp2_write(priv, MVPP22_AXI_BM_RD_ATTR_REG, rdval);
5008
5009 /* Descriptors */
5010 mvpp2_write(priv, MVPP22_AXI_AGGRQ_DESCR_RD_ATTR_REG, rdval);
5011 mvpp2_write(priv, MVPP22_AXI_TXQ_DESCR_WR_ATTR_REG, wrval);
5012 mvpp2_write(priv, MVPP22_AXI_TXQ_DESCR_RD_ATTR_REG, rdval);
5013 mvpp2_write(priv, MVPP22_AXI_RXQ_DESCR_WR_ATTR_REG, wrval);
5014
5015 /* Buffer Data */
5016 mvpp2_write(priv, MVPP22_AXI_TX_DATA_RD_ATTR_REG, rdval);
5017 mvpp2_write(priv, MVPP22_AXI_RX_DATA_WR_ATTR_REG, wrval);
5018
5019 val = MVPP22_AXI_CODE_CACHE_NON_CACHE
5020 << MVPP22_AXI_CODE_CACHE_OFFS;
5021 val |= MVPP22_AXI_CODE_DOMAIN_SYSTEM
5022 << MVPP22_AXI_CODE_DOMAIN_OFFS;
5023 mvpp2_write(priv, MVPP22_AXI_RD_NORMAL_CODE_REG, val);
5024 mvpp2_write(priv, MVPP22_AXI_WR_NORMAL_CODE_REG, val);
5025
5026 val = MVPP22_AXI_CODE_CACHE_RD_CACHE
5027 << MVPP22_AXI_CODE_CACHE_OFFS;
5028 val |= MVPP22_AXI_CODE_DOMAIN_OUTER_DOM
5029 << MVPP22_AXI_CODE_DOMAIN_OFFS;
5030
5031 mvpp2_write(priv, MVPP22_AXI_RD_SNOOP_CODE_REG, val);
5032
5033 val = MVPP22_AXI_CODE_CACHE_WR_CACHE
5034 << MVPP22_AXI_CODE_CACHE_OFFS;
5035 val |= MVPP22_AXI_CODE_DOMAIN_OUTER_DOM
5036 << MVPP22_AXI_CODE_DOMAIN_OFFS;
5037
5038 mvpp2_write(priv, MVPP22_AXI_WR_SNOOP_CODE_REG, val);
5039}
5040
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005041/* Initialize network controller common part HW */
5042static int mvpp2_init(struct udevice *dev, struct mvpp2 *priv)
5043{
5044 const struct mbus_dram_target_info *dram_target_info;
5045 int err, i;
5046 u32 val;
5047
5048 /* Checks for hardware constraints (U-Boot uses only one rxq) */
Thomas Petazzoni09b3f942017-02-16 09:03:16 +01005049 if ((rxq_number > priv->max_port_rxqs) ||
5050 (txq_number > MVPP2_MAX_TXQ)) {
Sean Andersonddc48c12020-09-15 10:44:56 -04005051 dev_err(dev, "invalid queue size parameter\n");
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005052 return -EINVAL;
5053 }
5054
Thomas Petazzonicdf77792017-02-16 08:41:07 +01005055 if (priv->hw_version == MVPP22)
5056 mvpp2_axi_init(priv);
Stefan Chulskid4b0e002017-08-09 10:37:48 +03005057 else {
5058 /* MBUS windows configuration */
5059 dram_target_info = mvebu_mbus_dram_info();
5060 if (dram_target_info)
5061 mvpp2_conf_mbus_windows(dram_target_info, priv);
5062 }
Thomas Petazzonicdf77792017-02-16 08:41:07 +01005063
Thomas Petazzoni7c7311f2017-02-20 11:42:51 +01005064 if (priv->hw_version == MVPP21) {
Stefan Roese3e3cbb42017-03-09 12:01:57 +01005065 /* Disable HW PHY polling */
Thomas Petazzoni7c7311f2017-02-20 11:42:51 +01005066 val = readl(priv->lms_base + MVPP2_PHY_AN_CFG0_REG);
5067 val |= MVPP2_PHY_AN_STOP_SMI0_MASK;
5068 writel(val, priv->lms_base + MVPP2_PHY_AN_CFG0_REG);
5069 } else {
Stefan Roese3e3cbb42017-03-09 12:01:57 +01005070 /* Enable HW PHY polling */
Thomas Petazzoni7c7311f2017-02-20 11:42:51 +01005071 val = readl(priv->iface_base + MVPP22_SMI_MISC_CFG_REG);
Stefan Roese3e3cbb42017-03-09 12:01:57 +01005072 val |= MVPP22_SMI_POLLING_EN;
Thomas Petazzoni7c7311f2017-02-20 11:42:51 +01005073 writel(val, priv->iface_base + MVPP22_SMI_MISC_CFG_REG);
5074 }
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005075
5076 /* Allocate and initialize aggregated TXQs */
5077 priv->aggr_txqs = devm_kcalloc(dev, num_present_cpus(),
5078 sizeof(struct mvpp2_tx_queue),
5079 GFP_KERNEL);
5080 if (!priv->aggr_txqs)
5081 return -ENOMEM;
5082
5083 for_each_present_cpu(i) {
5084 priv->aggr_txqs[i].id = i;
5085 priv->aggr_txqs[i].size = MVPP2_AGGR_TXQ_SIZE;
5086 err = mvpp2_aggr_txq_init(dev, &priv->aggr_txqs[i],
5087 MVPP2_AGGR_TXQ_SIZE, i, priv);
5088 if (err < 0)
5089 return err;
5090 }
5091
5092 /* Rx Fifo Init */
5093 mvpp2_rx_fifo_init(priv);
5094
Stefan Roeseff572c62017-03-01 13:09:42 +01005095 /* Tx Fifo Init */
5096 if (priv->hw_version == MVPP22)
5097 mvpp2_tx_fifo_init(priv);
5098
Thomas Petazzoni7c7311f2017-02-20 11:42:51 +01005099 if (priv->hw_version == MVPP21)
5100 writel(MVPP2_EXT_GLOBAL_CTRL_DEFAULT,
5101 priv->lms_base + MVPP2_MNG_EXTENDED_GLOBAL_CTRL_REG);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005102
5103 /* Allow cache snoop when transmiting packets */
5104 mvpp2_write(priv, MVPP2_TX_SNOOP_REG, 0x1);
5105
5106 /* Buffer Manager initialization */
5107 err = mvpp2_bm_init(dev, priv);
5108 if (err < 0)
5109 return err;
5110
5111 /* Parser default initialization */
5112 err = mvpp2_prs_default_init(dev, priv);
5113 if (err < 0)
5114 return err;
5115
5116 /* Classifier default initialization */
5117 mvpp2_cls_init(priv);
5118
5119 return 0;
5120}
5121
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005122static int mvpp2_recv(struct udevice *dev, int flags, uchar **packetp)
5123{
5124 struct mvpp2_port *port = dev_get_priv(dev);
5125 struct mvpp2_rx_desc *rx_desc;
5126 struct mvpp2_bm_pool *bm_pool;
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01005127 dma_addr_t dma_addr;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005128 u32 bm, rx_status;
5129 int pool, rx_bytes, err;
5130 int rx_received;
5131 struct mvpp2_rx_queue *rxq;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005132 u8 *data;
5133
Nevo Hed2a428702019-08-15 18:08:44 -04005134 if (port->phyaddr < PHY_MAX_ADDR)
Stefan Chulski13b725f2019-08-15 18:08:41 -04005135 if (!port->phy_dev->link)
5136 return 0;
5137
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005138 /* Process RX packets */
Stefan Chulski16f18d22017-08-09 10:37:49 +03005139 rxq = port->rxqs[0];
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005140
5141 /* Get number of received packets and clamp the to-do */
5142 rx_received = mvpp2_rxq_received(port, rxq->id);
5143
5144 /* Return if no packets are received */
5145 if (!rx_received)
5146 return 0;
5147
5148 rx_desc = mvpp2_rxq_next_desc_get(rxq);
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01005149 rx_status = mvpp2_rxdesc_status_get(port, rx_desc);
5150 rx_bytes = mvpp2_rxdesc_size_get(port, rx_desc);
5151 rx_bytes -= MVPP2_MH_SIZE;
5152 dma_addr = mvpp2_rxdesc_dma_addr_get(port, rx_desc);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005153
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01005154 bm = mvpp2_bm_cookie_build(port, rx_desc);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005155 pool = mvpp2_bm_cookie_pool_get(bm);
5156 bm_pool = &port->priv->bm_pools[pool];
5157
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005158 /* In case of an error, release the requested buffer pointer
5159 * to the Buffer Manager. This request process is controlled
5160 * by the hardware, and the information about the buffer is
5161 * comprised by the RX descriptor.
5162 */
5163 if (rx_status & MVPP2_RXD_ERR_SUMMARY) {
5164 mvpp2_rx_error(port, rx_desc);
5165 /* Return the buffer to the pool */
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01005166 mvpp2_pool_refill(port, bm, dma_addr, dma_addr);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005167 return 0;
5168 }
5169
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01005170 err = mvpp2_rx_refill(port, bm_pool, bm, dma_addr);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005171 if (err) {
Sean Anderson9db60ee2020-09-15 10:44:57 -04005172 dev_err(port->phy_dev->dev, "failed to refill BM pools\n");
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005173 return 0;
5174 }
5175
5176 /* Update Rx queue management counters */
5177 mb();
5178 mvpp2_rxq_status_update(port, rxq->id, 1, 1);
5179
5180 /* give packet to stack - skip on first n bytes */
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01005181 data = (u8 *)dma_addr + 2 + 32;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005182
5183 if (rx_bytes <= 0)
5184 return 0;
5185
5186 /*
5187 * No cache invalidation needed here, since the rx_buffer's are
5188 * located in a uncached memory region
5189 */
5190 *packetp = data;
5191
5192 return rx_bytes;
5193}
5194
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005195static int mvpp2_send(struct udevice *dev, void *packet, int length)
5196{
5197 struct mvpp2_port *port = dev_get_priv(dev);
5198 struct mvpp2_tx_queue *txq, *aggr_txq;
5199 struct mvpp2_tx_desc *tx_desc;
5200 int tx_done;
5201 int timeout;
5202
Nevo Hed2a428702019-08-15 18:08:44 -04005203 if (port->phyaddr < PHY_MAX_ADDR)
Stefan Chulski13b725f2019-08-15 18:08:41 -04005204 if (!port->phy_dev->link)
5205 return 0;
5206
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005207 txq = port->txqs[0];
5208 aggr_txq = &port->priv->aggr_txqs[smp_processor_id()];
5209
5210 /* Get a descriptor for the first part of the packet */
5211 tx_desc = mvpp2_txq_next_desc_get(aggr_txq);
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01005212 mvpp2_txdesc_txq_set(port, tx_desc, txq->id);
5213 mvpp2_txdesc_size_set(port, tx_desc, length);
5214 mvpp2_txdesc_offset_set(port, tx_desc,
5215 (dma_addr_t)packet & MVPP2_TX_DESC_ALIGN);
5216 mvpp2_txdesc_dma_addr_set(port, tx_desc,
5217 (dma_addr_t)packet & ~MVPP2_TX_DESC_ALIGN);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005218 /* First and Last descriptor */
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01005219 mvpp2_txdesc_cmd_set(port, tx_desc,
5220 MVPP2_TXD_L4_CSUM_NOT | MVPP2_TXD_IP_CSUM_DISABLE
5221 | MVPP2_TXD_F_DESC | MVPP2_TXD_L_DESC);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005222
5223 /* Flush tx data */
Stefan Roesef811e042017-02-16 13:58:37 +01005224 flush_dcache_range((unsigned long)packet,
5225 (unsigned long)packet + ALIGN(length, PKTALIGN));
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005226
5227 /* Enable transmit */
5228 mb();
5229 mvpp2_aggr_txq_pend_desc_add(port, 1);
5230
5231 mvpp2_write(port->priv, MVPP2_TXQ_NUM_REG, txq->id);
5232
5233 timeout = 0;
5234 do {
5235 if (timeout++ > 10000) {
5236 printf("timeout: packet not sent from aggregated to phys TXQ\n");
5237 return 0;
5238 }
5239 tx_done = mvpp2_txq_pend_desc_num_get(port, txq);
5240 } while (tx_done);
5241
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005242 timeout = 0;
5243 do {
5244 if (timeout++ > 10000) {
5245 printf("timeout: packet not sent\n");
5246 return 0;
5247 }
5248 tx_done = mvpp2_txq_sent_desc_proc(port, txq);
5249 } while (!tx_done);
5250
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005251 return 0;
5252}
5253
5254static int mvpp2_start(struct udevice *dev)
5255{
Simon Glassc69cda22020-12-03 16:55:20 -07005256 struct eth_pdata *pdata = dev_get_plat(dev);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005257 struct mvpp2_port *port = dev_get_priv(dev);
5258
5259 /* Load current MAC address */
5260 memcpy(port->dev_addr, pdata->enetaddr, ETH_ALEN);
5261
5262 /* Reconfigure parser accept the original MAC address */
5263 mvpp2_prs_update_mac_da(port, port->dev_addr);
5264
Stefan Chulskie09d0c82017-04-06 15:39:08 +02005265 switch (port->phy_interface) {
5266 case PHY_INTERFACE_MODE_RGMII:
5267 case PHY_INTERFACE_MODE_RGMII_ID:
5268 case PHY_INTERFACE_MODE_SGMII:
Stefan Chulski8299abc2021-05-03 08:08:46 +02005269 case PHY_INTERFACE_MODE_1000BASEX:
5270 case PHY_INTERFACE_MODE_2500BASEX:
Stefan Chulskie09d0c82017-04-06 15:39:08 +02005271 mvpp2_port_power_up(port);
5272 default:
5273 break;
5274 }
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005275
5276 mvpp2_open(dev, port);
5277
5278 return 0;
5279}
5280
5281static void mvpp2_stop(struct udevice *dev)
5282{
5283 struct mvpp2_port *port = dev_get_priv(dev);
5284
5285 mvpp2_stop_dev(port);
5286 mvpp2_cleanup_rxqs(port);
5287 mvpp2_cleanup_txqs(port);
5288}
5289
Matt Pellanda37c0822019-07-30 09:40:24 -04005290static int mvpp2_write_hwaddr(struct udevice *dev)
5291{
5292 struct mvpp2_port *port = dev_get_priv(dev);
5293
5294 return mvpp2_prs_update_mac_da(port, port->dev_addr);
5295}
5296
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005297static int mvpp2_base_probe(struct udevice *dev)
5298{
5299 struct mvpp2 *priv = dev_get_priv(dev);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005300 void *bd_space;
5301 u32 size = 0;
5302 int i;
5303
Thomas Petazzoni16a98982017-02-15 14:08:59 +01005304 /* Save hw-version */
5305 priv->hw_version = dev_get_driver_data(dev);
5306
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005307 /*
5308 * U-Boot special buffer handling:
5309 *
5310 * Allocate buffer area for descs and rx_buffers. This is only
5311 * done once for all interfaces. As only one interface can
5312 * be active. Make this area DMA-safe by disabling the D-cache
5313 */
5314
Sven Auhagen3078e032020-07-01 17:43:43 +02005315 if (!buffer_loc_init) {
5316 /* Align buffer area for descs and rx_buffers to 1MiB */
5317 bd_space = memalign(1 << MMU_SECTION_SHIFT, BD_SPACE);
5318 mmu_set_region_dcache_behaviour((unsigned long)bd_space,
5319 BD_SPACE, DCACHE_OFF);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005320
Sven Auhagen3078e032020-07-01 17:43:43 +02005321 buffer_loc.aggr_tx_descs = (struct mvpp2_tx_desc *)bd_space;
5322 size += MVPP2_AGGR_TXQ_SIZE * MVPP2_DESC_ALIGNED_SIZE;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005323
Sven Auhagen3078e032020-07-01 17:43:43 +02005324 buffer_loc.tx_descs =
5325 (struct mvpp2_tx_desc *)((unsigned long)bd_space + size);
5326 size += MVPP2_MAX_TXD * MVPP2_DESC_ALIGNED_SIZE;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005327
Sven Auhagen3078e032020-07-01 17:43:43 +02005328 buffer_loc.rx_descs =
5329 (struct mvpp2_rx_desc *)((unsigned long)bd_space + size);
5330 size += MVPP2_MAX_RXD * MVPP2_DESC_ALIGNED_SIZE;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005331
Sven Auhagen3078e032020-07-01 17:43:43 +02005332 for (i = 0; i < MVPP2_BM_POOLS_NUM; i++) {
5333 buffer_loc.bm_pool[i] =
5334 (unsigned long *)((unsigned long)bd_space + size);
5335 if (priv->hw_version == MVPP21)
5336 size += MVPP2_BM_POOL_SIZE_MAX * 2 * sizeof(u32);
5337 else
5338 size += MVPP2_BM_POOL_SIZE_MAX * 2 * sizeof(u64);
5339 }
5340
5341 for (i = 0; i < MVPP2_BM_LONG_BUF_NUM; i++) {
5342 buffer_loc.rx_buffer[i] =
5343 (unsigned long *)((unsigned long)bd_space + size);
5344 size += RX_BUFFER_SIZE;
5345 }
5346
5347 /* Clear the complete area so that all descriptors are cleared */
5348 memset(bd_space, 0, size);
5349
5350 buffer_loc_init = 1;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005351 }
5352
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005353 /* Save base addresses for later use */
Simon Glassa821c4a2017-05-17 17:18:05 -06005354 priv->base = (void *)devfdt_get_addr_index(dev, 0);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005355 if (IS_ERR(priv->base))
5356 return PTR_ERR(priv->base);
5357
Thomas Petazzoni26a52782017-02-16 08:03:37 +01005358 if (priv->hw_version == MVPP21) {
Simon Glassa821c4a2017-05-17 17:18:05 -06005359 priv->lms_base = (void *)devfdt_get_addr_index(dev, 1);
Thomas Petazzoni26a52782017-02-16 08:03:37 +01005360 if (IS_ERR(priv->lms_base))
5361 return PTR_ERR(priv->lms_base);
5362 } else {
Simon Glassa821c4a2017-05-17 17:18:05 -06005363 priv->iface_base = (void *)devfdt_get_addr_index(dev, 1);
Thomas Petazzoni26a52782017-02-16 08:03:37 +01005364 if (IS_ERR(priv->iface_base))
5365 return PTR_ERR(priv->iface_base);
Stefan Roese0a61e9a2017-02-16 08:31:32 +01005366
Stefan Roese31aa1e32017-03-22 15:07:30 +01005367 /* Store common base addresses for all ports */
5368 priv->mpcs_base = priv->iface_base + MVPP22_MPCS;
5369 priv->xpcs_base = priv->iface_base + MVPP22_XPCS;
5370 priv->rfu1_base = priv->iface_base + MVPP22_RFU1;
Thomas Petazzoni26a52782017-02-16 08:03:37 +01005371 }
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005372
Thomas Petazzoni09b3f942017-02-16 09:03:16 +01005373 if (priv->hw_version == MVPP21)
5374 priv->max_port_rxqs = 8;
5375 else
5376 priv->max_port_rxqs = 32;
5377
Baruch Siach21586cd2018-11-21 13:05:34 +02005378 return 0;
5379}
5380
5381static int mvpp2_probe(struct udevice *dev)
5382{
5383 struct mvpp2_port *port = dev_get_priv(dev);
5384 struct mvpp2 *priv = dev_get_priv(dev->parent);
Baruch Siach21586cd2018-11-21 13:05:34 +02005385 int err;
5386
5387 /* Only call the probe function for the parent once */
5388 if (!priv->probe_done)
5389 err = mvpp2_base_probe(dev->parent);
5390
Nevo Hed2a428702019-08-15 18:08:44 -04005391 port->priv = priv;
Stefan Roese66b11cc2017-03-22 14:11:16 +01005392
5393 err = phy_info_parse(dev, port);
5394 if (err)
5395 return err;
5396
5397 /*
5398 * We need the port specific io base addresses at this stage, since
5399 * gop_port_init() accesses these registers
5400 */
5401 if (priv->hw_version == MVPP21) {
5402 int priv_common_regs_num = 2;
5403
Simon Glassa821c4a2017-05-17 17:18:05 -06005404 port->base = (void __iomem *)devfdt_get_addr_index(
Stefan Roese66b11cc2017-03-22 14:11:16 +01005405 dev->parent, priv_common_regs_num + port->id);
5406 if (IS_ERR(port->base))
5407 return PTR_ERR(port->base);
5408 } else {
5409 port->gop_id = fdtdec_get_int(gd->fdt_blob, dev_of_offset(dev),
5410 "gop-port-id", -1);
5411 if (port->id == -1) {
Sean Andersonddc48c12020-09-15 10:44:56 -04005412 dev_err(dev, "missing gop-port-id value\n");
Stefan Roese66b11cc2017-03-22 14:11:16 +01005413 return -EINVAL;
5414 }
5415
5416 port->base = priv->iface_base + MVPP22_PORT_BASE +
5417 port->gop_id * MVPP22_PORT_OFFSET;
Stefan Roese31aa1e32017-03-22 15:07:30 +01005418
5419 /* GoP Init */
5420 gop_port_init(port);
Stefan Roese66b11cc2017-03-22 14:11:16 +01005421 }
5422
Stefan Chulskibb915c82017-08-09 10:37:46 +03005423 if (!priv->probe_done) {
5424 /* Initialize network controller */
5425 err = mvpp2_init(dev, priv);
5426 if (err < 0) {
Sean Andersonddc48c12020-09-15 10:44:56 -04005427 dev_err(dev, "failed to initialize controller\n");
Stefan Chulskibb915c82017-08-09 10:37:46 +03005428 return err;
5429 }
5430 priv->num_ports = 0;
5431 priv->probe_done = 1;
Stefan Roese1fabbd02017-02-16 15:26:06 +01005432 }
5433
Stefan Roese31aa1e32017-03-22 15:07:30 +01005434 err = mvpp2_port_probe(dev, port, dev_of_offset(dev), priv);
5435 if (err)
5436 return err;
5437
5438 if (priv->hw_version == MVPP22) {
5439 priv->netc_config |= mvpp2_netc_cfg_create(port->gop_id,
5440 port->phy_interface);
5441
5442 /* Netcomplex configurations for all ports */
5443 gop_netc_init(priv, MV_NETC_FIRST_PHASE);
5444 gop_netc_init(priv, MV_NETC_SECOND_PHASE);
5445 }
5446
5447 return 0;
Stefan Roese1fabbd02017-02-16 15:26:06 +01005448}
5449
Stefan Roese2f720f12017-03-23 17:01:59 +01005450/*
5451 * Empty BM pool and stop its activity before the OS is started
5452 */
5453static int mvpp2_remove(struct udevice *dev)
5454{
5455 struct mvpp2_port *port = dev_get_priv(dev);
5456 struct mvpp2 *priv = port->priv;
5457 int i;
5458
Stefan Chulskibb915c82017-08-09 10:37:46 +03005459 priv->num_ports--;
5460
5461 if (priv->num_ports)
5462 return 0;
5463
Stefan Roese2f720f12017-03-23 17:01:59 +01005464 for (i = 0; i < MVPP2_BM_POOLS_NUM; i++)
5465 mvpp2_bm_pool_destroy(dev, priv, &priv->bm_pools[i]);
5466
5467 return 0;
5468}
5469
Stefan Roese1fabbd02017-02-16 15:26:06 +01005470static const struct eth_ops mvpp2_ops = {
5471 .start = mvpp2_start,
5472 .send = mvpp2_send,
5473 .recv = mvpp2_recv,
5474 .stop = mvpp2_stop,
Matt Pellanda37c0822019-07-30 09:40:24 -04005475 .write_hwaddr = mvpp2_write_hwaddr
Stefan Roese1fabbd02017-02-16 15:26:06 +01005476};
5477
5478static struct driver mvpp2_driver = {
5479 .name = "mvpp2",
5480 .id = UCLASS_ETH,
5481 .probe = mvpp2_probe,
Stefan Roese2f720f12017-03-23 17:01:59 +01005482 .remove = mvpp2_remove,
Stefan Roese1fabbd02017-02-16 15:26:06 +01005483 .ops = &mvpp2_ops,
Simon Glass41575d82020-12-03 16:55:17 -07005484 .priv_auto = sizeof(struct mvpp2_port),
Simon Glasscaa4daa2020-12-03 16:55:18 -07005485 .plat_auto = sizeof(struct eth_pdata),
Stefan Roese2f720f12017-03-23 17:01:59 +01005486 .flags = DM_FLAG_ACTIVE_DMA,
Stefan Roese1fabbd02017-02-16 15:26:06 +01005487};
5488
5489/*
5490 * Use a MISC device to bind the n instances (child nodes) of the
5491 * network base controller in UCLASS_ETH.
5492 */
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005493static int mvpp2_base_bind(struct udevice *parent)
5494{
5495 const void *blob = gd->fdt_blob;
Simon Glasse160f7d2017-01-17 16:52:55 -07005496 int node = dev_of_offset(parent);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005497 struct uclass_driver *drv;
5498 struct udevice *dev;
5499 struct eth_pdata *plat;
5500 char *name;
5501 int subnode;
5502 u32 id;
Stefan Roesec9607c92017-02-24 10:12:41 +01005503 int base_id_add;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005504
5505 /* Lookup eth driver */
5506 drv = lists_uclass_lookup(UCLASS_ETH);
5507 if (!drv) {
5508 puts("Cannot find eth driver\n");
5509 return -ENOENT;
5510 }
5511
Stefan Roesec9607c92017-02-24 10:12:41 +01005512 base_id_add = base_id;
5513
Simon Glassdf87e6b2016-10-02 17:59:29 -06005514 fdt_for_each_subnode(subnode, blob, node) {
Stefan Roesec9607c92017-02-24 10:12:41 +01005515 /* Increment base_id for all subnodes, also the disabled ones */
5516 base_id++;
5517
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005518 /* Skip disabled ports */
5519 if (!fdtdec_get_is_enabled(blob, subnode))
5520 continue;
5521
5522 plat = calloc(1, sizeof(*plat));
5523 if (!plat)
5524 return -ENOMEM;
5525
5526 id = fdtdec_get_int(blob, subnode, "port-id", -1);
Stefan Roesec9607c92017-02-24 10:12:41 +01005527 id += base_id_add;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005528
5529 name = calloc(1, 16);
Heinrich Schuchardtb24b1e42018-03-07 03:39:04 +01005530 if (!name) {
5531 free(plat);
5532 return -ENOMEM;
5533 }
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005534 sprintf(name, "mvpp2-%d", id);
5535
5536 /* Create child device UCLASS_ETH and bind it */
Simon Glassa2703ce2020-11-28 17:50:03 -07005537 device_bind(parent, &mvpp2_driver, name, plat,
5538 offset_to_ofnode(subnode), &dev);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005539 }
5540
5541 return 0;
5542}
5543
5544static const struct udevice_id mvpp2_ids[] = {
Thomas Petazzoni16a98982017-02-15 14:08:59 +01005545 {
5546 .compatible = "marvell,armada-375-pp2",
5547 .data = MVPP21,
5548 },
Thomas Petazzonia83a6412017-02-20 11:54:31 +01005549 {
5550 .compatible = "marvell,armada-7k-pp22",
5551 .data = MVPP22,
5552 },
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005553 { }
5554};
5555
5556U_BOOT_DRIVER(mvpp2_base) = {
5557 .name = "mvpp2_base",
5558 .id = UCLASS_MISC,
5559 .of_match = mvpp2_ids,
5560 .bind = mvpp2_base_bind,
Simon Glass41575d82020-12-03 16:55:17 -07005561 .priv_auto = sizeof(struct mvpp2),
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005562};