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