blob: 015f5329de743315c793043047c8fc1ce010339c [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 Roese31aa1e32017-03-22 15:07:30 +0100493#define MVPP22_SMI_PHY_ADDR_REG(port) (MVPP22_SMI + 0x04 + \
494 (0x4 * (port)))
Thomas Petazzoni26a52782017-02-16 08:03:37 +0100495
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100496#define MVPP2_CAUSE_TXQ_SENT_DESC_ALL_MASK 0xff
497
498/* Descriptor ring Macros */
499#define MVPP2_QUEUE_NEXT_DESC(q, index) \
500 (((index) < (q)->last_desc) ? ((index) + 1) : 0)
501
Stefan Roese0a61e9a2017-02-16 08:31:32 +0100502/* PP2.2: SMI: 0x12a200 -> offset 0x1200 to iface_base */
503#define MVPP22_SMI 0x1200
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100504
Stefan Roese31aa1e32017-03-22 15:07:30 +0100505/* Additional PPv2.2 offsets */
506#define MVPP22_MPCS 0x007000
507#define MVPP22_XPCS 0x007400
508#define MVPP22_PORT_BASE 0x007e00
509#define MVPP22_PORT_OFFSET 0x001000
510#define MVPP22_RFU1 0x318000
511
512/* Maximum number of ports */
513#define MVPP22_GOP_MAC_NUM 4
514
515/* Sets the field located at the specified in data */
516#define MVPP2_RGMII_TX_FIFO_MIN_TH 0x41
517#define MVPP2_SGMII_TX_FIFO_MIN_TH 0x5
518#define MVPP2_SGMII2_5_TX_FIFO_MIN_TH 0xb
519
520/* Net Complex */
521enum mv_netc_topology {
522 MV_NETC_GE_MAC2_SGMII = BIT(0),
Stefan Chulski8d3aa372021-05-03 08:08:45 +0200523 MV_NETC_GE_MAC2_RGMII = BIT(1),
524 MV_NETC_GE_MAC3_SGMII = BIT(2),
525 MV_NETC_GE_MAC3_RGMII = BIT(3),
Stefan Roese31aa1e32017-03-22 15:07:30 +0100526};
527
528enum mv_netc_phase {
529 MV_NETC_FIRST_PHASE,
530 MV_NETC_SECOND_PHASE,
531};
532
533enum mv_netc_sgmii_xmi_mode {
534 MV_NETC_GBE_SGMII,
535 MV_NETC_GBE_XMII,
536};
537
538enum mv_netc_mii_mode {
539 MV_NETC_GBE_RGMII,
540 MV_NETC_GBE_MII,
541};
542
543enum mv_netc_lanes {
544 MV_NETC_LANE_23,
545 MV_NETC_LANE_45,
546};
547
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100548/* Various constants */
549
550/* Coalescing */
551#define MVPP2_TXDONE_COAL_PKTS_THRESH 15
552#define MVPP2_TXDONE_HRTIMER_PERIOD_NS 1000000UL
553#define MVPP2_RX_COAL_PKTS 32
554#define MVPP2_RX_COAL_USEC 100
555
556/* The two bytes Marvell header. Either contains a special value used
557 * by Marvell switches when a specific hardware mode is enabled (not
558 * supported by this driver) or is filled automatically by zeroes on
559 * the RX side. Those two bytes being at the front of the Ethernet
560 * header, they allow to have the IP header aligned on a 4 bytes
561 * boundary automatically: the hardware skips those two bytes on its
562 * own.
563 */
564#define MVPP2_MH_SIZE 2
565#define MVPP2_ETH_TYPE_LEN 2
566#define MVPP2_PPPOE_HDR_SIZE 8
567#define MVPP2_VLAN_TAG_LEN 4
568
569/* Lbtd 802.3 type */
570#define MVPP2_IP_LBDT_TYPE 0xfffa
571
572#define MVPP2_CPU_D_CACHE_LINE_SIZE 32
573#define MVPP2_TX_CSUM_MAX_SIZE 9800
574
575/* Timeout constants */
576#define MVPP2_TX_DISABLE_TIMEOUT_MSEC 1000
577#define MVPP2_TX_PENDING_TIMEOUT_MSEC 1000
578
579#define MVPP2_TX_MTU_MAX 0x7ffff
580
581/* Maximum number of T-CONTs of PON port */
582#define MVPP2_MAX_TCONT 16
583
584/* Maximum number of supported ports */
585#define MVPP2_MAX_PORTS 4
586
587/* Maximum number of TXQs used by single port */
588#define MVPP2_MAX_TXQ 8
589
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100590/* Default number of TXQs in use */
591#define MVPP2_DEFAULT_TXQ 1
592
Flavio Suligoidad9af52020-01-29 09:38:56 +0100593/* Default number of RXQs in use */
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100594#define MVPP2_DEFAULT_RXQ 1
595#define CONFIG_MV_ETH_RXQ 8 /* increment by 8 */
596
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100597/* Max number of Rx descriptors */
598#define MVPP2_MAX_RXD 16
599
600/* Max number of Tx descriptors */
601#define MVPP2_MAX_TXD 16
602
603/* Amount of Tx descriptors that can be reserved at once by CPU */
Stefan Chulskif0e970f2017-08-09 10:37:47 +0300604#define MVPP2_CPU_DESC_CHUNK 16
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100605
606/* Max number of Tx descriptors in each aggregated queue */
Stefan Chulskif0e970f2017-08-09 10:37:47 +0300607#define MVPP2_AGGR_TXQ_SIZE 16
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100608
609/* Descriptor aligned size */
610#define MVPP2_DESC_ALIGNED_SIZE 32
611
612/* Descriptor alignment mask */
613#define MVPP2_TX_DESC_ALIGN (MVPP2_DESC_ALIGNED_SIZE - 1)
614
615/* RX FIFO constants */
Stefan Roeseff572c62017-03-01 13:09:42 +0100616#define MVPP21_RX_FIFO_PORT_DATA_SIZE 0x2000
617#define MVPP21_RX_FIFO_PORT_ATTR_SIZE 0x80
618#define MVPP22_RX_FIFO_10GB_PORT_DATA_SIZE 0x8000
619#define MVPP22_RX_FIFO_2_5GB_PORT_DATA_SIZE 0x2000
620#define MVPP22_RX_FIFO_1GB_PORT_DATA_SIZE 0x1000
621#define MVPP22_RX_FIFO_10GB_PORT_ATTR_SIZE 0x200
622#define MVPP22_RX_FIFO_2_5GB_PORT_ATTR_SIZE 0x80
623#define MVPP22_RX_FIFO_1GB_PORT_ATTR_SIZE 0x40
624#define MVPP2_RX_FIFO_PORT_MIN_PKT 0x80
625
626/* TX general registers */
627#define MVPP22_TX_FIFO_SIZE_REG(eth_tx_port) (0x8860 + ((eth_tx_port) << 2))
628#define MVPP22_TX_FIFO_SIZE_MASK 0xf
629
630/* TX FIFO constants */
631#define MVPP2_TX_FIFO_DATA_SIZE_10KB 0xa
632#define MVPP2_TX_FIFO_DATA_SIZE_3KB 0x3
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100633
634/* RX buffer constants */
635#define MVPP2_SKB_SHINFO_SIZE \
636 0
637
638#define MVPP2_RX_PKT_SIZE(mtu) \
639 ALIGN((mtu) + MVPP2_MH_SIZE + MVPP2_VLAN_TAG_LEN + \
640 ETH_HLEN + ETH_FCS_LEN, MVPP2_CPU_D_CACHE_LINE_SIZE)
641
642#define MVPP2_RX_BUF_SIZE(pkt_size) ((pkt_size) + NET_SKB_PAD)
643#define MVPP2_RX_TOTAL_SIZE(buf_size) ((buf_size) + MVPP2_SKB_SHINFO_SIZE)
644#define MVPP2_RX_MAX_PKT_SIZE(total_size) \
645 ((total_size) - NET_SKB_PAD - MVPP2_SKB_SHINFO_SIZE)
646
647#define MVPP2_BIT_TO_BYTE(bit) ((bit) / 8)
648
649/* IPv6 max L3 address size */
650#define MVPP2_MAX_L3_ADDR_SIZE 16
651
652/* Port flags */
653#define MVPP2_F_LOOPBACK BIT(0)
654
655/* Marvell tag types */
656enum mvpp2_tag_type {
657 MVPP2_TAG_TYPE_NONE = 0,
658 MVPP2_TAG_TYPE_MH = 1,
659 MVPP2_TAG_TYPE_DSA = 2,
660 MVPP2_TAG_TYPE_EDSA = 3,
661 MVPP2_TAG_TYPE_VLAN = 4,
662 MVPP2_TAG_TYPE_LAST = 5
663};
664
665/* Parser constants */
666#define MVPP2_PRS_TCAM_SRAM_SIZE 256
667#define MVPP2_PRS_TCAM_WORDS 6
668#define MVPP2_PRS_SRAM_WORDS 4
669#define MVPP2_PRS_FLOW_ID_SIZE 64
670#define MVPP2_PRS_FLOW_ID_MASK 0x3f
671#define MVPP2_PRS_TCAM_ENTRY_INVALID 1
672#define MVPP2_PRS_TCAM_DSA_TAGGED_BIT BIT(5)
673#define MVPP2_PRS_IPV4_HEAD 0x40
674#define MVPP2_PRS_IPV4_HEAD_MASK 0xf0
675#define MVPP2_PRS_IPV4_MC 0xe0
676#define MVPP2_PRS_IPV4_MC_MASK 0xf0
677#define MVPP2_PRS_IPV4_BC_MASK 0xff
678#define MVPP2_PRS_IPV4_IHL 0x5
679#define MVPP2_PRS_IPV4_IHL_MASK 0xf
680#define MVPP2_PRS_IPV6_MC 0xff
681#define MVPP2_PRS_IPV6_MC_MASK 0xff
682#define MVPP2_PRS_IPV6_HOP_MASK 0xff
683#define MVPP2_PRS_TCAM_PROTO_MASK 0xff
684#define MVPP2_PRS_TCAM_PROTO_MASK_L 0x3f
685#define MVPP2_PRS_DBL_VLANS_MAX 100
686
687/* Tcam structure:
688 * - lookup ID - 4 bits
689 * - port ID - 1 byte
690 * - additional information - 1 byte
691 * - header data - 8 bytes
692 * The fields are represented by MVPP2_PRS_TCAM_DATA_REG(5)->(0).
693 */
694#define MVPP2_PRS_AI_BITS 8
695#define MVPP2_PRS_PORT_MASK 0xff
696#define MVPP2_PRS_LU_MASK 0xf
697#define MVPP2_PRS_TCAM_DATA_BYTE(offs) \
698 (((offs) - ((offs) % 2)) * 2 + ((offs) % 2))
699#define MVPP2_PRS_TCAM_DATA_BYTE_EN(offs) \
700 (((offs) * 2) - ((offs) % 2) + 2)
701#define MVPP2_PRS_TCAM_AI_BYTE 16
702#define MVPP2_PRS_TCAM_PORT_BYTE 17
703#define MVPP2_PRS_TCAM_LU_BYTE 20
704#define MVPP2_PRS_TCAM_EN_OFFS(offs) ((offs) + 2)
705#define MVPP2_PRS_TCAM_INV_WORD 5
706/* Tcam entries ID */
707#define MVPP2_PE_DROP_ALL 0
708#define MVPP2_PE_FIRST_FREE_TID 1
709#define MVPP2_PE_LAST_FREE_TID (MVPP2_PRS_TCAM_SRAM_SIZE - 31)
710#define MVPP2_PE_IP6_EXT_PROTO_UN (MVPP2_PRS_TCAM_SRAM_SIZE - 30)
711#define MVPP2_PE_MAC_MC_IP6 (MVPP2_PRS_TCAM_SRAM_SIZE - 29)
712#define MVPP2_PE_IP6_ADDR_UN (MVPP2_PRS_TCAM_SRAM_SIZE - 28)
713#define MVPP2_PE_IP4_ADDR_UN (MVPP2_PRS_TCAM_SRAM_SIZE - 27)
714#define MVPP2_PE_LAST_DEFAULT_FLOW (MVPP2_PRS_TCAM_SRAM_SIZE - 26)
715#define MVPP2_PE_FIRST_DEFAULT_FLOW (MVPP2_PRS_TCAM_SRAM_SIZE - 19)
716#define MVPP2_PE_EDSA_TAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 18)
717#define MVPP2_PE_EDSA_UNTAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 17)
718#define MVPP2_PE_DSA_TAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 16)
719#define MVPP2_PE_DSA_UNTAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 15)
720#define MVPP2_PE_ETYPE_EDSA_TAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 14)
721#define MVPP2_PE_ETYPE_EDSA_UNTAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 13)
722#define MVPP2_PE_ETYPE_DSA_TAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 12)
723#define MVPP2_PE_ETYPE_DSA_UNTAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 11)
724#define MVPP2_PE_MH_DEFAULT (MVPP2_PRS_TCAM_SRAM_SIZE - 10)
725#define MVPP2_PE_DSA_DEFAULT (MVPP2_PRS_TCAM_SRAM_SIZE - 9)
726#define MVPP2_PE_IP6_PROTO_UN (MVPP2_PRS_TCAM_SRAM_SIZE - 8)
727#define MVPP2_PE_IP4_PROTO_UN (MVPP2_PRS_TCAM_SRAM_SIZE - 7)
728#define MVPP2_PE_ETH_TYPE_UN (MVPP2_PRS_TCAM_SRAM_SIZE - 6)
729#define MVPP2_PE_VLAN_DBL (MVPP2_PRS_TCAM_SRAM_SIZE - 5)
730#define MVPP2_PE_VLAN_NONE (MVPP2_PRS_TCAM_SRAM_SIZE - 4)
731#define MVPP2_PE_MAC_MC_ALL (MVPP2_PRS_TCAM_SRAM_SIZE - 3)
732#define MVPP2_PE_MAC_PROMISCUOUS (MVPP2_PRS_TCAM_SRAM_SIZE - 2)
733#define MVPP2_PE_MAC_NON_PROMISCUOUS (MVPP2_PRS_TCAM_SRAM_SIZE - 1)
734
735/* Sram structure
736 * The fields are represented by MVPP2_PRS_TCAM_DATA_REG(3)->(0).
737 */
738#define MVPP2_PRS_SRAM_RI_OFFS 0
739#define MVPP2_PRS_SRAM_RI_WORD 0
740#define MVPP2_PRS_SRAM_RI_CTRL_OFFS 32
741#define MVPP2_PRS_SRAM_RI_CTRL_WORD 1
742#define MVPP2_PRS_SRAM_RI_CTRL_BITS 32
743#define MVPP2_PRS_SRAM_SHIFT_OFFS 64
744#define MVPP2_PRS_SRAM_SHIFT_SIGN_BIT 72
745#define MVPP2_PRS_SRAM_UDF_OFFS 73
746#define MVPP2_PRS_SRAM_UDF_BITS 8
747#define MVPP2_PRS_SRAM_UDF_MASK 0xff
748#define MVPP2_PRS_SRAM_UDF_SIGN_BIT 81
749#define MVPP2_PRS_SRAM_UDF_TYPE_OFFS 82
750#define MVPP2_PRS_SRAM_UDF_TYPE_MASK 0x7
751#define MVPP2_PRS_SRAM_UDF_TYPE_L3 1
752#define MVPP2_PRS_SRAM_UDF_TYPE_L4 4
753#define MVPP2_PRS_SRAM_OP_SEL_SHIFT_OFFS 85
754#define MVPP2_PRS_SRAM_OP_SEL_SHIFT_MASK 0x3
755#define MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD 1
756#define MVPP2_PRS_SRAM_OP_SEL_SHIFT_IP4_ADD 2
757#define MVPP2_PRS_SRAM_OP_SEL_SHIFT_IP6_ADD 3
758#define MVPP2_PRS_SRAM_OP_SEL_UDF_OFFS 87
759#define MVPP2_PRS_SRAM_OP_SEL_UDF_BITS 2
760#define MVPP2_PRS_SRAM_OP_SEL_UDF_MASK 0x3
761#define MVPP2_PRS_SRAM_OP_SEL_UDF_ADD 0
762#define MVPP2_PRS_SRAM_OP_SEL_UDF_IP4_ADD 2
763#define MVPP2_PRS_SRAM_OP_SEL_UDF_IP6_ADD 3
764#define MVPP2_PRS_SRAM_OP_SEL_BASE_OFFS 89
765#define MVPP2_PRS_SRAM_AI_OFFS 90
766#define MVPP2_PRS_SRAM_AI_CTRL_OFFS 98
767#define MVPP2_PRS_SRAM_AI_CTRL_BITS 8
768#define MVPP2_PRS_SRAM_AI_MASK 0xff
769#define MVPP2_PRS_SRAM_NEXT_LU_OFFS 106
770#define MVPP2_PRS_SRAM_NEXT_LU_MASK 0xf
771#define MVPP2_PRS_SRAM_LU_DONE_BIT 110
772#define MVPP2_PRS_SRAM_LU_GEN_BIT 111
773
774/* Sram result info bits assignment */
775#define MVPP2_PRS_RI_MAC_ME_MASK 0x1
776#define MVPP2_PRS_RI_DSA_MASK 0x2
Thomas Petazzonic0abc762017-02-15 12:19:36 +0100777#define MVPP2_PRS_RI_VLAN_MASK (BIT(2) | BIT(3))
778#define MVPP2_PRS_RI_VLAN_NONE 0x0
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100779#define MVPP2_PRS_RI_VLAN_SINGLE BIT(2)
780#define MVPP2_PRS_RI_VLAN_DOUBLE BIT(3)
781#define MVPP2_PRS_RI_VLAN_TRIPLE (BIT(2) | BIT(3))
782#define MVPP2_PRS_RI_CPU_CODE_MASK 0x70
783#define MVPP2_PRS_RI_CPU_CODE_RX_SPEC BIT(4)
Thomas Petazzonic0abc762017-02-15 12:19:36 +0100784#define MVPP2_PRS_RI_L2_CAST_MASK (BIT(9) | BIT(10))
785#define MVPP2_PRS_RI_L2_UCAST 0x0
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100786#define MVPP2_PRS_RI_L2_MCAST BIT(9)
787#define MVPP2_PRS_RI_L2_BCAST BIT(10)
788#define MVPP2_PRS_RI_PPPOE_MASK 0x800
Thomas Petazzonic0abc762017-02-15 12:19:36 +0100789#define MVPP2_PRS_RI_L3_PROTO_MASK (BIT(12) | BIT(13) | BIT(14))
790#define MVPP2_PRS_RI_L3_UN 0x0
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100791#define MVPP2_PRS_RI_L3_IP4 BIT(12)
792#define MVPP2_PRS_RI_L3_IP4_OPT BIT(13)
793#define MVPP2_PRS_RI_L3_IP4_OTHER (BIT(12) | BIT(13))
794#define MVPP2_PRS_RI_L3_IP6 BIT(14)
795#define MVPP2_PRS_RI_L3_IP6_EXT (BIT(12) | BIT(14))
796#define MVPP2_PRS_RI_L3_ARP (BIT(13) | BIT(14))
Thomas Petazzonic0abc762017-02-15 12:19:36 +0100797#define MVPP2_PRS_RI_L3_ADDR_MASK (BIT(15) | BIT(16))
798#define MVPP2_PRS_RI_L3_UCAST 0x0
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100799#define MVPP2_PRS_RI_L3_MCAST BIT(15)
800#define MVPP2_PRS_RI_L3_BCAST (BIT(15) | BIT(16))
801#define MVPP2_PRS_RI_IP_FRAG_MASK 0x20000
802#define MVPP2_PRS_RI_UDF3_MASK 0x300000
803#define MVPP2_PRS_RI_UDF3_RX_SPECIAL BIT(21)
804#define MVPP2_PRS_RI_L4_PROTO_MASK 0x1c00000
805#define MVPP2_PRS_RI_L4_TCP BIT(22)
806#define MVPP2_PRS_RI_L4_UDP BIT(23)
807#define MVPP2_PRS_RI_L4_OTHER (BIT(22) | BIT(23))
808#define MVPP2_PRS_RI_UDF7_MASK 0x60000000
809#define MVPP2_PRS_RI_UDF7_IP6_LITE BIT(29)
810#define MVPP2_PRS_RI_DROP_MASK 0x80000000
811
812/* Sram additional info bits assignment */
813#define MVPP2_PRS_IPV4_DIP_AI_BIT BIT(0)
814#define MVPP2_PRS_IPV6_NO_EXT_AI_BIT BIT(0)
815#define MVPP2_PRS_IPV6_EXT_AI_BIT BIT(1)
816#define MVPP2_PRS_IPV6_EXT_AH_AI_BIT BIT(2)
817#define MVPP2_PRS_IPV6_EXT_AH_LEN_AI_BIT BIT(3)
818#define MVPP2_PRS_IPV6_EXT_AH_L4_AI_BIT BIT(4)
819#define MVPP2_PRS_SINGLE_VLAN_AI 0
820#define MVPP2_PRS_DBL_VLAN_AI_BIT BIT(7)
821
822/* DSA/EDSA type */
823#define MVPP2_PRS_TAGGED true
824#define MVPP2_PRS_UNTAGGED false
825#define MVPP2_PRS_EDSA true
826#define MVPP2_PRS_DSA false
827
828/* MAC entries, shadow udf */
829enum mvpp2_prs_udf {
830 MVPP2_PRS_UDF_MAC_DEF,
831 MVPP2_PRS_UDF_MAC_RANGE,
832 MVPP2_PRS_UDF_L2_DEF,
833 MVPP2_PRS_UDF_L2_DEF_COPY,
834 MVPP2_PRS_UDF_L2_USER,
835};
836
837/* Lookup ID */
838enum mvpp2_prs_lookup {
839 MVPP2_PRS_LU_MH,
840 MVPP2_PRS_LU_MAC,
841 MVPP2_PRS_LU_DSA,
842 MVPP2_PRS_LU_VLAN,
843 MVPP2_PRS_LU_L2,
844 MVPP2_PRS_LU_PPPOE,
845 MVPP2_PRS_LU_IP4,
846 MVPP2_PRS_LU_IP6,
847 MVPP2_PRS_LU_FLOWS,
848 MVPP2_PRS_LU_LAST,
849};
850
851/* L3 cast enum */
852enum mvpp2_prs_l3_cast {
853 MVPP2_PRS_L3_UNI_CAST,
854 MVPP2_PRS_L3_MULTI_CAST,
855 MVPP2_PRS_L3_BROAD_CAST
856};
857
858/* Classifier constants */
859#define MVPP2_CLS_FLOWS_TBL_SIZE 512
860#define MVPP2_CLS_FLOWS_TBL_DATA_WORDS 3
861#define MVPP2_CLS_LKP_TBL_SIZE 64
862
863/* BM constants */
864#define MVPP2_BM_POOLS_NUM 1
865#define MVPP2_BM_LONG_BUF_NUM 16
866#define MVPP2_BM_SHORT_BUF_NUM 16
867#define MVPP2_BM_POOL_SIZE_MAX (16*1024 - MVPP2_BM_POOL_PTR_ALIGN/4)
868#define MVPP2_BM_POOL_PTR_ALIGN 128
869#define MVPP2_BM_SWF_LONG_POOL(port) 0
870
871/* BM cookie (32 bits) definition */
872#define MVPP2_BM_COOKIE_POOL_OFFS 8
873#define MVPP2_BM_COOKIE_CPU_OFFS 24
874
875/* BM short pool packet size
876 * These value assure that for SWF the total number
877 * of bytes allocated for each buffer will be 512
878 */
879#define MVPP2_BM_SHORT_PKT_SIZE MVPP2_RX_MAX_PKT_SIZE(512)
880
881enum mvpp2_bm_type {
882 MVPP2_BM_FREE,
883 MVPP2_BM_SWF_LONG,
884 MVPP2_BM_SWF_SHORT
885};
886
887/* Definitions */
888
889/* Shared Packet Processor resources */
890struct mvpp2 {
891 /* Shared registers' base addresses */
892 void __iomem *base;
893 void __iomem *lms_base;
Thomas Petazzoni26a52782017-02-16 08:03:37 +0100894 void __iomem *iface_base;
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100895
Stefan Roese31aa1e32017-03-22 15:07:30 +0100896 void __iomem *mpcs_base;
897 void __iomem *xpcs_base;
898 void __iomem *rfu1_base;
899
900 u32 netc_config;
901
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100902 /* List of pointers to port structures */
903 struct mvpp2_port **port_list;
904
905 /* Aggregated TXQs */
906 struct mvpp2_tx_queue *aggr_txqs;
907
908 /* BM pools */
909 struct mvpp2_bm_pool *bm_pools;
910
911 /* PRS shadow table */
912 struct mvpp2_prs_shadow *prs_shadow;
913 /* PRS auxiliary table for double vlan entries control */
914 bool *prs_double_vlans;
915
916 /* Tclk value */
917 u32 tclk;
918
Thomas Petazzoni16a98982017-02-15 14:08:59 +0100919 /* HW version */
920 enum { MVPP21, MVPP22 } hw_version;
921
Thomas Petazzoni09b3f942017-02-16 09:03:16 +0100922 /* Maximum number of RXQs per port */
923 unsigned int max_port_rxqs;
924
Stefan Roese1fabbd02017-02-16 15:26:06 +0100925 int probe_done;
Stefan Chulskibb915c82017-08-09 10:37:46 +0300926 u8 num_ports;
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100927};
928
929struct mvpp2_pcpu_stats {
930 u64 rx_packets;
931 u64 rx_bytes;
932 u64 tx_packets;
933 u64 tx_bytes;
934};
935
936struct mvpp2_port {
937 u8 id;
938
Thomas Petazzoni26a52782017-02-16 08:03:37 +0100939 /* Index of the port from the "group of ports" complex point
940 * of view
941 */
942 int gop_id;
943
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100944 int irq;
945
946 struct mvpp2 *priv;
947
948 /* Per-port registers' base address */
949 void __iomem *base;
950
951 struct mvpp2_rx_queue **rxqs;
952 struct mvpp2_tx_queue **txqs;
953
954 int pkt_size;
955
956 u32 pending_cause_rx;
957
958 /* Per-CPU port control */
959 struct mvpp2_port_pcpu __percpu *pcpu;
960
961 /* Flags */
962 unsigned long flags;
963
964 u16 tx_ring_size;
965 u16 rx_ring_size;
966 struct mvpp2_pcpu_stats __percpu *stats;
967
968 struct phy_device *phy_dev;
969 phy_interface_t phy_interface;
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100970 int phyaddr;
Nevo Hed2a428702019-08-15 18:08:44 -0400971 struct udevice *mdio_dev;
Simon Glassbcee8d62019-12-06 21:41:35 -0700972 struct mii_dev *bus;
973#if CONFIG_IS_ENABLED(DM_GPIO)
Stefan Chulski41893732017-08-09 10:37:43 +0300974 struct gpio_desc phy_reset_gpio;
975 struct gpio_desc phy_tx_disable_gpio;
976#endif
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100977 int init;
978 unsigned int link;
979 unsigned int duplex;
980 unsigned int speed;
981
Stefan Roese9acb7da2017-03-22 14:15:40 +0100982 unsigned int phy_speed; /* SGMII 1Gbps vs 2.5Gbps */
983
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100984 struct mvpp2_bm_pool *pool_long;
985 struct mvpp2_bm_pool *pool_short;
986
987 /* Index of first port's physical RXQ */
988 u8 first_rxq;
989
990 u8 dev_addr[ETH_ALEN];
991};
992
993/* The mvpp2_tx_desc and mvpp2_rx_desc structures describe the
994 * layout of the transmit and reception DMA descriptors, and their
995 * layout is therefore defined by the hardware design
996 */
997
998#define MVPP2_TXD_L3_OFF_SHIFT 0
999#define MVPP2_TXD_IP_HLEN_SHIFT 8
1000#define MVPP2_TXD_L4_CSUM_FRAG BIT(13)
1001#define MVPP2_TXD_L4_CSUM_NOT BIT(14)
1002#define MVPP2_TXD_IP_CSUM_DISABLE BIT(15)
1003#define MVPP2_TXD_PADDING_DISABLE BIT(23)
1004#define MVPP2_TXD_L4_UDP BIT(24)
1005#define MVPP2_TXD_L3_IP6 BIT(26)
1006#define MVPP2_TXD_L_DESC BIT(28)
1007#define MVPP2_TXD_F_DESC BIT(29)
1008
1009#define MVPP2_RXD_ERR_SUMMARY BIT(15)
1010#define MVPP2_RXD_ERR_CODE_MASK (BIT(13) | BIT(14))
1011#define MVPP2_RXD_ERR_CRC 0x0
1012#define MVPP2_RXD_ERR_OVERRUN BIT(13)
1013#define MVPP2_RXD_ERR_RESOURCE (BIT(13) | BIT(14))
1014#define MVPP2_RXD_BM_POOL_ID_OFFS 16
1015#define MVPP2_RXD_BM_POOL_ID_MASK (BIT(16) | BIT(17) | BIT(18))
1016#define MVPP2_RXD_HWF_SYNC BIT(21)
1017#define MVPP2_RXD_L4_CSUM_OK BIT(22)
1018#define MVPP2_RXD_IP4_HEADER_ERR BIT(24)
1019#define MVPP2_RXD_L4_TCP BIT(25)
1020#define MVPP2_RXD_L4_UDP BIT(26)
1021#define MVPP2_RXD_L3_IP4 BIT(28)
1022#define MVPP2_RXD_L3_IP6 BIT(30)
1023#define MVPP2_RXD_BUF_HDR BIT(31)
1024
Thomas Petazzoni9a6db0b2017-02-15 16:25:53 +01001025/* HW TX descriptor for PPv2.1 */
1026struct mvpp21_tx_desc {
Stefan Roese99d4c6d2016-02-10 07:22:10 +01001027 u32 command; /* Options used by HW for packet transmitting.*/
1028 u8 packet_offset; /* the offset from the buffer beginning */
1029 u8 phys_txq; /* destination queue ID */
1030 u16 data_size; /* data size of transmitted packet in bytes */
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01001031 u32 buf_dma_addr; /* physical addr of transmitted buffer */
Stefan Roese99d4c6d2016-02-10 07:22:10 +01001032 u32 buf_cookie; /* cookie for access to TX buffer in tx path */
1033 u32 reserved1[3]; /* hw_cmd (for future use, BM, PON, PNC) */
1034 u32 reserved2; /* reserved (for future use) */
1035};
1036
Thomas Petazzoni9a6db0b2017-02-15 16:25:53 +01001037/* HW RX descriptor for PPv2.1 */
1038struct mvpp21_rx_desc {
Stefan Roese99d4c6d2016-02-10 07:22:10 +01001039 u32 status; /* info about received packet */
1040 u16 reserved1; /* parser_info (for future use, PnC) */
1041 u16 data_size; /* size of received packet in bytes */
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01001042 u32 buf_dma_addr; /* physical address of the buffer */
Stefan Roese99d4c6d2016-02-10 07:22:10 +01001043 u32 buf_cookie; /* cookie for access to RX buffer in rx path */
1044 u16 reserved2; /* gem_port_id (for future use, PON) */
1045 u16 reserved3; /* csum_l4 (for future use, PnC) */
1046 u8 reserved4; /* bm_qset (for future use, BM) */
1047 u8 reserved5;
1048 u16 reserved6; /* classify_info (for future use, PnC) */
1049 u32 reserved7; /* flow_id (for future use, PnC) */
1050 u32 reserved8;
1051};
1052
Thomas Petazzonif50a0112017-02-20 11:08:46 +01001053/* HW TX descriptor for PPv2.2 */
1054struct mvpp22_tx_desc {
1055 u32 command;
1056 u8 packet_offset;
1057 u8 phys_txq;
1058 u16 data_size;
1059 u64 reserved1;
1060 u64 buf_dma_addr_ptp;
1061 u64 buf_cookie_misc;
1062};
1063
1064/* HW RX descriptor for PPv2.2 */
1065struct mvpp22_rx_desc {
1066 u32 status;
1067 u16 reserved1;
1068 u16 data_size;
1069 u32 reserved2;
1070 u32 reserved3;
1071 u64 buf_dma_addr_key_hash;
1072 u64 buf_cookie_misc;
1073};
1074
Thomas Petazzoni9a6db0b2017-02-15 16:25:53 +01001075/* Opaque type used by the driver to manipulate the HW TX and RX
1076 * descriptors
1077 */
1078struct mvpp2_tx_desc {
1079 union {
1080 struct mvpp21_tx_desc pp21;
Thomas Petazzonif50a0112017-02-20 11:08:46 +01001081 struct mvpp22_tx_desc pp22;
Thomas Petazzoni9a6db0b2017-02-15 16:25:53 +01001082 };
1083};
1084
1085struct mvpp2_rx_desc {
1086 union {
1087 struct mvpp21_rx_desc pp21;
Thomas Petazzonif50a0112017-02-20 11:08:46 +01001088 struct mvpp22_rx_desc pp22;
Thomas Petazzoni9a6db0b2017-02-15 16:25:53 +01001089 };
1090};
1091
Stefan Roese99d4c6d2016-02-10 07:22:10 +01001092/* Per-CPU Tx queue control */
1093struct mvpp2_txq_pcpu {
1094 int cpu;
1095
1096 /* Number of Tx DMA descriptors in the descriptor ring */
1097 int size;
1098
1099 /* Number of currently used Tx DMA descriptor in the
1100 * descriptor ring
1101 */
1102 int count;
1103
1104 /* Number of Tx DMA descriptors reserved for each CPU */
1105 int reserved_num;
1106
1107 /* Index of last TX DMA descriptor that was inserted */
1108 int txq_put_index;
1109
1110 /* Index of the TX DMA descriptor to be cleaned up */
1111 int txq_get_index;
1112};
1113
1114struct mvpp2_tx_queue {
1115 /* Physical number of this Tx queue */
1116 u8 id;
1117
1118 /* Logical number of this Tx queue */
1119 u8 log_id;
1120
1121 /* Number of Tx DMA descriptors in the descriptor ring */
1122 int size;
1123
1124 /* Number of currently used Tx DMA descriptor in the descriptor ring */
1125 int count;
1126
1127 /* Per-CPU control of physical Tx queues */
1128 struct mvpp2_txq_pcpu __percpu *pcpu;
1129
1130 u32 done_pkts_coal;
1131
1132 /* Virtual address of thex Tx DMA descriptors array */
1133 struct mvpp2_tx_desc *descs;
1134
1135 /* DMA address of the Tx DMA descriptors array */
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01001136 dma_addr_t descs_dma;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01001137
1138 /* Index of the last Tx DMA descriptor */
1139 int last_desc;
1140
1141 /* Index of the next Tx DMA descriptor to process */
1142 int next_desc_to_proc;
1143};
1144
1145struct mvpp2_rx_queue {
1146 /* RX queue number, in the range 0-31 for physical RXQs */
1147 u8 id;
1148
1149 /* Num of rx descriptors in the rx descriptor ring */
1150 int size;
1151
1152 u32 pkts_coal;
1153 u32 time_coal;
1154
1155 /* Virtual address of the RX DMA descriptors array */
1156 struct mvpp2_rx_desc *descs;
1157
1158 /* DMA address of the RX DMA descriptors array */
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01001159 dma_addr_t descs_dma;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01001160
1161 /* Index of the last RX DMA descriptor */
1162 int last_desc;
1163
1164 /* Index of the next RX DMA descriptor to process */
1165 int next_desc_to_proc;
1166
1167 /* ID of port to which physical RXQ is mapped */
1168 int port;
1169
1170 /* Port's logic RXQ number to which physical RXQ is mapped */
1171 int logic_rxq;
1172};
1173
1174union mvpp2_prs_tcam_entry {
1175 u32 word[MVPP2_PRS_TCAM_WORDS];
1176 u8 byte[MVPP2_PRS_TCAM_WORDS * 4];
1177};
1178
1179union mvpp2_prs_sram_entry {
1180 u32 word[MVPP2_PRS_SRAM_WORDS];
1181 u8 byte[MVPP2_PRS_SRAM_WORDS * 4];
1182};
1183
1184struct mvpp2_prs_entry {
1185 u32 index;
1186 union mvpp2_prs_tcam_entry tcam;
1187 union mvpp2_prs_sram_entry sram;
1188};
1189
1190struct mvpp2_prs_shadow {
1191 bool valid;
1192 bool finish;
1193
1194 /* Lookup ID */
1195 int lu;
1196
1197 /* User defined offset */
1198 int udf;
1199
1200 /* Result info */
1201 u32 ri;
1202 u32 ri_mask;
1203};
1204
1205struct mvpp2_cls_flow_entry {
1206 u32 index;
1207 u32 data[MVPP2_CLS_FLOWS_TBL_DATA_WORDS];
1208};
1209
1210struct mvpp2_cls_lookup_entry {
1211 u32 lkpid;
1212 u32 way;
1213 u32 data;
1214};
1215
1216struct mvpp2_bm_pool {
1217 /* Pool number in the range 0-7 */
1218 int id;
1219 enum mvpp2_bm_type type;
1220
1221 /* Buffer Pointers Pool External (BPPE) size */
1222 int size;
1223 /* Number of buffers for this pool */
1224 int buf_num;
1225 /* Pool buffer size */
1226 int buf_size;
1227 /* Packet size */
1228 int pkt_size;
1229
1230 /* BPPE virtual base address */
Stefan Roesea7c28ff2017-02-15 12:46:18 +01001231 unsigned long *virt_addr;
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01001232 /* BPPE DMA base address */
1233 dma_addr_t dma_addr;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01001234
1235 /* Ports using BM pool */
1236 u32 port_map;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01001237};
1238
Stefan Roese99d4c6d2016-02-10 07:22:10 +01001239/* Static declaractions */
1240
1241/* Number of RXQs used by single port */
1242static int rxq_number = MVPP2_DEFAULT_RXQ;
1243/* Number of TXQs used by single port */
1244static int txq_number = MVPP2_DEFAULT_TXQ;
1245
Stefan Roesec9607c92017-02-24 10:12:41 +01001246static int base_id;
1247
Stefan Roese99d4c6d2016-02-10 07:22:10 +01001248#define MVPP2_DRIVER_NAME "mvpp2"
1249#define MVPP2_DRIVER_VERSION "1.0"
1250
1251/*
1252 * U-Boot internal data, mostly uncached buffers for descriptors and data
1253 */
1254struct buffer_location {
1255 struct mvpp2_tx_desc *aggr_tx_descs;
1256 struct mvpp2_tx_desc *tx_descs;
1257 struct mvpp2_rx_desc *rx_descs;
Stefan Roesea7c28ff2017-02-15 12:46:18 +01001258 unsigned long *bm_pool[MVPP2_BM_POOLS_NUM];
1259 unsigned long *rx_buffer[MVPP2_BM_LONG_BUF_NUM];
Stefan Roese99d4c6d2016-02-10 07:22:10 +01001260 int first_rxq;
1261};
1262
1263/*
1264 * All 4 interfaces use the same global buffer, since only one interface
1265 * can be enabled at once
1266 */
1267static struct buffer_location buffer_loc;
Sven Auhagen3078e032020-07-01 17:43:43 +02001268static int buffer_loc_init;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01001269
1270/*
1271 * Page table entries are set to 1MB, or multiples of 1MB
1272 * (not < 1MB). driver uses less bd's so use 1MB bdspace.
1273 */
1274#define BD_SPACE (1 << 20)
1275
1276/* Utility/helper methods */
1277
1278static void mvpp2_write(struct mvpp2 *priv, u32 offset, u32 data)
1279{
1280 writel(data, priv->base + offset);
1281}
1282
1283static u32 mvpp2_read(struct mvpp2 *priv, u32 offset)
1284{
1285 return readl(priv->base + offset);
1286}
1287
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01001288static void mvpp2_txdesc_dma_addr_set(struct mvpp2_port *port,
1289 struct mvpp2_tx_desc *tx_desc,
1290 dma_addr_t dma_addr)
1291{
Thomas Petazzonif50a0112017-02-20 11:08:46 +01001292 if (port->priv->hw_version == MVPP21) {
1293 tx_desc->pp21.buf_dma_addr = dma_addr;
1294 } else {
1295 u64 val = (u64)dma_addr;
1296
1297 tx_desc->pp22.buf_dma_addr_ptp &= ~GENMASK_ULL(40, 0);
1298 tx_desc->pp22.buf_dma_addr_ptp |= val;
1299 }
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01001300}
1301
1302static void mvpp2_txdesc_size_set(struct mvpp2_port *port,
1303 struct mvpp2_tx_desc *tx_desc,
1304 size_t size)
1305{
Thomas Petazzonif50a0112017-02-20 11:08:46 +01001306 if (port->priv->hw_version == MVPP21)
1307 tx_desc->pp21.data_size = size;
1308 else
1309 tx_desc->pp22.data_size = size;
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01001310}
1311
1312static void mvpp2_txdesc_txq_set(struct mvpp2_port *port,
1313 struct mvpp2_tx_desc *tx_desc,
1314 unsigned int txq)
1315{
Thomas Petazzonif50a0112017-02-20 11:08:46 +01001316 if (port->priv->hw_version == MVPP21)
1317 tx_desc->pp21.phys_txq = txq;
1318 else
1319 tx_desc->pp22.phys_txq = txq;
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01001320}
1321
1322static void mvpp2_txdesc_cmd_set(struct mvpp2_port *port,
1323 struct mvpp2_tx_desc *tx_desc,
1324 unsigned int command)
1325{
Thomas Petazzonif50a0112017-02-20 11:08:46 +01001326 if (port->priv->hw_version == MVPP21)
1327 tx_desc->pp21.command = command;
1328 else
1329 tx_desc->pp22.command = command;
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01001330}
1331
1332static void mvpp2_txdesc_offset_set(struct mvpp2_port *port,
1333 struct mvpp2_tx_desc *tx_desc,
1334 unsigned int offset)
1335{
Thomas Petazzonif50a0112017-02-20 11:08:46 +01001336 if (port->priv->hw_version == MVPP21)
1337 tx_desc->pp21.packet_offset = offset;
1338 else
1339 tx_desc->pp22.packet_offset = offset;
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01001340}
1341
1342static dma_addr_t mvpp2_rxdesc_dma_addr_get(struct mvpp2_port *port,
1343 struct mvpp2_rx_desc *rx_desc)
1344{
Thomas Petazzonif50a0112017-02-20 11:08:46 +01001345 if (port->priv->hw_version == MVPP21)
1346 return rx_desc->pp21.buf_dma_addr;
1347 else
1348 return rx_desc->pp22.buf_dma_addr_key_hash & GENMASK_ULL(40, 0);
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01001349}
1350
1351static unsigned long mvpp2_rxdesc_cookie_get(struct mvpp2_port *port,
1352 struct mvpp2_rx_desc *rx_desc)
1353{
Thomas Petazzonif50a0112017-02-20 11:08:46 +01001354 if (port->priv->hw_version == MVPP21)
1355 return rx_desc->pp21.buf_cookie;
1356 else
1357 return rx_desc->pp22.buf_cookie_misc & GENMASK_ULL(40, 0);
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01001358}
1359
1360static size_t mvpp2_rxdesc_size_get(struct mvpp2_port *port,
1361 struct mvpp2_rx_desc *rx_desc)
1362{
Thomas Petazzonif50a0112017-02-20 11:08:46 +01001363 if (port->priv->hw_version == MVPP21)
1364 return rx_desc->pp21.data_size;
1365 else
1366 return rx_desc->pp22.data_size;
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01001367}
1368
1369static u32 mvpp2_rxdesc_status_get(struct mvpp2_port *port,
1370 struct mvpp2_rx_desc *rx_desc)
1371{
Thomas Petazzonif50a0112017-02-20 11:08:46 +01001372 if (port->priv->hw_version == MVPP21)
1373 return rx_desc->pp21.status;
1374 else
1375 return rx_desc->pp22.status;
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01001376}
1377
Stefan Roese99d4c6d2016-02-10 07:22:10 +01001378static void mvpp2_txq_inc_get(struct mvpp2_txq_pcpu *txq_pcpu)
1379{
1380 txq_pcpu->txq_get_index++;
1381 if (txq_pcpu->txq_get_index == txq_pcpu->size)
1382 txq_pcpu->txq_get_index = 0;
1383}
1384
1385/* Get number of physical egress port */
1386static inline int mvpp2_egress_port(struct mvpp2_port *port)
1387{
1388 return MVPP2_MAX_TCONT + port->id;
1389}
1390
1391/* Get number of physical TXQ */
1392static inline int mvpp2_txq_phys(int port, int txq)
1393{
1394 return (MVPP2_MAX_TCONT + port) * MVPP2_MAX_TXQ + txq;
1395}
1396
1397/* Parser configuration routines */
1398
1399/* Update parser tcam and sram hw entries */
1400static int mvpp2_prs_hw_write(struct mvpp2 *priv, struct mvpp2_prs_entry *pe)
1401{
1402 int i;
1403
1404 if (pe->index > MVPP2_PRS_TCAM_SRAM_SIZE - 1)
1405 return -EINVAL;
1406
1407 /* Clear entry invalidation bit */
1408 pe->tcam.word[MVPP2_PRS_TCAM_INV_WORD] &= ~MVPP2_PRS_TCAM_INV_MASK;
1409
1410 /* Write tcam index - indirect access */
1411 mvpp2_write(priv, MVPP2_PRS_TCAM_IDX_REG, pe->index);
1412 for (i = 0; i < MVPP2_PRS_TCAM_WORDS; i++)
1413 mvpp2_write(priv, MVPP2_PRS_TCAM_DATA_REG(i), pe->tcam.word[i]);
1414
1415 /* Write sram index - indirect access */
1416 mvpp2_write(priv, MVPP2_PRS_SRAM_IDX_REG, pe->index);
1417 for (i = 0; i < MVPP2_PRS_SRAM_WORDS; i++)
1418 mvpp2_write(priv, MVPP2_PRS_SRAM_DATA_REG(i), pe->sram.word[i]);
1419
1420 return 0;
1421}
1422
1423/* Read tcam entry from hw */
1424static int mvpp2_prs_hw_read(struct mvpp2 *priv, struct mvpp2_prs_entry *pe)
1425{
1426 int i;
1427
1428 if (pe->index > MVPP2_PRS_TCAM_SRAM_SIZE - 1)
1429 return -EINVAL;
1430
1431 /* Write tcam index - indirect access */
1432 mvpp2_write(priv, MVPP2_PRS_TCAM_IDX_REG, pe->index);
1433
1434 pe->tcam.word[MVPP2_PRS_TCAM_INV_WORD] = mvpp2_read(priv,
1435 MVPP2_PRS_TCAM_DATA_REG(MVPP2_PRS_TCAM_INV_WORD));
1436 if (pe->tcam.word[MVPP2_PRS_TCAM_INV_WORD] & MVPP2_PRS_TCAM_INV_MASK)
1437 return MVPP2_PRS_TCAM_ENTRY_INVALID;
1438
1439 for (i = 0; i < MVPP2_PRS_TCAM_WORDS; i++)
1440 pe->tcam.word[i] = mvpp2_read(priv, MVPP2_PRS_TCAM_DATA_REG(i));
1441
1442 /* Write sram index - indirect access */
1443 mvpp2_write(priv, MVPP2_PRS_SRAM_IDX_REG, pe->index);
1444 for (i = 0; i < MVPP2_PRS_SRAM_WORDS; i++)
1445 pe->sram.word[i] = mvpp2_read(priv, MVPP2_PRS_SRAM_DATA_REG(i));
1446
1447 return 0;
1448}
1449
1450/* Invalidate tcam hw entry */
1451static void mvpp2_prs_hw_inv(struct mvpp2 *priv, int index)
1452{
1453 /* Write index - indirect access */
1454 mvpp2_write(priv, MVPP2_PRS_TCAM_IDX_REG, index);
1455 mvpp2_write(priv, MVPP2_PRS_TCAM_DATA_REG(MVPP2_PRS_TCAM_INV_WORD),
1456 MVPP2_PRS_TCAM_INV_MASK);
1457}
1458
1459/* Enable shadow table entry and set its lookup ID */
1460static void mvpp2_prs_shadow_set(struct mvpp2 *priv, int index, int lu)
1461{
1462 priv->prs_shadow[index].valid = true;
1463 priv->prs_shadow[index].lu = lu;
1464}
1465
1466/* Update ri fields in shadow table entry */
1467static void mvpp2_prs_shadow_ri_set(struct mvpp2 *priv, int index,
1468 unsigned int ri, unsigned int ri_mask)
1469{
1470 priv->prs_shadow[index].ri_mask = ri_mask;
1471 priv->prs_shadow[index].ri = ri;
1472}
1473
1474/* Update lookup field in tcam sw entry */
1475static void mvpp2_prs_tcam_lu_set(struct mvpp2_prs_entry *pe, unsigned int lu)
1476{
1477 int enable_off = MVPP2_PRS_TCAM_EN_OFFS(MVPP2_PRS_TCAM_LU_BYTE);
1478
1479 pe->tcam.byte[MVPP2_PRS_TCAM_LU_BYTE] = lu;
1480 pe->tcam.byte[enable_off] = MVPP2_PRS_LU_MASK;
1481}
1482
1483/* Update mask for single port in tcam sw entry */
1484static void mvpp2_prs_tcam_port_set(struct mvpp2_prs_entry *pe,
1485 unsigned int port, bool add)
1486{
1487 int enable_off = MVPP2_PRS_TCAM_EN_OFFS(MVPP2_PRS_TCAM_PORT_BYTE);
1488
1489 if (add)
1490 pe->tcam.byte[enable_off] &= ~(1 << port);
1491 else
1492 pe->tcam.byte[enable_off] |= 1 << port;
1493}
1494
1495/* Update port map in tcam sw entry */
1496static void mvpp2_prs_tcam_port_map_set(struct mvpp2_prs_entry *pe,
1497 unsigned int ports)
1498{
1499 unsigned char port_mask = MVPP2_PRS_PORT_MASK;
1500 int enable_off = MVPP2_PRS_TCAM_EN_OFFS(MVPP2_PRS_TCAM_PORT_BYTE);
1501
1502 pe->tcam.byte[MVPP2_PRS_TCAM_PORT_BYTE] = 0;
1503 pe->tcam.byte[enable_off] &= ~port_mask;
1504 pe->tcam.byte[enable_off] |= ~ports & MVPP2_PRS_PORT_MASK;
1505}
1506
1507/* Obtain port map from tcam sw entry */
1508static unsigned int mvpp2_prs_tcam_port_map_get(struct mvpp2_prs_entry *pe)
1509{
1510 int enable_off = MVPP2_PRS_TCAM_EN_OFFS(MVPP2_PRS_TCAM_PORT_BYTE);
1511
1512 return ~(pe->tcam.byte[enable_off]) & MVPP2_PRS_PORT_MASK;
1513}
1514
1515/* Set byte of data and its enable bits in tcam sw entry */
1516static void mvpp2_prs_tcam_data_byte_set(struct mvpp2_prs_entry *pe,
1517 unsigned int offs, unsigned char byte,
1518 unsigned char enable)
1519{
1520 pe->tcam.byte[MVPP2_PRS_TCAM_DATA_BYTE(offs)] = byte;
1521 pe->tcam.byte[MVPP2_PRS_TCAM_DATA_BYTE_EN(offs)] = enable;
1522}
1523
1524/* Get byte of data and its enable bits from tcam sw entry */
1525static void mvpp2_prs_tcam_data_byte_get(struct mvpp2_prs_entry *pe,
1526 unsigned int offs, unsigned char *byte,
1527 unsigned char *enable)
1528{
1529 *byte = pe->tcam.byte[MVPP2_PRS_TCAM_DATA_BYTE(offs)];
1530 *enable = pe->tcam.byte[MVPP2_PRS_TCAM_DATA_BYTE_EN(offs)];
1531}
1532
1533/* Set ethertype in tcam sw entry */
1534static void mvpp2_prs_match_etype(struct mvpp2_prs_entry *pe, int offset,
1535 unsigned short ethertype)
1536{
1537 mvpp2_prs_tcam_data_byte_set(pe, offset + 0, ethertype >> 8, 0xff);
1538 mvpp2_prs_tcam_data_byte_set(pe, offset + 1, ethertype & 0xff, 0xff);
1539}
1540
1541/* Set bits in sram sw entry */
1542static void mvpp2_prs_sram_bits_set(struct mvpp2_prs_entry *pe, int bit_num,
1543 int val)
1544{
1545 pe->sram.byte[MVPP2_BIT_TO_BYTE(bit_num)] |= (val << (bit_num % 8));
1546}
1547
1548/* Clear bits in sram sw entry */
1549static void mvpp2_prs_sram_bits_clear(struct mvpp2_prs_entry *pe, int bit_num,
1550 int val)
1551{
1552 pe->sram.byte[MVPP2_BIT_TO_BYTE(bit_num)] &= ~(val << (bit_num % 8));
1553}
1554
1555/* Update ri bits in sram sw entry */
1556static void mvpp2_prs_sram_ri_update(struct mvpp2_prs_entry *pe,
1557 unsigned int bits, unsigned int mask)
1558{
1559 unsigned int i;
1560
1561 for (i = 0; i < MVPP2_PRS_SRAM_RI_CTRL_BITS; i++) {
1562 int ri_off = MVPP2_PRS_SRAM_RI_OFFS;
1563
1564 if (!(mask & BIT(i)))
1565 continue;
1566
1567 if (bits & BIT(i))
1568 mvpp2_prs_sram_bits_set(pe, ri_off + i, 1);
1569 else
1570 mvpp2_prs_sram_bits_clear(pe, ri_off + i, 1);
1571
1572 mvpp2_prs_sram_bits_set(pe, MVPP2_PRS_SRAM_RI_CTRL_OFFS + i, 1);
1573 }
1574}
1575
1576/* Update ai bits in sram sw entry */
1577static void mvpp2_prs_sram_ai_update(struct mvpp2_prs_entry *pe,
1578 unsigned int bits, unsigned int mask)
1579{
1580 unsigned int i;
1581 int ai_off = MVPP2_PRS_SRAM_AI_OFFS;
1582
1583 for (i = 0; i < MVPP2_PRS_SRAM_AI_CTRL_BITS; i++) {
1584
1585 if (!(mask & BIT(i)))
1586 continue;
1587
1588 if (bits & BIT(i))
1589 mvpp2_prs_sram_bits_set(pe, ai_off + i, 1);
1590 else
1591 mvpp2_prs_sram_bits_clear(pe, ai_off + i, 1);
1592
1593 mvpp2_prs_sram_bits_set(pe, MVPP2_PRS_SRAM_AI_CTRL_OFFS + i, 1);
1594 }
1595}
1596
1597/* Read ai bits from sram sw entry */
1598static int mvpp2_prs_sram_ai_get(struct mvpp2_prs_entry *pe)
1599{
1600 u8 bits;
1601 int ai_off = MVPP2_BIT_TO_BYTE(MVPP2_PRS_SRAM_AI_OFFS);
1602 int ai_en_off = ai_off + 1;
1603 int ai_shift = MVPP2_PRS_SRAM_AI_OFFS % 8;
1604
1605 bits = (pe->sram.byte[ai_off] >> ai_shift) |
1606 (pe->sram.byte[ai_en_off] << (8 - ai_shift));
1607
1608 return bits;
1609}
1610
1611/* In sram sw entry set lookup ID field of the tcam key to be used in the next
1612 * lookup interation
1613 */
1614static void mvpp2_prs_sram_next_lu_set(struct mvpp2_prs_entry *pe,
1615 unsigned int lu)
1616{
1617 int sram_next_off = MVPP2_PRS_SRAM_NEXT_LU_OFFS;
1618
1619 mvpp2_prs_sram_bits_clear(pe, sram_next_off,
1620 MVPP2_PRS_SRAM_NEXT_LU_MASK);
1621 mvpp2_prs_sram_bits_set(pe, sram_next_off, lu);
1622}
1623
1624/* In the sram sw entry set sign and value of the next lookup offset
1625 * and the offset value generated to the classifier
1626 */
1627static void mvpp2_prs_sram_shift_set(struct mvpp2_prs_entry *pe, int shift,
1628 unsigned int op)
1629{
1630 /* Set sign */
1631 if (shift < 0) {
1632 mvpp2_prs_sram_bits_set(pe, MVPP2_PRS_SRAM_SHIFT_SIGN_BIT, 1);
1633 shift = 0 - shift;
1634 } else {
1635 mvpp2_prs_sram_bits_clear(pe, MVPP2_PRS_SRAM_SHIFT_SIGN_BIT, 1);
1636 }
1637
1638 /* Set value */
1639 pe->sram.byte[MVPP2_BIT_TO_BYTE(MVPP2_PRS_SRAM_SHIFT_OFFS)] =
1640 (unsigned char)shift;
1641
1642 /* Reset and set operation */
1643 mvpp2_prs_sram_bits_clear(pe, MVPP2_PRS_SRAM_OP_SEL_SHIFT_OFFS,
1644 MVPP2_PRS_SRAM_OP_SEL_SHIFT_MASK);
1645 mvpp2_prs_sram_bits_set(pe, MVPP2_PRS_SRAM_OP_SEL_SHIFT_OFFS, op);
1646
1647 /* Set base offset as current */
1648 mvpp2_prs_sram_bits_clear(pe, MVPP2_PRS_SRAM_OP_SEL_BASE_OFFS, 1);
1649}
1650
1651/* In the sram sw entry set sign and value of the user defined offset
1652 * generated to the classifier
1653 */
1654static void mvpp2_prs_sram_offset_set(struct mvpp2_prs_entry *pe,
1655 unsigned int type, int offset,
1656 unsigned int op)
1657{
1658 /* Set sign */
1659 if (offset < 0) {
1660 mvpp2_prs_sram_bits_set(pe, MVPP2_PRS_SRAM_UDF_SIGN_BIT, 1);
1661 offset = 0 - offset;
1662 } else {
1663 mvpp2_prs_sram_bits_clear(pe, MVPP2_PRS_SRAM_UDF_SIGN_BIT, 1);
1664 }
1665
1666 /* Set value */
1667 mvpp2_prs_sram_bits_clear(pe, MVPP2_PRS_SRAM_UDF_OFFS,
1668 MVPP2_PRS_SRAM_UDF_MASK);
1669 mvpp2_prs_sram_bits_set(pe, MVPP2_PRS_SRAM_UDF_OFFS, offset);
1670 pe->sram.byte[MVPP2_BIT_TO_BYTE(MVPP2_PRS_SRAM_UDF_OFFS +
1671 MVPP2_PRS_SRAM_UDF_BITS)] &=
1672 ~(MVPP2_PRS_SRAM_UDF_MASK >> (8 - (MVPP2_PRS_SRAM_UDF_OFFS % 8)));
1673 pe->sram.byte[MVPP2_BIT_TO_BYTE(MVPP2_PRS_SRAM_UDF_OFFS +
1674 MVPP2_PRS_SRAM_UDF_BITS)] |=
1675 (offset >> (8 - (MVPP2_PRS_SRAM_UDF_OFFS % 8)));
1676
1677 /* Set offset type */
1678 mvpp2_prs_sram_bits_clear(pe, MVPP2_PRS_SRAM_UDF_TYPE_OFFS,
1679 MVPP2_PRS_SRAM_UDF_TYPE_MASK);
1680 mvpp2_prs_sram_bits_set(pe, MVPP2_PRS_SRAM_UDF_TYPE_OFFS, type);
1681
1682 /* Set offset operation */
1683 mvpp2_prs_sram_bits_clear(pe, MVPP2_PRS_SRAM_OP_SEL_UDF_OFFS,
1684 MVPP2_PRS_SRAM_OP_SEL_UDF_MASK);
1685 mvpp2_prs_sram_bits_set(pe, MVPP2_PRS_SRAM_OP_SEL_UDF_OFFS, op);
1686
1687 pe->sram.byte[MVPP2_BIT_TO_BYTE(MVPP2_PRS_SRAM_OP_SEL_UDF_OFFS +
1688 MVPP2_PRS_SRAM_OP_SEL_UDF_BITS)] &=
1689 ~(MVPP2_PRS_SRAM_OP_SEL_UDF_MASK >>
1690 (8 - (MVPP2_PRS_SRAM_OP_SEL_UDF_OFFS % 8)));
1691
1692 pe->sram.byte[MVPP2_BIT_TO_BYTE(MVPP2_PRS_SRAM_OP_SEL_UDF_OFFS +
1693 MVPP2_PRS_SRAM_OP_SEL_UDF_BITS)] |=
1694 (op >> (8 - (MVPP2_PRS_SRAM_OP_SEL_UDF_OFFS % 8)));
1695
1696 /* Set base offset as current */
1697 mvpp2_prs_sram_bits_clear(pe, MVPP2_PRS_SRAM_OP_SEL_BASE_OFFS, 1);
1698}
1699
1700/* Find parser flow entry */
1701static struct mvpp2_prs_entry *mvpp2_prs_flow_find(struct mvpp2 *priv, int flow)
1702{
1703 struct mvpp2_prs_entry *pe;
1704 int tid;
1705
1706 pe = kzalloc(sizeof(*pe), GFP_KERNEL);
1707 if (!pe)
1708 return NULL;
1709 mvpp2_prs_tcam_lu_set(pe, MVPP2_PRS_LU_FLOWS);
1710
1711 /* Go through the all entires with MVPP2_PRS_LU_FLOWS */
1712 for (tid = MVPP2_PRS_TCAM_SRAM_SIZE - 1; tid >= 0; tid--) {
1713 u8 bits;
1714
1715 if (!priv->prs_shadow[tid].valid ||
1716 priv->prs_shadow[tid].lu != MVPP2_PRS_LU_FLOWS)
1717 continue;
1718
1719 pe->index = tid;
1720 mvpp2_prs_hw_read(priv, pe);
1721 bits = mvpp2_prs_sram_ai_get(pe);
1722
1723 /* Sram store classification lookup ID in AI bits [5:0] */
1724 if ((bits & MVPP2_PRS_FLOW_ID_MASK) == flow)
1725 return pe;
1726 }
1727 kfree(pe);
1728
1729 return NULL;
1730}
1731
1732/* Return first free tcam index, seeking from start to end */
1733static int mvpp2_prs_tcam_first_free(struct mvpp2 *priv, unsigned char start,
1734 unsigned char end)
1735{
1736 int tid;
1737
1738 if (start > end)
1739 swap(start, end);
1740
1741 if (end >= MVPP2_PRS_TCAM_SRAM_SIZE)
1742 end = MVPP2_PRS_TCAM_SRAM_SIZE - 1;
1743
1744 for (tid = start; tid <= end; tid++) {
1745 if (!priv->prs_shadow[tid].valid)
1746 return tid;
1747 }
1748
1749 return -EINVAL;
1750}
1751
1752/* Enable/disable dropping all mac da's */
1753static void mvpp2_prs_mac_drop_all_set(struct mvpp2 *priv, int port, bool add)
1754{
1755 struct mvpp2_prs_entry pe;
1756
1757 if (priv->prs_shadow[MVPP2_PE_DROP_ALL].valid) {
1758 /* Entry exist - update port only */
1759 pe.index = MVPP2_PE_DROP_ALL;
1760 mvpp2_prs_hw_read(priv, &pe);
1761 } else {
1762 /* Entry doesn't exist - create new */
1763 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
1764 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_MAC);
1765 pe.index = MVPP2_PE_DROP_ALL;
1766
1767 /* Non-promiscuous mode for all ports - DROP unknown packets */
1768 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_DROP_MASK,
1769 MVPP2_PRS_RI_DROP_MASK);
1770
1771 mvpp2_prs_sram_bits_set(&pe, MVPP2_PRS_SRAM_LU_GEN_BIT, 1);
1772 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_FLOWS);
1773
1774 /* Update shadow table */
1775 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_MAC);
1776
1777 /* Mask all ports */
1778 mvpp2_prs_tcam_port_map_set(&pe, 0);
1779 }
1780
1781 /* Update port mask */
1782 mvpp2_prs_tcam_port_set(&pe, port, add);
1783
1784 mvpp2_prs_hw_write(priv, &pe);
1785}
1786
1787/* Set port to promiscuous mode */
1788static void mvpp2_prs_mac_promisc_set(struct mvpp2 *priv, int port, bool add)
1789{
1790 struct mvpp2_prs_entry pe;
1791
1792 /* Promiscuous mode - Accept unknown packets */
1793
1794 if (priv->prs_shadow[MVPP2_PE_MAC_PROMISCUOUS].valid) {
1795 /* Entry exist - update port only */
1796 pe.index = MVPP2_PE_MAC_PROMISCUOUS;
1797 mvpp2_prs_hw_read(priv, &pe);
1798 } else {
1799 /* Entry doesn't exist - create new */
1800 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
1801 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_MAC);
1802 pe.index = MVPP2_PE_MAC_PROMISCUOUS;
1803
1804 /* Continue - set next lookup */
1805 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_DSA);
1806
1807 /* Set result info bits */
1808 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L2_UCAST,
1809 MVPP2_PRS_RI_L2_CAST_MASK);
1810
1811 /* Shift to ethertype */
1812 mvpp2_prs_sram_shift_set(&pe, 2 * ETH_ALEN,
1813 MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
1814
1815 /* Mask all ports */
1816 mvpp2_prs_tcam_port_map_set(&pe, 0);
1817
1818 /* Update shadow table */
1819 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_MAC);
1820 }
1821
1822 /* Update port mask */
1823 mvpp2_prs_tcam_port_set(&pe, port, add);
1824
1825 mvpp2_prs_hw_write(priv, &pe);
1826}
1827
1828/* Accept multicast */
1829static void mvpp2_prs_mac_multi_set(struct mvpp2 *priv, int port, int index,
1830 bool add)
1831{
1832 struct mvpp2_prs_entry pe;
1833 unsigned char da_mc;
1834
1835 /* Ethernet multicast address first byte is
1836 * 0x01 for IPv4 and 0x33 for IPv6
1837 */
1838 da_mc = (index == MVPP2_PE_MAC_MC_ALL) ? 0x01 : 0x33;
1839
1840 if (priv->prs_shadow[index].valid) {
1841 /* Entry exist - update port only */
1842 pe.index = index;
1843 mvpp2_prs_hw_read(priv, &pe);
1844 } else {
1845 /* Entry doesn't exist - create new */
1846 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
1847 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_MAC);
1848 pe.index = index;
1849
1850 /* Continue - set next lookup */
1851 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_DSA);
1852
1853 /* Set result info bits */
1854 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L2_MCAST,
1855 MVPP2_PRS_RI_L2_CAST_MASK);
1856
1857 /* Update tcam entry data first byte */
1858 mvpp2_prs_tcam_data_byte_set(&pe, 0, da_mc, 0xff);
1859
1860 /* Shift to ethertype */
1861 mvpp2_prs_sram_shift_set(&pe, 2 * ETH_ALEN,
1862 MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
1863
1864 /* Mask all ports */
1865 mvpp2_prs_tcam_port_map_set(&pe, 0);
1866
1867 /* Update shadow table */
1868 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_MAC);
1869 }
1870
1871 /* Update port mask */
1872 mvpp2_prs_tcam_port_set(&pe, port, add);
1873
1874 mvpp2_prs_hw_write(priv, &pe);
1875}
1876
1877/* Parser per-port initialization */
1878static void mvpp2_prs_hw_port_init(struct mvpp2 *priv, int port, int lu_first,
1879 int lu_max, int offset)
1880{
1881 u32 val;
1882
1883 /* Set lookup ID */
1884 val = mvpp2_read(priv, MVPP2_PRS_INIT_LOOKUP_REG);
1885 val &= ~MVPP2_PRS_PORT_LU_MASK(port);
1886 val |= MVPP2_PRS_PORT_LU_VAL(port, lu_first);
1887 mvpp2_write(priv, MVPP2_PRS_INIT_LOOKUP_REG, val);
1888
1889 /* Set maximum number of loops for packet received from port */
1890 val = mvpp2_read(priv, MVPP2_PRS_MAX_LOOP_REG(port));
1891 val &= ~MVPP2_PRS_MAX_LOOP_MASK(port);
1892 val |= MVPP2_PRS_MAX_LOOP_VAL(port, lu_max);
1893 mvpp2_write(priv, MVPP2_PRS_MAX_LOOP_REG(port), val);
1894
1895 /* Set initial offset for packet header extraction for the first
1896 * searching loop
1897 */
1898 val = mvpp2_read(priv, MVPP2_PRS_INIT_OFFS_REG(port));
1899 val &= ~MVPP2_PRS_INIT_OFF_MASK(port);
1900 val |= MVPP2_PRS_INIT_OFF_VAL(port, offset);
1901 mvpp2_write(priv, MVPP2_PRS_INIT_OFFS_REG(port), val);
1902}
1903
1904/* Default flow entries initialization for all ports */
1905static void mvpp2_prs_def_flow_init(struct mvpp2 *priv)
1906{
1907 struct mvpp2_prs_entry pe;
1908 int port;
1909
1910 for (port = 0; port < MVPP2_MAX_PORTS; port++) {
1911 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
1912 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_FLOWS);
1913 pe.index = MVPP2_PE_FIRST_DEFAULT_FLOW - port;
1914
1915 /* Mask all ports */
1916 mvpp2_prs_tcam_port_map_set(&pe, 0);
1917
1918 /* Set flow ID*/
1919 mvpp2_prs_sram_ai_update(&pe, port, MVPP2_PRS_FLOW_ID_MASK);
1920 mvpp2_prs_sram_bits_set(&pe, MVPP2_PRS_SRAM_LU_DONE_BIT, 1);
1921
1922 /* Update shadow table and hw entry */
1923 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_FLOWS);
1924 mvpp2_prs_hw_write(priv, &pe);
1925 }
1926}
1927
1928/* Set default entry for Marvell Header field */
1929static void mvpp2_prs_mh_init(struct mvpp2 *priv)
1930{
1931 struct mvpp2_prs_entry pe;
1932
1933 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
1934
1935 pe.index = MVPP2_PE_MH_DEFAULT;
1936 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_MH);
1937 mvpp2_prs_sram_shift_set(&pe, MVPP2_MH_SIZE,
1938 MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
1939 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_MAC);
1940
1941 /* Unmask all ports */
1942 mvpp2_prs_tcam_port_map_set(&pe, MVPP2_PRS_PORT_MASK);
1943
1944 /* Update shadow table and hw entry */
1945 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_MH);
1946 mvpp2_prs_hw_write(priv, &pe);
1947}
1948
1949/* Set default entires (place holder) for promiscuous, non-promiscuous and
1950 * multicast MAC addresses
1951 */
1952static void mvpp2_prs_mac_init(struct mvpp2 *priv)
1953{
1954 struct mvpp2_prs_entry pe;
1955
1956 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
1957
1958 /* Non-promiscuous mode for all ports - DROP unknown packets */
1959 pe.index = MVPP2_PE_MAC_NON_PROMISCUOUS;
1960 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_MAC);
1961
1962 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_DROP_MASK,
1963 MVPP2_PRS_RI_DROP_MASK);
1964 mvpp2_prs_sram_bits_set(&pe, MVPP2_PRS_SRAM_LU_GEN_BIT, 1);
1965 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_FLOWS);
1966
1967 /* Unmask all ports */
1968 mvpp2_prs_tcam_port_map_set(&pe, MVPP2_PRS_PORT_MASK);
1969
1970 /* Update shadow table and hw entry */
1971 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_MAC);
1972 mvpp2_prs_hw_write(priv, &pe);
1973
1974 /* place holders only - no ports */
1975 mvpp2_prs_mac_drop_all_set(priv, 0, false);
1976 mvpp2_prs_mac_promisc_set(priv, 0, false);
1977 mvpp2_prs_mac_multi_set(priv, MVPP2_PE_MAC_MC_ALL, 0, false);
1978 mvpp2_prs_mac_multi_set(priv, MVPP2_PE_MAC_MC_IP6, 0, false);
1979}
1980
1981/* Match basic ethertypes */
1982static int mvpp2_prs_etype_init(struct mvpp2 *priv)
1983{
1984 struct mvpp2_prs_entry pe;
1985 int tid;
1986
1987 /* Ethertype: PPPoE */
1988 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
1989 MVPP2_PE_LAST_FREE_TID);
1990 if (tid < 0)
1991 return tid;
1992
1993 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
1994 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_L2);
1995 pe.index = tid;
1996
1997 mvpp2_prs_match_etype(&pe, 0, PROT_PPP_SES);
1998
1999 mvpp2_prs_sram_shift_set(&pe, MVPP2_PPPOE_HDR_SIZE,
2000 MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
2001 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_PPPOE);
2002 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_PPPOE_MASK,
2003 MVPP2_PRS_RI_PPPOE_MASK);
2004
2005 /* Update shadow table and hw entry */
2006 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_L2);
2007 priv->prs_shadow[pe.index].udf = MVPP2_PRS_UDF_L2_DEF;
2008 priv->prs_shadow[pe.index].finish = false;
2009 mvpp2_prs_shadow_ri_set(priv, pe.index, MVPP2_PRS_RI_PPPOE_MASK,
2010 MVPP2_PRS_RI_PPPOE_MASK);
2011 mvpp2_prs_hw_write(priv, &pe);
2012
2013 /* Ethertype: ARP */
2014 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
2015 MVPP2_PE_LAST_FREE_TID);
2016 if (tid < 0)
2017 return tid;
2018
2019 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
2020 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_L2);
2021 pe.index = tid;
2022
2023 mvpp2_prs_match_etype(&pe, 0, PROT_ARP);
2024
2025 /* Generate flow in the next iteration*/
2026 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_FLOWS);
2027 mvpp2_prs_sram_bits_set(&pe, MVPP2_PRS_SRAM_LU_GEN_BIT, 1);
2028 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L3_ARP,
2029 MVPP2_PRS_RI_L3_PROTO_MASK);
2030 /* Set L3 offset */
2031 mvpp2_prs_sram_offset_set(&pe, MVPP2_PRS_SRAM_UDF_TYPE_L3,
2032 MVPP2_ETH_TYPE_LEN,
2033 MVPP2_PRS_SRAM_OP_SEL_UDF_ADD);
2034
2035 /* Update shadow table and hw entry */
2036 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_L2);
2037 priv->prs_shadow[pe.index].udf = MVPP2_PRS_UDF_L2_DEF;
2038 priv->prs_shadow[pe.index].finish = true;
2039 mvpp2_prs_shadow_ri_set(priv, pe.index, MVPP2_PRS_RI_L3_ARP,
2040 MVPP2_PRS_RI_L3_PROTO_MASK);
2041 mvpp2_prs_hw_write(priv, &pe);
2042
2043 /* Ethertype: LBTD */
2044 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
2045 MVPP2_PE_LAST_FREE_TID);
2046 if (tid < 0)
2047 return tid;
2048
2049 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
2050 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_L2);
2051 pe.index = tid;
2052
2053 mvpp2_prs_match_etype(&pe, 0, MVPP2_IP_LBDT_TYPE);
2054
2055 /* Generate flow in the next iteration*/
2056 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_FLOWS);
2057 mvpp2_prs_sram_bits_set(&pe, MVPP2_PRS_SRAM_LU_GEN_BIT, 1);
2058 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_CPU_CODE_RX_SPEC |
2059 MVPP2_PRS_RI_UDF3_RX_SPECIAL,
2060 MVPP2_PRS_RI_CPU_CODE_MASK |
2061 MVPP2_PRS_RI_UDF3_MASK);
2062 /* Set L3 offset */
2063 mvpp2_prs_sram_offset_set(&pe, MVPP2_PRS_SRAM_UDF_TYPE_L3,
2064 MVPP2_ETH_TYPE_LEN,
2065 MVPP2_PRS_SRAM_OP_SEL_UDF_ADD);
2066
2067 /* Update shadow table and hw entry */
2068 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_L2);
2069 priv->prs_shadow[pe.index].udf = MVPP2_PRS_UDF_L2_DEF;
2070 priv->prs_shadow[pe.index].finish = true;
2071 mvpp2_prs_shadow_ri_set(priv, pe.index, MVPP2_PRS_RI_CPU_CODE_RX_SPEC |
2072 MVPP2_PRS_RI_UDF3_RX_SPECIAL,
2073 MVPP2_PRS_RI_CPU_CODE_MASK |
2074 MVPP2_PRS_RI_UDF3_MASK);
2075 mvpp2_prs_hw_write(priv, &pe);
2076
2077 /* Ethertype: IPv4 without options */
2078 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
2079 MVPP2_PE_LAST_FREE_TID);
2080 if (tid < 0)
2081 return tid;
2082
2083 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
2084 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_L2);
2085 pe.index = tid;
2086
2087 mvpp2_prs_match_etype(&pe, 0, PROT_IP);
2088 mvpp2_prs_tcam_data_byte_set(&pe, MVPP2_ETH_TYPE_LEN,
2089 MVPP2_PRS_IPV4_HEAD | MVPP2_PRS_IPV4_IHL,
2090 MVPP2_PRS_IPV4_HEAD_MASK |
2091 MVPP2_PRS_IPV4_IHL_MASK);
2092
2093 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_IP4);
2094 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L3_IP4,
2095 MVPP2_PRS_RI_L3_PROTO_MASK);
2096 /* Skip eth_type + 4 bytes of IP header */
2097 mvpp2_prs_sram_shift_set(&pe, MVPP2_ETH_TYPE_LEN + 4,
2098 MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
2099 /* Set L3 offset */
2100 mvpp2_prs_sram_offset_set(&pe, MVPP2_PRS_SRAM_UDF_TYPE_L3,
2101 MVPP2_ETH_TYPE_LEN,
2102 MVPP2_PRS_SRAM_OP_SEL_UDF_ADD);
2103
2104 /* Update shadow table and hw entry */
2105 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_L2);
2106 priv->prs_shadow[pe.index].udf = MVPP2_PRS_UDF_L2_DEF;
2107 priv->prs_shadow[pe.index].finish = false;
2108 mvpp2_prs_shadow_ri_set(priv, pe.index, MVPP2_PRS_RI_L3_IP4,
2109 MVPP2_PRS_RI_L3_PROTO_MASK);
2110 mvpp2_prs_hw_write(priv, &pe);
2111
2112 /* Ethertype: IPv4 with options */
2113 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
2114 MVPP2_PE_LAST_FREE_TID);
2115 if (tid < 0)
2116 return tid;
2117
2118 pe.index = tid;
2119
2120 /* Clear tcam data before updating */
2121 pe.tcam.byte[MVPP2_PRS_TCAM_DATA_BYTE(MVPP2_ETH_TYPE_LEN)] = 0x0;
2122 pe.tcam.byte[MVPP2_PRS_TCAM_DATA_BYTE_EN(MVPP2_ETH_TYPE_LEN)] = 0x0;
2123
2124 mvpp2_prs_tcam_data_byte_set(&pe, MVPP2_ETH_TYPE_LEN,
2125 MVPP2_PRS_IPV4_HEAD,
2126 MVPP2_PRS_IPV4_HEAD_MASK);
2127
2128 /* Clear ri before updating */
2129 pe.sram.word[MVPP2_PRS_SRAM_RI_WORD] = 0x0;
2130 pe.sram.word[MVPP2_PRS_SRAM_RI_CTRL_WORD] = 0x0;
2131 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L3_IP4_OPT,
2132 MVPP2_PRS_RI_L3_PROTO_MASK);
2133
2134 /* Update shadow table and hw entry */
2135 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_L2);
2136 priv->prs_shadow[pe.index].udf = MVPP2_PRS_UDF_L2_DEF;
2137 priv->prs_shadow[pe.index].finish = false;
2138 mvpp2_prs_shadow_ri_set(priv, pe.index, MVPP2_PRS_RI_L3_IP4_OPT,
2139 MVPP2_PRS_RI_L3_PROTO_MASK);
2140 mvpp2_prs_hw_write(priv, &pe);
2141
2142 /* Ethertype: IPv6 without options */
2143 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
2144 MVPP2_PE_LAST_FREE_TID);
2145 if (tid < 0)
2146 return tid;
2147
2148 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
2149 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_L2);
2150 pe.index = tid;
2151
2152 mvpp2_prs_match_etype(&pe, 0, PROT_IPV6);
2153
2154 /* Skip DIP of IPV6 header */
2155 mvpp2_prs_sram_shift_set(&pe, MVPP2_ETH_TYPE_LEN + 8 +
2156 MVPP2_MAX_L3_ADDR_SIZE,
2157 MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
2158 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_IP6);
2159 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L3_IP6,
2160 MVPP2_PRS_RI_L3_PROTO_MASK);
2161 /* Set L3 offset */
2162 mvpp2_prs_sram_offset_set(&pe, MVPP2_PRS_SRAM_UDF_TYPE_L3,
2163 MVPP2_ETH_TYPE_LEN,
2164 MVPP2_PRS_SRAM_OP_SEL_UDF_ADD);
2165
2166 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_L2);
2167 priv->prs_shadow[pe.index].udf = MVPP2_PRS_UDF_L2_DEF;
2168 priv->prs_shadow[pe.index].finish = false;
2169 mvpp2_prs_shadow_ri_set(priv, pe.index, MVPP2_PRS_RI_L3_IP6,
2170 MVPP2_PRS_RI_L3_PROTO_MASK);
2171 mvpp2_prs_hw_write(priv, &pe);
2172
2173 /* Default entry for MVPP2_PRS_LU_L2 - Unknown ethtype */
2174 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
2175 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_L2);
2176 pe.index = MVPP2_PE_ETH_TYPE_UN;
2177
2178 /* Unmask all ports */
2179 mvpp2_prs_tcam_port_map_set(&pe, MVPP2_PRS_PORT_MASK);
2180
2181 /* Generate flow in the next iteration*/
2182 mvpp2_prs_sram_bits_set(&pe, MVPP2_PRS_SRAM_LU_GEN_BIT, 1);
2183 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_FLOWS);
2184 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L3_UN,
2185 MVPP2_PRS_RI_L3_PROTO_MASK);
2186 /* Set L3 offset even it's unknown L3 */
2187 mvpp2_prs_sram_offset_set(&pe, MVPP2_PRS_SRAM_UDF_TYPE_L3,
2188 MVPP2_ETH_TYPE_LEN,
2189 MVPP2_PRS_SRAM_OP_SEL_UDF_ADD);
2190
2191 /* Update shadow table and hw entry */
2192 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_L2);
2193 priv->prs_shadow[pe.index].udf = MVPP2_PRS_UDF_L2_DEF;
2194 priv->prs_shadow[pe.index].finish = true;
2195 mvpp2_prs_shadow_ri_set(priv, pe.index, MVPP2_PRS_RI_L3_UN,
2196 MVPP2_PRS_RI_L3_PROTO_MASK);
2197 mvpp2_prs_hw_write(priv, &pe);
2198
2199 return 0;
2200}
2201
2202/* Parser default initialization */
2203static int mvpp2_prs_default_init(struct udevice *dev,
2204 struct mvpp2 *priv)
2205{
2206 int err, index, i;
2207
2208 /* Enable tcam table */
2209 mvpp2_write(priv, MVPP2_PRS_TCAM_CTRL_REG, MVPP2_PRS_TCAM_EN_MASK);
2210
2211 /* Clear all tcam and sram entries */
2212 for (index = 0; index < MVPP2_PRS_TCAM_SRAM_SIZE; index++) {
2213 mvpp2_write(priv, MVPP2_PRS_TCAM_IDX_REG, index);
2214 for (i = 0; i < MVPP2_PRS_TCAM_WORDS; i++)
2215 mvpp2_write(priv, MVPP2_PRS_TCAM_DATA_REG(i), 0);
2216
2217 mvpp2_write(priv, MVPP2_PRS_SRAM_IDX_REG, index);
2218 for (i = 0; i < MVPP2_PRS_SRAM_WORDS; i++)
2219 mvpp2_write(priv, MVPP2_PRS_SRAM_DATA_REG(i), 0);
2220 }
2221
2222 /* Invalidate all tcam entries */
2223 for (index = 0; index < MVPP2_PRS_TCAM_SRAM_SIZE; index++)
2224 mvpp2_prs_hw_inv(priv, index);
2225
2226 priv->prs_shadow = devm_kcalloc(dev, MVPP2_PRS_TCAM_SRAM_SIZE,
2227 sizeof(struct mvpp2_prs_shadow),
2228 GFP_KERNEL);
2229 if (!priv->prs_shadow)
2230 return -ENOMEM;
2231
2232 /* Always start from lookup = 0 */
2233 for (index = 0; index < MVPP2_MAX_PORTS; index++)
2234 mvpp2_prs_hw_port_init(priv, index, MVPP2_PRS_LU_MH,
2235 MVPP2_PRS_PORT_LU_MAX, 0);
2236
2237 mvpp2_prs_def_flow_init(priv);
2238
2239 mvpp2_prs_mh_init(priv);
2240
2241 mvpp2_prs_mac_init(priv);
2242
2243 err = mvpp2_prs_etype_init(priv);
2244 if (err)
2245 return err;
2246
2247 return 0;
2248}
2249
2250/* Compare MAC DA with tcam entry data */
2251static bool mvpp2_prs_mac_range_equals(struct mvpp2_prs_entry *pe,
2252 const u8 *da, unsigned char *mask)
2253{
2254 unsigned char tcam_byte, tcam_mask;
2255 int index;
2256
2257 for (index = 0; index < ETH_ALEN; index++) {
2258 mvpp2_prs_tcam_data_byte_get(pe, index, &tcam_byte, &tcam_mask);
2259 if (tcam_mask != mask[index])
2260 return false;
2261
2262 if ((tcam_mask & tcam_byte) != (da[index] & mask[index]))
2263 return false;
2264 }
2265
2266 return true;
2267}
2268
2269/* Find tcam entry with matched pair <MAC DA, port> */
2270static struct mvpp2_prs_entry *
2271mvpp2_prs_mac_da_range_find(struct mvpp2 *priv, int pmap, const u8 *da,
2272 unsigned char *mask, int udf_type)
2273{
2274 struct mvpp2_prs_entry *pe;
2275 int tid;
2276
2277 pe = kzalloc(sizeof(*pe), GFP_KERNEL);
2278 if (!pe)
2279 return NULL;
2280 mvpp2_prs_tcam_lu_set(pe, MVPP2_PRS_LU_MAC);
2281
2282 /* Go through the all entires with MVPP2_PRS_LU_MAC */
2283 for (tid = MVPP2_PE_FIRST_FREE_TID;
2284 tid <= MVPP2_PE_LAST_FREE_TID; tid++) {
2285 unsigned int entry_pmap;
2286
2287 if (!priv->prs_shadow[tid].valid ||
2288 (priv->prs_shadow[tid].lu != MVPP2_PRS_LU_MAC) ||
2289 (priv->prs_shadow[tid].udf != udf_type))
2290 continue;
2291
2292 pe->index = tid;
2293 mvpp2_prs_hw_read(priv, pe);
2294 entry_pmap = mvpp2_prs_tcam_port_map_get(pe);
2295
2296 if (mvpp2_prs_mac_range_equals(pe, da, mask) &&
2297 entry_pmap == pmap)
2298 return pe;
2299 }
2300 kfree(pe);
2301
2302 return NULL;
2303}
2304
2305/* Update parser's mac da entry */
2306static int mvpp2_prs_mac_da_accept(struct mvpp2 *priv, int port,
2307 const u8 *da, bool add)
2308{
2309 struct mvpp2_prs_entry *pe;
2310 unsigned int pmap, len, ri;
2311 unsigned char mask[ETH_ALEN] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
2312 int tid;
2313
2314 /* Scan TCAM and see if entry with this <MAC DA, port> already exist */
2315 pe = mvpp2_prs_mac_da_range_find(priv, (1 << port), da, mask,
2316 MVPP2_PRS_UDF_MAC_DEF);
2317
2318 /* No such entry */
2319 if (!pe) {
2320 if (!add)
2321 return 0;
2322
2323 /* Create new TCAM entry */
2324 /* Find first range mac entry*/
2325 for (tid = MVPP2_PE_FIRST_FREE_TID;
2326 tid <= MVPP2_PE_LAST_FREE_TID; tid++)
2327 if (priv->prs_shadow[tid].valid &&
2328 (priv->prs_shadow[tid].lu == MVPP2_PRS_LU_MAC) &&
2329 (priv->prs_shadow[tid].udf ==
2330 MVPP2_PRS_UDF_MAC_RANGE))
2331 break;
2332
2333 /* Go through the all entries from first to last */
2334 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
2335 tid - 1);
2336 if (tid < 0)
2337 return tid;
2338
2339 pe = kzalloc(sizeof(*pe), GFP_KERNEL);
2340 if (!pe)
2341 return -1;
2342 mvpp2_prs_tcam_lu_set(pe, MVPP2_PRS_LU_MAC);
2343 pe->index = tid;
2344
2345 /* Mask all ports */
2346 mvpp2_prs_tcam_port_map_set(pe, 0);
2347 }
2348
2349 /* Update port mask */
2350 mvpp2_prs_tcam_port_set(pe, port, add);
2351
2352 /* Invalidate the entry if no ports are left enabled */
2353 pmap = mvpp2_prs_tcam_port_map_get(pe);
2354 if (pmap == 0) {
2355 if (add) {
2356 kfree(pe);
2357 return -1;
2358 }
2359 mvpp2_prs_hw_inv(priv, pe->index);
2360 priv->prs_shadow[pe->index].valid = false;
2361 kfree(pe);
2362 return 0;
2363 }
2364
2365 /* Continue - set next lookup */
2366 mvpp2_prs_sram_next_lu_set(pe, MVPP2_PRS_LU_DSA);
2367
2368 /* Set match on DA */
2369 len = ETH_ALEN;
2370 while (len--)
2371 mvpp2_prs_tcam_data_byte_set(pe, len, da[len], 0xff);
2372
2373 /* Set result info bits */
2374 ri = MVPP2_PRS_RI_L2_UCAST | MVPP2_PRS_RI_MAC_ME_MASK;
2375
2376 mvpp2_prs_sram_ri_update(pe, ri, MVPP2_PRS_RI_L2_CAST_MASK |
2377 MVPP2_PRS_RI_MAC_ME_MASK);
2378 mvpp2_prs_shadow_ri_set(priv, pe->index, ri, MVPP2_PRS_RI_L2_CAST_MASK |
2379 MVPP2_PRS_RI_MAC_ME_MASK);
2380
2381 /* Shift to ethertype */
2382 mvpp2_prs_sram_shift_set(pe, 2 * ETH_ALEN,
2383 MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
2384
2385 /* Update shadow table and hw entry */
2386 priv->prs_shadow[pe->index].udf = MVPP2_PRS_UDF_MAC_DEF;
2387 mvpp2_prs_shadow_set(priv, pe->index, MVPP2_PRS_LU_MAC);
2388 mvpp2_prs_hw_write(priv, pe);
2389
2390 kfree(pe);
2391
2392 return 0;
2393}
2394
2395static int mvpp2_prs_update_mac_da(struct mvpp2_port *port, const u8 *da)
2396{
2397 int err;
2398
2399 /* Remove old parser entry */
2400 err = mvpp2_prs_mac_da_accept(port->priv, port->id, port->dev_addr,
2401 false);
2402 if (err)
2403 return err;
2404
2405 /* Add new parser entry */
2406 err = mvpp2_prs_mac_da_accept(port->priv, port->id, da, true);
2407 if (err)
2408 return err;
2409
2410 /* Set addr in the device */
2411 memcpy(port->dev_addr, da, ETH_ALEN);
2412
2413 return 0;
2414}
2415
2416/* Set prs flow for the port */
2417static int mvpp2_prs_def_flow(struct mvpp2_port *port)
2418{
2419 struct mvpp2_prs_entry *pe;
2420 int tid;
2421
2422 pe = mvpp2_prs_flow_find(port->priv, port->id);
2423
2424 /* Such entry not exist */
2425 if (!pe) {
2426 /* Go through the all entires from last to first */
2427 tid = mvpp2_prs_tcam_first_free(port->priv,
2428 MVPP2_PE_LAST_FREE_TID,
2429 MVPP2_PE_FIRST_FREE_TID);
2430 if (tid < 0)
2431 return tid;
2432
2433 pe = kzalloc(sizeof(*pe), GFP_KERNEL);
2434 if (!pe)
2435 return -ENOMEM;
2436
2437 mvpp2_prs_tcam_lu_set(pe, MVPP2_PRS_LU_FLOWS);
2438 pe->index = tid;
2439
2440 /* Set flow ID*/
2441 mvpp2_prs_sram_ai_update(pe, port->id, MVPP2_PRS_FLOW_ID_MASK);
2442 mvpp2_prs_sram_bits_set(pe, MVPP2_PRS_SRAM_LU_DONE_BIT, 1);
2443
2444 /* Update shadow table */
2445 mvpp2_prs_shadow_set(port->priv, pe->index, MVPP2_PRS_LU_FLOWS);
2446 }
2447
2448 mvpp2_prs_tcam_port_map_set(pe, (1 << port->id));
2449 mvpp2_prs_hw_write(port->priv, pe);
2450 kfree(pe);
2451
2452 return 0;
2453}
2454
2455/* Classifier configuration routines */
2456
2457/* Update classification flow table registers */
2458static void mvpp2_cls_flow_write(struct mvpp2 *priv,
2459 struct mvpp2_cls_flow_entry *fe)
2460{
2461 mvpp2_write(priv, MVPP2_CLS_FLOW_INDEX_REG, fe->index);
2462 mvpp2_write(priv, MVPP2_CLS_FLOW_TBL0_REG, fe->data[0]);
2463 mvpp2_write(priv, MVPP2_CLS_FLOW_TBL1_REG, fe->data[1]);
2464 mvpp2_write(priv, MVPP2_CLS_FLOW_TBL2_REG, fe->data[2]);
2465}
2466
2467/* Update classification lookup table register */
2468static void mvpp2_cls_lookup_write(struct mvpp2 *priv,
2469 struct mvpp2_cls_lookup_entry *le)
2470{
2471 u32 val;
2472
2473 val = (le->way << MVPP2_CLS_LKP_INDEX_WAY_OFFS) | le->lkpid;
2474 mvpp2_write(priv, MVPP2_CLS_LKP_INDEX_REG, val);
2475 mvpp2_write(priv, MVPP2_CLS_LKP_TBL_REG, le->data);
2476}
2477
2478/* Classifier default initialization */
2479static void mvpp2_cls_init(struct mvpp2 *priv)
2480{
2481 struct mvpp2_cls_lookup_entry le;
2482 struct mvpp2_cls_flow_entry fe;
2483 int index;
2484
2485 /* Enable classifier */
2486 mvpp2_write(priv, MVPP2_CLS_MODE_REG, MVPP2_CLS_MODE_ACTIVE_MASK);
2487
2488 /* Clear classifier flow table */
2489 memset(&fe.data, 0, MVPP2_CLS_FLOWS_TBL_DATA_WORDS);
2490 for (index = 0; index < MVPP2_CLS_FLOWS_TBL_SIZE; index++) {
2491 fe.index = index;
2492 mvpp2_cls_flow_write(priv, &fe);
2493 }
2494
2495 /* Clear classifier lookup table */
2496 le.data = 0;
2497 for (index = 0; index < MVPP2_CLS_LKP_TBL_SIZE; index++) {
2498 le.lkpid = index;
2499 le.way = 0;
2500 mvpp2_cls_lookup_write(priv, &le);
2501
2502 le.way = 1;
2503 mvpp2_cls_lookup_write(priv, &le);
2504 }
2505}
2506
2507static void mvpp2_cls_port_config(struct mvpp2_port *port)
2508{
2509 struct mvpp2_cls_lookup_entry le;
2510 u32 val;
2511
2512 /* Set way for the port */
2513 val = mvpp2_read(port->priv, MVPP2_CLS_PORT_WAY_REG);
2514 val &= ~MVPP2_CLS_PORT_WAY_MASK(port->id);
2515 mvpp2_write(port->priv, MVPP2_CLS_PORT_WAY_REG, val);
2516
2517 /* Pick the entry to be accessed in lookup ID decoding table
2518 * according to the way and lkpid.
2519 */
2520 le.lkpid = port->id;
2521 le.way = 0;
2522 le.data = 0;
2523
2524 /* Set initial CPU queue for receiving packets */
2525 le.data &= ~MVPP2_CLS_LKP_TBL_RXQ_MASK;
2526 le.data |= port->first_rxq;
2527
2528 /* Disable classification engines */
2529 le.data &= ~MVPP2_CLS_LKP_TBL_LOOKUP_EN_MASK;
2530
2531 /* Update lookup ID table entry */
2532 mvpp2_cls_lookup_write(port->priv, &le);
2533}
2534
2535/* Set CPU queue number for oversize packets */
2536static void mvpp2_cls_oversize_rxq_set(struct mvpp2_port *port)
2537{
2538 u32 val;
2539
2540 mvpp2_write(port->priv, MVPP2_CLS_OVERSIZE_RXQ_LOW_REG(port->id),
2541 port->first_rxq & MVPP2_CLS_OVERSIZE_RXQ_LOW_MASK);
2542
2543 mvpp2_write(port->priv, MVPP2_CLS_SWFWD_P2HQ_REG(port->id),
2544 (port->first_rxq >> MVPP2_CLS_OVERSIZE_RXQ_LOW_BITS));
2545
2546 val = mvpp2_read(port->priv, MVPP2_CLS_SWFWD_PCTRL_REG);
2547 val |= MVPP2_CLS_SWFWD_PCTRL_MASK(port->id);
2548 mvpp2_write(port->priv, MVPP2_CLS_SWFWD_PCTRL_REG, val);
2549}
2550
2551/* Buffer Manager configuration routines */
2552
2553/* Create pool */
2554static int mvpp2_bm_pool_create(struct udevice *dev,
2555 struct mvpp2 *priv,
2556 struct mvpp2_bm_pool *bm_pool, int size)
2557{
2558 u32 val;
2559
Thomas Petazzonic8feeb22017-02-20 11:29:16 +01002560 /* Number of buffer pointers must be a multiple of 16, as per
2561 * hardware constraints
2562 */
2563 if (!IS_ALIGNED(size, 16))
2564 return -EINVAL;
2565
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002566 bm_pool->virt_addr = buffer_loc.bm_pool[bm_pool->id];
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01002567 bm_pool->dma_addr = (dma_addr_t)buffer_loc.bm_pool[bm_pool->id];
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002568 if (!bm_pool->virt_addr)
2569 return -ENOMEM;
2570
Thomas Petazzonid1d075a2017-02-15 12:31:53 +01002571 if (!IS_ALIGNED((unsigned long)bm_pool->virt_addr,
2572 MVPP2_BM_POOL_PTR_ALIGN)) {
Sean Andersonddc48c12020-09-15 10:44:56 -04002573 dev_err(dev, "BM pool %d is not %d bytes aligned\n",
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002574 bm_pool->id, MVPP2_BM_POOL_PTR_ALIGN);
2575 return -ENOMEM;
2576 }
2577
2578 mvpp2_write(priv, MVPP2_BM_POOL_BASE_REG(bm_pool->id),
Thomas Petazzonic8feeb22017-02-20 11:29:16 +01002579 lower_32_bits(bm_pool->dma_addr));
Stefan Chulski783e7852017-08-09 10:37:50 +03002580 if (priv->hw_version == MVPP22)
2581 mvpp2_write(priv, MVPP22_BM_POOL_BASE_HIGH_REG,
2582 (upper_32_bits(bm_pool->dma_addr) &
2583 MVPP22_BM_POOL_BASE_HIGH_MASK));
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002584 mvpp2_write(priv, MVPP2_BM_POOL_SIZE_REG(bm_pool->id), size);
2585
2586 val = mvpp2_read(priv, MVPP2_BM_POOL_CTRL_REG(bm_pool->id));
2587 val |= MVPP2_BM_START_MASK;
2588 mvpp2_write(priv, MVPP2_BM_POOL_CTRL_REG(bm_pool->id), val);
2589
2590 bm_pool->type = MVPP2_BM_FREE;
2591 bm_pool->size = size;
2592 bm_pool->pkt_size = 0;
2593 bm_pool->buf_num = 0;
2594
2595 return 0;
2596}
2597
2598/* Set pool buffer size */
2599static void mvpp2_bm_pool_bufsize_set(struct mvpp2 *priv,
2600 struct mvpp2_bm_pool *bm_pool,
2601 int buf_size)
2602{
2603 u32 val;
2604
2605 bm_pool->buf_size = buf_size;
2606
2607 val = ALIGN(buf_size, 1 << MVPP2_POOL_BUF_SIZE_OFFSET);
2608 mvpp2_write(priv, MVPP2_POOL_BUF_SIZE_REG(bm_pool->id), val);
2609}
2610
2611/* Free all buffers from the pool */
2612static void mvpp2_bm_bufs_free(struct udevice *dev, struct mvpp2 *priv,
2613 struct mvpp2_bm_pool *bm_pool)
2614{
Stefan Roese2f720f12017-03-23 17:01:59 +01002615 int i;
2616
2617 for (i = 0; i < bm_pool->buf_num; i++) {
2618 /* Allocate buffer back from the buffer manager */
2619 mvpp2_read(priv, MVPP2_BM_PHY_ALLOC_REG(bm_pool->id));
2620 }
2621
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002622 bm_pool->buf_num = 0;
2623}
2624
2625/* Cleanup pool */
2626static int mvpp2_bm_pool_destroy(struct udevice *dev,
2627 struct mvpp2 *priv,
2628 struct mvpp2_bm_pool *bm_pool)
2629{
2630 u32 val;
2631
2632 mvpp2_bm_bufs_free(dev, priv, bm_pool);
2633 if (bm_pool->buf_num) {
2634 dev_err(dev, "cannot free all buffers in pool %d\n", bm_pool->id);
2635 return 0;
2636 }
2637
2638 val = mvpp2_read(priv, MVPP2_BM_POOL_CTRL_REG(bm_pool->id));
2639 val |= MVPP2_BM_STOP_MASK;
2640 mvpp2_write(priv, MVPP2_BM_POOL_CTRL_REG(bm_pool->id), val);
2641
2642 return 0;
2643}
2644
2645static int mvpp2_bm_pools_init(struct udevice *dev,
2646 struct mvpp2 *priv)
2647{
2648 int i, err, size;
2649 struct mvpp2_bm_pool *bm_pool;
2650
2651 /* Create all pools with maximum size */
2652 size = MVPP2_BM_POOL_SIZE_MAX;
2653 for (i = 0; i < MVPP2_BM_POOLS_NUM; i++) {
2654 bm_pool = &priv->bm_pools[i];
2655 bm_pool->id = i;
2656 err = mvpp2_bm_pool_create(dev, priv, bm_pool, size);
2657 if (err)
2658 goto err_unroll_pools;
Stefan Chulskiceec6c42017-08-09 10:37:52 +03002659 mvpp2_bm_pool_bufsize_set(priv, bm_pool, RX_BUFFER_SIZE);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002660 }
2661 return 0;
2662
2663err_unroll_pools:
Sean Andersonddc48c12020-09-15 10:44:56 -04002664 dev_err(dev, "failed to create BM pool %d, size %d\n", i, size);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002665 for (i = i - 1; i >= 0; i--)
2666 mvpp2_bm_pool_destroy(dev, priv, &priv->bm_pools[i]);
2667 return err;
2668}
2669
2670static int mvpp2_bm_init(struct udevice *dev, struct mvpp2 *priv)
2671{
2672 int i, err;
2673
2674 for (i = 0; i < MVPP2_BM_POOLS_NUM; i++) {
2675 /* Mask BM all interrupts */
2676 mvpp2_write(priv, MVPP2_BM_INTR_MASK_REG(i), 0);
2677 /* Clear BM cause register */
2678 mvpp2_write(priv, MVPP2_BM_INTR_CAUSE_REG(i), 0);
2679 }
2680
2681 /* Allocate and initialize BM pools */
2682 priv->bm_pools = devm_kcalloc(dev, MVPP2_BM_POOLS_NUM,
2683 sizeof(struct mvpp2_bm_pool), GFP_KERNEL);
2684 if (!priv->bm_pools)
2685 return -ENOMEM;
2686
2687 err = mvpp2_bm_pools_init(dev, priv);
2688 if (err < 0)
2689 return err;
2690 return 0;
2691}
2692
2693/* Attach long pool to rxq */
2694static void mvpp2_rxq_long_pool_set(struct mvpp2_port *port,
2695 int lrxq, int long_pool)
2696{
Thomas Petazzoni8f3e4c32017-02-16 06:53:51 +01002697 u32 val, mask;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002698 int prxq;
2699
2700 /* Get queue physical ID */
2701 prxq = port->rxqs[lrxq]->id;
2702
Thomas Petazzoni8f3e4c32017-02-16 06:53:51 +01002703 if (port->priv->hw_version == MVPP21)
2704 mask = MVPP21_RXQ_POOL_LONG_MASK;
2705 else
2706 mask = MVPP22_RXQ_POOL_LONG_MASK;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002707
Thomas Petazzoni8f3e4c32017-02-16 06:53:51 +01002708 val = mvpp2_read(port->priv, MVPP2_RXQ_CONFIG_REG(prxq));
2709 val &= ~mask;
2710 val |= (long_pool << MVPP2_RXQ_POOL_LONG_OFFS) & mask;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002711 mvpp2_write(port->priv, MVPP2_RXQ_CONFIG_REG(prxq), val);
2712}
2713
2714/* Set pool number in a BM cookie */
2715static inline u32 mvpp2_bm_cookie_pool_set(u32 cookie, int pool)
2716{
2717 u32 bm;
2718
2719 bm = cookie & ~(0xFF << MVPP2_BM_COOKIE_POOL_OFFS);
2720 bm |= ((pool & 0xFF) << MVPP2_BM_COOKIE_POOL_OFFS);
2721
2722 return bm;
2723}
2724
2725/* Get pool number from a BM cookie */
Thomas Petazzonid1d075a2017-02-15 12:31:53 +01002726static inline int mvpp2_bm_cookie_pool_get(unsigned long cookie)
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002727{
2728 return (cookie >> MVPP2_BM_COOKIE_POOL_OFFS) & 0xFF;
2729}
2730
2731/* Release buffer to BM */
2732static inline void mvpp2_bm_pool_put(struct mvpp2_port *port, int pool,
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01002733 dma_addr_t buf_dma_addr,
Thomas Petazzonicd9ee192017-02-20 10:37:59 +01002734 unsigned long buf_phys_addr)
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002735{
Thomas Petazzonic8feeb22017-02-20 11:29:16 +01002736 if (port->priv->hw_version == MVPP22) {
2737 u32 val = 0;
2738
2739 if (sizeof(dma_addr_t) == 8)
2740 val |= upper_32_bits(buf_dma_addr) &
2741 MVPP22_BM_ADDR_HIGH_PHYS_RLS_MASK;
2742
2743 if (sizeof(phys_addr_t) == 8)
2744 val |= (upper_32_bits(buf_phys_addr)
2745 << MVPP22_BM_ADDR_HIGH_VIRT_RLS_SHIFT) &
2746 MVPP22_BM_ADDR_HIGH_VIRT_RLS_MASK;
2747
2748 mvpp2_write(port->priv, MVPP22_BM_ADDR_HIGH_RLS_REG, val);
2749 }
2750
Thomas Petazzonicd9ee192017-02-20 10:37:59 +01002751 /* MVPP2_BM_VIRT_RLS_REG is not interpreted by HW, and simply
2752 * returned in the "cookie" field of the RX
2753 * descriptor. Instead of storing the virtual address, we
2754 * store the physical address
2755 */
2756 mvpp2_write(port->priv, MVPP2_BM_VIRT_RLS_REG, buf_phys_addr);
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01002757 mvpp2_write(port->priv, MVPP2_BM_PHY_RLS_REG(pool), buf_dma_addr);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002758}
2759
2760/* Refill BM pool */
2761static void mvpp2_pool_refill(struct mvpp2_port *port, u32 bm,
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01002762 dma_addr_t dma_addr,
Thomas Petazzonicd9ee192017-02-20 10:37:59 +01002763 phys_addr_t phys_addr)
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002764{
2765 int pool = mvpp2_bm_cookie_pool_get(bm);
2766
Thomas Petazzonicd9ee192017-02-20 10:37:59 +01002767 mvpp2_bm_pool_put(port, pool, dma_addr, phys_addr);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002768}
2769
2770/* Allocate buffers for the pool */
2771static int mvpp2_bm_bufs_add(struct mvpp2_port *port,
2772 struct mvpp2_bm_pool *bm_pool, int buf_num)
2773{
2774 int i;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002775
2776 if (buf_num < 0 ||
2777 (buf_num + bm_pool->buf_num > bm_pool->size)) {
Sean Anderson9db60ee2020-09-15 10:44:57 -04002778 dev_err(port->phy_dev->dev,
2779 "cannot allocate %d buffers for pool %d\n", buf_num,
2780 bm_pool->id);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002781 return 0;
2782 }
2783
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002784 for (i = 0; i < buf_num; i++) {
Thomas Petazzonif1060f02017-02-15 12:13:43 +01002785 mvpp2_bm_pool_put(port, bm_pool->id,
Thomas Petazzonid1d075a2017-02-15 12:31:53 +01002786 (dma_addr_t)buffer_loc.rx_buffer[i],
2787 (unsigned long)buffer_loc.rx_buffer[i]);
Thomas Petazzonif1060f02017-02-15 12:13:43 +01002788
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002789 }
2790
2791 /* Update BM driver with number of buffers added to pool */
2792 bm_pool->buf_num += i;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002793
2794 return i;
2795}
2796
2797/* Notify the driver that BM pool is being used as specific type and return the
2798 * pool pointer on success
2799 */
2800static struct mvpp2_bm_pool *
2801mvpp2_bm_pool_use(struct mvpp2_port *port, int pool, enum mvpp2_bm_type type,
2802 int pkt_size)
2803{
2804 struct mvpp2_bm_pool *new_pool = &port->priv->bm_pools[pool];
2805 int num;
2806
2807 if (new_pool->type != MVPP2_BM_FREE && new_pool->type != type) {
Sean Anderson9db60ee2020-09-15 10:44:57 -04002808 dev_err(port->phy_dev->dev, "mixing pool types is forbidden\n");
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002809 return NULL;
2810 }
2811
2812 if (new_pool->type == MVPP2_BM_FREE)
2813 new_pool->type = type;
2814
2815 /* Allocate buffers in case BM pool is used as long pool, but packet
2816 * size doesn't match MTU or BM pool hasn't being used yet
2817 */
2818 if (((type == MVPP2_BM_SWF_LONG) && (pkt_size > new_pool->pkt_size)) ||
2819 (new_pool->pkt_size == 0)) {
2820 int pkts_num;
2821
2822 /* Set default buffer number or free all the buffers in case
2823 * the pool is not empty
2824 */
2825 pkts_num = new_pool->buf_num;
2826 if (pkts_num == 0)
2827 pkts_num = type == MVPP2_BM_SWF_LONG ?
2828 MVPP2_BM_LONG_BUF_NUM :
2829 MVPP2_BM_SHORT_BUF_NUM;
2830 else
2831 mvpp2_bm_bufs_free(NULL,
2832 port->priv, new_pool);
2833
2834 new_pool->pkt_size = pkt_size;
2835
2836 /* Allocate buffers for this pool */
2837 num = mvpp2_bm_bufs_add(port, new_pool, pkts_num);
2838 if (num != pkts_num) {
Sean Andersonddc48c12020-09-15 10:44:56 -04002839 dev_err(port->phy_dev->dev,
2840 "pool %d: %d of %d allocated\n", new_pool->id,
2841 num, pkts_num);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002842 return NULL;
2843 }
2844 }
2845
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002846 return new_pool;
2847}
2848
2849/* Initialize pools for swf */
2850static int mvpp2_swf_bm_pool_init(struct mvpp2_port *port)
2851{
2852 int rxq;
2853
2854 if (!port->pool_long) {
2855 port->pool_long =
2856 mvpp2_bm_pool_use(port, MVPP2_BM_SWF_LONG_POOL(port->id),
2857 MVPP2_BM_SWF_LONG,
2858 port->pkt_size);
2859 if (!port->pool_long)
2860 return -ENOMEM;
2861
2862 port->pool_long->port_map |= (1 << port->id);
2863
2864 for (rxq = 0; rxq < rxq_number; rxq++)
2865 mvpp2_rxq_long_pool_set(port, rxq, port->pool_long->id);
2866 }
2867
2868 return 0;
2869}
2870
2871/* Port configuration routines */
2872
2873static void mvpp2_port_mii_set(struct mvpp2_port *port)
2874{
2875 u32 val;
2876
2877 val = readl(port->base + MVPP2_GMAC_CTRL_2_REG);
2878
2879 switch (port->phy_interface) {
2880 case PHY_INTERFACE_MODE_SGMII:
2881 val |= MVPP2_GMAC_INBAND_AN_MASK;
2882 break;
2883 case PHY_INTERFACE_MODE_RGMII:
Stefan Roese025e5922017-03-22 15:11:00 +01002884 case PHY_INTERFACE_MODE_RGMII_ID:
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002885 val |= MVPP2_GMAC_PORT_RGMII_MASK;
2886 default:
2887 val &= ~MVPP2_GMAC_PCS_ENABLE_MASK;
2888 }
2889
2890 writel(val, port->base + MVPP2_GMAC_CTRL_2_REG);
2891}
2892
2893static void mvpp2_port_fc_adv_enable(struct mvpp2_port *port)
2894{
2895 u32 val;
2896
2897 val = readl(port->base + MVPP2_GMAC_AUTONEG_CONFIG);
2898 val |= MVPP2_GMAC_FC_ADV_EN;
2899 writel(val, port->base + MVPP2_GMAC_AUTONEG_CONFIG);
2900}
2901
2902static void mvpp2_port_enable(struct mvpp2_port *port)
2903{
2904 u32 val;
2905
2906 val = readl(port->base + MVPP2_GMAC_CTRL_0_REG);
2907 val |= MVPP2_GMAC_PORT_EN_MASK;
2908 val |= MVPP2_GMAC_MIB_CNTR_EN_MASK;
2909 writel(val, port->base + MVPP2_GMAC_CTRL_0_REG);
2910}
2911
2912static void mvpp2_port_disable(struct mvpp2_port *port)
2913{
2914 u32 val;
2915
2916 val = readl(port->base + MVPP2_GMAC_CTRL_0_REG);
2917 val &= ~(MVPP2_GMAC_PORT_EN_MASK);
2918 writel(val, port->base + MVPP2_GMAC_CTRL_0_REG);
2919}
2920
2921/* Set IEEE 802.3x Flow Control Xon Packet Transmission Mode */
2922static void mvpp2_port_periodic_xon_disable(struct mvpp2_port *port)
2923{
2924 u32 val;
2925
2926 val = readl(port->base + MVPP2_GMAC_CTRL_1_REG) &
2927 ~MVPP2_GMAC_PERIODIC_XON_EN_MASK;
2928 writel(val, port->base + MVPP2_GMAC_CTRL_1_REG);
2929}
2930
2931/* Configure loopback port */
2932static void mvpp2_port_loopback_set(struct mvpp2_port *port)
2933{
2934 u32 val;
2935
2936 val = readl(port->base + MVPP2_GMAC_CTRL_1_REG);
2937
2938 if (port->speed == 1000)
2939 val |= MVPP2_GMAC_GMII_LB_EN_MASK;
2940 else
2941 val &= ~MVPP2_GMAC_GMII_LB_EN_MASK;
2942
2943 if (port->phy_interface == PHY_INTERFACE_MODE_SGMII)
2944 val |= MVPP2_GMAC_PCS_LB_EN_MASK;
2945 else
2946 val &= ~MVPP2_GMAC_PCS_LB_EN_MASK;
2947
2948 writel(val, port->base + MVPP2_GMAC_CTRL_1_REG);
2949}
2950
2951static void mvpp2_port_reset(struct mvpp2_port *port)
2952{
2953 u32 val;
2954
2955 val = readl(port->base + MVPP2_GMAC_CTRL_2_REG) &
2956 ~MVPP2_GMAC_PORT_RESET_MASK;
2957 writel(val, port->base + MVPP2_GMAC_CTRL_2_REG);
2958
2959 while (readl(port->base + MVPP2_GMAC_CTRL_2_REG) &
2960 MVPP2_GMAC_PORT_RESET_MASK)
2961 continue;
2962}
2963
2964/* Change maximum receive size of the port */
2965static inline void mvpp2_gmac_max_rx_size_set(struct mvpp2_port *port)
2966{
2967 u32 val;
2968
2969 val = readl(port->base + MVPP2_GMAC_CTRL_0_REG);
2970 val &= ~MVPP2_GMAC_MAX_RX_SIZE_MASK;
2971 val |= (((port->pkt_size - MVPP2_MH_SIZE) / 2) <<
2972 MVPP2_GMAC_MAX_RX_SIZE_OFFS);
2973 writel(val, port->base + MVPP2_GMAC_CTRL_0_REG);
2974}
2975
Stefan Roese31aa1e32017-03-22 15:07:30 +01002976/* PPv2.2 GoP/GMAC config */
2977
2978/* Set the MAC to reset or exit from reset */
2979static int gop_gmac_reset(struct mvpp2_port *port, int reset)
2980{
2981 u32 val;
2982
2983 /* read - modify - write */
2984 val = readl(port->base + MVPP2_GMAC_CTRL_2_REG);
2985 if (reset)
2986 val |= MVPP2_GMAC_PORT_RESET_MASK;
2987 else
2988 val &= ~MVPP2_GMAC_PORT_RESET_MASK;
2989 writel(val, port->base + MVPP2_GMAC_CTRL_2_REG);
2990
2991 return 0;
2992}
2993
2994/*
2995 * gop_gpcs_mode_cfg
2996 *
2997 * Configure port to working with Gig PCS or don't.
2998 */
2999static int gop_gpcs_mode_cfg(struct mvpp2_port *port, int en)
3000{
3001 u32 val;
3002
3003 val = readl(port->base + MVPP2_GMAC_CTRL_2_REG);
3004 if (en)
3005 val |= MVPP2_GMAC_PCS_ENABLE_MASK;
3006 else
3007 val &= ~MVPP2_GMAC_PCS_ENABLE_MASK;
3008 /* enable / disable PCS on this port */
3009 writel(val, port->base + MVPP2_GMAC_CTRL_2_REG);
3010
3011 return 0;
3012}
3013
3014static int gop_bypass_clk_cfg(struct mvpp2_port *port, int en)
3015{
3016 u32 val;
3017
3018 val = readl(port->base + MVPP2_GMAC_CTRL_2_REG);
3019 if (en)
3020 val |= MVPP2_GMAC_CLK_125_BYPS_EN_MASK;
3021 else
3022 val &= ~MVPP2_GMAC_CLK_125_BYPS_EN_MASK;
3023 /* enable / disable PCS on this port */
3024 writel(val, port->base + MVPP2_GMAC_CTRL_2_REG);
3025
3026 return 0;
3027}
3028
3029static void gop_gmac_sgmii2_5_cfg(struct mvpp2_port *port)
3030{
3031 u32 val, thresh;
3032
3033 /*
3034 * Configure minimal level of the Tx FIFO before the lower part
3035 * starts to read a packet
3036 */
3037 thresh = MVPP2_SGMII2_5_TX_FIFO_MIN_TH;
3038 val = readl(port->base + MVPP2_GMAC_PORT_FIFO_CFG_1_REG);
3039 val &= ~MVPP2_GMAC_TX_FIFO_MIN_TH_ALL_MASK;
3040 val |= MVPP2_GMAC_TX_FIFO_MIN_TH_MASK(thresh);
3041 writel(val, port->base + MVPP2_GMAC_PORT_FIFO_CFG_1_REG);
3042
3043 /* Disable bypass of sync module */
3044 val = readl(port->base + MVPP2_GMAC_CTRL_4_REG);
3045 val |= MVPP2_GMAC_CTRL4_SYNC_BYPASS_MASK;
3046 /* configure DP clock select according to mode */
3047 val |= MVPP2_GMAC_CTRL4_DP_CLK_SEL_MASK;
3048 /* configure QSGMII bypass according to mode */
3049 val |= MVPP2_GMAC_CTRL4_QSGMII_BYPASS_ACTIVE_MASK;
3050 writel(val, port->base + MVPP2_GMAC_CTRL_4_REG);
3051
Stefan Roese31aa1e32017-03-22 15:07:30 +01003052 val = readl(port->base + MVPP2_GMAC_CTRL_0_REG);
3053 /*
3054 * Configure GIG MAC to 1000Base-X mode connected to a fiber
3055 * transceiver
3056 */
3057 val |= MVPP2_GMAC_PORT_TYPE_MASK;
3058 writel(val, port->base + MVPP2_GMAC_CTRL_0_REG);
3059
3060 /* configure AN 0x9268 */
3061 val = MVPP2_GMAC_EN_PCS_AN |
3062 MVPP2_GMAC_AN_BYPASS_EN |
3063 MVPP2_GMAC_CONFIG_MII_SPEED |
3064 MVPP2_GMAC_CONFIG_GMII_SPEED |
3065 MVPP2_GMAC_FC_ADV_EN |
3066 MVPP2_GMAC_CONFIG_FULL_DUPLEX |
3067 MVPP2_GMAC_CHOOSE_SAMPLE_TX_CONFIG;
3068 writel(val, port->base + MVPP2_GMAC_AUTONEG_CONFIG);
3069}
3070
3071static void gop_gmac_sgmii_cfg(struct mvpp2_port *port)
3072{
3073 u32 val, thresh;
3074
3075 /*
3076 * Configure minimal level of the Tx FIFO before the lower part
3077 * starts to read a packet
3078 */
3079 thresh = MVPP2_SGMII_TX_FIFO_MIN_TH;
3080 val = readl(port->base + MVPP2_GMAC_PORT_FIFO_CFG_1_REG);
3081 val &= ~MVPP2_GMAC_TX_FIFO_MIN_TH_ALL_MASK;
3082 val |= MVPP2_GMAC_TX_FIFO_MIN_TH_MASK(thresh);
3083 writel(val, port->base + MVPP2_GMAC_PORT_FIFO_CFG_1_REG);
3084
3085 /* Disable bypass of sync module */
3086 val = readl(port->base + MVPP2_GMAC_CTRL_4_REG);
3087 val |= MVPP2_GMAC_CTRL4_SYNC_BYPASS_MASK;
3088 /* configure DP clock select according to mode */
3089 val &= ~MVPP2_GMAC_CTRL4_DP_CLK_SEL_MASK;
3090 /* configure QSGMII bypass according to mode */
3091 val |= MVPP2_GMAC_CTRL4_QSGMII_BYPASS_ACTIVE_MASK;
3092 writel(val, port->base + MVPP2_GMAC_CTRL_4_REG);
3093
Stefan Roese31aa1e32017-03-22 15:07:30 +01003094 val = readl(port->base + MVPP2_GMAC_CTRL_0_REG);
3095 /* configure GIG MAC to SGMII mode */
3096 val &= ~MVPP2_GMAC_PORT_TYPE_MASK;
3097 writel(val, port->base + MVPP2_GMAC_CTRL_0_REG);
3098
3099 /* configure AN */
3100 val = MVPP2_GMAC_EN_PCS_AN |
3101 MVPP2_GMAC_AN_BYPASS_EN |
3102 MVPP2_GMAC_AN_SPEED_EN |
3103 MVPP2_GMAC_EN_FC_AN |
3104 MVPP2_GMAC_AN_DUPLEX_EN |
3105 MVPP2_GMAC_CHOOSE_SAMPLE_TX_CONFIG;
3106 writel(val, port->base + MVPP2_GMAC_AUTONEG_CONFIG);
3107}
3108
3109static void gop_gmac_rgmii_cfg(struct mvpp2_port *port)
3110{
3111 u32 val, thresh;
3112
3113 /*
3114 * Configure minimal level of the Tx FIFO before the lower part
3115 * starts to read a packet
3116 */
3117 thresh = MVPP2_RGMII_TX_FIFO_MIN_TH;
3118 val = readl(port->base + MVPP2_GMAC_PORT_FIFO_CFG_1_REG);
3119 val &= ~MVPP2_GMAC_TX_FIFO_MIN_TH_ALL_MASK;
3120 val |= MVPP2_GMAC_TX_FIFO_MIN_TH_MASK(thresh);
3121 writel(val, port->base + MVPP2_GMAC_PORT_FIFO_CFG_1_REG);
3122
3123 /* Disable bypass of sync module */
3124 val = readl(port->base + MVPP2_GMAC_CTRL_4_REG);
3125 val |= MVPP2_GMAC_CTRL4_SYNC_BYPASS_MASK;
3126 /* configure DP clock select according to mode */
3127 val &= ~MVPP2_GMAC_CTRL4_DP_CLK_SEL_MASK;
3128 val |= MVPP2_GMAC_CTRL4_QSGMII_BYPASS_ACTIVE_MASK;
3129 val |= MVPP2_GMAC_CTRL4_EXT_PIN_GMII_SEL_MASK;
3130 writel(val, port->base + MVPP2_GMAC_CTRL_4_REG);
3131
Stefan Roese31aa1e32017-03-22 15:07:30 +01003132 val = readl(port->base + MVPP2_GMAC_CTRL_0_REG);
3133 /* configure GIG MAC to SGMII mode */
3134 val &= ~MVPP2_GMAC_PORT_TYPE_MASK;
3135 writel(val, port->base + MVPP2_GMAC_CTRL_0_REG);
3136
3137 /* configure AN 0xb8e8 */
3138 val = MVPP2_GMAC_AN_BYPASS_EN |
3139 MVPP2_GMAC_AN_SPEED_EN |
3140 MVPP2_GMAC_EN_FC_AN |
3141 MVPP2_GMAC_AN_DUPLEX_EN |
3142 MVPP2_GMAC_CHOOSE_SAMPLE_TX_CONFIG;
3143 writel(val, port->base + MVPP2_GMAC_AUTONEG_CONFIG);
3144}
3145
3146/* Set the internal mux's to the required MAC in the GOP */
3147static int gop_gmac_mode_cfg(struct mvpp2_port *port)
3148{
3149 u32 val;
3150
3151 /* Set TX FIFO thresholds */
3152 switch (port->phy_interface) {
3153 case PHY_INTERFACE_MODE_SGMII:
3154 if (port->phy_speed == 2500)
3155 gop_gmac_sgmii2_5_cfg(port);
3156 else
3157 gop_gmac_sgmii_cfg(port);
3158 break;
3159
3160 case PHY_INTERFACE_MODE_RGMII:
3161 case PHY_INTERFACE_MODE_RGMII_ID:
3162 gop_gmac_rgmii_cfg(port);
3163 break;
3164
3165 default:
3166 return -1;
3167 }
3168
3169 /* Jumbo frame support - 0x1400*2= 0x2800 bytes */
3170 val = readl(port->base + MVPP2_GMAC_CTRL_0_REG);
3171 val &= ~MVPP2_GMAC_MAX_RX_SIZE_MASK;
3172 val |= 0x1400 << MVPP2_GMAC_MAX_RX_SIZE_OFFS;
3173 writel(val, port->base + MVPP2_GMAC_CTRL_0_REG);
3174
3175 /* PeriodicXonEn disable */
3176 val = readl(port->base + MVPP2_GMAC_CTRL_1_REG);
3177 val &= ~MVPP2_GMAC_PERIODIC_XON_EN_MASK;
3178 writel(val, port->base + MVPP2_GMAC_CTRL_1_REG);
3179
3180 return 0;
3181}
3182
3183static void gop_xlg_2_gig_mac_cfg(struct mvpp2_port *port)
3184{
3185 u32 val;
3186
3187 /* relevant only for MAC0 (XLG0 and GMAC0) */
3188 if (port->gop_id > 0)
3189 return;
3190
3191 /* configure 1Gig MAC mode */
3192 val = readl(port->base + MVPP22_XLG_CTRL3_REG);
3193 val &= ~MVPP22_XLG_CTRL3_MACMODESELECT_MASK;
3194 val |= MVPP22_XLG_CTRL3_MACMODESELECT_GMAC;
3195 writel(val, port->base + MVPP22_XLG_CTRL3_REG);
3196}
3197
3198static int gop_gpcs_reset(struct mvpp2_port *port, int reset)
3199{
3200 u32 val;
3201
3202 val = readl(port->base + MVPP2_GMAC_CTRL_2_REG);
3203 if (reset)
3204 val &= ~MVPP2_GMAC_SGMII_MODE_MASK;
3205 else
3206 val |= MVPP2_GMAC_SGMII_MODE_MASK;
3207 writel(val, port->base + MVPP2_GMAC_CTRL_2_REG);
3208
3209 return 0;
3210}
3211
Stefan Roese2fe23042017-03-22 15:09:38 +01003212static int gop_mpcs_mode(struct mvpp2_port *port)
3213{
3214 u32 val;
3215
3216 /* configure PCS40G COMMON CONTROL */
Stefan Chulski8d3aa372021-05-03 08:08:45 +02003217 val = readl(port->priv->mpcs_base + port->gop_id * MVPP22_PORT_OFFSET +
3218 PCS40G_COMMON_CONTROL);
Stefan Roese2fe23042017-03-22 15:09:38 +01003219 val &= ~FORWARD_ERROR_CORRECTION_MASK;
Stefan Chulski8d3aa372021-05-03 08:08:45 +02003220 writel(val, port->priv->mpcs_base + port->gop_id * MVPP22_PORT_OFFSET +
3221 PCS40G_COMMON_CONTROL);
Stefan Roese2fe23042017-03-22 15:09:38 +01003222
3223 /* configure PCS CLOCK RESET */
Stefan Chulski8d3aa372021-05-03 08:08:45 +02003224 val = readl(port->priv->mpcs_base + port->gop_id * MVPP22_PORT_OFFSET +
3225 PCS_CLOCK_RESET);
Stefan Roese2fe23042017-03-22 15:09:38 +01003226 val &= ~CLK_DIVISION_RATIO_MASK;
3227 val |= 1 << CLK_DIVISION_RATIO_OFFS;
Stefan Chulski8d3aa372021-05-03 08:08:45 +02003228 writel(val, port->priv->mpcs_base + port->gop_id * MVPP22_PORT_OFFSET +
3229 PCS_CLOCK_RESET);
Stefan Roese2fe23042017-03-22 15:09:38 +01003230
3231 val &= ~CLK_DIV_PHASE_SET_MASK;
3232 val |= MAC_CLK_RESET_MASK;
3233 val |= RX_SD_CLK_RESET_MASK;
3234 val |= TX_SD_CLK_RESET_MASK;
Stefan Chulski8d3aa372021-05-03 08:08:45 +02003235 writel(val, port->priv->mpcs_base + port->gop_id * MVPP22_PORT_OFFSET +
3236 PCS_CLOCK_RESET);
Stefan Roese2fe23042017-03-22 15:09:38 +01003237
3238 return 0;
3239}
3240
3241/* Set the internal mux's to the required MAC in the GOP */
3242static int gop_xlg_mac_mode_cfg(struct mvpp2_port *port, int num_of_act_lanes)
3243{
3244 u32 val;
3245
3246 /* configure 10G MAC mode */
3247 val = readl(port->base + MVPP22_XLG_CTRL0_REG);
3248 val |= MVPP22_XLG_RX_FC_EN;
3249 writel(val, port->base + MVPP22_XLG_CTRL0_REG);
3250
3251 val = readl(port->base + MVPP22_XLG_CTRL3_REG);
3252 val &= ~MVPP22_XLG_CTRL3_MACMODESELECT_MASK;
3253 val |= MVPP22_XLG_CTRL3_MACMODESELECT_10GMAC;
3254 writel(val, port->base + MVPP22_XLG_CTRL3_REG);
3255
3256 /* read - modify - write */
3257 val = readl(port->base + MVPP22_XLG_CTRL4_REG);
3258 val &= ~MVPP22_XLG_MODE_DMA_1G;
3259 val |= MVPP22_XLG_FORWARD_PFC_EN;
3260 val |= MVPP22_XLG_FORWARD_802_3X_FC_EN;
3261 val &= ~MVPP22_XLG_EN_IDLE_CHECK_FOR_LINK;
3262 writel(val, port->base + MVPP22_XLG_CTRL4_REG);
3263
3264 /* Jumbo frame support: 0x1400 * 2 = 0x2800 bytes */
3265 val = readl(port->base + MVPP22_XLG_CTRL1_REG);
3266 val &= ~MVPP22_XLG_MAX_RX_SIZE_MASK;
3267 val |= 0x1400 << MVPP22_XLG_MAX_RX_SIZE_OFFS;
3268 writel(val, port->base + MVPP22_XLG_CTRL1_REG);
3269
3270 /* unmask link change interrupt */
3271 val = readl(port->base + MVPP22_XLG_INTERRUPT_MASK_REG);
3272 val |= MVPP22_XLG_INTERRUPT_LINK_CHANGE;
3273 val |= 1; /* unmask summary bit */
3274 writel(val, port->base + MVPP22_XLG_INTERRUPT_MASK_REG);
3275
3276 return 0;
3277}
3278
Stefan Roese2fe23042017-03-22 15:09:38 +01003279/* Set the MAC to reset or exit from reset */
3280static int gop_xlg_mac_reset(struct mvpp2_port *port, int reset)
3281{
3282 u32 val;
3283
3284 /* read - modify - write */
3285 val = readl(port->base + MVPP22_XLG_CTRL0_REG);
3286 if (reset)
3287 val &= ~MVPP22_XLG_MAC_RESETN;
3288 else
3289 val |= MVPP22_XLG_MAC_RESETN;
3290 writel(val, port->base + MVPP22_XLG_CTRL0_REG);
3291
3292 return 0;
3293}
3294
Stefan Roese31aa1e32017-03-22 15:07:30 +01003295/*
3296 * gop_port_init
3297 *
3298 * Init physical port. Configures the port mode and all it's elements
3299 * accordingly.
3300 * Does not verify that the selected mode/port number is valid at the
3301 * core level.
3302 */
3303static int gop_port_init(struct mvpp2_port *port)
3304{
3305 int mac_num = port->gop_id;
Stefan Roese2fe23042017-03-22 15:09:38 +01003306 int num_of_act_lanes;
Stefan Roese31aa1e32017-03-22 15:07:30 +01003307
3308 if (mac_num >= MVPP22_GOP_MAC_NUM) {
Sean Anderson9db60ee2020-09-15 10:44:57 -04003309 log_err("illegal port number %d", mac_num);
Stefan Roese31aa1e32017-03-22 15:07:30 +01003310 return -1;
3311 }
3312
3313 switch (port->phy_interface) {
3314 case PHY_INTERFACE_MODE_RGMII:
3315 case PHY_INTERFACE_MODE_RGMII_ID:
3316 gop_gmac_reset(port, 1);
3317
3318 /* configure PCS */
3319 gop_gpcs_mode_cfg(port, 0);
3320 gop_bypass_clk_cfg(port, 1);
3321
3322 /* configure MAC */
3323 gop_gmac_mode_cfg(port);
3324 /* pcs unreset */
3325 gop_gpcs_reset(port, 0);
3326
3327 /* mac unreset */
3328 gop_gmac_reset(port, 0);
3329 break;
3330
3331 case PHY_INTERFACE_MODE_SGMII:
3332 /* configure PCS */
3333 gop_gpcs_mode_cfg(port, 1);
3334
3335 /* configure MAC */
3336 gop_gmac_mode_cfg(port);
3337 /* select proper Mac mode */
3338 gop_xlg_2_gig_mac_cfg(port);
3339
3340 /* pcs unreset */
3341 gop_gpcs_reset(port, 0);
3342 /* mac unreset */
3343 gop_gmac_reset(port, 0);
3344 break;
3345
Stefan Roese2fe23042017-03-22 15:09:38 +01003346 case PHY_INTERFACE_MODE_SFI:
3347 num_of_act_lanes = 2;
3348 mac_num = 0;
3349 /* configure PCS */
Stefan Roese2fe23042017-03-22 15:09:38 +01003350 gop_mpcs_mode(port);
3351 /* configure MAC */
3352 gop_xlg_mac_mode_cfg(port, num_of_act_lanes);
3353
Stefan Roese2fe23042017-03-22 15:09:38 +01003354 /* mac unreset */
3355 gop_xlg_mac_reset(port, 0);
3356 break;
3357
Stefan Roese31aa1e32017-03-22 15:07:30 +01003358 default:
Sean Anderson9db60ee2020-09-15 10:44:57 -04003359 log_err("Requested port mode (%d) not supported\n",
3360 port->phy_interface);
Stefan Roese31aa1e32017-03-22 15:07:30 +01003361 return -1;
3362 }
3363
3364 return 0;
3365}
3366
Stefan Roese2fe23042017-03-22 15:09:38 +01003367static void gop_xlg_mac_port_enable(struct mvpp2_port *port, int enable)
3368{
3369 u32 val;
3370
3371 val = readl(port->base + MVPP22_XLG_CTRL0_REG);
3372 if (enable) {
3373 /* Enable port and MIB counters update */
3374 val |= MVPP22_XLG_PORT_EN;
3375 val &= ~MVPP22_XLG_MIBCNT_DIS;
3376 } else {
3377 /* Disable port */
3378 val &= ~MVPP22_XLG_PORT_EN;
3379 }
3380 writel(val, port->base + MVPP22_XLG_CTRL0_REG);
3381}
3382
Stefan Roese31aa1e32017-03-22 15:07:30 +01003383static void gop_port_enable(struct mvpp2_port *port, int enable)
3384{
3385 switch (port->phy_interface) {
3386 case PHY_INTERFACE_MODE_RGMII:
3387 case PHY_INTERFACE_MODE_RGMII_ID:
3388 case PHY_INTERFACE_MODE_SGMII:
3389 if (enable)
3390 mvpp2_port_enable(port);
3391 else
3392 mvpp2_port_disable(port);
3393 break;
3394
Stefan Roese2fe23042017-03-22 15:09:38 +01003395 case PHY_INTERFACE_MODE_SFI:
3396 gop_xlg_mac_port_enable(port, enable);
3397
3398 break;
Stefan Roese31aa1e32017-03-22 15:07:30 +01003399 default:
Sean Anderson9db60ee2020-09-15 10:44:57 -04003400 log_err("%s: Wrong port mode (%d)\n", __func__,
3401 port->phy_interface);
Stefan Roese31aa1e32017-03-22 15:07:30 +01003402 return;
3403 }
3404}
3405
3406/* RFU1 functions */
3407static inline u32 gop_rfu1_read(struct mvpp2 *priv, u32 offset)
3408{
3409 return readl(priv->rfu1_base + offset);
3410}
3411
3412static inline void gop_rfu1_write(struct mvpp2 *priv, u32 offset, u32 data)
3413{
3414 writel(data, priv->rfu1_base + offset);
3415}
3416
3417static u32 mvpp2_netc_cfg_create(int gop_id, phy_interface_t phy_type)
3418{
3419 u32 val = 0;
3420
3421 if (gop_id == 2) {
3422 if (phy_type == PHY_INTERFACE_MODE_SGMII)
3423 val |= MV_NETC_GE_MAC2_SGMII;
Stefan Chulski8d3aa372021-05-03 08:08:45 +02003424 else if (phy_type == PHY_INTERFACE_MODE_RGMII ||
3425 phy_type == PHY_INTERFACE_MODE_RGMII_ID)
3426 val |= MV_NETC_GE_MAC2_RGMII;
Stefan Roese31aa1e32017-03-22 15:07:30 +01003427 }
3428
3429 if (gop_id == 3) {
3430 if (phy_type == PHY_INTERFACE_MODE_SGMII)
3431 val |= MV_NETC_GE_MAC3_SGMII;
3432 else if (phy_type == PHY_INTERFACE_MODE_RGMII ||
3433 phy_type == PHY_INTERFACE_MODE_RGMII_ID)
3434 val |= MV_NETC_GE_MAC3_RGMII;
3435 }
3436
3437 return val;
3438}
3439
3440static void gop_netc_active_port(struct mvpp2 *priv, int gop_id, u32 val)
3441{
3442 u32 reg;
3443
3444 reg = gop_rfu1_read(priv, NETCOMP_PORTS_CONTROL_1_REG);
3445 reg &= ~(NETC_PORTS_ACTIVE_MASK(gop_id));
3446
3447 val <<= NETC_PORTS_ACTIVE_OFFSET(gop_id);
3448 val &= NETC_PORTS_ACTIVE_MASK(gop_id);
3449
3450 reg |= val;
3451
3452 gop_rfu1_write(priv, NETCOMP_PORTS_CONTROL_1_REG, reg);
3453}
3454
3455static void gop_netc_mii_mode(struct mvpp2 *priv, int gop_id, u32 val)
3456{
3457 u32 reg;
3458
3459 reg = gop_rfu1_read(priv, NETCOMP_CONTROL_0_REG);
3460 reg &= ~NETC_GBE_PORT1_MII_MODE_MASK;
3461
3462 val <<= NETC_GBE_PORT1_MII_MODE_OFFS;
3463 val &= NETC_GBE_PORT1_MII_MODE_MASK;
3464
3465 reg |= val;
3466
3467 gop_rfu1_write(priv, NETCOMP_CONTROL_0_REG, reg);
3468}
3469
3470static void gop_netc_gop_reset(struct mvpp2 *priv, u32 val)
3471{
3472 u32 reg;
3473
3474 reg = gop_rfu1_read(priv, GOP_SOFT_RESET_1_REG);
3475 reg &= ~NETC_GOP_SOFT_RESET_MASK;
3476
3477 val <<= NETC_GOP_SOFT_RESET_OFFS;
3478 val &= NETC_GOP_SOFT_RESET_MASK;
3479
3480 reg |= val;
3481
3482 gop_rfu1_write(priv, GOP_SOFT_RESET_1_REG, reg);
3483}
3484
3485static void gop_netc_gop_clock_logic_set(struct mvpp2 *priv, u32 val)
3486{
3487 u32 reg;
3488
3489 reg = gop_rfu1_read(priv, NETCOMP_PORTS_CONTROL_0_REG);
3490 reg &= ~NETC_CLK_DIV_PHASE_MASK;
3491
3492 val <<= NETC_CLK_DIV_PHASE_OFFS;
3493 val &= NETC_CLK_DIV_PHASE_MASK;
3494
3495 reg |= val;
3496
3497 gop_rfu1_write(priv, NETCOMP_PORTS_CONTROL_0_REG, reg);
3498}
3499
3500static void gop_netc_port_rf_reset(struct mvpp2 *priv, int gop_id, u32 val)
3501{
3502 u32 reg;
3503
3504 reg = gop_rfu1_read(priv, NETCOMP_PORTS_CONTROL_1_REG);
3505 reg &= ~(NETC_PORT_GIG_RF_RESET_MASK(gop_id));
3506
3507 val <<= NETC_PORT_GIG_RF_RESET_OFFS(gop_id);
3508 val &= NETC_PORT_GIG_RF_RESET_MASK(gop_id);
3509
3510 reg |= val;
3511
3512 gop_rfu1_write(priv, NETCOMP_PORTS_CONTROL_1_REG, reg);
3513}
3514
3515static void gop_netc_gbe_sgmii_mode_select(struct mvpp2 *priv, int gop_id,
3516 u32 val)
3517{
3518 u32 reg, mask, offset;
3519
3520 if (gop_id == 2) {
3521 mask = NETC_GBE_PORT0_SGMII_MODE_MASK;
3522 offset = NETC_GBE_PORT0_SGMII_MODE_OFFS;
3523 } else {
3524 mask = NETC_GBE_PORT1_SGMII_MODE_MASK;
3525 offset = NETC_GBE_PORT1_SGMII_MODE_OFFS;
3526 }
3527 reg = gop_rfu1_read(priv, NETCOMP_CONTROL_0_REG);
3528 reg &= ~mask;
3529
3530 val <<= offset;
3531 val &= mask;
3532
3533 reg |= val;
3534
3535 gop_rfu1_write(priv, NETCOMP_CONTROL_0_REG, reg);
3536}
3537
3538static void gop_netc_bus_width_select(struct mvpp2 *priv, u32 val)
3539{
3540 u32 reg;
3541
3542 reg = gop_rfu1_read(priv, NETCOMP_PORTS_CONTROL_0_REG);
3543 reg &= ~NETC_BUS_WIDTH_SELECT_MASK;
3544
3545 val <<= NETC_BUS_WIDTH_SELECT_OFFS;
3546 val &= NETC_BUS_WIDTH_SELECT_MASK;
3547
3548 reg |= val;
3549
3550 gop_rfu1_write(priv, NETCOMP_PORTS_CONTROL_0_REG, reg);
3551}
3552
3553static void gop_netc_sample_stages_timing(struct mvpp2 *priv, u32 val)
3554{
3555 u32 reg;
3556
3557 reg = gop_rfu1_read(priv, NETCOMP_PORTS_CONTROL_0_REG);
3558 reg &= ~NETC_GIG_RX_DATA_SAMPLE_MASK;
3559
3560 val <<= NETC_GIG_RX_DATA_SAMPLE_OFFS;
3561 val &= NETC_GIG_RX_DATA_SAMPLE_MASK;
3562
3563 reg |= val;
3564
3565 gop_rfu1_write(priv, NETCOMP_PORTS_CONTROL_0_REG, reg);
3566}
3567
3568static void gop_netc_mac_to_xgmii(struct mvpp2 *priv, int gop_id,
3569 enum mv_netc_phase phase)
3570{
3571 switch (phase) {
3572 case MV_NETC_FIRST_PHASE:
3573 /* Set Bus Width to HB mode = 1 */
3574 gop_netc_bus_width_select(priv, 1);
3575 /* Select RGMII mode */
3576 gop_netc_gbe_sgmii_mode_select(priv, gop_id, MV_NETC_GBE_XMII);
3577 break;
3578
3579 case MV_NETC_SECOND_PHASE:
3580 /* De-assert the relevant port HB reset */
3581 gop_netc_port_rf_reset(priv, gop_id, 1);
3582 break;
3583 }
3584}
3585
3586static void gop_netc_mac_to_sgmii(struct mvpp2 *priv, int gop_id,
3587 enum mv_netc_phase phase)
3588{
3589 switch (phase) {
3590 case MV_NETC_FIRST_PHASE:
3591 /* Set Bus Width to HB mode = 1 */
3592 gop_netc_bus_width_select(priv, 1);
3593 /* Select SGMII mode */
3594 if (gop_id >= 1) {
3595 gop_netc_gbe_sgmii_mode_select(priv, gop_id,
3596 MV_NETC_GBE_SGMII);
3597 }
3598
3599 /* Configure the sample stages */
3600 gop_netc_sample_stages_timing(priv, 0);
3601 /* Configure the ComPhy Selector */
3602 /* gop_netc_com_phy_selector_config(netComplex); */
3603 break;
3604
3605 case MV_NETC_SECOND_PHASE:
3606 /* De-assert the relevant port HB reset */
3607 gop_netc_port_rf_reset(priv, gop_id, 1);
3608 break;
3609 }
3610}
3611
3612static int gop_netc_init(struct mvpp2 *priv, enum mv_netc_phase phase)
3613{
3614 u32 c = priv->netc_config;
3615
3616 if (c & MV_NETC_GE_MAC2_SGMII)
3617 gop_netc_mac_to_sgmii(priv, 2, phase);
Stefan Chulski8d3aa372021-05-03 08:08:45 +02003618 else if (c & MV_NETC_GE_MAC2_RGMII)
Stefan Roese31aa1e32017-03-22 15:07:30 +01003619 gop_netc_mac_to_xgmii(priv, 2, phase);
3620
3621 if (c & MV_NETC_GE_MAC3_SGMII) {
3622 gop_netc_mac_to_sgmii(priv, 3, phase);
3623 } else {
3624 gop_netc_mac_to_xgmii(priv, 3, phase);
3625 if (c & MV_NETC_GE_MAC3_RGMII)
3626 gop_netc_mii_mode(priv, 3, MV_NETC_GBE_RGMII);
3627 else
3628 gop_netc_mii_mode(priv, 3, MV_NETC_GBE_MII);
3629 }
3630
3631 /* Activate gop ports 0, 2, 3 */
3632 gop_netc_active_port(priv, 0, 1);
3633 gop_netc_active_port(priv, 2, 1);
3634 gop_netc_active_port(priv, 3, 1);
3635
3636 if (phase == MV_NETC_SECOND_PHASE) {
3637 /* Enable the GOP internal clock logic */
3638 gop_netc_gop_clock_logic_set(priv, 1);
3639 /* De-assert GOP unit reset */
3640 gop_netc_gop_reset(priv, 1);
3641 }
3642
3643 return 0;
3644}
3645
Stefan Roese99d4c6d2016-02-10 07:22:10 +01003646/* Set defaults to the MVPP2 port */
3647static void mvpp2_defaults_set(struct mvpp2_port *port)
3648{
3649 int tx_port_num, val, queue, ptxq, lrxq;
3650
Thomas Petazzonib8c8e6f2017-02-16 06:57:24 +01003651 if (port->priv->hw_version == MVPP21) {
3652 /* Configure port to loopback if needed */
3653 if (port->flags & MVPP2_F_LOOPBACK)
3654 mvpp2_port_loopback_set(port);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01003655
Thomas Petazzonib8c8e6f2017-02-16 06:57:24 +01003656 /* Update TX FIFO MIN Threshold */
3657 val = readl(port->base + MVPP2_GMAC_PORT_FIFO_CFG_1_REG);
3658 val &= ~MVPP2_GMAC_TX_FIFO_MIN_TH_ALL_MASK;
3659 /* Min. TX threshold must be less than minimal packet length */
3660 val |= MVPP2_GMAC_TX_FIFO_MIN_TH_MASK(64 - 4 - 2);
3661 writel(val, port->base + MVPP2_GMAC_PORT_FIFO_CFG_1_REG);
3662 }
Stefan Roese99d4c6d2016-02-10 07:22:10 +01003663
3664 /* Disable Legacy WRR, Disable EJP, Release from reset */
3665 tx_port_num = mvpp2_egress_port(port);
3666 mvpp2_write(port->priv, MVPP2_TXP_SCHED_PORT_INDEX_REG,
3667 tx_port_num);
3668 mvpp2_write(port->priv, MVPP2_TXP_SCHED_CMD_1_REG, 0);
3669
3670 /* Close bandwidth for all queues */
3671 for (queue = 0; queue < MVPP2_MAX_TXQ; queue++) {
3672 ptxq = mvpp2_txq_phys(port->id, queue);
3673 mvpp2_write(port->priv,
3674 MVPP2_TXQ_SCHED_TOKEN_CNTR_REG(ptxq), 0);
3675 }
3676
3677 /* Set refill period to 1 usec, refill tokens
3678 * and bucket size to maximum
3679 */
3680 mvpp2_write(port->priv, MVPP2_TXP_SCHED_PERIOD_REG, 0xc8);
3681 val = mvpp2_read(port->priv, MVPP2_TXP_SCHED_REFILL_REG);
3682 val &= ~MVPP2_TXP_REFILL_PERIOD_ALL_MASK;
3683 val |= MVPP2_TXP_REFILL_PERIOD_MASK(1);
3684 val |= MVPP2_TXP_REFILL_TOKENS_ALL_MASK;
3685 mvpp2_write(port->priv, MVPP2_TXP_SCHED_REFILL_REG, val);
3686 val = MVPP2_TXP_TOKEN_SIZE_MAX;
3687 mvpp2_write(port->priv, MVPP2_TXP_SCHED_TOKEN_SIZE_REG, val);
3688
3689 /* Set MaximumLowLatencyPacketSize value to 256 */
3690 mvpp2_write(port->priv, MVPP2_RX_CTRL_REG(port->id),
3691 MVPP2_RX_USE_PSEUDO_FOR_CSUM_MASK |
3692 MVPP2_RX_LOW_LATENCY_PKT_SIZE(256));
3693
3694 /* Enable Rx cache snoop */
3695 for (lrxq = 0; lrxq < rxq_number; lrxq++) {
3696 queue = port->rxqs[lrxq]->id;
3697 val = mvpp2_read(port->priv, MVPP2_RXQ_CONFIG_REG(queue));
3698 val |= MVPP2_SNOOP_PKT_SIZE_MASK |
3699 MVPP2_SNOOP_BUF_HDR_MASK;
3700 mvpp2_write(port->priv, MVPP2_RXQ_CONFIG_REG(queue), val);
3701 }
3702}
3703
3704/* Enable/disable receiving packets */
3705static void mvpp2_ingress_enable(struct mvpp2_port *port)
3706{
3707 u32 val;
3708 int lrxq, queue;
3709
3710 for (lrxq = 0; lrxq < rxq_number; lrxq++) {
3711 queue = port->rxqs[lrxq]->id;
3712 val = mvpp2_read(port->priv, MVPP2_RXQ_CONFIG_REG(queue));
3713 val &= ~MVPP2_RXQ_DISABLE_MASK;
3714 mvpp2_write(port->priv, MVPP2_RXQ_CONFIG_REG(queue), val);
3715 }
3716}
3717
3718static void mvpp2_ingress_disable(struct mvpp2_port *port)
3719{
3720 u32 val;
3721 int lrxq, queue;
3722
3723 for (lrxq = 0; lrxq < rxq_number; lrxq++) {
3724 queue = port->rxqs[lrxq]->id;
3725 val = mvpp2_read(port->priv, MVPP2_RXQ_CONFIG_REG(queue));
3726 val |= MVPP2_RXQ_DISABLE_MASK;
3727 mvpp2_write(port->priv, MVPP2_RXQ_CONFIG_REG(queue), val);
3728 }
3729}
3730
3731/* Enable transmit via physical egress queue
3732 * - HW starts take descriptors from DRAM
3733 */
3734static void mvpp2_egress_enable(struct mvpp2_port *port)
3735{
3736 u32 qmap;
3737 int queue;
3738 int tx_port_num = mvpp2_egress_port(port);
3739
3740 /* Enable all initialized TXs. */
3741 qmap = 0;
3742 for (queue = 0; queue < txq_number; queue++) {
3743 struct mvpp2_tx_queue *txq = port->txqs[queue];
3744
3745 if (txq->descs != NULL)
3746 qmap |= (1 << queue);
3747 }
3748
3749 mvpp2_write(port->priv, MVPP2_TXP_SCHED_PORT_INDEX_REG, tx_port_num);
3750 mvpp2_write(port->priv, MVPP2_TXP_SCHED_Q_CMD_REG, qmap);
3751}
3752
3753/* Disable transmit via physical egress queue
3754 * - HW doesn't take descriptors from DRAM
3755 */
3756static void mvpp2_egress_disable(struct mvpp2_port *port)
3757{
3758 u32 reg_data;
3759 int delay;
3760 int tx_port_num = mvpp2_egress_port(port);
3761
3762 /* Issue stop command for active channels only */
3763 mvpp2_write(port->priv, MVPP2_TXP_SCHED_PORT_INDEX_REG, tx_port_num);
3764 reg_data = (mvpp2_read(port->priv, MVPP2_TXP_SCHED_Q_CMD_REG)) &
3765 MVPP2_TXP_SCHED_ENQ_MASK;
3766 if (reg_data != 0)
3767 mvpp2_write(port->priv, MVPP2_TXP_SCHED_Q_CMD_REG,
3768 (reg_data << MVPP2_TXP_SCHED_DISQ_OFFSET));
3769
3770 /* Wait for all Tx activity to terminate. */
3771 delay = 0;
3772 do {
3773 if (delay >= MVPP2_TX_DISABLE_TIMEOUT_MSEC) {
Sean Anderson9db60ee2020-09-15 10:44:57 -04003774 dev_warn(port->phy_dev->dev,
3775 "Tx stop timed out, status=0x%08x\n",
3776 reg_data);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01003777 break;
3778 }
3779 mdelay(1);
3780 delay++;
3781
3782 /* Check port TX Command register that all
3783 * Tx queues are stopped
3784 */
3785 reg_data = mvpp2_read(port->priv, MVPP2_TXP_SCHED_Q_CMD_REG);
3786 } while (reg_data & MVPP2_TXP_SCHED_ENQ_MASK);
3787}
3788
3789/* Rx descriptors helper methods */
3790
3791/* Get number of Rx descriptors occupied by received packets */
3792static inline int
3793mvpp2_rxq_received(struct mvpp2_port *port, int rxq_id)
3794{
3795 u32 val = mvpp2_read(port->priv, MVPP2_RXQ_STATUS_REG(rxq_id));
3796
3797 return val & MVPP2_RXQ_OCCUPIED_MASK;
3798}
3799
3800/* Update Rx queue status with the number of occupied and available
3801 * Rx descriptor slots.
3802 */
3803static inline void
3804mvpp2_rxq_status_update(struct mvpp2_port *port, int rxq_id,
3805 int used_count, int free_count)
3806{
3807 /* Decrement the number of used descriptors and increment count
3808 * increment the number of free descriptors.
3809 */
3810 u32 val = used_count | (free_count << MVPP2_RXQ_NUM_NEW_OFFSET);
3811
3812 mvpp2_write(port->priv, MVPP2_RXQ_STATUS_UPDATE_REG(rxq_id), val);
3813}
3814
3815/* Get pointer to next RX descriptor to be processed by SW */
3816static inline struct mvpp2_rx_desc *
3817mvpp2_rxq_next_desc_get(struct mvpp2_rx_queue *rxq)
3818{
3819 int rx_desc = rxq->next_desc_to_proc;
3820
3821 rxq->next_desc_to_proc = MVPP2_QUEUE_NEXT_DESC(rxq, rx_desc);
3822 prefetch(rxq->descs + rxq->next_desc_to_proc);
3823 return rxq->descs + rx_desc;
3824}
3825
3826/* Set rx queue offset */
3827static void mvpp2_rxq_offset_set(struct mvpp2_port *port,
3828 int prxq, int offset)
3829{
3830 u32 val;
3831
3832 /* Convert offset from bytes to units of 32 bytes */
3833 offset = offset >> 5;
3834
3835 val = mvpp2_read(port->priv, MVPP2_RXQ_CONFIG_REG(prxq));
3836 val &= ~MVPP2_RXQ_PACKET_OFFSET_MASK;
3837
3838 /* Offset is in */
3839 val |= ((offset << MVPP2_RXQ_PACKET_OFFSET_OFFS) &
3840 MVPP2_RXQ_PACKET_OFFSET_MASK);
3841
3842 mvpp2_write(port->priv, MVPP2_RXQ_CONFIG_REG(prxq), val);
3843}
3844
3845/* Obtain BM cookie information from descriptor */
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01003846static u32 mvpp2_bm_cookie_build(struct mvpp2_port *port,
3847 struct mvpp2_rx_desc *rx_desc)
Stefan Roese99d4c6d2016-02-10 07:22:10 +01003848{
Stefan Roese99d4c6d2016-02-10 07:22:10 +01003849 int cpu = smp_processor_id();
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01003850 int pool;
3851
3852 pool = (mvpp2_rxdesc_status_get(port, rx_desc) &
3853 MVPP2_RXD_BM_POOL_ID_MASK) >>
3854 MVPP2_RXD_BM_POOL_ID_OFFS;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01003855
3856 return ((pool & 0xFF) << MVPP2_BM_COOKIE_POOL_OFFS) |
3857 ((cpu & 0xFF) << MVPP2_BM_COOKIE_CPU_OFFS);
3858}
3859
3860/* Tx descriptors helper methods */
3861
3862/* Get number of Tx descriptors waiting to be transmitted by HW */
3863static int mvpp2_txq_pend_desc_num_get(struct mvpp2_port *port,
3864 struct mvpp2_tx_queue *txq)
3865{
3866 u32 val;
3867
3868 mvpp2_write(port->priv, MVPP2_TXQ_NUM_REG, txq->id);
3869 val = mvpp2_read(port->priv, MVPP2_TXQ_PENDING_REG);
3870
3871 return val & MVPP2_TXQ_PENDING_MASK;
3872}
3873
3874/* Get pointer to next Tx descriptor to be processed (send) by HW */
3875static struct mvpp2_tx_desc *
3876mvpp2_txq_next_desc_get(struct mvpp2_tx_queue *txq)
3877{
3878 int tx_desc = txq->next_desc_to_proc;
3879
3880 txq->next_desc_to_proc = MVPP2_QUEUE_NEXT_DESC(txq, tx_desc);
3881 return txq->descs + tx_desc;
3882}
3883
3884/* Update HW with number of aggregated Tx descriptors to be sent */
3885static void mvpp2_aggr_txq_pend_desc_add(struct mvpp2_port *port, int pending)
3886{
3887 /* aggregated access - relevant TXQ number is written in TX desc */
3888 mvpp2_write(port->priv, MVPP2_AGGR_TXQ_UPDATE_REG, pending);
3889}
3890
3891/* Get number of sent descriptors and decrement counter.
3892 * The number of sent descriptors is returned.
3893 * Per-CPU access
3894 */
3895static inline int mvpp2_txq_sent_desc_proc(struct mvpp2_port *port,
3896 struct mvpp2_tx_queue *txq)
3897{
3898 u32 val;
3899
3900 /* Reading status reg resets transmitted descriptor counter */
3901 val = mvpp2_read(port->priv, MVPP2_TXQ_SENT_REG(txq->id));
3902
3903 return (val & MVPP2_TRANSMITTED_COUNT_MASK) >>
3904 MVPP2_TRANSMITTED_COUNT_OFFSET;
3905}
3906
3907static void mvpp2_txq_sent_counter_clear(void *arg)
3908{
3909 struct mvpp2_port *port = arg;
3910 int queue;
3911
3912 for (queue = 0; queue < txq_number; queue++) {
3913 int id = port->txqs[queue]->id;
3914
3915 mvpp2_read(port->priv, MVPP2_TXQ_SENT_REG(id));
3916 }
3917}
3918
3919/* Set max sizes for Tx queues */
3920static void mvpp2_txp_max_tx_size_set(struct mvpp2_port *port)
3921{
3922 u32 val, size, mtu;
3923 int txq, tx_port_num;
3924
3925 mtu = port->pkt_size * 8;
3926 if (mtu > MVPP2_TXP_MTU_MAX)
3927 mtu = MVPP2_TXP_MTU_MAX;
3928
3929 /* WA for wrong Token bucket update: Set MTU value = 3*real MTU value */
3930 mtu = 3 * mtu;
3931
3932 /* Indirect access to registers */
3933 tx_port_num = mvpp2_egress_port(port);
3934 mvpp2_write(port->priv, MVPP2_TXP_SCHED_PORT_INDEX_REG, tx_port_num);
3935
3936 /* Set MTU */
3937 val = mvpp2_read(port->priv, MVPP2_TXP_SCHED_MTU_REG);
3938 val &= ~MVPP2_TXP_MTU_MAX;
3939 val |= mtu;
3940 mvpp2_write(port->priv, MVPP2_TXP_SCHED_MTU_REG, val);
3941
3942 /* TXP token size and all TXQs token size must be larger that MTU */
3943 val = mvpp2_read(port->priv, MVPP2_TXP_SCHED_TOKEN_SIZE_REG);
3944 size = val & MVPP2_TXP_TOKEN_SIZE_MAX;
3945 if (size < mtu) {
3946 size = mtu;
3947 val &= ~MVPP2_TXP_TOKEN_SIZE_MAX;
3948 val |= size;
3949 mvpp2_write(port->priv, MVPP2_TXP_SCHED_TOKEN_SIZE_REG, val);
3950 }
3951
3952 for (txq = 0; txq < txq_number; txq++) {
3953 val = mvpp2_read(port->priv,
3954 MVPP2_TXQ_SCHED_TOKEN_SIZE_REG(txq));
3955 size = val & MVPP2_TXQ_TOKEN_SIZE_MAX;
3956
3957 if (size < mtu) {
3958 size = mtu;
3959 val &= ~MVPP2_TXQ_TOKEN_SIZE_MAX;
3960 val |= size;
3961 mvpp2_write(port->priv,
3962 MVPP2_TXQ_SCHED_TOKEN_SIZE_REG(txq),
3963 val);
3964 }
3965 }
3966}
3967
3968/* Free Tx queue skbuffs */
3969static void mvpp2_txq_bufs_free(struct mvpp2_port *port,
3970 struct mvpp2_tx_queue *txq,
3971 struct mvpp2_txq_pcpu *txq_pcpu, int num)
3972{
3973 int i;
3974
3975 for (i = 0; i < num; i++)
3976 mvpp2_txq_inc_get(txq_pcpu);
3977}
3978
3979static inline struct mvpp2_rx_queue *mvpp2_get_rx_queue(struct mvpp2_port *port,
3980 u32 cause)
3981{
3982 int queue = fls(cause) - 1;
3983
3984 return port->rxqs[queue];
3985}
3986
3987static inline struct mvpp2_tx_queue *mvpp2_get_tx_queue(struct mvpp2_port *port,
3988 u32 cause)
3989{
3990 int queue = fls(cause) - 1;
3991
3992 return port->txqs[queue];
3993}
3994
3995/* Rx/Tx queue initialization/cleanup methods */
3996
3997/* Allocate and initialize descriptors for aggr TXQ */
3998static int mvpp2_aggr_txq_init(struct udevice *dev,
3999 struct mvpp2_tx_queue *aggr_txq,
4000 int desc_num, int cpu,
4001 struct mvpp2 *priv)
4002{
Thomas Petazzoni80350f52017-02-20 11:36:57 +01004003 u32 txq_dma;
4004
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004005 /* Allocate memory for TX descriptors */
4006 aggr_txq->descs = buffer_loc.aggr_tx_descs;
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01004007 aggr_txq->descs_dma = (dma_addr_t)buffer_loc.aggr_tx_descs;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004008 if (!aggr_txq->descs)
4009 return -ENOMEM;
4010
4011 /* Make sure descriptor address is cache line size aligned */
4012 BUG_ON(aggr_txq->descs !=
4013 PTR_ALIGN(aggr_txq->descs, MVPP2_CPU_D_CACHE_LINE_SIZE));
4014
4015 aggr_txq->last_desc = aggr_txq->size - 1;
4016
4017 /* Aggr TXQ no reset WA */
4018 aggr_txq->next_desc_to_proc = mvpp2_read(priv,
4019 MVPP2_AGGR_TXQ_INDEX_REG(cpu));
4020
Thomas Petazzoni80350f52017-02-20 11:36:57 +01004021 /* Set Tx descriptors queue starting address indirect
4022 * access
4023 */
4024 if (priv->hw_version == MVPP21)
4025 txq_dma = aggr_txq->descs_dma;
4026 else
4027 txq_dma = aggr_txq->descs_dma >>
4028 MVPP22_AGGR_TXQ_DESC_ADDR_OFFS;
4029
4030 mvpp2_write(priv, MVPP2_AGGR_TXQ_DESC_ADDR_REG(cpu), txq_dma);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004031 mvpp2_write(priv, MVPP2_AGGR_TXQ_DESC_SIZE_REG(cpu), desc_num);
4032
4033 return 0;
4034}
4035
4036/* Create a specified Rx queue */
4037static int mvpp2_rxq_init(struct mvpp2_port *port,
4038 struct mvpp2_rx_queue *rxq)
4039
4040{
Thomas Petazzoni80350f52017-02-20 11:36:57 +01004041 u32 rxq_dma;
4042
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004043 rxq->size = port->rx_ring_size;
4044
4045 /* Allocate memory for RX descriptors */
4046 rxq->descs = buffer_loc.rx_descs;
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01004047 rxq->descs_dma = (dma_addr_t)buffer_loc.rx_descs;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004048 if (!rxq->descs)
4049 return -ENOMEM;
4050
4051 BUG_ON(rxq->descs !=
4052 PTR_ALIGN(rxq->descs, MVPP2_CPU_D_CACHE_LINE_SIZE));
4053
4054 rxq->last_desc = rxq->size - 1;
4055
4056 /* Zero occupied and non-occupied counters - direct access */
4057 mvpp2_write(port->priv, MVPP2_RXQ_STATUS_REG(rxq->id), 0);
4058
4059 /* Set Rx descriptors queue starting address - indirect access */
4060 mvpp2_write(port->priv, MVPP2_RXQ_NUM_REG, rxq->id);
Thomas Petazzoni80350f52017-02-20 11:36:57 +01004061 if (port->priv->hw_version == MVPP21)
4062 rxq_dma = rxq->descs_dma;
4063 else
4064 rxq_dma = rxq->descs_dma >> MVPP22_DESC_ADDR_OFFS;
4065 mvpp2_write(port->priv, MVPP2_RXQ_DESC_ADDR_REG, rxq_dma);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004066 mvpp2_write(port->priv, MVPP2_RXQ_DESC_SIZE_REG, rxq->size);
4067 mvpp2_write(port->priv, MVPP2_RXQ_INDEX_REG, 0);
4068
4069 /* Set Offset */
4070 mvpp2_rxq_offset_set(port, rxq->id, NET_SKB_PAD);
4071
4072 /* Add number of descriptors ready for receiving packets */
4073 mvpp2_rxq_status_update(port, rxq->id, 0, rxq->size);
4074
4075 return 0;
4076}
4077
4078/* Push packets received by the RXQ to BM pool */
4079static void mvpp2_rxq_drop_pkts(struct mvpp2_port *port,
4080 struct mvpp2_rx_queue *rxq)
4081{
4082 int rx_received, i;
4083
4084 rx_received = mvpp2_rxq_received(port, rxq->id);
4085 if (!rx_received)
4086 return;
4087
4088 for (i = 0; i < rx_received; i++) {
4089 struct mvpp2_rx_desc *rx_desc = mvpp2_rxq_next_desc_get(rxq);
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01004090 u32 bm = mvpp2_bm_cookie_build(port, rx_desc);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004091
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01004092 mvpp2_pool_refill(port, bm,
4093 mvpp2_rxdesc_dma_addr_get(port, rx_desc),
4094 mvpp2_rxdesc_cookie_get(port, rx_desc));
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004095 }
4096 mvpp2_rxq_status_update(port, rxq->id, rx_received, rx_received);
4097}
4098
4099/* Cleanup Rx queue */
4100static void mvpp2_rxq_deinit(struct mvpp2_port *port,
4101 struct mvpp2_rx_queue *rxq)
4102{
4103 mvpp2_rxq_drop_pkts(port, rxq);
4104
4105 rxq->descs = NULL;
4106 rxq->last_desc = 0;
4107 rxq->next_desc_to_proc = 0;
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01004108 rxq->descs_dma = 0;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004109
4110 /* Clear Rx descriptors queue starting address and size;
4111 * free descriptor number
4112 */
4113 mvpp2_write(port->priv, MVPP2_RXQ_STATUS_REG(rxq->id), 0);
4114 mvpp2_write(port->priv, MVPP2_RXQ_NUM_REG, rxq->id);
4115 mvpp2_write(port->priv, MVPP2_RXQ_DESC_ADDR_REG, 0);
4116 mvpp2_write(port->priv, MVPP2_RXQ_DESC_SIZE_REG, 0);
4117}
4118
4119/* Create and initialize a Tx queue */
4120static int mvpp2_txq_init(struct mvpp2_port *port,
4121 struct mvpp2_tx_queue *txq)
4122{
4123 u32 val;
4124 int cpu, desc, desc_per_txq, tx_port_num;
4125 struct mvpp2_txq_pcpu *txq_pcpu;
4126
4127 txq->size = port->tx_ring_size;
4128
4129 /* Allocate memory for Tx descriptors */
4130 txq->descs = buffer_loc.tx_descs;
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01004131 txq->descs_dma = (dma_addr_t)buffer_loc.tx_descs;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004132 if (!txq->descs)
4133 return -ENOMEM;
4134
4135 /* Make sure descriptor address is cache line size aligned */
4136 BUG_ON(txq->descs !=
4137 PTR_ALIGN(txq->descs, MVPP2_CPU_D_CACHE_LINE_SIZE));
4138
4139 txq->last_desc = txq->size - 1;
4140
4141 /* Set Tx descriptors queue starting address - indirect access */
4142 mvpp2_write(port->priv, MVPP2_TXQ_NUM_REG, txq->id);
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01004143 mvpp2_write(port->priv, MVPP2_TXQ_DESC_ADDR_REG, txq->descs_dma);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004144 mvpp2_write(port->priv, MVPP2_TXQ_DESC_SIZE_REG, txq->size &
4145 MVPP2_TXQ_DESC_SIZE_MASK);
4146 mvpp2_write(port->priv, MVPP2_TXQ_INDEX_REG, 0);
4147 mvpp2_write(port->priv, MVPP2_TXQ_RSVD_CLR_REG,
4148 txq->id << MVPP2_TXQ_RSVD_CLR_OFFSET);
4149 val = mvpp2_read(port->priv, MVPP2_TXQ_PENDING_REG);
4150 val &= ~MVPP2_TXQ_PENDING_MASK;
4151 mvpp2_write(port->priv, MVPP2_TXQ_PENDING_REG, val);
4152
4153 /* Calculate base address in prefetch buffer. We reserve 16 descriptors
4154 * for each existing TXQ.
4155 * TCONTS for PON port must be continuous from 0 to MVPP2_MAX_TCONT
4156 * GBE ports assumed to be continious from 0 to MVPP2_MAX_PORTS
4157 */
4158 desc_per_txq = 16;
4159 desc = (port->id * MVPP2_MAX_TXQ * desc_per_txq) +
4160 (txq->log_id * desc_per_txq);
4161
4162 mvpp2_write(port->priv, MVPP2_TXQ_PREF_BUF_REG,
4163 MVPP2_PREF_BUF_PTR(desc) | MVPP2_PREF_BUF_SIZE_16 |
Thomas Petazzoni26a52782017-02-16 08:03:37 +01004164 MVPP2_PREF_BUF_THRESH(desc_per_txq / 2));
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004165
4166 /* WRR / EJP configuration - indirect access */
4167 tx_port_num = mvpp2_egress_port(port);
4168 mvpp2_write(port->priv, MVPP2_TXP_SCHED_PORT_INDEX_REG, tx_port_num);
4169
4170 val = mvpp2_read(port->priv, MVPP2_TXQ_SCHED_REFILL_REG(txq->log_id));
4171 val &= ~MVPP2_TXQ_REFILL_PERIOD_ALL_MASK;
4172 val |= MVPP2_TXQ_REFILL_PERIOD_MASK(1);
4173 val |= MVPP2_TXQ_REFILL_TOKENS_ALL_MASK;
4174 mvpp2_write(port->priv, MVPP2_TXQ_SCHED_REFILL_REG(txq->log_id), val);
4175
4176 val = MVPP2_TXQ_TOKEN_SIZE_MAX;
4177 mvpp2_write(port->priv, MVPP2_TXQ_SCHED_TOKEN_SIZE_REG(txq->log_id),
4178 val);
4179
4180 for_each_present_cpu(cpu) {
4181 txq_pcpu = per_cpu_ptr(txq->pcpu, cpu);
4182 txq_pcpu->size = txq->size;
4183 }
4184
4185 return 0;
4186}
4187
4188/* Free allocated TXQ resources */
4189static void mvpp2_txq_deinit(struct mvpp2_port *port,
4190 struct mvpp2_tx_queue *txq)
4191{
4192 txq->descs = NULL;
4193 txq->last_desc = 0;
4194 txq->next_desc_to_proc = 0;
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01004195 txq->descs_dma = 0;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004196
4197 /* Set minimum bandwidth for disabled TXQs */
4198 mvpp2_write(port->priv, MVPP2_TXQ_SCHED_TOKEN_CNTR_REG(txq->id), 0);
4199
4200 /* Set Tx descriptors queue starting address and size */
4201 mvpp2_write(port->priv, MVPP2_TXQ_NUM_REG, txq->id);
4202 mvpp2_write(port->priv, MVPP2_TXQ_DESC_ADDR_REG, 0);
4203 mvpp2_write(port->priv, MVPP2_TXQ_DESC_SIZE_REG, 0);
4204}
4205
4206/* Cleanup Tx ports */
4207static void mvpp2_txq_clean(struct mvpp2_port *port, struct mvpp2_tx_queue *txq)
4208{
4209 struct mvpp2_txq_pcpu *txq_pcpu;
4210 int delay, pending, cpu;
4211 u32 val;
4212
4213 mvpp2_write(port->priv, MVPP2_TXQ_NUM_REG, txq->id);
4214 val = mvpp2_read(port->priv, MVPP2_TXQ_PREF_BUF_REG);
4215 val |= MVPP2_TXQ_DRAIN_EN_MASK;
4216 mvpp2_write(port->priv, MVPP2_TXQ_PREF_BUF_REG, val);
4217
4218 /* The napi queue has been stopped so wait for all packets
4219 * to be transmitted.
4220 */
4221 delay = 0;
4222 do {
4223 if (delay >= MVPP2_TX_PENDING_TIMEOUT_MSEC) {
Sean Anderson9db60ee2020-09-15 10:44:57 -04004224 dev_warn(port->phy_dev->dev,
4225 "port %d: cleaning queue %d timed out\n",
4226 port->id, txq->log_id);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004227 break;
4228 }
4229 mdelay(1);
4230 delay++;
4231
4232 pending = mvpp2_txq_pend_desc_num_get(port, txq);
4233 } while (pending);
4234
4235 val &= ~MVPP2_TXQ_DRAIN_EN_MASK;
4236 mvpp2_write(port->priv, MVPP2_TXQ_PREF_BUF_REG, val);
4237
4238 for_each_present_cpu(cpu) {
4239 txq_pcpu = per_cpu_ptr(txq->pcpu, cpu);
4240
4241 /* Release all packets */
4242 mvpp2_txq_bufs_free(port, txq, txq_pcpu, txq_pcpu->count);
4243
4244 /* Reset queue */
4245 txq_pcpu->count = 0;
4246 txq_pcpu->txq_put_index = 0;
4247 txq_pcpu->txq_get_index = 0;
4248 }
4249}
4250
4251/* Cleanup all Tx queues */
4252static void mvpp2_cleanup_txqs(struct mvpp2_port *port)
4253{
4254 struct mvpp2_tx_queue *txq;
4255 int queue;
4256 u32 val;
4257
4258 val = mvpp2_read(port->priv, MVPP2_TX_PORT_FLUSH_REG);
4259
4260 /* Reset Tx ports and delete Tx queues */
4261 val |= MVPP2_TX_PORT_FLUSH_MASK(port->id);
4262 mvpp2_write(port->priv, MVPP2_TX_PORT_FLUSH_REG, val);
4263
4264 for (queue = 0; queue < txq_number; queue++) {
4265 txq = port->txqs[queue];
4266 mvpp2_txq_clean(port, txq);
4267 mvpp2_txq_deinit(port, txq);
4268 }
4269
4270 mvpp2_txq_sent_counter_clear(port);
4271
4272 val &= ~MVPP2_TX_PORT_FLUSH_MASK(port->id);
4273 mvpp2_write(port->priv, MVPP2_TX_PORT_FLUSH_REG, val);
4274}
4275
4276/* Cleanup all Rx queues */
4277static void mvpp2_cleanup_rxqs(struct mvpp2_port *port)
4278{
4279 int queue;
4280
4281 for (queue = 0; queue < rxq_number; queue++)
4282 mvpp2_rxq_deinit(port, port->rxqs[queue]);
4283}
4284
4285/* Init all Rx queues for port */
4286static int mvpp2_setup_rxqs(struct mvpp2_port *port)
4287{
4288 int queue, err;
4289
4290 for (queue = 0; queue < rxq_number; queue++) {
4291 err = mvpp2_rxq_init(port, port->rxqs[queue]);
4292 if (err)
4293 goto err_cleanup;
4294 }
4295 return 0;
4296
4297err_cleanup:
4298 mvpp2_cleanup_rxqs(port);
4299 return err;
4300}
4301
4302/* Init all tx queues for port */
4303static int mvpp2_setup_txqs(struct mvpp2_port *port)
4304{
4305 struct mvpp2_tx_queue *txq;
4306 int queue, err;
4307
4308 for (queue = 0; queue < txq_number; queue++) {
4309 txq = port->txqs[queue];
4310 err = mvpp2_txq_init(port, txq);
4311 if (err)
4312 goto err_cleanup;
4313 }
4314
4315 mvpp2_txq_sent_counter_clear(port);
4316 return 0;
4317
4318err_cleanup:
4319 mvpp2_cleanup_txqs(port);
4320 return err;
4321}
4322
4323/* Adjust link */
4324static void mvpp2_link_event(struct mvpp2_port *port)
4325{
4326 struct phy_device *phydev = port->phy_dev;
4327 int status_change = 0;
4328 u32 val;
4329
4330 if (phydev->link) {
4331 if ((port->speed != phydev->speed) ||
4332 (port->duplex != phydev->duplex)) {
4333 u32 val;
4334
4335 val = readl(port->base + MVPP2_GMAC_AUTONEG_CONFIG);
4336 val &= ~(MVPP2_GMAC_CONFIG_MII_SPEED |
4337 MVPP2_GMAC_CONFIG_GMII_SPEED |
4338 MVPP2_GMAC_CONFIG_FULL_DUPLEX |
4339 MVPP2_GMAC_AN_SPEED_EN |
4340 MVPP2_GMAC_AN_DUPLEX_EN);
4341
4342 if (phydev->duplex)
4343 val |= MVPP2_GMAC_CONFIG_FULL_DUPLEX;
4344
4345 if (phydev->speed == SPEED_1000)
4346 val |= MVPP2_GMAC_CONFIG_GMII_SPEED;
4347 else if (phydev->speed == SPEED_100)
4348 val |= MVPP2_GMAC_CONFIG_MII_SPEED;
4349
4350 writel(val, port->base + MVPP2_GMAC_AUTONEG_CONFIG);
4351
4352 port->duplex = phydev->duplex;
4353 port->speed = phydev->speed;
4354 }
4355 }
4356
4357 if (phydev->link != port->link) {
4358 if (!phydev->link) {
4359 port->duplex = -1;
4360 port->speed = 0;
4361 }
4362
4363 port->link = phydev->link;
4364 status_change = 1;
4365 }
4366
4367 if (status_change) {
4368 if (phydev->link) {
4369 val = readl(port->base + MVPP2_GMAC_AUTONEG_CONFIG);
4370 val |= (MVPP2_GMAC_FORCE_LINK_PASS |
4371 MVPP2_GMAC_FORCE_LINK_DOWN);
4372 writel(val, port->base + MVPP2_GMAC_AUTONEG_CONFIG);
4373 mvpp2_egress_enable(port);
4374 mvpp2_ingress_enable(port);
4375 } else {
4376 mvpp2_ingress_disable(port);
4377 mvpp2_egress_disable(port);
4378 }
4379 }
4380}
4381
4382/* Main RX/TX processing routines */
4383
4384/* Display more error info */
4385static void mvpp2_rx_error(struct mvpp2_port *port,
4386 struct mvpp2_rx_desc *rx_desc)
4387{
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01004388 u32 status = mvpp2_rxdesc_status_get(port, rx_desc);
4389 size_t sz = mvpp2_rxdesc_size_get(port, rx_desc);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004390
4391 switch (status & MVPP2_RXD_ERR_CODE_MASK) {
4392 case MVPP2_RXD_ERR_CRC:
Sean Anderson9db60ee2020-09-15 10:44:57 -04004393 dev_err(port->phy_dev->dev,
4394 "bad rx status %08x (crc error), size=%zu\n", status,
4395 sz);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004396 break;
4397 case MVPP2_RXD_ERR_OVERRUN:
Sean Anderson9db60ee2020-09-15 10:44:57 -04004398 dev_err(port->phy_dev->dev,
4399 "bad rx status %08x (overrun error), size=%zu\n",
4400 status, sz);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004401 break;
4402 case MVPP2_RXD_ERR_RESOURCE:
Sean Anderson9db60ee2020-09-15 10:44:57 -04004403 dev_err(port->phy_dev->dev,
4404 "bad rx status %08x (resource error), size=%zu\n",
4405 status, sz);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004406 break;
4407 }
4408}
4409
4410/* Reuse skb if possible, or allocate a new skb and add it to BM pool */
4411static int mvpp2_rx_refill(struct mvpp2_port *port,
4412 struct mvpp2_bm_pool *bm_pool,
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01004413 u32 bm, dma_addr_t dma_addr)
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004414{
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01004415 mvpp2_pool_refill(port, bm, dma_addr, (unsigned long)dma_addr);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004416 return 0;
4417}
4418
4419/* Set hw internals when starting port */
4420static void mvpp2_start_dev(struct mvpp2_port *port)
4421{
Stefan Chulskie09d0c82017-04-06 15:39:08 +02004422 switch (port->phy_interface) {
4423 case PHY_INTERFACE_MODE_RGMII:
4424 case PHY_INTERFACE_MODE_RGMII_ID:
4425 case PHY_INTERFACE_MODE_SGMII:
4426 mvpp2_gmac_max_rx_size_set(port);
4427 default:
4428 break;
4429 }
4430
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004431 mvpp2_txp_max_tx_size_set(port);
4432
Stefan Roese31aa1e32017-03-22 15:07:30 +01004433 if (port->priv->hw_version == MVPP21)
4434 mvpp2_port_enable(port);
4435 else
4436 gop_port_enable(port, 1);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004437}
4438
4439/* Set hw internals when stopping port */
4440static void mvpp2_stop_dev(struct mvpp2_port *port)
4441{
4442 /* Stop new packets from arriving to RXQs */
4443 mvpp2_ingress_disable(port);
4444
4445 mvpp2_egress_disable(port);
Stefan Roese31aa1e32017-03-22 15:07:30 +01004446
4447 if (port->priv->hw_version == MVPP21)
4448 mvpp2_port_disable(port);
4449 else
4450 gop_port_enable(port, 0);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004451}
4452
Stefan Chulski13b725f2019-08-15 18:08:41 -04004453static void mvpp2_phy_connect(struct udevice *dev, struct mvpp2_port *port)
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004454{
4455 struct phy_device *phy_dev;
4456
4457 if (!port->init || port->link == 0) {
Nevo Hed2a428702019-08-15 18:08:44 -04004458 phy_dev = dm_mdio_phy_connect(port->mdio_dev, port->phyaddr,
4459 dev, port->phy_interface);
Grzegorz Jaszczyk62394832019-08-15 18:08:42 -04004460
4461 /*
4462 * If the phy doesn't match with any existing u-boot drivers the
4463 * phy framework will connect it to generic one which
4464 * uid == 0xffffffff. In this case act as if the phy wouldn't be
4465 * declared in dts. Otherwise in case of 3310 (for which the
4466 * driver doesn't exist) the link will not be correctly
4467 * detected. Removing phy entry from dts in case of 3310 is not
4468 * an option because it is required for the phy_fw_down
4469 * procedure.
4470 */
4471 if (phy_dev &&
4472 phy_dev->drv->uid == 0xffffffff) {/* Generic phy */
Sean Anderson9db60ee2020-09-15 10:44:57 -04004473 dev_warn(port->phy_dev->dev,
4474 "Marking phy as invalid, link will not be checked\n");
Grzegorz Jaszczyk62394832019-08-15 18:08:42 -04004475 /* set phy_addr to invalid value */
4476 port->phyaddr = PHY_MAX_ADDR;
4477 mvpp2_egress_enable(port);
4478 mvpp2_ingress_enable(port);
4479
4480 return;
4481 }
4482
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004483 port->phy_dev = phy_dev;
4484 if (!phy_dev) {
Sean Anderson9db60ee2020-09-15 10:44:57 -04004485 dev_err(port->phy_dev->dev, "cannot connect to phy\n");
Stefan Chulski13b725f2019-08-15 18:08:41 -04004486 return;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004487 }
4488 phy_dev->supported &= PHY_GBIT_FEATURES;
4489 phy_dev->advertising = phy_dev->supported;
4490
4491 port->phy_dev = phy_dev;
4492 port->link = 0;
4493 port->duplex = 0;
4494 port->speed = 0;
4495
4496 phy_config(phy_dev);
4497 phy_startup(phy_dev);
Stefan Chulski13b725f2019-08-15 18:08:41 -04004498 if (!phy_dev->link)
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004499 printf("%s: No link\n", phy_dev->dev->name);
Stefan Chulski13b725f2019-08-15 18:08:41 -04004500 else
4501 port->init = 1;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004502 } else {
4503 mvpp2_egress_enable(port);
4504 mvpp2_ingress_enable(port);
4505 }
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004506}
4507
4508static int mvpp2_open(struct udevice *dev, struct mvpp2_port *port)
4509{
4510 unsigned char mac_bcast[ETH_ALEN] = {
4511 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
4512 int err;
4513
4514 err = mvpp2_prs_mac_da_accept(port->priv, port->id, mac_bcast, true);
4515 if (err) {
Sean Anderson9db60ee2020-09-15 10:44:57 -04004516 dev_err(dev, "mvpp2_prs_mac_da_accept BC failed\n");
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004517 return err;
4518 }
4519 err = mvpp2_prs_mac_da_accept(port->priv, port->id,
4520 port->dev_addr, true);
4521 if (err) {
Sean Anderson9db60ee2020-09-15 10:44:57 -04004522 dev_err(dev, "mvpp2_prs_mac_da_accept MC failed\n");
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004523 return err;
4524 }
4525 err = mvpp2_prs_def_flow(port);
4526 if (err) {
Sean Anderson9db60ee2020-09-15 10:44:57 -04004527 dev_err(dev, "mvpp2_prs_def_flow failed\n");
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004528 return err;
4529 }
4530
4531 /* Allocate the Rx/Tx queues */
4532 err = mvpp2_setup_rxqs(port);
4533 if (err) {
Sean Anderson9db60ee2020-09-15 10:44:57 -04004534 dev_err(port->phy_dev->dev, "cannot allocate Rx queues\n");
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004535 return err;
4536 }
4537
4538 err = mvpp2_setup_txqs(port);
4539 if (err) {
Sean Anderson9db60ee2020-09-15 10:44:57 -04004540 dev_err(port->phy_dev->dev, "cannot allocate Tx queues\n");
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004541 return err;
4542 }
4543
Nevo Hed2a428702019-08-15 18:08:44 -04004544 if (port->phyaddr < PHY_MAX_ADDR) {
Stefan Chulski13b725f2019-08-15 18:08:41 -04004545 mvpp2_phy_connect(dev, port);
Stefan Chulskie09d0c82017-04-06 15:39:08 +02004546 mvpp2_link_event(port);
4547 } else {
4548 mvpp2_egress_enable(port);
4549 mvpp2_ingress_enable(port);
4550 }
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004551
4552 mvpp2_start_dev(port);
4553
4554 return 0;
4555}
4556
4557/* No Device ops here in U-Boot */
4558
4559/* Driver initialization */
4560
4561static void mvpp2_port_power_up(struct mvpp2_port *port)
4562{
Thomas Petazzoni7c7311f2017-02-20 11:42:51 +01004563 struct mvpp2 *priv = port->priv;
4564
Stefan Roese31aa1e32017-03-22 15:07:30 +01004565 /* On PPv2.2 the GoP / interface configuration has already been done */
4566 if (priv->hw_version == MVPP21)
4567 mvpp2_port_mii_set(port);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004568 mvpp2_port_periodic_xon_disable(port);
Thomas Petazzoni7c7311f2017-02-20 11:42:51 +01004569 if (priv->hw_version == MVPP21)
4570 mvpp2_port_fc_adv_enable(port);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004571 mvpp2_port_reset(port);
4572}
4573
4574/* Initialize port HW */
4575static int mvpp2_port_init(struct udevice *dev, struct mvpp2_port *port)
4576{
4577 struct mvpp2 *priv = port->priv;
4578 struct mvpp2_txq_pcpu *txq_pcpu;
4579 int queue, cpu, err;
4580
Thomas Petazzoni09b3f942017-02-16 09:03:16 +01004581 if (port->first_rxq + rxq_number >
4582 MVPP2_MAX_PORTS * priv->max_port_rxqs)
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004583 return -EINVAL;
4584
4585 /* Disable port */
4586 mvpp2_egress_disable(port);
Stefan Roese31aa1e32017-03-22 15:07:30 +01004587 if (priv->hw_version == MVPP21)
4588 mvpp2_port_disable(port);
4589 else
4590 gop_port_enable(port, 0);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004591
4592 port->txqs = devm_kcalloc(dev, txq_number, sizeof(*port->txqs),
4593 GFP_KERNEL);
4594 if (!port->txqs)
4595 return -ENOMEM;
4596
4597 /* Associate physical Tx queues to this port and initialize.
4598 * The mapping is predefined.
4599 */
4600 for (queue = 0; queue < txq_number; queue++) {
4601 int queue_phy_id = mvpp2_txq_phys(port->id, queue);
4602 struct mvpp2_tx_queue *txq;
4603
4604 txq = devm_kzalloc(dev, sizeof(*txq), GFP_KERNEL);
4605 if (!txq)
4606 return -ENOMEM;
4607
4608 txq->pcpu = devm_kzalloc(dev, sizeof(struct mvpp2_txq_pcpu),
4609 GFP_KERNEL);
4610 if (!txq->pcpu)
4611 return -ENOMEM;
4612
4613 txq->id = queue_phy_id;
4614 txq->log_id = queue;
4615 txq->done_pkts_coal = MVPP2_TXDONE_COAL_PKTS_THRESH;
4616 for_each_present_cpu(cpu) {
4617 txq_pcpu = per_cpu_ptr(txq->pcpu, cpu);
4618 txq_pcpu->cpu = cpu;
4619 }
4620
4621 port->txqs[queue] = txq;
4622 }
4623
4624 port->rxqs = devm_kcalloc(dev, rxq_number, sizeof(*port->rxqs),
4625 GFP_KERNEL);
4626 if (!port->rxqs)
4627 return -ENOMEM;
4628
4629 /* Allocate and initialize Rx queue for this port */
4630 for (queue = 0; queue < rxq_number; queue++) {
4631 struct mvpp2_rx_queue *rxq;
4632
4633 /* Map physical Rx queue to port's logical Rx queue */
4634 rxq = devm_kzalloc(dev, sizeof(*rxq), GFP_KERNEL);
4635 if (!rxq)
4636 return -ENOMEM;
4637 /* Map this Rx queue to a physical queue */
4638 rxq->id = port->first_rxq + queue;
4639 rxq->port = port->id;
4640 rxq->logic_rxq = queue;
4641
4642 port->rxqs[queue] = rxq;
4643 }
4644
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004645
4646 /* Create Rx descriptor rings */
4647 for (queue = 0; queue < rxq_number; queue++) {
4648 struct mvpp2_rx_queue *rxq = port->rxqs[queue];
4649
4650 rxq->size = port->rx_ring_size;
4651 rxq->pkts_coal = MVPP2_RX_COAL_PKTS;
4652 rxq->time_coal = MVPP2_RX_COAL_USEC;
4653 }
4654
4655 mvpp2_ingress_disable(port);
4656
4657 /* Port default configuration */
4658 mvpp2_defaults_set(port);
4659
4660 /* Port's classifier configuration */
4661 mvpp2_cls_oversize_rxq_set(port);
4662 mvpp2_cls_port_config(port);
4663
4664 /* Provide an initial Rx packet size */
4665 port->pkt_size = MVPP2_RX_PKT_SIZE(PKTSIZE_ALIGN);
4666
4667 /* Initialize pools for swf */
4668 err = mvpp2_swf_bm_pool_init(port);
4669 if (err)
4670 return err;
4671
4672 return 0;
4673}
4674
Stefan Roese66b11cc2017-03-22 14:11:16 +01004675static int phy_info_parse(struct udevice *dev, struct mvpp2_port *port)
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004676{
Stefan Roese66b11cc2017-03-22 14:11:16 +01004677 int port_node = dev_of_offset(dev);
4678 const char *phy_mode_str;
Baruch Siachacce7532018-11-21 13:05:33 +02004679 int phy_node;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004680 u32 id;
Stefan Chulskie09d0c82017-04-06 15:39:08 +02004681 u32 phyaddr = 0;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004682 int phy_mode = -1;
Nevo Hed2a428702019-08-15 18:08:44 -04004683 int ret;
Baruch Siach21586cd2018-11-21 13:05:34 +02004684
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004685 phy_node = fdtdec_lookup_phandle(gd->fdt_blob, port_node, "phy");
Stefan Chulskie09d0c82017-04-06 15:39:08 +02004686
4687 if (phy_node > 0) {
Nevo Hed2a428702019-08-15 18:08:44 -04004688 int parent;
Stefan Chulskie09d0c82017-04-06 15:39:08 +02004689 phyaddr = fdtdec_get_int(gd->fdt_blob, phy_node, "reg", 0);
4690 if (phyaddr < 0) {
Sean Andersonddc48c12020-09-15 10:44:56 -04004691 dev_err(dev, "could not find phy address\n");
Stefan Chulskie09d0c82017-04-06 15:39:08 +02004692 return -1;
4693 }
Nevo Hed2a428702019-08-15 18:08:44 -04004694 parent = fdt_parent_offset(gd->fdt_blob, phy_node);
4695 ret = uclass_get_device_by_of_offset(UCLASS_MDIO, parent,
4696 &port->mdio_dev);
4697 if (ret)
4698 return ret;
Stefan Chulskie09d0c82017-04-06 15:39:08 +02004699 } else {
Nevo Hed2a428702019-08-15 18:08:44 -04004700 /* phy_addr is set to invalid value */
4701 phyaddr = PHY_MAX_ADDR;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004702 }
4703
4704 phy_mode_str = fdt_getprop(gd->fdt_blob, port_node, "phy-mode", NULL);
4705 if (phy_mode_str)
4706 phy_mode = phy_get_interface_by_name(phy_mode_str);
4707 if (phy_mode == -1) {
Sean Andersonddc48c12020-09-15 10:44:56 -04004708 dev_err(dev, "incorrect phy mode\n");
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004709 return -EINVAL;
4710 }
4711
4712 id = fdtdec_get_int(gd->fdt_blob, port_node, "port-id", -1);
4713 if (id == -1) {
Sean Andersonddc48c12020-09-15 10:44:56 -04004714 dev_err(dev, "missing port-id value\n");
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004715 return -EINVAL;
4716 }
4717
Simon Glassbcee8d62019-12-06 21:41:35 -07004718#if CONFIG_IS_ENABLED(DM_GPIO)
Stefan Chulski41893732017-08-09 10:37:43 +03004719 gpio_request_by_name(dev, "phy-reset-gpios", 0,
4720 &port->phy_reset_gpio, GPIOD_IS_OUT);
4721 gpio_request_by_name(dev, "marvell,sfp-tx-disable-gpio", 0,
4722 &port->phy_tx_disable_gpio, GPIOD_IS_OUT);
4723#endif
4724
Stefan Roese9acb7da2017-03-22 14:15:40 +01004725 /*
4726 * ToDo:
4727 * Not sure if this DT property "phy-speed" will get accepted, so
4728 * this might change later
4729 */
4730 /* Get phy-speed for SGMII 2.5Gbps vs 1Gbps setup */
4731 port->phy_speed = fdtdec_get_int(gd->fdt_blob, port_node,
4732 "phy-speed", 1000);
4733
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004734 port->id = id;
Stefan Roese66b11cc2017-03-22 14:11:16 +01004735 if (port->priv->hw_version == MVPP21)
Thomas Petazzoni09b3f942017-02-16 09:03:16 +01004736 port->first_rxq = port->id * rxq_number;
4737 else
Stefan Roese66b11cc2017-03-22 14:11:16 +01004738 port->first_rxq = port->id * port->priv->max_port_rxqs;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004739 port->phy_interface = phy_mode;
4740 port->phyaddr = phyaddr;
4741
Stefan Roese66b11cc2017-03-22 14:11:16 +01004742 return 0;
4743}
Thomas Petazzoni26a52782017-02-16 08:03:37 +01004744
Simon Glassbcee8d62019-12-06 21:41:35 -07004745#if CONFIG_IS_ENABLED(DM_GPIO)
Stefan Chulski41893732017-08-09 10:37:43 +03004746/* Port GPIO initialization */
4747static void mvpp2_gpio_init(struct mvpp2_port *port)
4748{
4749 if (dm_gpio_is_valid(&port->phy_reset_gpio)) {
Stefan Chulski41893732017-08-09 10:37:43 +03004750 dm_gpio_set_value(&port->phy_reset_gpio, 1);
Baruch Siach18593fa2018-10-15 13:16:48 +03004751 mdelay(10);
Baruch Siachfa140272018-10-15 13:16:47 +03004752 dm_gpio_set_value(&port->phy_reset_gpio, 0);
Stefan Chulski41893732017-08-09 10:37:43 +03004753 }
4754
4755 if (dm_gpio_is_valid(&port->phy_tx_disable_gpio))
4756 dm_gpio_set_value(&port->phy_tx_disable_gpio, 0);
4757}
4758#endif
4759
Stefan Roese66b11cc2017-03-22 14:11:16 +01004760/* Ports initialization */
4761static int mvpp2_port_probe(struct udevice *dev,
4762 struct mvpp2_port *port,
4763 int port_node,
4764 struct mvpp2 *priv)
4765{
4766 int err;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004767
4768 port->tx_ring_size = MVPP2_MAX_TXD;
4769 port->rx_ring_size = MVPP2_MAX_RXD;
4770
4771 err = mvpp2_port_init(dev, port);
4772 if (err < 0) {
Sean Andersonddc48c12020-09-15 10:44:56 -04004773 dev_err(dev, "failed to init port %d\n", port->id);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004774 return err;
4775 }
4776 mvpp2_port_power_up(port);
4777
Simon Glassbcee8d62019-12-06 21:41:35 -07004778#if CONFIG_IS_ENABLED(DM_GPIO)
Stefan Chulski41893732017-08-09 10:37:43 +03004779 mvpp2_gpio_init(port);
4780#endif
4781
Stefan Roese66b11cc2017-03-22 14:11:16 +01004782 priv->port_list[port->id] = port;
Stefan Chulskibb915c82017-08-09 10:37:46 +03004783 priv->num_ports++;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004784 return 0;
4785}
4786
4787/* Initialize decoding windows */
4788static void mvpp2_conf_mbus_windows(const struct mbus_dram_target_info *dram,
4789 struct mvpp2 *priv)
4790{
4791 u32 win_enable;
4792 int i;
4793
4794 for (i = 0; i < 6; i++) {
4795 mvpp2_write(priv, MVPP2_WIN_BASE(i), 0);
4796 mvpp2_write(priv, MVPP2_WIN_SIZE(i), 0);
4797
4798 if (i < 4)
4799 mvpp2_write(priv, MVPP2_WIN_REMAP(i), 0);
4800 }
4801
4802 win_enable = 0;
4803
4804 for (i = 0; i < dram->num_cs; i++) {
4805 const struct mbus_dram_window *cs = dram->cs + i;
4806
4807 mvpp2_write(priv, MVPP2_WIN_BASE(i),
4808 (cs->base & 0xffff0000) | (cs->mbus_attr << 8) |
4809 dram->mbus_dram_target_id);
4810
4811 mvpp2_write(priv, MVPP2_WIN_SIZE(i),
4812 (cs->size - 1) & 0xffff0000);
4813
4814 win_enable |= (1 << i);
4815 }
4816
4817 mvpp2_write(priv, MVPP2_BASE_ADDR_ENABLE, win_enable);
4818}
4819
4820/* Initialize Rx FIFO's */
4821static void mvpp2_rx_fifo_init(struct mvpp2 *priv)
4822{
4823 int port;
4824
4825 for (port = 0; port < MVPP2_MAX_PORTS; port++) {
Stefan Roeseff572c62017-03-01 13:09:42 +01004826 if (priv->hw_version == MVPP22) {
4827 if (port == 0) {
4828 mvpp2_write(priv,
4829 MVPP2_RX_DATA_FIFO_SIZE_REG(port),
4830 MVPP22_RX_FIFO_10GB_PORT_DATA_SIZE);
4831 mvpp2_write(priv,
4832 MVPP2_RX_ATTR_FIFO_SIZE_REG(port),
4833 MVPP22_RX_FIFO_10GB_PORT_ATTR_SIZE);
4834 } else if (port == 1) {
4835 mvpp2_write(priv,
4836 MVPP2_RX_DATA_FIFO_SIZE_REG(port),
4837 MVPP22_RX_FIFO_2_5GB_PORT_DATA_SIZE);
4838 mvpp2_write(priv,
4839 MVPP2_RX_ATTR_FIFO_SIZE_REG(port),
4840 MVPP22_RX_FIFO_2_5GB_PORT_ATTR_SIZE);
4841 } else {
4842 mvpp2_write(priv,
4843 MVPP2_RX_DATA_FIFO_SIZE_REG(port),
4844 MVPP22_RX_FIFO_1GB_PORT_DATA_SIZE);
4845 mvpp2_write(priv,
4846 MVPP2_RX_ATTR_FIFO_SIZE_REG(port),
4847 MVPP22_RX_FIFO_1GB_PORT_ATTR_SIZE);
4848 }
4849 } else {
4850 mvpp2_write(priv, MVPP2_RX_DATA_FIFO_SIZE_REG(port),
4851 MVPP21_RX_FIFO_PORT_DATA_SIZE);
4852 mvpp2_write(priv, MVPP2_RX_ATTR_FIFO_SIZE_REG(port),
4853 MVPP21_RX_FIFO_PORT_ATTR_SIZE);
4854 }
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004855 }
4856
4857 mvpp2_write(priv, MVPP2_RX_MIN_PKT_SIZE_REG,
4858 MVPP2_RX_FIFO_PORT_MIN_PKT);
4859 mvpp2_write(priv, MVPP2_RX_FIFO_INIT_REG, 0x1);
4860}
4861
Stefan Roeseff572c62017-03-01 13:09:42 +01004862/* Initialize Tx FIFO's */
4863static void mvpp2_tx_fifo_init(struct mvpp2 *priv)
4864{
4865 int port, val;
4866
4867 for (port = 0; port < MVPP2_MAX_PORTS; port++) {
4868 /* Port 0 supports 10KB TX FIFO */
4869 if (port == 0) {
4870 val = MVPP2_TX_FIFO_DATA_SIZE_10KB &
4871 MVPP22_TX_FIFO_SIZE_MASK;
4872 } else {
4873 val = MVPP2_TX_FIFO_DATA_SIZE_3KB &
4874 MVPP22_TX_FIFO_SIZE_MASK;
4875 }
4876 mvpp2_write(priv, MVPP22_TX_FIFO_SIZE_REG(port), val);
4877 }
4878}
4879
Thomas Petazzonicdf77792017-02-16 08:41:07 +01004880static void mvpp2_axi_init(struct mvpp2 *priv)
4881{
4882 u32 val, rdval, wrval;
4883
4884 mvpp2_write(priv, MVPP22_BM_ADDR_HIGH_RLS_REG, 0x0);
4885
4886 /* AXI Bridge Configuration */
4887
4888 rdval = MVPP22_AXI_CODE_CACHE_RD_CACHE
4889 << MVPP22_AXI_ATTR_CACHE_OFFS;
4890 rdval |= MVPP22_AXI_CODE_DOMAIN_OUTER_DOM
4891 << MVPP22_AXI_ATTR_DOMAIN_OFFS;
4892
4893 wrval = MVPP22_AXI_CODE_CACHE_WR_CACHE
4894 << MVPP22_AXI_ATTR_CACHE_OFFS;
4895 wrval |= MVPP22_AXI_CODE_DOMAIN_OUTER_DOM
4896 << MVPP22_AXI_ATTR_DOMAIN_OFFS;
4897
4898 /* BM */
4899 mvpp2_write(priv, MVPP22_AXI_BM_WR_ATTR_REG, wrval);
4900 mvpp2_write(priv, MVPP22_AXI_BM_RD_ATTR_REG, rdval);
4901
4902 /* Descriptors */
4903 mvpp2_write(priv, MVPP22_AXI_AGGRQ_DESCR_RD_ATTR_REG, rdval);
4904 mvpp2_write(priv, MVPP22_AXI_TXQ_DESCR_WR_ATTR_REG, wrval);
4905 mvpp2_write(priv, MVPP22_AXI_TXQ_DESCR_RD_ATTR_REG, rdval);
4906 mvpp2_write(priv, MVPP22_AXI_RXQ_DESCR_WR_ATTR_REG, wrval);
4907
4908 /* Buffer Data */
4909 mvpp2_write(priv, MVPP22_AXI_TX_DATA_RD_ATTR_REG, rdval);
4910 mvpp2_write(priv, MVPP22_AXI_RX_DATA_WR_ATTR_REG, wrval);
4911
4912 val = MVPP22_AXI_CODE_CACHE_NON_CACHE
4913 << MVPP22_AXI_CODE_CACHE_OFFS;
4914 val |= MVPP22_AXI_CODE_DOMAIN_SYSTEM
4915 << MVPP22_AXI_CODE_DOMAIN_OFFS;
4916 mvpp2_write(priv, MVPP22_AXI_RD_NORMAL_CODE_REG, val);
4917 mvpp2_write(priv, MVPP22_AXI_WR_NORMAL_CODE_REG, val);
4918
4919 val = MVPP22_AXI_CODE_CACHE_RD_CACHE
4920 << MVPP22_AXI_CODE_CACHE_OFFS;
4921 val |= MVPP22_AXI_CODE_DOMAIN_OUTER_DOM
4922 << MVPP22_AXI_CODE_DOMAIN_OFFS;
4923
4924 mvpp2_write(priv, MVPP22_AXI_RD_SNOOP_CODE_REG, val);
4925
4926 val = MVPP22_AXI_CODE_CACHE_WR_CACHE
4927 << MVPP22_AXI_CODE_CACHE_OFFS;
4928 val |= MVPP22_AXI_CODE_DOMAIN_OUTER_DOM
4929 << MVPP22_AXI_CODE_DOMAIN_OFFS;
4930
4931 mvpp2_write(priv, MVPP22_AXI_WR_SNOOP_CODE_REG, val);
4932}
4933
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004934/* Initialize network controller common part HW */
4935static int mvpp2_init(struct udevice *dev, struct mvpp2 *priv)
4936{
4937 const struct mbus_dram_target_info *dram_target_info;
4938 int err, i;
4939 u32 val;
4940
4941 /* Checks for hardware constraints (U-Boot uses only one rxq) */
Thomas Petazzoni09b3f942017-02-16 09:03:16 +01004942 if ((rxq_number > priv->max_port_rxqs) ||
4943 (txq_number > MVPP2_MAX_TXQ)) {
Sean Andersonddc48c12020-09-15 10:44:56 -04004944 dev_err(dev, "invalid queue size parameter\n");
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004945 return -EINVAL;
4946 }
4947
Thomas Petazzonicdf77792017-02-16 08:41:07 +01004948 if (priv->hw_version == MVPP22)
4949 mvpp2_axi_init(priv);
Stefan Chulskid4b0e002017-08-09 10:37:48 +03004950 else {
4951 /* MBUS windows configuration */
4952 dram_target_info = mvebu_mbus_dram_info();
4953 if (dram_target_info)
4954 mvpp2_conf_mbus_windows(dram_target_info, priv);
4955 }
Thomas Petazzonicdf77792017-02-16 08:41:07 +01004956
Thomas Petazzoni7c7311f2017-02-20 11:42:51 +01004957 if (priv->hw_version == MVPP21) {
Stefan Roese3e3cbb42017-03-09 12:01:57 +01004958 /* Disable HW PHY polling */
Thomas Petazzoni7c7311f2017-02-20 11:42:51 +01004959 val = readl(priv->lms_base + MVPP2_PHY_AN_CFG0_REG);
4960 val |= MVPP2_PHY_AN_STOP_SMI0_MASK;
4961 writel(val, priv->lms_base + MVPP2_PHY_AN_CFG0_REG);
4962 } else {
Stefan Roese3e3cbb42017-03-09 12:01:57 +01004963 /* Enable HW PHY polling */
Thomas Petazzoni7c7311f2017-02-20 11:42:51 +01004964 val = readl(priv->iface_base + MVPP22_SMI_MISC_CFG_REG);
Stefan Roese3e3cbb42017-03-09 12:01:57 +01004965 val |= MVPP22_SMI_POLLING_EN;
Thomas Petazzoni7c7311f2017-02-20 11:42:51 +01004966 writel(val, priv->iface_base + MVPP22_SMI_MISC_CFG_REG);
4967 }
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004968
4969 /* Allocate and initialize aggregated TXQs */
4970 priv->aggr_txqs = devm_kcalloc(dev, num_present_cpus(),
4971 sizeof(struct mvpp2_tx_queue),
4972 GFP_KERNEL);
4973 if (!priv->aggr_txqs)
4974 return -ENOMEM;
4975
4976 for_each_present_cpu(i) {
4977 priv->aggr_txqs[i].id = i;
4978 priv->aggr_txqs[i].size = MVPP2_AGGR_TXQ_SIZE;
4979 err = mvpp2_aggr_txq_init(dev, &priv->aggr_txqs[i],
4980 MVPP2_AGGR_TXQ_SIZE, i, priv);
4981 if (err < 0)
4982 return err;
4983 }
4984
4985 /* Rx Fifo Init */
4986 mvpp2_rx_fifo_init(priv);
4987
Stefan Roeseff572c62017-03-01 13:09:42 +01004988 /* Tx Fifo Init */
4989 if (priv->hw_version == MVPP22)
4990 mvpp2_tx_fifo_init(priv);
4991
Thomas Petazzoni7c7311f2017-02-20 11:42:51 +01004992 if (priv->hw_version == MVPP21)
4993 writel(MVPP2_EXT_GLOBAL_CTRL_DEFAULT,
4994 priv->lms_base + MVPP2_MNG_EXTENDED_GLOBAL_CTRL_REG);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004995
4996 /* Allow cache snoop when transmiting packets */
4997 mvpp2_write(priv, MVPP2_TX_SNOOP_REG, 0x1);
4998
4999 /* Buffer Manager initialization */
5000 err = mvpp2_bm_init(dev, priv);
5001 if (err < 0)
5002 return err;
5003
5004 /* Parser default initialization */
5005 err = mvpp2_prs_default_init(dev, priv);
5006 if (err < 0)
5007 return err;
5008
5009 /* Classifier default initialization */
5010 mvpp2_cls_init(priv);
5011
5012 return 0;
5013}
5014
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005015static int mvpp2_recv(struct udevice *dev, int flags, uchar **packetp)
5016{
5017 struct mvpp2_port *port = dev_get_priv(dev);
5018 struct mvpp2_rx_desc *rx_desc;
5019 struct mvpp2_bm_pool *bm_pool;
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01005020 dma_addr_t dma_addr;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005021 u32 bm, rx_status;
5022 int pool, rx_bytes, err;
5023 int rx_received;
5024 struct mvpp2_rx_queue *rxq;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005025 u8 *data;
5026
Nevo Hed2a428702019-08-15 18:08:44 -04005027 if (port->phyaddr < PHY_MAX_ADDR)
Stefan Chulski13b725f2019-08-15 18:08:41 -04005028 if (!port->phy_dev->link)
5029 return 0;
5030
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005031 /* Process RX packets */
Stefan Chulski16f18d22017-08-09 10:37:49 +03005032 rxq = port->rxqs[0];
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005033
5034 /* Get number of received packets and clamp the to-do */
5035 rx_received = mvpp2_rxq_received(port, rxq->id);
5036
5037 /* Return if no packets are received */
5038 if (!rx_received)
5039 return 0;
5040
5041 rx_desc = mvpp2_rxq_next_desc_get(rxq);
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01005042 rx_status = mvpp2_rxdesc_status_get(port, rx_desc);
5043 rx_bytes = mvpp2_rxdesc_size_get(port, rx_desc);
5044 rx_bytes -= MVPP2_MH_SIZE;
5045 dma_addr = mvpp2_rxdesc_dma_addr_get(port, rx_desc);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005046
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01005047 bm = mvpp2_bm_cookie_build(port, rx_desc);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005048 pool = mvpp2_bm_cookie_pool_get(bm);
5049 bm_pool = &port->priv->bm_pools[pool];
5050
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005051 /* In case of an error, release the requested buffer pointer
5052 * to the Buffer Manager. This request process is controlled
5053 * by the hardware, and the information about the buffer is
5054 * comprised by the RX descriptor.
5055 */
5056 if (rx_status & MVPP2_RXD_ERR_SUMMARY) {
5057 mvpp2_rx_error(port, rx_desc);
5058 /* Return the buffer to the pool */
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01005059 mvpp2_pool_refill(port, bm, dma_addr, dma_addr);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005060 return 0;
5061 }
5062
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01005063 err = mvpp2_rx_refill(port, bm_pool, bm, dma_addr);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005064 if (err) {
Sean Anderson9db60ee2020-09-15 10:44:57 -04005065 dev_err(port->phy_dev->dev, "failed to refill BM pools\n");
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005066 return 0;
5067 }
5068
5069 /* Update Rx queue management counters */
5070 mb();
5071 mvpp2_rxq_status_update(port, rxq->id, 1, 1);
5072
5073 /* give packet to stack - skip on first n bytes */
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01005074 data = (u8 *)dma_addr + 2 + 32;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005075
5076 if (rx_bytes <= 0)
5077 return 0;
5078
5079 /*
5080 * No cache invalidation needed here, since the rx_buffer's are
5081 * located in a uncached memory region
5082 */
5083 *packetp = data;
5084
5085 return rx_bytes;
5086}
5087
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005088static int mvpp2_send(struct udevice *dev, void *packet, int length)
5089{
5090 struct mvpp2_port *port = dev_get_priv(dev);
5091 struct mvpp2_tx_queue *txq, *aggr_txq;
5092 struct mvpp2_tx_desc *tx_desc;
5093 int tx_done;
5094 int timeout;
5095
Nevo Hed2a428702019-08-15 18:08:44 -04005096 if (port->phyaddr < PHY_MAX_ADDR)
Stefan Chulski13b725f2019-08-15 18:08:41 -04005097 if (!port->phy_dev->link)
5098 return 0;
5099
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005100 txq = port->txqs[0];
5101 aggr_txq = &port->priv->aggr_txqs[smp_processor_id()];
5102
5103 /* Get a descriptor for the first part of the packet */
5104 tx_desc = mvpp2_txq_next_desc_get(aggr_txq);
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01005105 mvpp2_txdesc_txq_set(port, tx_desc, txq->id);
5106 mvpp2_txdesc_size_set(port, tx_desc, length);
5107 mvpp2_txdesc_offset_set(port, tx_desc,
5108 (dma_addr_t)packet & MVPP2_TX_DESC_ALIGN);
5109 mvpp2_txdesc_dma_addr_set(port, tx_desc,
5110 (dma_addr_t)packet & ~MVPP2_TX_DESC_ALIGN);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005111 /* First and Last descriptor */
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01005112 mvpp2_txdesc_cmd_set(port, tx_desc,
5113 MVPP2_TXD_L4_CSUM_NOT | MVPP2_TXD_IP_CSUM_DISABLE
5114 | MVPP2_TXD_F_DESC | MVPP2_TXD_L_DESC);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005115
5116 /* Flush tx data */
Stefan Roesef811e042017-02-16 13:58:37 +01005117 flush_dcache_range((unsigned long)packet,
5118 (unsigned long)packet + ALIGN(length, PKTALIGN));
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005119
5120 /* Enable transmit */
5121 mb();
5122 mvpp2_aggr_txq_pend_desc_add(port, 1);
5123
5124 mvpp2_write(port->priv, MVPP2_TXQ_NUM_REG, txq->id);
5125
5126 timeout = 0;
5127 do {
5128 if (timeout++ > 10000) {
5129 printf("timeout: packet not sent from aggregated to phys TXQ\n");
5130 return 0;
5131 }
5132 tx_done = mvpp2_txq_pend_desc_num_get(port, txq);
5133 } while (tx_done);
5134
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005135 timeout = 0;
5136 do {
5137 if (timeout++ > 10000) {
5138 printf("timeout: packet not sent\n");
5139 return 0;
5140 }
5141 tx_done = mvpp2_txq_sent_desc_proc(port, txq);
5142 } while (!tx_done);
5143
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005144 return 0;
5145}
5146
5147static int mvpp2_start(struct udevice *dev)
5148{
Simon Glassc69cda22020-12-03 16:55:20 -07005149 struct eth_pdata *pdata = dev_get_plat(dev);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005150 struct mvpp2_port *port = dev_get_priv(dev);
5151
5152 /* Load current MAC address */
5153 memcpy(port->dev_addr, pdata->enetaddr, ETH_ALEN);
5154
5155 /* Reconfigure parser accept the original MAC address */
5156 mvpp2_prs_update_mac_da(port, port->dev_addr);
5157
Stefan Chulskie09d0c82017-04-06 15:39:08 +02005158 switch (port->phy_interface) {
5159 case PHY_INTERFACE_MODE_RGMII:
5160 case PHY_INTERFACE_MODE_RGMII_ID:
5161 case PHY_INTERFACE_MODE_SGMII:
5162 mvpp2_port_power_up(port);
5163 default:
5164 break;
5165 }
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005166
5167 mvpp2_open(dev, port);
5168
5169 return 0;
5170}
5171
5172static void mvpp2_stop(struct udevice *dev)
5173{
5174 struct mvpp2_port *port = dev_get_priv(dev);
5175
5176 mvpp2_stop_dev(port);
5177 mvpp2_cleanup_rxqs(port);
5178 mvpp2_cleanup_txqs(port);
5179}
5180
Matt Pellanda37c0822019-07-30 09:40:24 -04005181static int mvpp2_write_hwaddr(struct udevice *dev)
5182{
5183 struct mvpp2_port *port = dev_get_priv(dev);
5184
5185 return mvpp2_prs_update_mac_da(port, port->dev_addr);
5186}
5187
Stefan Roesefb640722017-03-10 06:07:45 +01005188static int mvpp22_smi_phy_addr_cfg(struct mvpp2_port *port)
5189{
5190 writel(port->phyaddr, port->priv->iface_base +
5191 MVPP22_SMI_PHY_ADDR_REG(port->gop_id));
5192
5193 return 0;
5194}
5195
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005196static int mvpp2_base_probe(struct udevice *dev)
5197{
5198 struct mvpp2 *priv = dev_get_priv(dev);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005199 void *bd_space;
5200 u32 size = 0;
5201 int i;
5202
Thomas Petazzoni16a98982017-02-15 14:08:59 +01005203 /* Save hw-version */
5204 priv->hw_version = dev_get_driver_data(dev);
5205
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005206 /*
5207 * U-Boot special buffer handling:
5208 *
5209 * Allocate buffer area for descs and rx_buffers. This is only
5210 * done once for all interfaces. As only one interface can
5211 * be active. Make this area DMA-safe by disabling the D-cache
5212 */
5213
Sven Auhagen3078e032020-07-01 17:43:43 +02005214 if (!buffer_loc_init) {
5215 /* Align buffer area for descs and rx_buffers to 1MiB */
5216 bd_space = memalign(1 << MMU_SECTION_SHIFT, BD_SPACE);
5217 mmu_set_region_dcache_behaviour((unsigned long)bd_space,
5218 BD_SPACE, DCACHE_OFF);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005219
Sven Auhagen3078e032020-07-01 17:43:43 +02005220 buffer_loc.aggr_tx_descs = (struct mvpp2_tx_desc *)bd_space;
5221 size += MVPP2_AGGR_TXQ_SIZE * MVPP2_DESC_ALIGNED_SIZE;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005222
Sven Auhagen3078e032020-07-01 17:43:43 +02005223 buffer_loc.tx_descs =
5224 (struct mvpp2_tx_desc *)((unsigned long)bd_space + size);
5225 size += MVPP2_MAX_TXD * MVPP2_DESC_ALIGNED_SIZE;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005226
Sven Auhagen3078e032020-07-01 17:43:43 +02005227 buffer_loc.rx_descs =
5228 (struct mvpp2_rx_desc *)((unsigned long)bd_space + size);
5229 size += MVPP2_MAX_RXD * MVPP2_DESC_ALIGNED_SIZE;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005230
Sven Auhagen3078e032020-07-01 17:43:43 +02005231 for (i = 0; i < MVPP2_BM_POOLS_NUM; i++) {
5232 buffer_loc.bm_pool[i] =
5233 (unsigned long *)((unsigned long)bd_space + size);
5234 if (priv->hw_version == MVPP21)
5235 size += MVPP2_BM_POOL_SIZE_MAX * 2 * sizeof(u32);
5236 else
5237 size += MVPP2_BM_POOL_SIZE_MAX * 2 * sizeof(u64);
5238 }
5239
5240 for (i = 0; i < MVPP2_BM_LONG_BUF_NUM; i++) {
5241 buffer_loc.rx_buffer[i] =
5242 (unsigned long *)((unsigned long)bd_space + size);
5243 size += RX_BUFFER_SIZE;
5244 }
5245
5246 /* Clear the complete area so that all descriptors are cleared */
5247 memset(bd_space, 0, size);
5248
5249 buffer_loc_init = 1;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005250 }
5251
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005252 /* Save base addresses for later use */
Simon Glassa821c4a2017-05-17 17:18:05 -06005253 priv->base = (void *)devfdt_get_addr_index(dev, 0);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005254 if (IS_ERR(priv->base))
5255 return PTR_ERR(priv->base);
5256
Thomas Petazzoni26a52782017-02-16 08:03:37 +01005257 if (priv->hw_version == MVPP21) {
Simon Glassa821c4a2017-05-17 17:18:05 -06005258 priv->lms_base = (void *)devfdt_get_addr_index(dev, 1);
Thomas Petazzoni26a52782017-02-16 08:03:37 +01005259 if (IS_ERR(priv->lms_base))
5260 return PTR_ERR(priv->lms_base);
5261 } else {
Simon Glassa821c4a2017-05-17 17:18:05 -06005262 priv->iface_base = (void *)devfdt_get_addr_index(dev, 1);
Thomas Petazzoni26a52782017-02-16 08:03:37 +01005263 if (IS_ERR(priv->iface_base))
5264 return PTR_ERR(priv->iface_base);
Stefan Roese0a61e9a2017-02-16 08:31:32 +01005265
Stefan Roese31aa1e32017-03-22 15:07:30 +01005266 /* Store common base addresses for all ports */
5267 priv->mpcs_base = priv->iface_base + MVPP22_MPCS;
5268 priv->xpcs_base = priv->iface_base + MVPP22_XPCS;
5269 priv->rfu1_base = priv->iface_base + MVPP22_RFU1;
Thomas Petazzoni26a52782017-02-16 08:03:37 +01005270 }
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005271
Thomas Petazzoni09b3f942017-02-16 09:03:16 +01005272 if (priv->hw_version == MVPP21)
5273 priv->max_port_rxqs = 8;
5274 else
5275 priv->max_port_rxqs = 32;
5276
Baruch Siach21586cd2018-11-21 13:05:34 +02005277 return 0;
5278}
5279
5280static int mvpp2_probe(struct udevice *dev)
5281{
5282 struct mvpp2_port *port = dev_get_priv(dev);
5283 struct mvpp2 *priv = dev_get_priv(dev->parent);
Baruch Siach21586cd2018-11-21 13:05:34 +02005284 int err;
5285
5286 /* Only call the probe function for the parent once */
5287 if (!priv->probe_done)
5288 err = mvpp2_base_probe(dev->parent);
5289
Nevo Hed2a428702019-08-15 18:08:44 -04005290 port->priv = priv;
Stefan Roese66b11cc2017-03-22 14:11:16 +01005291
5292 err = phy_info_parse(dev, port);
5293 if (err)
5294 return err;
5295
5296 /*
5297 * We need the port specific io base addresses at this stage, since
5298 * gop_port_init() accesses these registers
5299 */
5300 if (priv->hw_version == MVPP21) {
5301 int priv_common_regs_num = 2;
5302
Simon Glassa821c4a2017-05-17 17:18:05 -06005303 port->base = (void __iomem *)devfdt_get_addr_index(
Stefan Roese66b11cc2017-03-22 14:11:16 +01005304 dev->parent, priv_common_regs_num + port->id);
5305 if (IS_ERR(port->base))
5306 return PTR_ERR(port->base);
5307 } else {
5308 port->gop_id = fdtdec_get_int(gd->fdt_blob, dev_of_offset(dev),
5309 "gop-port-id", -1);
5310 if (port->id == -1) {
Sean Andersonddc48c12020-09-15 10:44:56 -04005311 dev_err(dev, "missing gop-port-id value\n");
Stefan Roese66b11cc2017-03-22 14:11:16 +01005312 return -EINVAL;
5313 }
5314
5315 port->base = priv->iface_base + MVPP22_PORT_BASE +
5316 port->gop_id * MVPP22_PORT_OFFSET;
Stefan Roese31aa1e32017-03-22 15:07:30 +01005317
Stefan Roesefb640722017-03-10 06:07:45 +01005318 /* Set phy address of the port */
Nevo Hed2a428702019-08-15 18:08:44 -04005319 if (port->phyaddr < PHY_MAX_ADDR)
Stefan Chulskie09d0c82017-04-06 15:39:08 +02005320 mvpp22_smi_phy_addr_cfg(port);
Stefan Roesefb640722017-03-10 06:07:45 +01005321
Stefan Roese31aa1e32017-03-22 15:07:30 +01005322 /* GoP Init */
5323 gop_port_init(port);
Stefan Roese66b11cc2017-03-22 14:11:16 +01005324 }
5325
Stefan Chulskibb915c82017-08-09 10:37:46 +03005326 if (!priv->probe_done) {
5327 /* Initialize network controller */
5328 err = mvpp2_init(dev, priv);
5329 if (err < 0) {
Sean Andersonddc48c12020-09-15 10:44:56 -04005330 dev_err(dev, "failed to initialize controller\n");
Stefan Chulskibb915c82017-08-09 10:37:46 +03005331 return err;
5332 }
5333 priv->num_ports = 0;
5334 priv->probe_done = 1;
Stefan Roese1fabbd02017-02-16 15:26:06 +01005335 }
5336
Stefan Roese31aa1e32017-03-22 15:07:30 +01005337 err = mvpp2_port_probe(dev, port, dev_of_offset(dev), priv);
5338 if (err)
5339 return err;
5340
5341 if (priv->hw_version == MVPP22) {
5342 priv->netc_config |= mvpp2_netc_cfg_create(port->gop_id,
5343 port->phy_interface);
5344
5345 /* Netcomplex configurations for all ports */
5346 gop_netc_init(priv, MV_NETC_FIRST_PHASE);
5347 gop_netc_init(priv, MV_NETC_SECOND_PHASE);
5348 }
5349
5350 return 0;
Stefan Roese1fabbd02017-02-16 15:26:06 +01005351}
5352
Stefan Roese2f720f12017-03-23 17:01:59 +01005353/*
5354 * Empty BM pool and stop its activity before the OS is started
5355 */
5356static int mvpp2_remove(struct udevice *dev)
5357{
5358 struct mvpp2_port *port = dev_get_priv(dev);
5359 struct mvpp2 *priv = port->priv;
5360 int i;
5361
Stefan Chulskibb915c82017-08-09 10:37:46 +03005362 priv->num_ports--;
5363
5364 if (priv->num_ports)
5365 return 0;
5366
Stefan Roese2f720f12017-03-23 17:01:59 +01005367 for (i = 0; i < MVPP2_BM_POOLS_NUM; i++)
5368 mvpp2_bm_pool_destroy(dev, priv, &priv->bm_pools[i]);
5369
5370 return 0;
5371}
5372
Stefan Roese1fabbd02017-02-16 15:26:06 +01005373static const struct eth_ops mvpp2_ops = {
5374 .start = mvpp2_start,
5375 .send = mvpp2_send,
5376 .recv = mvpp2_recv,
5377 .stop = mvpp2_stop,
Matt Pellanda37c0822019-07-30 09:40:24 -04005378 .write_hwaddr = mvpp2_write_hwaddr
Stefan Roese1fabbd02017-02-16 15:26:06 +01005379};
5380
5381static struct driver mvpp2_driver = {
5382 .name = "mvpp2",
5383 .id = UCLASS_ETH,
5384 .probe = mvpp2_probe,
Stefan Roese2f720f12017-03-23 17:01:59 +01005385 .remove = mvpp2_remove,
Stefan Roese1fabbd02017-02-16 15:26:06 +01005386 .ops = &mvpp2_ops,
Simon Glass41575d82020-12-03 16:55:17 -07005387 .priv_auto = sizeof(struct mvpp2_port),
Simon Glasscaa4daa2020-12-03 16:55:18 -07005388 .plat_auto = sizeof(struct eth_pdata),
Stefan Roese2f720f12017-03-23 17:01:59 +01005389 .flags = DM_FLAG_ACTIVE_DMA,
Stefan Roese1fabbd02017-02-16 15:26:06 +01005390};
5391
5392/*
5393 * Use a MISC device to bind the n instances (child nodes) of the
5394 * network base controller in UCLASS_ETH.
5395 */
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005396static int mvpp2_base_bind(struct udevice *parent)
5397{
5398 const void *blob = gd->fdt_blob;
Simon Glasse160f7d2017-01-17 16:52:55 -07005399 int node = dev_of_offset(parent);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005400 struct uclass_driver *drv;
5401 struct udevice *dev;
5402 struct eth_pdata *plat;
5403 char *name;
5404 int subnode;
5405 u32 id;
Stefan Roesec9607c92017-02-24 10:12:41 +01005406 int base_id_add;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005407
5408 /* Lookup eth driver */
5409 drv = lists_uclass_lookup(UCLASS_ETH);
5410 if (!drv) {
5411 puts("Cannot find eth driver\n");
5412 return -ENOENT;
5413 }
5414
Stefan Roesec9607c92017-02-24 10:12:41 +01005415 base_id_add = base_id;
5416
Simon Glassdf87e6b2016-10-02 17:59:29 -06005417 fdt_for_each_subnode(subnode, blob, node) {
Stefan Roesec9607c92017-02-24 10:12:41 +01005418 /* Increment base_id for all subnodes, also the disabled ones */
5419 base_id++;
5420
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005421 /* Skip disabled ports */
5422 if (!fdtdec_get_is_enabled(blob, subnode))
5423 continue;
5424
5425 plat = calloc(1, sizeof(*plat));
5426 if (!plat)
5427 return -ENOMEM;
5428
5429 id = fdtdec_get_int(blob, subnode, "port-id", -1);
Stefan Roesec9607c92017-02-24 10:12:41 +01005430 id += base_id_add;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005431
5432 name = calloc(1, 16);
Heinrich Schuchardtb24b1e42018-03-07 03:39:04 +01005433 if (!name) {
5434 free(plat);
5435 return -ENOMEM;
5436 }
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005437 sprintf(name, "mvpp2-%d", id);
5438
5439 /* Create child device UCLASS_ETH and bind it */
Simon Glassa2703ce2020-11-28 17:50:03 -07005440 device_bind(parent, &mvpp2_driver, name, plat,
5441 offset_to_ofnode(subnode), &dev);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005442 }
5443
5444 return 0;
5445}
5446
5447static const struct udevice_id mvpp2_ids[] = {
Thomas Petazzoni16a98982017-02-15 14:08:59 +01005448 {
5449 .compatible = "marvell,armada-375-pp2",
5450 .data = MVPP21,
5451 },
Thomas Petazzonia83a6412017-02-20 11:54:31 +01005452 {
5453 .compatible = "marvell,armada-7k-pp22",
5454 .data = MVPP22,
5455 },
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005456 { }
5457};
5458
5459U_BOOT_DRIVER(mvpp2_base) = {
5460 .name = "mvpp2_base",
5461 .id = UCLASS_MISC,
5462 .of_match = mvpp2_ids,
5463 .bind = mvpp2_base_bind,
Simon Glass41575d82020-12-03 16:55:17 -07005464 .priv_auto = sizeof(struct mvpp2),
Stefan Roese99d4c6d2016-02-10 07:22:10 +01005465};