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