blob: a5747a25abe08c3839271b1d6b78e006b01473f9 [file] [log] [blame]
Stefan Roese96c19042016-02-10 07:22:10 +01001/*
2 * Driver for Marvell PPv2 network controller for Armada 375 SoC.
3 *
4 * Copyright (C) 2014 Marvell
5 *
6 * Marcin Wojtas <mw@semihalf.com>
7 *
8 * U-Boot version:
Stefan Roese38801d42017-02-24 10:12:41 +01009 * Copyright (C) 2016-2017 Stefan Roese <sr@denx.de>
Stefan Roese96c19042016-02-10 07:22:10 +010010 *
11 * This file is licensed under the terms of the GNU General Public
12 * License version 2. This program is licensed "as is" without any
13 * warranty of any kind, whether express or implied.
14 */
15
16#include <common.h>
Simon Glass63334482019-11-14 12:57:39 -070017#include <cpu_func.h>
Stefan Roese96c19042016-02-10 07:22:10 +010018#include <dm.h>
Simon Glass274e0b02020-05-10 11:39:56 -060019#include <asm/cache.h>
Stefan Roese96c19042016-02-10 07:22:10 +010020#include <dm/device-internal.h>
Simon Glass9bc15642020-02-03 07:36:16 -070021#include <dm/device_compat.h>
Simon Glassd66c5f72020-02-03 07:36:15 -070022#include <dm/devres.h>
Stefan Roese96c19042016-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 Glass4dcacfc2020-05-10 11:40:13 -060029#include <linux/bitops.h>
Simon Glassc06c1be2020-05-10 11:40:08 -060030#include <linux/bug.h>
Simon Glassdbd79542020-05-10 11:40:11 -060031#include <linux/delay.h>
Simon Glassd66c5f72020-02-03 07:36:15 -070032#include <linux/err.h>
Masahiro Yamada56a931c2016-09-21 11:28:55 +090033#include <linux/errno.h>
Stefan Roese96c19042016-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 Glass2dc9c342020-05-10 11:40:01 -060040#include <linux/libfdt.h>
Stefan Roese96c19042016-02-10 07:22:10 +010041#include <linux/mbus.h>
Stefan Chulski0d65eb62017-08-09 10:37:43 +030042#include <asm-generic/gpio.h>
Stefan Chulski4bc456a2017-08-09 10:37:44 +030043#include <fdt_support.h>
Nevo Hed5e975612019-08-15 18:08:44 -040044#include <linux/mdio.h>
Stefan Roese96c19042016-02-10 07:22:10 +010045
46DECLARE_GLOBAL_DATA_PTR;
47
Stefan Roese96c19042016-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 Roese96c19042016-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 Roese96c19042016-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 Petazzoni2321c922017-02-16 06:53:51 +010091#define MVPP21_RXQ_POOL_SHORT_MASK 0x700000
92#define MVPP22_RXQ_POOL_SHORT_MASK 0xf00000
Stefan Roese96c19042016-02-10 07:22:10 +010093#define MVPP2_RXQ_POOL_LONG_OFFS 24
Thomas Petazzoni2321c922017-02-16 06:53:51 +010094#define MVPP21_RXQ_POOL_LONG_MASK 0x7000000
95#define MVPP22_RXQ_POOL_LONG_MASK 0xf000000
Stefan Roese96c19042016-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 Petazzoni7f215c72017-02-20 11:36:57 +0100143#define MVPP22_DESC_ADDR_OFFS 8
Stefan Roese96c19042016-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 Petazzoni7f215c72017-02-20 11:36:57 +0100185#define MVPP22_AGGR_TXQ_DESC_ADDR_OFFS 8
Stefan Roese96c19042016-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 Petazzonica560ab2017-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 Roese96c19042016-02-10 07:22:10 +0100226/* Interrupt Cause and Mask registers */
227#define MVPP2_ISR_RX_THRESHOLD_REG(rxq) (0x5200 + 4 * (rxq))
Thomas Petazzonif1077472017-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 Roese96c19042016-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 Petazzoni3520a332017-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 Roese96c19042016-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 Petazzoni3520a332017-02-20 11:29:16 +0100306#define MVPP21_BM_MC_RLS_REG 0x64c4
Stefan Roese96c19042016-02-10 07:22:10 +0100307#define MVPP2_BM_MC_ID_MASK 0xfff
308#define MVPP2_BM_FORCE_RELEASE_MASK BIT(12)
Thomas Petazzoni3520a332017-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 Chulski115f76f2017-08-09 10:37:50 +0300314#define MVPP22_BM_POOL_BASE_HIGH_REG 0x6310
315#define MVPP22_BM_POOL_BASE_HIGH_MASK 0xff
Stefan Roese96c19042016-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 Roese96c19042016-02-10 07:22:10 +0100351#define MVPP2_MNG_EXTENDED_GLOBAL_CTRL_REG 0x305c
Thomas Petazzoniebbe76f2017-02-15 12:16:23 +0100352#define MVPP2_EXT_GLOBAL_CTRL_DEFAULT 0x27
Stefan Roese96c19042016-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 Roese40e749b2017-03-22 15:07:30 +0100357#define MVPP2_GMAC_PORT_TYPE_MASK BIT(1)
Stefan Roese96c19042016-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 Roese40e749b2017-03-22 15:07:30 +0100369#define MVPP2_GMAC_SGMII_MODE_MASK BIT(0)
Stefan Roese96c19042016-02-10 07:22:10 +0100370#define MVPP2_GMAC_PCS_ENABLE_MASK BIT(3)
371#define MVPP2_GMAC_PORT_RGMII_MASK BIT(4)
Stefan Roese40e749b2017-03-22 15:07:30 +0100372#define MVPP2_GMAC_PORT_DIS_PADING_MASK BIT(5)
Stefan Roese96c19042016-02-10 07:22:10 +0100373#define MVPP2_GMAC_PORT_RESET_MASK BIT(6)
Stefan Roese40e749b2017-03-22 15:07:30 +0100374#define MVPP2_GMAC_CLK_125_BYPS_EN_MASK BIT(9)
Stefan Roese96c19042016-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 Roese40e749b2017-03-22 15:07:30 +0100378#define MVPP2_GMAC_EN_PCS_AN BIT(2)
379#define MVPP2_GMAC_AN_BYPASS_EN BIT(3)
Stefan Roese96c19042016-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 Roese40e749b2017-03-22 15:07:30 +0100384#define MVPP2_GMAC_EN_FC_AN BIT(11)
Stefan Roese96c19042016-02-10 07:22:10 +0100385#define MVPP2_GMAC_CONFIG_FULL_DUPLEX BIT(12)
386#define MVPP2_GMAC_AN_DUPLEX_EN BIT(13)
Stefan Roese40e749b2017-03-22 15:07:30 +0100387#define MVPP2_GMAC_CHOOSE_SAMPLE_TX_CONFIG BIT(15)
Stefan Roese96c19042016-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 Roese40e749b2017-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 Roese96c19042016-02-10 07:22:10 +0100398
Stefan Roese40e749b2017-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 Chulskia27adcb2017-04-06 15:39:08 +0200444#define FORWARD_ERROR_CORRECTION_MASK BIT(10)
Stefan Roese40e749b2017-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 Petazzonicc2445f2017-02-20 11:42:51 +0100490#define MVPP22_SMI_POLLING_EN BIT(10)
491
Stefan Roese40e749b2017-03-22 15:07:30 +0100492#define MVPP22_SMI_PHY_ADDR_REG(port) (MVPP22_SMI + 0x04 + \
493 (0x4 * (port)))
Thomas Petazzoni5555f072017-02-16 08:03:37 +0100494
Stefan Roese96c19042016-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 Roeseb71c2a32017-02-16 08:31:32 +0100501/* PP2.2: SMI: 0x12a200 -> offset 0x1200 to iface_base */
502#define MVPP22_SMI 0x1200
Stefan Roese96c19042016-02-10 07:22:10 +0100503
Stefan Roese40e749b2017-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 Roese96c19042016-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 Roese96c19042016-02-10 07:22:10 +0100588/* Default number of TXQs in use */
589#define MVPP2_DEFAULT_TXQ 1
590
Flavio Suligoi50b91ce2020-01-29 09:38:56 +0100591/* Default number of RXQs in use */
Stefan Roese96c19042016-02-10 07:22:10 +0100592#define MVPP2_DEFAULT_RXQ 1
593#define CONFIG_MV_ETH_RXQ 8 /* increment by 8 */
594
Stefan Roese96c19042016-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 Chulskib528d122017-08-09 10:37:47 +0300602#define MVPP2_CPU_DESC_CHUNK 16
Stefan Roese96c19042016-02-10 07:22:10 +0100603
604/* Max number of Tx descriptors in each aggregated queue */
Stefan Chulskib528d122017-08-09 10:37:47 +0300605#define MVPP2_AGGR_TXQ_SIZE 16
Stefan Roese96c19042016-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 Roesea8801ed2017-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 Roese96c19042016-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 Petazzoni265b3c62017-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 Roese96c19042016-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 Petazzoni265b3c62017-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 Roese96c19042016-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 Petazzoni265b3c62017-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 Roese96c19042016-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 Petazzoni265b3c62017-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 Roese96c19042016-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 Petazzoni5555f072017-02-16 08:03:37 +0100892 void __iomem *iface_base;
Stefan Roese96c19042016-02-10 07:22:10 +0100893
Stefan Roese40e749b2017-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 Roese96c19042016-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 Petazzoni51ccb412017-02-15 14:08:59 +0100917 /* HW version */
918 enum { MVPP21, MVPP22 } hw_version;
919
Thomas Petazzoni38a23282017-02-16 09:03:16 +0100920 /* Maximum number of RXQs per port */
921 unsigned int max_port_rxqs;
922
Stefan Roesed017cdf2017-02-16 15:26:06 +0100923 int probe_done;
Stefan Chulski75872182017-08-09 10:37:46 +0300924 u8 num_ports;
Stefan Roese96c19042016-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 Petazzoni5555f072017-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 Roese96c19042016-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 Roese96c19042016-02-10 07:22:10 +0100968 int phyaddr;
Nevo Hed5e975612019-08-15 18:08:44 -0400969 struct udevice *mdio_dev;
Simon Glassfa4689a2019-12-06 21:41:35 -0700970 struct mii_dev *bus;
971#if CONFIG_IS_ENABLED(DM_GPIO)
Stefan Chulski0d65eb62017-08-09 10:37:43 +0300972 struct gpio_desc phy_reset_gpio;
973 struct gpio_desc phy_tx_disable_gpio;
974#endif
Stefan Roese96c19042016-02-10 07:22:10 +0100975 int init;
976 unsigned int link;
977 unsigned int duplex;
978 unsigned int speed;
979
Stefan Roese3651bfc2017-03-22 14:15:40 +0100980 unsigned int phy_speed; /* SGMII 1Gbps vs 2.5Gbps */
981
Stefan Roese96c19042016-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 Petazzonie3645a02017-02-15 16:25:53 +01001023/* HW TX descriptor for PPv2.1 */
1024struct mvpp21_tx_desc {
Stefan Roese96c19042016-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 Petazzonic49aff22017-02-20 10:27:51 +01001029 u32 buf_dma_addr; /* physical addr of transmitted buffer */
Stefan Roese96c19042016-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 Petazzonie3645a02017-02-15 16:25:53 +01001035/* HW RX descriptor for PPv2.1 */
1036struct mvpp21_rx_desc {
Stefan Roese96c19042016-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 Petazzonic49aff22017-02-20 10:27:51 +01001040 u32 buf_dma_addr; /* physical address of the buffer */
Stefan Roese96c19042016-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 Petazzoni56563ad2017-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 Petazzonie3645a02017-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 Petazzoni56563ad2017-02-20 11:08:46 +01001079 struct mvpp22_tx_desc pp22;
Thomas Petazzonie3645a02017-02-15 16:25:53 +01001080 };
1081};
1082
1083struct mvpp2_rx_desc {
1084 union {
1085 struct mvpp21_rx_desc pp21;
Thomas Petazzoni56563ad2017-02-20 11:08:46 +01001086 struct mvpp22_rx_desc pp22;
Thomas Petazzonie3645a02017-02-15 16:25:53 +01001087 };
1088};
1089
Stefan Roese96c19042016-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 Petazzonic49aff22017-02-20 10:27:51 +01001134 dma_addr_t descs_dma;
Stefan Roese96c19042016-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 Petazzonic49aff22017-02-20 10:27:51 +01001157 dma_addr_t descs_dma;
Stefan Roese96c19042016-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 Roesefeb0b332017-02-15 12:46:18 +01001229 unsigned long *virt_addr;
Thomas Petazzonic49aff22017-02-20 10:27:51 +01001230 /* BPPE DMA base address */
1231 dma_addr_t dma_addr;
Stefan Roese96c19042016-02-10 07:22:10 +01001232
1233 /* Ports using BM pool */
1234 u32 port_map;
Stefan Roese96c19042016-02-10 07:22:10 +01001235};
1236
Stefan Roese96c19042016-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 Roese38801d42017-02-24 10:12:41 +01001244static int base_id;
1245
Stefan Roese96c19042016-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 Roesefeb0b332017-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 Roese96c19042016-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 Auhagena50bca12020-07-01 17:43:43 +02001266static int buffer_loc_init;
Stefan Roese96c19042016-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 Petazzonifb3a7bb2017-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 Petazzoni56563ad2017-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 Petazzonifb3a7bb2017-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 Petazzoni56563ad2017-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 Petazzonifb3a7bb2017-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 Petazzoni56563ad2017-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 Petazzonifb3a7bb2017-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 Petazzoni56563ad2017-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 Petazzonifb3a7bb2017-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 Petazzoni56563ad2017-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 Petazzonifb3a7bb2017-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 Petazzoni56563ad2017-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 Petazzonifb3a7bb2017-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 Petazzoni56563ad2017-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 Petazzonifb3a7bb2017-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 Petazzoni56563ad2017-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 Petazzonifb3a7bb2017-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 Petazzoni56563ad2017-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 Petazzonifb3a7bb2017-02-15 15:35:00 +01001374}
1375
Stefan Roese96c19042016-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 Petazzoni3520a332017-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 Roese96c19042016-02-10 07:22:10 +01002564 bm_pool->virt_addr = buffer_loc.bm_pool[bm_pool->id];
Thomas Petazzonic49aff22017-02-20 10:27:51 +01002565 bm_pool->dma_addr = (dma_addr_t)buffer_loc.bm_pool[bm_pool->id];
Stefan Roese96c19042016-02-10 07:22:10 +01002566 if (!bm_pool->virt_addr)
2567 return -ENOMEM;
2568
Thomas Petazzonia3c988f2017-02-15 12:31:53 +01002569 if (!IS_ALIGNED((unsigned long)bm_pool->virt_addr,
2570 MVPP2_BM_POOL_PTR_ALIGN)) {
Stefan Roese96c19042016-02-10 07:22:10 +01002571 dev_err(&pdev->dev, "BM pool %d is not %d bytes aligned\n",
2572 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 Petazzoni3520a332017-02-20 11:29:16 +01002577 lower_32_bits(bm_pool->dma_addr));
Stefan Chulski115f76f2017-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 Roese96c19042016-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 Roese380b3232017-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 Roese96c19042016-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 Chulski36eb98a2017-08-09 10:37:52 +03002657 mvpp2_bm_pool_bufsize_set(priv, bm_pool, RX_BUFFER_SIZE);
Stefan Roese96c19042016-02-10 07:22:10 +01002658 }
2659 return 0;
2660
2661err_unroll_pools:
2662 dev_err(&pdev->dev, "failed to create BM pool %d, size %d\n", i, size);
2663 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 Petazzoni2321c922017-02-16 06:53:51 +01002695 u32 val, mask;
Stefan Roese96c19042016-02-10 07:22:10 +01002696 int prxq;
2697
2698 /* Get queue physical ID */
2699 prxq = port->rxqs[lrxq]->id;
2700
Thomas Petazzoni2321c922017-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 Roese96c19042016-02-10 07:22:10 +01002705
Thomas Petazzoni2321c922017-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 Roese96c19042016-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 Petazzonia3c988f2017-02-15 12:31:53 +01002724static inline int mvpp2_bm_cookie_pool_get(unsigned long cookie)
Stefan Roese96c19042016-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 Petazzonic49aff22017-02-20 10:27:51 +01002731 dma_addr_t buf_dma_addr,
Thomas Petazzoni09831762017-02-20 10:37:59 +01002732 unsigned long buf_phys_addr)
Stefan Roese96c19042016-02-10 07:22:10 +01002733{
Thomas Petazzoni3520a332017-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 Petazzoni09831762017-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 Petazzonic49aff22017-02-20 10:27:51 +01002755 mvpp2_write(port->priv, MVPP2_BM_PHY_RLS_REG(pool), buf_dma_addr);
Stefan Roese96c19042016-02-10 07:22:10 +01002756}
2757
2758/* Refill BM pool */
2759static void mvpp2_pool_refill(struct mvpp2_port *port, u32 bm,
Thomas Petazzonic49aff22017-02-20 10:27:51 +01002760 dma_addr_t dma_addr,
Thomas Petazzoni09831762017-02-20 10:37:59 +01002761 phys_addr_t phys_addr)
Stefan Roese96c19042016-02-10 07:22:10 +01002762{
2763 int pool = mvpp2_bm_cookie_pool_get(bm);
2764
Thomas Petazzoni09831762017-02-20 10:37:59 +01002765 mvpp2_bm_pool_put(port, pool, dma_addr, phys_addr);
Stefan Roese96c19042016-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 Roese96c19042016-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 Roese96c19042016-02-10 07:22:10 +01002782 for (i = 0; i < buf_num; i++) {
Thomas Petazzoni1b085c52017-02-15 12:13:43 +01002783 mvpp2_bm_pool_put(port, bm_pool->id,
Thomas Petazzonia3c988f2017-02-15 12:31:53 +01002784 (dma_addr_t)buffer_loc.rx_buffer[i],
2785 (unsigned long)buffer_loc.rx_buffer[i]);
Thomas Petazzoni1b085c52017-02-15 12:13:43 +01002786
Stefan Roese96c19042016-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 Roese96c19042016-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) {
2837 dev_err(dev, "pool %d: %d of %d allocated\n",
2838 new_pool->id, num, pkts_num);
2839 return NULL;
2840 }
2841 }
2842
Stefan Roese96c19042016-02-10 07:22:10 +01002843 return new_pool;
2844}
2845
2846/* Initialize pools for swf */
2847static int mvpp2_swf_bm_pool_init(struct mvpp2_port *port)
2848{
2849 int rxq;
2850
2851 if (!port->pool_long) {
2852 port->pool_long =
2853 mvpp2_bm_pool_use(port, MVPP2_BM_SWF_LONG_POOL(port->id),
2854 MVPP2_BM_SWF_LONG,
2855 port->pkt_size);
2856 if (!port->pool_long)
2857 return -ENOMEM;
2858
2859 port->pool_long->port_map |= (1 << port->id);
2860
2861 for (rxq = 0; rxq < rxq_number; rxq++)
2862 mvpp2_rxq_long_pool_set(port, rxq, port->pool_long->id);
2863 }
2864
2865 return 0;
2866}
2867
2868/* Port configuration routines */
2869
2870static void mvpp2_port_mii_set(struct mvpp2_port *port)
2871{
2872 u32 val;
2873
2874 val = readl(port->base + MVPP2_GMAC_CTRL_2_REG);
2875
2876 switch (port->phy_interface) {
2877 case PHY_INTERFACE_MODE_SGMII:
2878 val |= MVPP2_GMAC_INBAND_AN_MASK;
2879 break;
2880 case PHY_INTERFACE_MODE_RGMII:
Stefan Roesec20e4e42017-03-22 15:11:00 +01002881 case PHY_INTERFACE_MODE_RGMII_ID:
Stefan Roese96c19042016-02-10 07:22:10 +01002882 val |= MVPP2_GMAC_PORT_RGMII_MASK;
2883 default:
2884 val &= ~MVPP2_GMAC_PCS_ENABLE_MASK;
2885 }
2886
2887 writel(val, port->base + MVPP2_GMAC_CTRL_2_REG);
2888}
2889
2890static void mvpp2_port_fc_adv_enable(struct mvpp2_port *port)
2891{
2892 u32 val;
2893
2894 val = readl(port->base + MVPP2_GMAC_AUTONEG_CONFIG);
2895 val |= MVPP2_GMAC_FC_ADV_EN;
2896 writel(val, port->base + MVPP2_GMAC_AUTONEG_CONFIG);
2897}
2898
2899static void mvpp2_port_enable(struct mvpp2_port *port)
2900{
2901 u32 val;
2902
2903 val = readl(port->base + MVPP2_GMAC_CTRL_0_REG);
2904 val |= MVPP2_GMAC_PORT_EN_MASK;
2905 val |= MVPP2_GMAC_MIB_CNTR_EN_MASK;
2906 writel(val, port->base + MVPP2_GMAC_CTRL_0_REG);
2907}
2908
2909static void mvpp2_port_disable(struct mvpp2_port *port)
2910{
2911 u32 val;
2912
2913 val = readl(port->base + MVPP2_GMAC_CTRL_0_REG);
2914 val &= ~(MVPP2_GMAC_PORT_EN_MASK);
2915 writel(val, port->base + MVPP2_GMAC_CTRL_0_REG);
2916}
2917
2918/* Set IEEE 802.3x Flow Control Xon Packet Transmission Mode */
2919static void mvpp2_port_periodic_xon_disable(struct mvpp2_port *port)
2920{
2921 u32 val;
2922
2923 val = readl(port->base + MVPP2_GMAC_CTRL_1_REG) &
2924 ~MVPP2_GMAC_PERIODIC_XON_EN_MASK;
2925 writel(val, port->base + MVPP2_GMAC_CTRL_1_REG);
2926}
2927
2928/* Configure loopback port */
2929static void mvpp2_port_loopback_set(struct mvpp2_port *port)
2930{
2931 u32 val;
2932
2933 val = readl(port->base + MVPP2_GMAC_CTRL_1_REG);
2934
2935 if (port->speed == 1000)
2936 val |= MVPP2_GMAC_GMII_LB_EN_MASK;
2937 else
2938 val &= ~MVPP2_GMAC_GMII_LB_EN_MASK;
2939
2940 if (port->phy_interface == PHY_INTERFACE_MODE_SGMII)
2941 val |= MVPP2_GMAC_PCS_LB_EN_MASK;
2942 else
2943 val &= ~MVPP2_GMAC_PCS_LB_EN_MASK;
2944
2945 writel(val, port->base + MVPP2_GMAC_CTRL_1_REG);
2946}
2947
2948static void mvpp2_port_reset(struct mvpp2_port *port)
2949{
2950 u32 val;
2951
2952 val = readl(port->base + MVPP2_GMAC_CTRL_2_REG) &
2953 ~MVPP2_GMAC_PORT_RESET_MASK;
2954 writel(val, port->base + MVPP2_GMAC_CTRL_2_REG);
2955
2956 while (readl(port->base + MVPP2_GMAC_CTRL_2_REG) &
2957 MVPP2_GMAC_PORT_RESET_MASK)
2958 continue;
2959}
2960
2961/* Change maximum receive size of the port */
2962static inline void mvpp2_gmac_max_rx_size_set(struct mvpp2_port *port)
2963{
2964 u32 val;
2965
2966 val = readl(port->base + MVPP2_GMAC_CTRL_0_REG);
2967 val &= ~MVPP2_GMAC_MAX_RX_SIZE_MASK;
2968 val |= (((port->pkt_size - MVPP2_MH_SIZE) / 2) <<
2969 MVPP2_GMAC_MAX_RX_SIZE_OFFS);
2970 writel(val, port->base + MVPP2_GMAC_CTRL_0_REG);
2971}
2972
Stefan Roese40e749b2017-03-22 15:07:30 +01002973/* PPv2.2 GoP/GMAC config */
2974
2975/* Set the MAC to reset or exit from reset */
2976static int gop_gmac_reset(struct mvpp2_port *port, int reset)
2977{
2978 u32 val;
2979
2980 /* read - modify - write */
2981 val = readl(port->base + MVPP2_GMAC_CTRL_2_REG);
2982 if (reset)
2983 val |= MVPP2_GMAC_PORT_RESET_MASK;
2984 else
2985 val &= ~MVPP2_GMAC_PORT_RESET_MASK;
2986 writel(val, port->base + MVPP2_GMAC_CTRL_2_REG);
2987
2988 return 0;
2989}
2990
2991/*
2992 * gop_gpcs_mode_cfg
2993 *
2994 * Configure port to working with Gig PCS or don't.
2995 */
2996static int gop_gpcs_mode_cfg(struct mvpp2_port *port, int en)
2997{
2998 u32 val;
2999
3000 val = readl(port->base + MVPP2_GMAC_CTRL_2_REG);
3001 if (en)
3002 val |= MVPP2_GMAC_PCS_ENABLE_MASK;
3003 else
3004 val &= ~MVPP2_GMAC_PCS_ENABLE_MASK;
3005 /* enable / disable PCS on this port */
3006 writel(val, port->base + MVPP2_GMAC_CTRL_2_REG);
3007
3008 return 0;
3009}
3010
3011static int gop_bypass_clk_cfg(struct mvpp2_port *port, int en)
3012{
3013 u32 val;
3014
3015 val = readl(port->base + MVPP2_GMAC_CTRL_2_REG);
3016 if (en)
3017 val |= MVPP2_GMAC_CLK_125_BYPS_EN_MASK;
3018 else
3019 val &= ~MVPP2_GMAC_CLK_125_BYPS_EN_MASK;
3020 /* enable / disable PCS on this port */
3021 writel(val, port->base + MVPP2_GMAC_CTRL_2_REG);
3022
3023 return 0;
3024}
3025
3026static void gop_gmac_sgmii2_5_cfg(struct mvpp2_port *port)
3027{
3028 u32 val, thresh;
3029
3030 /*
3031 * Configure minimal level of the Tx FIFO before the lower part
3032 * starts to read a packet
3033 */
3034 thresh = MVPP2_SGMII2_5_TX_FIFO_MIN_TH;
3035 val = readl(port->base + MVPP2_GMAC_PORT_FIFO_CFG_1_REG);
3036 val &= ~MVPP2_GMAC_TX_FIFO_MIN_TH_ALL_MASK;
3037 val |= MVPP2_GMAC_TX_FIFO_MIN_TH_MASK(thresh);
3038 writel(val, port->base + MVPP2_GMAC_PORT_FIFO_CFG_1_REG);
3039
3040 /* Disable bypass of sync module */
3041 val = readl(port->base + MVPP2_GMAC_CTRL_4_REG);
3042 val |= MVPP2_GMAC_CTRL4_SYNC_BYPASS_MASK;
3043 /* configure DP clock select according to mode */
3044 val |= MVPP2_GMAC_CTRL4_DP_CLK_SEL_MASK;
3045 /* configure QSGMII bypass according to mode */
3046 val |= MVPP2_GMAC_CTRL4_QSGMII_BYPASS_ACTIVE_MASK;
3047 writel(val, port->base + MVPP2_GMAC_CTRL_4_REG);
3048
Stefan Roese40e749b2017-03-22 15:07:30 +01003049 val = readl(port->base + MVPP2_GMAC_CTRL_0_REG);
3050 /*
3051 * Configure GIG MAC to 1000Base-X mode connected to a fiber
3052 * transceiver
3053 */
3054 val |= MVPP2_GMAC_PORT_TYPE_MASK;
3055 writel(val, port->base + MVPP2_GMAC_CTRL_0_REG);
3056
3057 /* configure AN 0x9268 */
3058 val = MVPP2_GMAC_EN_PCS_AN |
3059 MVPP2_GMAC_AN_BYPASS_EN |
3060 MVPP2_GMAC_CONFIG_MII_SPEED |
3061 MVPP2_GMAC_CONFIG_GMII_SPEED |
3062 MVPP2_GMAC_FC_ADV_EN |
3063 MVPP2_GMAC_CONFIG_FULL_DUPLEX |
3064 MVPP2_GMAC_CHOOSE_SAMPLE_TX_CONFIG;
3065 writel(val, port->base + MVPP2_GMAC_AUTONEG_CONFIG);
3066}
3067
3068static void gop_gmac_sgmii_cfg(struct mvpp2_port *port)
3069{
3070 u32 val, thresh;
3071
3072 /*
3073 * Configure minimal level of the Tx FIFO before the lower part
3074 * starts to read a packet
3075 */
3076 thresh = MVPP2_SGMII_TX_FIFO_MIN_TH;
3077 val = readl(port->base + MVPP2_GMAC_PORT_FIFO_CFG_1_REG);
3078 val &= ~MVPP2_GMAC_TX_FIFO_MIN_TH_ALL_MASK;
3079 val |= MVPP2_GMAC_TX_FIFO_MIN_TH_MASK(thresh);
3080 writel(val, port->base + MVPP2_GMAC_PORT_FIFO_CFG_1_REG);
3081
3082 /* Disable bypass of sync module */
3083 val = readl(port->base + MVPP2_GMAC_CTRL_4_REG);
3084 val |= MVPP2_GMAC_CTRL4_SYNC_BYPASS_MASK;
3085 /* configure DP clock select according to mode */
3086 val &= ~MVPP2_GMAC_CTRL4_DP_CLK_SEL_MASK;
3087 /* configure QSGMII bypass according to mode */
3088 val |= MVPP2_GMAC_CTRL4_QSGMII_BYPASS_ACTIVE_MASK;
3089 writel(val, port->base + MVPP2_GMAC_CTRL_4_REG);
3090
Stefan Roese40e749b2017-03-22 15:07:30 +01003091 val = readl(port->base + MVPP2_GMAC_CTRL_0_REG);
3092 /* configure GIG MAC to SGMII mode */
3093 val &= ~MVPP2_GMAC_PORT_TYPE_MASK;
3094 writel(val, port->base + MVPP2_GMAC_CTRL_0_REG);
3095
3096 /* configure AN */
3097 val = MVPP2_GMAC_EN_PCS_AN |
3098 MVPP2_GMAC_AN_BYPASS_EN |
3099 MVPP2_GMAC_AN_SPEED_EN |
3100 MVPP2_GMAC_EN_FC_AN |
3101 MVPP2_GMAC_AN_DUPLEX_EN |
3102 MVPP2_GMAC_CHOOSE_SAMPLE_TX_CONFIG;
3103 writel(val, port->base + MVPP2_GMAC_AUTONEG_CONFIG);
3104}
3105
3106static void gop_gmac_rgmii_cfg(struct mvpp2_port *port)
3107{
3108 u32 val, thresh;
3109
3110 /*
3111 * Configure minimal level of the Tx FIFO before the lower part
3112 * starts to read a packet
3113 */
3114 thresh = MVPP2_RGMII_TX_FIFO_MIN_TH;
3115 val = readl(port->base + MVPP2_GMAC_PORT_FIFO_CFG_1_REG);
3116 val &= ~MVPP2_GMAC_TX_FIFO_MIN_TH_ALL_MASK;
3117 val |= MVPP2_GMAC_TX_FIFO_MIN_TH_MASK(thresh);
3118 writel(val, port->base + MVPP2_GMAC_PORT_FIFO_CFG_1_REG);
3119
3120 /* Disable bypass of sync module */
3121 val = readl(port->base + MVPP2_GMAC_CTRL_4_REG);
3122 val |= MVPP2_GMAC_CTRL4_SYNC_BYPASS_MASK;
3123 /* configure DP clock select according to mode */
3124 val &= ~MVPP2_GMAC_CTRL4_DP_CLK_SEL_MASK;
3125 val |= MVPP2_GMAC_CTRL4_QSGMII_BYPASS_ACTIVE_MASK;
3126 val |= MVPP2_GMAC_CTRL4_EXT_PIN_GMII_SEL_MASK;
3127 writel(val, port->base + MVPP2_GMAC_CTRL_4_REG);
3128
Stefan Roese40e749b2017-03-22 15:07:30 +01003129 val = readl(port->base + MVPP2_GMAC_CTRL_0_REG);
3130 /* configure GIG MAC to SGMII mode */
3131 val &= ~MVPP2_GMAC_PORT_TYPE_MASK;
3132 writel(val, port->base + MVPP2_GMAC_CTRL_0_REG);
3133
3134 /* configure AN 0xb8e8 */
3135 val = MVPP2_GMAC_AN_BYPASS_EN |
3136 MVPP2_GMAC_AN_SPEED_EN |
3137 MVPP2_GMAC_EN_FC_AN |
3138 MVPP2_GMAC_AN_DUPLEX_EN |
3139 MVPP2_GMAC_CHOOSE_SAMPLE_TX_CONFIG;
3140 writel(val, port->base + MVPP2_GMAC_AUTONEG_CONFIG);
3141}
3142
3143/* Set the internal mux's to the required MAC in the GOP */
3144static int gop_gmac_mode_cfg(struct mvpp2_port *port)
3145{
3146 u32 val;
3147
3148 /* Set TX FIFO thresholds */
3149 switch (port->phy_interface) {
3150 case PHY_INTERFACE_MODE_SGMII:
3151 if (port->phy_speed == 2500)
3152 gop_gmac_sgmii2_5_cfg(port);
3153 else
3154 gop_gmac_sgmii_cfg(port);
3155 break;
3156
3157 case PHY_INTERFACE_MODE_RGMII:
3158 case PHY_INTERFACE_MODE_RGMII_ID:
3159 gop_gmac_rgmii_cfg(port);
3160 break;
3161
3162 default:
3163 return -1;
3164 }
3165
3166 /* Jumbo frame support - 0x1400*2= 0x2800 bytes */
3167 val = readl(port->base + MVPP2_GMAC_CTRL_0_REG);
3168 val &= ~MVPP2_GMAC_MAX_RX_SIZE_MASK;
3169 val |= 0x1400 << MVPP2_GMAC_MAX_RX_SIZE_OFFS;
3170 writel(val, port->base + MVPP2_GMAC_CTRL_0_REG);
3171
3172 /* PeriodicXonEn disable */
3173 val = readl(port->base + MVPP2_GMAC_CTRL_1_REG);
3174 val &= ~MVPP2_GMAC_PERIODIC_XON_EN_MASK;
3175 writel(val, port->base + MVPP2_GMAC_CTRL_1_REG);
3176
3177 return 0;
3178}
3179
3180static void gop_xlg_2_gig_mac_cfg(struct mvpp2_port *port)
3181{
3182 u32 val;
3183
3184 /* relevant only for MAC0 (XLG0 and GMAC0) */
3185 if (port->gop_id > 0)
3186 return;
3187
3188 /* configure 1Gig MAC mode */
3189 val = readl(port->base + MVPP22_XLG_CTRL3_REG);
3190 val &= ~MVPP22_XLG_CTRL3_MACMODESELECT_MASK;
3191 val |= MVPP22_XLG_CTRL3_MACMODESELECT_GMAC;
3192 writel(val, port->base + MVPP22_XLG_CTRL3_REG);
3193}
3194
3195static int gop_gpcs_reset(struct mvpp2_port *port, int reset)
3196{
3197 u32 val;
3198
3199 val = readl(port->base + MVPP2_GMAC_CTRL_2_REG);
3200 if (reset)
3201 val &= ~MVPP2_GMAC_SGMII_MODE_MASK;
3202 else
3203 val |= MVPP2_GMAC_SGMII_MODE_MASK;
3204 writel(val, port->base + MVPP2_GMAC_CTRL_2_REG);
3205
3206 return 0;
3207}
3208
Stefan Roese01647642017-03-22 15:09:38 +01003209/* Set the internal mux's to the required PCS in the PI */
3210static int gop_xpcs_mode(struct mvpp2_port *port, int num_of_lanes)
3211{
3212 u32 val;
3213 int lane;
3214
3215 switch (num_of_lanes) {
3216 case 1:
3217 lane = 0;
3218 break;
3219 case 2:
3220 lane = 1;
3221 break;
3222 case 4:
3223 lane = 2;
3224 break;
3225 default:
3226 return -1;
3227 }
3228
3229 /* configure XG MAC mode */
3230 val = readl(port->priv->xpcs_base + MVPP22_XPCS_GLOBAL_CFG_0_REG);
Stefan Chulskia27adcb2017-04-06 15:39:08 +02003231 val &= ~MVPP22_XPCS_PCSMODE_MASK;
Stefan Roese01647642017-03-22 15:09:38 +01003232 val &= ~MVPP22_XPCS_LANEACTIVE_MASK;
3233 val |= (2 * lane) << MVPP22_XPCS_LANEACTIVE_OFFS;
3234 writel(val, port->priv->xpcs_base + MVPP22_XPCS_GLOBAL_CFG_0_REG);
3235
3236 return 0;
3237}
3238
3239static int gop_mpcs_mode(struct mvpp2_port *port)
3240{
3241 u32 val;
3242
3243 /* configure PCS40G COMMON CONTROL */
3244 val = readl(port->priv->mpcs_base + PCS40G_COMMON_CONTROL);
3245 val &= ~FORWARD_ERROR_CORRECTION_MASK;
3246 writel(val, port->priv->mpcs_base + PCS40G_COMMON_CONTROL);
3247
3248 /* configure PCS CLOCK RESET */
3249 val = readl(port->priv->mpcs_base + PCS_CLOCK_RESET);
3250 val &= ~CLK_DIVISION_RATIO_MASK;
3251 val |= 1 << CLK_DIVISION_RATIO_OFFS;
3252 writel(val, port->priv->mpcs_base + PCS_CLOCK_RESET);
3253
3254 val &= ~CLK_DIV_PHASE_SET_MASK;
3255 val |= MAC_CLK_RESET_MASK;
3256 val |= RX_SD_CLK_RESET_MASK;
3257 val |= TX_SD_CLK_RESET_MASK;
3258 writel(val, port->priv->mpcs_base + PCS_CLOCK_RESET);
3259
3260 return 0;
3261}
3262
3263/* Set the internal mux's to the required MAC in the GOP */
3264static int gop_xlg_mac_mode_cfg(struct mvpp2_port *port, int num_of_act_lanes)
3265{
3266 u32 val;
3267
3268 /* configure 10G MAC mode */
3269 val = readl(port->base + MVPP22_XLG_CTRL0_REG);
3270 val |= MVPP22_XLG_RX_FC_EN;
3271 writel(val, port->base + MVPP22_XLG_CTRL0_REG);
3272
3273 val = readl(port->base + MVPP22_XLG_CTRL3_REG);
3274 val &= ~MVPP22_XLG_CTRL3_MACMODESELECT_MASK;
3275 val |= MVPP22_XLG_CTRL3_MACMODESELECT_10GMAC;
3276 writel(val, port->base + MVPP22_XLG_CTRL3_REG);
3277
3278 /* read - modify - write */
3279 val = readl(port->base + MVPP22_XLG_CTRL4_REG);
3280 val &= ~MVPP22_XLG_MODE_DMA_1G;
3281 val |= MVPP22_XLG_FORWARD_PFC_EN;
3282 val |= MVPP22_XLG_FORWARD_802_3X_FC_EN;
3283 val &= ~MVPP22_XLG_EN_IDLE_CHECK_FOR_LINK;
3284 writel(val, port->base + MVPP22_XLG_CTRL4_REG);
3285
3286 /* Jumbo frame support: 0x1400 * 2 = 0x2800 bytes */
3287 val = readl(port->base + MVPP22_XLG_CTRL1_REG);
3288 val &= ~MVPP22_XLG_MAX_RX_SIZE_MASK;
3289 val |= 0x1400 << MVPP22_XLG_MAX_RX_SIZE_OFFS;
3290 writel(val, port->base + MVPP22_XLG_CTRL1_REG);
3291
3292 /* unmask link change interrupt */
3293 val = readl(port->base + MVPP22_XLG_INTERRUPT_MASK_REG);
3294 val |= MVPP22_XLG_INTERRUPT_LINK_CHANGE;
3295 val |= 1; /* unmask summary bit */
3296 writel(val, port->base + MVPP22_XLG_INTERRUPT_MASK_REG);
3297
3298 return 0;
3299}
3300
3301/* Set PCS to reset or exit from reset */
3302static int gop_xpcs_reset(struct mvpp2_port *port, int reset)
3303{
3304 u32 val;
3305
3306 /* read - modify - write */
3307 val = readl(port->priv->xpcs_base + MVPP22_XPCS_GLOBAL_CFG_0_REG);
3308 if (reset)
3309 val &= ~MVPP22_XPCS_PCSRESET;
3310 else
3311 val |= MVPP22_XPCS_PCSRESET;
3312 writel(val, port->priv->xpcs_base + MVPP22_XPCS_GLOBAL_CFG_0_REG);
3313
3314 return 0;
3315}
3316
3317/* Set the MAC to reset or exit from reset */
3318static int gop_xlg_mac_reset(struct mvpp2_port *port, int reset)
3319{
3320 u32 val;
3321
3322 /* read - modify - write */
3323 val = readl(port->base + MVPP22_XLG_CTRL0_REG);
3324 if (reset)
3325 val &= ~MVPP22_XLG_MAC_RESETN;
3326 else
3327 val |= MVPP22_XLG_MAC_RESETN;
3328 writel(val, port->base + MVPP22_XLG_CTRL0_REG);
3329
3330 return 0;
3331}
3332
Stefan Roese40e749b2017-03-22 15:07:30 +01003333/*
3334 * gop_port_init
3335 *
3336 * Init physical port. Configures the port mode and all it's elements
3337 * accordingly.
3338 * Does not verify that the selected mode/port number is valid at the
3339 * core level.
3340 */
3341static int gop_port_init(struct mvpp2_port *port)
3342{
3343 int mac_num = port->gop_id;
Stefan Roese01647642017-03-22 15:09:38 +01003344 int num_of_act_lanes;
Stefan Roese40e749b2017-03-22 15:07:30 +01003345
3346 if (mac_num >= MVPP22_GOP_MAC_NUM) {
3347 netdev_err(NULL, "%s: illegal port number %d", __func__,
3348 mac_num);
3349 return -1;
3350 }
3351
3352 switch (port->phy_interface) {
3353 case PHY_INTERFACE_MODE_RGMII:
3354 case PHY_INTERFACE_MODE_RGMII_ID:
3355 gop_gmac_reset(port, 1);
3356
3357 /* configure PCS */
3358 gop_gpcs_mode_cfg(port, 0);
3359 gop_bypass_clk_cfg(port, 1);
3360
3361 /* configure MAC */
3362 gop_gmac_mode_cfg(port);
3363 /* pcs unreset */
3364 gop_gpcs_reset(port, 0);
3365
3366 /* mac unreset */
3367 gop_gmac_reset(port, 0);
3368 break;
3369
3370 case PHY_INTERFACE_MODE_SGMII:
3371 /* configure PCS */
3372 gop_gpcs_mode_cfg(port, 1);
3373
3374 /* configure MAC */
3375 gop_gmac_mode_cfg(port);
3376 /* select proper Mac mode */
3377 gop_xlg_2_gig_mac_cfg(port);
3378
3379 /* pcs unreset */
3380 gop_gpcs_reset(port, 0);
3381 /* mac unreset */
3382 gop_gmac_reset(port, 0);
3383 break;
3384
Stefan Roese01647642017-03-22 15:09:38 +01003385 case PHY_INTERFACE_MODE_SFI:
3386 num_of_act_lanes = 2;
3387 mac_num = 0;
3388 /* configure PCS */
3389 gop_xpcs_mode(port, num_of_act_lanes);
3390 gop_mpcs_mode(port);
3391 /* configure MAC */
3392 gop_xlg_mac_mode_cfg(port, num_of_act_lanes);
3393
3394 /* pcs unreset */
3395 gop_xpcs_reset(port, 0);
3396
3397 /* mac unreset */
3398 gop_xlg_mac_reset(port, 0);
3399 break;
3400
Stefan Roese40e749b2017-03-22 15:07:30 +01003401 default:
3402 netdev_err(NULL, "%s: Requested port mode (%d) not supported\n",
3403 __func__, port->phy_interface);
3404 return -1;
3405 }
3406
3407 return 0;
3408}
3409
Stefan Roese01647642017-03-22 15:09:38 +01003410static void gop_xlg_mac_port_enable(struct mvpp2_port *port, int enable)
3411{
3412 u32 val;
3413
3414 val = readl(port->base + MVPP22_XLG_CTRL0_REG);
3415 if (enable) {
3416 /* Enable port and MIB counters update */
3417 val |= MVPP22_XLG_PORT_EN;
3418 val &= ~MVPP22_XLG_MIBCNT_DIS;
3419 } else {
3420 /* Disable port */
3421 val &= ~MVPP22_XLG_PORT_EN;
3422 }
3423 writel(val, port->base + MVPP22_XLG_CTRL0_REG);
3424}
3425
Stefan Roese40e749b2017-03-22 15:07:30 +01003426static void gop_port_enable(struct mvpp2_port *port, int enable)
3427{
3428 switch (port->phy_interface) {
3429 case PHY_INTERFACE_MODE_RGMII:
3430 case PHY_INTERFACE_MODE_RGMII_ID:
3431 case PHY_INTERFACE_MODE_SGMII:
3432 if (enable)
3433 mvpp2_port_enable(port);
3434 else
3435 mvpp2_port_disable(port);
3436 break;
3437
Stefan Roese01647642017-03-22 15:09:38 +01003438 case PHY_INTERFACE_MODE_SFI:
3439 gop_xlg_mac_port_enable(port, enable);
3440
3441 break;
Stefan Roese40e749b2017-03-22 15:07:30 +01003442 default:
3443 netdev_err(NULL, "%s: Wrong port mode (%d)\n", __func__,
3444 port->phy_interface);
3445 return;
3446 }
3447}
3448
3449/* RFU1 functions */
3450static inline u32 gop_rfu1_read(struct mvpp2 *priv, u32 offset)
3451{
3452 return readl(priv->rfu1_base + offset);
3453}
3454
3455static inline void gop_rfu1_write(struct mvpp2 *priv, u32 offset, u32 data)
3456{
3457 writel(data, priv->rfu1_base + offset);
3458}
3459
3460static u32 mvpp2_netc_cfg_create(int gop_id, phy_interface_t phy_type)
3461{
3462 u32 val = 0;
3463
3464 if (gop_id == 2) {
3465 if (phy_type == PHY_INTERFACE_MODE_SGMII)
3466 val |= MV_NETC_GE_MAC2_SGMII;
3467 }
3468
3469 if (gop_id == 3) {
3470 if (phy_type == PHY_INTERFACE_MODE_SGMII)
3471 val |= MV_NETC_GE_MAC3_SGMII;
3472 else if (phy_type == PHY_INTERFACE_MODE_RGMII ||
3473 phy_type == PHY_INTERFACE_MODE_RGMII_ID)
3474 val |= MV_NETC_GE_MAC3_RGMII;
3475 }
3476
3477 return val;
3478}
3479
3480static void gop_netc_active_port(struct mvpp2 *priv, int gop_id, u32 val)
3481{
3482 u32 reg;
3483
3484 reg = gop_rfu1_read(priv, NETCOMP_PORTS_CONTROL_1_REG);
3485 reg &= ~(NETC_PORTS_ACTIVE_MASK(gop_id));
3486
3487 val <<= NETC_PORTS_ACTIVE_OFFSET(gop_id);
3488 val &= NETC_PORTS_ACTIVE_MASK(gop_id);
3489
3490 reg |= val;
3491
3492 gop_rfu1_write(priv, NETCOMP_PORTS_CONTROL_1_REG, reg);
3493}
3494
3495static void gop_netc_mii_mode(struct mvpp2 *priv, int gop_id, u32 val)
3496{
3497 u32 reg;
3498
3499 reg = gop_rfu1_read(priv, NETCOMP_CONTROL_0_REG);
3500 reg &= ~NETC_GBE_PORT1_MII_MODE_MASK;
3501
3502 val <<= NETC_GBE_PORT1_MII_MODE_OFFS;
3503 val &= NETC_GBE_PORT1_MII_MODE_MASK;
3504
3505 reg |= val;
3506
3507 gop_rfu1_write(priv, NETCOMP_CONTROL_0_REG, reg);
3508}
3509
3510static void gop_netc_gop_reset(struct mvpp2 *priv, u32 val)
3511{
3512 u32 reg;
3513
3514 reg = gop_rfu1_read(priv, GOP_SOFT_RESET_1_REG);
3515 reg &= ~NETC_GOP_SOFT_RESET_MASK;
3516
3517 val <<= NETC_GOP_SOFT_RESET_OFFS;
3518 val &= NETC_GOP_SOFT_RESET_MASK;
3519
3520 reg |= val;
3521
3522 gop_rfu1_write(priv, GOP_SOFT_RESET_1_REG, reg);
3523}
3524
3525static void gop_netc_gop_clock_logic_set(struct mvpp2 *priv, u32 val)
3526{
3527 u32 reg;
3528
3529 reg = gop_rfu1_read(priv, NETCOMP_PORTS_CONTROL_0_REG);
3530 reg &= ~NETC_CLK_DIV_PHASE_MASK;
3531
3532 val <<= NETC_CLK_DIV_PHASE_OFFS;
3533 val &= NETC_CLK_DIV_PHASE_MASK;
3534
3535 reg |= val;
3536
3537 gop_rfu1_write(priv, NETCOMP_PORTS_CONTROL_0_REG, reg);
3538}
3539
3540static void gop_netc_port_rf_reset(struct mvpp2 *priv, int gop_id, u32 val)
3541{
3542 u32 reg;
3543
3544 reg = gop_rfu1_read(priv, NETCOMP_PORTS_CONTROL_1_REG);
3545 reg &= ~(NETC_PORT_GIG_RF_RESET_MASK(gop_id));
3546
3547 val <<= NETC_PORT_GIG_RF_RESET_OFFS(gop_id);
3548 val &= NETC_PORT_GIG_RF_RESET_MASK(gop_id);
3549
3550 reg |= val;
3551
3552 gop_rfu1_write(priv, NETCOMP_PORTS_CONTROL_1_REG, reg);
3553}
3554
3555static void gop_netc_gbe_sgmii_mode_select(struct mvpp2 *priv, int gop_id,
3556 u32 val)
3557{
3558 u32 reg, mask, offset;
3559
3560 if (gop_id == 2) {
3561 mask = NETC_GBE_PORT0_SGMII_MODE_MASK;
3562 offset = NETC_GBE_PORT0_SGMII_MODE_OFFS;
3563 } else {
3564 mask = NETC_GBE_PORT1_SGMII_MODE_MASK;
3565 offset = NETC_GBE_PORT1_SGMII_MODE_OFFS;
3566 }
3567 reg = gop_rfu1_read(priv, NETCOMP_CONTROL_0_REG);
3568 reg &= ~mask;
3569
3570 val <<= offset;
3571 val &= mask;
3572
3573 reg |= val;
3574
3575 gop_rfu1_write(priv, NETCOMP_CONTROL_0_REG, reg);
3576}
3577
3578static void gop_netc_bus_width_select(struct mvpp2 *priv, u32 val)
3579{
3580 u32 reg;
3581
3582 reg = gop_rfu1_read(priv, NETCOMP_PORTS_CONTROL_0_REG);
3583 reg &= ~NETC_BUS_WIDTH_SELECT_MASK;
3584
3585 val <<= NETC_BUS_WIDTH_SELECT_OFFS;
3586 val &= NETC_BUS_WIDTH_SELECT_MASK;
3587
3588 reg |= val;
3589
3590 gop_rfu1_write(priv, NETCOMP_PORTS_CONTROL_0_REG, reg);
3591}
3592
3593static void gop_netc_sample_stages_timing(struct mvpp2 *priv, u32 val)
3594{
3595 u32 reg;
3596
3597 reg = gop_rfu1_read(priv, NETCOMP_PORTS_CONTROL_0_REG);
3598 reg &= ~NETC_GIG_RX_DATA_SAMPLE_MASK;
3599
3600 val <<= NETC_GIG_RX_DATA_SAMPLE_OFFS;
3601 val &= NETC_GIG_RX_DATA_SAMPLE_MASK;
3602
3603 reg |= val;
3604
3605 gop_rfu1_write(priv, NETCOMP_PORTS_CONTROL_0_REG, reg);
3606}
3607
3608static void gop_netc_mac_to_xgmii(struct mvpp2 *priv, int gop_id,
3609 enum mv_netc_phase phase)
3610{
3611 switch (phase) {
3612 case MV_NETC_FIRST_PHASE:
3613 /* Set Bus Width to HB mode = 1 */
3614 gop_netc_bus_width_select(priv, 1);
3615 /* Select RGMII mode */
3616 gop_netc_gbe_sgmii_mode_select(priv, gop_id, MV_NETC_GBE_XMII);
3617 break;
3618
3619 case MV_NETC_SECOND_PHASE:
3620 /* De-assert the relevant port HB reset */
3621 gop_netc_port_rf_reset(priv, gop_id, 1);
3622 break;
3623 }
3624}
3625
3626static void gop_netc_mac_to_sgmii(struct mvpp2 *priv, int gop_id,
3627 enum mv_netc_phase phase)
3628{
3629 switch (phase) {
3630 case MV_NETC_FIRST_PHASE:
3631 /* Set Bus Width to HB mode = 1 */
3632 gop_netc_bus_width_select(priv, 1);
3633 /* Select SGMII mode */
3634 if (gop_id >= 1) {
3635 gop_netc_gbe_sgmii_mode_select(priv, gop_id,
3636 MV_NETC_GBE_SGMII);
3637 }
3638
3639 /* Configure the sample stages */
3640 gop_netc_sample_stages_timing(priv, 0);
3641 /* Configure the ComPhy Selector */
3642 /* gop_netc_com_phy_selector_config(netComplex); */
3643 break;
3644
3645 case MV_NETC_SECOND_PHASE:
3646 /* De-assert the relevant port HB reset */
3647 gop_netc_port_rf_reset(priv, gop_id, 1);
3648 break;
3649 }
3650}
3651
3652static int gop_netc_init(struct mvpp2 *priv, enum mv_netc_phase phase)
3653{
3654 u32 c = priv->netc_config;
3655
3656 if (c & MV_NETC_GE_MAC2_SGMII)
3657 gop_netc_mac_to_sgmii(priv, 2, phase);
3658 else
3659 gop_netc_mac_to_xgmii(priv, 2, phase);
3660
3661 if (c & MV_NETC_GE_MAC3_SGMII) {
3662 gop_netc_mac_to_sgmii(priv, 3, phase);
3663 } else {
3664 gop_netc_mac_to_xgmii(priv, 3, phase);
3665 if (c & MV_NETC_GE_MAC3_RGMII)
3666 gop_netc_mii_mode(priv, 3, MV_NETC_GBE_RGMII);
3667 else
3668 gop_netc_mii_mode(priv, 3, MV_NETC_GBE_MII);
3669 }
3670
3671 /* Activate gop ports 0, 2, 3 */
3672 gop_netc_active_port(priv, 0, 1);
3673 gop_netc_active_port(priv, 2, 1);
3674 gop_netc_active_port(priv, 3, 1);
3675
3676 if (phase == MV_NETC_SECOND_PHASE) {
3677 /* Enable the GOP internal clock logic */
3678 gop_netc_gop_clock_logic_set(priv, 1);
3679 /* De-assert GOP unit reset */
3680 gop_netc_gop_reset(priv, 1);
3681 }
3682
3683 return 0;
3684}
3685
Stefan Roese96c19042016-02-10 07:22:10 +01003686/* Set defaults to the MVPP2 port */
3687static void mvpp2_defaults_set(struct mvpp2_port *port)
3688{
3689 int tx_port_num, val, queue, ptxq, lrxq;
3690
Thomas Petazzoni58159ee2017-02-16 06:57:24 +01003691 if (port->priv->hw_version == MVPP21) {
3692 /* Configure port to loopback if needed */
3693 if (port->flags & MVPP2_F_LOOPBACK)
3694 mvpp2_port_loopback_set(port);
Stefan Roese96c19042016-02-10 07:22:10 +01003695
Thomas Petazzoni58159ee2017-02-16 06:57:24 +01003696 /* Update TX FIFO MIN Threshold */
3697 val = readl(port->base + MVPP2_GMAC_PORT_FIFO_CFG_1_REG);
3698 val &= ~MVPP2_GMAC_TX_FIFO_MIN_TH_ALL_MASK;
3699 /* Min. TX threshold must be less than minimal packet length */
3700 val |= MVPP2_GMAC_TX_FIFO_MIN_TH_MASK(64 - 4 - 2);
3701 writel(val, port->base + MVPP2_GMAC_PORT_FIFO_CFG_1_REG);
3702 }
Stefan Roese96c19042016-02-10 07:22:10 +01003703
3704 /* Disable Legacy WRR, Disable EJP, Release from reset */
3705 tx_port_num = mvpp2_egress_port(port);
3706 mvpp2_write(port->priv, MVPP2_TXP_SCHED_PORT_INDEX_REG,
3707 tx_port_num);
3708 mvpp2_write(port->priv, MVPP2_TXP_SCHED_CMD_1_REG, 0);
3709
3710 /* Close bandwidth for all queues */
3711 for (queue = 0; queue < MVPP2_MAX_TXQ; queue++) {
3712 ptxq = mvpp2_txq_phys(port->id, queue);
3713 mvpp2_write(port->priv,
3714 MVPP2_TXQ_SCHED_TOKEN_CNTR_REG(ptxq), 0);
3715 }
3716
3717 /* Set refill period to 1 usec, refill tokens
3718 * and bucket size to maximum
3719 */
3720 mvpp2_write(port->priv, MVPP2_TXP_SCHED_PERIOD_REG, 0xc8);
3721 val = mvpp2_read(port->priv, MVPP2_TXP_SCHED_REFILL_REG);
3722 val &= ~MVPP2_TXP_REFILL_PERIOD_ALL_MASK;
3723 val |= MVPP2_TXP_REFILL_PERIOD_MASK(1);
3724 val |= MVPP2_TXP_REFILL_TOKENS_ALL_MASK;
3725 mvpp2_write(port->priv, MVPP2_TXP_SCHED_REFILL_REG, val);
3726 val = MVPP2_TXP_TOKEN_SIZE_MAX;
3727 mvpp2_write(port->priv, MVPP2_TXP_SCHED_TOKEN_SIZE_REG, val);
3728
3729 /* Set MaximumLowLatencyPacketSize value to 256 */
3730 mvpp2_write(port->priv, MVPP2_RX_CTRL_REG(port->id),
3731 MVPP2_RX_USE_PSEUDO_FOR_CSUM_MASK |
3732 MVPP2_RX_LOW_LATENCY_PKT_SIZE(256));
3733
3734 /* Enable Rx cache snoop */
3735 for (lrxq = 0; lrxq < rxq_number; lrxq++) {
3736 queue = port->rxqs[lrxq]->id;
3737 val = mvpp2_read(port->priv, MVPP2_RXQ_CONFIG_REG(queue));
3738 val |= MVPP2_SNOOP_PKT_SIZE_MASK |
3739 MVPP2_SNOOP_BUF_HDR_MASK;
3740 mvpp2_write(port->priv, MVPP2_RXQ_CONFIG_REG(queue), val);
3741 }
3742}
3743
3744/* Enable/disable receiving packets */
3745static void mvpp2_ingress_enable(struct mvpp2_port *port)
3746{
3747 u32 val;
3748 int lrxq, queue;
3749
3750 for (lrxq = 0; lrxq < rxq_number; lrxq++) {
3751 queue = port->rxqs[lrxq]->id;
3752 val = mvpp2_read(port->priv, MVPP2_RXQ_CONFIG_REG(queue));
3753 val &= ~MVPP2_RXQ_DISABLE_MASK;
3754 mvpp2_write(port->priv, MVPP2_RXQ_CONFIG_REG(queue), val);
3755 }
3756}
3757
3758static void mvpp2_ingress_disable(struct mvpp2_port *port)
3759{
3760 u32 val;
3761 int lrxq, queue;
3762
3763 for (lrxq = 0; lrxq < rxq_number; lrxq++) {
3764 queue = port->rxqs[lrxq]->id;
3765 val = mvpp2_read(port->priv, MVPP2_RXQ_CONFIG_REG(queue));
3766 val |= MVPP2_RXQ_DISABLE_MASK;
3767 mvpp2_write(port->priv, MVPP2_RXQ_CONFIG_REG(queue), val);
3768 }
3769}
3770
3771/* Enable transmit via physical egress queue
3772 * - HW starts take descriptors from DRAM
3773 */
3774static void mvpp2_egress_enable(struct mvpp2_port *port)
3775{
3776 u32 qmap;
3777 int queue;
3778 int tx_port_num = mvpp2_egress_port(port);
3779
3780 /* Enable all initialized TXs. */
3781 qmap = 0;
3782 for (queue = 0; queue < txq_number; queue++) {
3783 struct mvpp2_tx_queue *txq = port->txqs[queue];
3784
3785 if (txq->descs != NULL)
3786 qmap |= (1 << queue);
3787 }
3788
3789 mvpp2_write(port->priv, MVPP2_TXP_SCHED_PORT_INDEX_REG, tx_port_num);
3790 mvpp2_write(port->priv, MVPP2_TXP_SCHED_Q_CMD_REG, qmap);
3791}
3792
3793/* Disable transmit via physical egress queue
3794 * - HW doesn't take descriptors from DRAM
3795 */
3796static void mvpp2_egress_disable(struct mvpp2_port *port)
3797{
3798 u32 reg_data;
3799 int delay;
3800 int tx_port_num = mvpp2_egress_port(port);
3801
3802 /* Issue stop command for active channels only */
3803 mvpp2_write(port->priv, MVPP2_TXP_SCHED_PORT_INDEX_REG, tx_port_num);
3804 reg_data = (mvpp2_read(port->priv, MVPP2_TXP_SCHED_Q_CMD_REG)) &
3805 MVPP2_TXP_SCHED_ENQ_MASK;
3806 if (reg_data != 0)
3807 mvpp2_write(port->priv, MVPP2_TXP_SCHED_Q_CMD_REG,
3808 (reg_data << MVPP2_TXP_SCHED_DISQ_OFFSET));
3809
3810 /* Wait for all Tx activity to terminate. */
3811 delay = 0;
3812 do {
3813 if (delay >= MVPP2_TX_DISABLE_TIMEOUT_MSEC) {
3814 netdev_warn(port->dev,
3815 "Tx stop timed out, status=0x%08x\n",
3816 reg_data);
3817 break;
3818 }
3819 mdelay(1);
3820 delay++;
3821
3822 /* Check port TX Command register that all
3823 * Tx queues are stopped
3824 */
3825 reg_data = mvpp2_read(port->priv, MVPP2_TXP_SCHED_Q_CMD_REG);
3826 } while (reg_data & MVPP2_TXP_SCHED_ENQ_MASK);
3827}
3828
3829/* Rx descriptors helper methods */
3830
3831/* Get number of Rx descriptors occupied by received packets */
3832static inline int
3833mvpp2_rxq_received(struct mvpp2_port *port, int rxq_id)
3834{
3835 u32 val = mvpp2_read(port->priv, MVPP2_RXQ_STATUS_REG(rxq_id));
3836
3837 return val & MVPP2_RXQ_OCCUPIED_MASK;
3838}
3839
3840/* Update Rx queue status with the number of occupied and available
3841 * Rx descriptor slots.
3842 */
3843static inline void
3844mvpp2_rxq_status_update(struct mvpp2_port *port, int rxq_id,
3845 int used_count, int free_count)
3846{
3847 /* Decrement the number of used descriptors and increment count
3848 * increment the number of free descriptors.
3849 */
3850 u32 val = used_count | (free_count << MVPP2_RXQ_NUM_NEW_OFFSET);
3851
3852 mvpp2_write(port->priv, MVPP2_RXQ_STATUS_UPDATE_REG(rxq_id), val);
3853}
3854
3855/* Get pointer to next RX descriptor to be processed by SW */
3856static inline struct mvpp2_rx_desc *
3857mvpp2_rxq_next_desc_get(struct mvpp2_rx_queue *rxq)
3858{
3859 int rx_desc = rxq->next_desc_to_proc;
3860
3861 rxq->next_desc_to_proc = MVPP2_QUEUE_NEXT_DESC(rxq, rx_desc);
3862 prefetch(rxq->descs + rxq->next_desc_to_proc);
3863 return rxq->descs + rx_desc;
3864}
3865
3866/* Set rx queue offset */
3867static void mvpp2_rxq_offset_set(struct mvpp2_port *port,
3868 int prxq, int offset)
3869{
3870 u32 val;
3871
3872 /* Convert offset from bytes to units of 32 bytes */
3873 offset = offset >> 5;
3874
3875 val = mvpp2_read(port->priv, MVPP2_RXQ_CONFIG_REG(prxq));
3876 val &= ~MVPP2_RXQ_PACKET_OFFSET_MASK;
3877
3878 /* Offset is in */
3879 val |= ((offset << MVPP2_RXQ_PACKET_OFFSET_OFFS) &
3880 MVPP2_RXQ_PACKET_OFFSET_MASK);
3881
3882 mvpp2_write(port->priv, MVPP2_RXQ_CONFIG_REG(prxq), val);
3883}
3884
3885/* Obtain BM cookie information from descriptor */
Thomas Petazzonifb3a7bb2017-02-15 15:35:00 +01003886static u32 mvpp2_bm_cookie_build(struct mvpp2_port *port,
3887 struct mvpp2_rx_desc *rx_desc)
Stefan Roese96c19042016-02-10 07:22:10 +01003888{
Stefan Roese96c19042016-02-10 07:22:10 +01003889 int cpu = smp_processor_id();
Thomas Petazzonifb3a7bb2017-02-15 15:35:00 +01003890 int pool;
3891
3892 pool = (mvpp2_rxdesc_status_get(port, rx_desc) &
3893 MVPP2_RXD_BM_POOL_ID_MASK) >>
3894 MVPP2_RXD_BM_POOL_ID_OFFS;
Stefan Roese96c19042016-02-10 07:22:10 +01003895
3896 return ((pool & 0xFF) << MVPP2_BM_COOKIE_POOL_OFFS) |
3897 ((cpu & 0xFF) << MVPP2_BM_COOKIE_CPU_OFFS);
3898}
3899
3900/* Tx descriptors helper methods */
3901
3902/* Get number of Tx descriptors waiting to be transmitted by HW */
3903static int mvpp2_txq_pend_desc_num_get(struct mvpp2_port *port,
3904 struct mvpp2_tx_queue *txq)
3905{
3906 u32 val;
3907
3908 mvpp2_write(port->priv, MVPP2_TXQ_NUM_REG, txq->id);
3909 val = mvpp2_read(port->priv, MVPP2_TXQ_PENDING_REG);
3910
3911 return val & MVPP2_TXQ_PENDING_MASK;
3912}
3913
3914/* Get pointer to next Tx descriptor to be processed (send) by HW */
3915static struct mvpp2_tx_desc *
3916mvpp2_txq_next_desc_get(struct mvpp2_tx_queue *txq)
3917{
3918 int tx_desc = txq->next_desc_to_proc;
3919
3920 txq->next_desc_to_proc = MVPP2_QUEUE_NEXT_DESC(txq, tx_desc);
3921 return txq->descs + tx_desc;
3922}
3923
3924/* Update HW with number of aggregated Tx descriptors to be sent */
3925static void mvpp2_aggr_txq_pend_desc_add(struct mvpp2_port *port, int pending)
3926{
3927 /* aggregated access - relevant TXQ number is written in TX desc */
3928 mvpp2_write(port->priv, MVPP2_AGGR_TXQ_UPDATE_REG, pending);
3929}
3930
3931/* Get number of sent descriptors and decrement counter.
3932 * The number of sent descriptors is returned.
3933 * Per-CPU access
3934 */
3935static inline int mvpp2_txq_sent_desc_proc(struct mvpp2_port *port,
3936 struct mvpp2_tx_queue *txq)
3937{
3938 u32 val;
3939
3940 /* Reading status reg resets transmitted descriptor counter */
3941 val = mvpp2_read(port->priv, MVPP2_TXQ_SENT_REG(txq->id));
3942
3943 return (val & MVPP2_TRANSMITTED_COUNT_MASK) >>
3944 MVPP2_TRANSMITTED_COUNT_OFFSET;
3945}
3946
3947static void mvpp2_txq_sent_counter_clear(void *arg)
3948{
3949 struct mvpp2_port *port = arg;
3950 int queue;
3951
3952 for (queue = 0; queue < txq_number; queue++) {
3953 int id = port->txqs[queue]->id;
3954
3955 mvpp2_read(port->priv, MVPP2_TXQ_SENT_REG(id));
3956 }
3957}
3958
3959/* Set max sizes for Tx queues */
3960static void mvpp2_txp_max_tx_size_set(struct mvpp2_port *port)
3961{
3962 u32 val, size, mtu;
3963 int txq, tx_port_num;
3964
3965 mtu = port->pkt_size * 8;
3966 if (mtu > MVPP2_TXP_MTU_MAX)
3967 mtu = MVPP2_TXP_MTU_MAX;
3968
3969 /* WA for wrong Token bucket update: Set MTU value = 3*real MTU value */
3970 mtu = 3 * mtu;
3971
3972 /* Indirect access to registers */
3973 tx_port_num = mvpp2_egress_port(port);
3974 mvpp2_write(port->priv, MVPP2_TXP_SCHED_PORT_INDEX_REG, tx_port_num);
3975
3976 /* Set MTU */
3977 val = mvpp2_read(port->priv, MVPP2_TXP_SCHED_MTU_REG);
3978 val &= ~MVPP2_TXP_MTU_MAX;
3979 val |= mtu;
3980 mvpp2_write(port->priv, MVPP2_TXP_SCHED_MTU_REG, val);
3981
3982 /* TXP token size and all TXQs token size must be larger that MTU */
3983 val = mvpp2_read(port->priv, MVPP2_TXP_SCHED_TOKEN_SIZE_REG);
3984 size = val & MVPP2_TXP_TOKEN_SIZE_MAX;
3985 if (size < mtu) {
3986 size = mtu;
3987 val &= ~MVPP2_TXP_TOKEN_SIZE_MAX;
3988 val |= size;
3989 mvpp2_write(port->priv, MVPP2_TXP_SCHED_TOKEN_SIZE_REG, val);
3990 }
3991
3992 for (txq = 0; txq < txq_number; txq++) {
3993 val = mvpp2_read(port->priv,
3994 MVPP2_TXQ_SCHED_TOKEN_SIZE_REG(txq));
3995 size = val & MVPP2_TXQ_TOKEN_SIZE_MAX;
3996
3997 if (size < mtu) {
3998 size = mtu;
3999 val &= ~MVPP2_TXQ_TOKEN_SIZE_MAX;
4000 val |= size;
4001 mvpp2_write(port->priv,
4002 MVPP2_TXQ_SCHED_TOKEN_SIZE_REG(txq),
4003 val);
4004 }
4005 }
4006}
4007
4008/* Free Tx queue skbuffs */
4009static void mvpp2_txq_bufs_free(struct mvpp2_port *port,
4010 struct mvpp2_tx_queue *txq,
4011 struct mvpp2_txq_pcpu *txq_pcpu, int num)
4012{
4013 int i;
4014
4015 for (i = 0; i < num; i++)
4016 mvpp2_txq_inc_get(txq_pcpu);
4017}
4018
4019static inline struct mvpp2_rx_queue *mvpp2_get_rx_queue(struct mvpp2_port *port,
4020 u32 cause)
4021{
4022 int queue = fls(cause) - 1;
4023
4024 return port->rxqs[queue];
4025}
4026
4027static inline struct mvpp2_tx_queue *mvpp2_get_tx_queue(struct mvpp2_port *port,
4028 u32 cause)
4029{
4030 int queue = fls(cause) - 1;
4031
4032 return port->txqs[queue];
4033}
4034
4035/* Rx/Tx queue initialization/cleanup methods */
4036
4037/* Allocate and initialize descriptors for aggr TXQ */
4038static int mvpp2_aggr_txq_init(struct udevice *dev,
4039 struct mvpp2_tx_queue *aggr_txq,
4040 int desc_num, int cpu,
4041 struct mvpp2 *priv)
4042{
Thomas Petazzoni7f215c72017-02-20 11:36:57 +01004043 u32 txq_dma;
4044
Stefan Roese96c19042016-02-10 07:22:10 +01004045 /* Allocate memory for TX descriptors */
4046 aggr_txq->descs = buffer_loc.aggr_tx_descs;
Thomas Petazzonic49aff22017-02-20 10:27:51 +01004047 aggr_txq->descs_dma = (dma_addr_t)buffer_loc.aggr_tx_descs;
Stefan Roese96c19042016-02-10 07:22:10 +01004048 if (!aggr_txq->descs)
4049 return -ENOMEM;
4050
4051 /* Make sure descriptor address is cache line size aligned */
4052 BUG_ON(aggr_txq->descs !=
4053 PTR_ALIGN(aggr_txq->descs, MVPP2_CPU_D_CACHE_LINE_SIZE));
4054
4055 aggr_txq->last_desc = aggr_txq->size - 1;
4056
4057 /* Aggr TXQ no reset WA */
4058 aggr_txq->next_desc_to_proc = mvpp2_read(priv,
4059 MVPP2_AGGR_TXQ_INDEX_REG(cpu));
4060
Thomas Petazzoni7f215c72017-02-20 11:36:57 +01004061 /* Set Tx descriptors queue starting address indirect
4062 * access
4063 */
4064 if (priv->hw_version == MVPP21)
4065 txq_dma = aggr_txq->descs_dma;
4066 else
4067 txq_dma = aggr_txq->descs_dma >>
4068 MVPP22_AGGR_TXQ_DESC_ADDR_OFFS;
4069
4070 mvpp2_write(priv, MVPP2_AGGR_TXQ_DESC_ADDR_REG(cpu), txq_dma);
Stefan Roese96c19042016-02-10 07:22:10 +01004071 mvpp2_write(priv, MVPP2_AGGR_TXQ_DESC_SIZE_REG(cpu), desc_num);
4072
4073 return 0;
4074}
4075
4076/* Create a specified Rx queue */
4077static int mvpp2_rxq_init(struct mvpp2_port *port,
4078 struct mvpp2_rx_queue *rxq)
4079
4080{
Thomas Petazzoni7f215c72017-02-20 11:36:57 +01004081 u32 rxq_dma;
4082
Stefan Roese96c19042016-02-10 07:22:10 +01004083 rxq->size = port->rx_ring_size;
4084
4085 /* Allocate memory for RX descriptors */
4086 rxq->descs = buffer_loc.rx_descs;
Thomas Petazzonic49aff22017-02-20 10:27:51 +01004087 rxq->descs_dma = (dma_addr_t)buffer_loc.rx_descs;
Stefan Roese96c19042016-02-10 07:22:10 +01004088 if (!rxq->descs)
4089 return -ENOMEM;
4090
4091 BUG_ON(rxq->descs !=
4092 PTR_ALIGN(rxq->descs, MVPP2_CPU_D_CACHE_LINE_SIZE));
4093
4094 rxq->last_desc = rxq->size - 1;
4095
4096 /* Zero occupied and non-occupied counters - direct access */
4097 mvpp2_write(port->priv, MVPP2_RXQ_STATUS_REG(rxq->id), 0);
4098
4099 /* Set Rx descriptors queue starting address - indirect access */
4100 mvpp2_write(port->priv, MVPP2_RXQ_NUM_REG, rxq->id);
Thomas Petazzoni7f215c72017-02-20 11:36:57 +01004101 if (port->priv->hw_version == MVPP21)
4102 rxq_dma = rxq->descs_dma;
4103 else
4104 rxq_dma = rxq->descs_dma >> MVPP22_DESC_ADDR_OFFS;
4105 mvpp2_write(port->priv, MVPP2_RXQ_DESC_ADDR_REG, rxq_dma);
Stefan Roese96c19042016-02-10 07:22:10 +01004106 mvpp2_write(port->priv, MVPP2_RXQ_DESC_SIZE_REG, rxq->size);
4107 mvpp2_write(port->priv, MVPP2_RXQ_INDEX_REG, 0);
4108
4109 /* Set Offset */
4110 mvpp2_rxq_offset_set(port, rxq->id, NET_SKB_PAD);
4111
4112 /* Add number of descriptors ready for receiving packets */
4113 mvpp2_rxq_status_update(port, rxq->id, 0, rxq->size);
4114
4115 return 0;
4116}
4117
4118/* Push packets received by the RXQ to BM pool */
4119static void mvpp2_rxq_drop_pkts(struct mvpp2_port *port,
4120 struct mvpp2_rx_queue *rxq)
4121{
4122 int rx_received, i;
4123
4124 rx_received = mvpp2_rxq_received(port, rxq->id);
4125 if (!rx_received)
4126 return;
4127
4128 for (i = 0; i < rx_received; i++) {
4129 struct mvpp2_rx_desc *rx_desc = mvpp2_rxq_next_desc_get(rxq);
Thomas Petazzonifb3a7bb2017-02-15 15:35:00 +01004130 u32 bm = mvpp2_bm_cookie_build(port, rx_desc);
Stefan Roese96c19042016-02-10 07:22:10 +01004131
Thomas Petazzonifb3a7bb2017-02-15 15:35:00 +01004132 mvpp2_pool_refill(port, bm,
4133 mvpp2_rxdesc_dma_addr_get(port, rx_desc),
4134 mvpp2_rxdesc_cookie_get(port, rx_desc));
Stefan Roese96c19042016-02-10 07:22:10 +01004135 }
4136 mvpp2_rxq_status_update(port, rxq->id, rx_received, rx_received);
4137}
4138
4139/* Cleanup Rx queue */
4140static void mvpp2_rxq_deinit(struct mvpp2_port *port,
4141 struct mvpp2_rx_queue *rxq)
4142{
4143 mvpp2_rxq_drop_pkts(port, rxq);
4144
4145 rxq->descs = NULL;
4146 rxq->last_desc = 0;
4147 rxq->next_desc_to_proc = 0;
Thomas Petazzonic49aff22017-02-20 10:27:51 +01004148 rxq->descs_dma = 0;
Stefan Roese96c19042016-02-10 07:22:10 +01004149
4150 /* Clear Rx descriptors queue starting address and size;
4151 * free descriptor number
4152 */
4153 mvpp2_write(port->priv, MVPP2_RXQ_STATUS_REG(rxq->id), 0);
4154 mvpp2_write(port->priv, MVPP2_RXQ_NUM_REG, rxq->id);
4155 mvpp2_write(port->priv, MVPP2_RXQ_DESC_ADDR_REG, 0);
4156 mvpp2_write(port->priv, MVPP2_RXQ_DESC_SIZE_REG, 0);
4157}
4158
4159/* Create and initialize a Tx queue */
4160static int mvpp2_txq_init(struct mvpp2_port *port,
4161 struct mvpp2_tx_queue *txq)
4162{
4163 u32 val;
4164 int cpu, desc, desc_per_txq, tx_port_num;
4165 struct mvpp2_txq_pcpu *txq_pcpu;
4166
4167 txq->size = port->tx_ring_size;
4168
4169 /* Allocate memory for Tx descriptors */
4170 txq->descs = buffer_loc.tx_descs;
Thomas Petazzonic49aff22017-02-20 10:27:51 +01004171 txq->descs_dma = (dma_addr_t)buffer_loc.tx_descs;
Stefan Roese96c19042016-02-10 07:22:10 +01004172 if (!txq->descs)
4173 return -ENOMEM;
4174
4175 /* Make sure descriptor address is cache line size aligned */
4176 BUG_ON(txq->descs !=
4177 PTR_ALIGN(txq->descs, MVPP2_CPU_D_CACHE_LINE_SIZE));
4178
4179 txq->last_desc = txq->size - 1;
4180
4181 /* Set Tx descriptors queue starting address - indirect access */
4182 mvpp2_write(port->priv, MVPP2_TXQ_NUM_REG, txq->id);
Thomas Petazzonic49aff22017-02-20 10:27:51 +01004183 mvpp2_write(port->priv, MVPP2_TXQ_DESC_ADDR_REG, txq->descs_dma);
Stefan Roese96c19042016-02-10 07:22:10 +01004184 mvpp2_write(port->priv, MVPP2_TXQ_DESC_SIZE_REG, txq->size &
4185 MVPP2_TXQ_DESC_SIZE_MASK);
4186 mvpp2_write(port->priv, MVPP2_TXQ_INDEX_REG, 0);
4187 mvpp2_write(port->priv, MVPP2_TXQ_RSVD_CLR_REG,
4188 txq->id << MVPP2_TXQ_RSVD_CLR_OFFSET);
4189 val = mvpp2_read(port->priv, MVPP2_TXQ_PENDING_REG);
4190 val &= ~MVPP2_TXQ_PENDING_MASK;
4191 mvpp2_write(port->priv, MVPP2_TXQ_PENDING_REG, val);
4192
4193 /* Calculate base address in prefetch buffer. We reserve 16 descriptors
4194 * for each existing TXQ.
4195 * TCONTS for PON port must be continuous from 0 to MVPP2_MAX_TCONT
4196 * GBE ports assumed to be continious from 0 to MVPP2_MAX_PORTS
4197 */
4198 desc_per_txq = 16;
4199 desc = (port->id * MVPP2_MAX_TXQ * desc_per_txq) +
4200 (txq->log_id * desc_per_txq);
4201
4202 mvpp2_write(port->priv, MVPP2_TXQ_PREF_BUF_REG,
4203 MVPP2_PREF_BUF_PTR(desc) | MVPP2_PREF_BUF_SIZE_16 |
Thomas Petazzoni5555f072017-02-16 08:03:37 +01004204 MVPP2_PREF_BUF_THRESH(desc_per_txq / 2));
Stefan Roese96c19042016-02-10 07:22:10 +01004205
4206 /* WRR / EJP configuration - indirect access */
4207 tx_port_num = mvpp2_egress_port(port);
4208 mvpp2_write(port->priv, MVPP2_TXP_SCHED_PORT_INDEX_REG, tx_port_num);
4209
4210 val = mvpp2_read(port->priv, MVPP2_TXQ_SCHED_REFILL_REG(txq->log_id));
4211 val &= ~MVPP2_TXQ_REFILL_PERIOD_ALL_MASK;
4212 val |= MVPP2_TXQ_REFILL_PERIOD_MASK(1);
4213 val |= MVPP2_TXQ_REFILL_TOKENS_ALL_MASK;
4214 mvpp2_write(port->priv, MVPP2_TXQ_SCHED_REFILL_REG(txq->log_id), val);
4215
4216 val = MVPP2_TXQ_TOKEN_SIZE_MAX;
4217 mvpp2_write(port->priv, MVPP2_TXQ_SCHED_TOKEN_SIZE_REG(txq->log_id),
4218 val);
4219
4220 for_each_present_cpu(cpu) {
4221 txq_pcpu = per_cpu_ptr(txq->pcpu, cpu);
4222 txq_pcpu->size = txq->size;
4223 }
4224
4225 return 0;
4226}
4227
4228/* Free allocated TXQ resources */
4229static void mvpp2_txq_deinit(struct mvpp2_port *port,
4230 struct mvpp2_tx_queue *txq)
4231{
4232 txq->descs = NULL;
4233 txq->last_desc = 0;
4234 txq->next_desc_to_proc = 0;
Thomas Petazzonic49aff22017-02-20 10:27:51 +01004235 txq->descs_dma = 0;
Stefan Roese96c19042016-02-10 07:22:10 +01004236
4237 /* Set minimum bandwidth for disabled TXQs */
4238 mvpp2_write(port->priv, MVPP2_TXQ_SCHED_TOKEN_CNTR_REG(txq->id), 0);
4239
4240 /* Set Tx descriptors queue starting address and size */
4241 mvpp2_write(port->priv, MVPP2_TXQ_NUM_REG, txq->id);
4242 mvpp2_write(port->priv, MVPP2_TXQ_DESC_ADDR_REG, 0);
4243 mvpp2_write(port->priv, MVPP2_TXQ_DESC_SIZE_REG, 0);
4244}
4245
4246/* Cleanup Tx ports */
4247static void mvpp2_txq_clean(struct mvpp2_port *port, struct mvpp2_tx_queue *txq)
4248{
4249 struct mvpp2_txq_pcpu *txq_pcpu;
4250 int delay, pending, cpu;
4251 u32 val;
4252
4253 mvpp2_write(port->priv, MVPP2_TXQ_NUM_REG, txq->id);
4254 val = mvpp2_read(port->priv, MVPP2_TXQ_PREF_BUF_REG);
4255 val |= MVPP2_TXQ_DRAIN_EN_MASK;
4256 mvpp2_write(port->priv, MVPP2_TXQ_PREF_BUF_REG, val);
4257
4258 /* The napi queue has been stopped so wait for all packets
4259 * to be transmitted.
4260 */
4261 delay = 0;
4262 do {
4263 if (delay >= MVPP2_TX_PENDING_TIMEOUT_MSEC) {
4264 netdev_warn(port->dev,
4265 "port %d: cleaning queue %d timed out\n",
4266 port->id, txq->log_id);
4267 break;
4268 }
4269 mdelay(1);
4270 delay++;
4271
4272 pending = mvpp2_txq_pend_desc_num_get(port, txq);
4273 } while (pending);
4274
4275 val &= ~MVPP2_TXQ_DRAIN_EN_MASK;
4276 mvpp2_write(port->priv, MVPP2_TXQ_PREF_BUF_REG, val);
4277
4278 for_each_present_cpu(cpu) {
4279 txq_pcpu = per_cpu_ptr(txq->pcpu, cpu);
4280
4281 /* Release all packets */
4282 mvpp2_txq_bufs_free(port, txq, txq_pcpu, txq_pcpu->count);
4283
4284 /* Reset queue */
4285 txq_pcpu->count = 0;
4286 txq_pcpu->txq_put_index = 0;
4287 txq_pcpu->txq_get_index = 0;
4288 }
4289}
4290
4291/* Cleanup all Tx queues */
4292static void mvpp2_cleanup_txqs(struct mvpp2_port *port)
4293{
4294 struct mvpp2_tx_queue *txq;
4295 int queue;
4296 u32 val;
4297
4298 val = mvpp2_read(port->priv, MVPP2_TX_PORT_FLUSH_REG);
4299
4300 /* Reset Tx ports and delete Tx queues */
4301 val |= MVPP2_TX_PORT_FLUSH_MASK(port->id);
4302 mvpp2_write(port->priv, MVPP2_TX_PORT_FLUSH_REG, val);
4303
4304 for (queue = 0; queue < txq_number; queue++) {
4305 txq = port->txqs[queue];
4306 mvpp2_txq_clean(port, txq);
4307 mvpp2_txq_deinit(port, txq);
4308 }
4309
4310 mvpp2_txq_sent_counter_clear(port);
4311
4312 val &= ~MVPP2_TX_PORT_FLUSH_MASK(port->id);
4313 mvpp2_write(port->priv, MVPP2_TX_PORT_FLUSH_REG, val);
4314}
4315
4316/* Cleanup all Rx queues */
4317static void mvpp2_cleanup_rxqs(struct mvpp2_port *port)
4318{
4319 int queue;
4320
4321 for (queue = 0; queue < rxq_number; queue++)
4322 mvpp2_rxq_deinit(port, port->rxqs[queue]);
4323}
4324
4325/* Init all Rx queues for port */
4326static int mvpp2_setup_rxqs(struct mvpp2_port *port)
4327{
4328 int queue, err;
4329
4330 for (queue = 0; queue < rxq_number; queue++) {
4331 err = mvpp2_rxq_init(port, port->rxqs[queue]);
4332 if (err)
4333 goto err_cleanup;
4334 }
4335 return 0;
4336
4337err_cleanup:
4338 mvpp2_cleanup_rxqs(port);
4339 return err;
4340}
4341
4342/* Init all tx queues for port */
4343static int mvpp2_setup_txqs(struct mvpp2_port *port)
4344{
4345 struct mvpp2_tx_queue *txq;
4346 int queue, err;
4347
4348 for (queue = 0; queue < txq_number; queue++) {
4349 txq = port->txqs[queue];
4350 err = mvpp2_txq_init(port, txq);
4351 if (err)
4352 goto err_cleanup;
4353 }
4354
4355 mvpp2_txq_sent_counter_clear(port);
4356 return 0;
4357
4358err_cleanup:
4359 mvpp2_cleanup_txqs(port);
4360 return err;
4361}
4362
4363/* Adjust link */
4364static void mvpp2_link_event(struct mvpp2_port *port)
4365{
4366 struct phy_device *phydev = port->phy_dev;
4367 int status_change = 0;
4368 u32 val;
4369
4370 if (phydev->link) {
4371 if ((port->speed != phydev->speed) ||
4372 (port->duplex != phydev->duplex)) {
4373 u32 val;
4374
4375 val = readl(port->base + MVPP2_GMAC_AUTONEG_CONFIG);
4376 val &= ~(MVPP2_GMAC_CONFIG_MII_SPEED |
4377 MVPP2_GMAC_CONFIG_GMII_SPEED |
4378 MVPP2_GMAC_CONFIG_FULL_DUPLEX |
4379 MVPP2_GMAC_AN_SPEED_EN |
4380 MVPP2_GMAC_AN_DUPLEX_EN);
4381
4382 if (phydev->duplex)
4383 val |= MVPP2_GMAC_CONFIG_FULL_DUPLEX;
4384
4385 if (phydev->speed == SPEED_1000)
4386 val |= MVPP2_GMAC_CONFIG_GMII_SPEED;
4387 else if (phydev->speed == SPEED_100)
4388 val |= MVPP2_GMAC_CONFIG_MII_SPEED;
4389
4390 writel(val, port->base + MVPP2_GMAC_AUTONEG_CONFIG);
4391
4392 port->duplex = phydev->duplex;
4393 port->speed = phydev->speed;
4394 }
4395 }
4396
4397 if (phydev->link != port->link) {
4398 if (!phydev->link) {
4399 port->duplex = -1;
4400 port->speed = 0;
4401 }
4402
4403 port->link = phydev->link;
4404 status_change = 1;
4405 }
4406
4407 if (status_change) {
4408 if (phydev->link) {
4409 val = readl(port->base + MVPP2_GMAC_AUTONEG_CONFIG);
4410 val |= (MVPP2_GMAC_FORCE_LINK_PASS |
4411 MVPP2_GMAC_FORCE_LINK_DOWN);
4412 writel(val, port->base + MVPP2_GMAC_AUTONEG_CONFIG);
4413 mvpp2_egress_enable(port);
4414 mvpp2_ingress_enable(port);
4415 } else {
4416 mvpp2_ingress_disable(port);
4417 mvpp2_egress_disable(port);
4418 }
4419 }
4420}
4421
4422/* Main RX/TX processing routines */
4423
4424/* Display more error info */
4425static void mvpp2_rx_error(struct mvpp2_port *port,
4426 struct mvpp2_rx_desc *rx_desc)
4427{
Thomas Petazzonifb3a7bb2017-02-15 15:35:00 +01004428 u32 status = mvpp2_rxdesc_status_get(port, rx_desc);
4429 size_t sz = mvpp2_rxdesc_size_get(port, rx_desc);
Stefan Roese96c19042016-02-10 07:22:10 +01004430
4431 switch (status & MVPP2_RXD_ERR_CODE_MASK) {
4432 case MVPP2_RXD_ERR_CRC:
Thomas Petazzonifb3a7bb2017-02-15 15:35:00 +01004433 netdev_err(port->dev, "bad rx status %08x (crc error), size=%zu\n",
4434 status, sz);
Stefan Roese96c19042016-02-10 07:22:10 +01004435 break;
4436 case MVPP2_RXD_ERR_OVERRUN:
Thomas Petazzonifb3a7bb2017-02-15 15:35:00 +01004437 netdev_err(port->dev, "bad rx status %08x (overrun error), size=%zu\n",
4438 status, sz);
Stefan Roese96c19042016-02-10 07:22:10 +01004439 break;
4440 case MVPP2_RXD_ERR_RESOURCE:
Thomas Petazzonifb3a7bb2017-02-15 15:35:00 +01004441 netdev_err(port->dev, "bad rx status %08x (resource error), size=%zu\n",
4442 status, sz);
Stefan Roese96c19042016-02-10 07:22:10 +01004443 break;
4444 }
4445}
4446
4447/* Reuse skb if possible, or allocate a new skb and add it to BM pool */
4448static int mvpp2_rx_refill(struct mvpp2_port *port,
4449 struct mvpp2_bm_pool *bm_pool,
Thomas Petazzonic49aff22017-02-20 10:27:51 +01004450 u32 bm, dma_addr_t dma_addr)
Stefan Roese96c19042016-02-10 07:22:10 +01004451{
Thomas Petazzonic49aff22017-02-20 10:27:51 +01004452 mvpp2_pool_refill(port, bm, dma_addr, (unsigned long)dma_addr);
Stefan Roese96c19042016-02-10 07:22:10 +01004453 return 0;
4454}
4455
4456/* Set hw internals when starting port */
4457static void mvpp2_start_dev(struct mvpp2_port *port)
4458{
Stefan Chulskia27adcb2017-04-06 15:39:08 +02004459 switch (port->phy_interface) {
4460 case PHY_INTERFACE_MODE_RGMII:
4461 case PHY_INTERFACE_MODE_RGMII_ID:
4462 case PHY_INTERFACE_MODE_SGMII:
4463 mvpp2_gmac_max_rx_size_set(port);
4464 default:
4465 break;
4466 }
4467
Stefan Roese96c19042016-02-10 07:22:10 +01004468 mvpp2_txp_max_tx_size_set(port);
4469
Stefan Roese40e749b2017-03-22 15:07:30 +01004470 if (port->priv->hw_version == MVPP21)
4471 mvpp2_port_enable(port);
4472 else
4473 gop_port_enable(port, 1);
Stefan Roese96c19042016-02-10 07:22:10 +01004474}
4475
4476/* Set hw internals when stopping port */
4477static void mvpp2_stop_dev(struct mvpp2_port *port)
4478{
4479 /* Stop new packets from arriving to RXQs */
4480 mvpp2_ingress_disable(port);
4481
4482 mvpp2_egress_disable(port);
Stefan Roese40e749b2017-03-22 15:07:30 +01004483
4484 if (port->priv->hw_version == MVPP21)
4485 mvpp2_port_disable(port);
4486 else
4487 gop_port_enable(port, 0);
Stefan Roese96c19042016-02-10 07:22:10 +01004488}
4489
Stefan Chulskib261d1b2019-08-15 18:08:41 -04004490static void mvpp2_phy_connect(struct udevice *dev, struct mvpp2_port *port)
Stefan Roese96c19042016-02-10 07:22:10 +01004491{
4492 struct phy_device *phy_dev;
4493
4494 if (!port->init || port->link == 0) {
Nevo Hed5e975612019-08-15 18:08:44 -04004495 phy_dev = dm_mdio_phy_connect(port->mdio_dev, port->phyaddr,
4496 dev, port->phy_interface);
Grzegorz Jaszczyka531afd2019-08-15 18:08:42 -04004497
4498 /*
4499 * If the phy doesn't match with any existing u-boot drivers the
4500 * phy framework will connect it to generic one which
4501 * uid == 0xffffffff. In this case act as if the phy wouldn't be
4502 * declared in dts. Otherwise in case of 3310 (for which the
4503 * driver doesn't exist) the link will not be correctly
4504 * detected. Removing phy entry from dts in case of 3310 is not
4505 * an option because it is required for the phy_fw_down
4506 * procedure.
4507 */
4508 if (phy_dev &&
4509 phy_dev->drv->uid == 0xffffffff) {/* Generic phy */
4510 netdev_warn(port->dev,
4511 "Marking phy as invalid, link will not be checked\n");
4512 /* set phy_addr to invalid value */
4513 port->phyaddr = PHY_MAX_ADDR;
4514 mvpp2_egress_enable(port);
4515 mvpp2_ingress_enable(port);
4516
4517 return;
4518 }
4519
Stefan Roese96c19042016-02-10 07:22:10 +01004520 port->phy_dev = phy_dev;
4521 if (!phy_dev) {
4522 netdev_err(port->dev, "cannot connect to phy\n");
Stefan Chulskib261d1b2019-08-15 18:08:41 -04004523 return;
Stefan Roese96c19042016-02-10 07:22:10 +01004524 }
4525 phy_dev->supported &= PHY_GBIT_FEATURES;
4526 phy_dev->advertising = phy_dev->supported;
4527
4528 port->phy_dev = phy_dev;
4529 port->link = 0;
4530 port->duplex = 0;
4531 port->speed = 0;
4532
4533 phy_config(phy_dev);
4534 phy_startup(phy_dev);
Stefan Chulskib261d1b2019-08-15 18:08:41 -04004535 if (!phy_dev->link)
Stefan Roese96c19042016-02-10 07:22:10 +01004536 printf("%s: No link\n", phy_dev->dev->name);
Stefan Chulskib261d1b2019-08-15 18:08:41 -04004537 else
4538 port->init = 1;
Stefan Roese96c19042016-02-10 07:22:10 +01004539 } else {
4540 mvpp2_egress_enable(port);
4541 mvpp2_ingress_enable(port);
4542 }
Stefan Roese96c19042016-02-10 07:22:10 +01004543}
4544
4545static int mvpp2_open(struct udevice *dev, struct mvpp2_port *port)
4546{
4547 unsigned char mac_bcast[ETH_ALEN] = {
4548 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
4549 int err;
4550
4551 err = mvpp2_prs_mac_da_accept(port->priv, port->id, mac_bcast, true);
4552 if (err) {
4553 netdev_err(dev, "mvpp2_prs_mac_da_accept BC failed\n");
4554 return err;
4555 }
4556 err = mvpp2_prs_mac_da_accept(port->priv, port->id,
4557 port->dev_addr, true);
4558 if (err) {
4559 netdev_err(dev, "mvpp2_prs_mac_da_accept MC failed\n");
4560 return err;
4561 }
4562 err = mvpp2_prs_def_flow(port);
4563 if (err) {
4564 netdev_err(dev, "mvpp2_prs_def_flow failed\n");
4565 return err;
4566 }
4567
4568 /* Allocate the Rx/Tx queues */
4569 err = mvpp2_setup_rxqs(port);
4570 if (err) {
4571 netdev_err(port->dev, "cannot allocate Rx queues\n");
4572 return err;
4573 }
4574
4575 err = mvpp2_setup_txqs(port);
4576 if (err) {
4577 netdev_err(port->dev, "cannot allocate Tx queues\n");
4578 return err;
4579 }
4580
Nevo Hed5e975612019-08-15 18:08:44 -04004581 if (port->phyaddr < PHY_MAX_ADDR) {
Stefan Chulskib261d1b2019-08-15 18:08:41 -04004582 mvpp2_phy_connect(dev, port);
Stefan Chulskia27adcb2017-04-06 15:39:08 +02004583 mvpp2_link_event(port);
4584 } else {
4585 mvpp2_egress_enable(port);
4586 mvpp2_ingress_enable(port);
4587 }
Stefan Roese96c19042016-02-10 07:22:10 +01004588
4589 mvpp2_start_dev(port);
4590
4591 return 0;
4592}
4593
4594/* No Device ops here in U-Boot */
4595
4596/* Driver initialization */
4597
4598static void mvpp2_port_power_up(struct mvpp2_port *port)
4599{
Thomas Petazzonicc2445f2017-02-20 11:42:51 +01004600 struct mvpp2 *priv = port->priv;
4601
Stefan Roese40e749b2017-03-22 15:07:30 +01004602 /* On PPv2.2 the GoP / interface configuration has already been done */
4603 if (priv->hw_version == MVPP21)
4604 mvpp2_port_mii_set(port);
Stefan Roese96c19042016-02-10 07:22:10 +01004605 mvpp2_port_periodic_xon_disable(port);
Thomas Petazzonicc2445f2017-02-20 11:42:51 +01004606 if (priv->hw_version == MVPP21)
4607 mvpp2_port_fc_adv_enable(port);
Stefan Roese96c19042016-02-10 07:22:10 +01004608 mvpp2_port_reset(port);
4609}
4610
4611/* Initialize port HW */
4612static int mvpp2_port_init(struct udevice *dev, struct mvpp2_port *port)
4613{
4614 struct mvpp2 *priv = port->priv;
4615 struct mvpp2_txq_pcpu *txq_pcpu;
4616 int queue, cpu, err;
4617
Thomas Petazzoni38a23282017-02-16 09:03:16 +01004618 if (port->first_rxq + rxq_number >
4619 MVPP2_MAX_PORTS * priv->max_port_rxqs)
Stefan Roese96c19042016-02-10 07:22:10 +01004620 return -EINVAL;
4621
4622 /* Disable port */
4623 mvpp2_egress_disable(port);
Stefan Roese40e749b2017-03-22 15:07:30 +01004624 if (priv->hw_version == MVPP21)
4625 mvpp2_port_disable(port);
4626 else
4627 gop_port_enable(port, 0);
Stefan Roese96c19042016-02-10 07:22:10 +01004628
4629 port->txqs = devm_kcalloc(dev, txq_number, sizeof(*port->txqs),
4630 GFP_KERNEL);
4631 if (!port->txqs)
4632 return -ENOMEM;
4633
4634 /* Associate physical Tx queues to this port and initialize.
4635 * The mapping is predefined.
4636 */
4637 for (queue = 0; queue < txq_number; queue++) {
4638 int queue_phy_id = mvpp2_txq_phys(port->id, queue);
4639 struct mvpp2_tx_queue *txq;
4640
4641 txq = devm_kzalloc(dev, sizeof(*txq), GFP_KERNEL);
4642 if (!txq)
4643 return -ENOMEM;
4644
4645 txq->pcpu = devm_kzalloc(dev, sizeof(struct mvpp2_txq_pcpu),
4646 GFP_KERNEL);
4647 if (!txq->pcpu)
4648 return -ENOMEM;
4649
4650 txq->id = queue_phy_id;
4651 txq->log_id = queue;
4652 txq->done_pkts_coal = MVPP2_TXDONE_COAL_PKTS_THRESH;
4653 for_each_present_cpu(cpu) {
4654 txq_pcpu = per_cpu_ptr(txq->pcpu, cpu);
4655 txq_pcpu->cpu = cpu;
4656 }
4657
4658 port->txqs[queue] = txq;
4659 }
4660
4661 port->rxqs = devm_kcalloc(dev, rxq_number, sizeof(*port->rxqs),
4662 GFP_KERNEL);
4663 if (!port->rxqs)
4664 return -ENOMEM;
4665
4666 /* Allocate and initialize Rx queue for this port */
4667 for (queue = 0; queue < rxq_number; queue++) {
4668 struct mvpp2_rx_queue *rxq;
4669
4670 /* Map physical Rx queue to port's logical Rx queue */
4671 rxq = devm_kzalloc(dev, sizeof(*rxq), GFP_KERNEL);
4672 if (!rxq)
4673 return -ENOMEM;
4674 /* Map this Rx queue to a physical queue */
4675 rxq->id = port->first_rxq + queue;
4676 rxq->port = port->id;
4677 rxq->logic_rxq = queue;
4678
4679 port->rxqs[queue] = rxq;
4680 }
4681
Stefan Roese96c19042016-02-10 07:22:10 +01004682
4683 /* Create Rx descriptor rings */
4684 for (queue = 0; queue < rxq_number; queue++) {
4685 struct mvpp2_rx_queue *rxq = port->rxqs[queue];
4686
4687 rxq->size = port->rx_ring_size;
4688 rxq->pkts_coal = MVPP2_RX_COAL_PKTS;
4689 rxq->time_coal = MVPP2_RX_COAL_USEC;
4690 }
4691
4692 mvpp2_ingress_disable(port);
4693
4694 /* Port default configuration */
4695 mvpp2_defaults_set(port);
4696
4697 /* Port's classifier configuration */
4698 mvpp2_cls_oversize_rxq_set(port);
4699 mvpp2_cls_port_config(port);
4700
4701 /* Provide an initial Rx packet size */
4702 port->pkt_size = MVPP2_RX_PKT_SIZE(PKTSIZE_ALIGN);
4703
4704 /* Initialize pools for swf */
4705 err = mvpp2_swf_bm_pool_init(port);
4706 if (err)
4707 return err;
4708
4709 return 0;
4710}
4711
Stefan Roese8ba5f0b2017-03-22 14:11:16 +01004712static int phy_info_parse(struct udevice *dev, struct mvpp2_port *port)
Stefan Roese96c19042016-02-10 07:22:10 +01004713{
Stefan Roese8ba5f0b2017-03-22 14:11:16 +01004714 int port_node = dev_of_offset(dev);
4715 const char *phy_mode_str;
Baruch Siach4f42c862018-11-21 13:05:33 +02004716 int phy_node;
Stefan Roese96c19042016-02-10 07:22:10 +01004717 u32 id;
Stefan Chulskia27adcb2017-04-06 15:39:08 +02004718 u32 phyaddr = 0;
Stefan Roese96c19042016-02-10 07:22:10 +01004719 int phy_mode = -1;
Nevo Hed5e975612019-08-15 18:08:44 -04004720 int ret;
Baruch Siach3cf0f2e2018-11-21 13:05:34 +02004721
Stefan Roese96c19042016-02-10 07:22:10 +01004722 phy_node = fdtdec_lookup_phandle(gd->fdt_blob, port_node, "phy");
Stefan Chulskia27adcb2017-04-06 15:39:08 +02004723
4724 if (phy_node > 0) {
Nevo Hed5e975612019-08-15 18:08:44 -04004725 int parent;
Stefan Chulskia27adcb2017-04-06 15:39:08 +02004726 phyaddr = fdtdec_get_int(gd->fdt_blob, phy_node, "reg", 0);
4727 if (phyaddr < 0) {
4728 dev_err(&pdev->dev, "could not find phy address\n");
4729 return -1;
4730 }
Nevo Hed5e975612019-08-15 18:08:44 -04004731 parent = fdt_parent_offset(gd->fdt_blob, phy_node);
4732 ret = uclass_get_device_by_of_offset(UCLASS_MDIO, parent,
4733 &port->mdio_dev);
4734 if (ret)
4735 return ret;
Stefan Chulskia27adcb2017-04-06 15:39:08 +02004736 } else {
Nevo Hed5e975612019-08-15 18:08:44 -04004737 /* phy_addr is set to invalid value */
4738 phyaddr = PHY_MAX_ADDR;
Stefan Roese96c19042016-02-10 07:22:10 +01004739 }
4740
4741 phy_mode_str = fdt_getprop(gd->fdt_blob, port_node, "phy-mode", NULL);
4742 if (phy_mode_str)
4743 phy_mode = phy_get_interface_by_name(phy_mode_str);
4744 if (phy_mode == -1) {
4745 dev_err(&pdev->dev, "incorrect phy mode\n");
4746 return -EINVAL;
4747 }
4748
4749 id = fdtdec_get_int(gd->fdt_blob, port_node, "port-id", -1);
4750 if (id == -1) {
4751 dev_err(&pdev->dev, "missing port-id value\n");
4752 return -EINVAL;
4753 }
4754
Simon Glassfa4689a2019-12-06 21:41:35 -07004755#if CONFIG_IS_ENABLED(DM_GPIO)
Stefan Chulski0d65eb62017-08-09 10:37:43 +03004756 gpio_request_by_name(dev, "phy-reset-gpios", 0,
4757 &port->phy_reset_gpio, GPIOD_IS_OUT);
4758 gpio_request_by_name(dev, "marvell,sfp-tx-disable-gpio", 0,
4759 &port->phy_tx_disable_gpio, GPIOD_IS_OUT);
4760#endif
4761
Stefan Roese3651bfc2017-03-22 14:15:40 +01004762 /*
4763 * ToDo:
4764 * Not sure if this DT property "phy-speed" will get accepted, so
4765 * this might change later
4766 */
4767 /* Get phy-speed for SGMII 2.5Gbps vs 1Gbps setup */
4768 port->phy_speed = fdtdec_get_int(gd->fdt_blob, port_node,
4769 "phy-speed", 1000);
4770
Stefan Roese96c19042016-02-10 07:22:10 +01004771 port->id = id;
Stefan Roese8ba5f0b2017-03-22 14:11:16 +01004772 if (port->priv->hw_version == MVPP21)
Thomas Petazzoni38a23282017-02-16 09:03:16 +01004773 port->first_rxq = port->id * rxq_number;
4774 else
Stefan Roese8ba5f0b2017-03-22 14:11:16 +01004775 port->first_rxq = port->id * port->priv->max_port_rxqs;
Stefan Roese96c19042016-02-10 07:22:10 +01004776 port->phy_interface = phy_mode;
4777 port->phyaddr = phyaddr;
4778
Stefan Roese8ba5f0b2017-03-22 14:11:16 +01004779 return 0;
4780}
Thomas Petazzoni5555f072017-02-16 08:03:37 +01004781
Simon Glassfa4689a2019-12-06 21:41:35 -07004782#if CONFIG_IS_ENABLED(DM_GPIO)
Stefan Chulski0d65eb62017-08-09 10:37:43 +03004783/* Port GPIO initialization */
4784static void mvpp2_gpio_init(struct mvpp2_port *port)
4785{
4786 if (dm_gpio_is_valid(&port->phy_reset_gpio)) {
Stefan Chulski0d65eb62017-08-09 10:37:43 +03004787 dm_gpio_set_value(&port->phy_reset_gpio, 1);
Baruch Siach67674e42018-10-15 13:16:48 +03004788 mdelay(10);
Baruch Siach187dced2018-10-15 13:16:47 +03004789 dm_gpio_set_value(&port->phy_reset_gpio, 0);
Stefan Chulski0d65eb62017-08-09 10:37:43 +03004790 }
4791
4792 if (dm_gpio_is_valid(&port->phy_tx_disable_gpio))
4793 dm_gpio_set_value(&port->phy_tx_disable_gpio, 0);
4794}
4795#endif
4796
Stefan Roese8ba5f0b2017-03-22 14:11:16 +01004797/* Ports initialization */
4798static int mvpp2_port_probe(struct udevice *dev,
4799 struct mvpp2_port *port,
4800 int port_node,
4801 struct mvpp2 *priv)
4802{
4803 int err;
Stefan Roese96c19042016-02-10 07:22:10 +01004804
4805 port->tx_ring_size = MVPP2_MAX_TXD;
4806 port->rx_ring_size = MVPP2_MAX_RXD;
4807
4808 err = mvpp2_port_init(dev, port);
4809 if (err < 0) {
Stefan Roese8ba5f0b2017-03-22 14:11:16 +01004810 dev_err(&pdev->dev, "failed to init port %d\n", port->id);
Stefan Roese96c19042016-02-10 07:22:10 +01004811 return err;
4812 }
4813 mvpp2_port_power_up(port);
4814
Simon Glassfa4689a2019-12-06 21:41:35 -07004815#if CONFIG_IS_ENABLED(DM_GPIO)
Stefan Chulski0d65eb62017-08-09 10:37:43 +03004816 mvpp2_gpio_init(port);
4817#endif
4818
Stefan Roese8ba5f0b2017-03-22 14:11:16 +01004819 priv->port_list[port->id] = port;
Stefan Chulski75872182017-08-09 10:37:46 +03004820 priv->num_ports++;
Stefan Roese96c19042016-02-10 07:22:10 +01004821 return 0;
4822}
4823
4824/* Initialize decoding windows */
4825static void mvpp2_conf_mbus_windows(const struct mbus_dram_target_info *dram,
4826 struct mvpp2 *priv)
4827{
4828 u32 win_enable;
4829 int i;
4830
4831 for (i = 0; i < 6; i++) {
4832 mvpp2_write(priv, MVPP2_WIN_BASE(i), 0);
4833 mvpp2_write(priv, MVPP2_WIN_SIZE(i), 0);
4834
4835 if (i < 4)
4836 mvpp2_write(priv, MVPP2_WIN_REMAP(i), 0);
4837 }
4838
4839 win_enable = 0;
4840
4841 for (i = 0; i < dram->num_cs; i++) {
4842 const struct mbus_dram_window *cs = dram->cs + i;
4843
4844 mvpp2_write(priv, MVPP2_WIN_BASE(i),
4845 (cs->base & 0xffff0000) | (cs->mbus_attr << 8) |
4846 dram->mbus_dram_target_id);
4847
4848 mvpp2_write(priv, MVPP2_WIN_SIZE(i),
4849 (cs->size - 1) & 0xffff0000);
4850
4851 win_enable |= (1 << i);
4852 }
4853
4854 mvpp2_write(priv, MVPP2_BASE_ADDR_ENABLE, win_enable);
4855}
4856
4857/* Initialize Rx FIFO's */
4858static void mvpp2_rx_fifo_init(struct mvpp2 *priv)
4859{
4860 int port;
4861
4862 for (port = 0; port < MVPP2_MAX_PORTS; port++) {
Stefan Roesea8801ed2017-03-01 13:09:42 +01004863 if (priv->hw_version == MVPP22) {
4864 if (port == 0) {
4865 mvpp2_write(priv,
4866 MVPP2_RX_DATA_FIFO_SIZE_REG(port),
4867 MVPP22_RX_FIFO_10GB_PORT_DATA_SIZE);
4868 mvpp2_write(priv,
4869 MVPP2_RX_ATTR_FIFO_SIZE_REG(port),
4870 MVPP22_RX_FIFO_10GB_PORT_ATTR_SIZE);
4871 } else if (port == 1) {
4872 mvpp2_write(priv,
4873 MVPP2_RX_DATA_FIFO_SIZE_REG(port),
4874 MVPP22_RX_FIFO_2_5GB_PORT_DATA_SIZE);
4875 mvpp2_write(priv,
4876 MVPP2_RX_ATTR_FIFO_SIZE_REG(port),
4877 MVPP22_RX_FIFO_2_5GB_PORT_ATTR_SIZE);
4878 } else {
4879 mvpp2_write(priv,
4880 MVPP2_RX_DATA_FIFO_SIZE_REG(port),
4881 MVPP22_RX_FIFO_1GB_PORT_DATA_SIZE);
4882 mvpp2_write(priv,
4883 MVPP2_RX_ATTR_FIFO_SIZE_REG(port),
4884 MVPP22_RX_FIFO_1GB_PORT_ATTR_SIZE);
4885 }
4886 } else {
4887 mvpp2_write(priv, MVPP2_RX_DATA_FIFO_SIZE_REG(port),
4888 MVPP21_RX_FIFO_PORT_DATA_SIZE);
4889 mvpp2_write(priv, MVPP2_RX_ATTR_FIFO_SIZE_REG(port),
4890 MVPP21_RX_FIFO_PORT_ATTR_SIZE);
4891 }
Stefan Roese96c19042016-02-10 07:22:10 +01004892 }
4893
4894 mvpp2_write(priv, MVPP2_RX_MIN_PKT_SIZE_REG,
4895 MVPP2_RX_FIFO_PORT_MIN_PKT);
4896 mvpp2_write(priv, MVPP2_RX_FIFO_INIT_REG, 0x1);
4897}
4898
Stefan Roesea8801ed2017-03-01 13:09:42 +01004899/* Initialize Tx FIFO's */
4900static void mvpp2_tx_fifo_init(struct mvpp2 *priv)
4901{
4902 int port, val;
4903
4904 for (port = 0; port < MVPP2_MAX_PORTS; port++) {
4905 /* Port 0 supports 10KB TX FIFO */
4906 if (port == 0) {
4907 val = MVPP2_TX_FIFO_DATA_SIZE_10KB &
4908 MVPP22_TX_FIFO_SIZE_MASK;
4909 } else {
4910 val = MVPP2_TX_FIFO_DATA_SIZE_3KB &
4911 MVPP22_TX_FIFO_SIZE_MASK;
4912 }
4913 mvpp2_write(priv, MVPP22_TX_FIFO_SIZE_REG(port), val);
4914 }
4915}
4916
Thomas Petazzonica560ab2017-02-16 08:41:07 +01004917static void mvpp2_axi_init(struct mvpp2 *priv)
4918{
4919 u32 val, rdval, wrval;
4920
4921 mvpp2_write(priv, MVPP22_BM_ADDR_HIGH_RLS_REG, 0x0);
4922
4923 /* AXI Bridge Configuration */
4924
4925 rdval = MVPP22_AXI_CODE_CACHE_RD_CACHE
4926 << MVPP22_AXI_ATTR_CACHE_OFFS;
4927 rdval |= MVPP22_AXI_CODE_DOMAIN_OUTER_DOM
4928 << MVPP22_AXI_ATTR_DOMAIN_OFFS;
4929
4930 wrval = MVPP22_AXI_CODE_CACHE_WR_CACHE
4931 << MVPP22_AXI_ATTR_CACHE_OFFS;
4932 wrval |= MVPP22_AXI_CODE_DOMAIN_OUTER_DOM
4933 << MVPP22_AXI_ATTR_DOMAIN_OFFS;
4934
4935 /* BM */
4936 mvpp2_write(priv, MVPP22_AXI_BM_WR_ATTR_REG, wrval);
4937 mvpp2_write(priv, MVPP22_AXI_BM_RD_ATTR_REG, rdval);
4938
4939 /* Descriptors */
4940 mvpp2_write(priv, MVPP22_AXI_AGGRQ_DESCR_RD_ATTR_REG, rdval);
4941 mvpp2_write(priv, MVPP22_AXI_TXQ_DESCR_WR_ATTR_REG, wrval);
4942 mvpp2_write(priv, MVPP22_AXI_TXQ_DESCR_RD_ATTR_REG, rdval);
4943 mvpp2_write(priv, MVPP22_AXI_RXQ_DESCR_WR_ATTR_REG, wrval);
4944
4945 /* Buffer Data */
4946 mvpp2_write(priv, MVPP22_AXI_TX_DATA_RD_ATTR_REG, rdval);
4947 mvpp2_write(priv, MVPP22_AXI_RX_DATA_WR_ATTR_REG, wrval);
4948
4949 val = MVPP22_AXI_CODE_CACHE_NON_CACHE
4950 << MVPP22_AXI_CODE_CACHE_OFFS;
4951 val |= MVPP22_AXI_CODE_DOMAIN_SYSTEM
4952 << MVPP22_AXI_CODE_DOMAIN_OFFS;
4953 mvpp2_write(priv, MVPP22_AXI_RD_NORMAL_CODE_REG, val);
4954 mvpp2_write(priv, MVPP22_AXI_WR_NORMAL_CODE_REG, val);
4955
4956 val = MVPP22_AXI_CODE_CACHE_RD_CACHE
4957 << MVPP22_AXI_CODE_CACHE_OFFS;
4958 val |= MVPP22_AXI_CODE_DOMAIN_OUTER_DOM
4959 << MVPP22_AXI_CODE_DOMAIN_OFFS;
4960
4961 mvpp2_write(priv, MVPP22_AXI_RD_SNOOP_CODE_REG, val);
4962
4963 val = MVPP22_AXI_CODE_CACHE_WR_CACHE
4964 << MVPP22_AXI_CODE_CACHE_OFFS;
4965 val |= MVPP22_AXI_CODE_DOMAIN_OUTER_DOM
4966 << MVPP22_AXI_CODE_DOMAIN_OFFS;
4967
4968 mvpp2_write(priv, MVPP22_AXI_WR_SNOOP_CODE_REG, val);
4969}
4970
Stefan Roese96c19042016-02-10 07:22:10 +01004971/* Initialize network controller common part HW */
4972static int mvpp2_init(struct udevice *dev, struct mvpp2 *priv)
4973{
4974 const struct mbus_dram_target_info *dram_target_info;
4975 int err, i;
4976 u32 val;
4977
4978 /* Checks for hardware constraints (U-Boot uses only one rxq) */
Thomas Petazzoni38a23282017-02-16 09:03:16 +01004979 if ((rxq_number > priv->max_port_rxqs) ||
4980 (txq_number > MVPP2_MAX_TXQ)) {
Stefan Roese96c19042016-02-10 07:22:10 +01004981 dev_err(&pdev->dev, "invalid queue size parameter\n");
4982 return -EINVAL;
4983 }
4984
Thomas Petazzonica560ab2017-02-16 08:41:07 +01004985 if (priv->hw_version == MVPP22)
4986 mvpp2_axi_init(priv);
Stefan Chulskicaa97bf2017-08-09 10:37:48 +03004987 else {
4988 /* MBUS windows configuration */
4989 dram_target_info = mvebu_mbus_dram_info();
4990 if (dram_target_info)
4991 mvpp2_conf_mbus_windows(dram_target_info, priv);
4992 }
Thomas Petazzonica560ab2017-02-16 08:41:07 +01004993
Thomas Petazzonicc2445f2017-02-20 11:42:51 +01004994 if (priv->hw_version == MVPP21) {
Stefan Roeseb851e402017-03-09 12:01:57 +01004995 /* Disable HW PHY polling */
Thomas Petazzonicc2445f2017-02-20 11:42:51 +01004996 val = readl(priv->lms_base + MVPP2_PHY_AN_CFG0_REG);
4997 val |= MVPP2_PHY_AN_STOP_SMI0_MASK;
4998 writel(val, priv->lms_base + MVPP2_PHY_AN_CFG0_REG);
4999 } else {
Stefan Roeseb851e402017-03-09 12:01:57 +01005000 /* Enable HW PHY polling */
Thomas Petazzonicc2445f2017-02-20 11:42:51 +01005001 val = readl(priv->iface_base + MVPP22_SMI_MISC_CFG_REG);
Stefan Roeseb851e402017-03-09 12:01:57 +01005002 val |= MVPP22_SMI_POLLING_EN;
Thomas Petazzonicc2445f2017-02-20 11:42:51 +01005003 writel(val, priv->iface_base + MVPP22_SMI_MISC_CFG_REG);
5004 }
Stefan Roese96c19042016-02-10 07:22:10 +01005005
5006 /* Allocate and initialize aggregated TXQs */
5007 priv->aggr_txqs = devm_kcalloc(dev, num_present_cpus(),
5008 sizeof(struct mvpp2_tx_queue),
5009 GFP_KERNEL);
5010 if (!priv->aggr_txqs)
5011 return -ENOMEM;
5012
5013 for_each_present_cpu(i) {
5014 priv->aggr_txqs[i].id = i;
5015 priv->aggr_txqs[i].size = MVPP2_AGGR_TXQ_SIZE;
5016 err = mvpp2_aggr_txq_init(dev, &priv->aggr_txqs[i],
5017 MVPP2_AGGR_TXQ_SIZE, i, priv);
5018 if (err < 0)
5019 return err;
5020 }
5021
5022 /* Rx Fifo Init */
5023 mvpp2_rx_fifo_init(priv);
5024
Stefan Roesea8801ed2017-03-01 13:09:42 +01005025 /* Tx Fifo Init */
5026 if (priv->hw_version == MVPP22)
5027 mvpp2_tx_fifo_init(priv);
5028
Thomas Petazzonicc2445f2017-02-20 11:42:51 +01005029 if (priv->hw_version == MVPP21)
5030 writel(MVPP2_EXT_GLOBAL_CTRL_DEFAULT,
5031 priv->lms_base + MVPP2_MNG_EXTENDED_GLOBAL_CTRL_REG);
Stefan Roese96c19042016-02-10 07:22:10 +01005032
5033 /* Allow cache snoop when transmiting packets */
5034 mvpp2_write(priv, MVPP2_TX_SNOOP_REG, 0x1);
5035
5036 /* Buffer Manager initialization */
5037 err = mvpp2_bm_init(dev, priv);
5038 if (err < 0)
5039 return err;
5040
5041 /* Parser default initialization */
5042 err = mvpp2_prs_default_init(dev, priv);
5043 if (err < 0)
5044 return err;
5045
5046 /* Classifier default initialization */
5047 mvpp2_cls_init(priv);
5048
5049 return 0;
5050}
5051
Stefan Roese96c19042016-02-10 07:22:10 +01005052static int mvpp2_recv(struct udevice *dev, int flags, uchar **packetp)
5053{
5054 struct mvpp2_port *port = dev_get_priv(dev);
5055 struct mvpp2_rx_desc *rx_desc;
5056 struct mvpp2_bm_pool *bm_pool;
Thomas Petazzonic49aff22017-02-20 10:27:51 +01005057 dma_addr_t dma_addr;
Stefan Roese96c19042016-02-10 07:22:10 +01005058 u32 bm, rx_status;
5059 int pool, rx_bytes, err;
5060 int rx_received;
5061 struct mvpp2_rx_queue *rxq;
Stefan Roese96c19042016-02-10 07:22:10 +01005062 u8 *data;
5063
Nevo Hed5e975612019-08-15 18:08:44 -04005064 if (port->phyaddr < PHY_MAX_ADDR)
Stefan Chulskib261d1b2019-08-15 18:08:41 -04005065 if (!port->phy_dev->link)
5066 return 0;
5067
Stefan Roese96c19042016-02-10 07:22:10 +01005068 /* Process RX packets */
Stefan Chulskib4025532017-08-09 10:37:49 +03005069 rxq = port->rxqs[0];
Stefan Roese96c19042016-02-10 07:22:10 +01005070
5071 /* Get number of received packets and clamp the to-do */
5072 rx_received = mvpp2_rxq_received(port, rxq->id);
5073
5074 /* Return if no packets are received */
5075 if (!rx_received)
5076 return 0;
5077
5078 rx_desc = mvpp2_rxq_next_desc_get(rxq);
Thomas Petazzonifb3a7bb2017-02-15 15:35:00 +01005079 rx_status = mvpp2_rxdesc_status_get(port, rx_desc);
5080 rx_bytes = mvpp2_rxdesc_size_get(port, rx_desc);
5081 rx_bytes -= MVPP2_MH_SIZE;
5082 dma_addr = mvpp2_rxdesc_dma_addr_get(port, rx_desc);
Stefan Roese96c19042016-02-10 07:22:10 +01005083
Thomas Petazzonifb3a7bb2017-02-15 15:35:00 +01005084 bm = mvpp2_bm_cookie_build(port, rx_desc);
Stefan Roese96c19042016-02-10 07:22:10 +01005085 pool = mvpp2_bm_cookie_pool_get(bm);
5086 bm_pool = &port->priv->bm_pools[pool];
5087
Stefan Roese96c19042016-02-10 07:22:10 +01005088 /* In case of an error, release the requested buffer pointer
5089 * to the Buffer Manager. This request process is controlled
5090 * by the hardware, and the information about the buffer is
5091 * comprised by the RX descriptor.
5092 */
5093 if (rx_status & MVPP2_RXD_ERR_SUMMARY) {
5094 mvpp2_rx_error(port, rx_desc);
5095 /* Return the buffer to the pool */
Thomas Petazzonifb3a7bb2017-02-15 15:35:00 +01005096 mvpp2_pool_refill(port, bm, dma_addr, dma_addr);
Stefan Roese96c19042016-02-10 07:22:10 +01005097 return 0;
5098 }
5099
Thomas Petazzonic49aff22017-02-20 10:27:51 +01005100 err = mvpp2_rx_refill(port, bm_pool, bm, dma_addr);
Stefan Roese96c19042016-02-10 07:22:10 +01005101 if (err) {
5102 netdev_err(port->dev, "failed to refill BM pools\n");
5103 return 0;
5104 }
5105
5106 /* Update Rx queue management counters */
5107 mb();
5108 mvpp2_rxq_status_update(port, rxq->id, 1, 1);
5109
5110 /* give packet to stack - skip on first n bytes */
Thomas Petazzonic49aff22017-02-20 10:27:51 +01005111 data = (u8 *)dma_addr + 2 + 32;
Stefan Roese96c19042016-02-10 07:22:10 +01005112
5113 if (rx_bytes <= 0)
5114 return 0;
5115
5116 /*
5117 * No cache invalidation needed here, since the rx_buffer's are
5118 * located in a uncached memory region
5119 */
5120 *packetp = data;
5121
5122 return rx_bytes;
5123}
5124
Stefan Roese96c19042016-02-10 07:22:10 +01005125static int mvpp2_send(struct udevice *dev, void *packet, int length)
5126{
5127 struct mvpp2_port *port = dev_get_priv(dev);
5128 struct mvpp2_tx_queue *txq, *aggr_txq;
5129 struct mvpp2_tx_desc *tx_desc;
5130 int tx_done;
5131 int timeout;
5132
Nevo Hed5e975612019-08-15 18:08:44 -04005133 if (port->phyaddr < PHY_MAX_ADDR)
Stefan Chulskib261d1b2019-08-15 18:08:41 -04005134 if (!port->phy_dev->link)
5135 return 0;
5136
Stefan Roese96c19042016-02-10 07:22:10 +01005137 txq = port->txqs[0];
5138 aggr_txq = &port->priv->aggr_txqs[smp_processor_id()];
5139
5140 /* Get a descriptor for the first part of the packet */
5141 tx_desc = mvpp2_txq_next_desc_get(aggr_txq);
Thomas Petazzonifb3a7bb2017-02-15 15:35:00 +01005142 mvpp2_txdesc_txq_set(port, tx_desc, txq->id);
5143 mvpp2_txdesc_size_set(port, tx_desc, length);
5144 mvpp2_txdesc_offset_set(port, tx_desc,
5145 (dma_addr_t)packet & MVPP2_TX_DESC_ALIGN);
5146 mvpp2_txdesc_dma_addr_set(port, tx_desc,
5147 (dma_addr_t)packet & ~MVPP2_TX_DESC_ALIGN);
Stefan Roese96c19042016-02-10 07:22:10 +01005148 /* First and Last descriptor */
Thomas Petazzonifb3a7bb2017-02-15 15:35:00 +01005149 mvpp2_txdesc_cmd_set(port, tx_desc,
5150 MVPP2_TXD_L4_CSUM_NOT | MVPP2_TXD_IP_CSUM_DISABLE
5151 | MVPP2_TXD_F_DESC | MVPP2_TXD_L_DESC);
Stefan Roese96c19042016-02-10 07:22:10 +01005152
5153 /* Flush tx data */
Stefan Roeseb4268e22017-02-16 13:58:37 +01005154 flush_dcache_range((unsigned long)packet,
5155 (unsigned long)packet + ALIGN(length, PKTALIGN));
Stefan Roese96c19042016-02-10 07:22:10 +01005156
5157 /* Enable transmit */
5158 mb();
5159 mvpp2_aggr_txq_pend_desc_add(port, 1);
5160
5161 mvpp2_write(port->priv, MVPP2_TXQ_NUM_REG, txq->id);
5162
5163 timeout = 0;
5164 do {
5165 if (timeout++ > 10000) {
5166 printf("timeout: packet not sent from aggregated to phys TXQ\n");
5167 return 0;
5168 }
5169 tx_done = mvpp2_txq_pend_desc_num_get(port, txq);
5170 } while (tx_done);
5171
Stefan Roese96c19042016-02-10 07:22:10 +01005172 timeout = 0;
5173 do {
5174 if (timeout++ > 10000) {
5175 printf("timeout: packet not sent\n");
5176 return 0;
5177 }
5178 tx_done = mvpp2_txq_sent_desc_proc(port, txq);
5179 } while (!tx_done);
5180
Stefan Roese96c19042016-02-10 07:22:10 +01005181 return 0;
5182}
5183
5184static int mvpp2_start(struct udevice *dev)
5185{
5186 struct eth_pdata *pdata = dev_get_platdata(dev);
5187 struct mvpp2_port *port = dev_get_priv(dev);
5188
5189 /* Load current MAC address */
5190 memcpy(port->dev_addr, pdata->enetaddr, ETH_ALEN);
5191
5192 /* Reconfigure parser accept the original MAC address */
5193 mvpp2_prs_update_mac_da(port, port->dev_addr);
5194
Stefan Chulskia27adcb2017-04-06 15:39:08 +02005195 switch (port->phy_interface) {
5196 case PHY_INTERFACE_MODE_RGMII:
5197 case PHY_INTERFACE_MODE_RGMII_ID:
5198 case PHY_INTERFACE_MODE_SGMII:
5199 mvpp2_port_power_up(port);
5200 default:
5201 break;
5202 }
Stefan Roese96c19042016-02-10 07:22:10 +01005203
5204 mvpp2_open(dev, port);
5205
5206 return 0;
5207}
5208
5209static void mvpp2_stop(struct udevice *dev)
5210{
5211 struct mvpp2_port *port = dev_get_priv(dev);
5212
5213 mvpp2_stop_dev(port);
5214 mvpp2_cleanup_rxqs(port);
5215 mvpp2_cleanup_txqs(port);
5216}
5217
Matt Pelland5712d7d2019-07-30 09:40:24 -04005218static int mvpp2_write_hwaddr(struct udevice *dev)
5219{
5220 struct mvpp2_port *port = dev_get_priv(dev);
5221
5222 return mvpp2_prs_update_mac_da(port, port->dev_addr);
5223}
5224
Stefan Roese95b27412017-03-10 06:07:45 +01005225static int mvpp22_smi_phy_addr_cfg(struct mvpp2_port *port)
5226{
5227 writel(port->phyaddr, port->priv->iface_base +
5228 MVPP22_SMI_PHY_ADDR_REG(port->gop_id));
5229
5230 return 0;
5231}
5232
Stefan Roese96c19042016-02-10 07:22:10 +01005233static int mvpp2_base_probe(struct udevice *dev)
5234{
5235 struct mvpp2 *priv = dev_get_priv(dev);
Stefan Roese96c19042016-02-10 07:22:10 +01005236 void *bd_space;
5237 u32 size = 0;
5238 int i;
5239
Thomas Petazzoni51ccb412017-02-15 14:08:59 +01005240 /* Save hw-version */
5241 priv->hw_version = dev_get_driver_data(dev);
5242
Stefan Roese96c19042016-02-10 07:22:10 +01005243 /*
5244 * U-Boot special buffer handling:
5245 *
5246 * Allocate buffer area for descs and rx_buffers. This is only
5247 * done once for all interfaces. As only one interface can
5248 * be active. Make this area DMA-safe by disabling the D-cache
5249 */
5250
Sven Auhagena50bca12020-07-01 17:43:43 +02005251 if (!buffer_loc_init) {
5252 /* Align buffer area for descs and rx_buffers to 1MiB */
5253 bd_space = memalign(1 << MMU_SECTION_SHIFT, BD_SPACE);
5254 mmu_set_region_dcache_behaviour((unsigned long)bd_space,
5255 BD_SPACE, DCACHE_OFF);
Stefan Roese96c19042016-02-10 07:22:10 +01005256
Sven Auhagena50bca12020-07-01 17:43:43 +02005257 buffer_loc.aggr_tx_descs = (struct mvpp2_tx_desc *)bd_space;
5258 size += MVPP2_AGGR_TXQ_SIZE * MVPP2_DESC_ALIGNED_SIZE;
Stefan Roese96c19042016-02-10 07:22:10 +01005259
Sven Auhagena50bca12020-07-01 17:43:43 +02005260 buffer_loc.tx_descs =
5261 (struct mvpp2_tx_desc *)((unsigned long)bd_space + size);
5262 size += MVPP2_MAX_TXD * MVPP2_DESC_ALIGNED_SIZE;
Stefan Roese96c19042016-02-10 07:22:10 +01005263
Sven Auhagena50bca12020-07-01 17:43:43 +02005264 buffer_loc.rx_descs =
5265 (struct mvpp2_rx_desc *)((unsigned long)bd_space + size);
5266 size += MVPP2_MAX_RXD * MVPP2_DESC_ALIGNED_SIZE;
Stefan Roese96c19042016-02-10 07:22:10 +01005267
Sven Auhagena50bca12020-07-01 17:43:43 +02005268 for (i = 0; i < MVPP2_BM_POOLS_NUM; i++) {
5269 buffer_loc.bm_pool[i] =
5270 (unsigned long *)((unsigned long)bd_space + size);
5271 if (priv->hw_version == MVPP21)
5272 size += MVPP2_BM_POOL_SIZE_MAX * 2 * sizeof(u32);
5273 else
5274 size += MVPP2_BM_POOL_SIZE_MAX * 2 * sizeof(u64);
5275 }
Stefan Roese96c19042016-02-10 07:22:10 +01005276
Sven Auhagena50bca12020-07-01 17:43:43 +02005277 for (i = 0; i < MVPP2_BM_LONG_BUF_NUM; i++) {
5278 buffer_loc.rx_buffer[i] =
5279 (unsigned long *)((unsigned long)bd_space + size);
5280 size += RX_BUFFER_SIZE;
5281 }
Stefan Roese96c19042016-02-10 07:22:10 +01005282
Sven Auhagena50bca12020-07-01 17:43:43 +02005283 /* Clear the complete area so that all descriptors are cleared */
5284 memset(bd_space, 0, size);
5285
5286 buffer_loc_init = 1;
5287 }
Stefan Roese4cc75412017-02-16 13:29:08 +01005288
Stefan Roese96c19042016-02-10 07:22:10 +01005289 /* Save base addresses for later use */
Simon Glassba1dea42017-05-17 17:18:05 -06005290 priv->base = (void *)devfdt_get_addr_index(dev, 0);
Stefan Roese96c19042016-02-10 07:22:10 +01005291 if (IS_ERR(priv->base))
5292 return PTR_ERR(priv->base);
5293
Thomas Petazzoni5555f072017-02-16 08:03:37 +01005294 if (priv->hw_version == MVPP21) {
Simon Glassba1dea42017-05-17 17:18:05 -06005295 priv->lms_base = (void *)devfdt_get_addr_index(dev, 1);
Thomas Petazzoni5555f072017-02-16 08:03:37 +01005296 if (IS_ERR(priv->lms_base))
5297 return PTR_ERR(priv->lms_base);
5298 } else {
Simon Glassba1dea42017-05-17 17:18:05 -06005299 priv->iface_base = (void *)devfdt_get_addr_index(dev, 1);
Thomas Petazzoni5555f072017-02-16 08:03:37 +01005300 if (IS_ERR(priv->iface_base))
5301 return PTR_ERR(priv->iface_base);
Stefan Roeseb71c2a32017-02-16 08:31:32 +01005302
Stefan Roese40e749b2017-03-22 15:07:30 +01005303 /* Store common base addresses for all ports */
5304 priv->mpcs_base = priv->iface_base + MVPP22_MPCS;
5305 priv->xpcs_base = priv->iface_base + MVPP22_XPCS;
5306 priv->rfu1_base = priv->iface_base + MVPP22_RFU1;
Thomas Petazzoni5555f072017-02-16 08:03:37 +01005307 }
Stefan Roese96c19042016-02-10 07:22:10 +01005308
Thomas Petazzoni38a23282017-02-16 09:03:16 +01005309 if (priv->hw_version == MVPP21)
5310 priv->max_port_rxqs = 8;
5311 else
5312 priv->max_port_rxqs = 32;
5313
Baruch Siach3cf0f2e2018-11-21 13:05:34 +02005314 return 0;
Stefan Roese96c19042016-02-10 07:22:10 +01005315}
5316
Stefan Roesed017cdf2017-02-16 15:26:06 +01005317static int mvpp2_probe(struct udevice *dev)
5318{
5319 struct mvpp2_port *port = dev_get_priv(dev);
5320 struct mvpp2 *priv = dev_get_priv(dev->parent);
5321 int err;
5322
5323 /* Only call the probe function for the parent once */
Stefan Chulski75872182017-08-09 10:37:46 +03005324 if (!priv->probe_done)
Stefan Roesed017cdf2017-02-16 15:26:06 +01005325 err = mvpp2_base_probe(dev->parent);
Stefan Roese8ba5f0b2017-03-22 14:11:16 +01005326
Nevo Hed5e975612019-08-15 18:08:44 -04005327 port->priv = priv;
Baruch Siach3cf0f2e2018-11-21 13:05:34 +02005328
Stefan Roese8ba5f0b2017-03-22 14:11:16 +01005329 err = phy_info_parse(dev, port);
5330 if (err)
5331 return err;
5332
5333 /*
5334 * We need the port specific io base addresses at this stage, since
5335 * gop_port_init() accesses these registers
5336 */
5337 if (priv->hw_version == MVPP21) {
5338 int priv_common_regs_num = 2;
5339
Simon Glassba1dea42017-05-17 17:18:05 -06005340 port->base = (void __iomem *)devfdt_get_addr_index(
Stefan Roese8ba5f0b2017-03-22 14:11:16 +01005341 dev->parent, priv_common_regs_num + port->id);
5342 if (IS_ERR(port->base))
5343 return PTR_ERR(port->base);
5344 } else {
5345 port->gop_id = fdtdec_get_int(gd->fdt_blob, dev_of_offset(dev),
5346 "gop-port-id", -1);
5347 if (port->id == -1) {
5348 dev_err(&pdev->dev, "missing gop-port-id value\n");
5349 return -EINVAL;
5350 }
5351
5352 port->base = priv->iface_base + MVPP22_PORT_BASE +
5353 port->gop_id * MVPP22_PORT_OFFSET;
Stefan Roese40e749b2017-03-22 15:07:30 +01005354
Stefan Roese95b27412017-03-10 06:07:45 +01005355 /* Set phy address of the port */
Nevo Hed5e975612019-08-15 18:08:44 -04005356 if (port->phyaddr < PHY_MAX_ADDR)
Stefan Chulskia27adcb2017-04-06 15:39:08 +02005357 mvpp22_smi_phy_addr_cfg(port);
Stefan Roese95b27412017-03-10 06:07:45 +01005358
Stefan Roese40e749b2017-03-22 15:07:30 +01005359 /* GoP Init */
5360 gop_port_init(port);
Stefan Roese8ba5f0b2017-03-22 14:11:16 +01005361 }
5362
Stefan Chulski75872182017-08-09 10:37:46 +03005363 if (!priv->probe_done) {
5364 /* Initialize network controller */
5365 err = mvpp2_init(dev, priv);
5366 if (err < 0) {
5367 dev_err(&pdev->dev, "failed to initialize controller\n");
5368 return err;
5369 }
5370 priv->num_ports = 0;
5371 priv->probe_done = 1;
Stefan Roesed017cdf2017-02-16 15:26:06 +01005372 }
5373
Stefan Roese40e749b2017-03-22 15:07:30 +01005374 err = mvpp2_port_probe(dev, port, dev_of_offset(dev), priv);
5375 if (err)
5376 return err;
5377
5378 if (priv->hw_version == MVPP22) {
5379 priv->netc_config |= mvpp2_netc_cfg_create(port->gop_id,
5380 port->phy_interface);
5381
5382 /* Netcomplex configurations for all ports */
5383 gop_netc_init(priv, MV_NETC_FIRST_PHASE);
5384 gop_netc_init(priv, MV_NETC_SECOND_PHASE);
5385 }
5386
5387 return 0;
Stefan Roesed017cdf2017-02-16 15:26:06 +01005388}
5389
Stefan Roese380b3232017-03-23 17:01:59 +01005390/*
5391 * Empty BM pool and stop its activity before the OS is started
5392 */
5393static int mvpp2_remove(struct udevice *dev)
5394{
5395 struct mvpp2_port *port = dev_get_priv(dev);
5396 struct mvpp2 *priv = port->priv;
5397 int i;
5398
Stefan Chulski75872182017-08-09 10:37:46 +03005399 priv->num_ports--;
5400
5401 if (priv->num_ports)
5402 return 0;
5403
Stefan Roese380b3232017-03-23 17:01:59 +01005404 for (i = 0; i < MVPP2_BM_POOLS_NUM; i++)
5405 mvpp2_bm_pool_destroy(dev, priv, &priv->bm_pools[i]);
5406
5407 return 0;
5408}
5409
Stefan Roesed017cdf2017-02-16 15:26:06 +01005410static const struct eth_ops mvpp2_ops = {
5411 .start = mvpp2_start,
5412 .send = mvpp2_send,
5413 .recv = mvpp2_recv,
5414 .stop = mvpp2_stop,
Matt Pelland5712d7d2019-07-30 09:40:24 -04005415 .write_hwaddr = mvpp2_write_hwaddr
Stefan Roesed017cdf2017-02-16 15:26:06 +01005416};
5417
5418static struct driver mvpp2_driver = {
5419 .name = "mvpp2",
5420 .id = UCLASS_ETH,
5421 .probe = mvpp2_probe,
Stefan Roese380b3232017-03-23 17:01:59 +01005422 .remove = mvpp2_remove,
Stefan Roesed017cdf2017-02-16 15:26:06 +01005423 .ops = &mvpp2_ops,
5424 .priv_auto_alloc_size = sizeof(struct mvpp2_port),
5425 .platdata_auto_alloc_size = sizeof(struct eth_pdata),
Stefan Roese380b3232017-03-23 17:01:59 +01005426 .flags = DM_FLAG_ACTIVE_DMA,
Stefan Roesed017cdf2017-02-16 15:26:06 +01005427};
5428
5429/*
5430 * Use a MISC device to bind the n instances (child nodes) of the
5431 * network base controller in UCLASS_ETH.
5432 */
Stefan Roese96c19042016-02-10 07:22:10 +01005433static int mvpp2_base_bind(struct udevice *parent)
5434{
5435 const void *blob = gd->fdt_blob;
Simon Glassdd79d6e2017-01-17 16:52:55 -07005436 int node = dev_of_offset(parent);
Stefan Roese96c19042016-02-10 07:22:10 +01005437 struct uclass_driver *drv;
5438 struct udevice *dev;
5439 struct eth_pdata *plat;
5440 char *name;
5441 int subnode;
5442 u32 id;
Stefan Roese38801d42017-02-24 10:12:41 +01005443 int base_id_add;
Stefan Roese96c19042016-02-10 07:22:10 +01005444
5445 /* Lookup eth driver */
5446 drv = lists_uclass_lookup(UCLASS_ETH);
5447 if (!drv) {
5448 puts("Cannot find eth driver\n");
5449 return -ENOENT;
5450 }
5451
Stefan Roese38801d42017-02-24 10:12:41 +01005452 base_id_add = base_id;
5453
Simon Glass499c29e2016-10-02 17:59:29 -06005454 fdt_for_each_subnode(subnode, blob, node) {
Stefan Roese38801d42017-02-24 10:12:41 +01005455 /* Increment base_id for all subnodes, also the disabled ones */
5456 base_id++;
5457
Stefan Roese96c19042016-02-10 07:22:10 +01005458 /* Skip disabled ports */
5459 if (!fdtdec_get_is_enabled(blob, subnode))
5460 continue;
5461
5462 plat = calloc(1, sizeof(*plat));
5463 if (!plat)
5464 return -ENOMEM;
5465
5466 id = fdtdec_get_int(blob, subnode, "port-id", -1);
Stefan Roese38801d42017-02-24 10:12:41 +01005467 id += base_id_add;
Stefan Roese96c19042016-02-10 07:22:10 +01005468
5469 name = calloc(1, 16);
Heinrich Schuchardtd0c42d72018-03-07 03:39:04 +01005470 if (!name) {
5471 free(plat);
5472 return -ENOMEM;
5473 }
Stefan Roese96c19042016-02-10 07:22:10 +01005474 sprintf(name, "mvpp2-%d", id);
5475
5476 /* Create child device UCLASS_ETH and bind it */
5477 device_bind(parent, &mvpp2_driver, name, plat, subnode, &dev);
Simon Glassdd79d6e2017-01-17 16:52:55 -07005478 dev_set_of_offset(dev, subnode);
Stefan Roese96c19042016-02-10 07:22:10 +01005479 }
5480
5481 return 0;
5482}
5483
5484static const struct udevice_id mvpp2_ids[] = {
Thomas Petazzoni51ccb412017-02-15 14:08:59 +01005485 {
5486 .compatible = "marvell,armada-375-pp2",
5487 .data = MVPP21,
5488 },
Thomas Petazzonie595a232017-02-20 11:54:31 +01005489 {
5490 .compatible = "marvell,armada-7k-pp22",
5491 .data = MVPP22,
5492 },
Stefan Roese96c19042016-02-10 07:22:10 +01005493 { }
5494};
5495
5496U_BOOT_DRIVER(mvpp2_base) = {
5497 .name = "mvpp2_base",
5498 .id = UCLASS_MISC,
5499 .of_match = mvpp2_ids,
5500 .bind = mvpp2_base_bind,
Stefan Roese96c19042016-02-10 07:22:10 +01005501 .priv_auto_alloc_size = sizeof(struct mvpp2),
5502};