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