blob: 8751ee85e38846d3217b17250adda59fffa10be2 [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:
9 * Copyright (C) 2016 Stefan Roese <sr@denx.de>
10 *
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>
17#include <dm.h>
18#include <dm/device-internal.h>
19#include <dm/lists.h>
20#include <net.h>
21#include <netdev.h>
22#include <config.h>
23#include <malloc.h>
24#include <asm/io.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090025#include <linux/errno.h>
Stefan Roese99d4c6d2016-02-10 07:22:10 +010026#include <phy.h>
27#include <miiphy.h>
28#include <watchdog.h>
29#include <asm/arch/cpu.h>
30#include <asm/arch/soc.h>
31#include <linux/compat.h>
32#include <linux/mbus.h>
33
34DECLARE_GLOBAL_DATA_PTR;
35
36/* Some linux -> U-Boot compatibility stuff */
37#define netdev_err(dev, fmt, args...) \
38 printf(fmt, ##args)
39#define netdev_warn(dev, fmt, args...) \
40 printf(fmt, ##args)
41#define netdev_info(dev, fmt, args...) \
42 printf(fmt, ##args)
43#define netdev_dbg(dev, fmt, args...) \
44 printf(fmt, ##args)
45
46#define ETH_ALEN 6 /* Octets in one ethernet addr */
47
48#define __verify_pcpu_ptr(ptr) \
49do { \
50 const void __percpu *__vpp_verify = (typeof((ptr) + 0))NULL; \
51 (void)__vpp_verify; \
52} while (0)
53
54#define VERIFY_PERCPU_PTR(__p) \
55({ \
56 __verify_pcpu_ptr(__p); \
57 (typeof(*(__p)) __kernel __force *)(__p); \
58})
59
60#define per_cpu_ptr(ptr, cpu) ({ (void)(cpu); VERIFY_PERCPU_PTR(ptr); })
61#define smp_processor_id() 0
62#define num_present_cpus() 1
63#define for_each_present_cpu(cpu) \
64 for ((cpu) = 0; (cpu) < 1; (cpu)++)
65
66#define NET_SKB_PAD max(32, MVPP2_CPU_D_CACHE_LINE_SIZE)
67
68#define CONFIG_NR_CPUS 1
69#define ETH_HLEN ETHER_HDR_SIZE /* Total octets in header */
70
71/* 2(HW hdr) 14(MAC hdr) 4(CRC) 32(extra for cache prefetch) */
72#define WRAP (2 + ETH_HLEN + 4 + 32)
73#define MTU 1500
74#define RX_BUFFER_SIZE (ALIGN(MTU + WRAP, ARCH_DMA_MINALIGN))
75
76#define MVPP2_SMI_TIMEOUT 10000
77
78/* RX Fifo Registers */
79#define MVPP2_RX_DATA_FIFO_SIZE_REG(port) (0x00 + 4 * (port))
80#define MVPP2_RX_ATTR_FIFO_SIZE_REG(port) (0x20 + 4 * (port))
81#define MVPP2_RX_MIN_PKT_SIZE_REG 0x60
82#define MVPP2_RX_FIFO_INIT_REG 0x64
83
84/* RX DMA Top Registers */
85#define MVPP2_RX_CTRL_REG(port) (0x140 + 4 * (port))
86#define MVPP2_RX_LOW_LATENCY_PKT_SIZE(s) (((s) & 0xfff) << 16)
87#define MVPP2_RX_USE_PSEUDO_FOR_CSUM_MASK BIT(31)
88#define MVPP2_POOL_BUF_SIZE_REG(pool) (0x180 + 4 * (pool))
89#define MVPP2_POOL_BUF_SIZE_OFFSET 5
90#define MVPP2_RXQ_CONFIG_REG(rxq) (0x800 + 4 * (rxq))
91#define MVPP2_SNOOP_PKT_SIZE_MASK 0x1ff
92#define MVPP2_SNOOP_BUF_HDR_MASK BIT(9)
93#define MVPP2_RXQ_POOL_SHORT_OFFS 20
Thomas Petazzoni8f3e4c32017-02-16 06:53:51 +010094#define MVPP21_RXQ_POOL_SHORT_MASK 0x700000
95#define MVPP22_RXQ_POOL_SHORT_MASK 0xf00000
Stefan Roese99d4c6d2016-02-10 07:22:10 +010096#define MVPP2_RXQ_POOL_LONG_OFFS 24
Thomas Petazzoni8f3e4c32017-02-16 06:53:51 +010097#define MVPP21_RXQ_POOL_LONG_MASK 0x7000000
98#define MVPP22_RXQ_POOL_LONG_MASK 0xf000000
Stefan Roese99d4c6d2016-02-10 07:22:10 +010099#define MVPP2_RXQ_PACKET_OFFSET_OFFS 28
100#define MVPP2_RXQ_PACKET_OFFSET_MASK 0x70000000
101#define MVPP2_RXQ_DISABLE_MASK BIT(31)
102
103/* Parser Registers */
104#define MVPP2_PRS_INIT_LOOKUP_REG 0x1000
105#define MVPP2_PRS_PORT_LU_MAX 0xf
106#define MVPP2_PRS_PORT_LU_MASK(port) (0xff << ((port) * 4))
107#define MVPP2_PRS_PORT_LU_VAL(port, val) ((val) << ((port) * 4))
108#define MVPP2_PRS_INIT_OFFS_REG(port) (0x1004 + ((port) & 4))
109#define MVPP2_PRS_INIT_OFF_MASK(port) (0x3f << (((port) % 4) * 8))
110#define MVPP2_PRS_INIT_OFF_VAL(port, val) ((val) << (((port) % 4) * 8))
111#define MVPP2_PRS_MAX_LOOP_REG(port) (0x100c + ((port) & 4))
112#define MVPP2_PRS_MAX_LOOP_MASK(port) (0xff << (((port) % 4) * 8))
113#define MVPP2_PRS_MAX_LOOP_VAL(port, val) ((val) << (((port) % 4) * 8))
114#define MVPP2_PRS_TCAM_IDX_REG 0x1100
115#define MVPP2_PRS_TCAM_DATA_REG(idx) (0x1104 + (idx) * 4)
116#define MVPP2_PRS_TCAM_INV_MASK BIT(31)
117#define MVPP2_PRS_SRAM_IDX_REG 0x1200
118#define MVPP2_PRS_SRAM_DATA_REG(idx) (0x1204 + (idx) * 4)
119#define MVPP2_PRS_TCAM_CTRL_REG 0x1230
120#define MVPP2_PRS_TCAM_EN_MASK BIT(0)
121
122/* Classifier Registers */
123#define MVPP2_CLS_MODE_REG 0x1800
124#define MVPP2_CLS_MODE_ACTIVE_MASK BIT(0)
125#define MVPP2_CLS_PORT_WAY_REG 0x1810
126#define MVPP2_CLS_PORT_WAY_MASK(port) (1 << (port))
127#define MVPP2_CLS_LKP_INDEX_REG 0x1814
128#define MVPP2_CLS_LKP_INDEX_WAY_OFFS 6
129#define MVPP2_CLS_LKP_TBL_REG 0x1818
130#define MVPP2_CLS_LKP_TBL_RXQ_MASK 0xff
131#define MVPP2_CLS_LKP_TBL_LOOKUP_EN_MASK BIT(25)
132#define MVPP2_CLS_FLOW_INDEX_REG 0x1820
133#define MVPP2_CLS_FLOW_TBL0_REG 0x1824
134#define MVPP2_CLS_FLOW_TBL1_REG 0x1828
135#define MVPP2_CLS_FLOW_TBL2_REG 0x182c
136#define MVPP2_CLS_OVERSIZE_RXQ_LOW_REG(port) (0x1980 + ((port) * 4))
137#define MVPP2_CLS_OVERSIZE_RXQ_LOW_BITS 3
138#define MVPP2_CLS_OVERSIZE_RXQ_LOW_MASK 0x7
139#define MVPP2_CLS_SWFWD_P2HQ_REG(port) (0x19b0 + ((port) * 4))
140#define MVPP2_CLS_SWFWD_PCTRL_REG 0x19d0
141#define MVPP2_CLS_SWFWD_PCTRL_MASK(port) (1 << (port))
142
143/* Descriptor Manager Top Registers */
144#define MVPP2_RXQ_NUM_REG 0x2040
145#define MVPP2_RXQ_DESC_ADDR_REG 0x2044
Thomas Petazzoni80350f52017-02-20 11:36:57 +0100146#define MVPP22_DESC_ADDR_OFFS 8
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100147#define MVPP2_RXQ_DESC_SIZE_REG 0x2048
148#define MVPP2_RXQ_DESC_SIZE_MASK 0x3ff0
149#define MVPP2_RXQ_STATUS_UPDATE_REG(rxq) (0x3000 + 4 * (rxq))
150#define MVPP2_RXQ_NUM_PROCESSED_OFFSET 0
151#define MVPP2_RXQ_NUM_NEW_OFFSET 16
152#define MVPP2_RXQ_STATUS_REG(rxq) (0x3400 + 4 * (rxq))
153#define MVPP2_RXQ_OCCUPIED_MASK 0x3fff
154#define MVPP2_RXQ_NON_OCCUPIED_OFFSET 16
155#define MVPP2_RXQ_NON_OCCUPIED_MASK 0x3fff0000
156#define MVPP2_RXQ_THRESH_REG 0x204c
157#define MVPP2_OCCUPIED_THRESH_OFFSET 0
158#define MVPP2_OCCUPIED_THRESH_MASK 0x3fff
159#define MVPP2_RXQ_INDEX_REG 0x2050
160#define MVPP2_TXQ_NUM_REG 0x2080
161#define MVPP2_TXQ_DESC_ADDR_REG 0x2084
162#define MVPP2_TXQ_DESC_SIZE_REG 0x2088
163#define MVPP2_TXQ_DESC_SIZE_MASK 0x3ff0
164#define MVPP2_AGGR_TXQ_UPDATE_REG 0x2090
165#define MVPP2_TXQ_THRESH_REG 0x2094
166#define MVPP2_TRANSMITTED_THRESH_OFFSET 16
167#define MVPP2_TRANSMITTED_THRESH_MASK 0x3fff0000
168#define MVPP2_TXQ_INDEX_REG 0x2098
169#define MVPP2_TXQ_PREF_BUF_REG 0x209c
170#define MVPP2_PREF_BUF_PTR(desc) ((desc) & 0xfff)
171#define MVPP2_PREF_BUF_SIZE_4 (BIT(12) | BIT(13))
172#define MVPP2_PREF_BUF_SIZE_16 (BIT(12) | BIT(14))
173#define MVPP2_PREF_BUF_THRESH(val) ((val) << 17)
174#define MVPP2_TXQ_DRAIN_EN_MASK BIT(31)
175#define MVPP2_TXQ_PENDING_REG 0x20a0
176#define MVPP2_TXQ_PENDING_MASK 0x3fff
177#define MVPP2_TXQ_INT_STATUS_REG 0x20a4
178#define MVPP2_TXQ_SENT_REG(txq) (0x3c00 + 4 * (txq))
179#define MVPP2_TRANSMITTED_COUNT_OFFSET 16
180#define MVPP2_TRANSMITTED_COUNT_MASK 0x3fff0000
181#define MVPP2_TXQ_RSVD_REQ_REG 0x20b0
182#define MVPP2_TXQ_RSVD_REQ_Q_OFFSET 16
183#define MVPP2_TXQ_RSVD_RSLT_REG 0x20b4
184#define MVPP2_TXQ_RSVD_RSLT_MASK 0x3fff
185#define MVPP2_TXQ_RSVD_CLR_REG 0x20b8
186#define MVPP2_TXQ_RSVD_CLR_OFFSET 16
187#define MVPP2_AGGR_TXQ_DESC_ADDR_REG(cpu) (0x2100 + 4 * (cpu))
Thomas Petazzoni80350f52017-02-20 11:36:57 +0100188#define MVPP22_AGGR_TXQ_DESC_ADDR_OFFS 8
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100189#define MVPP2_AGGR_TXQ_DESC_SIZE_REG(cpu) (0x2140 + 4 * (cpu))
190#define MVPP2_AGGR_TXQ_DESC_SIZE_MASK 0x3ff0
191#define MVPP2_AGGR_TXQ_STATUS_REG(cpu) (0x2180 + 4 * (cpu))
192#define MVPP2_AGGR_TXQ_PENDING_MASK 0x3fff
193#define MVPP2_AGGR_TXQ_INDEX_REG(cpu) (0x21c0 + 4 * (cpu))
194
195/* MBUS bridge registers */
196#define MVPP2_WIN_BASE(w) (0x4000 + ((w) << 2))
197#define MVPP2_WIN_SIZE(w) (0x4020 + ((w) << 2))
198#define MVPP2_WIN_REMAP(w) (0x4040 + ((w) << 2))
199#define MVPP2_BASE_ADDR_ENABLE 0x4060
200
Thomas Petazzonicdf77792017-02-16 08:41:07 +0100201/* AXI Bridge Registers */
202#define MVPP22_AXI_BM_WR_ATTR_REG 0x4100
203#define MVPP22_AXI_BM_RD_ATTR_REG 0x4104
204#define MVPP22_AXI_AGGRQ_DESCR_RD_ATTR_REG 0x4110
205#define MVPP22_AXI_TXQ_DESCR_WR_ATTR_REG 0x4114
206#define MVPP22_AXI_TXQ_DESCR_RD_ATTR_REG 0x4118
207#define MVPP22_AXI_RXQ_DESCR_WR_ATTR_REG 0x411c
208#define MVPP22_AXI_RX_DATA_WR_ATTR_REG 0x4120
209#define MVPP22_AXI_TX_DATA_RD_ATTR_REG 0x4130
210#define MVPP22_AXI_RD_NORMAL_CODE_REG 0x4150
211#define MVPP22_AXI_RD_SNOOP_CODE_REG 0x4154
212#define MVPP22_AXI_WR_NORMAL_CODE_REG 0x4160
213#define MVPP22_AXI_WR_SNOOP_CODE_REG 0x4164
214
215/* Values for AXI Bridge registers */
216#define MVPP22_AXI_ATTR_CACHE_OFFS 0
217#define MVPP22_AXI_ATTR_DOMAIN_OFFS 12
218
219#define MVPP22_AXI_CODE_CACHE_OFFS 0
220#define MVPP22_AXI_CODE_DOMAIN_OFFS 4
221
222#define MVPP22_AXI_CODE_CACHE_NON_CACHE 0x3
223#define MVPP22_AXI_CODE_CACHE_WR_CACHE 0x7
224#define MVPP22_AXI_CODE_CACHE_RD_CACHE 0xb
225
226#define MVPP22_AXI_CODE_DOMAIN_OUTER_DOM 2
227#define MVPP22_AXI_CODE_DOMAIN_SYSTEM 3
228
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100229/* Interrupt Cause and Mask registers */
230#define MVPP2_ISR_RX_THRESHOLD_REG(rxq) (0x5200 + 4 * (rxq))
Thomas Petazzonibc0bbf42017-02-16 08:46:37 +0100231#define MVPP21_ISR_RXQ_GROUP_REG(rxq) (0x5400 + 4 * (rxq))
232
233#define MVPP22_ISR_RXQ_GROUP_INDEX_REG 0x5400
234#define MVPP22_ISR_RXQ_GROUP_INDEX_SUBGROUP_MASK 0xf
235#define MVPP22_ISR_RXQ_GROUP_INDEX_GROUP_MASK 0x380
236#define MVPP22_ISR_RXQ_GROUP_INDEX_GROUP_OFFSET 7
237
238#define MVPP22_ISR_RXQ_GROUP_INDEX_SUBGROUP_MASK 0xf
239#define MVPP22_ISR_RXQ_GROUP_INDEX_GROUP_MASK 0x380
240
241#define MVPP22_ISR_RXQ_SUB_GROUP_CONFIG_REG 0x5404
242#define MVPP22_ISR_RXQ_SUB_GROUP_STARTQ_MASK 0x1f
243#define MVPP22_ISR_RXQ_SUB_GROUP_SIZE_MASK 0xf00
244#define MVPP22_ISR_RXQ_SUB_GROUP_SIZE_OFFSET 8
245
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100246#define MVPP2_ISR_ENABLE_REG(port) (0x5420 + 4 * (port))
247#define MVPP2_ISR_ENABLE_INTERRUPT(mask) ((mask) & 0xffff)
248#define MVPP2_ISR_DISABLE_INTERRUPT(mask) (((mask) << 16) & 0xffff0000)
249#define MVPP2_ISR_RX_TX_CAUSE_REG(port) (0x5480 + 4 * (port))
250#define MVPP2_CAUSE_RXQ_OCCUP_DESC_ALL_MASK 0xffff
251#define MVPP2_CAUSE_TXQ_OCCUP_DESC_ALL_MASK 0xff0000
252#define MVPP2_CAUSE_RX_FIFO_OVERRUN_MASK BIT(24)
253#define MVPP2_CAUSE_FCS_ERR_MASK BIT(25)
254#define MVPP2_CAUSE_TX_FIFO_UNDERRUN_MASK BIT(26)
255#define MVPP2_CAUSE_TX_EXCEPTION_SUM_MASK BIT(29)
256#define MVPP2_CAUSE_RX_EXCEPTION_SUM_MASK BIT(30)
257#define MVPP2_CAUSE_MISC_SUM_MASK BIT(31)
258#define MVPP2_ISR_RX_TX_MASK_REG(port) (0x54a0 + 4 * (port))
259#define MVPP2_ISR_PON_RX_TX_MASK_REG 0x54bc
260#define MVPP2_PON_CAUSE_RXQ_OCCUP_DESC_ALL_MASK 0xffff
261#define MVPP2_PON_CAUSE_TXP_OCCUP_DESC_ALL_MASK 0x3fc00000
262#define MVPP2_PON_CAUSE_MISC_SUM_MASK BIT(31)
263#define MVPP2_ISR_MISC_CAUSE_REG 0x55b0
264
265/* Buffer Manager registers */
266#define MVPP2_BM_POOL_BASE_REG(pool) (0x6000 + ((pool) * 4))
267#define MVPP2_BM_POOL_BASE_ADDR_MASK 0xfffff80
268#define MVPP2_BM_POOL_SIZE_REG(pool) (0x6040 + ((pool) * 4))
269#define MVPP2_BM_POOL_SIZE_MASK 0xfff0
270#define MVPP2_BM_POOL_READ_PTR_REG(pool) (0x6080 + ((pool) * 4))
271#define MVPP2_BM_POOL_GET_READ_PTR_MASK 0xfff0
272#define MVPP2_BM_POOL_PTRS_NUM_REG(pool) (0x60c0 + ((pool) * 4))
273#define MVPP2_BM_POOL_PTRS_NUM_MASK 0xfff0
274#define MVPP2_BM_BPPI_READ_PTR_REG(pool) (0x6100 + ((pool) * 4))
275#define MVPP2_BM_BPPI_PTRS_NUM_REG(pool) (0x6140 + ((pool) * 4))
276#define MVPP2_BM_BPPI_PTR_NUM_MASK 0x7ff
277#define MVPP2_BM_BPPI_PREFETCH_FULL_MASK BIT(16)
278#define MVPP2_BM_POOL_CTRL_REG(pool) (0x6200 + ((pool) * 4))
279#define MVPP2_BM_START_MASK BIT(0)
280#define MVPP2_BM_STOP_MASK BIT(1)
281#define MVPP2_BM_STATE_MASK BIT(4)
282#define MVPP2_BM_LOW_THRESH_OFFS 8
283#define MVPP2_BM_LOW_THRESH_MASK 0x7f00
284#define MVPP2_BM_LOW_THRESH_VALUE(val) ((val) << \
285 MVPP2_BM_LOW_THRESH_OFFS)
286#define MVPP2_BM_HIGH_THRESH_OFFS 16
287#define MVPP2_BM_HIGH_THRESH_MASK 0x7f0000
288#define MVPP2_BM_HIGH_THRESH_VALUE(val) ((val) << \
289 MVPP2_BM_HIGH_THRESH_OFFS)
290#define MVPP2_BM_INTR_CAUSE_REG(pool) (0x6240 + ((pool) * 4))
291#define MVPP2_BM_RELEASED_DELAY_MASK BIT(0)
292#define MVPP2_BM_ALLOC_FAILED_MASK BIT(1)
293#define MVPP2_BM_BPPE_EMPTY_MASK BIT(2)
294#define MVPP2_BM_BPPE_FULL_MASK BIT(3)
295#define MVPP2_BM_AVAILABLE_BP_LOW_MASK BIT(4)
296#define MVPP2_BM_INTR_MASK_REG(pool) (0x6280 + ((pool) * 4))
297#define MVPP2_BM_PHY_ALLOC_REG(pool) (0x6400 + ((pool) * 4))
298#define MVPP2_BM_PHY_ALLOC_GRNTD_MASK BIT(0)
299#define MVPP2_BM_VIRT_ALLOC_REG 0x6440
Thomas Petazzonic8feeb22017-02-20 11:29:16 +0100300#define MVPP2_BM_ADDR_HIGH_ALLOC 0x6444
301#define MVPP2_BM_ADDR_HIGH_PHYS_MASK 0xff
302#define MVPP2_BM_ADDR_HIGH_VIRT_MASK 0xff00
303#define MVPP2_BM_ADDR_HIGH_VIRT_SHIFT 8
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100304#define MVPP2_BM_PHY_RLS_REG(pool) (0x6480 + ((pool) * 4))
305#define MVPP2_BM_PHY_RLS_MC_BUFF_MASK BIT(0)
306#define MVPP2_BM_PHY_RLS_PRIO_EN_MASK BIT(1)
307#define MVPP2_BM_PHY_RLS_GRNTD_MASK BIT(2)
308#define MVPP2_BM_VIRT_RLS_REG 0x64c0
Thomas Petazzonic8feeb22017-02-20 11:29:16 +0100309#define MVPP21_BM_MC_RLS_REG 0x64c4
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100310#define MVPP2_BM_MC_ID_MASK 0xfff
311#define MVPP2_BM_FORCE_RELEASE_MASK BIT(12)
Thomas Petazzonic8feeb22017-02-20 11:29:16 +0100312#define MVPP22_BM_ADDR_HIGH_RLS_REG 0x64c4
313#define MVPP22_BM_ADDR_HIGH_PHYS_RLS_MASK 0xff
314#define MVPP22_BM_ADDR_HIGH_VIRT_RLS_MASK 0xff00
315#define MVPP22_BM_ADDR_HIGH_VIRT_RLS_SHIFT 8
316#define MVPP22_BM_MC_RLS_REG 0x64d4
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100317
318/* TX Scheduler registers */
319#define MVPP2_TXP_SCHED_PORT_INDEX_REG 0x8000
320#define MVPP2_TXP_SCHED_Q_CMD_REG 0x8004
321#define MVPP2_TXP_SCHED_ENQ_MASK 0xff
322#define MVPP2_TXP_SCHED_DISQ_OFFSET 8
323#define MVPP2_TXP_SCHED_CMD_1_REG 0x8010
324#define MVPP2_TXP_SCHED_PERIOD_REG 0x8018
325#define MVPP2_TXP_SCHED_MTU_REG 0x801c
326#define MVPP2_TXP_MTU_MAX 0x7FFFF
327#define MVPP2_TXP_SCHED_REFILL_REG 0x8020
328#define MVPP2_TXP_REFILL_TOKENS_ALL_MASK 0x7ffff
329#define MVPP2_TXP_REFILL_PERIOD_ALL_MASK 0x3ff00000
330#define MVPP2_TXP_REFILL_PERIOD_MASK(v) ((v) << 20)
331#define MVPP2_TXP_SCHED_TOKEN_SIZE_REG 0x8024
332#define MVPP2_TXP_TOKEN_SIZE_MAX 0xffffffff
333#define MVPP2_TXQ_SCHED_REFILL_REG(q) (0x8040 + ((q) << 2))
334#define MVPP2_TXQ_REFILL_TOKENS_ALL_MASK 0x7ffff
335#define MVPP2_TXQ_REFILL_PERIOD_ALL_MASK 0x3ff00000
336#define MVPP2_TXQ_REFILL_PERIOD_MASK(v) ((v) << 20)
337#define MVPP2_TXQ_SCHED_TOKEN_SIZE_REG(q) (0x8060 + ((q) << 2))
338#define MVPP2_TXQ_TOKEN_SIZE_MAX 0x7fffffff
339#define MVPP2_TXQ_SCHED_TOKEN_CNTR_REG(q) (0x8080 + ((q) << 2))
340#define MVPP2_TXQ_TOKEN_CNTR_MAX 0xffffffff
341
342/* TX general registers */
343#define MVPP2_TX_SNOOP_REG 0x8800
344#define MVPP2_TX_PORT_FLUSH_REG 0x8810
345#define MVPP2_TX_PORT_FLUSH_MASK(port) (1 << (port))
346
347/* LMS registers */
348#define MVPP2_SRC_ADDR_MIDDLE 0x24
349#define MVPP2_SRC_ADDR_HIGH 0x28
350#define MVPP2_PHY_AN_CFG0_REG 0x34
351#define MVPP2_PHY_AN_STOP_SMI0_MASK BIT(7)
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100352#define MVPP2_MNG_EXTENDED_GLOBAL_CTRL_REG 0x305c
Thomas Petazzoni6b28f422017-02-15 12:16:23 +0100353#define MVPP2_EXT_GLOBAL_CTRL_DEFAULT 0x27
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100354
355/* Per-port registers */
356#define MVPP2_GMAC_CTRL_0_REG 0x0
357#define MVPP2_GMAC_PORT_EN_MASK BIT(0)
358#define MVPP2_GMAC_MAX_RX_SIZE_OFFS 2
359#define MVPP2_GMAC_MAX_RX_SIZE_MASK 0x7ffc
360#define MVPP2_GMAC_MIB_CNTR_EN_MASK BIT(15)
361#define MVPP2_GMAC_CTRL_1_REG 0x4
362#define MVPP2_GMAC_PERIODIC_XON_EN_MASK BIT(1)
363#define MVPP2_GMAC_GMII_LB_EN_MASK BIT(5)
364#define MVPP2_GMAC_PCS_LB_EN_BIT 6
365#define MVPP2_GMAC_PCS_LB_EN_MASK BIT(6)
366#define MVPP2_GMAC_SA_LOW_OFFS 7
367#define MVPP2_GMAC_CTRL_2_REG 0x8
368#define MVPP2_GMAC_INBAND_AN_MASK BIT(0)
369#define MVPP2_GMAC_PCS_ENABLE_MASK BIT(3)
370#define MVPP2_GMAC_PORT_RGMII_MASK BIT(4)
371#define MVPP2_GMAC_PORT_RESET_MASK BIT(6)
372#define MVPP2_GMAC_AUTONEG_CONFIG 0xc
373#define MVPP2_GMAC_FORCE_LINK_DOWN BIT(0)
374#define MVPP2_GMAC_FORCE_LINK_PASS BIT(1)
375#define MVPP2_GMAC_CONFIG_MII_SPEED BIT(5)
376#define MVPP2_GMAC_CONFIG_GMII_SPEED BIT(6)
377#define MVPP2_GMAC_AN_SPEED_EN BIT(7)
378#define MVPP2_GMAC_FC_ADV_EN BIT(9)
379#define MVPP2_GMAC_CONFIG_FULL_DUPLEX BIT(12)
380#define MVPP2_GMAC_AN_DUPLEX_EN BIT(13)
381#define MVPP2_GMAC_PORT_FIFO_CFG_1_REG 0x1c
382#define MVPP2_GMAC_TX_FIFO_MIN_TH_OFFS 6
383#define MVPP2_GMAC_TX_FIFO_MIN_TH_ALL_MASK 0x1fc0
384#define MVPP2_GMAC_TX_FIFO_MIN_TH_MASK(v) (((v) << 6) & \
385 MVPP2_GMAC_TX_FIFO_MIN_TH_ALL_MASK)
386
Thomas Petazzoni7c7311f2017-02-20 11:42:51 +0100387#define MVPP22_SMI_MISC_CFG_REG 0x1204
388#define MVPP22_SMI_POLLING_EN BIT(10)
389
Thomas Petazzoni26a52782017-02-16 08:03:37 +0100390#define MVPP22_PORT_BASE 0x30e00
391#define MVPP22_PORT_OFFSET 0x1000
392
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100393#define MVPP2_CAUSE_TXQ_SENT_DESC_ALL_MASK 0xff
394
395/* Descriptor ring Macros */
396#define MVPP2_QUEUE_NEXT_DESC(q, index) \
397 (((index) < (q)->last_desc) ? ((index) + 1) : 0)
398
399/* SMI: 0xc0054 -> offset 0x54 to lms_base */
Stefan Roese0a61e9a2017-02-16 08:31:32 +0100400#define MVPP21_SMI 0x0054
401/* PP2.2: SMI: 0x12a200 -> offset 0x1200 to iface_base */
402#define MVPP22_SMI 0x1200
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100403#define MVPP2_PHY_REG_MASK 0x1f
404/* SMI register fields */
405#define MVPP2_SMI_DATA_OFFS 0 /* Data */
406#define MVPP2_SMI_DATA_MASK (0xffff << MVPP2_SMI_DATA_OFFS)
407#define MVPP2_SMI_DEV_ADDR_OFFS 16 /* PHY device address */
408#define MVPP2_SMI_REG_ADDR_OFFS 21 /* PHY device reg addr*/
409#define MVPP2_SMI_OPCODE_OFFS 26 /* Write/Read opcode */
410#define MVPP2_SMI_OPCODE_READ (1 << MVPP2_SMI_OPCODE_OFFS)
411#define MVPP2_SMI_READ_VALID (1 << 27) /* Read Valid */
412#define MVPP2_SMI_BUSY (1 << 28) /* Busy */
413
414#define MVPP2_PHY_ADDR_MASK 0x1f
415#define MVPP2_PHY_REG_MASK 0x1f
416
417/* Various constants */
418
419/* Coalescing */
420#define MVPP2_TXDONE_COAL_PKTS_THRESH 15
421#define MVPP2_TXDONE_HRTIMER_PERIOD_NS 1000000UL
422#define MVPP2_RX_COAL_PKTS 32
423#define MVPP2_RX_COAL_USEC 100
424
425/* The two bytes Marvell header. Either contains a special value used
426 * by Marvell switches when a specific hardware mode is enabled (not
427 * supported by this driver) or is filled automatically by zeroes on
428 * the RX side. Those two bytes being at the front of the Ethernet
429 * header, they allow to have the IP header aligned on a 4 bytes
430 * boundary automatically: the hardware skips those two bytes on its
431 * own.
432 */
433#define MVPP2_MH_SIZE 2
434#define MVPP2_ETH_TYPE_LEN 2
435#define MVPP2_PPPOE_HDR_SIZE 8
436#define MVPP2_VLAN_TAG_LEN 4
437
438/* Lbtd 802.3 type */
439#define MVPP2_IP_LBDT_TYPE 0xfffa
440
441#define MVPP2_CPU_D_CACHE_LINE_SIZE 32
442#define MVPP2_TX_CSUM_MAX_SIZE 9800
443
444/* Timeout constants */
445#define MVPP2_TX_DISABLE_TIMEOUT_MSEC 1000
446#define MVPP2_TX_PENDING_TIMEOUT_MSEC 1000
447
448#define MVPP2_TX_MTU_MAX 0x7ffff
449
450/* Maximum number of T-CONTs of PON port */
451#define MVPP2_MAX_TCONT 16
452
453/* Maximum number of supported ports */
454#define MVPP2_MAX_PORTS 4
455
456/* Maximum number of TXQs used by single port */
457#define MVPP2_MAX_TXQ 8
458
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100459/* Default number of TXQs in use */
460#define MVPP2_DEFAULT_TXQ 1
461
462/* Dfault number of RXQs in use */
463#define MVPP2_DEFAULT_RXQ 1
464#define CONFIG_MV_ETH_RXQ 8 /* increment by 8 */
465
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100466/* Max number of Rx descriptors */
467#define MVPP2_MAX_RXD 16
468
469/* Max number of Tx descriptors */
470#define MVPP2_MAX_TXD 16
471
472/* Amount of Tx descriptors that can be reserved at once by CPU */
473#define MVPP2_CPU_DESC_CHUNK 64
474
475/* Max number of Tx descriptors in each aggregated queue */
476#define MVPP2_AGGR_TXQ_SIZE 256
477
478/* Descriptor aligned size */
479#define MVPP2_DESC_ALIGNED_SIZE 32
480
481/* Descriptor alignment mask */
482#define MVPP2_TX_DESC_ALIGN (MVPP2_DESC_ALIGNED_SIZE - 1)
483
484/* RX FIFO constants */
485#define MVPP2_RX_FIFO_PORT_DATA_SIZE 0x2000
486#define MVPP2_RX_FIFO_PORT_ATTR_SIZE 0x80
487#define MVPP2_RX_FIFO_PORT_MIN_PKT 0x80
488
489/* RX buffer constants */
490#define MVPP2_SKB_SHINFO_SIZE \
491 0
492
493#define MVPP2_RX_PKT_SIZE(mtu) \
494 ALIGN((mtu) + MVPP2_MH_SIZE + MVPP2_VLAN_TAG_LEN + \
495 ETH_HLEN + ETH_FCS_LEN, MVPP2_CPU_D_CACHE_LINE_SIZE)
496
497#define MVPP2_RX_BUF_SIZE(pkt_size) ((pkt_size) + NET_SKB_PAD)
498#define MVPP2_RX_TOTAL_SIZE(buf_size) ((buf_size) + MVPP2_SKB_SHINFO_SIZE)
499#define MVPP2_RX_MAX_PKT_SIZE(total_size) \
500 ((total_size) - NET_SKB_PAD - MVPP2_SKB_SHINFO_SIZE)
501
502#define MVPP2_BIT_TO_BYTE(bit) ((bit) / 8)
503
504/* IPv6 max L3 address size */
505#define MVPP2_MAX_L3_ADDR_SIZE 16
506
507/* Port flags */
508#define MVPP2_F_LOOPBACK BIT(0)
509
510/* Marvell tag types */
511enum mvpp2_tag_type {
512 MVPP2_TAG_TYPE_NONE = 0,
513 MVPP2_TAG_TYPE_MH = 1,
514 MVPP2_TAG_TYPE_DSA = 2,
515 MVPP2_TAG_TYPE_EDSA = 3,
516 MVPP2_TAG_TYPE_VLAN = 4,
517 MVPP2_TAG_TYPE_LAST = 5
518};
519
520/* Parser constants */
521#define MVPP2_PRS_TCAM_SRAM_SIZE 256
522#define MVPP2_PRS_TCAM_WORDS 6
523#define MVPP2_PRS_SRAM_WORDS 4
524#define MVPP2_PRS_FLOW_ID_SIZE 64
525#define MVPP2_PRS_FLOW_ID_MASK 0x3f
526#define MVPP2_PRS_TCAM_ENTRY_INVALID 1
527#define MVPP2_PRS_TCAM_DSA_TAGGED_BIT BIT(5)
528#define MVPP2_PRS_IPV4_HEAD 0x40
529#define MVPP2_PRS_IPV4_HEAD_MASK 0xf0
530#define MVPP2_PRS_IPV4_MC 0xe0
531#define MVPP2_PRS_IPV4_MC_MASK 0xf0
532#define MVPP2_PRS_IPV4_BC_MASK 0xff
533#define MVPP2_PRS_IPV4_IHL 0x5
534#define MVPP2_PRS_IPV4_IHL_MASK 0xf
535#define MVPP2_PRS_IPV6_MC 0xff
536#define MVPP2_PRS_IPV6_MC_MASK 0xff
537#define MVPP2_PRS_IPV6_HOP_MASK 0xff
538#define MVPP2_PRS_TCAM_PROTO_MASK 0xff
539#define MVPP2_PRS_TCAM_PROTO_MASK_L 0x3f
540#define MVPP2_PRS_DBL_VLANS_MAX 100
541
542/* Tcam structure:
543 * - lookup ID - 4 bits
544 * - port ID - 1 byte
545 * - additional information - 1 byte
546 * - header data - 8 bytes
547 * The fields are represented by MVPP2_PRS_TCAM_DATA_REG(5)->(0).
548 */
549#define MVPP2_PRS_AI_BITS 8
550#define MVPP2_PRS_PORT_MASK 0xff
551#define MVPP2_PRS_LU_MASK 0xf
552#define MVPP2_PRS_TCAM_DATA_BYTE(offs) \
553 (((offs) - ((offs) % 2)) * 2 + ((offs) % 2))
554#define MVPP2_PRS_TCAM_DATA_BYTE_EN(offs) \
555 (((offs) * 2) - ((offs) % 2) + 2)
556#define MVPP2_PRS_TCAM_AI_BYTE 16
557#define MVPP2_PRS_TCAM_PORT_BYTE 17
558#define MVPP2_PRS_TCAM_LU_BYTE 20
559#define MVPP2_PRS_TCAM_EN_OFFS(offs) ((offs) + 2)
560#define MVPP2_PRS_TCAM_INV_WORD 5
561/* Tcam entries ID */
562#define MVPP2_PE_DROP_ALL 0
563#define MVPP2_PE_FIRST_FREE_TID 1
564#define MVPP2_PE_LAST_FREE_TID (MVPP2_PRS_TCAM_SRAM_SIZE - 31)
565#define MVPP2_PE_IP6_EXT_PROTO_UN (MVPP2_PRS_TCAM_SRAM_SIZE - 30)
566#define MVPP2_PE_MAC_MC_IP6 (MVPP2_PRS_TCAM_SRAM_SIZE - 29)
567#define MVPP2_PE_IP6_ADDR_UN (MVPP2_PRS_TCAM_SRAM_SIZE - 28)
568#define MVPP2_PE_IP4_ADDR_UN (MVPP2_PRS_TCAM_SRAM_SIZE - 27)
569#define MVPP2_PE_LAST_DEFAULT_FLOW (MVPP2_PRS_TCAM_SRAM_SIZE - 26)
570#define MVPP2_PE_FIRST_DEFAULT_FLOW (MVPP2_PRS_TCAM_SRAM_SIZE - 19)
571#define MVPP2_PE_EDSA_TAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 18)
572#define MVPP2_PE_EDSA_UNTAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 17)
573#define MVPP2_PE_DSA_TAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 16)
574#define MVPP2_PE_DSA_UNTAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 15)
575#define MVPP2_PE_ETYPE_EDSA_TAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 14)
576#define MVPP2_PE_ETYPE_EDSA_UNTAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 13)
577#define MVPP2_PE_ETYPE_DSA_TAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 12)
578#define MVPP2_PE_ETYPE_DSA_UNTAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 11)
579#define MVPP2_PE_MH_DEFAULT (MVPP2_PRS_TCAM_SRAM_SIZE - 10)
580#define MVPP2_PE_DSA_DEFAULT (MVPP2_PRS_TCAM_SRAM_SIZE - 9)
581#define MVPP2_PE_IP6_PROTO_UN (MVPP2_PRS_TCAM_SRAM_SIZE - 8)
582#define MVPP2_PE_IP4_PROTO_UN (MVPP2_PRS_TCAM_SRAM_SIZE - 7)
583#define MVPP2_PE_ETH_TYPE_UN (MVPP2_PRS_TCAM_SRAM_SIZE - 6)
584#define MVPP2_PE_VLAN_DBL (MVPP2_PRS_TCAM_SRAM_SIZE - 5)
585#define MVPP2_PE_VLAN_NONE (MVPP2_PRS_TCAM_SRAM_SIZE - 4)
586#define MVPP2_PE_MAC_MC_ALL (MVPP2_PRS_TCAM_SRAM_SIZE - 3)
587#define MVPP2_PE_MAC_PROMISCUOUS (MVPP2_PRS_TCAM_SRAM_SIZE - 2)
588#define MVPP2_PE_MAC_NON_PROMISCUOUS (MVPP2_PRS_TCAM_SRAM_SIZE - 1)
589
590/* Sram structure
591 * The fields are represented by MVPP2_PRS_TCAM_DATA_REG(3)->(0).
592 */
593#define MVPP2_PRS_SRAM_RI_OFFS 0
594#define MVPP2_PRS_SRAM_RI_WORD 0
595#define MVPP2_PRS_SRAM_RI_CTRL_OFFS 32
596#define MVPP2_PRS_SRAM_RI_CTRL_WORD 1
597#define MVPP2_PRS_SRAM_RI_CTRL_BITS 32
598#define MVPP2_PRS_SRAM_SHIFT_OFFS 64
599#define MVPP2_PRS_SRAM_SHIFT_SIGN_BIT 72
600#define MVPP2_PRS_SRAM_UDF_OFFS 73
601#define MVPP2_PRS_SRAM_UDF_BITS 8
602#define MVPP2_PRS_SRAM_UDF_MASK 0xff
603#define MVPP2_PRS_SRAM_UDF_SIGN_BIT 81
604#define MVPP2_PRS_SRAM_UDF_TYPE_OFFS 82
605#define MVPP2_PRS_SRAM_UDF_TYPE_MASK 0x7
606#define MVPP2_PRS_SRAM_UDF_TYPE_L3 1
607#define MVPP2_PRS_SRAM_UDF_TYPE_L4 4
608#define MVPP2_PRS_SRAM_OP_SEL_SHIFT_OFFS 85
609#define MVPP2_PRS_SRAM_OP_SEL_SHIFT_MASK 0x3
610#define MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD 1
611#define MVPP2_PRS_SRAM_OP_SEL_SHIFT_IP4_ADD 2
612#define MVPP2_PRS_SRAM_OP_SEL_SHIFT_IP6_ADD 3
613#define MVPP2_PRS_SRAM_OP_SEL_UDF_OFFS 87
614#define MVPP2_PRS_SRAM_OP_SEL_UDF_BITS 2
615#define MVPP2_PRS_SRAM_OP_SEL_UDF_MASK 0x3
616#define MVPP2_PRS_SRAM_OP_SEL_UDF_ADD 0
617#define MVPP2_PRS_SRAM_OP_SEL_UDF_IP4_ADD 2
618#define MVPP2_PRS_SRAM_OP_SEL_UDF_IP6_ADD 3
619#define MVPP2_PRS_SRAM_OP_SEL_BASE_OFFS 89
620#define MVPP2_PRS_SRAM_AI_OFFS 90
621#define MVPP2_PRS_SRAM_AI_CTRL_OFFS 98
622#define MVPP2_PRS_SRAM_AI_CTRL_BITS 8
623#define MVPP2_PRS_SRAM_AI_MASK 0xff
624#define MVPP2_PRS_SRAM_NEXT_LU_OFFS 106
625#define MVPP2_PRS_SRAM_NEXT_LU_MASK 0xf
626#define MVPP2_PRS_SRAM_LU_DONE_BIT 110
627#define MVPP2_PRS_SRAM_LU_GEN_BIT 111
628
629/* Sram result info bits assignment */
630#define MVPP2_PRS_RI_MAC_ME_MASK 0x1
631#define MVPP2_PRS_RI_DSA_MASK 0x2
Thomas Petazzonic0abc762017-02-15 12:19:36 +0100632#define MVPP2_PRS_RI_VLAN_MASK (BIT(2) | BIT(3))
633#define MVPP2_PRS_RI_VLAN_NONE 0x0
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100634#define MVPP2_PRS_RI_VLAN_SINGLE BIT(2)
635#define MVPP2_PRS_RI_VLAN_DOUBLE BIT(3)
636#define MVPP2_PRS_RI_VLAN_TRIPLE (BIT(2) | BIT(3))
637#define MVPP2_PRS_RI_CPU_CODE_MASK 0x70
638#define MVPP2_PRS_RI_CPU_CODE_RX_SPEC BIT(4)
Thomas Petazzonic0abc762017-02-15 12:19:36 +0100639#define MVPP2_PRS_RI_L2_CAST_MASK (BIT(9) | BIT(10))
640#define MVPP2_PRS_RI_L2_UCAST 0x0
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100641#define MVPP2_PRS_RI_L2_MCAST BIT(9)
642#define MVPP2_PRS_RI_L2_BCAST BIT(10)
643#define MVPP2_PRS_RI_PPPOE_MASK 0x800
Thomas Petazzonic0abc762017-02-15 12:19:36 +0100644#define MVPP2_PRS_RI_L3_PROTO_MASK (BIT(12) | BIT(13) | BIT(14))
645#define MVPP2_PRS_RI_L3_UN 0x0
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100646#define MVPP2_PRS_RI_L3_IP4 BIT(12)
647#define MVPP2_PRS_RI_L3_IP4_OPT BIT(13)
648#define MVPP2_PRS_RI_L3_IP4_OTHER (BIT(12) | BIT(13))
649#define MVPP2_PRS_RI_L3_IP6 BIT(14)
650#define MVPP2_PRS_RI_L3_IP6_EXT (BIT(12) | BIT(14))
651#define MVPP2_PRS_RI_L3_ARP (BIT(13) | BIT(14))
Thomas Petazzonic0abc762017-02-15 12:19:36 +0100652#define MVPP2_PRS_RI_L3_ADDR_MASK (BIT(15) | BIT(16))
653#define MVPP2_PRS_RI_L3_UCAST 0x0
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100654#define MVPP2_PRS_RI_L3_MCAST BIT(15)
655#define MVPP2_PRS_RI_L3_BCAST (BIT(15) | BIT(16))
656#define MVPP2_PRS_RI_IP_FRAG_MASK 0x20000
657#define MVPP2_PRS_RI_UDF3_MASK 0x300000
658#define MVPP2_PRS_RI_UDF3_RX_SPECIAL BIT(21)
659#define MVPP2_PRS_RI_L4_PROTO_MASK 0x1c00000
660#define MVPP2_PRS_RI_L4_TCP BIT(22)
661#define MVPP2_PRS_RI_L4_UDP BIT(23)
662#define MVPP2_PRS_RI_L4_OTHER (BIT(22) | BIT(23))
663#define MVPP2_PRS_RI_UDF7_MASK 0x60000000
664#define MVPP2_PRS_RI_UDF7_IP6_LITE BIT(29)
665#define MVPP2_PRS_RI_DROP_MASK 0x80000000
666
667/* Sram additional info bits assignment */
668#define MVPP2_PRS_IPV4_DIP_AI_BIT BIT(0)
669#define MVPP2_PRS_IPV6_NO_EXT_AI_BIT BIT(0)
670#define MVPP2_PRS_IPV6_EXT_AI_BIT BIT(1)
671#define MVPP2_PRS_IPV6_EXT_AH_AI_BIT BIT(2)
672#define MVPP2_PRS_IPV6_EXT_AH_LEN_AI_BIT BIT(3)
673#define MVPP2_PRS_IPV6_EXT_AH_L4_AI_BIT BIT(4)
674#define MVPP2_PRS_SINGLE_VLAN_AI 0
675#define MVPP2_PRS_DBL_VLAN_AI_BIT BIT(7)
676
677/* DSA/EDSA type */
678#define MVPP2_PRS_TAGGED true
679#define MVPP2_PRS_UNTAGGED false
680#define MVPP2_PRS_EDSA true
681#define MVPP2_PRS_DSA false
682
683/* MAC entries, shadow udf */
684enum mvpp2_prs_udf {
685 MVPP2_PRS_UDF_MAC_DEF,
686 MVPP2_PRS_UDF_MAC_RANGE,
687 MVPP2_PRS_UDF_L2_DEF,
688 MVPP2_PRS_UDF_L2_DEF_COPY,
689 MVPP2_PRS_UDF_L2_USER,
690};
691
692/* Lookup ID */
693enum mvpp2_prs_lookup {
694 MVPP2_PRS_LU_MH,
695 MVPP2_PRS_LU_MAC,
696 MVPP2_PRS_LU_DSA,
697 MVPP2_PRS_LU_VLAN,
698 MVPP2_PRS_LU_L2,
699 MVPP2_PRS_LU_PPPOE,
700 MVPP2_PRS_LU_IP4,
701 MVPP2_PRS_LU_IP6,
702 MVPP2_PRS_LU_FLOWS,
703 MVPP2_PRS_LU_LAST,
704};
705
706/* L3 cast enum */
707enum mvpp2_prs_l3_cast {
708 MVPP2_PRS_L3_UNI_CAST,
709 MVPP2_PRS_L3_MULTI_CAST,
710 MVPP2_PRS_L3_BROAD_CAST
711};
712
713/* Classifier constants */
714#define MVPP2_CLS_FLOWS_TBL_SIZE 512
715#define MVPP2_CLS_FLOWS_TBL_DATA_WORDS 3
716#define MVPP2_CLS_LKP_TBL_SIZE 64
717
718/* BM constants */
719#define MVPP2_BM_POOLS_NUM 1
720#define MVPP2_BM_LONG_BUF_NUM 16
721#define MVPP2_BM_SHORT_BUF_NUM 16
722#define MVPP2_BM_POOL_SIZE_MAX (16*1024 - MVPP2_BM_POOL_PTR_ALIGN/4)
723#define MVPP2_BM_POOL_PTR_ALIGN 128
724#define MVPP2_BM_SWF_LONG_POOL(port) 0
725
726/* BM cookie (32 bits) definition */
727#define MVPP2_BM_COOKIE_POOL_OFFS 8
728#define MVPP2_BM_COOKIE_CPU_OFFS 24
729
730/* BM short pool packet size
731 * These value assure that for SWF the total number
732 * of bytes allocated for each buffer will be 512
733 */
734#define MVPP2_BM_SHORT_PKT_SIZE MVPP2_RX_MAX_PKT_SIZE(512)
735
736enum mvpp2_bm_type {
737 MVPP2_BM_FREE,
738 MVPP2_BM_SWF_LONG,
739 MVPP2_BM_SWF_SHORT
740};
741
742/* Definitions */
743
744/* Shared Packet Processor resources */
745struct mvpp2 {
746 /* Shared registers' base addresses */
747 void __iomem *base;
748 void __iomem *lms_base;
Thomas Petazzoni26a52782017-02-16 08:03:37 +0100749 void __iomem *iface_base;
Stefan Roese0a61e9a2017-02-16 08:31:32 +0100750 void __iomem *mdio_base;
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100751
752 /* List of pointers to port structures */
753 struct mvpp2_port **port_list;
754
755 /* Aggregated TXQs */
756 struct mvpp2_tx_queue *aggr_txqs;
757
758 /* BM pools */
759 struct mvpp2_bm_pool *bm_pools;
760
761 /* PRS shadow table */
762 struct mvpp2_prs_shadow *prs_shadow;
763 /* PRS auxiliary table for double vlan entries control */
764 bool *prs_double_vlans;
765
766 /* Tclk value */
767 u32 tclk;
768
Thomas Petazzoni16a98982017-02-15 14:08:59 +0100769 /* HW version */
770 enum { MVPP21, MVPP22 } hw_version;
771
Thomas Petazzoni09b3f942017-02-16 09:03:16 +0100772 /* Maximum number of RXQs per port */
773 unsigned int max_port_rxqs;
774
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100775 struct mii_dev *bus;
776};
777
778struct mvpp2_pcpu_stats {
779 u64 rx_packets;
780 u64 rx_bytes;
781 u64 tx_packets;
782 u64 tx_bytes;
783};
784
785struct mvpp2_port {
786 u8 id;
787
Thomas Petazzoni26a52782017-02-16 08:03:37 +0100788 /* Index of the port from the "group of ports" complex point
789 * of view
790 */
791 int gop_id;
792
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100793 int irq;
794
795 struct mvpp2 *priv;
796
797 /* Per-port registers' base address */
798 void __iomem *base;
799
800 struct mvpp2_rx_queue **rxqs;
801 struct mvpp2_tx_queue **txqs;
802
803 int pkt_size;
804
805 u32 pending_cause_rx;
806
807 /* Per-CPU port control */
808 struct mvpp2_port_pcpu __percpu *pcpu;
809
810 /* Flags */
811 unsigned long flags;
812
813 u16 tx_ring_size;
814 u16 rx_ring_size;
815 struct mvpp2_pcpu_stats __percpu *stats;
816
817 struct phy_device *phy_dev;
818 phy_interface_t phy_interface;
819 int phy_node;
820 int phyaddr;
821 int init;
822 unsigned int link;
823 unsigned int duplex;
824 unsigned int speed;
825
826 struct mvpp2_bm_pool *pool_long;
827 struct mvpp2_bm_pool *pool_short;
828
829 /* Index of first port's physical RXQ */
830 u8 first_rxq;
831
832 u8 dev_addr[ETH_ALEN];
833};
834
835/* The mvpp2_tx_desc and mvpp2_rx_desc structures describe the
836 * layout of the transmit and reception DMA descriptors, and their
837 * layout is therefore defined by the hardware design
838 */
839
840#define MVPP2_TXD_L3_OFF_SHIFT 0
841#define MVPP2_TXD_IP_HLEN_SHIFT 8
842#define MVPP2_TXD_L4_CSUM_FRAG BIT(13)
843#define MVPP2_TXD_L4_CSUM_NOT BIT(14)
844#define MVPP2_TXD_IP_CSUM_DISABLE BIT(15)
845#define MVPP2_TXD_PADDING_DISABLE BIT(23)
846#define MVPP2_TXD_L4_UDP BIT(24)
847#define MVPP2_TXD_L3_IP6 BIT(26)
848#define MVPP2_TXD_L_DESC BIT(28)
849#define MVPP2_TXD_F_DESC BIT(29)
850
851#define MVPP2_RXD_ERR_SUMMARY BIT(15)
852#define MVPP2_RXD_ERR_CODE_MASK (BIT(13) | BIT(14))
853#define MVPP2_RXD_ERR_CRC 0x0
854#define MVPP2_RXD_ERR_OVERRUN BIT(13)
855#define MVPP2_RXD_ERR_RESOURCE (BIT(13) | BIT(14))
856#define MVPP2_RXD_BM_POOL_ID_OFFS 16
857#define MVPP2_RXD_BM_POOL_ID_MASK (BIT(16) | BIT(17) | BIT(18))
858#define MVPP2_RXD_HWF_SYNC BIT(21)
859#define MVPP2_RXD_L4_CSUM_OK BIT(22)
860#define MVPP2_RXD_IP4_HEADER_ERR BIT(24)
861#define MVPP2_RXD_L4_TCP BIT(25)
862#define MVPP2_RXD_L4_UDP BIT(26)
863#define MVPP2_RXD_L3_IP4 BIT(28)
864#define MVPP2_RXD_L3_IP6 BIT(30)
865#define MVPP2_RXD_BUF_HDR BIT(31)
866
Thomas Petazzoni9a6db0b2017-02-15 16:25:53 +0100867/* HW TX descriptor for PPv2.1 */
868struct mvpp21_tx_desc {
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100869 u32 command; /* Options used by HW for packet transmitting.*/
870 u8 packet_offset; /* the offset from the buffer beginning */
871 u8 phys_txq; /* destination queue ID */
872 u16 data_size; /* data size of transmitted packet in bytes */
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +0100873 u32 buf_dma_addr; /* physical addr of transmitted buffer */
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100874 u32 buf_cookie; /* cookie for access to TX buffer in tx path */
875 u32 reserved1[3]; /* hw_cmd (for future use, BM, PON, PNC) */
876 u32 reserved2; /* reserved (for future use) */
877};
878
Thomas Petazzoni9a6db0b2017-02-15 16:25:53 +0100879/* HW RX descriptor for PPv2.1 */
880struct mvpp21_rx_desc {
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100881 u32 status; /* info about received packet */
882 u16 reserved1; /* parser_info (for future use, PnC) */
883 u16 data_size; /* size of received packet in bytes */
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +0100884 u32 buf_dma_addr; /* physical address of the buffer */
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100885 u32 buf_cookie; /* cookie for access to RX buffer in rx path */
886 u16 reserved2; /* gem_port_id (for future use, PON) */
887 u16 reserved3; /* csum_l4 (for future use, PnC) */
888 u8 reserved4; /* bm_qset (for future use, BM) */
889 u8 reserved5;
890 u16 reserved6; /* classify_info (for future use, PnC) */
891 u32 reserved7; /* flow_id (for future use, PnC) */
892 u32 reserved8;
893};
894
Thomas Petazzonif50a0112017-02-20 11:08:46 +0100895/* HW TX descriptor for PPv2.2 */
896struct mvpp22_tx_desc {
897 u32 command;
898 u8 packet_offset;
899 u8 phys_txq;
900 u16 data_size;
901 u64 reserved1;
902 u64 buf_dma_addr_ptp;
903 u64 buf_cookie_misc;
904};
905
906/* HW RX descriptor for PPv2.2 */
907struct mvpp22_rx_desc {
908 u32 status;
909 u16 reserved1;
910 u16 data_size;
911 u32 reserved2;
912 u32 reserved3;
913 u64 buf_dma_addr_key_hash;
914 u64 buf_cookie_misc;
915};
916
Thomas Petazzoni9a6db0b2017-02-15 16:25:53 +0100917/* Opaque type used by the driver to manipulate the HW TX and RX
918 * descriptors
919 */
920struct mvpp2_tx_desc {
921 union {
922 struct mvpp21_tx_desc pp21;
Thomas Petazzonif50a0112017-02-20 11:08:46 +0100923 struct mvpp22_tx_desc pp22;
Thomas Petazzoni9a6db0b2017-02-15 16:25:53 +0100924 };
925};
926
927struct mvpp2_rx_desc {
928 union {
929 struct mvpp21_rx_desc pp21;
Thomas Petazzonif50a0112017-02-20 11:08:46 +0100930 struct mvpp22_rx_desc pp22;
Thomas Petazzoni9a6db0b2017-02-15 16:25:53 +0100931 };
932};
933
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100934/* Per-CPU Tx queue control */
935struct mvpp2_txq_pcpu {
936 int cpu;
937
938 /* Number of Tx DMA descriptors in the descriptor ring */
939 int size;
940
941 /* Number of currently used Tx DMA descriptor in the
942 * descriptor ring
943 */
944 int count;
945
946 /* Number of Tx DMA descriptors reserved for each CPU */
947 int reserved_num;
948
949 /* Index of last TX DMA descriptor that was inserted */
950 int txq_put_index;
951
952 /* Index of the TX DMA descriptor to be cleaned up */
953 int txq_get_index;
954};
955
956struct mvpp2_tx_queue {
957 /* Physical number of this Tx queue */
958 u8 id;
959
960 /* Logical number of this Tx queue */
961 u8 log_id;
962
963 /* Number of Tx DMA descriptors in the descriptor ring */
964 int size;
965
966 /* Number of currently used Tx DMA descriptor in the descriptor ring */
967 int count;
968
969 /* Per-CPU control of physical Tx queues */
970 struct mvpp2_txq_pcpu __percpu *pcpu;
971
972 u32 done_pkts_coal;
973
974 /* Virtual address of thex Tx DMA descriptors array */
975 struct mvpp2_tx_desc *descs;
976
977 /* DMA address of the Tx DMA descriptors array */
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +0100978 dma_addr_t descs_dma;
Stefan Roese99d4c6d2016-02-10 07:22:10 +0100979
980 /* Index of the last Tx DMA descriptor */
981 int last_desc;
982
983 /* Index of the next Tx DMA descriptor to process */
984 int next_desc_to_proc;
985};
986
987struct mvpp2_rx_queue {
988 /* RX queue number, in the range 0-31 for physical RXQs */
989 u8 id;
990
991 /* Num of rx descriptors in the rx descriptor ring */
992 int size;
993
994 u32 pkts_coal;
995 u32 time_coal;
996
997 /* Virtual address of the RX DMA descriptors array */
998 struct mvpp2_rx_desc *descs;
999
1000 /* DMA address of the RX DMA descriptors array */
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01001001 dma_addr_t descs_dma;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01001002
1003 /* Index of the last RX DMA descriptor */
1004 int last_desc;
1005
1006 /* Index of the next RX DMA descriptor to process */
1007 int next_desc_to_proc;
1008
1009 /* ID of port to which physical RXQ is mapped */
1010 int port;
1011
1012 /* Port's logic RXQ number to which physical RXQ is mapped */
1013 int logic_rxq;
1014};
1015
1016union mvpp2_prs_tcam_entry {
1017 u32 word[MVPP2_PRS_TCAM_WORDS];
1018 u8 byte[MVPP2_PRS_TCAM_WORDS * 4];
1019};
1020
1021union mvpp2_prs_sram_entry {
1022 u32 word[MVPP2_PRS_SRAM_WORDS];
1023 u8 byte[MVPP2_PRS_SRAM_WORDS * 4];
1024};
1025
1026struct mvpp2_prs_entry {
1027 u32 index;
1028 union mvpp2_prs_tcam_entry tcam;
1029 union mvpp2_prs_sram_entry sram;
1030};
1031
1032struct mvpp2_prs_shadow {
1033 bool valid;
1034 bool finish;
1035
1036 /* Lookup ID */
1037 int lu;
1038
1039 /* User defined offset */
1040 int udf;
1041
1042 /* Result info */
1043 u32 ri;
1044 u32 ri_mask;
1045};
1046
1047struct mvpp2_cls_flow_entry {
1048 u32 index;
1049 u32 data[MVPP2_CLS_FLOWS_TBL_DATA_WORDS];
1050};
1051
1052struct mvpp2_cls_lookup_entry {
1053 u32 lkpid;
1054 u32 way;
1055 u32 data;
1056};
1057
1058struct mvpp2_bm_pool {
1059 /* Pool number in the range 0-7 */
1060 int id;
1061 enum mvpp2_bm_type type;
1062
1063 /* Buffer Pointers Pool External (BPPE) size */
1064 int size;
1065 /* Number of buffers for this pool */
1066 int buf_num;
1067 /* Pool buffer size */
1068 int buf_size;
1069 /* Packet size */
1070 int pkt_size;
1071
1072 /* BPPE virtual base address */
Stefan Roesea7c28ff2017-02-15 12:46:18 +01001073 unsigned long *virt_addr;
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01001074 /* BPPE DMA base address */
1075 dma_addr_t dma_addr;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01001076
1077 /* Ports using BM pool */
1078 u32 port_map;
1079
1080 /* Occupied buffers indicator */
1081 int in_use_thresh;
1082};
1083
Stefan Roese99d4c6d2016-02-10 07:22:10 +01001084/* Static declaractions */
1085
1086/* Number of RXQs used by single port */
1087static int rxq_number = MVPP2_DEFAULT_RXQ;
1088/* Number of TXQs used by single port */
1089static int txq_number = MVPP2_DEFAULT_TXQ;
1090
1091#define MVPP2_DRIVER_NAME "mvpp2"
1092#define MVPP2_DRIVER_VERSION "1.0"
1093
1094/*
1095 * U-Boot internal data, mostly uncached buffers for descriptors and data
1096 */
1097struct buffer_location {
1098 struct mvpp2_tx_desc *aggr_tx_descs;
1099 struct mvpp2_tx_desc *tx_descs;
1100 struct mvpp2_rx_desc *rx_descs;
Stefan Roesea7c28ff2017-02-15 12:46:18 +01001101 unsigned long *bm_pool[MVPP2_BM_POOLS_NUM];
1102 unsigned long *rx_buffer[MVPP2_BM_LONG_BUF_NUM];
Stefan Roese99d4c6d2016-02-10 07:22:10 +01001103 int first_rxq;
1104};
1105
1106/*
1107 * All 4 interfaces use the same global buffer, since only one interface
1108 * can be enabled at once
1109 */
1110static struct buffer_location buffer_loc;
1111
1112/*
1113 * Page table entries are set to 1MB, or multiples of 1MB
1114 * (not < 1MB). driver uses less bd's so use 1MB bdspace.
1115 */
1116#define BD_SPACE (1 << 20)
1117
1118/* Utility/helper methods */
1119
1120static void mvpp2_write(struct mvpp2 *priv, u32 offset, u32 data)
1121{
1122 writel(data, priv->base + offset);
1123}
1124
1125static u32 mvpp2_read(struct mvpp2 *priv, u32 offset)
1126{
1127 return readl(priv->base + offset);
1128}
1129
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01001130static void mvpp2_txdesc_dma_addr_set(struct mvpp2_port *port,
1131 struct mvpp2_tx_desc *tx_desc,
1132 dma_addr_t dma_addr)
1133{
Thomas Petazzonif50a0112017-02-20 11:08:46 +01001134 if (port->priv->hw_version == MVPP21) {
1135 tx_desc->pp21.buf_dma_addr = dma_addr;
1136 } else {
1137 u64 val = (u64)dma_addr;
1138
1139 tx_desc->pp22.buf_dma_addr_ptp &= ~GENMASK_ULL(40, 0);
1140 tx_desc->pp22.buf_dma_addr_ptp |= val;
1141 }
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01001142}
1143
1144static void mvpp2_txdesc_size_set(struct mvpp2_port *port,
1145 struct mvpp2_tx_desc *tx_desc,
1146 size_t size)
1147{
Thomas Petazzonif50a0112017-02-20 11:08:46 +01001148 if (port->priv->hw_version == MVPP21)
1149 tx_desc->pp21.data_size = size;
1150 else
1151 tx_desc->pp22.data_size = size;
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01001152}
1153
1154static void mvpp2_txdesc_txq_set(struct mvpp2_port *port,
1155 struct mvpp2_tx_desc *tx_desc,
1156 unsigned int txq)
1157{
Thomas Petazzonif50a0112017-02-20 11:08:46 +01001158 if (port->priv->hw_version == MVPP21)
1159 tx_desc->pp21.phys_txq = txq;
1160 else
1161 tx_desc->pp22.phys_txq = txq;
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01001162}
1163
1164static void mvpp2_txdesc_cmd_set(struct mvpp2_port *port,
1165 struct mvpp2_tx_desc *tx_desc,
1166 unsigned int command)
1167{
Thomas Petazzonif50a0112017-02-20 11:08:46 +01001168 if (port->priv->hw_version == MVPP21)
1169 tx_desc->pp21.command = command;
1170 else
1171 tx_desc->pp22.command = command;
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01001172}
1173
1174static void mvpp2_txdesc_offset_set(struct mvpp2_port *port,
1175 struct mvpp2_tx_desc *tx_desc,
1176 unsigned int offset)
1177{
Thomas Petazzonif50a0112017-02-20 11:08:46 +01001178 if (port->priv->hw_version == MVPP21)
1179 tx_desc->pp21.packet_offset = offset;
1180 else
1181 tx_desc->pp22.packet_offset = offset;
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01001182}
1183
1184static dma_addr_t mvpp2_rxdesc_dma_addr_get(struct mvpp2_port *port,
1185 struct mvpp2_rx_desc *rx_desc)
1186{
Thomas Petazzonif50a0112017-02-20 11:08:46 +01001187 if (port->priv->hw_version == MVPP21)
1188 return rx_desc->pp21.buf_dma_addr;
1189 else
1190 return rx_desc->pp22.buf_dma_addr_key_hash & GENMASK_ULL(40, 0);
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01001191}
1192
1193static unsigned long mvpp2_rxdesc_cookie_get(struct mvpp2_port *port,
1194 struct mvpp2_rx_desc *rx_desc)
1195{
Thomas Petazzonif50a0112017-02-20 11:08:46 +01001196 if (port->priv->hw_version == MVPP21)
1197 return rx_desc->pp21.buf_cookie;
1198 else
1199 return rx_desc->pp22.buf_cookie_misc & GENMASK_ULL(40, 0);
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01001200}
1201
1202static size_t mvpp2_rxdesc_size_get(struct mvpp2_port *port,
1203 struct mvpp2_rx_desc *rx_desc)
1204{
Thomas Petazzonif50a0112017-02-20 11:08:46 +01001205 if (port->priv->hw_version == MVPP21)
1206 return rx_desc->pp21.data_size;
1207 else
1208 return rx_desc->pp22.data_size;
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01001209}
1210
1211static u32 mvpp2_rxdesc_status_get(struct mvpp2_port *port,
1212 struct mvpp2_rx_desc *rx_desc)
1213{
Thomas Petazzonif50a0112017-02-20 11:08:46 +01001214 if (port->priv->hw_version == MVPP21)
1215 return rx_desc->pp21.status;
1216 else
1217 return rx_desc->pp22.status;
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01001218}
1219
Stefan Roese99d4c6d2016-02-10 07:22:10 +01001220static void mvpp2_txq_inc_get(struct mvpp2_txq_pcpu *txq_pcpu)
1221{
1222 txq_pcpu->txq_get_index++;
1223 if (txq_pcpu->txq_get_index == txq_pcpu->size)
1224 txq_pcpu->txq_get_index = 0;
1225}
1226
1227/* Get number of physical egress port */
1228static inline int mvpp2_egress_port(struct mvpp2_port *port)
1229{
1230 return MVPP2_MAX_TCONT + port->id;
1231}
1232
1233/* Get number of physical TXQ */
1234static inline int mvpp2_txq_phys(int port, int txq)
1235{
1236 return (MVPP2_MAX_TCONT + port) * MVPP2_MAX_TXQ + txq;
1237}
1238
1239/* Parser configuration routines */
1240
1241/* Update parser tcam and sram hw entries */
1242static int mvpp2_prs_hw_write(struct mvpp2 *priv, struct mvpp2_prs_entry *pe)
1243{
1244 int i;
1245
1246 if (pe->index > MVPP2_PRS_TCAM_SRAM_SIZE - 1)
1247 return -EINVAL;
1248
1249 /* Clear entry invalidation bit */
1250 pe->tcam.word[MVPP2_PRS_TCAM_INV_WORD] &= ~MVPP2_PRS_TCAM_INV_MASK;
1251
1252 /* Write tcam index - indirect access */
1253 mvpp2_write(priv, MVPP2_PRS_TCAM_IDX_REG, pe->index);
1254 for (i = 0; i < MVPP2_PRS_TCAM_WORDS; i++)
1255 mvpp2_write(priv, MVPP2_PRS_TCAM_DATA_REG(i), pe->tcam.word[i]);
1256
1257 /* Write sram index - indirect access */
1258 mvpp2_write(priv, MVPP2_PRS_SRAM_IDX_REG, pe->index);
1259 for (i = 0; i < MVPP2_PRS_SRAM_WORDS; i++)
1260 mvpp2_write(priv, MVPP2_PRS_SRAM_DATA_REG(i), pe->sram.word[i]);
1261
1262 return 0;
1263}
1264
1265/* Read tcam entry from hw */
1266static int mvpp2_prs_hw_read(struct mvpp2 *priv, struct mvpp2_prs_entry *pe)
1267{
1268 int i;
1269
1270 if (pe->index > MVPP2_PRS_TCAM_SRAM_SIZE - 1)
1271 return -EINVAL;
1272
1273 /* Write tcam index - indirect access */
1274 mvpp2_write(priv, MVPP2_PRS_TCAM_IDX_REG, pe->index);
1275
1276 pe->tcam.word[MVPP2_PRS_TCAM_INV_WORD] = mvpp2_read(priv,
1277 MVPP2_PRS_TCAM_DATA_REG(MVPP2_PRS_TCAM_INV_WORD));
1278 if (pe->tcam.word[MVPP2_PRS_TCAM_INV_WORD] & MVPP2_PRS_TCAM_INV_MASK)
1279 return MVPP2_PRS_TCAM_ENTRY_INVALID;
1280
1281 for (i = 0; i < MVPP2_PRS_TCAM_WORDS; i++)
1282 pe->tcam.word[i] = mvpp2_read(priv, MVPP2_PRS_TCAM_DATA_REG(i));
1283
1284 /* Write sram index - indirect access */
1285 mvpp2_write(priv, MVPP2_PRS_SRAM_IDX_REG, pe->index);
1286 for (i = 0; i < MVPP2_PRS_SRAM_WORDS; i++)
1287 pe->sram.word[i] = mvpp2_read(priv, MVPP2_PRS_SRAM_DATA_REG(i));
1288
1289 return 0;
1290}
1291
1292/* Invalidate tcam hw entry */
1293static void mvpp2_prs_hw_inv(struct mvpp2 *priv, int index)
1294{
1295 /* Write index - indirect access */
1296 mvpp2_write(priv, MVPP2_PRS_TCAM_IDX_REG, index);
1297 mvpp2_write(priv, MVPP2_PRS_TCAM_DATA_REG(MVPP2_PRS_TCAM_INV_WORD),
1298 MVPP2_PRS_TCAM_INV_MASK);
1299}
1300
1301/* Enable shadow table entry and set its lookup ID */
1302static void mvpp2_prs_shadow_set(struct mvpp2 *priv, int index, int lu)
1303{
1304 priv->prs_shadow[index].valid = true;
1305 priv->prs_shadow[index].lu = lu;
1306}
1307
1308/* Update ri fields in shadow table entry */
1309static void mvpp2_prs_shadow_ri_set(struct mvpp2 *priv, int index,
1310 unsigned int ri, unsigned int ri_mask)
1311{
1312 priv->prs_shadow[index].ri_mask = ri_mask;
1313 priv->prs_shadow[index].ri = ri;
1314}
1315
1316/* Update lookup field in tcam sw entry */
1317static void mvpp2_prs_tcam_lu_set(struct mvpp2_prs_entry *pe, unsigned int lu)
1318{
1319 int enable_off = MVPP2_PRS_TCAM_EN_OFFS(MVPP2_PRS_TCAM_LU_BYTE);
1320
1321 pe->tcam.byte[MVPP2_PRS_TCAM_LU_BYTE] = lu;
1322 pe->tcam.byte[enable_off] = MVPP2_PRS_LU_MASK;
1323}
1324
1325/* Update mask for single port in tcam sw entry */
1326static void mvpp2_prs_tcam_port_set(struct mvpp2_prs_entry *pe,
1327 unsigned int port, bool add)
1328{
1329 int enable_off = MVPP2_PRS_TCAM_EN_OFFS(MVPP2_PRS_TCAM_PORT_BYTE);
1330
1331 if (add)
1332 pe->tcam.byte[enable_off] &= ~(1 << port);
1333 else
1334 pe->tcam.byte[enable_off] |= 1 << port;
1335}
1336
1337/* Update port map in tcam sw entry */
1338static void mvpp2_prs_tcam_port_map_set(struct mvpp2_prs_entry *pe,
1339 unsigned int ports)
1340{
1341 unsigned char port_mask = MVPP2_PRS_PORT_MASK;
1342 int enable_off = MVPP2_PRS_TCAM_EN_OFFS(MVPP2_PRS_TCAM_PORT_BYTE);
1343
1344 pe->tcam.byte[MVPP2_PRS_TCAM_PORT_BYTE] = 0;
1345 pe->tcam.byte[enable_off] &= ~port_mask;
1346 pe->tcam.byte[enable_off] |= ~ports & MVPP2_PRS_PORT_MASK;
1347}
1348
1349/* Obtain port map from tcam sw entry */
1350static unsigned int mvpp2_prs_tcam_port_map_get(struct mvpp2_prs_entry *pe)
1351{
1352 int enable_off = MVPP2_PRS_TCAM_EN_OFFS(MVPP2_PRS_TCAM_PORT_BYTE);
1353
1354 return ~(pe->tcam.byte[enable_off]) & MVPP2_PRS_PORT_MASK;
1355}
1356
1357/* Set byte of data and its enable bits in tcam sw entry */
1358static void mvpp2_prs_tcam_data_byte_set(struct mvpp2_prs_entry *pe,
1359 unsigned int offs, unsigned char byte,
1360 unsigned char enable)
1361{
1362 pe->tcam.byte[MVPP2_PRS_TCAM_DATA_BYTE(offs)] = byte;
1363 pe->tcam.byte[MVPP2_PRS_TCAM_DATA_BYTE_EN(offs)] = enable;
1364}
1365
1366/* Get byte of data and its enable bits from tcam sw entry */
1367static void mvpp2_prs_tcam_data_byte_get(struct mvpp2_prs_entry *pe,
1368 unsigned int offs, unsigned char *byte,
1369 unsigned char *enable)
1370{
1371 *byte = pe->tcam.byte[MVPP2_PRS_TCAM_DATA_BYTE(offs)];
1372 *enable = pe->tcam.byte[MVPP2_PRS_TCAM_DATA_BYTE_EN(offs)];
1373}
1374
1375/* Set ethertype in tcam sw entry */
1376static void mvpp2_prs_match_etype(struct mvpp2_prs_entry *pe, int offset,
1377 unsigned short ethertype)
1378{
1379 mvpp2_prs_tcam_data_byte_set(pe, offset + 0, ethertype >> 8, 0xff);
1380 mvpp2_prs_tcam_data_byte_set(pe, offset + 1, ethertype & 0xff, 0xff);
1381}
1382
1383/* Set bits in sram sw entry */
1384static void mvpp2_prs_sram_bits_set(struct mvpp2_prs_entry *pe, int bit_num,
1385 int val)
1386{
1387 pe->sram.byte[MVPP2_BIT_TO_BYTE(bit_num)] |= (val << (bit_num % 8));
1388}
1389
1390/* Clear bits in sram sw entry */
1391static void mvpp2_prs_sram_bits_clear(struct mvpp2_prs_entry *pe, int bit_num,
1392 int val)
1393{
1394 pe->sram.byte[MVPP2_BIT_TO_BYTE(bit_num)] &= ~(val << (bit_num % 8));
1395}
1396
1397/* Update ri bits in sram sw entry */
1398static void mvpp2_prs_sram_ri_update(struct mvpp2_prs_entry *pe,
1399 unsigned int bits, unsigned int mask)
1400{
1401 unsigned int i;
1402
1403 for (i = 0; i < MVPP2_PRS_SRAM_RI_CTRL_BITS; i++) {
1404 int ri_off = MVPP2_PRS_SRAM_RI_OFFS;
1405
1406 if (!(mask & BIT(i)))
1407 continue;
1408
1409 if (bits & BIT(i))
1410 mvpp2_prs_sram_bits_set(pe, ri_off + i, 1);
1411 else
1412 mvpp2_prs_sram_bits_clear(pe, ri_off + i, 1);
1413
1414 mvpp2_prs_sram_bits_set(pe, MVPP2_PRS_SRAM_RI_CTRL_OFFS + i, 1);
1415 }
1416}
1417
1418/* Update ai bits in sram sw entry */
1419static void mvpp2_prs_sram_ai_update(struct mvpp2_prs_entry *pe,
1420 unsigned int bits, unsigned int mask)
1421{
1422 unsigned int i;
1423 int ai_off = MVPP2_PRS_SRAM_AI_OFFS;
1424
1425 for (i = 0; i < MVPP2_PRS_SRAM_AI_CTRL_BITS; i++) {
1426
1427 if (!(mask & BIT(i)))
1428 continue;
1429
1430 if (bits & BIT(i))
1431 mvpp2_prs_sram_bits_set(pe, ai_off + i, 1);
1432 else
1433 mvpp2_prs_sram_bits_clear(pe, ai_off + i, 1);
1434
1435 mvpp2_prs_sram_bits_set(pe, MVPP2_PRS_SRAM_AI_CTRL_OFFS + i, 1);
1436 }
1437}
1438
1439/* Read ai bits from sram sw entry */
1440static int mvpp2_prs_sram_ai_get(struct mvpp2_prs_entry *pe)
1441{
1442 u8 bits;
1443 int ai_off = MVPP2_BIT_TO_BYTE(MVPP2_PRS_SRAM_AI_OFFS);
1444 int ai_en_off = ai_off + 1;
1445 int ai_shift = MVPP2_PRS_SRAM_AI_OFFS % 8;
1446
1447 bits = (pe->sram.byte[ai_off] >> ai_shift) |
1448 (pe->sram.byte[ai_en_off] << (8 - ai_shift));
1449
1450 return bits;
1451}
1452
1453/* In sram sw entry set lookup ID field of the tcam key to be used in the next
1454 * lookup interation
1455 */
1456static void mvpp2_prs_sram_next_lu_set(struct mvpp2_prs_entry *pe,
1457 unsigned int lu)
1458{
1459 int sram_next_off = MVPP2_PRS_SRAM_NEXT_LU_OFFS;
1460
1461 mvpp2_prs_sram_bits_clear(pe, sram_next_off,
1462 MVPP2_PRS_SRAM_NEXT_LU_MASK);
1463 mvpp2_prs_sram_bits_set(pe, sram_next_off, lu);
1464}
1465
1466/* In the sram sw entry set sign and value of the next lookup offset
1467 * and the offset value generated to the classifier
1468 */
1469static void mvpp2_prs_sram_shift_set(struct mvpp2_prs_entry *pe, int shift,
1470 unsigned int op)
1471{
1472 /* Set sign */
1473 if (shift < 0) {
1474 mvpp2_prs_sram_bits_set(pe, MVPP2_PRS_SRAM_SHIFT_SIGN_BIT, 1);
1475 shift = 0 - shift;
1476 } else {
1477 mvpp2_prs_sram_bits_clear(pe, MVPP2_PRS_SRAM_SHIFT_SIGN_BIT, 1);
1478 }
1479
1480 /* Set value */
1481 pe->sram.byte[MVPP2_BIT_TO_BYTE(MVPP2_PRS_SRAM_SHIFT_OFFS)] =
1482 (unsigned char)shift;
1483
1484 /* Reset and set operation */
1485 mvpp2_prs_sram_bits_clear(pe, MVPP2_PRS_SRAM_OP_SEL_SHIFT_OFFS,
1486 MVPP2_PRS_SRAM_OP_SEL_SHIFT_MASK);
1487 mvpp2_prs_sram_bits_set(pe, MVPP2_PRS_SRAM_OP_SEL_SHIFT_OFFS, op);
1488
1489 /* Set base offset as current */
1490 mvpp2_prs_sram_bits_clear(pe, MVPP2_PRS_SRAM_OP_SEL_BASE_OFFS, 1);
1491}
1492
1493/* In the sram sw entry set sign and value of the user defined offset
1494 * generated to the classifier
1495 */
1496static void mvpp2_prs_sram_offset_set(struct mvpp2_prs_entry *pe,
1497 unsigned int type, int offset,
1498 unsigned int op)
1499{
1500 /* Set sign */
1501 if (offset < 0) {
1502 mvpp2_prs_sram_bits_set(pe, MVPP2_PRS_SRAM_UDF_SIGN_BIT, 1);
1503 offset = 0 - offset;
1504 } else {
1505 mvpp2_prs_sram_bits_clear(pe, MVPP2_PRS_SRAM_UDF_SIGN_BIT, 1);
1506 }
1507
1508 /* Set value */
1509 mvpp2_prs_sram_bits_clear(pe, MVPP2_PRS_SRAM_UDF_OFFS,
1510 MVPP2_PRS_SRAM_UDF_MASK);
1511 mvpp2_prs_sram_bits_set(pe, MVPP2_PRS_SRAM_UDF_OFFS, offset);
1512 pe->sram.byte[MVPP2_BIT_TO_BYTE(MVPP2_PRS_SRAM_UDF_OFFS +
1513 MVPP2_PRS_SRAM_UDF_BITS)] &=
1514 ~(MVPP2_PRS_SRAM_UDF_MASK >> (8 - (MVPP2_PRS_SRAM_UDF_OFFS % 8)));
1515 pe->sram.byte[MVPP2_BIT_TO_BYTE(MVPP2_PRS_SRAM_UDF_OFFS +
1516 MVPP2_PRS_SRAM_UDF_BITS)] |=
1517 (offset >> (8 - (MVPP2_PRS_SRAM_UDF_OFFS % 8)));
1518
1519 /* Set offset type */
1520 mvpp2_prs_sram_bits_clear(pe, MVPP2_PRS_SRAM_UDF_TYPE_OFFS,
1521 MVPP2_PRS_SRAM_UDF_TYPE_MASK);
1522 mvpp2_prs_sram_bits_set(pe, MVPP2_PRS_SRAM_UDF_TYPE_OFFS, type);
1523
1524 /* Set offset operation */
1525 mvpp2_prs_sram_bits_clear(pe, MVPP2_PRS_SRAM_OP_SEL_UDF_OFFS,
1526 MVPP2_PRS_SRAM_OP_SEL_UDF_MASK);
1527 mvpp2_prs_sram_bits_set(pe, MVPP2_PRS_SRAM_OP_SEL_UDF_OFFS, op);
1528
1529 pe->sram.byte[MVPP2_BIT_TO_BYTE(MVPP2_PRS_SRAM_OP_SEL_UDF_OFFS +
1530 MVPP2_PRS_SRAM_OP_SEL_UDF_BITS)] &=
1531 ~(MVPP2_PRS_SRAM_OP_SEL_UDF_MASK >>
1532 (8 - (MVPP2_PRS_SRAM_OP_SEL_UDF_OFFS % 8)));
1533
1534 pe->sram.byte[MVPP2_BIT_TO_BYTE(MVPP2_PRS_SRAM_OP_SEL_UDF_OFFS +
1535 MVPP2_PRS_SRAM_OP_SEL_UDF_BITS)] |=
1536 (op >> (8 - (MVPP2_PRS_SRAM_OP_SEL_UDF_OFFS % 8)));
1537
1538 /* Set base offset as current */
1539 mvpp2_prs_sram_bits_clear(pe, MVPP2_PRS_SRAM_OP_SEL_BASE_OFFS, 1);
1540}
1541
1542/* Find parser flow entry */
1543static struct mvpp2_prs_entry *mvpp2_prs_flow_find(struct mvpp2 *priv, int flow)
1544{
1545 struct mvpp2_prs_entry *pe;
1546 int tid;
1547
1548 pe = kzalloc(sizeof(*pe), GFP_KERNEL);
1549 if (!pe)
1550 return NULL;
1551 mvpp2_prs_tcam_lu_set(pe, MVPP2_PRS_LU_FLOWS);
1552
1553 /* Go through the all entires with MVPP2_PRS_LU_FLOWS */
1554 for (tid = MVPP2_PRS_TCAM_SRAM_SIZE - 1; tid >= 0; tid--) {
1555 u8 bits;
1556
1557 if (!priv->prs_shadow[tid].valid ||
1558 priv->prs_shadow[tid].lu != MVPP2_PRS_LU_FLOWS)
1559 continue;
1560
1561 pe->index = tid;
1562 mvpp2_prs_hw_read(priv, pe);
1563 bits = mvpp2_prs_sram_ai_get(pe);
1564
1565 /* Sram store classification lookup ID in AI bits [5:0] */
1566 if ((bits & MVPP2_PRS_FLOW_ID_MASK) == flow)
1567 return pe;
1568 }
1569 kfree(pe);
1570
1571 return NULL;
1572}
1573
1574/* Return first free tcam index, seeking from start to end */
1575static int mvpp2_prs_tcam_first_free(struct mvpp2 *priv, unsigned char start,
1576 unsigned char end)
1577{
1578 int tid;
1579
1580 if (start > end)
1581 swap(start, end);
1582
1583 if (end >= MVPP2_PRS_TCAM_SRAM_SIZE)
1584 end = MVPP2_PRS_TCAM_SRAM_SIZE - 1;
1585
1586 for (tid = start; tid <= end; tid++) {
1587 if (!priv->prs_shadow[tid].valid)
1588 return tid;
1589 }
1590
1591 return -EINVAL;
1592}
1593
1594/* Enable/disable dropping all mac da's */
1595static void mvpp2_prs_mac_drop_all_set(struct mvpp2 *priv, int port, bool add)
1596{
1597 struct mvpp2_prs_entry pe;
1598
1599 if (priv->prs_shadow[MVPP2_PE_DROP_ALL].valid) {
1600 /* Entry exist - update port only */
1601 pe.index = MVPP2_PE_DROP_ALL;
1602 mvpp2_prs_hw_read(priv, &pe);
1603 } else {
1604 /* Entry doesn't exist - create new */
1605 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
1606 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_MAC);
1607 pe.index = MVPP2_PE_DROP_ALL;
1608
1609 /* Non-promiscuous mode for all ports - DROP unknown packets */
1610 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_DROP_MASK,
1611 MVPP2_PRS_RI_DROP_MASK);
1612
1613 mvpp2_prs_sram_bits_set(&pe, MVPP2_PRS_SRAM_LU_GEN_BIT, 1);
1614 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_FLOWS);
1615
1616 /* Update shadow table */
1617 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_MAC);
1618
1619 /* Mask all ports */
1620 mvpp2_prs_tcam_port_map_set(&pe, 0);
1621 }
1622
1623 /* Update port mask */
1624 mvpp2_prs_tcam_port_set(&pe, port, add);
1625
1626 mvpp2_prs_hw_write(priv, &pe);
1627}
1628
1629/* Set port to promiscuous mode */
1630static void mvpp2_prs_mac_promisc_set(struct mvpp2 *priv, int port, bool add)
1631{
1632 struct mvpp2_prs_entry pe;
1633
1634 /* Promiscuous mode - Accept unknown packets */
1635
1636 if (priv->prs_shadow[MVPP2_PE_MAC_PROMISCUOUS].valid) {
1637 /* Entry exist - update port only */
1638 pe.index = MVPP2_PE_MAC_PROMISCUOUS;
1639 mvpp2_prs_hw_read(priv, &pe);
1640 } else {
1641 /* Entry doesn't exist - create new */
1642 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
1643 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_MAC);
1644 pe.index = MVPP2_PE_MAC_PROMISCUOUS;
1645
1646 /* Continue - set next lookup */
1647 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_DSA);
1648
1649 /* Set result info bits */
1650 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L2_UCAST,
1651 MVPP2_PRS_RI_L2_CAST_MASK);
1652
1653 /* Shift to ethertype */
1654 mvpp2_prs_sram_shift_set(&pe, 2 * ETH_ALEN,
1655 MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
1656
1657 /* Mask all ports */
1658 mvpp2_prs_tcam_port_map_set(&pe, 0);
1659
1660 /* Update shadow table */
1661 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_MAC);
1662 }
1663
1664 /* Update port mask */
1665 mvpp2_prs_tcam_port_set(&pe, port, add);
1666
1667 mvpp2_prs_hw_write(priv, &pe);
1668}
1669
1670/* Accept multicast */
1671static void mvpp2_prs_mac_multi_set(struct mvpp2 *priv, int port, int index,
1672 bool add)
1673{
1674 struct mvpp2_prs_entry pe;
1675 unsigned char da_mc;
1676
1677 /* Ethernet multicast address first byte is
1678 * 0x01 for IPv4 and 0x33 for IPv6
1679 */
1680 da_mc = (index == MVPP2_PE_MAC_MC_ALL) ? 0x01 : 0x33;
1681
1682 if (priv->prs_shadow[index].valid) {
1683 /* Entry exist - update port only */
1684 pe.index = index;
1685 mvpp2_prs_hw_read(priv, &pe);
1686 } else {
1687 /* Entry doesn't exist - create new */
1688 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
1689 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_MAC);
1690 pe.index = index;
1691
1692 /* Continue - set next lookup */
1693 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_DSA);
1694
1695 /* Set result info bits */
1696 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L2_MCAST,
1697 MVPP2_PRS_RI_L2_CAST_MASK);
1698
1699 /* Update tcam entry data first byte */
1700 mvpp2_prs_tcam_data_byte_set(&pe, 0, da_mc, 0xff);
1701
1702 /* Shift to ethertype */
1703 mvpp2_prs_sram_shift_set(&pe, 2 * ETH_ALEN,
1704 MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
1705
1706 /* Mask all ports */
1707 mvpp2_prs_tcam_port_map_set(&pe, 0);
1708
1709 /* Update shadow table */
1710 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_MAC);
1711 }
1712
1713 /* Update port mask */
1714 mvpp2_prs_tcam_port_set(&pe, port, add);
1715
1716 mvpp2_prs_hw_write(priv, &pe);
1717}
1718
1719/* Parser per-port initialization */
1720static void mvpp2_prs_hw_port_init(struct mvpp2 *priv, int port, int lu_first,
1721 int lu_max, int offset)
1722{
1723 u32 val;
1724
1725 /* Set lookup ID */
1726 val = mvpp2_read(priv, MVPP2_PRS_INIT_LOOKUP_REG);
1727 val &= ~MVPP2_PRS_PORT_LU_MASK(port);
1728 val |= MVPP2_PRS_PORT_LU_VAL(port, lu_first);
1729 mvpp2_write(priv, MVPP2_PRS_INIT_LOOKUP_REG, val);
1730
1731 /* Set maximum number of loops for packet received from port */
1732 val = mvpp2_read(priv, MVPP2_PRS_MAX_LOOP_REG(port));
1733 val &= ~MVPP2_PRS_MAX_LOOP_MASK(port);
1734 val |= MVPP2_PRS_MAX_LOOP_VAL(port, lu_max);
1735 mvpp2_write(priv, MVPP2_PRS_MAX_LOOP_REG(port), val);
1736
1737 /* Set initial offset for packet header extraction for the first
1738 * searching loop
1739 */
1740 val = mvpp2_read(priv, MVPP2_PRS_INIT_OFFS_REG(port));
1741 val &= ~MVPP2_PRS_INIT_OFF_MASK(port);
1742 val |= MVPP2_PRS_INIT_OFF_VAL(port, offset);
1743 mvpp2_write(priv, MVPP2_PRS_INIT_OFFS_REG(port), val);
1744}
1745
1746/* Default flow entries initialization for all ports */
1747static void mvpp2_prs_def_flow_init(struct mvpp2 *priv)
1748{
1749 struct mvpp2_prs_entry pe;
1750 int port;
1751
1752 for (port = 0; port < MVPP2_MAX_PORTS; port++) {
1753 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
1754 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_FLOWS);
1755 pe.index = MVPP2_PE_FIRST_DEFAULT_FLOW - port;
1756
1757 /* Mask all ports */
1758 mvpp2_prs_tcam_port_map_set(&pe, 0);
1759
1760 /* Set flow ID*/
1761 mvpp2_prs_sram_ai_update(&pe, port, MVPP2_PRS_FLOW_ID_MASK);
1762 mvpp2_prs_sram_bits_set(&pe, MVPP2_PRS_SRAM_LU_DONE_BIT, 1);
1763
1764 /* Update shadow table and hw entry */
1765 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_FLOWS);
1766 mvpp2_prs_hw_write(priv, &pe);
1767 }
1768}
1769
1770/* Set default entry for Marvell Header field */
1771static void mvpp2_prs_mh_init(struct mvpp2 *priv)
1772{
1773 struct mvpp2_prs_entry pe;
1774
1775 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
1776
1777 pe.index = MVPP2_PE_MH_DEFAULT;
1778 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_MH);
1779 mvpp2_prs_sram_shift_set(&pe, MVPP2_MH_SIZE,
1780 MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
1781 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_MAC);
1782
1783 /* Unmask all ports */
1784 mvpp2_prs_tcam_port_map_set(&pe, MVPP2_PRS_PORT_MASK);
1785
1786 /* Update shadow table and hw entry */
1787 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_MH);
1788 mvpp2_prs_hw_write(priv, &pe);
1789}
1790
1791/* Set default entires (place holder) for promiscuous, non-promiscuous and
1792 * multicast MAC addresses
1793 */
1794static void mvpp2_prs_mac_init(struct mvpp2 *priv)
1795{
1796 struct mvpp2_prs_entry pe;
1797
1798 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
1799
1800 /* Non-promiscuous mode for all ports - DROP unknown packets */
1801 pe.index = MVPP2_PE_MAC_NON_PROMISCUOUS;
1802 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_MAC);
1803
1804 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_DROP_MASK,
1805 MVPP2_PRS_RI_DROP_MASK);
1806 mvpp2_prs_sram_bits_set(&pe, MVPP2_PRS_SRAM_LU_GEN_BIT, 1);
1807 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_FLOWS);
1808
1809 /* Unmask all ports */
1810 mvpp2_prs_tcam_port_map_set(&pe, MVPP2_PRS_PORT_MASK);
1811
1812 /* Update shadow table and hw entry */
1813 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_MAC);
1814 mvpp2_prs_hw_write(priv, &pe);
1815
1816 /* place holders only - no ports */
1817 mvpp2_prs_mac_drop_all_set(priv, 0, false);
1818 mvpp2_prs_mac_promisc_set(priv, 0, false);
1819 mvpp2_prs_mac_multi_set(priv, MVPP2_PE_MAC_MC_ALL, 0, false);
1820 mvpp2_prs_mac_multi_set(priv, MVPP2_PE_MAC_MC_IP6, 0, false);
1821}
1822
1823/* Match basic ethertypes */
1824static int mvpp2_prs_etype_init(struct mvpp2 *priv)
1825{
1826 struct mvpp2_prs_entry pe;
1827 int tid;
1828
1829 /* Ethertype: PPPoE */
1830 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
1831 MVPP2_PE_LAST_FREE_TID);
1832 if (tid < 0)
1833 return tid;
1834
1835 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
1836 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_L2);
1837 pe.index = tid;
1838
1839 mvpp2_prs_match_etype(&pe, 0, PROT_PPP_SES);
1840
1841 mvpp2_prs_sram_shift_set(&pe, MVPP2_PPPOE_HDR_SIZE,
1842 MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
1843 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_PPPOE);
1844 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_PPPOE_MASK,
1845 MVPP2_PRS_RI_PPPOE_MASK);
1846
1847 /* Update shadow table and hw entry */
1848 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_L2);
1849 priv->prs_shadow[pe.index].udf = MVPP2_PRS_UDF_L2_DEF;
1850 priv->prs_shadow[pe.index].finish = false;
1851 mvpp2_prs_shadow_ri_set(priv, pe.index, MVPP2_PRS_RI_PPPOE_MASK,
1852 MVPP2_PRS_RI_PPPOE_MASK);
1853 mvpp2_prs_hw_write(priv, &pe);
1854
1855 /* Ethertype: ARP */
1856 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
1857 MVPP2_PE_LAST_FREE_TID);
1858 if (tid < 0)
1859 return tid;
1860
1861 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
1862 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_L2);
1863 pe.index = tid;
1864
1865 mvpp2_prs_match_etype(&pe, 0, PROT_ARP);
1866
1867 /* Generate flow in the next iteration*/
1868 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_FLOWS);
1869 mvpp2_prs_sram_bits_set(&pe, MVPP2_PRS_SRAM_LU_GEN_BIT, 1);
1870 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L3_ARP,
1871 MVPP2_PRS_RI_L3_PROTO_MASK);
1872 /* Set L3 offset */
1873 mvpp2_prs_sram_offset_set(&pe, MVPP2_PRS_SRAM_UDF_TYPE_L3,
1874 MVPP2_ETH_TYPE_LEN,
1875 MVPP2_PRS_SRAM_OP_SEL_UDF_ADD);
1876
1877 /* Update shadow table and hw entry */
1878 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_L2);
1879 priv->prs_shadow[pe.index].udf = MVPP2_PRS_UDF_L2_DEF;
1880 priv->prs_shadow[pe.index].finish = true;
1881 mvpp2_prs_shadow_ri_set(priv, pe.index, MVPP2_PRS_RI_L3_ARP,
1882 MVPP2_PRS_RI_L3_PROTO_MASK);
1883 mvpp2_prs_hw_write(priv, &pe);
1884
1885 /* Ethertype: LBTD */
1886 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
1887 MVPP2_PE_LAST_FREE_TID);
1888 if (tid < 0)
1889 return tid;
1890
1891 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
1892 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_L2);
1893 pe.index = tid;
1894
1895 mvpp2_prs_match_etype(&pe, 0, MVPP2_IP_LBDT_TYPE);
1896
1897 /* Generate flow in the next iteration*/
1898 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_FLOWS);
1899 mvpp2_prs_sram_bits_set(&pe, MVPP2_PRS_SRAM_LU_GEN_BIT, 1);
1900 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_CPU_CODE_RX_SPEC |
1901 MVPP2_PRS_RI_UDF3_RX_SPECIAL,
1902 MVPP2_PRS_RI_CPU_CODE_MASK |
1903 MVPP2_PRS_RI_UDF3_MASK);
1904 /* Set L3 offset */
1905 mvpp2_prs_sram_offset_set(&pe, MVPP2_PRS_SRAM_UDF_TYPE_L3,
1906 MVPP2_ETH_TYPE_LEN,
1907 MVPP2_PRS_SRAM_OP_SEL_UDF_ADD);
1908
1909 /* Update shadow table and hw entry */
1910 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_L2);
1911 priv->prs_shadow[pe.index].udf = MVPP2_PRS_UDF_L2_DEF;
1912 priv->prs_shadow[pe.index].finish = true;
1913 mvpp2_prs_shadow_ri_set(priv, pe.index, MVPP2_PRS_RI_CPU_CODE_RX_SPEC |
1914 MVPP2_PRS_RI_UDF3_RX_SPECIAL,
1915 MVPP2_PRS_RI_CPU_CODE_MASK |
1916 MVPP2_PRS_RI_UDF3_MASK);
1917 mvpp2_prs_hw_write(priv, &pe);
1918
1919 /* Ethertype: IPv4 without options */
1920 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
1921 MVPP2_PE_LAST_FREE_TID);
1922 if (tid < 0)
1923 return tid;
1924
1925 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
1926 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_L2);
1927 pe.index = tid;
1928
1929 mvpp2_prs_match_etype(&pe, 0, PROT_IP);
1930 mvpp2_prs_tcam_data_byte_set(&pe, MVPP2_ETH_TYPE_LEN,
1931 MVPP2_PRS_IPV4_HEAD | MVPP2_PRS_IPV4_IHL,
1932 MVPP2_PRS_IPV4_HEAD_MASK |
1933 MVPP2_PRS_IPV4_IHL_MASK);
1934
1935 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_IP4);
1936 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L3_IP4,
1937 MVPP2_PRS_RI_L3_PROTO_MASK);
1938 /* Skip eth_type + 4 bytes of IP header */
1939 mvpp2_prs_sram_shift_set(&pe, MVPP2_ETH_TYPE_LEN + 4,
1940 MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
1941 /* Set L3 offset */
1942 mvpp2_prs_sram_offset_set(&pe, MVPP2_PRS_SRAM_UDF_TYPE_L3,
1943 MVPP2_ETH_TYPE_LEN,
1944 MVPP2_PRS_SRAM_OP_SEL_UDF_ADD);
1945
1946 /* Update shadow table and hw entry */
1947 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_L2);
1948 priv->prs_shadow[pe.index].udf = MVPP2_PRS_UDF_L2_DEF;
1949 priv->prs_shadow[pe.index].finish = false;
1950 mvpp2_prs_shadow_ri_set(priv, pe.index, MVPP2_PRS_RI_L3_IP4,
1951 MVPP2_PRS_RI_L3_PROTO_MASK);
1952 mvpp2_prs_hw_write(priv, &pe);
1953
1954 /* Ethertype: IPv4 with options */
1955 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
1956 MVPP2_PE_LAST_FREE_TID);
1957 if (tid < 0)
1958 return tid;
1959
1960 pe.index = tid;
1961
1962 /* Clear tcam data before updating */
1963 pe.tcam.byte[MVPP2_PRS_TCAM_DATA_BYTE(MVPP2_ETH_TYPE_LEN)] = 0x0;
1964 pe.tcam.byte[MVPP2_PRS_TCAM_DATA_BYTE_EN(MVPP2_ETH_TYPE_LEN)] = 0x0;
1965
1966 mvpp2_prs_tcam_data_byte_set(&pe, MVPP2_ETH_TYPE_LEN,
1967 MVPP2_PRS_IPV4_HEAD,
1968 MVPP2_PRS_IPV4_HEAD_MASK);
1969
1970 /* Clear ri before updating */
1971 pe.sram.word[MVPP2_PRS_SRAM_RI_WORD] = 0x0;
1972 pe.sram.word[MVPP2_PRS_SRAM_RI_CTRL_WORD] = 0x0;
1973 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L3_IP4_OPT,
1974 MVPP2_PRS_RI_L3_PROTO_MASK);
1975
1976 /* Update shadow table and hw entry */
1977 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_L2);
1978 priv->prs_shadow[pe.index].udf = MVPP2_PRS_UDF_L2_DEF;
1979 priv->prs_shadow[pe.index].finish = false;
1980 mvpp2_prs_shadow_ri_set(priv, pe.index, MVPP2_PRS_RI_L3_IP4_OPT,
1981 MVPP2_PRS_RI_L3_PROTO_MASK);
1982 mvpp2_prs_hw_write(priv, &pe);
1983
1984 /* Ethertype: IPv6 without options */
1985 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
1986 MVPP2_PE_LAST_FREE_TID);
1987 if (tid < 0)
1988 return tid;
1989
1990 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
1991 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_L2);
1992 pe.index = tid;
1993
1994 mvpp2_prs_match_etype(&pe, 0, PROT_IPV6);
1995
1996 /* Skip DIP of IPV6 header */
1997 mvpp2_prs_sram_shift_set(&pe, MVPP2_ETH_TYPE_LEN + 8 +
1998 MVPP2_MAX_L3_ADDR_SIZE,
1999 MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
2000 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_IP6);
2001 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L3_IP6,
2002 MVPP2_PRS_RI_L3_PROTO_MASK);
2003 /* Set L3 offset */
2004 mvpp2_prs_sram_offset_set(&pe, MVPP2_PRS_SRAM_UDF_TYPE_L3,
2005 MVPP2_ETH_TYPE_LEN,
2006 MVPP2_PRS_SRAM_OP_SEL_UDF_ADD);
2007
2008 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_L2);
2009 priv->prs_shadow[pe.index].udf = MVPP2_PRS_UDF_L2_DEF;
2010 priv->prs_shadow[pe.index].finish = false;
2011 mvpp2_prs_shadow_ri_set(priv, pe.index, MVPP2_PRS_RI_L3_IP6,
2012 MVPP2_PRS_RI_L3_PROTO_MASK);
2013 mvpp2_prs_hw_write(priv, &pe);
2014
2015 /* Default entry for MVPP2_PRS_LU_L2 - Unknown ethtype */
2016 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
2017 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_L2);
2018 pe.index = MVPP2_PE_ETH_TYPE_UN;
2019
2020 /* Unmask all ports */
2021 mvpp2_prs_tcam_port_map_set(&pe, MVPP2_PRS_PORT_MASK);
2022
2023 /* Generate flow in the next iteration*/
2024 mvpp2_prs_sram_bits_set(&pe, MVPP2_PRS_SRAM_LU_GEN_BIT, 1);
2025 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_FLOWS);
2026 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L3_UN,
2027 MVPP2_PRS_RI_L3_PROTO_MASK);
2028 /* Set L3 offset even it's unknown L3 */
2029 mvpp2_prs_sram_offset_set(&pe, MVPP2_PRS_SRAM_UDF_TYPE_L3,
2030 MVPP2_ETH_TYPE_LEN,
2031 MVPP2_PRS_SRAM_OP_SEL_UDF_ADD);
2032
2033 /* Update shadow table and hw entry */
2034 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_L2);
2035 priv->prs_shadow[pe.index].udf = MVPP2_PRS_UDF_L2_DEF;
2036 priv->prs_shadow[pe.index].finish = true;
2037 mvpp2_prs_shadow_ri_set(priv, pe.index, MVPP2_PRS_RI_L3_UN,
2038 MVPP2_PRS_RI_L3_PROTO_MASK);
2039 mvpp2_prs_hw_write(priv, &pe);
2040
2041 return 0;
2042}
2043
2044/* Parser default initialization */
2045static int mvpp2_prs_default_init(struct udevice *dev,
2046 struct mvpp2 *priv)
2047{
2048 int err, index, i;
2049
2050 /* Enable tcam table */
2051 mvpp2_write(priv, MVPP2_PRS_TCAM_CTRL_REG, MVPP2_PRS_TCAM_EN_MASK);
2052
2053 /* Clear all tcam and sram entries */
2054 for (index = 0; index < MVPP2_PRS_TCAM_SRAM_SIZE; index++) {
2055 mvpp2_write(priv, MVPP2_PRS_TCAM_IDX_REG, index);
2056 for (i = 0; i < MVPP2_PRS_TCAM_WORDS; i++)
2057 mvpp2_write(priv, MVPP2_PRS_TCAM_DATA_REG(i), 0);
2058
2059 mvpp2_write(priv, MVPP2_PRS_SRAM_IDX_REG, index);
2060 for (i = 0; i < MVPP2_PRS_SRAM_WORDS; i++)
2061 mvpp2_write(priv, MVPP2_PRS_SRAM_DATA_REG(i), 0);
2062 }
2063
2064 /* Invalidate all tcam entries */
2065 for (index = 0; index < MVPP2_PRS_TCAM_SRAM_SIZE; index++)
2066 mvpp2_prs_hw_inv(priv, index);
2067
2068 priv->prs_shadow = devm_kcalloc(dev, MVPP2_PRS_TCAM_SRAM_SIZE,
2069 sizeof(struct mvpp2_prs_shadow),
2070 GFP_KERNEL);
2071 if (!priv->prs_shadow)
2072 return -ENOMEM;
2073
2074 /* Always start from lookup = 0 */
2075 for (index = 0; index < MVPP2_MAX_PORTS; index++)
2076 mvpp2_prs_hw_port_init(priv, index, MVPP2_PRS_LU_MH,
2077 MVPP2_PRS_PORT_LU_MAX, 0);
2078
2079 mvpp2_prs_def_flow_init(priv);
2080
2081 mvpp2_prs_mh_init(priv);
2082
2083 mvpp2_prs_mac_init(priv);
2084
2085 err = mvpp2_prs_etype_init(priv);
2086 if (err)
2087 return err;
2088
2089 return 0;
2090}
2091
2092/* Compare MAC DA with tcam entry data */
2093static bool mvpp2_prs_mac_range_equals(struct mvpp2_prs_entry *pe,
2094 const u8 *da, unsigned char *mask)
2095{
2096 unsigned char tcam_byte, tcam_mask;
2097 int index;
2098
2099 for (index = 0; index < ETH_ALEN; index++) {
2100 mvpp2_prs_tcam_data_byte_get(pe, index, &tcam_byte, &tcam_mask);
2101 if (tcam_mask != mask[index])
2102 return false;
2103
2104 if ((tcam_mask & tcam_byte) != (da[index] & mask[index]))
2105 return false;
2106 }
2107
2108 return true;
2109}
2110
2111/* Find tcam entry with matched pair <MAC DA, port> */
2112static struct mvpp2_prs_entry *
2113mvpp2_prs_mac_da_range_find(struct mvpp2 *priv, int pmap, const u8 *da,
2114 unsigned char *mask, int udf_type)
2115{
2116 struct mvpp2_prs_entry *pe;
2117 int tid;
2118
2119 pe = kzalloc(sizeof(*pe), GFP_KERNEL);
2120 if (!pe)
2121 return NULL;
2122 mvpp2_prs_tcam_lu_set(pe, MVPP2_PRS_LU_MAC);
2123
2124 /* Go through the all entires with MVPP2_PRS_LU_MAC */
2125 for (tid = MVPP2_PE_FIRST_FREE_TID;
2126 tid <= MVPP2_PE_LAST_FREE_TID; tid++) {
2127 unsigned int entry_pmap;
2128
2129 if (!priv->prs_shadow[tid].valid ||
2130 (priv->prs_shadow[tid].lu != MVPP2_PRS_LU_MAC) ||
2131 (priv->prs_shadow[tid].udf != udf_type))
2132 continue;
2133
2134 pe->index = tid;
2135 mvpp2_prs_hw_read(priv, pe);
2136 entry_pmap = mvpp2_prs_tcam_port_map_get(pe);
2137
2138 if (mvpp2_prs_mac_range_equals(pe, da, mask) &&
2139 entry_pmap == pmap)
2140 return pe;
2141 }
2142 kfree(pe);
2143
2144 return NULL;
2145}
2146
2147/* Update parser's mac da entry */
2148static int mvpp2_prs_mac_da_accept(struct mvpp2 *priv, int port,
2149 const u8 *da, bool add)
2150{
2151 struct mvpp2_prs_entry *pe;
2152 unsigned int pmap, len, ri;
2153 unsigned char mask[ETH_ALEN] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
2154 int tid;
2155
2156 /* Scan TCAM and see if entry with this <MAC DA, port> already exist */
2157 pe = mvpp2_prs_mac_da_range_find(priv, (1 << port), da, mask,
2158 MVPP2_PRS_UDF_MAC_DEF);
2159
2160 /* No such entry */
2161 if (!pe) {
2162 if (!add)
2163 return 0;
2164
2165 /* Create new TCAM entry */
2166 /* Find first range mac entry*/
2167 for (tid = MVPP2_PE_FIRST_FREE_TID;
2168 tid <= MVPP2_PE_LAST_FREE_TID; tid++)
2169 if (priv->prs_shadow[tid].valid &&
2170 (priv->prs_shadow[tid].lu == MVPP2_PRS_LU_MAC) &&
2171 (priv->prs_shadow[tid].udf ==
2172 MVPP2_PRS_UDF_MAC_RANGE))
2173 break;
2174
2175 /* Go through the all entries from first to last */
2176 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
2177 tid - 1);
2178 if (tid < 0)
2179 return tid;
2180
2181 pe = kzalloc(sizeof(*pe), GFP_KERNEL);
2182 if (!pe)
2183 return -1;
2184 mvpp2_prs_tcam_lu_set(pe, MVPP2_PRS_LU_MAC);
2185 pe->index = tid;
2186
2187 /* Mask all ports */
2188 mvpp2_prs_tcam_port_map_set(pe, 0);
2189 }
2190
2191 /* Update port mask */
2192 mvpp2_prs_tcam_port_set(pe, port, add);
2193
2194 /* Invalidate the entry if no ports are left enabled */
2195 pmap = mvpp2_prs_tcam_port_map_get(pe);
2196 if (pmap == 0) {
2197 if (add) {
2198 kfree(pe);
2199 return -1;
2200 }
2201 mvpp2_prs_hw_inv(priv, pe->index);
2202 priv->prs_shadow[pe->index].valid = false;
2203 kfree(pe);
2204 return 0;
2205 }
2206
2207 /* Continue - set next lookup */
2208 mvpp2_prs_sram_next_lu_set(pe, MVPP2_PRS_LU_DSA);
2209
2210 /* Set match on DA */
2211 len = ETH_ALEN;
2212 while (len--)
2213 mvpp2_prs_tcam_data_byte_set(pe, len, da[len], 0xff);
2214
2215 /* Set result info bits */
2216 ri = MVPP2_PRS_RI_L2_UCAST | MVPP2_PRS_RI_MAC_ME_MASK;
2217
2218 mvpp2_prs_sram_ri_update(pe, ri, MVPP2_PRS_RI_L2_CAST_MASK |
2219 MVPP2_PRS_RI_MAC_ME_MASK);
2220 mvpp2_prs_shadow_ri_set(priv, pe->index, ri, MVPP2_PRS_RI_L2_CAST_MASK |
2221 MVPP2_PRS_RI_MAC_ME_MASK);
2222
2223 /* Shift to ethertype */
2224 mvpp2_prs_sram_shift_set(pe, 2 * ETH_ALEN,
2225 MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
2226
2227 /* Update shadow table and hw entry */
2228 priv->prs_shadow[pe->index].udf = MVPP2_PRS_UDF_MAC_DEF;
2229 mvpp2_prs_shadow_set(priv, pe->index, MVPP2_PRS_LU_MAC);
2230 mvpp2_prs_hw_write(priv, pe);
2231
2232 kfree(pe);
2233
2234 return 0;
2235}
2236
2237static int mvpp2_prs_update_mac_da(struct mvpp2_port *port, const u8 *da)
2238{
2239 int err;
2240
2241 /* Remove old parser entry */
2242 err = mvpp2_prs_mac_da_accept(port->priv, port->id, port->dev_addr,
2243 false);
2244 if (err)
2245 return err;
2246
2247 /* Add new parser entry */
2248 err = mvpp2_prs_mac_da_accept(port->priv, port->id, da, true);
2249 if (err)
2250 return err;
2251
2252 /* Set addr in the device */
2253 memcpy(port->dev_addr, da, ETH_ALEN);
2254
2255 return 0;
2256}
2257
2258/* Set prs flow for the port */
2259static int mvpp2_prs_def_flow(struct mvpp2_port *port)
2260{
2261 struct mvpp2_prs_entry *pe;
2262 int tid;
2263
2264 pe = mvpp2_prs_flow_find(port->priv, port->id);
2265
2266 /* Such entry not exist */
2267 if (!pe) {
2268 /* Go through the all entires from last to first */
2269 tid = mvpp2_prs_tcam_first_free(port->priv,
2270 MVPP2_PE_LAST_FREE_TID,
2271 MVPP2_PE_FIRST_FREE_TID);
2272 if (tid < 0)
2273 return tid;
2274
2275 pe = kzalloc(sizeof(*pe), GFP_KERNEL);
2276 if (!pe)
2277 return -ENOMEM;
2278
2279 mvpp2_prs_tcam_lu_set(pe, MVPP2_PRS_LU_FLOWS);
2280 pe->index = tid;
2281
2282 /* Set flow ID*/
2283 mvpp2_prs_sram_ai_update(pe, port->id, MVPP2_PRS_FLOW_ID_MASK);
2284 mvpp2_prs_sram_bits_set(pe, MVPP2_PRS_SRAM_LU_DONE_BIT, 1);
2285
2286 /* Update shadow table */
2287 mvpp2_prs_shadow_set(port->priv, pe->index, MVPP2_PRS_LU_FLOWS);
2288 }
2289
2290 mvpp2_prs_tcam_port_map_set(pe, (1 << port->id));
2291 mvpp2_prs_hw_write(port->priv, pe);
2292 kfree(pe);
2293
2294 return 0;
2295}
2296
2297/* Classifier configuration routines */
2298
2299/* Update classification flow table registers */
2300static void mvpp2_cls_flow_write(struct mvpp2 *priv,
2301 struct mvpp2_cls_flow_entry *fe)
2302{
2303 mvpp2_write(priv, MVPP2_CLS_FLOW_INDEX_REG, fe->index);
2304 mvpp2_write(priv, MVPP2_CLS_FLOW_TBL0_REG, fe->data[0]);
2305 mvpp2_write(priv, MVPP2_CLS_FLOW_TBL1_REG, fe->data[1]);
2306 mvpp2_write(priv, MVPP2_CLS_FLOW_TBL2_REG, fe->data[2]);
2307}
2308
2309/* Update classification lookup table register */
2310static void mvpp2_cls_lookup_write(struct mvpp2 *priv,
2311 struct mvpp2_cls_lookup_entry *le)
2312{
2313 u32 val;
2314
2315 val = (le->way << MVPP2_CLS_LKP_INDEX_WAY_OFFS) | le->lkpid;
2316 mvpp2_write(priv, MVPP2_CLS_LKP_INDEX_REG, val);
2317 mvpp2_write(priv, MVPP2_CLS_LKP_TBL_REG, le->data);
2318}
2319
2320/* Classifier default initialization */
2321static void mvpp2_cls_init(struct mvpp2 *priv)
2322{
2323 struct mvpp2_cls_lookup_entry le;
2324 struct mvpp2_cls_flow_entry fe;
2325 int index;
2326
2327 /* Enable classifier */
2328 mvpp2_write(priv, MVPP2_CLS_MODE_REG, MVPP2_CLS_MODE_ACTIVE_MASK);
2329
2330 /* Clear classifier flow table */
2331 memset(&fe.data, 0, MVPP2_CLS_FLOWS_TBL_DATA_WORDS);
2332 for (index = 0; index < MVPP2_CLS_FLOWS_TBL_SIZE; index++) {
2333 fe.index = index;
2334 mvpp2_cls_flow_write(priv, &fe);
2335 }
2336
2337 /* Clear classifier lookup table */
2338 le.data = 0;
2339 for (index = 0; index < MVPP2_CLS_LKP_TBL_SIZE; index++) {
2340 le.lkpid = index;
2341 le.way = 0;
2342 mvpp2_cls_lookup_write(priv, &le);
2343
2344 le.way = 1;
2345 mvpp2_cls_lookup_write(priv, &le);
2346 }
2347}
2348
2349static void mvpp2_cls_port_config(struct mvpp2_port *port)
2350{
2351 struct mvpp2_cls_lookup_entry le;
2352 u32 val;
2353
2354 /* Set way for the port */
2355 val = mvpp2_read(port->priv, MVPP2_CLS_PORT_WAY_REG);
2356 val &= ~MVPP2_CLS_PORT_WAY_MASK(port->id);
2357 mvpp2_write(port->priv, MVPP2_CLS_PORT_WAY_REG, val);
2358
2359 /* Pick the entry to be accessed in lookup ID decoding table
2360 * according to the way and lkpid.
2361 */
2362 le.lkpid = port->id;
2363 le.way = 0;
2364 le.data = 0;
2365
2366 /* Set initial CPU queue for receiving packets */
2367 le.data &= ~MVPP2_CLS_LKP_TBL_RXQ_MASK;
2368 le.data |= port->first_rxq;
2369
2370 /* Disable classification engines */
2371 le.data &= ~MVPP2_CLS_LKP_TBL_LOOKUP_EN_MASK;
2372
2373 /* Update lookup ID table entry */
2374 mvpp2_cls_lookup_write(port->priv, &le);
2375}
2376
2377/* Set CPU queue number for oversize packets */
2378static void mvpp2_cls_oversize_rxq_set(struct mvpp2_port *port)
2379{
2380 u32 val;
2381
2382 mvpp2_write(port->priv, MVPP2_CLS_OVERSIZE_RXQ_LOW_REG(port->id),
2383 port->first_rxq & MVPP2_CLS_OVERSIZE_RXQ_LOW_MASK);
2384
2385 mvpp2_write(port->priv, MVPP2_CLS_SWFWD_P2HQ_REG(port->id),
2386 (port->first_rxq >> MVPP2_CLS_OVERSIZE_RXQ_LOW_BITS));
2387
2388 val = mvpp2_read(port->priv, MVPP2_CLS_SWFWD_PCTRL_REG);
2389 val |= MVPP2_CLS_SWFWD_PCTRL_MASK(port->id);
2390 mvpp2_write(port->priv, MVPP2_CLS_SWFWD_PCTRL_REG, val);
2391}
2392
2393/* Buffer Manager configuration routines */
2394
2395/* Create pool */
2396static int mvpp2_bm_pool_create(struct udevice *dev,
2397 struct mvpp2 *priv,
2398 struct mvpp2_bm_pool *bm_pool, int size)
2399{
2400 u32 val;
2401
Thomas Petazzonic8feeb22017-02-20 11:29:16 +01002402 /* Number of buffer pointers must be a multiple of 16, as per
2403 * hardware constraints
2404 */
2405 if (!IS_ALIGNED(size, 16))
2406 return -EINVAL;
2407
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002408 bm_pool->virt_addr = buffer_loc.bm_pool[bm_pool->id];
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01002409 bm_pool->dma_addr = (dma_addr_t)buffer_loc.bm_pool[bm_pool->id];
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002410 if (!bm_pool->virt_addr)
2411 return -ENOMEM;
2412
Thomas Petazzonid1d075a2017-02-15 12:31:53 +01002413 if (!IS_ALIGNED((unsigned long)bm_pool->virt_addr,
2414 MVPP2_BM_POOL_PTR_ALIGN)) {
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002415 dev_err(&pdev->dev, "BM pool %d is not %d bytes aligned\n",
2416 bm_pool->id, MVPP2_BM_POOL_PTR_ALIGN);
2417 return -ENOMEM;
2418 }
2419
2420 mvpp2_write(priv, MVPP2_BM_POOL_BASE_REG(bm_pool->id),
Thomas Petazzonic8feeb22017-02-20 11:29:16 +01002421 lower_32_bits(bm_pool->dma_addr));
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002422 mvpp2_write(priv, MVPP2_BM_POOL_SIZE_REG(bm_pool->id), size);
2423
2424 val = mvpp2_read(priv, MVPP2_BM_POOL_CTRL_REG(bm_pool->id));
2425 val |= MVPP2_BM_START_MASK;
2426 mvpp2_write(priv, MVPP2_BM_POOL_CTRL_REG(bm_pool->id), val);
2427
2428 bm_pool->type = MVPP2_BM_FREE;
2429 bm_pool->size = size;
2430 bm_pool->pkt_size = 0;
2431 bm_pool->buf_num = 0;
2432
2433 return 0;
2434}
2435
2436/* Set pool buffer size */
2437static void mvpp2_bm_pool_bufsize_set(struct mvpp2 *priv,
2438 struct mvpp2_bm_pool *bm_pool,
2439 int buf_size)
2440{
2441 u32 val;
2442
2443 bm_pool->buf_size = buf_size;
2444
2445 val = ALIGN(buf_size, 1 << MVPP2_POOL_BUF_SIZE_OFFSET);
2446 mvpp2_write(priv, MVPP2_POOL_BUF_SIZE_REG(bm_pool->id), val);
2447}
2448
2449/* Free all buffers from the pool */
2450static void mvpp2_bm_bufs_free(struct udevice *dev, struct mvpp2 *priv,
2451 struct mvpp2_bm_pool *bm_pool)
2452{
2453 bm_pool->buf_num = 0;
2454}
2455
2456/* Cleanup pool */
2457static int mvpp2_bm_pool_destroy(struct udevice *dev,
2458 struct mvpp2 *priv,
2459 struct mvpp2_bm_pool *bm_pool)
2460{
2461 u32 val;
2462
2463 mvpp2_bm_bufs_free(dev, priv, bm_pool);
2464 if (bm_pool->buf_num) {
2465 dev_err(dev, "cannot free all buffers in pool %d\n", bm_pool->id);
2466 return 0;
2467 }
2468
2469 val = mvpp2_read(priv, MVPP2_BM_POOL_CTRL_REG(bm_pool->id));
2470 val |= MVPP2_BM_STOP_MASK;
2471 mvpp2_write(priv, MVPP2_BM_POOL_CTRL_REG(bm_pool->id), val);
2472
2473 return 0;
2474}
2475
2476static int mvpp2_bm_pools_init(struct udevice *dev,
2477 struct mvpp2 *priv)
2478{
2479 int i, err, size;
2480 struct mvpp2_bm_pool *bm_pool;
2481
2482 /* Create all pools with maximum size */
2483 size = MVPP2_BM_POOL_SIZE_MAX;
2484 for (i = 0; i < MVPP2_BM_POOLS_NUM; i++) {
2485 bm_pool = &priv->bm_pools[i];
2486 bm_pool->id = i;
2487 err = mvpp2_bm_pool_create(dev, priv, bm_pool, size);
2488 if (err)
2489 goto err_unroll_pools;
2490 mvpp2_bm_pool_bufsize_set(priv, bm_pool, 0);
2491 }
2492 return 0;
2493
2494err_unroll_pools:
2495 dev_err(&pdev->dev, "failed to create BM pool %d, size %d\n", i, size);
2496 for (i = i - 1; i >= 0; i--)
2497 mvpp2_bm_pool_destroy(dev, priv, &priv->bm_pools[i]);
2498 return err;
2499}
2500
2501static int mvpp2_bm_init(struct udevice *dev, struct mvpp2 *priv)
2502{
2503 int i, err;
2504
2505 for (i = 0; i < MVPP2_BM_POOLS_NUM; i++) {
2506 /* Mask BM all interrupts */
2507 mvpp2_write(priv, MVPP2_BM_INTR_MASK_REG(i), 0);
2508 /* Clear BM cause register */
2509 mvpp2_write(priv, MVPP2_BM_INTR_CAUSE_REG(i), 0);
2510 }
2511
2512 /* Allocate and initialize BM pools */
2513 priv->bm_pools = devm_kcalloc(dev, MVPP2_BM_POOLS_NUM,
2514 sizeof(struct mvpp2_bm_pool), GFP_KERNEL);
2515 if (!priv->bm_pools)
2516 return -ENOMEM;
2517
2518 err = mvpp2_bm_pools_init(dev, priv);
2519 if (err < 0)
2520 return err;
2521 return 0;
2522}
2523
2524/* Attach long pool to rxq */
2525static void mvpp2_rxq_long_pool_set(struct mvpp2_port *port,
2526 int lrxq, int long_pool)
2527{
Thomas Petazzoni8f3e4c32017-02-16 06:53:51 +01002528 u32 val, mask;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002529 int prxq;
2530
2531 /* Get queue physical ID */
2532 prxq = port->rxqs[lrxq]->id;
2533
Thomas Petazzoni8f3e4c32017-02-16 06:53:51 +01002534 if (port->priv->hw_version == MVPP21)
2535 mask = MVPP21_RXQ_POOL_LONG_MASK;
2536 else
2537 mask = MVPP22_RXQ_POOL_LONG_MASK;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002538
Thomas Petazzoni8f3e4c32017-02-16 06:53:51 +01002539 val = mvpp2_read(port->priv, MVPP2_RXQ_CONFIG_REG(prxq));
2540 val &= ~mask;
2541 val |= (long_pool << MVPP2_RXQ_POOL_LONG_OFFS) & mask;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002542 mvpp2_write(port->priv, MVPP2_RXQ_CONFIG_REG(prxq), val);
2543}
2544
2545/* Set pool number in a BM cookie */
2546static inline u32 mvpp2_bm_cookie_pool_set(u32 cookie, int pool)
2547{
2548 u32 bm;
2549
2550 bm = cookie & ~(0xFF << MVPP2_BM_COOKIE_POOL_OFFS);
2551 bm |= ((pool & 0xFF) << MVPP2_BM_COOKIE_POOL_OFFS);
2552
2553 return bm;
2554}
2555
2556/* Get pool number from a BM cookie */
Thomas Petazzonid1d075a2017-02-15 12:31:53 +01002557static inline int mvpp2_bm_cookie_pool_get(unsigned long cookie)
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002558{
2559 return (cookie >> MVPP2_BM_COOKIE_POOL_OFFS) & 0xFF;
2560}
2561
2562/* Release buffer to BM */
2563static inline void mvpp2_bm_pool_put(struct mvpp2_port *port, int pool,
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01002564 dma_addr_t buf_dma_addr,
Thomas Petazzonicd9ee192017-02-20 10:37:59 +01002565 unsigned long buf_phys_addr)
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002566{
Thomas Petazzonic8feeb22017-02-20 11:29:16 +01002567 if (port->priv->hw_version == MVPP22) {
2568 u32 val = 0;
2569
2570 if (sizeof(dma_addr_t) == 8)
2571 val |= upper_32_bits(buf_dma_addr) &
2572 MVPP22_BM_ADDR_HIGH_PHYS_RLS_MASK;
2573
2574 if (sizeof(phys_addr_t) == 8)
2575 val |= (upper_32_bits(buf_phys_addr)
2576 << MVPP22_BM_ADDR_HIGH_VIRT_RLS_SHIFT) &
2577 MVPP22_BM_ADDR_HIGH_VIRT_RLS_MASK;
2578
2579 mvpp2_write(port->priv, MVPP22_BM_ADDR_HIGH_RLS_REG, val);
2580 }
2581
Thomas Petazzonicd9ee192017-02-20 10:37:59 +01002582 /* MVPP2_BM_VIRT_RLS_REG is not interpreted by HW, and simply
2583 * returned in the "cookie" field of the RX
2584 * descriptor. Instead of storing the virtual address, we
2585 * store the physical address
2586 */
2587 mvpp2_write(port->priv, MVPP2_BM_VIRT_RLS_REG, buf_phys_addr);
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01002588 mvpp2_write(port->priv, MVPP2_BM_PHY_RLS_REG(pool), buf_dma_addr);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002589}
2590
2591/* Refill BM pool */
2592static void mvpp2_pool_refill(struct mvpp2_port *port, u32 bm,
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01002593 dma_addr_t dma_addr,
Thomas Petazzonicd9ee192017-02-20 10:37:59 +01002594 phys_addr_t phys_addr)
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002595{
2596 int pool = mvpp2_bm_cookie_pool_get(bm);
2597
Thomas Petazzonicd9ee192017-02-20 10:37:59 +01002598 mvpp2_bm_pool_put(port, pool, dma_addr, phys_addr);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002599}
2600
2601/* Allocate buffers for the pool */
2602static int mvpp2_bm_bufs_add(struct mvpp2_port *port,
2603 struct mvpp2_bm_pool *bm_pool, int buf_num)
2604{
2605 int i;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002606
2607 if (buf_num < 0 ||
2608 (buf_num + bm_pool->buf_num > bm_pool->size)) {
2609 netdev_err(port->dev,
2610 "cannot allocate %d buffers for pool %d\n",
2611 buf_num, bm_pool->id);
2612 return 0;
2613 }
2614
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002615 for (i = 0; i < buf_num; i++) {
Thomas Petazzonif1060f02017-02-15 12:13:43 +01002616 mvpp2_bm_pool_put(port, bm_pool->id,
Thomas Petazzonid1d075a2017-02-15 12:31:53 +01002617 (dma_addr_t)buffer_loc.rx_buffer[i],
2618 (unsigned long)buffer_loc.rx_buffer[i]);
Thomas Petazzonif1060f02017-02-15 12:13:43 +01002619
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002620 }
2621
2622 /* Update BM driver with number of buffers added to pool */
2623 bm_pool->buf_num += i;
2624 bm_pool->in_use_thresh = bm_pool->buf_num / 4;
2625
2626 return i;
2627}
2628
2629/* Notify the driver that BM pool is being used as specific type and return the
2630 * pool pointer on success
2631 */
2632static struct mvpp2_bm_pool *
2633mvpp2_bm_pool_use(struct mvpp2_port *port, int pool, enum mvpp2_bm_type type,
2634 int pkt_size)
2635{
2636 struct mvpp2_bm_pool *new_pool = &port->priv->bm_pools[pool];
2637 int num;
2638
2639 if (new_pool->type != MVPP2_BM_FREE && new_pool->type != type) {
2640 netdev_err(port->dev, "mixing pool types is forbidden\n");
2641 return NULL;
2642 }
2643
2644 if (new_pool->type == MVPP2_BM_FREE)
2645 new_pool->type = type;
2646
2647 /* Allocate buffers in case BM pool is used as long pool, but packet
2648 * size doesn't match MTU or BM pool hasn't being used yet
2649 */
2650 if (((type == MVPP2_BM_SWF_LONG) && (pkt_size > new_pool->pkt_size)) ||
2651 (new_pool->pkt_size == 0)) {
2652 int pkts_num;
2653
2654 /* Set default buffer number or free all the buffers in case
2655 * the pool is not empty
2656 */
2657 pkts_num = new_pool->buf_num;
2658 if (pkts_num == 0)
2659 pkts_num = type == MVPP2_BM_SWF_LONG ?
2660 MVPP2_BM_LONG_BUF_NUM :
2661 MVPP2_BM_SHORT_BUF_NUM;
2662 else
2663 mvpp2_bm_bufs_free(NULL,
2664 port->priv, new_pool);
2665
2666 new_pool->pkt_size = pkt_size;
2667
2668 /* Allocate buffers for this pool */
2669 num = mvpp2_bm_bufs_add(port, new_pool, pkts_num);
2670 if (num != pkts_num) {
2671 dev_err(dev, "pool %d: %d of %d allocated\n",
2672 new_pool->id, num, pkts_num);
2673 return NULL;
2674 }
2675 }
2676
2677 mvpp2_bm_pool_bufsize_set(port->priv, new_pool,
2678 MVPP2_RX_BUF_SIZE(new_pool->pkt_size));
2679
2680 return new_pool;
2681}
2682
2683/* Initialize pools for swf */
2684static int mvpp2_swf_bm_pool_init(struct mvpp2_port *port)
2685{
2686 int rxq;
2687
2688 if (!port->pool_long) {
2689 port->pool_long =
2690 mvpp2_bm_pool_use(port, MVPP2_BM_SWF_LONG_POOL(port->id),
2691 MVPP2_BM_SWF_LONG,
2692 port->pkt_size);
2693 if (!port->pool_long)
2694 return -ENOMEM;
2695
2696 port->pool_long->port_map |= (1 << port->id);
2697
2698 for (rxq = 0; rxq < rxq_number; rxq++)
2699 mvpp2_rxq_long_pool_set(port, rxq, port->pool_long->id);
2700 }
2701
2702 return 0;
2703}
2704
2705/* Port configuration routines */
2706
2707static void mvpp2_port_mii_set(struct mvpp2_port *port)
2708{
2709 u32 val;
2710
2711 val = readl(port->base + MVPP2_GMAC_CTRL_2_REG);
2712
2713 switch (port->phy_interface) {
2714 case PHY_INTERFACE_MODE_SGMII:
2715 val |= MVPP2_GMAC_INBAND_AN_MASK;
2716 break;
2717 case PHY_INTERFACE_MODE_RGMII:
2718 val |= MVPP2_GMAC_PORT_RGMII_MASK;
2719 default:
2720 val &= ~MVPP2_GMAC_PCS_ENABLE_MASK;
2721 }
2722
2723 writel(val, port->base + MVPP2_GMAC_CTRL_2_REG);
2724}
2725
2726static void mvpp2_port_fc_adv_enable(struct mvpp2_port *port)
2727{
2728 u32 val;
2729
2730 val = readl(port->base + MVPP2_GMAC_AUTONEG_CONFIG);
2731 val |= MVPP2_GMAC_FC_ADV_EN;
2732 writel(val, port->base + MVPP2_GMAC_AUTONEG_CONFIG);
2733}
2734
2735static void mvpp2_port_enable(struct mvpp2_port *port)
2736{
2737 u32 val;
2738
2739 val = readl(port->base + MVPP2_GMAC_CTRL_0_REG);
2740 val |= MVPP2_GMAC_PORT_EN_MASK;
2741 val |= MVPP2_GMAC_MIB_CNTR_EN_MASK;
2742 writel(val, port->base + MVPP2_GMAC_CTRL_0_REG);
2743}
2744
2745static void mvpp2_port_disable(struct mvpp2_port *port)
2746{
2747 u32 val;
2748
2749 val = readl(port->base + MVPP2_GMAC_CTRL_0_REG);
2750 val &= ~(MVPP2_GMAC_PORT_EN_MASK);
2751 writel(val, port->base + MVPP2_GMAC_CTRL_0_REG);
2752}
2753
2754/* Set IEEE 802.3x Flow Control Xon Packet Transmission Mode */
2755static void mvpp2_port_periodic_xon_disable(struct mvpp2_port *port)
2756{
2757 u32 val;
2758
2759 val = readl(port->base + MVPP2_GMAC_CTRL_1_REG) &
2760 ~MVPP2_GMAC_PERIODIC_XON_EN_MASK;
2761 writel(val, port->base + MVPP2_GMAC_CTRL_1_REG);
2762}
2763
2764/* Configure loopback port */
2765static void mvpp2_port_loopback_set(struct mvpp2_port *port)
2766{
2767 u32 val;
2768
2769 val = readl(port->base + MVPP2_GMAC_CTRL_1_REG);
2770
2771 if (port->speed == 1000)
2772 val |= MVPP2_GMAC_GMII_LB_EN_MASK;
2773 else
2774 val &= ~MVPP2_GMAC_GMII_LB_EN_MASK;
2775
2776 if (port->phy_interface == PHY_INTERFACE_MODE_SGMII)
2777 val |= MVPP2_GMAC_PCS_LB_EN_MASK;
2778 else
2779 val &= ~MVPP2_GMAC_PCS_LB_EN_MASK;
2780
2781 writel(val, port->base + MVPP2_GMAC_CTRL_1_REG);
2782}
2783
2784static void mvpp2_port_reset(struct mvpp2_port *port)
2785{
2786 u32 val;
2787
2788 val = readl(port->base + MVPP2_GMAC_CTRL_2_REG) &
2789 ~MVPP2_GMAC_PORT_RESET_MASK;
2790 writel(val, port->base + MVPP2_GMAC_CTRL_2_REG);
2791
2792 while (readl(port->base + MVPP2_GMAC_CTRL_2_REG) &
2793 MVPP2_GMAC_PORT_RESET_MASK)
2794 continue;
2795}
2796
2797/* Change maximum receive size of the port */
2798static inline void mvpp2_gmac_max_rx_size_set(struct mvpp2_port *port)
2799{
2800 u32 val;
2801
2802 val = readl(port->base + MVPP2_GMAC_CTRL_0_REG);
2803 val &= ~MVPP2_GMAC_MAX_RX_SIZE_MASK;
2804 val |= (((port->pkt_size - MVPP2_MH_SIZE) / 2) <<
2805 MVPP2_GMAC_MAX_RX_SIZE_OFFS);
2806 writel(val, port->base + MVPP2_GMAC_CTRL_0_REG);
2807}
2808
2809/* Set defaults to the MVPP2 port */
2810static void mvpp2_defaults_set(struct mvpp2_port *port)
2811{
2812 int tx_port_num, val, queue, ptxq, lrxq;
2813
Thomas Petazzonib8c8e6f2017-02-16 06:57:24 +01002814 if (port->priv->hw_version == MVPP21) {
2815 /* Configure port to loopback if needed */
2816 if (port->flags & MVPP2_F_LOOPBACK)
2817 mvpp2_port_loopback_set(port);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002818
Thomas Petazzonib8c8e6f2017-02-16 06:57:24 +01002819 /* Update TX FIFO MIN Threshold */
2820 val = readl(port->base + MVPP2_GMAC_PORT_FIFO_CFG_1_REG);
2821 val &= ~MVPP2_GMAC_TX_FIFO_MIN_TH_ALL_MASK;
2822 /* Min. TX threshold must be less than minimal packet length */
2823 val |= MVPP2_GMAC_TX_FIFO_MIN_TH_MASK(64 - 4 - 2);
2824 writel(val, port->base + MVPP2_GMAC_PORT_FIFO_CFG_1_REG);
2825 }
Stefan Roese99d4c6d2016-02-10 07:22:10 +01002826
2827 /* Disable Legacy WRR, Disable EJP, Release from reset */
2828 tx_port_num = mvpp2_egress_port(port);
2829 mvpp2_write(port->priv, MVPP2_TXP_SCHED_PORT_INDEX_REG,
2830 tx_port_num);
2831 mvpp2_write(port->priv, MVPP2_TXP_SCHED_CMD_1_REG, 0);
2832
2833 /* Close bandwidth for all queues */
2834 for (queue = 0; queue < MVPP2_MAX_TXQ; queue++) {
2835 ptxq = mvpp2_txq_phys(port->id, queue);
2836 mvpp2_write(port->priv,
2837 MVPP2_TXQ_SCHED_TOKEN_CNTR_REG(ptxq), 0);
2838 }
2839
2840 /* Set refill period to 1 usec, refill tokens
2841 * and bucket size to maximum
2842 */
2843 mvpp2_write(port->priv, MVPP2_TXP_SCHED_PERIOD_REG, 0xc8);
2844 val = mvpp2_read(port->priv, MVPP2_TXP_SCHED_REFILL_REG);
2845 val &= ~MVPP2_TXP_REFILL_PERIOD_ALL_MASK;
2846 val |= MVPP2_TXP_REFILL_PERIOD_MASK(1);
2847 val |= MVPP2_TXP_REFILL_TOKENS_ALL_MASK;
2848 mvpp2_write(port->priv, MVPP2_TXP_SCHED_REFILL_REG, val);
2849 val = MVPP2_TXP_TOKEN_SIZE_MAX;
2850 mvpp2_write(port->priv, MVPP2_TXP_SCHED_TOKEN_SIZE_REG, val);
2851
2852 /* Set MaximumLowLatencyPacketSize value to 256 */
2853 mvpp2_write(port->priv, MVPP2_RX_CTRL_REG(port->id),
2854 MVPP2_RX_USE_PSEUDO_FOR_CSUM_MASK |
2855 MVPP2_RX_LOW_LATENCY_PKT_SIZE(256));
2856
2857 /* Enable Rx cache snoop */
2858 for (lrxq = 0; lrxq < rxq_number; lrxq++) {
2859 queue = port->rxqs[lrxq]->id;
2860 val = mvpp2_read(port->priv, MVPP2_RXQ_CONFIG_REG(queue));
2861 val |= MVPP2_SNOOP_PKT_SIZE_MASK |
2862 MVPP2_SNOOP_BUF_HDR_MASK;
2863 mvpp2_write(port->priv, MVPP2_RXQ_CONFIG_REG(queue), val);
2864 }
2865}
2866
2867/* Enable/disable receiving packets */
2868static void mvpp2_ingress_enable(struct mvpp2_port *port)
2869{
2870 u32 val;
2871 int lrxq, queue;
2872
2873 for (lrxq = 0; lrxq < rxq_number; lrxq++) {
2874 queue = port->rxqs[lrxq]->id;
2875 val = mvpp2_read(port->priv, MVPP2_RXQ_CONFIG_REG(queue));
2876 val &= ~MVPP2_RXQ_DISABLE_MASK;
2877 mvpp2_write(port->priv, MVPP2_RXQ_CONFIG_REG(queue), val);
2878 }
2879}
2880
2881static void mvpp2_ingress_disable(struct mvpp2_port *port)
2882{
2883 u32 val;
2884 int lrxq, queue;
2885
2886 for (lrxq = 0; lrxq < rxq_number; lrxq++) {
2887 queue = port->rxqs[lrxq]->id;
2888 val = mvpp2_read(port->priv, MVPP2_RXQ_CONFIG_REG(queue));
2889 val |= MVPP2_RXQ_DISABLE_MASK;
2890 mvpp2_write(port->priv, MVPP2_RXQ_CONFIG_REG(queue), val);
2891 }
2892}
2893
2894/* Enable transmit via physical egress queue
2895 * - HW starts take descriptors from DRAM
2896 */
2897static void mvpp2_egress_enable(struct mvpp2_port *port)
2898{
2899 u32 qmap;
2900 int queue;
2901 int tx_port_num = mvpp2_egress_port(port);
2902
2903 /* Enable all initialized TXs. */
2904 qmap = 0;
2905 for (queue = 0; queue < txq_number; queue++) {
2906 struct mvpp2_tx_queue *txq = port->txqs[queue];
2907
2908 if (txq->descs != NULL)
2909 qmap |= (1 << queue);
2910 }
2911
2912 mvpp2_write(port->priv, MVPP2_TXP_SCHED_PORT_INDEX_REG, tx_port_num);
2913 mvpp2_write(port->priv, MVPP2_TXP_SCHED_Q_CMD_REG, qmap);
2914}
2915
2916/* Disable transmit via physical egress queue
2917 * - HW doesn't take descriptors from DRAM
2918 */
2919static void mvpp2_egress_disable(struct mvpp2_port *port)
2920{
2921 u32 reg_data;
2922 int delay;
2923 int tx_port_num = mvpp2_egress_port(port);
2924
2925 /* Issue stop command for active channels only */
2926 mvpp2_write(port->priv, MVPP2_TXP_SCHED_PORT_INDEX_REG, tx_port_num);
2927 reg_data = (mvpp2_read(port->priv, MVPP2_TXP_SCHED_Q_CMD_REG)) &
2928 MVPP2_TXP_SCHED_ENQ_MASK;
2929 if (reg_data != 0)
2930 mvpp2_write(port->priv, MVPP2_TXP_SCHED_Q_CMD_REG,
2931 (reg_data << MVPP2_TXP_SCHED_DISQ_OFFSET));
2932
2933 /* Wait for all Tx activity to terminate. */
2934 delay = 0;
2935 do {
2936 if (delay >= MVPP2_TX_DISABLE_TIMEOUT_MSEC) {
2937 netdev_warn(port->dev,
2938 "Tx stop timed out, status=0x%08x\n",
2939 reg_data);
2940 break;
2941 }
2942 mdelay(1);
2943 delay++;
2944
2945 /* Check port TX Command register that all
2946 * Tx queues are stopped
2947 */
2948 reg_data = mvpp2_read(port->priv, MVPP2_TXP_SCHED_Q_CMD_REG);
2949 } while (reg_data & MVPP2_TXP_SCHED_ENQ_MASK);
2950}
2951
2952/* Rx descriptors helper methods */
2953
2954/* Get number of Rx descriptors occupied by received packets */
2955static inline int
2956mvpp2_rxq_received(struct mvpp2_port *port, int rxq_id)
2957{
2958 u32 val = mvpp2_read(port->priv, MVPP2_RXQ_STATUS_REG(rxq_id));
2959
2960 return val & MVPP2_RXQ_OCCUPIED_MASK;
2961}
2962
2963/* Update Rx queue status with the number of occupied and available
2964 * Rx descriptor slots.
2965 */
2966static inline void
2967mvpp2_rxq_status_update(struct mvpp2_port *port, int rxq_id,
2968 int used_count, int free_count)
2969{
2970 /* Decrement the number of used descriptors and increment count
2971 * increment the number of free descriptors.
2972 */
2973 u32 val = used_count | (free_count << MVPP2_RXQ_NUM_NEW_OFFSET);
2974
2975 mvpp2_write(port->priv, MVPP2_RXQ_STATUS_UPDATE_REG(rxq_id), val);
2976}
2977
2978/* Get pointer to next RX descriptor to be processed by SW */
2979static inline struct mvpp2_rx_desc *
2980mvpp2_rxq_next_desc_get(struct mvpp2_rx_queue *rxq)
2981{
2982 int rx_desc = rxq->next_desc_to_proc;
2983
2984 rxq->next_desc_to_proc = MVPP2_QUEUE_NEXT_DESC(rxq, rx_desc);
2985 prefetch(rxq->descs + rxq->next_desc_to_proc);
2986 return rxq->descs + rx_desc;
2987}
2988
2989/* Set rx queue offset */
2990static void mvpp2_rxq_offset_set(struct mvpp2_port *port,
2991 int prxq, int offset)
2992{
2993 u32 val;
2994
2995 /* Convert offset from bytes to units of 32 bytes */
2996 offset = offset >> 5;
2997
2998 val = mvpp2_read(port->priv, MVPP2_RXQ_CONFIG_REG(prxq));
2999 val &= ~MVPP2_RXQ_PACKET_OFFSET_MASK;
3000
3001 /* Offset is in */
3002 val |= ((offset << MVPP2_RXQ_PACKET_OFFSET_OFFS) &
3003 MVPP2_RXQ_PACKET_OFFSET_MASK);
3004
3005 mvpp2_write(port->priv, MVPP2_RXQ_CONFIG_REG(prxq), val);
3006}
3007
3008/* Obtain BM cookie information from descriptor */
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01003009static u32 mvpp2_bm_cookie_build(struct mvpp2_port *port,
3010 struct mvpp2_rx_desc *rx_desc)
Stefan Roese99d4c6d2016-02-10 07:22:10 +01003011{
Stefan Roese99d4c6d2016-02-10 07:22:10 +01003012 int cpu = smp_processor_id();
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01003013 int pool;
3014
3015 pool = (mvpp2_rxdesc_status_get(port, rx_desc) &
3016 MVPP2_RXD_BM_POOL_ID_MASK) >>
3017 MVPP2_RXD_BM_POOL_ID_OFFS;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01003018
3019 return ((pool & 0xFF) << MVPP2_BM_COOKIE_POOL_OFFS) |
3020 ((cpu & 0xFF) << MVPP2_BM_COOKIE_CPU_OFFS);
3021}
3022
3023/* Tx descriptors helper methods */
3024
3025/* Get number of Tx descriptors waiting to be transmitted by HW */
3026static int mvpp2_txq_pend_desc_num_get(struct mvpp2_port *port,
3027 struct mvpp2_tx_queue *txq)
3028{
3029 u32 val;
3030
3031 mvpp2_write(port->priv, MVPP2_TXQ_NUM_REG, txq->id);
3032 val = mvpp2_read(port->priv, MVPP2_TXQ_PENDING_REG);
3033
3034 return val & MVPP2_TXQ_PENDING_MASK;
3035}
3036
3037/* Get pointer to next Tx descriptor to be processed (send) by HW */
3038static struct mvpp2_tx_desc *
3039mvpp2_txq_next_desc_get(struct mvpp2_tx_queue *txq)
3040{
3041 int tx_desc = txq->next_desc_to_proc;
3042
3043 txq->next_desc_to_proc = MVPP2_QUEUE_NEXT_DESC(txq, tx_desc);
3044 return txq->descs + tx_desc;
3045}
3046
3047/* Update HW with number of aggregated Tx descriptors to be sent */
3048static void mvpp2_aggr_txq_pend_desc_add(struct mvpp2_port *port, int pending)
3049{
3050 /* aggregated access - relevant TXQ number is written in TX desc */
3051 mvpp2_write(port->priv, MVPP2_AGGR_TXQ_UPDATE_REG, pending);
3052}
3053
3054/* Get number of sent descriptors and decrement counter.
3055 * The number of sent descriptors is returned.
3056 * Per-CPU access
3057 */
3058static inline int mvpp2_txq_sent_desc_proc(struct mvpp2_port *port,
3059 struct mvpp2_tx_queue *txq)
3060{
3061 u32 val;
3062
3063 /* Reading status reg resets transmitted descriptor counter */
3064 val = mvpp2_read(port->priv, MVPP2_TXQ_SENT_REG(txq->id));
3065
3066 return (val & MVPP2_TRANSMITTED_COUNT_MASK) >>
3067 MVPP2_TRANSMITTED_COUNT_OFFSET;
3068}
3069
3070static void mvpp2_txq_sent_counter_clear(void *arg)
3071{
3072 struct mvpp2_port *port = arg;
3073 int queue;
3074
3075 for (queue = 0; queue < txq_number; queue++) {
3076 int id = port->txqs[queue]->id;
3077
3078 mvpp2_read(port->priv, MVPP2_TXQ_SENT_REG(id));
3079 }
3080}
3081
3082/* Set max sizes for Tx queues */
3083static void mvpp2_txp_max_tx_size_set(struct mvpp2_port *port)
3084{
3085 u32 val, size, mtu;
3086 int txq, tx_port_num;
3087
3088 mtu = port->pkt_size * 8;
3089 if (mtu > MVPP2_TXP_MTU_MAX)
3090 mtu = MVPP2_TXP_MTU_MAX;
3091
3092 /* WA for wrong Token bucket update: Set MTU value = 3*real MTU value */
3093 mtu = 3 * mtu;
3094
3095 /* Indirect access to registers */
3096 tx_port_num = mvpp2_egress_port(port);
3097 mvpp2_write(port->priv, MVPP2_TXP_SCHED_PORT_INDEX_REG, tx_port_num);
3098
3099 /* Set MTU */
3100 val = mvpp2_read(port->priv, MVPP2_TXP_SCHED_MTU_REG);
3101 val &= ~MVPP2_TXP_MTU_MAX;
3102 val |= mtu;
3103 mvpp2_write(port->priv, MVPP2_TXP_SCHED_MTU_REG, val);
3104
3105 /* TXP token size and all TXQs token size must be larger that MTU */
3106 val = mvpp2_read(port->priv, MVPP2_TXP_SCHED_TOKEN_SIZE_REG);
3107 size = val & MVPP2_TXP_TOKEN_SIZE_MAX;
3108 if (size < mtu) {
3109 size = mtu;
3110 val &= ~MVPP2_TXP_TOKEN_SIZE_MAX;
3111 val |= size;
3112 mvpp2_write(port->priv, MVPP2_TXP_SCHED_TOKEN_SIZE_REG, val);
3113 }
3114
3115 for (txq = 0; txq < txq_number; txq++) {
3116 val = mvpp2_read(port->priv,
3117 MVPP2_TXQ_SCHED_TOKEN_SIZE_REG(txq));
3118 size = val & MVPP2_TXQ_TOKEN_SIZE_MAX;
3119
3120 if (size < mtu) {
3121 size = mtu;
3122 val &= ~MVPP2_TXQ_TOKEN_SIZE_MAX;
3123 val |= size;
3124 mvpp2_write(port->priv,
3125 MVPP2_TXQ_SCHED_TOKEN_SIZE_REG(txq),
3126 val);
3127 }
3128 }
3129}
3130
3131/* Free Tx queue skbuffs */
3132static void mvpp2_txq_bufs_free(struct mvpp2_port *port,
3133 struct mvpp2_tx_queue *txq,
3134 struct mvpp2_txq_pcpu *txq_pcpu, int num)
3135{
3136 int i;
3137
3138 for (i = 0; i < num; i++)
3139 mvpp2_txq_inc_get(txq_pcpu);
3140}
3141
3142static inline struct mvpp2_rx_queue *mvpp2_get_rx_queue(struct mvpp2_port *port,
3143 u32 cause)
3144{
3145 int queue = fls(cause) - 1;
3146
3147 return port->rxqs[queue];
3148}
3149
3150static inline struct mvpp2_tx_queue *mvpp2_get_tx_queue(struct mvpp2_port *port,
3151 u32 cause)
3152{
3153 int queue = fls(cause) - 1;
3154
3155 return port->txqs[queue];
3156}
3157
3158/* Rx/Tx queue initialization/cleanup methods */
3159
3160/* Allocate and initialize descriptors for aggr TXQ */
3161static int mvpp2_aggr_txq_init(struct udevice *dev,
3162 struct mvpp2_tx_queue *aggr_txq,
3163 int desc_num, int cpu,
3164 struct mvpp2 *priv)
3165{
Thomas Petazzoni80350f52017-02-20 11:36:57 +01003166 u32 txq_dma;
3167
Stefan Roese99d4c6d2016-02-10 07:22:10 +01003168 /* Allocate memory for TX descriptors */
3169 aggr_txq->descs = buffer_loc.aggr_tx_descs;
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01003170 aggr_txq->descs_dma = (dma_addr_t)buffer_loc.aggr_tx_descs;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01003171 if (!aggr_txq->descs)
3172 return -ENOMEM;
3173
3174 /* Make sure descriptor address is cache line size aligned */
3175 BUG_ON(aggr_txq->descs !=
3176 PTR_ALIGN(aggr_txq->descs, MVPP2_CPU_D_CACHE_LINE_SIZE));
3177
3178 aggr_txq->last_desc = aggr_txq->size - 1;
3179
3180 /* Aggr TXQ no reset WA */
3181 aggr_txq->next_desc_to_proc = mvpp2_read(priv,
3182 MVPP2_AGGR_TXQ_INDEX_REG(cpu));
3183
Thomas Petazzoni80350f52017-02-20 11:36:57 +01003184 /* Set Tx descriptors queue starting address indirect
3185 * access
3186 */
3187 if (priv->hw_version == MVPP21)
3188 txq_dma = aggr_txq->descs_dma;
3189 else
3190 txq_dma = aggr_txq->descs_dma >>
3191 MVPP22_AGGR_TXQ_DESC_ADDR_OFFS;
3192
3193 mvpp2_write(priv, MVPP2_AGGR_TXQ_DESC_ADDR_REG(cpu), txq_dma);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01003194 mvpp2_write(priv, MVPP2_AGGR_TXQ_DESC_SIZE_REG(cpu), desc_num);
3195
3196 return 0;
3197}
3198
3199/* Create a specified Rx queue */
3200static int mvpp2_rxq_init(struct mvpp2_port *port,
3201 struct mvpp2_rx_queue *rxq)
3202
3203{
Thomas Petazzoni80350f52017-02-20 11:36:57 +01003204 u32 rxq_dma;
3205
Stefan Roese99d4c6d2016-02-10 07:22:10 +01003206 rxq->size = port->rx_ring_size;
3207
3208 /* Allocate memory for RX descriptors */
3209 rxq->descs = buffer_loc.rx_descs;
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01003210 rxq->descs_dma = (dma_addr_t)buffer_loc.rx_descs;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01003211 if (!rxq->descs)
3212 return -ENOMEM;
3213
3214 BUG_ON(rxq->descs !=
3215 PTR_ALIGN(rxq->descs, MVPP2_CPU_D_CACHE_LINE_SIZE));
3216
3217 rxq->last_desc = rxq->size - 1;
3218
3219 /* Zero occupied and non-occupied counters - direct access */
3220 mvpp2_write(port->priv, MVPP2_RXQ_STATUS_REG(rxq->id), 0);
3221
3222 /* Set Rx descriptors queue starting address - indirect access */
3223 mvpp2_write(port->priv, MVPP2_RXQ_NUM_REG, rxq->id);
Thomas Petazzoni80350f52017-02-20 11:36:57 +01003224 if (port->priv->hw_version == MVPP21)
3225 rxq_dma = rxq->descs_dma;
3226 else
3227 rxq_dma = rxq->descs_dma >> MVPP22_DESC_ADDR_OFFS;
3228 mvpp2_write(port->priv, MVPP2_RXQ_DESC_ADDR_REG, rxq_dma);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01003229 mvpp2_write(port->priv, MVPP2_RXQ_DESC_SIZE_REG, rxq->size);
3230 mvpp2_write(port->priv, MVPP2_RXQ_INDEX_REG, 0);
3231
3232 /* Set Offset */
3233 mvpp2_rxq_offset_set(port, rxq->id, NET_SKB_PAD);
3234
3235 /* Add number of descriptors ready for receiving packets */
3236 mvpp2_rxq_status_update(port, rxq->id, 0, rxq->size);
3237
3238 return 0;
3239}
3240
3241/* Push packets received by the RXQ to BM pool */
3242static void mvpp2_rxq_drop_pkts(struct mvpp2_port *port,
3243 struct mvpp2_rx_queue *rxq)
3244{
3245 int rx_received, i;
3246
3247 rx_received = mvpp2_rxq_received(port, rxq->id);
3248 if (!rx_received)
3249 return;
3250
3251 for (i = 0; i < rx_received; i++) {
3252 struct mvpp2_rx_desc *rx_desc = mvpp2_rxq_next_desc_get(rxq);
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01003253 u32 bm = mvpp2_bm_cookie_build(port, rx_desc);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01003254
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01003255 mvpp2_pool_refill(port, bm,
3256 mvpp2_rxdesc_dma_addr_get(port, rx_desc),
3257 mvpp2_rxdesc_cookie_get(port, rx_desc));
Stefan Roese99d4c6d2016-02-10 07:22:10 +01003258 }
3259 mvpp2_rxq_status_update(port, rxq->id, rx_received, rx_received);
3260}
3261
3262/* Cleanup Rx queue */
3263static void mvpp2_rxq_deinit(struct mvpp2_port *port,
3264 struct mvpp2_rx_queue *rxq)
3265{
3266 mvpp2_rxq_drop_pkts(port, rxq);
3267
3268 rxq->descs = NULL;
3269 rxq->last_desc = 0;
3270 rxq->next_desc_to_proc = 0;
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01003271 rxq->descs_dma = 0;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01003272
3273 /* Clear Rx descriptors queue starting address and size;
3274 * free descriptor number
3275 */
3276 mvpp2_write(port->priv, MVPP2_RXQ_STATUS_REG(rxq->id), 0);
3277 mvpp2_write(port->priv, MVPP2_RXQ_NUM_REG, rxq->id);
3278 mvpp2_write(port->priv, MVPP2_RXQ_DESC_ADDR_REG, 0);
3279 mvpp2_write(port->priv, MVPP2_RXQ_DESC_SIZE_REG, 0);
3280}
3281
3282/* Create and initialize a Tx queue */
3283static int mvpp2_txq_init(struct mvpp2_port *port,
3284 struct mvpp2_tx_queue *txq)
3285{
3286 u32 val;
3287 int cpu, desc, desc_per_txq, tx_port_num;
3288 struct mvpp2_txq_pcpu *txq_pcpu;
3289
3290 txq->size = port->tx_ring_size;
3291
3292 /* Allocate memory for Tx descriptors */
3293 txq->descs = buffer_loc.tx_descs;
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01003294 txq->descs_dma = (dma_addr_t)buffer_loc.tx_descs;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01003295 if (!txq->descs)
3296 return -ENOMEM;
3297
3298 /* Make sure descriptor address is cache line size aligned */
3299 BUG_ON(txq->descs !=
3300 PTR_ALIGN(txq->descs, MVPP2_CPU_D_CACHE_LINE_SIZE));
3301
3302 txq->last_desc = txq->size - 1;
3303
3304 /* Set Tx descriptors queue starting address - indirect access */
3305 mvpp2_write(port->priv, MVPP2_TXQ_NUM_REG, txq->id);
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01003306 mvpp2_write(port->priv, MVPP2_TXQ_DESC_ADDR_REG, txq->descs_dma);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01003307 mvpp2_write(port->priv, MVPP2_TXQ_DESC_SIZE_REG, txq->size &
3308 MVPP2_TXQ_DESC_SIZE_MASK);
3309 mvpp2_write(port->priv, MVPP2_TXQ_INDEX_REG, 0);
3310 mvpp2_write(port->priv, MVPP2_TXQ_RSVD_CLR_REG,
3311 txq->id << MVPP2_TXQ_RSVD_CLR_OFFSET);
3312 val = mvpp2_read(port->priv, MVPP2_TXQ_PENDING_REG);
3313 val &= ~MVPP2_TXQ_PENDING_MASK;
3314 mvpp2_write(port->priv, MVPP2_TXQ_PENDING_REG, val);
3315
3316 /* Calculate base address in prefetch buffer. We reserve 16 descriptors
3317 * for each existing TXQ.
3318 * TCONTS for PON port must be continuous from 0 to MVPP2_MAX_TCONT
3319 * GBE ports assumed to be continious from 0 to MVPP2_MAX_PORTS
3320 */
3321 desc_per_txq = 16;
3322 desc = (port->id * MVPP2_MAX_TXQ * desc_per_txq) +
3323 (txq->log_id * desc_per_txq);
3324
3325 mvpp2_write(port->priv, MVPP2_TXQ_PREF_BUF_REG,
3326 MVPP2_PREF_BUF_PTR(desc) | MVPP2_PREF_BUF_SIZE_16 |
Thomas Petazzoni26a52782017-02-16 08:03:37 +01003327 MVPP2_PREF_BUF_THRESH(desc_per_txq / 2));
Stefan Roese99d4c6d2016-02-10 07:22:10 +01003328
3329 /* WRR / EJP configuration - indirect access */
3330 tx_port_num = mvpp2_egress_port(port);
3331 mvpp2_write(port->priv, MVPP2_TXP_SCHED_PORT_INDEX_REG, tx_port_num);
3332
3333 val = mvpp2_read(port->priv, MVPP2_TXQ_SCHED_REFILL_REG(txq->log_id));
3334 val &= ~MVPP2_TXQ_REFILL_PERIOD_ALL_MASK;
3335 val |= MVPP2_TXQ_REFILL_PERIOD_MASK(1);
3336 val |= MVPP2_TXQ_REFILL_TOKENS_ALL_MASK;
3337 mvpp2_write(port->priv, MVPP2_TXQ_SCHED_REFILL_REG(txq->log_id), val);
3338
3339 val = MVPP2_TXQ_TOKEN_SIZE_MAX;
3340 mvpp2_write(port->priv, MVPP2_TXQ_SCHED_TOKEN_SIZE_REG(txq->log_id),
3341 val);
3342
3343 for_each_present_cpu(cpu) {
3344 txq_pcpu = per_cpu_ptr(txq->pcpu, cpu);
3345 txq_pcpu->size = txq->size;
3346 }
3347
3348 return 0;
3349}
3350
3351/* Free allocated TXQ resources */
3352static void mvpp2_txq_deinit(struct mvpp2_port *port,
3353 struct mvpp2_tx_queue *txq)
3354{
3355 txq->descs = NULL;
3356 txq->last_desc = 0;
3357 txq->next_desc_to_proc = 0;
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01003358 txq->descs_dma = 0;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01003359
3360 /* Set minimum bandwidth for disabled TXQs */
3361 mvpp2_write(port->priv, MVPP2_TXQ_SCHED_TOKEN_CNTR_REG(txq->id), 0);
3362
3363 /* Set Tx descriptors queue starting address and size */
3364 mvpp2_write(port->priv, MVPP2_TXQ_NUM_REG, txq->id);
3365 mvpp2_write(port->priv, MVPP2_TXQ_DESC_ADDR_REG, 0);
3366 mvpp2_write(port->priv, MVPP2_TXQ_DESC_SIZE_REG, 0);
3367}
3368
3369/* Cleanup Tx ports */
3370static void mvpp2_txq_clean(struct mvpp2_port *port, struct mvpp2_tx_queue *txq)
3371{
3372 struct mvpp2_txq_pcpu *txq_pcpu;
3373 int delay, pending, cpu;
3374 u32 val;
3375
3376 mvpp2_write(port->priv, MVPP2_TXQ_NUM_REG, txq->id);
3377 val = mvpp2_read(port->priv, MVPP2_TXQ_PREF_BUF_REG);
3378 val |= MVPP2_TXQ_DRAIN_EN_MASK;
3379 mvpp2_write(port->priv, MVPP2_TXQ_PREF_BUF_REG, val);
3380
3381 /* The napi queue has been stopped so wait for all packets
3382 * to be transmitted.
3383 */
3384 delay = 0;
3385 do {
3386 if (delay >= MVPP2_TX_PENDING_TIMEOUT_MSEC) {
3387 netdev_warn(port->dev,
3388 "port %d: cleaning queue %d timed out\n",
3389 port->id, txq->log_id);
3390 break;
3391 }
3392 mdelay(1);
3393 delay++;
3394
3395 pending = mvpp2_txq_pend_desc_num_get(port, txq);
3396 } while (pending);
3397
3398 val &= ~MVPP2_TXQ_DRAIN_EN_MASK;
3399 mvpp2_write(port->priv, MVPP2_TXQ_PREF_BUF_REG, val);
3400
3401 for_each_present_cpu(cpu) {
3402 txq_pcpu = per_cpu_ptr(txq->pcpu, cpu);
3403
3404 /* Release all packets */
3405 mvpp2_txq_bufs_free(port, txq, txq_pcpu, txq_pcpu->count);
3406
3407 /* Reset queue */
3408 txq_pcpu->count = 0;
3409 txq_pcpu->txq_put_index = 0;
3410 txq_pcpu->txq_get_index = 0;
3411 }
3412}
3413
3414/* Cleanup all Tx queues */
3415static void mvpp2_cleanup_txqs(struct mvpp2_port *port)
3416{
3417 struct mvpp2_tx_queue *txq;
3418 int queue;
3419 u32 val;
3420
3421 val = mvpp2_read(port->priv, MVPP2_TX_PORT_FLUSH_REG);
3422
3423 /* Reset Tx ports and delete Tx queues */
3424 val |= MVPP2_TX_PORT_FLUSH_MASK(port->id);
3425 mvpp2_write(port->priv, MVPP2_TX_PORT_FLUSH_REG, val);
3426
3427 for (queue = 0; queue < txq_number; queue++) {
3428 txq = port->txqs[queue];
3429 mvpp2_txq_clean(port, txq);
3430 mvpp2_txq_deinit(port, txq);
3431 }
3432
3433 mvpp2_txq_sent_counter_clear(port);
3434
3435 val &= ~MVPP2_TX_PORT_FLUSH_MASK(port->id);
3436 mvpp2_write(port->priv, MVPP2_TX_PORT_FLUSH_REG, val);
3437}
3438
3439/* Cleanup all Rx queues */
3440static void mvpp2_cleanup_rxqs(struct mvpp2_port *port)
3441{
3442 int queue;
3443
3444 for (queue = 0; queue < rxq_number; queue++)
3445 mvpp2_rxq_deinit(port, port->rxqs[queue]);
3446}
3447
3448/* Init all Rx queues for port */
3449static int mvpp2_setup_rxqs(struct mvpp2_port *port)
3450{
3451 int queue, err;
3452
3453 for (queue = 0; queue < rxq_number; queue++) {
3454 err = mvpp2_rxq_init(port, port->rxqs[queue]);
3455 if (err)
3456 goto err_cleanup;
3457 }
3458 return 0;
3459
3460err_cleanup:
3461 mvpp2_cleanup_rxqs(port);
3462 return err;
3463}
3464
3465/* Init all tx queues for port */
3466static int mvpp2_setup_txqs(struct mvpp2_port *port)
3467{
3468 struct mvpp2_tx_queue *txq;
3469 int queue, err;
3470
3471 for (queue = 0; queue < txq_number; queue++) {
3472 txq = port->txqs[queue];
3473 err = mvpp2_txq_init(port, txq);
3474 if (err)
3475 goto err_cleanup;
3476 }
3477
3478 mvpp2_txq_sent_counter_clear(port);
3479 return 0;
3480
3481err_cleanup:
3482 mvpp2_cleanup_txqs(port);
3483 return err;
3484}
3485
3486/* Adjust link */
3487static void mvpp2_link_event(struct mvpp2_port *port)
3488{
3489 struct phy_device *phydev = port->phy_dev;
3490 int status_change = 0;
3491 u32 val;
3492
3493 if (phydev->link) {
3494 if ((port->speed != phydev->speed) ||
3495 (port->duplex != phydev->duplex)) {
3496 u32 val;
3497
3498 val = readl(port->base + MVPP2_GMAC_AUTONEG_CONFIG);
3499 val &= ~(MVPP2_GMAC_CONFIG_MII_SPEED |
3500 MVPP2_GMAC_CONFIG_GMII_SPEED |
3501 MVPP2_GMAC_CONFIG_FULL_DUPLEX |
3502 MVPP2_GMAC_AN_SPEED_EN |
3503 MVPP2_GMAC_AN_DUPLEX_EN);
3504
3505 if (phydev->duplex)
3506 val |= MVPP2_GMAC_CONFIG_FULL_DUPLEX;
3507
3508 if (phydev->speed == SPEED_1000)
3509 val |= MVPP2_GMAC_CONFIG_GMII_SPEED;
3510 else if (phydev->speed == SPEED_100)
3511 val |= MVPP2_GMAC_CONFIG_MII_SPEED;
3512
3513 writel(val, port->base + MVPP2_GMAC_AUTONEG_CONFIG);
3514
3515 port->duplex = phydev->duplex;
3516 port->speed = phydev->speed;
3517 }
3518 }
3519
3520 if (phydev->link != port->link) {
3521 if (!phydev->link) {
3522 port->duplex = -1;
3523 port->speed = 0;
3524 }
3525
3526 port->link = phydev->link;
3527 status_change = 1;
3528 }
3529
3530 if (status_change) {
3531 if (phydev->link) {
3532 val = readl(port->base + MVPP2_GMAC_AUTONEG_CONFIG);
3533 val |= (MVPP2_GMAC_FORCE_LINK_PASS |
3534 MVPP2_GMAC_FORCE_LINK_DOWN);
3535 writel(val, port->base + MVPP2_GMAC_AUTONEG_CONFIG);
3536 mvpp2_egress_enable(port);
3537 mvpp2_ingress_enable(port);
3538 } else {
3539 mvpp2_ingress_disable(port);
3540 mvpp2_egress_disable(port);
3541 }
3542 }
3543}
3544
3545/* Main RX/TX processing routines */
3546
3547/* Display more error info */
3548static void mvpp2_rx_error(struct mvpp2_port *port,
3549 struct mvpp2_rx_desc *rx_desc)
3550{
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01003551 u32 status = mvpp2_rxdesc_status_get(port, rx_desc);
3552 size_t sz = mvpp2_rxdesc_size_get(port, rx_desc);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01003553
3554 switch (status & MVPP2_RXD_ERR_CODE_MASK) {
3555 case MVPP2_RXD_ERR_CRC:
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01003556 netdev_err(port->dev, "bad rx status %08x (crc error), size=%zu\n",
3557 status, sz);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01003558 break;
3559 case MVPP2_RXD_ERR_OVERRUN:
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01003560 netdev_err(port->dev, "bad rx status %08x (overrun error), size=%zu\n",
3561 status, sz);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01003562 break;
3563 case MVPP2_RXD_ERR_RESOURCE:
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01003564 netdev_err(port->dev, "bad rx status %08x (resource error), size=%zu\n",
3565 status, sz);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01003566 break;
3567 }
3568}
3569
3570/* Reuse skb if possible, or allocate a new skb and add it to BM pool */
3571static int mvpp2_rx_refill(struct mvpp2_port *port,
3572 struct mvpp2_bm_pool *bm_pool,
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01003573 u32 bm, dma_addr_t dma_addr)
Stefan Roese99d4c6d2016-02-10 07:22:10 +01003574{
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01003575 mvpp2_pool_refill(port, bm, dma_addr, (unsigned long)dma_addr);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01003576 return 0;
3577}
3578
3579/* Set hw internals when starting port */
3580static void mvpp2_start_dev(struct mvpp2_port *port)
3581{
3582 mvpp2_gmac_max_rx_size_set(port);
3583 mvpp2_txp_max_tx_size_set(port);
3584
3585 mvpp2_port_enable(port);
3586}
3587
3588/* Set hw internals when stopping port */
3589static void mvpp2_stop_dev(struct mvpp2_port *port)
3590{
3591 /* Stop new packets from arriving to RXQs */
3592 mvpp2_ingress_disable(port);
3593
3594 mvpp2_egress_disable(port);
3595 mvpp2_port_disable(port);
3596}
3597
3598static int mvpp2_phy_connect(struct udevice *dev, struct mvpp2_port *port)
3599{
3600 struct phy_device *phy_dev;
3601
3602 if (!port->init || port->link == 0) {
3603 phy_dev = phy_connect(port->priv->bus, port->phyaddr, dev,
3604 port->phy_interface);
3605 port->phy_dev = phy_dev;
3606 if (!phy_dev) {
3607 netdev_err(port->dev, "cannot connect to phy\n");
3608 return -ENODEV;
3609 }
3610 phy_dev->supported &= PHY_GBIT_FEATURES;
3611 phy_dev->advertising = phy_dev->supported;
3612
3613 port->phy_dev = phy_dev;
3614 port->link = 0;
3615 port->duplex = 0;
3616 port->speed = 0;
3617
3618 phy_config(phy_dev);
3619 phy_startup(phy_dev);
3620 if (!phy_dev->link) {
3621 printf("%s: No link\n", phy_dev->dev->name);
3622 return -1;
3623 }
3624
3625 port->init = 1;
3626 } else {
3627 mvpp2_egress_enable(port);
3628 mvpp2_ingress_enable(port);
3629 }
3630
3631 return 0;
3632}
3633
3634static int mvpp2_open(struct udevice *dev, struct mvpp2_port *port)
3635{
3636 unsigned char mac_bcast[ETH_ALEN] = {
3637 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
3638 int err;
3639
3640 err = mvpp2_prs_mac_da_accept(port->priv, port->id, mac_bcast, true);
3641 if (err) {
3642 netdev_err(dev, "mvpp2_prs_mac_da_accept BC failed\n");
3643 return err;
3644 }
3645 err = mvpp2_prs_mac_da_accept(port->priv, port->id,
3646 port->dev_addr, true);
3647 if (err) {
3648 netdev_err(dev, "mvpp2_prs_mac_da_accept MC failed\n");
3649 return err;
3650 }
3651 err = mvpp2_prs_def_flow(port);
3652 if (err) {
3653 netdev_err(dev, "mvpp2_prs_def_flow failed\n");
3654 return err;
3655 }
3656
3657 /* Allocate the Rx/Tx queues */
3658 err = mvpp2_setup_rxqs(port);
3659 if (err) {
3660 netdev_err(port->dev, "cannot allocate Rx queues\n");
3661 return err;
3662 }
3663
3664 err = mvpp2_setup_txqs(port);
3665 if (err) {
3666 netdev_err(port->dev, "cannot allocate Tx queues\n");
3667 return err;
3668 }
3669
3670 err = mvpp2_phy_connect(dev, port);
3671 if (err < 0)
3672 return err;
3673
3674 mvpp2_link_event(port);
3675
3676 mvpp2_start_dev(port);
3677
3678 return 0;
3679}
3680
3681/* No Device ops here in U-Boot */
3682
3683/* Driver initialization */
3684
3685static void mvpp2_port_power_up(struct mvpp2_port *port)
3686{
Thomas Petazzoni7c7311f2017-02-20 11:42:51 +01003687 struct mvpp2 *priv = port->priv;
3688
Stefan Roese99d4c6d2016-02-10 07:22:10 +01003689 mvpp2_port_mii_set(port);
3690 mvpp2_port_periodic_xon_disable(port);
Thomas Petazzoni7c7311f2017-02-20 11:42:51 +01003691 if (priv->hw_version == MVPP21)
3692 mvpp2_port_fc_adv_enable(port);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01003693 mvpp2_port_reset(port);
3694}
3695
3696/* Initialize port HW */
3697static int mvpp2_port_init(struct udevice *dev, struct mvpp2_port *port)
3698{
3699 struct mvpp2 *priv = port->priv;
3700 struct mvpp2_txq_pcpu *txq_pcpu;
3701 int queue, cpu, err;
3702
Thomas Petazzoni09b3f942017-02-16 09:03:16 +01003703 if (port->first_rxq + rxq_number >
3704 MVPP2_MAX_PORTS * priv->max_port_rxqs)
Stefan Roese99d4c6d2016-02-10 07:22:10 +01003705 return -EINVAL;
3706
3707 /* Disable port */
3708 mvpp2_egress_disable(port);
3709 mvpp2_port_disable(port);
3710
3711 port->txqs = devm_kcalloc(dev, txq_number, sizeof(*port->txqs),
3712 GFP_KERNEL);
3713 if (!port->txqs)
3714 return -ENOMEM;
3715
3716 /* Associate physical Tx queues to this port and initialize.
3717 * The mapping is predefined.
3718 */
3719 for (queue = 0; queue < txq_number; queue++) {
3720 int queue_phy_id = mvpp2_txq_phys(port->id, queue);
3721 struct mvpp2_tx_queue *txq;
3722
3723 txq = devm_kzalloc(dev, sizeof(*txq), GFP_KERNEL);
3724 if (!txq)
3725 return -ENOMEM;
3726
3727 txq->pcpu = devm_kzalloc(dev, sizeof(struct mvpp2_txq_pcpu),
3728 GFP_KERNEL);
3729 if (!txq->pcpu)
3730 return -ENOMEM;
3731
3732 txq->id = queue_phy_id;
3733 txq->log_id = queue;
3734 txq->done_pkts_coal = MVPP2_TXDONE_COAL_PKTS_THRESH;
3735 for_each_present_cpu(cpu) {
3736 txq_pcpu = per_cpu_ptr(txq->pcpu, cpu);
3737 txq_pcpu->cpu = cpu;
3738 }
3739
3740 port->txqs[queue] = txq;
3741 }
3742
3743 port->rxqs = devm_kcalloc(dev, rxq_number, sizeof(*port->rxqs),
3744 GFP_KERNEL);
3745 if (!port->rxqs)
3746 return -ENOMEM;
3747
3748 /* Allocate and initialize Rx queue for this port */
3749 for (queue = 0; queue < rxq_number; queue++) {
3750 struct mvpp2_rx_queue *rxq;
3751
3752 /* Map physical Rx queue to port's logical Rx queue */
3753 rxq = devm_kzalloc(dev, sizeof(*rxq), GFP_KERNEL);
3754 if (!rxq)
3755 return -ENOMEM;
3756 /* Map this Rx queue to a physical queue */
3757 rxq->id = port->first_rxq + queue;
3758 rxq->port = port->id;
3759 rxq->logic_rxq = queue;
3760
3761 port->rxqs[queue] = rxq;
3762 }
3763
3764 /* Configure Rx queue group interrupt for this port */
Thomas Petazzonibc0bbf42017-02-16 08:46:37 +01003765 if (priv->hw_version == MVPP21) {
3766 mvpp2_write(priv, MVPP21_ISR_RXQ_GROUP_REG(port->id),
3767 CONFIG_MV_ETH_RXQ);
3768 } else {
3769 u32 val;
3770
3771 val = (port->id << MVPP22_ISR_RXQ_GROUP_INDEX_GROUP_OFFSET);
3772 mvpp2_write(priv, MVPP22_ISR_RXQ_GROUP_INDEX_REG, val);
3773
3774 val = (CONFIG_MV_ETH_RXQ <<
3775 MVPP22_ISR_RXQ_SUB_GROUP_SIZE_OFFSET);
3776 mvpp2_write(priv, MVPP22_ISR_RXQ_SUB_GROUP_CONFIG_REG, val);
3777 }
Stefan Roese99d4c6d2016-02-10 07:22:10 +01003778
3779 /* Create Rx descriptor rings */
3780 for (queue = 0; queue < rxq_number; queue++) {
3781 struct mvpp2_rx_queue *rxq = port->rxqs[queue];
3782
3783 rxq->size = port->rx_ring_size;
3784 rxq->pkts_coal = MVPP2_RX_COAL_PKTS;
3785 rxq->time_coal = MVPP2_RX_COAL_USEC;
3786 }
3787
3788 mvpp2_ingress_disable(port);
3789
3790 /* Port default configuration */
3791 mvpp2_defaults_set(port);
3792
3793 /* Port's classifier configuration */
3794 mvpp2_cls_oversize_rxq_set(port);
3795 mvpp2_cls_port_config(port);
3796
3797 /* Provide an initial Rx packet size */
3798 port->pkt_size = MVPP2_RX_PKT_SIZE(PKTSIZE_ALIGN);
3799
3800 /* Initialize pools for swf */
3801 err = mvpp2_swf_bm_pool_init(port);
3802 if (err)
3803 return err;
3804
3805 return 0;
3806}
3807
3808/* Ports initialization */
3809static int mvpp2_port_probe(struct udevice *dev,
3810 struct mvpp2_port *port,
3811 int port_node,
Thomas Petazzoni09b3f942017-02-16 09:03:16 +01003812 struct mvpp2 *priv)
Stefan Roese99d4c6d2016-02-10 07:22:10 +01003813{
3814 int phy_node;
3815 u32 id;
3816 u32 phyaddr;
3817 const char *phy_mode_str;
3818 int phy_mode = -1;
3819 int priv_common_regs_num = 2;
3820 int err;
3821
3822 phy_node = fdtdec_lookup_phandle(gd->fdt_blob, port_node, "phy");
3823 if (phy_node < 0) {
3824 dev_err(&pdev->dev, "missing phy\n");
3825 return -ENODEV;
3826 }
3827
3828 phy_mode_str = fdt_getprop(gd->fdt_blob, port_node, "phy-mode", NULL);
3829 if (phy_mode_str)
3830 phy_mode = phy_get_interface_by_name(phy_mode_str);
3831 if (phy_mode == -1) {
3832 dev_err(&pdev->dev, "incorrect phy mode\n");
3833 return -EINVAL;
3834 }
3835
3836 id = fdtdec_get_int(gd->fdt_blob, port_node, "port-id", -1);
3837 if (id == -1) {
3838 dev_err(&pdev->dev, "missing port-id value\n");
3839 return -EINVAL;
3840 }
3841
3842 phyaddr = fdtdec_get_int(gd->fdt_blob, phy_node, "reg", 0);
3843
3844 port->priv = priv;
3845 port->id = id;
Thomas Petazzoni09b3f942017-02-16 09:03:16 +01003846 if (priv->hw_version == MVPP21)
3847 port->first_rxq = port->id * rxq_number;
3848 else
3849 port->first_rxq = port->id * priv->max_port_rxqs;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01003850 port->phy_node = phy_node;
3851 port->phy_interface = phy_mode;
3852 port->phyaddr = phyaddr;
3853
Thomas Petazzoni26a52782017-02-16 08:03:37 +01003854 if (priv->hw_version == MVPP21) {
3855 port->base = (void __iomem *)dev_get_addr_index(
3856 dev->parent, priv_common_regs_num + id);
3857 if (IS_ERR(port->base))
3858 return PTR_ERR(port->base);
3859 } else {
3860 u32 gop_id;
3861
3862 gop_id = fdtdec_get_int(gd->fdt_blob, port_node,
3863 "gop-port-id", -1);
3864 if (id == -1) {
3865 dev_err(&pdev->dev, "missing gop-port-id value\n");
3866 return -EINVAL;
3867 }
3868
3869 port->base = priv->iface_base + MVPP22_PORT_BASE +
3870 gop_id * MVPP22_PORT_OFFSET;
3871 }
Stefan Roese99d4c6d2016-02-10 07:22:10 +01003872
3873 port->tx_ring_size = MVPP2_MAX_TXD;
3874 port->rx_ring_size = MVPP2_MAX_RXD;
3875
3876 err = mvpp2_port_init(dev, port);
3877 if (err < 0) {
3878 dev_err(&pdev->dev, "failed to init port %d\n", id);
3879 return err;
3880 }
3881 mvpp2_port_power_up(port);
3882
Stefan Roese99d4c6d2016-02-10 07:22:10 +01003883 priv->port_list[id] = port;
3884 return 0;
3885}
3886
3887/* Initialize decoding windows */
3888static void mvpp2_conf_mbus_windows(const struct mbus_dram_target_info *dram,
3889 struct mvpp2 *priv)
3890{
3891 u32 win_enable;
3892 int i;
3893
3894 for (i = 0; i < 6; i++) {
3895 mvpp2_write(priv, MVPP2_WIN_BASE(i), 0);
3896 mvpp2_write(priv, MVPP2_WIN_SIZE(i), 0);
3897
3898 if (i < 4)
3899 mvpp2_write(priv, MVPP2_WIN_REMAP(i), 0);
3900 }
3901
3902 win_enable = 0;
3903
3904 for (i = 0; i < dram->num_cs; i++) {
3905 const struct mbus_dram_window *cs = dram->cs + i;
3906
3907 mvpp2_write(priv, MVPP2_WIN_BASE(i),
3908 (cs->base & 0xffff0000) | (cs->mbus_attr << 8) |
3909 dram->mbus_dram_target_id);
3910
3911 mvpp2_write(priv, MVPP2_WIN_SIZE(i),
3912 (cs->size - 1) & 0xffff0000);
3913
3914 win_enable |= (1 << i);
3915 }
3916
3917 mvpp2_write(priv, MVPP2_BASE_ADDR_ENABLE, win_enable);
3918}
3919
3920/* Initialize Rx FIFO's */
3921static void mvpp2_rx_fifo_init(struct mvpp2 *priv)
3922{
3923 int port;
3924
3925 for (port = 0; port < MVPP2_MAX_PORTS; port++) {
3926 mvpp2_write(priv, MVPP2_RX_DATA_FIFO_SIZE_REG(port),
3927 MVPP2_RX_FIFO_PORT_DATA_SIZE);
3928 mvpp2_write(priv, MVPP2_RX_ATTR_FIFO_SIZE_REG(port),
3929 MVPP2_RX_FIFO_PORT_ATTR_SIZE);
3930 }
3931
3932 mvpp2_write(priv, MVPP2_RX_MIN_PKT_SIZE_REG,
3933 MVPP2_RX_FIFO_PORT_MIN_PKT);
3934 mvpp2_write(priv, MVPP2_RX_FIFO_INIT_REG, 0x1);
3935}
3936
Thomas Petazzonicdf77792017-02-16 08:41:07 +01003937static void mvpp2_axi_init(struct mvpp2 *priv)
3938{
3939 u32 val, rdval, wrval;
3940
3941 mvpp2_write(priv, MVPP22_BM_ADDR_HIGH_RLS_REG, 0x0);
3942
3943 /* AXI Bridge Configuration */
3944
3945 rdval = MVPP22_AXI_CODE_CACHE_RD_CACHE
3946 << MVPP22_AXI_ATTR_CACHE_OFFS;
3947 rdval |= MVPP22_AXI_CODE_DOMAIN_OUTER_DOM
3948 << MVPP22_AXI_ATTR_DOMAIN_OFFS;
3949
3950 wrval = MVPP22_AXI_CODE_CACHE_WR_CACHE
3951 << MVPP22_AXI_ATTR_CACHE_OFFS;
3952 wrval |= MVPP22_AXI_CODE_DOMAIN_OUTER_DOM
3953 << MVPP22_AXI_ATTR_DOMAIN_OFFS;
3954
3955 /* BM */
3956 mvpp2_write(priv, MVPP22_AXI_BM_WR_ATTR_REG, wrval);
3957 mvpp2_write(priv, MVPP22_AXI_BM_RD_ATTR_REG, rdval);
3958
3959 /* Descriptors */
3960 mvpp2_write(priv, MVPP22_AXI_AGGRQ_DESCR_RD_ATTR_REG, rdval);
3961 mvpp2_write(priv, MVPP22_AXI_TXQ_DESCR_WR_ATTR_REG, wrval);
3962 mvpp2_write(priv, MVPP22_AXI_TXQ_DESCR_RD_ATTR_REG, rdval);
3963 mvpp2_write(priv, MVPP22_AXI_RXQ_DESCR_WR_ATTR_REG, wrval);
3964
3965 /* Buffer Data */
3966 mvpp2_write(priv, MVPP22_AXI_TX_DATA_RD_ATTR_REG, rdval);
3967 mvpp2_write(priv, MVPP22_AXI_RX_DATA_WR_ATTR_REG, wrval);
3968
3969 val = MVPP22_AXI_CODE_CACHE_NON_CACHE
3970 << MVPP22_AXI_CODE_CACHE_OFFS;
3971 val |= MVPP22_AXI_CODE_DOMAIN_SYSTEM
3972 << MVPP22_AXI_CODE_DOMAIN_OFFS;
3973 mvpp2_write(priv, MVPP22_AXI_RD_NORMAL_CODE_REG, val);
3974 mvpp2_write(priv, MVPP22_AXI_WR_NORMAL_CODE_REG, val);
3975
3976 val = MVPP22_AXI_CODE_CACHE_RD_CACHE
3977 << MVPP22_AXI_CODE_CACHE_OFFS;
3978 val |= MVPP22_AXI_CODE_DOMAIN_OUTER_DOM
3979 << MVPP22_AXI_CODE_DOMAIN_OFFS;
3980
3981 mvpp2_write(priv, MVPP22_AXI_RD_SNOOP_CODE_REG, val);
3982
3983 val = MVPP22_AXI_CODE_CACHE_WR_CACHE
3984 << MVPP22_AXI_CODE_CACHE_OFFS;
3985 val |= MVPP22_AXI_CODE_DOMAIN_OUTER_DOM
3986 << MVPP22_AXI_CODE_DOMAIN_OFFS;
3987
3988 mvpp2_write(priv, MVPP22_AXI_WR_SNOOP_CODE_REG, val);
3989}
3990
Stefan Roese99d4c6d2016-02-10 07:22:10 +01003991/* Initialize network controller common part HW */
3992static int mvpp2_init(struct udevice *dev, struct mvpp2 *priv)
3993{
3994 const struct mbus_dram_target_info *dram_target_info;
3995 int err, i;
3996 u32 val;
3997
3998 /* Checks for hardware constraints (U-Boot uses only one rxq) */
Thomas Petazzoni09b3f942017-02-16 09:03:16 +01003999 if ((rxq_number > priv->max_port_rxqs) ||
4000 (txq_number > MVPP2_MAX_TXQ)) {
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004001 dev_err(&pdev->dev, "invalid queue size parameter\n");
4002 return -EINVAL;
4003 }
4004
4005 /* MBUS windows configuration */
4006 dram_target_info = mvebu_mbus_dram_info();
4007 if (dram_target_info)
4008 mvpp2_conf_mbus_windows(dram_target_info, priv);
4009
Thomas Petazzonicdf77792017-02-16 08:41:07 +01004010 if (priv->hw_version == MVPP22)
4011 mvpp2_axi_init(priv);
4012
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004013 /* Disable HW PHY polling */
Thomas Petazzoni7c7311f2017-02-20 11:42:51 +01004014 if (priv->hw_version == MVPP21) {
4015 val = readl(priv->lms_base + MVPP2_PHY_AN_CFG0_REG);
4016 val |= MVPP2_PHY_AN_STOP_SMI0_MASK;
4017 writel(val, priv->lms_base + MVPP2_PHY_AN_CFG0_REG);
4018 } else {
4019 val = readl(priv->iface_base + MVPP22_SMI_MISC_CFG_REG);
4020 val &= ~MVPP22_SMI_POLLING_EN;
4021 writel(val, priv->iface_base + MVPP22_SMI_MISC_CFG_REG);
4022 }
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004023
4024 /* Allocate and initialize aggregated TXQs */
4025 priv->aggr_txqs = devm_kcalloc(dev, num_present_cpus(),
4026 sizeof(struct mvpp2_tx_queue),
4027 GFP_KERNEL);
4028 if (!priv->aggr_txqs)
4029 return -ENOMEM;
4030
4031 for_each_present_cpu(i) {
4032 priv->aggr_txqs[i].id = i;
4033 priv->aggr_txqs[i].size = MVPP2_AGGR_TXQ_SIZE;
4034 err = mvpp2_aggr_txq_init(dev, &priv->aggr_txqs[i],
4035 MVPP2_AGGR_TXQ_SIZE, i, priv);
4036 if (err < 0)
4037 return err;
4038 }
4039
4040 /* Rx Fifo Init */
4041 mvpp2_rx_fifo_init(priv);
4042
4043 /* Reset Rx queue group interrupt configuration */
Thomas Petazzonibc0bbf42017-02-16 08:46:37 +01004044 for (i = 0; i < MVPP2_MAX_PORTS; i++) {
4045 if (priv->hw_version == MVPP21) {
4046 mvpp2_write(priv, MVPP21_ISR_RXQ_GROUP_REG(i),
4047 CONFIG_MV_ETH_RXQ);
4048 continue;
4049 } else {
4050 u32 val;
4051
4052 val = (i << MVPP22_ISR_RXQ_GROUP_INDEX_GROUP_OFFSET);
4053 mvpp2_write(priv, MVPP22_ISR_RXQ_GROUP_INDEX_REG, val);
4054
4055 val = (CONFIG_MV_ETH_RXQ <<
4056 MVPP22_ISR_RXQ_SUB_GROUP_SIZE_OFFSET);
4057 mvpp2_write(priv,
4058 MVPP22_ISR_RXQ_SUB_GROUP_CONFIG_REG, val);
4059 }
4060 }
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004061
Thomas Petazzoni7c7311f2017-02-20 11:42:51 +01004062 if (priv->hw_version == MVPP21)
4063 writel(MVPP2_EXT_GLOBAL_CTRL_DEFAULT,
4064 priv->lms_base + MVPP2_MNG_EXTENDED_GLOBAL_CTRL_REG);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004065
4066 /* Allow cache snoop when transmiting packets */
4067 mvpp2_write(priv, MVPP2_TX_SNOOP_REG, 0x1);
4068
4069 /* Buffer Manager initialization */
4070 err = mvpp2_bm_init(dev, priv);
4071 if (err < 0)
4072 return err;
4073
4074 /* Parser default initialization */
4075 err = mvpp2_prs_default_init(dev, priv);
4076 if (err < 0)
4077 return err;
4078
4079 /* Classifier default initialization */
4080 mvpp2_cls_init(priv);
4081
4082 return 0;
4083}
4084
4085/* SMI / MDIO functions */
4086
4087static int smi_wait_ready(struct mvpp2 *priv)
4088{
4089 u32 timeout = MVPP2_SMI_TIMEOUT;
4090 u32 smi_reg;
4091
4092 /* wait till the SMI is not busy */
4093 do {
4094 /* read smi register */
Stefan Roese0a61e9a2017-02-16 08:31:32 +01004095 smi_reg = readl(priv->mdio_base);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004096 if (timeout-- == 0) {
4097 printf("Error: SMI busy timeout\n");
4098 return -EFAULT;
4099 }
4100 } while (smi_reg & MVPP2_SMI_BUSY);
4101
4102 return 0;
4103}
4104
4105/*
4106 * mpp2_mdio_read - miiphy_read callback function.
4107 *
4108 * Returns 16bit phy register value, or 0xffff on error
4109 */
4110static int mpp2_mdio_read(struct mii_dev *bus, int addr, int devad, int reg)
4111{
4112 struct mvpp2 *priv = bus->priv;
4113 u32 smi_reg;
4114 u32 timeout;
4115
4116 /* check parameters */
4117 if (addr > MVPP2_PHY_ADDR_MASK) {
4118 printf("Error: Invalid PHY address %d\n", addr);
4119 return -EFAULT;
4120 }
4121
4122 if (reg > MVPP2_PHY_REG_MASK) {
4123 printf("Err: Invalid register offset %d\n", reg);
4124 return -EFAULT;
4125 }
4126
4127 /* wait till the SMI is not busy */
4128 if (smi_wait_ready(priv) < 0)
4129 return -EFAULT;
4130
4131 /* fill the phy address and regiser offset and read opcode */
4132 smi_reg = (addr << MVPP2_SMI_DEV_ADDR_OFFS)
4133 | (reg << MVPP2_SMI_REG_ADDR_OFFS)
4134 | MVPP2_SMI_OPCODE_READ;
4135
4136 /* write the smi register */
Stefan Roese0a61e9a2017-02-16 08:31:32 +01004137 writel(smi_reg, priv->mdio_base);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004138
4139 /* wait till read value is ready */
4140 timeout = MVPP2_SMI_TIMEOUT;
4141
4142 do {
4143 /* read smi register */
Stefan Roese0a61e9a2017-02-16 08:31:32 +01004144 smi_reg = readl(priv->mdio_base);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004145 if (timeout-- == 0) {
4146 printf("Err: SMI read ready timeout\n");
4147 return -EFAULT;
4148 }
4149 } while (!(smi_reg & MVPP2_SMI_READ_VALID));
4150
4151 /* Wait for the data to update in the SMI register */
4152 for (timeout = 0; timeout < MVPP2_SMI_TIMEOUT; timeout++)
4153 ;
4154
Stefan Roese0a61e9a2017-02-16 08:31:32 +01004155 return readl(priv->mdio_base) & MVPP2_SMI_DATA_MASK;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004156}
4157
4158/*
4159 * mpp2_mdio_write - miiphy_write callback function.
4160 *
4161 * Returns 0 if write succeed, -EINVAL on bad parameters
4162 * -ETIME on timeout
4163 */
4164static int mpp2_mdio_write(struct mii_dev *bus, int addr, int devad, int reg,
4165 u16 value)
4166{
4167 struct mvpp2 *priv = bus->priv;
4168 u32 smi_reg;
4169
4170 /* check parameters */
4171 if (addr > MVPP2_PHY_ADDR_MASK) {
4172 printf("Error: Invalid PHY address %d\n", addr);
4173 return -EFAULT;
4174 }
4175
4176 if (reg > MVPP2_PHY_REG_MASK) {
4177 printf("Err: Invalid register offset %d\n", reg);
4178 return -EFAULT;
4179 }
4180
4181 /* wait till the SMI is not busy */
4182 if (smi_wait_ready(priv) < 0)
4183 return -EFAULT;
4184
4185 /* fill the phy addr and reg offset and write opcode and data */
4186 smi_reg = value << MVPP2_SMI_DATA_OFFS;
4187 smi_reg |= (addr << MVPP2_SMI_DEV_ADDR_OFFS)
4188 | (reg << MVPP2_SMI_REG_ADDR_OFFS);
4189 smi_reg &= ~MVPP2_SMI_OPCODE_READ;
4190
4191 /* write the smi register */
Stefan Roese0a61e9a2017-02-16 08:31:32 +01004192 writel(smi_reg, priv->mdio_base);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004193
4194 return 0;
4195}
4196
4197static int mvpp2_recv(struct udevice *dev, int flags, uchar **packetp)
4198{
4199 struct mvpp2_port *port = dev_get_priv(dev);
4200 struct mvpp2_rx_desc *rx_desc;
4201 struct mvpp2_bm_pool *bm_pool;
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01004202 dma_addr_t dma_addr;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004203 u32 bm, rx_status;
4204 int pool, rx_bytes, err;
4205 int rx_received;
4206 struct mvpp2_rx_queue *rxq;
4207 u32 cause_rx_tx, cause_rx, cause_misc;
4208 u8 *data;
4209
4210 cause_rx_tx = mvpp2_read(port->priv,
4211 MVPP2_ISR_RX_TX_CAUSE_REG(port->id));
4212 cause_rx_tx &= ~MVPP2_CAUSE_TXQ_OCCUP_DESC_ALL_MASK;
4213 cause_misc = cause_rx_tx & MVPP2_CAUSE_MISC_SUM_MASK;
4214 if (!cause_rx_tx && !cause_misc)
4215 return 0;
4216
4217 cause_rx = cause_rx_tx & MVPP2_CAUSE_RXQ_OCCUP_DESC_ALL_MASK;
4218
4219 /* Process RX packets */
4220 cause_rx |= port->pending_cause_rx;
4221 rxq = mvpp2_get_rx_queue(port, cause_rx);
4222
4223 /* Get number of received packets and clamp the to-do */
4224 rx_received = mvpp2_rxq_received(port, rxq->id);
4225
4226 /* Return if no packets are received */
4227 if (!rx_received)
4228 return 0;
4229
4230 rx_desc = mvpp2_rxq_next_desc_get(rxq);
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01004231 rx_status = mvpp2_rxdesc_status_get(port, rx_desc);
4232 rx_bytes = mvpp2_rxdesc_size_get(port, rx_desc);
4233 rx_bytes -= MVPP2_MH_SIZE;
4234 dma_addr = mvpp2_rxdesc_dma_addr_get(port, rx_desc);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004235
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01004236 bm = mvpp2_bm_cookie_build(port, rx_desc);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004237 pool = mvpp2_bm_cookie_pool_get(bm);
4238 bm_pool = &port->priv->bm_pools[pool];
4239
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004240 /* In case of an error, release the requested buffer pointer
4241 * to the Buffer Manager. This request process is controlled
4242 * by the hardware, and the information about the buffer is
4243 * comprised by the RX descriptor.
4244 */
4245 if (rx_status & MVPP2_RXD_ERR_SUMMARY) {
4246 mvpp2_rx_error(port, rx_desc);
4247 /* Return the buffer to the pool */
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01004248 mvpp2_pool_refill(port, bm, dma_addr, dma_addr);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004249 return 0;
4250 }
4251
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01004252 err = mvpp2_rx_refill(port, bm_pool, bm, dma_addr);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004253 if (err) {
4254 netdev_err(port->dev, "failed to refill BM pools\n");
4255 return 0;
4256 }
4257
4258 /* Update Rx queue management counters */
4259 mb();
4260 mvpp2_rxq_status_update(port, rxq->id, 1, 1);
4261
4262 /* give packet to stack - skip on first n bytes */
Thomas Petazzoni4dae32e2017-02-20 10:27:51 +01004263 data = (u8 *)dma_addr + 2 + 32;
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004264
4265 if (rx_bytes <= 0)
4266 return 0;
4267
4268 /*
4269 * No cache invalidation needed here, since the rx_buffer's are
4270 * located in a uncached memory region
4271 */
4272 *packetp = data;
4273
4274 return rx_bytes;
4275}
4276
4277/* Drain Txq */
4278static void mvpp2_txq_drain(struct mvpp2_port *port, struct mvpp2_tx_queue *txq,
4279 int enable)
4280{
4281 u32 val;
4282
4283 mvpp2_write(port->priv, MVPP2_TXQ_NUM_REG, txq->id);
4284 val = mvpp2_read(port->priv, MVPP2_TXQ_PREF_BUF_REG);
4285 if (enable)
4286 val |= MVPP2_TXQ_DRAIN_EN_MASK;
4287 else
4288 val &= ~MVPP2_TXQ_DRAIN_EN_MASK;
4289 mvpp2_write(port->priv, MVPP2_TXQ_PREF_BUF_REG, val);
4290}
4291
4292static int mvpp2_send(struct udevice *dev, void *packet, int length)
4293{
4294 struct mvpp2_port *port = dev_get_priv(dev);
4295 struct mvpp2_tx_queue *txq, *aggr_txq;
4296 struct mvpp2_tx_desc *tx_desc;
4297 int tx_done;
4298 int timeout;
4299
4300 txq = port->txqs[0];
4301 aggr_txq = &port->priv->aggr_txqs[smp_processor_id()];
4302
4303 /* Get a descriptor for the first part of the packet */
4304 tx_desc = mvpp2_txq_next_desc_get(aggr_txq);
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01004305 mvpp2_txdesc_txq_set(port, tx_desc, txq->id);
4306 mvpp2_txdesc_size_set(port, tx_desc, length);
4307 mvpp2_txdesc_offset_set(port, tx_desc,
4308 (dma_addr_t)packet & MVPP2_TX_DESC_ALIGN);
4309 mvpp2_txdesc_dma_addr_set(port, tx_desc,
4310 (dma_addr_t)packet & ~MVPP2_TX_DESC_ALIGN);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004311 /* First and Last descriptor */
Thomas Petazzonicfa414a2017-02-15 15:35:00 +01004312 mvpp2_txdesc_cmd_set(port, tx_desc,
4313 MVPP2_TXD_L4_CSUM_NOT | MVPP2_TXD_IP_CSUM_DISABLE
4314 | MVPP2_TXD_F_DESC | MVPP2_TXD_L_DESC);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004315
4316 /* Flush tx data */
Stefan Roesef811e042017-02-16 13:58:37 +01004317 flush_dcache_range((unsigned long)packet,
4318 (unsigned long)packet + ALIGN(length, PKTALIGN));
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004319
4320 /* Enable transmit */
4321 mb();
4322 mvpp2_aggr_txq_pend_desc_add(port, 1);
4323
4324 mvpp2_write(port->priv, MVPP2_TXQ_NUM_REG, txq->id);
4325
4326 timeout = 0;
4327 do {
4328 if (timeout++ > 10000) {
4329 printf("timeout: packet not sent from aggregated to phys TXQ\n");
4330 return 0;
4331 }
4332 tx_done = mvpp2_txq_pend_desc_num_get(port, txq);
4333 } while (tx_done);
4334
4335 /* Enable TXQ drain */
4336 mvpp2_txq_drain(port, txq, 1);
4337
4338 timeout = 0;
4339 do {
4340 if (timeout++ > 10000) {
4341 printf("timeout: packet not sent\n");
4342 return 0;
4343 }
4344 tx_done = mvpp2_txq_sent_desc_proc(port, txq);
4345 } while (!tx_done);
4346
4347 /* Disable TXQ drain */
4348 mvpp2_txq_drain(port, txq, 0);
4349
4350 return 0;
4351}
4352
4353static int mvpp2_start(struct udevice *dev)
4354{
4355 struct eth_pdata *pdata = dev_get_platdata(dev);
4356 struct mvpp2_port *port = dev_get_priv(dev);
4357
4358 /* Load current MAC address */
4359 memcpy(port->dev_addr, pdata->enetaddr, ETH_ALEN);
4360
4361 /* Reconfigure parser accept the original MAC address */
4362 mvpp2_prs_update_mac_da(port, port->dev_addr);
4363
4364 mvpp2_port_power_up(port);
4365
4366 mvpp2_open(dev, port);
4367
4368 return 0;
4369}
4370
4371static void mvpp2_stop(struct udevice *dev)
4372{
4373 struct mvpp2_port *port = dev_get_priv(dev);
4374
4375 mvpp2_stop_dev(port);
4376 mvpp2_cleanup_rxqs(port);
4377 mvpp2_cleanup_txqs(port);
4378}
4379
4380static int mvpp2_probe(struct udevice *dev)
4381{
4382 struct mvpp2_port *port = dev_get_priv(dev);
4383 struct mvpp2 *priv = dev_get_priv(dev->parent);
4384 int err;
4385
4386 /* Initialize network controller */
4387 err = mvpp2_init(dev, priv);
4388 if (err < 0) {
4389 dev_err(&pdev->dev, "failed to initialize controller\n");
4390 return err;
4391 }
4392
Thomas Petazzoni09b3f942017-02-16 09:03:16 +01004393 return mvpp2_port_probe(dev, port, dev_of_offset(dev), priv);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004394}
4395
4396static const struct eth_ops mvpp2_ops = {
4397 .start = mvpp2_start,
4398 .send = mvpp2_send,
4399 .recv = mvpp2_recv,
4400 .stop = mvpp2_stop,
4401};
4402
4403static struct driver mvpp2_driver = {
4404 .name = "mvpp2",
4405 .id = UCLASS_ETH,
4406 .probe = mvpp2_probe,
4407 .ops = &mvpp2_ops,
4408 .priv_auto_alloc_size = sizeof(struct mvpp2_port),
4409 .platdata_auto_alloc_size = sizeof(struct eth_pdata),
4410};
4411
4412/*
4413 * Use a MISC device to bind the n instances (child nodes) of the
4414 * network base controller in UCLASS_ETH.
4415 */
4416static int mvpp2_base_probe(struct udevice *dev)
4417{
4418 struct mvpp2 *priv = dev_get_priv(dev);
4419 struct mii_dev *bus;
4420 void *bd_space;
4421 u32 size = 0;
4422 int i;
4423
Thomas Petazzoni16a98982017-02-15 14:08:59 +01004424 /* Save hw-version */
4425 priv->hw_version = dev_get_driver_data(dev);
4426
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004427 /*
4428 * U-Boot special buffer handling:
4429 *
4430 * Allocate buffer area for descs and rx_buffers. This is only
4431 * done once for all interfaces. As only one interface can
4432 * be active. Make this area DMA-safe by disabling the D-cache
4433 */
4434
4435 /* Align buffer area for descs and rx_buffers to 1MiB */
4436 bd_space = memalign(1 << MMU_SECTION_SHIFT, BD_SPACE);
Stefan Roesea7c28ff2017-02-15 12:46:18 +01004437 mmu_set_region_dcache_behaviour((unsigned long)bd_space,
4438 BD_SPACE, DCACHE_OFF);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004439
4440 buffer_loc.aggr_tx_descs = (struct mvpp2_tx_desc *)bd_space;
4441 size += MVPP2_AGGR_TXQ_SIZE * MVPP2_DESC_ALIGNED_SIZE;
4442
Stefan Roesea7c28ff2017-02-15 12:46:18 +01004443 buffer_loc.tx_descs =
4444 (struct mvpp2_tx_desc *)((unsigned long)bd_space + size);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004445 size += MVPP2_MAX_TXD * MVPP2_DESC_ALIGNED_SIZE;
4446
Stefan Roesea7c28ff2017-02-15 12:46:18 +01004447 buffer_loc.rx_descs =
4448 (struct mvpp2_rx_desc *)((unsigned long)bd_space + size);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004449 size += MVPP2_MAX_RXD * MVPP2_DESC_ALIGNED_SIZE;
4450
4451 for (i = 0; i < MVPP2_BM_POOLS_NUM; i++) {
Stefan Roesea7c28ff2017-02-15 12:46:18 +01004452 buffer_loc.bm_pool[i] =
4453 (unsigned long *)((unsigned long)bd_space + size);
Thomas Petazzonic8feeb22017-02-20 11:29:16 +01004454 if (priv->hw_version == MVPP21)
4455 size += MVPP2_BM_POOL_SIZE_MAX * 2 * sizeof(u32);
4456 else
4457 size += MVPP2_BM_POOL_SIZE_MAX * 2 * sizeof(u64);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004458 }
4459
4460 for (i = 0; i < MVPP2_BM_LONG_BUF_NUM; i++) {
Stefan Roesea7c28ff2017-02-15 12:46:18 +01004461 buffer_loc.rx_buffer[i] =
4462 (unsigned long *)((unsigned long)bd_space + size);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004463 size += RX_BUFFER_SIZE;
4464 }
4465
4466 /* Save base addresses for later use */
4467 priv->base = (void *)dev_get_addr_index(dev, 0);
4468 if (IS_ERR(priv->base))
4469 return PTR_ERR(priv->base);
4470
Thomas Petazzoni26a52782017-02-16 08:03:37 +01004471 if (priv->hw_version == MVPP21) {
4472 priv->lms_base = (void *)dev_get_addr_index(dev, 1);
4473 if (IS_ERR(priv->lms_base))
4474 return PTR_ERR(priv->lms_base);
Stefan Roese0a61e9a2017-02-16 08:31:32 +01004475
4476 priv->mdio_base = priv->lms_base + MVPP21_SMI;
Thomas Petazzoni26a52782017-02-16 08:03:37 +01004477 } else {
4478 priv->iface_base = (void *)dev_get_addr_index(dev, 1);
4479 if (IS_ERR(priv->iface_base))
4480 return PTR_ERR(priv->iface_base);
Stefan Roese0a61e9a2017-02-16 08:31:32 +01004481
4482 priv->mdio_base = priv->iface_base + MVPP22_SMI;
Thomas Petazzoni26a52782017-02-16 08:03:37 +01004483 }
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004484
Thomas Petazzoni09b3f942017-02-16 09:03:16 +01004485 if (priv->hw_version == MVPP21)
4486 priv->max_port_rxqs = 8;
4487 else
4488 priv->max_port_rxqs = 32;
4489
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004490 /* Finally create and register the MDIO bus driver */
4491 bus = mdio_alloc();
4492 if (!bus) {
4493 printf("Failed to allocate MDIO bus\n");
4494 return -ENOMEM;
4495 }
4496
4497 bus->read = mpp2_mdio_read;
4498 bus->write = mpp2_mdio_write;
4499 snprintf(bus->name, sizeof(bus->name), dev->name);
4500 bus->priv = (void *)priv;
4501 priv->bus = bus;
4502
4503 return mdio_register(bus);
4504}
4505
4506static int mvpp2_base_bind(struct udevice *parent)
4507{
4508 const void *blob = gd->fdt_blob;
Simon Glasse160f7d2017-01-17 16:52:55 -07004509 int node = dev_of_offset(parent);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004510 struct uclass_driver *drv;
4511 struct udevice *dev;
4512 struct eth_pdata *plat;
4513 char *name;
4514 int subnode;
4515 u32 id;
4516
4517 /* Lookup eth driver */
4518 drv = lists_uclass_lookup(UCLASS_ETH);
4519 if (!drv) {
4520 puts("Cannot find eth driver\n");
4521 return -ENOENT;
4522 }
4523
Simon Glassdf87e6b2016-10-02 17:59:29 -06004524 fdt_for_each_subnode(subnode, blob, node) {
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004525 /* Skip disabled ports */
4526 if (!fdtdec_get_is_enabled(blob, subnode))
4527 continue;
4528
4529 plat = calloc(1, sizeof(*plat));
4530 if (!plat)
4531 return -ENOMEM;
4532
4533 id = fdtdec_get_int(blob, subnode, "port-id", -1);
4534
4535 name = calloc(1, 16);
4536 sprintf(name, "mvpp2-%d", id);
4537
4538 /* Create child device UCLASS_ETH and bind it */
4539 device_bind(parent, &mvpp2_driver, name, plat, subnode, &dev);
Simon Glasse160f7d2017-01-17 16:52:55 -07004540 dev_set_of_offset(dev, subnode);
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004541 }
4542
4543 return 0;
4544}
4545
4546static const struct udevice_id mvpp2_ids[] = {
Thomas Petazzoni16a98982017-02-15 14:08:59 +01004547 {
4548 .compatible = "marvell,armada-375-pp2",
4549 .data = MVPP21,
4550 },
Thomas Petazzonia83a6412017-02-20 11:54:31 +01004551 {
4552 .compatible = "marvell,armada-7k-pp22",
4553 .data = MVPP22,
4554 },
Stefan Roese99d4c6d2016-02-10 07:22:10 +01004555 { }
4556};
4557
4558U_BOOT_DRIVER(mvpp2_base) = {
4559 .name = "mvpp2_base",
4560 .id = UCLASS_MISC,
4561 .of_match = mvpp2_ids,
4562 .bind = mvpp2_base_bind,
4563 .probe = mvpp2_base_probe,
4564 .priv_auto_alloc_size = sizeof(struct mvpp2),
4565};