blob: 9b875d776b296d165c4ae3a994bd527a8dafb698 [file] [log] [blame]
Marcin Wojtas3f518502014-07-10 16:52:13 -03001/*
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 * This file is licensed under the terms of the GNU General Public
9 * License version 2. This program is licensed "as is" without any
10 * warranty of any kind, whether express or implied.
11 */
12
13#include <linux/kernel.h>
14#include <linux/netdevice.h>
15#include <linux/etherdevice.h>
16#include <linux/platform_device.h>
17#include <linux/skbuff.h>
18#include <linux/inetdevice.h>
19#include <linux/mbus.h>
20#include <linux/module.h>
21#include <linux/interrupt.h>
22#include <linux/cpumask.h>
23#include <linux/of.h>
24#include <linux/of_irq.h>
25#include <linux/of_mdio.h>
26#include <linux/of_net.h>
27#include <linux/of_address.h>
Thomas Petazzonifaca9242017-03-07 16:53:06 +010028#include <linux/of_device.h>
Marcin Wojtas3f518502014-07-10 16:52:13 -030029#include <linux/phy.h>
30#include <linux/clk.h>
Marcin Wojtasedc660f2015-08-06 19:00:30 +020031#include <linux/hrtimer.h>
32#include <linux/ktime.h>
Marcin Wojtas3f518502014-07-10 16:52:13 -030033#include <uapi/linux/ppp_defs.h>
34#include <net/ip.h>
35#include <net/ipv6.h>
36
37/* RX Fifo Registers */
38#define MVPP2_RX_DATA_FIFO_SIZE_REG(port) (0x00 + 4 * (port))
39#define MVPP2_RX_ATTR_FIFO_SIZE_REG(port) (0x20 + 4 * (port))
40#define MVPP2_RX_MIN_PKT_SIZE_REG 0x60
41#define MVPP2_RX_FIFO_INIT_REG 0x64
42
43/* RX DMA Top Registers */
44#define MVPP2_RX_CTRL_REG(port) (0x140 + 4 * (port))
45#define MVPP2_RX_LOW_LATENCY_PKT_SIZE(s) (((s) & 0xfff) << 16)
46#define MVPP2_RX_USE_PSEUDO_FOR_CSUM_MASK BIT(31)
47#define MVPP2_POOL_BUF_SIZE_REG(pool) (0x180 + 4 * (pool))
48#define MVPP2_POOL_BUF_SIZE_OFFSET 5
49#define MVPP2_RXQ_CONFIG_REG(rxq) (0x800 + 4 * (rxq))
50#define MVPP2_SNOOP_PKT_SIZE_MASK 0x1ff
51#define MVPP2_SNOOP_BUF_HDR_MASK BIT(9)
52#define MVPP2_RXQ_POOL_SHORT_OFFS 20
Thomas Petazzoni5eac8922017-03-07 16:53:10 +010053#define MVPP21_RXQ_POOL_SHORT_MASK 0x700000
54#define MVPP22_RXQ_POOL_SHORT_MASK 0xf00000
Marcin Wojtas3f518502014-07-10 16:52:13 -030055#define MVPP2_RXQ_POOL_LONG_OFFS 24
Thomas Petazzoni5eac8922017-03-07 16:53:10 +010056#define MVPP21_RXQ_POOL_LONG_MASK 0x7000000
57#define MVPP22_RXQ_POOL_LONG_MASK 0xf000000
Marcin Wojtas3f518502014-07-10 16:52:13 -030058#define MVPP2_RXQ_PACKET_OFFSET_OFFS 28
59#define MVPP2_RXQ_PACKET_OFFSET_MASK 0x70000000
60#define MVPP2_RXQ_DISABLE_MASK BIT(31)
61
62/* Parser Registers */
63#define MVPP2_PRS_INIT_LOOKUP_REG 0x1000
64#define MVPP2_PRS_PORT_LU_MAX 0xf
65#define MVPP2_PRS_PORT_LU_MASK(port) (0xff << ((port) * 4))
66#define MVPP2_PRS_PORT_LU_VAL(port, val) ((val) << ((port) * 4))
67#define MVPP2_PRS_INIT_OFFS_REG(port) (0x1004 + ((port) & 4))
68#define MVPP2_PRS_INIT_OFF_MASK(port) (0x3f << (((port) % 4) * 8))
69#define MVPP2_PRS_INIT_OFF_VAL(port, val) ((val) << (((port) % 4) * 8))
70#define MVPP2_PRS_MAX_LOOP_REG(port) (0x100c + ((port) & 4))
71#define MVPP2_PRS_MAX_LOOP_MASK(port) (0xff << (((port) % 4) * 8))
72#define MVPP2_PRS_MAX_LOOP_VAL(port, val) ((val) << (((port) % 4) * 8))
73#define MVPP2_PRS_TCAM_IDX_REG 0x1100
74#define MVPP2_PRS_TCAM_DATA_REG(idx) (0x1104 + (idx) * 4)
75#define MVPP2_PRS_TCAM_INV_MASK BIT(31)
76#define MVPP2_PRS_SRAM_IDX_REG 0x1200
77#define MVPP2_PRS_SRAM_DATA_REG(idx) (0x1204 + (idx) * 4)
78#define MVPP2_PRS_TCAM_CTRL_REG 0x1230
79#define MVPP2_PRS_TCAM_EN_MASK BIT(0)
80
81/* Classifier Registers */
82#define MVPP2_CLS_MODE_REG 0x1800
83#define MVPP2_CLS_MODE_ACTIVE_MASK BIT(0)
84#define MVPP2_CLS_PORT_WAY_REG 0x1810
85#define MVPP2_CLS_PORT_WAY_MASK(port) (1 << (port))
86#define MVPP2_CLS_LKP_INDEX_REG 0x1814
87#define MVPP2_CLS_LKP_INDEX_WAY_OFFS 6
88#define MVPP2_CLS_LKP_TBL_REG 0x1818
89#define MVPP2_CLS_LKP_TBL_RXQ_MASK 0xff
90#define MVPP2_CLS_LKP_TBL_LOOKUP_EN_MASK BIT(25)
91#define MVPP2_CLS_FLOW_INDEX_REG 0x1820
92#define MVPP2_CLS_FLOW_TBL0_REG 0x1824
93#define MVPP2_CLS_FLOW_TBL1_REG 0x1828
94#define MVPP2_CLS_FLOW_TBL2_REG 0x182c
95#define MVPP2_CLS_OVERSIZE_RXQ_LOW_REG(port) (0x1980 + ((port) * 4))
96#define MVPP2_CLS_OVERSIZE_RXQ_LOW_BITS 3
97#define MVPP2_CLS_OVERSIZE_RXQ_LOW_MASK 0x7
98#define MVPP2_CLS_SWFWD_P2HQ_REG(port) (0x19b0 + ((port) * 4))
99#define MVPP2_CLS_SWFWD_PCTRL_REG 0x19d0
100#define MVPP2_CLS_SWFWD_PCTRL_MASK(port) (1 << (port))
101
102/* Descriptor Manager Top Registers */
103#define MVPP2_RXQ_NUM_REG 0x2040
104#define MVPP2_RXQ_DESC_ADDR_REG 0x2044
Thomas Petazzonib02f31f2017-03-07 16:53:12 +0100105#define MVPP22_DESC_ADDR_OFFS 8
Marcin Wojtas3f518502014-07-10 16:52:13 -0300106#define MVPP2_RXQ_DESC_SIZE_REG 0x2048
107#define MVPP2_RXQ_DESC_SIZE_MASK 0x3ff0
108#define MVPP2_RXQ_STATUS_UPDATE_REG(rxq) (0x3000 + 4 * (rxq))
109#define MVPP2_RXQ_NUM_PROCESSED_OFFSET 0
110#define MVPP2_RXQ_NUM_NEW_OFFSET 16
111#define MVPP2_RXQ_STATUS_REG(rxq) (0x3400 + 4 * (rxq))
112#define MVPP2_RXQ_OCCUPIED_MASK 0x3fff
113#define MVPP2_RXQ_NON_OCCUPIED_OFFSET 16
114#define MVPP2_RXQ_NON_OCCUPIED_MASK 0x3fff0000
115#define MVPP2_RXQ_THRESH_REG 0x204c
116#define MVPP2_OCCUPIED_THRESH_OFFSET 0
117#define MVPP2_OCCUPIED_THRESH_MASK 0x3fff
118#define MVPP2_RXQ_INDEX_REG 0x2050
119#define MVPP2_TXQ_NUM_REG 0x2080
120#define MVPP2_TXQ_DESC_ADDR_REG 0x2084
121#define MVPP2_TXQ_DESC_SIZE_REG 0x2088
122#define MVPP2_TXQ_DESC_SIZE_MASK 0x3ff0
123#define MVPP2_AGGR_TXQ_UPDATE_REG 0x2090
Marcin Wojtas3f518502014-07-10 16:52:13 -0300124#define MVPP2_TXQ_INDEX_REG 0x2098
125#define MVPP2_TXQ_PREF_BUF_REG 0x209c
126#define MVPP2_PREF_BUF_PTR(desc) ((desc) & 0xfff)
127#define MVPP2_PREF_BUF_SIZE_4 (BIT(12) | BIT(13))
128#define MVPP2_PREF_BUF_SIZE_16 (BIT(12) | BIT(14))
129#define MVPP2_PREF_BUF_THRESH(val) ((val) << 17)
130#define MVPP2_TXQ_DRAIN_EN_MASK BIT(31)
131#define MVPP2_TXQ_PENDING_REG 0x20a0
132#define MVPP2_TXQ_PENDING_MASK 0x3fff
133#define MVPP2_TXQ_INT_STATUS_REG 0x20a4
134#define MVPP2_TXQ_SENT_REG(txq) (0x3c00 + 4 * (txq))
135#define MVPP2_TRANSMITTED_COUNT_OFFSET 16
136#define MVPP2_TRANSMITTED_COUNT_MASK 0x3fff0000
137#define MVPP2_TXQ_RSVD_REQ_REG 0x20b0
138#define MVPP2_TXQ_RSVD_REQ_Q_OFFSET 16
139#define MVPP2_TXQ_RSVD_RSLT_REG 0x20b4
140#define MVPP2_TXQ_RSVD_RSLT_MASK 0x3fff
141#define MVPP2_TXQ_RSVD_CLR_REG 0x20b8
142#define MVPP2_TXQ_RSVD_CLR_OFFSET 16
143#define MVPP2_AGGR_TXQ_DESC_ADDR_REG(cpu) (0x2100 + 4 * (cpu))
Thomas Petazzonib02f31f2017-03-07 16:53:12 +0100144#define MVPP22_AGGR_TXQ_DESC_ADDR_OFFS 8
Marcin Wojtas3f518502014-07-10 16:52:13 -0300145#define MVPP2_AGGR_TXQ_DESC_SIZE_REG(cpu) (0x2140 + 4 * (cpu))
146#define MVPP2_AGGR_TXQ_DESC_SIZE_MASK 0x3ff0
147#define MVPP2_AGGR_TXQ_STATUS_REG(cpu) (0x2180 + 4 * (cpu))
148#define MVPP2_AGGR_TXQ_PENDING_MASK 0x3fff
149#define MVPP2_AGGR_TXQ_INDEX_REG(cpu) (0x21c0 + 4 * (cpu))
150
151/* MBUS bridge registers */
152#define MVPP2_WIN_BASE(w) (0x4000 + ((w) << 2))
153#define MVPP2_WIN_SIZE(w) (0x4020 + ((w) << 2))
154#define MVPP2_WIN_REMAP(w) (0x4040 + ((w) << 2))
155#define MVPP2_BASE_ADDR_ENABLE 0x4060
156
Thomas Petazzoni6763ce32017-03-07 16:53:15 +0100157/* AXI Bridge Registers */
158#define MVPP22_AXI_BM_WR_ATTR_REG 0x4100
159#define MVPP22_AXI_BM_RD_ATTR_REG 0x4104
160#define MVPP22_AXI_AGGRQ_DESCR_RD_ATTR_REG 0x4110
161#define MVPP22_AXI_TXQ_DESCR_WR_ATTR_REG 0x4114
162#define MVPP22_AXI_TXQ_DESCR_RD_ATTR_REG 0x4118
163#define MVPP22_AXI_RXQ_DESCR_WR_ATTR_REG 0x411c
164#define MVPP22_AXI_RX_DATA_WR_ATTR_REG 0x4120
165#define MVPP22_AXI_TX_DATA_RD_ATTR_REG 0x4130
166#define MVPP22_AXI_RD_NORMAL_CODE_REG 0x4150
167#define MVPP22_AXI_RD_SNOOP_CODE_REG 0x4154
168#define MVPP22_AXI_WR_NORMAL_CODE_REG 0x4160
169#define MVPP22_AXI_WR_SNOOP_CODE_REG 0x4164
170
171/* Values for AXI Bridge registers */
172#define MVPP22_AXI_ATTR_CACHE_OFFS 0
173#define MVPP22_AXI_ATTR_DOMAIN_OFFS 12
174
175#define MVPP22_AXI_CODE_CACHE_OFFS 0
176#define MVPP22_AXI_CODE_DOMAIN_OFFS 4
177
178#define MVPP22_AXI_CODE_CACHE_NON_CACHE 0x3
179#define MVPP22_AXI_CODE_CACHE_WR_CACHE 0x7
180#define MVPP22_AXI_CODE_CACHE_RD_CACHE 0xb
181
182#define MVPP22_AXI_CODE_DOMAIN_OUTER_DOM 2
183#define MVPP22_AXI_CODE_DOMAIN_SYSTEM 3
184
Marcin Wojtas3f518502014-07-10 16:52:13 -0300185/* Interrupt Cause and Mask registers */
186#define MVPP2_ISR_RX_THRESHOLD_REG(rxq) (0x5200 + 4 * (rxq))
Thomas Petazzoniab426762017-02-21 11:28:04 +0100187#define MVPP2_MAX_ISR_RX_THRESHOLD 0xfffff0
Thomas Petazzonia73fef12017-03-07 16:53:16 +0100188#define MVPP21_ISR_RXQ_GROUP_REG(rxq) (0x5400 + 4 * (rxq))
189
190#define MVPP22_ISR_RXQ_GROUP_INDEX_REG 0x5400
191#define MVPP22_ISR_RXQ_GROUP_INDEX_SUBGROUP_MASK 0xf
192#define MVPP22_ISR_RXQ_GROUP_INDEX_GROUP_MASK 0x380
193#define MVPP22_ISR_RXQ_GROUP_INDEX_GROUP_OFFSET 7
194
195#define MVPP22_ISR_RXQ_GROUP_INDEX_SUBGROUP_MASK 0xf
196#define MVPP22_ISR_RXQ_GROUP_INDEX_GROUP_MASK 0x380
197
198#define MVPP22_ISR_RXQ_SUB_GROUP_CONFIG_REG 0x5404
199#define MVPP22_ISR_RXQ_SUB_GROUP_STARTQ_MASK 0x1f
200#define MVPP22_ISR_RXQ_SUB_GROUP_SIZE_MASK 0xf00
201#define MVPP22_ISR_RXQ_SUB_GROUP_SIZE_OFFSET 8
202
Marcin Wojtas3f518502014-07-10 16:52:13 -0300203#define MVPP2_ISR_ENABLE_REG(port) (0x5420 + 4 * (port))
204#define MVPP2_ISR_ENABLE_INTERRUPT(mask) ((mask) & 0xffff)
205#define MVPP2_ISR_DISABLE_INTERRUPT(mask) (((mask) << 16) & 0xffff0000)
206#define MVPP2_ISR_RX_TX_CAUSE_REG(port) (0x5480 + 4 * (port))
207#define MVPP2_CAUSE_RXQ_OCCUP_DESC_ALL_MASK 0xffff
208#define MVPP2_CAUSE_TXQ_OCCUP_DESC_ALL_MASK 0xff0000
209#define MVPP2_CAUSE_RX_FIFO_OVERRUN_MASK BIT(24)
210#define MVPP2_CAUSE_FCS_ERR_MASK BIT(25)
211#define MVPP2_CAUSE_TX_FIFO_UNDERRUN_MASK BIT(26)
212#define MVPP2_CAUSE_TX_EXCEPTION_SUM_MASK BIT(29)
213#define MVPP2_CAUSE_RX_EXCEPTION_SUM_MASK BIT(30)
214#define MVPP2_CAUSE_MISC_SUM_MASK BIT(31)
215#define MVPP2_ISR_RX_TX_MASK_REG(port) (0x54a0 + 4 * (port))
216#define MVPP2_ISR_PON_RX_TX_MASK_REG 0x54bc
217#define MVPP2_PON_CAUSE_RXQ_OCCUP_DESC_ALL_MASK 0xffff
218#define MVPP2_PON_CAUSE_TXP_OCCUP_DESC_ALL_MASK 0x3fc00000
219#define MVPP2_PON_CAUSE_MISC_SUM_MASK BIT(31)
220#define MVPP2_ISR_MISC_CAUSE_REG 0x55b0
221
222/* Buffer Manager registers */
223#define MVPP2_BM_POOL_BASE_REG(pool) (0x6000 + ((pool) * 4))
224#define MVPP2_BM_POOL_BASE_ADDR_MASK 0xfffff80
225#define MVPP2_BM_POOL_SIZE_REG(pool) (0x6040 + ((pool) * 4))
226#define MVPP2_BM_POOL_SIZE_MASK 0xfff0
227#define MVPP2_BM_POOL_READ_PTR_REG(pool) (0x6080 + ((pool) * 4))
228#define MVPP2_BM_POOL_GET_READ_PTR_MASK 0xfff0
229#define MVPP2_BM_POOL_PTRS_NUM_REG(pool) (0x60c0 + ((pool) * 4))
230#define MVPP2_BM_POOL_PTRS_NUM_MASK 0xfff0
231#define MVPP2_BM_BPPI_READ_PTR_REG(pool) (0x6100 + ((pool) * 4))
232#define MVPP2_BM_BPPI_PTRS_NUM_REG(pool) (0x6140 + ((pool) * 4))
233#define MVPP2_BM_BPPI_PTR_NUM_MASK 0x7ff
234#define MVPP2_BM_BPPI_PREFETCH_FULL_MASK BIT(16)
235#define MVPP2_BM_POOL_CTRL_REG(pool) (0x6200 + ((pool) * 4))
236#define MVPP2_BM_START_MASK BIT(0)
237#define MVPP2_BM_STOP_MASK BIT(1)
238#define MVPP2_BM_STATE_MASK BIT(4)
239#define MVPP2_BM_LOW_THRESH_OFFS 8
240#define MVPP2_BM_LOW_THRESH_MASK 0x7f00
241#define MVPP2_BM_LOW_THRESH_VALUE(val) ((val) << \
242 MVPP2_BM_LOW_THRESH_OFFS)
243#define MVPP2_BM_HIGH_THRESH_OFFS 16
244#define MVPP2_BM_HIGH_THRESH_MASK 0x7f0000
245#define MVPP2_BM_HIGH_THRESH_VALUE(val) ((val) << \
246 MVPP2_BM_HIGH_THRESH_OFFS)
247#define MVPP2_BM_INTR_CAUSE_REG(pool) (0x6240 + ((pool) * 4))
248#define MVPP2_BM_RELEASED_DELAY_MASK BIT(0)
249#define MVPP2_BM_ALLOC_FAILED_MASK BIT(1)
250#define MVPP2_BM_BPPE_EMPTY_MASK BIT(2)
251#define MVPP2_BM_BPPE_FULL_MASK BIT(3)
252#define MVPP2_BM_AVAILABLE_BP_LOW_MASK BIT(4)
253#define MVPP2_BM_INTR_MASK_REG(pool) (0x6280 + ((pool) * 4))
254#define MVPP2_BM_PHY_ALLOC_REG(pool) (0x6400 + ((pool) * 4))
255#define MVPP2_BM_PHY_ALLOC_GRNTD_MASK BIT(0)
256#define MVPP2_BM_VIRT_ALLOC_REG 0x6440
Thomas Petazzonid01524d2017-03-07 16:53:09 +0100257#define MVPP22_BM_ADDR_HIGH_ALLOC 0x6444
258#define MVPP22_BM_ADDR_HIGH_PHYS_MASK 0xff
259#define MVPP22_BM_ADDR_HIGH_VIRT_MASK 0xff00
260#define MVPP22_BM_ADDR_HIGH_VIRT_SHIFT 8
Marcin Wojtas3f518502014-07-10 16:52:13 -0300261#define MVPP2_BM_PHY_RLS_REG(pool) (0x6480 + ((pool) * 4))
262#define MVPP2_BM_PHY_RLS_MC_BUFF_MASK BIT(0)
263#define MVPP2_BM_PHY_RLS_PRIO_EN_MASK BIT(1)
264#define MVPP2_BM_PHY_RLS_GRNTD_MASK BIT(2)
265#define MVPP2_BM_VIRT_RLS_REG 0x64c0
Thomas Petazzonid01524d2017-03-07 16:53:09 +0100266#define MVPP22_BM_ADDR_HIGH_RLS_REG 0x64c4
267#define MVPP22_BM_ADDR_HIGH_PHYS_RLS_MASK 0xff
268#define MVPP22_BM_ADDR_HIGH_VIRT_RLS_MASK 0xff00
269#define MVPP22_BM_ADDR_HIGH_VIRT_RLS_SHIFT 8
Marcin Wojtas3f518502014-07-10 16:52:13 -0300270
271/* TX Scheduler registers */
272#define MVPP2_TXP_SCHED_PORT_INDEX_REG 0x8000
273#define MVPP2_TXP_SCHED_Q_CMD_REG 0x8004
274#define MVPP2_TXP_SCHED_ENQ_MASK 0xff
275#define MVPP2_TXP_SCHED_DISQ_OFFSET 8
276#define MVPP2_TXP_SCHED_CMD_1_REG 0x8010
277#define MVPP2_TXP_SCHED_PERIOD_REG 0x8018
278#define MVPP2_TXP_SCHED_MTU_REG 0x801c
279#define MVPP2_TXP_MTU_MAX 0x7FFFF
280#define MVPP2_TXP_SCHED_REFILL_REG 0x8020
281#define MVPP2_TXP_REFILL_TOKENS_ALL_MASK 0x7ffff
282#define MVPP2_TXP_REFILL_PERIOD_ALL_MASK 0x3ff00000
283#define MVPP2_TXP_REFILL_PERIOD_MASK(v) ((v) << 20)
284#define MVPP2_TXP_SCHED_TOKEN_SIZE_REG 0x8024
285#define MVPP2_TXP_TOKEN_SIZE_MAX 0xffffffff
286#define MVPP2_TXQ_SCHED_REFILL_REG(q) (0x8040 + ((q) << 2))
287#define MVPP2_TXQ_REFILL_TOKENS_ALL_MASK 0x7ffff
288#define MVPP2_TXQ_REFILL_PERIOD_ALL_MASK 0x3ff00000
289#define MVPP2_TXQ_REFILL_PERIOD_MASK(v) ((v) << 20)
290#define MVPP2_TXQ_SCHED_TOKEN_SIZE_REG(q) (0x8060 + ((q) << 2))
291#define MVPP2_TXQ_TOKEN_SIZE_MAX 0x7fffffff
292#define MVPP2_TXQ_SCHED_TOKEN_CNTR_REG(q) (0x8080 + ((q) << 2))
293#define MVPP2_TXQ_TOKEN_CNTR_MAX 0xffffffff
294
295/* TX general registers */
296#define MVPP2_TX_SNOOP_REG 0x8800
297#define MVPP2_TX_PORT_FLUSH_REG 0x8810
298#define MVPP2_TX_PORT_FLUSH_MASK(port) (1 << (port))
299
300/* LMS registers */
301#define MVPP2_SRC_ADDR_MIDDLE 0x24
302#define MVPP2_SRC_ADDR_HIGH 0x28
Marcin Wojtas08a23752014-07-21 13:48:12 -0300303#define MVPP2_PHY_AN_CFG0_REG 0x34
304#define MVPP2_PHY_AN_STOP_SMI0_MASK BIT(7)
Marcin Wojtas3f518502014-07-10 16:52:13 -0300305#define MVPP2_MNG_EXTENDED_GLOBAL_CTRL_REG 0x305c
Thomas Petazzoni31d76772017-02-21 11:28:10 +0100306#define MVPP2_EXT_GLOBAL_CTRL_DEFAULT 0x27
Marcin Wojtas3f518502014-07-10 16:52:13 -0300307
308/* Per-port registers */
309#define MVPP2_GMAC_CTRL_0_REG 0x0
310#define MVPP2_GMAC_PORT_EN_MASK BIT(0)
311#define MVPP2_GMAC_MAX_RX_SIZE_OFFS 2
312#define MVPP2_GMAC_MAX_RX_SIZE_MASK 0x7ffc
313#define MVPP2_GMAC_MIB_CNTR_EN_MASK BIT(15)
314#define MVPP2_GMAC_CTRL_1_REG 0x4
Marcin Wojtasb5c0a802014-07-21 13:48:11 -0300315#define MVPP2_GMAC_PERIODIC_XON_EN_MASK BIT(1)
Marcin Wojtas3f518502014-07-10 16:52:13 -0300316#define MVPP2_GMAC_GMII_LB_EN_MASK BIT(5)
317#define MVPP2_GMAC_PCS_LB_EN_BIT 6
318#define MVPP2_GMAC_PCS_LB_EN_MASK BIT(6)
319#define MVPP2_GMAC_SA_LOW_OFFS 7
320#define MVPP2_GMAC_CTRL_2_REG 0x8
321#define MVPP2_GMAC_INBAND_AN_MASK BIT(0)
322#define MVPP2_GMAC_PCS_ENABLE_MASK BIT(3)
323#define MVPP2_GMAC_PORT_RGMII_MASK BIT(4)
324#define MVPP2_GMAC_PORT_RESET_MASK BIT(6)
325#define MVPP2_GMAC_AUTONEG_CONFIG 0xc
326#define MVPP2_GMAC_FORCE_LINK_DOWN BIT(0)
327#define MVPP2_GMAC_FORCE_LINK_PASS BIT(1)
328#define MVPP2_GMAC_CONFIG_MII_SPEED BIT(5)
329#define MVPP2_GMAC_CONFIG_GMII_SPEED BIT(6)
330#define MVPP2_GMAC_AN_SPEED_EN BIT(7)
Marcin Wojtas08a23752014-07-21 13:48:12 -0300331#define MVPP2_GMAC_FC_ADV_EN BIT(9)
Marcin Wojtas3f518502014-07-10 16:52:13 -0300332#define MVPP2_GMAC_CONFIG_FULL_DUPLEX BIT(12)
333#define MVPP2_GMAC_AN_DUPLEX_EN BIT(13)
334#define MVPP2_GMAC_PORT_FIFO_CFG_1_REG 0x1c
335#define MVPP2_GMAC_TX_FIFO_MIN_TH_OFFS 6
336#define MVPP2_GMAC_TX_FIFO_MIN_TH_ALL_MASK 0x1fc0
337#define MVPP2_GMAC_TX_FIFO_MIN_TH_MASK(v) (((v) << 6) & \
338 MVPP2_GMAC_TX_FIFO_MIN_TH_ALL_MASK)
Thomas Petazzoni26975822017-03-07 16:53:14 +0100339#define MVPP22_GMAC_CTRL_4_REG 0x90
340#define MVPP22_CTRL4_EXT_PIN_GMII_SEL BIT(0)
341#define MVPP22_CTRL4_DP_CLK_SEL BIT(5)
342#define MVPP22_CTRL4_SYNC_BYPASS BIT(6)
343#define MVPP22_CTRL4_QSGMII_BYPASS_ACTIVE BIT(7)
344
345/* Per-port XGMAC registers. PPv2.2 only, only for GOP port 0,
346 * relative to port->base.
347 */
348#define MVPP22_XLG_CTRL3_REG 0x11c
349#define MVPP22_XLG_CTRL3_MACMODESELECT_MASK (7 << 13)
350#define MVPP22_XLG_CTRL3_MACMODESELECT_GMAC (0 << 13)
351
352/* SMI registers. PPv2.2 only, relative to priv->iface_base. */
353#define MVPP22_SMI_MISC_CFG_REG 0x1204
354#define MVPP22_SMI_POLLING_EN BIT(10)
Marcin Wojtas3f518502014-07-10 16:52:13 -0300355
Thomas Petazzonia7868412017-03-07 16:53:13 +0100356#define MVPP22_GMAC_BASE(port) (0x7000 + (port) * 0x1000 + 0xe00)
357
Marcin Wojtas3f518502014-07-10 16:52:13 -0300358#define MVPP2_CAUSE_TXQ_SENT_DESC_ALL_MASK 0xff
359
360/* Descriptor ring Macros */
361#define MVPP2_QUEUE_NEXT_DESC(q, index) \
362 (((index) < (q)->last_desc) ? ((index) + 1) : 0)
363
364/* Various constants */
365
366/* Coalescing */
367#define MVPP2_TXDONE_COAL_PKTS_THRESH 15
Marcin Wojtasedc660f2015-08-06 19:00:30 +0200368#define MVPP2_TXDONE_HRTIMER_PERIOD_NS 1000000UL
Marcin Wojtas3f518502014-07-10 16:52:13 -0300369#define MVPP2_RX_COAL_PKTS 32
370#define MVPP2_RX_COAL_USEC 100
371
372/* The two bytes Marvell header. Either contains a special value used
373 * by Marvell switches when a specific hardware mode is enabled (not
374 * supported by this driver) or is filled automatically by zeroes on
375 * the RX side. Those two bytes being at the front of the Ethernet
376 * header, they allow to have the IP header aligned on a 4 bytes
377 * boundary automatically: the hardware skips those two bytes on its
378 * own.
379 */
380#define MVPP2_MH_SIZE 2
381#define MVPP2_ETH_TYPE_LEN 2
382#define MVPP2_PPPOE_HDR_SIZE 8
383#define MVPP2_VLAN_TAG_LEN 4
384
385/* Lbtd 802.3 type */
386#define MVPP2_IP_LBDT_TYPE 0xfffa
387
Marcin Wojtas3f518502014-07-10 16:52:13 -0300388#define MVPP2_TX_CSUM_MAX_SIZE 9800
389
390/* Timeout constants */
391#define MVPP2_TX_DISABLE_TIMEOUT_MSEC 1000
392#define MVPP2_TX_PENDING_TIMEOUT_MSEC 1000
393
394#define MVPP2_TX_MTU_MAX 0x7ffff
395
396/* Maximum number of T-CONTs of PON port */
397#define MVPP2_MAX_TCONT 16
398
399/* Maximum number of supported ports */
400#define MVPP2_MAX_PORTS 4
401
402/* Maximum number of TXQs used by single port */
403#define MVPP2_MAX_TXQ 8
404
Marcin Wojtas3f518502014-07-10 16:52:13 -0300405/* Dfault number of RXQs in use */
406#define MVPP2_DEFAULT_RXQ 4
407
Marcin Wojtas3f518502014-07-10 16:52:13 -0300408/* Max number of Rx descriptors */
409#define MVPP2_MAX_RXD 128
410
411/* Max number of Tx descriptors */
412#define MVPP2_MAX_TXD 1024
413
414/* Amount of Tx descriptors that can be reserved at once by CPU */
415#define MVPP2_CPU_DESC_CHUNK 64
416
417/* Max number of Tx descriptors in each aggregated queue */
418#define MVPP2_AGGR_TXQ_SIZE 256
419
420/* Descriptor aligned size */
421#define MVPP2_DESC_ALIGNED_SIZE 32
422
423/* Descriptor alignment mask */
424#define MVPP2_TX_DESC_ALIGN (MVPP2_DESC_ALIGNED_SIZE - 1)
425
426/* RX FIFO constants */
427#define MVPP2_RX_FIFO_PORT_DATA_SIZE 0x2000
428#define MVPP2_RX_FIFO_PORT_ATTR_SIZE 0x80
429#define MVPP2_RX_FIFO_PORT_MIN_PKT 0x80
430
431/* RX buffer constants */
432#define MVPP2_SKB_SHINFO_SIZE \
433 SKB_DATA_ALIGN(sizeof(struct skb_shared_info))
434
435#define MVPP2_RX_PKT_SIZE(mtu) \
436 ALIGN((mtu) + MVPP2_MH_SIZE + MVPP2_VLAN_TAG_LEN + \
Jisheng Zhang4a0a12d2016-04-01 17:11:05 +0800437 ETH_HLEN + ETH_FCS_LEN, cache_line_size())
Marcin Wojtas3f518502014-07-10 16:52:13 -0300438
439#define MVPP2_RX_BUF_SIZE(pkt_size) ((pkt_size) + NET_SKB_PAD)
440#define MVPP2_RX_TOTAL_SIZE(buf_size) ((buf_size) + MVPP2_SKB_SHINFO_SIZE)
441#define MVPP2_RX_MAX_PKT_SIZE(total_size) \
442 ((total_size) - NET_SKB_PAD - MVPP2_SKB_SHINFO_SIZE)
443
444#define MVPP2_BIT_TO_BYTE(bit) ((bit) / 8)
445
446/* IPv6 max L3 address size */
447#define MVPP2_MAX_L3_ADDR_SIZE 16
448
449/* Port flags */
450#define MVPP2_F_LOOPBACK BIT(0)
451
452/* Marvell tag types */
453enum mvpp2_tag_type {
454 MVPP2_TAG_TYPE_NONE = 0,
455 MVPP2_TAG_TYPE_MH = 1,
456 MVPP2_TAG_TYPE_DSA = 2,
457 MVPP2_TAG_TYPE_EDSA = 3,
458 MVPP2_TAG_TYPE_VLAN = 4,
459 MVPP2_TAG_TYPE_LAST = 5
460};
461
462/* Parser constants */
463#define MVPP2_PRS_TCAM_SRAM_SIZE 256
464#define MVPP2_PRS_TCAM_WORDS 6
465#define MVPP2_PRS_SRAM_WORDS 4
466#define MVPP2_PRS_FLOW_ID_SIZE 64
467#define MVPP2_PRS_FLOW_ID_MASK 0x3f
468#define MVPP2_PRS_TCAM_ENTRY_INVALID 1
469#define MVPP2_PRS_TCAM_DSA_TAGGED_BIT BIT(5)
470#define MVPP2_PRS_IPV4_HEAD 0x40
471#define MVPP2_PRS_IPV4_HEAD_MASK 0xf0
472#define MVPP2_PRS_IPV4_MC 0xe0
473#define MVPP2_PRS_IPV4_MC_MASK 0xf0
474#define MVPP2_PRS_IPV4_BC_MASK 0xff
475#define MVPP2_PRS_IPV4_IHL 0x5
476#define MVPP2_PRS_IPV4_IHL_MASK 0xf
477#define MVPP2_PRS_IPV6_MC 0xff
478#define MVPP2_PRS_IPV6_MC_MASK 0xff
479#define MVPP2_PRS_IPV6_HOP_MASK 0xff
480#define MVPP2_PRS_TCAM_PROTO_MASK 0xff
481#define MVPP2_PRS_TCAM_PROTO_MASK_L 0x3f
482#define MVPP2_PRS_DBL_VLANS_MAX 100
483
484/* Tcam structure:
485 * - lookup ID - 4 bits
486 * - port ID - 1 byte
487 * - additional information - 1 byte
488 * - header data - 8 bytes
489 * The fields are represented by MVPP2_PRS_TCAM_DATA_REG(5)->(0).
490 */
491#define MVPP2_PRS_AI_BITS 8
492#define MVPP2_PRS_PORT_MASK 0xff
493#define MVPP2_PRS_LU_MASK 0xf
494#define MVPP2_PRS_TCAM_DATA_BYTE(offs) \
495 (((offs) - ((offs) % 2)) * 2 + ((offs) % 2))
496#define MVPP2_PRS_TCAM_DATA_BYTE_EN(offs) \
497 (((offs) * 2) - ((offs) % 2) + 2)
498#define MVPP2_PRS_TCAM_AI_BYTE 16
499#define MVPP2_PRS_TCAM_PORT_BYTE 17
500#define MVPP2_PRS_TCAM_LU_BYTE 20
501#define MVPP2_PRS_TCAM_EN_OFFS(offs) ((offs) + 2)
502#define MVPP2_PRS_TCAM_INV_WORD 5
503/* Tcam entries ID */
504#define MVPP2_PE_DROP_ALL 0
505#define MVPP2_PE_FIRST_FREE_TID 1
506#define MVPP2_PE_LAST_FREE_TID (MVPP2_PRS_TCAM_SRAM_SIZE - 31)
507#define MVPP2_PE_IP6_EXT_PROTO_UN (MVPP2_PRS_TCAM_SRAM_SIZE - 30)
508#define MVPP2_PE_MAC_MC_IP6 (MVPP2_PRS_TCAM_SRAM_SIZE - 29)
509#define MVPP2_PE_IP6_ADDR_UN (MVPP2_PRS_TCAM_SRAM_SIZE - 28)
510#define MVPP2_PE_IP4_ADDR_UN (MVPP2_PRS_TCAM_SRAM_SIZE - 27)
511#define MVPP2_PE_LAST_DEFAULT_FLOW (MVPP2_PRS_TCAM_SRAM_SIZE - 26)
512#define MVPP2_PE_FIRST_DEFAULT_FLOW (MVPP2_PRS_TCAM_SRAM_SIZE - 19)
513#define MVPP2_PE_EDSA_TAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 18)
514#define MVPP2_PE_EDSA_UNTAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 17)
515#define MVPP2_PE_DSA_TAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 16)
516#define MVPP2_PE_DSA_UNTAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 15)
517#define MVPP2_PE_ETYPE_EDSA_TAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 14)
518#define MVPP2_PE_ETYPE_EDSA_UNTAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 13)
519#define MVPP2_PE_ETYPE_DSA_TAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 12)
520#define MVPP2_PE_ETYPE_DSA_UNTAGGED (MVPP2_PRS_TCAM_SRAM_SIZE - 11)
521#define MVPP2_PE_MH_DEFAULT (MVPP2_PRS_TCAM_SRAM_SIZE - 10)
522#define MVPP2_PE_DSA_DEFAULT (MVPP2_PRS_TCAM_SRAM_SIZE - 9)
523#define MVPP2_PE_IP6_PROTO_UN (MVPP2_PRS_TCAM_SRAM_SIZE - 8)
524#define MVPP2_PE_IP4_PROTO_UN (MVPP2_PRS_TCAM_SRAM_SIZE - 7)
525#define MVPP2_PE_ETH_TYPE_UN (MVPP2_PRS_TCAM_SRAM_SIZE - 6)
526#define MVPP2_PE_VLAN_DBL (MVPP2_PRS_TCAM_SRAM_SIZE - 5)
527#define MVPP2_PE_VLAN_NONE (MVPP2_PRS_TCAM_SRAM_SIZE - 4)
528#define MVPP2_PE_MAC_MC_ALL (MVPP2_PRS_TCAM_SRAM_SIZE - 3)
529#define MVPP2_PE_MAC_PROMISCUOUS (MVPP2_PRS_TCAM_SRAM_SIZE - 2)
530#define MVPP2_PE_MAC_NON_PROMISCUOUS (MVPP2_PRS_TCAM_SRAM_SIZE - 1)
531
532/* Sram structure
533 * The fields are represented by MVPP2_PRS_TCAM_DATA_REG(3)->(0).
534 */
535#define MVPP2_PRS_SRAM_RI_OFFS 0
536#define MVPP2_PRS_SRAM_RI_WORD 0
537#define MVPP2_PRS_SRAM_RI_CTRL_OFFS 32
538#define MVPP2_PRS_SRAM_RI_CTRL_WORD 1
539#define MVPP2_PRS_SRAM_RI_CTRL_BITS 32
540#define MVPP2_PRS_SRAM_SHIFT_OFFS 64
541#define MVPP2_PRS_SRAM_SHIFT_SIGN_BIT 72
542#define MVPP2_PRS_SRAM_UDF_OFFS 73
543#define MVPP2_PRS_SRAM_UDF_BITS 8
544#define MVPP2_PRS_SRAM_UDF_MASK 0xff
545#define MVPP2_PRS_SRAM_UDF_SIGN_BIT 81
546#define MVPP2_PRS_SRAM_UDF_TYPE_OFFS 82
547#define MVPP2_PRS_SRAM_UDF_TYPE_MASK 0x7
548#define MVPP2_PRS_SRAM_UDF_TYPE_L3 1
549#define MVPP2_PRS_SRAM_UDF_TYPE_L4 4
550#define MVPP2_PRS_SRAM_OP_SEL_SHIFT_OFFS 85
551#define MVPP2_PRS_SRAM_OP_SEL_SHIFT_MASK 0x3
552#define MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD 1
553#define MVPP2_PRS_SRAM_OP_SEL_SHIFT_IP4_ADD 2
554#define MVPP2_PRS_SRAM_OP_SEL_SHIFT_IP6_ADD 3
555#define MVPP2_PRS_SRAM_OP_SEL_UDF_OFFS 87
556#define MVPP2_PRS_SRAM_OP_SEL_UDF_BITS 2
557#define MVPP2_PRS_SRAM_OP_SEL_UDF_MASK 0x3
558#define MVPP2_PRS_SRAM_OP_SEL_UDF_ADD 0
559#define MVPP2_PRS_SRAM_OP_SEL_UDF_IP4_ADD 2
560#define MVPP2_PRS_SRAM_OP_SEL_UDF_IP6_ADD 3
561#define MVPP2_PRS_SRAM_OP_SEL_BASE_OFFS 89
562#define MVPP2_PRS_SRAM_AI_OFFS 90
563#define MVPP2_PRS_SRAM_AI_CTRL_OFFS 98
564#define MVPP2_PRS_SRAM_AI_CTRL_BITS 8
565#define MVPP2_PRS_SRAM_AI_MASK 0xff
566#define MVPP2_PRS_SRAM_NEXT_LU_OFFS 106
567#define MVPP2_PRS_SRAM_NEXT_LU_MASK 0xf
568#define MVPP2_PRS_SRAM_LU_DONE_BIT 110
569#define MVPP2_PRS_SRAM_LU_GEN_BIT 111
570
571/* Sram result info bits assignment */
572#define MVPP2_PRS_RI_MAC_ME_MASK 0x1
573#define MVPP2_PRS_RI_DSA_MASK 0x2
Thomas Petazzoni8138aff2017-02-21 11:28:11 +0100574#define MVPP2_PRS_RI_VLAN_MASK (BIT(2) | BIT(3))
575#define MVPP2_PRS_RI_VLAN_NONE 0x0
Marcin Wojtas3f518502014-07-10 16:52:13 -0300576#define MVPP2_PRS_RI_VLAN_SINGLE BIT(2)
577#define MVPP2_PRS_RI_VLAN_DOUBLE BIT(3)
578#define MVPP2_PRS_RI_VLAN_TRIPLE (BIT(2) | BIT(3))
579#define MVPP2_PRS_RI_CPU_CODE_MASK 0x70
580#define MVPP2_PRS_RI_CPU_CODE_RX_SPEC BIT(4)
Thomas Petazzoni8138aff2017-02-21 11:28:11 +0100581#define MVPP2_PRS_RI_L2_CAST_MASK (BIT(9) | BIT(10))
582#define MVPP2_PRS_RI_L2_UCAST 0x0
Marcin Wojtas3f518502014-07-10 16:52:13 -0300583#define MVPP2_PRS_RI_L2_MCAST BIT(9)
584#define MVPP2_PRS_RI_L2_BCAST BIT(10)
585#define MVPP2_PRS_RI_PPPOE_MASK 0x800
Thomas Petazzoni8138aff2017-02-21 11:28:11 +0100586#define MVPP2_PRS_RI_L3_PROTO_MASK (BIT(12) | BIT(13) | BIT(14))
587#define MVPP2_PRS_RI_L3_UN 0x0
Marcin Wojtas3f518502014-07-10 16:52:13 -0300588#define MVPP2_PRS_RI_L3_IP4 BIT(12)
589#define MVPP2_PRS_RI_L3_IP4_OPT BIT(13)
590#define MVPP2_PRS_RI_L3_IP4_OTHER (BIT(12) | BIT(13))
591#define MVPP2_PRS_RI_L3_IP6 BIT(14)
592#define MVPP2_PRS_RI_L3_IP6_EXT (BIT(12) | BIT(14))
593#define MVPP2_PRS_RI_L3_ARP (BIT(13) | BIT(14))
Thomas Petazzoni8138aff2017-02-21 11:28:11 +0100594#define MVPP2_PRS_RI_L3_ADDR_MASK (BIT(15) | BIT(16))
595#define MVPP2_PRS_RI_L3_UCAST 0x0
Marcin Wojtas3f518502014-07-10 16:52:13 -0300596#define MVPP2_PRS_RI_L3_MCAST BIT(15)
597#define MVPP2_PRS_RI_L3_BCAST (BIT(15) | BIT(16))
598#define MVPP2_PRS_RI_IP_FRAG_MASK 0x20000
599#define MVPP2_PRS_RI_UDF3_MASK 0x300000
600#define MVPP2_PRS_RI_UDF3_RX_SPECIAL BIT(21)
601#define MVPP2_PRS_RI_L4_PROTO_MASK 0x1c00000
602#define MVPP2_PRS_RI_L4_TCP BIT(22)
603#define MVPP2_PRS_RI_L4_UDP BIT(23)
604#define MVPP2_PRS_RI_L4_OTHER (BIT(22) | BIT(23))
605#define MVPP2_PRS_RI_UDF7_MASK 0x60000000
606#define MVPP2_PRS_RI_UDF7_IP6_LITE BIT(29)
607#define MVPP2_PRS_RI_DROP_MASK 0x80000000
608
609/* Sram additional info bits assignment */
610#define MVPP2_PRS_IPV4_DIP_AI_BIT BIT(0)
611#define MVPP2_PRS_IPV6_NO_EXT_AI_BIT BIT(0)
612#define MVPP2_PRS_IPV6_EXT_AI_BIT BIT(1)
613#define MVPP2_PRS_IPV6_EXT_AH_AI_BIT BIT(2)
614#define MVPP2_PRS_IPV6_EXT_AH_LEN_AI_BIT BIT(3)
615#define MVPP2_PRS_IPV6_EXT_AH_L4_AI_BIT BIT(4)
616#define MVPP2_PRS_SINGLE_VLAN_AI 0
617#define MVPP2_PRS_DBL_VLAN_AI_BIT BIT(7)
618
619/* DSA/EDSA type */
620#define MVPP2_PRS_TAGGED true
621#define MVPP2_PRS_UNTAGGED false
622#define MVPP2_PRS_EDSA true
623#define MVPP2_PRS_DSA false
624
625/* MAC entries, shadow udf */
626enum mvpp2_prs_udf {
627 MVPP2_PRS_UDF_MAC_DEF,
628 MVPP2_PRS_UDF_MAC_RANGE,
629 MVPP2_PRS_UDF_L2_DEF,
630 MVPP2_PRS_UDF_L2_DEF_COPY,
631 MVPP2_PRS_UDF_L2_USER,
632};
633
634/* Lookup ID */
635enum mvpp2_prs_lookup {
636 MVPP2_PRS_LU_MH,
637 MVPP2_PRS_LU_MAC,
638 MVPP2_PRS_LU_DSA,
639 MVPP2_PRS_LU_VLAN,
640 MVPP2_PRS_LU_L2,
641 MVPP2_PRS_LU_PPPOE,
642 MVPP2_PRS_LU_IP4,
643 MVPP2_PRS_LU_IP6,
644 MVPP2_PRS_LU_FLOWS,
645 MVPP2_PRS_LU_LAST,
646};
647
648/* L3 cast enum */
649enum mvpp2_prs_l3_cast {
650 MVPP2_PRS_L3_UNI_CAST,
651 MVPP2_PRS_L3_MULTI_CAST,
652 MVPP2_PRS_L3_BROAD_CAST
653};
654
655/* Classifier constants */
656#define MVPP2_CLS_FLOWS_TBL_SIZE 512
657#define MVPP2_CLS_FLOWS_TBL_DATA_WORDS 3
658#define MVPP2_CLS_LKP_TBL_SIZE 64
659
660/* BM constants */
661#define MVPP2_BM_POOLS_NUM 8
662#define MVPP2_BM_LONG_BUF_NUM 1024
663#define MVPP2_BM_SHORT_BUF_NUM 2048
664#define MVPP2_BM_POOL_SIZE_MAX (16*1024 - MVPP2_BM_POOL_PTR_ALIGN/4)
665#define MVPP2_BM_POOL_PTR_ALIGN 128
666#define MVPP2_BM_SWF_LONG_POOL(port) ((port > 2) ? 2 : port)
667#define MVPP2_BM_SWF_SHORT_POOL 3
668
669/* BM cookie (32 bits) definition */
670#define MVPP2_BM_COOKIE_POOL_OFFS 8
671#define MVPP2_BM_COOKIE_CPU_OFFS 24
672
673/* BM short pool packet size
674 * These value assure that for SWF the total number
675 * of bytes allocated for each buffer will be 512
676 */
677#define MVPP2_BM_SHORT_PKT_SIZE MVPP2_RX_MAX_PKT_SIZE(512)
678
Thomas Petazzonia7868412017-03-07 16:53:13 +0100679#define MVPP21_ADDR_SPACE_SZ 0
680#define MVPP22_ADDR_SPACE_SZ SZ_64K
681
682#define MVPP2_MAX_CPUS 4
683
Marcin Wojtas3f518502014-07-10 16:52:13 -0300684enum mvpp2_bm_type {
685 MVPP2_BM_FREE,
686 MVPP2_BM_SWF_LONG,
687 MVPP2_BM_SWF_SHORT
688};
689
690/* Definitions */
691
692/* Shared Packet Processor resources */
693struct mvpp2 {
694 /* Shared registers' base addresses */
Marcin Wojtas3f518502014-07-10 16:52:13 -0300695 void __iomem *lms_base;
Thomas Petazzonia7868412017-03-07 16:53:13 +0100696 void __iomem *iface_base;
697
698 /* On PPv2.2, each CPU can access the base register through a
699 * separate address space, each 64 KB apart from each
700 * other.
701 */
702 void __iomem *cpu_base[MVPP2_MAX_CPUS];
Marcin Wojtas3f518502014-07-10 16:52:13 -0300703
704 /* Common clocks */
705 struct clk *pp_clk;
706 struct clk *gop_clk;
Thomas Petazzonifceb55d2017-03-07 16:53:18 +0100707 struct clk *mg_clk;
Marcin Wojtas3f518502014-07-10 16:52:13 -0300708
709 /* List of pointers to port structures */
710 struct mvpp2_port **port_list;
711
712 /* Aggregated TXQs */
713 struct mvpp2_tx_queue *aggr_txqs;
714
715 /* BM pools */
716 struct mvpp2_bm_pool *bm_pools;
717
718 /* PRS shadow table */
719 struct mvpp2_prs_shadow *prs_shadow;
720 /* PRS auxiliary table for double vlan entries control */
721 bool *prs_double_vlans;
722
723 /* Tclk value */
724 u32 tclk;
Thomas Petazzonifaca9242017-03-07 16:53:06 +0100725
726 /* HW version */
727 enum { MVPP21, MVPP22 } hw_version;
Thomas Petazzoni59b9a312017-03-07 16:53:17 +0100728
729 /* Maximum number of RXQs per port */
730 unsigned int max_port_rxqs;
Marcin Wojtas3f518502014-07-10 16:52:13 -0300731};
732
733struct mvpp2_pcpu_stats {
734 struct u64_stats_sync syncp;
735 u64 rx_packets;
736 u64 rx_bytes;
737 u64 tx_packets;
738 u64 tx_bytes;
739};
740
Marcin Wojtasedc660f2015-08-06 19:00:30 +0200741/* Per-CPU port control */
742struct mvpp2_port_pcpu {
743 struct hrtimer tx_done_timer;
744 bool timer_scheduled;
745 /* Tasklet for egress finalization */
746 struct tasklet_struct tx_done_tasklet;
747};
748
Marcin Wojtas3f518502014-07-10 16:52:13 -0300749struct mvpp2_port {
750 u8 id;
751
Thomas Petazzonia7868412017-03-07 16:53:13 +0100752 /* Index of the port from the "group of ports" complex point
753 * of view
754 */
755 int gop_id;
756
Marcin Wojtas3f518502014-07-10 16:52:13 -0300757 int irq;
758
759 struct mvpp2 *priv;
760
761 /* Per-port registers' base address */
762 void __iomem *base;
763
764 struct mvpp2_rx_queue **rxqs;
765 struct mvpp2_tx_queue **txqs;
766 struct net_device *dev;
767
768 int pkt_size;
769
770 u32 pending_cause_rx;
771 struct napi_struct napi;
772
Marcin Wojtasedc660f2015-08-06 19:00:30 +0200773 /* Per-CPU port control */
774 struct mvpp2_port_pcpu __percpu *pcpu;
775
Marcin Wojtas3f518502014-07-10 16:52:13 -0300776 /* Flags */
777 unsigned long flags;
778
779 u16 tx_ring_size;
780 u16 rx_ring_size;
781 struct mvpp2_pcpu_stats __percpu *stats;
782
Marcin Wojtas3f518502014-07-10 16:52:13 -0300783 phy_interface_t phy_interface;
784 struct device_node *phy_node;
785 unsigned int link;
786 unsigned int duplex;
787 unsigned int speed;
788
789 struct mvpp2_bm_pool *pool_long;
790 struct mvpp2_bm_pool *pool_short;
791
792 /* Index of first port's physical RXQ */
793 u8 first_rxq;
794};
795
796/* The mvpp2_tx_desc and mvpp2_rx_desc structures describe the
797 * layout of the transmit and reception DMA descriptors, and their
798 * layout is therefore defined by the hardware design
799 */
800
801#define MVPP2_TXD_L3_OFF_SHIFT 0
802#define MVPP2_TXD_IP_HLEN_SHIFT 8
803#define MVPP2_TXD_L4_CSUM_FRAG BIT(13)
804#define MVPP2_TXD_L4_CSUM_NOT BIT(14)
805#define MVPP2_TXD_IP_CSUM_DISABLE BIT(15)
806#define MVPP2_TXD_PADDING_DISABLE BIT(23)
807#define MVPP2_TXD_L4_UDP BIT(24)
808#define MVPP2_TXD_L3_IP6 BIT(26)
809#define MVPP2_TXD_L_DESC BIT(28)
810#define MVPP2_TXD_F_DESC BIT(29)
811
812#define MVPP2_RXD_ERR_SUMMARY BIT(15)
813#define MVPP2_RXD_ERR_CODE_MASK (BIT(13) | BIT(14))
814#define MVPP2_RXD_ERR_CRC 0x0
815#define MVPP2_RXD_ERR_OVERRUN BIT(13)
816#define MVPP2_RXD_ERR_RESOURCE (BIT(13) | BIT(14))
817#define MVPP2_RXD_BM_POOL_ID_OFFS 16
818#define MVPP2_RXD_BM_POOL_ID_MASK (BIT(16) | BIT(17) | BIT(18))
819#define MVPP2_RXD_HWF_SYNC BIT(21)
820#define MVPP2_RXD_L4_CSUM_OK BIT(22)
821#define MVPP2_RXD_IP4_HEADER_ERR BIT(24)
822#define MVPP2_RXD_L4_TCP BIT(25)
823#define MVPP2_RXD_L4_UDP BIT(26)
824#define MVPP2_RXD_L3_IP4 BIT(28)
825#define MVPP2_RXD_L3_IP6 BIT(30)
826#define MVPP2_RXD_BUF_HDR BIT(31)
827
Thomas Petazzoni054f6372017-03-07 16:53:07 +0100828/* HW TX descriptor for PPv2.1 */
829struct mvpp21_tx_desc {
Marcin Wojtas3f518502014-07-10 16:52:13 -0300830 u32 command; /* Options used by HW for packet transmitting.*/
831 u8 packet_offset; /* the offset from the buffer beginning */
832 u8 phys_txq; /* destination queue ID */
833 u16 data_size; /* data size of transmitted packet in bytes */
Thomas Petazzoni20396132017-03-07 16:53:00 +0100834 u32 buf_dma_addr; /* physical addr of transmitted buffer */
Marcin Wojtas3f518502014-07-10 16:52:13 -0300835 u32 buf_cookie; /* cookie for access to TX buffer in tx path */
836 u32 reserved1[3]; /* hw_cmd (for future use, BM, PON, PNC) */
837 u32 reserved2; /* reserved (for future use) */
838};
839
Thomas Petazzoni054f6372017-03-07 16:53:07 +0100840/* HW RX descriptor for PPv2.1 */
841struct mvpp21_rx_desc {
Marcin Wojtas3f518502014-07-10 16:52:13 -0300842 u32 status; /* info about received packet */
843 u16 reserved1; /* parser_info (for future use, PnC) */
844 u16 data_size; /* size of received packet in bytes */
Thomas Petazzoni20396132017-03-07 16:53:00 +0100845 u32 buf_dma_addr; /* physical address of the buffer */
Marcin Wojtas3f518502014-07-10 16:52:13 -0300846 u32 buf_cookie; /* cookie for access to RX buffer in rx path */
847 u16 reserved2; /* gem_port_id (for future use, PON) */
848 u16 reserved3; /* csum_l4 (for future use, PnC) */
849 u8 reserved4; /* bm_qset (for future use, BM) */
850 u8 reserved5;
851 u16 reserved6; /* classify_info (for future use, PnC) */
852 u32 reserved7; /* flow_id (for future use, PnC) */
853 u32 reserved8;
854};
855
Thomas Petazzonie7c53592017-03-07 16:53:08 +0100856/* HW TX descriptor for PPv2.2 */
857struct mvpp22_tx_desc {
858 u32 command;
859 u8 packet_offset;
860 u8 phys_txq;
861 u16 data_size;
862 u64 reserved1;
863 u64 buf_dma_addr_ptp;
864 u64 buf_cookie_misc;
865};
866
867/* HW RX descriptor for PPv2.2 */
868struct mvpp22_rx_desc {
869 u32 status;
870 u16 reserved1;
871 u16 data_size;
872 u32 reserved2;
873 u32 reserved3;
874 u64 buf_dma_addr_key_hash;
875 u64 buf_cookie_misc;
876};
877
Thomas Petazzoni054f6372017-03-07 16:53:07 +0100878/* Opaque type used by the driver to manipulate the HW TX and RX
879 * descriptors
880 */
881struct mvpp2_tx_desc {
882 union {
883 struct mvpp21_tx_desc pp21;
Thomas Petazzonie7c53592017-03-07 16:53:08 +0100884 struct mvpp22_tx_desc pp22;
Thomas Petazzoni054f6372017-03-07 16:53:07 +0100885 };
886};
887
888struct mvpp2_rx_desc {
889 union {
890 struct mvpp21_rx_desc pp21;
Thomas Petazzonie7c53592017-03-07 16:53:08 +0100891 struct mvpp22_rx_desc pp22;
Thomas Petazzoni054f6372017-03-07 16:53:07 +0100892 };
893};
894
Thomas Petazzoni83544912016-12-21 11:28:49 +0100895struct mvpp2_txq_pcpu_buf {
896 /* Transmitted SKB */
897 struct sk_buff *skb;
898
899 /* Physical address of transmitted buffer */
Thomas Petazzoni20396132017-03-07 16:53:00 +0100900 dma_addr_t dma;
Thomas Petazzoni83544912016-12-21 11:28:49 +0100901
902 /* Size transmitted */
903 size_t size;
904};
905
Marcin Wojtas3f518502014-07-10 16:52:13 -0300906/* Per-CPU Tx queue control */
907struct mvpp2_txq_pcpu {
908 int cpu;
909
910 /* Number of Tx DMA descriptors in the descriptor ring */
911 int size;
912
913 /* Number of currently used Tx DMA descriptor in the
914 * descriptor ring
915 */
916 int count;
917
918 /* Number of Tx DMA descriptors reserved for each CPU */
919 int reserved_num;
920
Thomas Petazzoni83544912016-12-21 11:28:49 +0100921 /* Infos about transmitted buffers */
922 struct mvpp2_txq_pcpu_buf *buffs;
Marcin Wojtas71ce3912015-08-06 19:00:29 +0200923
Marcin Wojtas3f518502014-07-10 16:52:13 -0300924 /* Index of last TX DMA descriptor that was inserted */
925 int txq_put_index;
926
927 /* Index of the TX DMA descriptor to be cleaned up */
928 int txq_get_index;
929};
930
931struct mvpp2_tx_queue {
932 /* Physical number of this Tx queue */
933 u8 id;
934
935 /* Logical number of this Tx queue */
936 u8 log_id;
937
938 /* Number of Tx DMA descriptors in the descriptor ring */
939 int size;
940
941 /* Number of currently used Tx DMA descriptor in the descriptor ring */
942 int count;
943
944 /* Per-CPU control of physical Tx queues */
945 struct mvpp2_txq_pcpu __percpu *pcpu;
946
Marcin Wojtas3f518502014-07-10 16:52:13 -0300947 u32 done_pkts_coal;
948
949 /* Virtual address of thex Tx DMA descriptors array */
950 struct mvpp2_tx_desc *descs;
951
952 /* DMA address of the Tx DMA descriptors array */
Thomas Petazzoni20396132017-03-07 16:53:00 +0100953 dma_addr_t descs_dma;
Marcin Wojtas3f518502014-07-10 16:52:13 -0300954
955 /* Index of the last Tx DMA descriptor */
956 int last_desc;
957
958 /* Index of the next Tx DMA descriptor to process */
959 int next_desc_to_proc;
960};
961
962struct mvpp2_rx_queue {
963 /* RX queue number, in the range 0-31 for physical RXQs */
964 u8 id;
965
966 /* Num of rx descriptors in the rx descriptor ring */
967 int size;
968
969 u32 pkts_coal;
970 u32 time_coal;
971
972 /* Virtual address of the RX DMA descriptors array */
973 struct mvpp2_rx_desc *descs;
974
975 /* DMA address of the RX DMA descriptors array */
Thomas Petazzoni20396132017-03-07 16:53:00 +0100976 dma_addr_t descs_dma;
Marcin Wojtas3f518502014-07-10 16:52:13 -0300977
978 /* Index of the last RX DMA descriptor */
979 int last_desc;
980
981 /* Index of the next RX DMA descriptor to process */
982 int next_desc_to_proc;
983
984 /* ID of port to which physical RXQ is mapped */
985 int port;
986
987 /* Port's logic RXQ number to which physical RXQ is mapped */
988 int logic_rxq;
989};
990
991union mvpp2_prs_tcam_entry {
992 u32 word[MVPP2_PRS_TCAM_WORDS];
993 u8 byte[MVPP2_PRS_TCAM_WORDS * 4];
994};
995
996union mvpp2_prs_sram_entry {
997 u32 word[MVPP2_PRS_SRAM_WORDS];
998 u8 byte[MVPP2_PRS_SRAM_WORDS * 4];
999};
1000
1001struct mvpp2_prs_entry {
1002 u32 index;
1003 union mvpp2_prs_tcam_entry tcam;
1004 union mvpp2_prs_sram_entry sram;
1005};
1006
1007struct mvpp2_prs_shadow {
1008 bool valid;
1009 bool finish;
1010
1011 /* Lookup ID */
1012 int lu;
1013
1014 /* User defined offset */
1015 int udf;
1016
1017 /* Result info */
1018 u32 ri;
1019 u32 ri_mask;
1020};
1021
1022struct mvpp2_cls_flow_entry {
1023 u32 index;
1024 u32 data[MVPP2_CLS_FLOWS_TBL_DATA_WORDS];
1025};
1026
1027struct mvpp2_cls_lookup_entry {
1028 u32 lkpid;
1029 u32 way;
1030 u32 data;
1031};
1032
1033struct mvpp2_bm_pool {
1034 /* Pool number in the range 0-7 */
1035 int id;
1036 enum mvpp2_bm_type type;
1037
1038 /* Buffer Pointers Pool External (BPPE) size */
1039 int size;
Thomas Petazzonid01524d2017-03-07 16:53:09 +01001040 /* BPPE size in bytes */
1041 int size_bytes;
Marcin Wojtas3f518502014-07-10 16:52:13 -03001042 /* Number of buffers for this pool */
1043 int buf_num;
1044 /* Pool buffer size */
1045 int buf_size;
1046 /* Packet size */
1047 int pkt_size;
Thomas Petazzoni0e037282017-02-21 11:28:12 +01001048 int frag_size;
Marcin Wojtas3f518502014-07-10 16:52:13 -03001049
1050 /* BPPE virtual base address */
1051 u32 *virt_addr;
Thomas Petazzoni20396132017-03-07 16:53:00 +01001052 /* BPPE DMA base address */
1053 dma_addr_t dma_addr;
Marcin Wojtas3f518502014-07-10 16:52:13 -03001054
1055 /* Ports using BM pool */
1056 u32 port_map;
Marcin Wojtas3f518502014-07-10 16:52:13 -03001057};
1058
Marcin Wojtas3f518502014-07-10 16:52:13 -03001059/* Static declaractions */
1060
1061/* Number of RXQs used by single port */
1062static int rxq_number = MVPP2_DEFAULT_RXQ;
1063/* Number of TXQs used by single port */
1064static int txq_number = MVPP2_MAX_TXQ;
1065
1066#define MVPP2_DRIVER_NAME "mvpp2"
1067#define MVPP2_DRIVER_VERSION "1.0"
1068
1069/* Utility/helper methods */
1070
1071static void mvpp2_write(struct mvpp2 *priv, u32 offset, u32 data)
1072{
Thomas Petazzonia7868412017-03-07 16:53:13 +01001073 writel(data, priv->cpu_base[0] + offset);
Marcin Wojtas3f518502014-07-10 16:52:13 -03001074}
1075
1076static u32 mvpp2_read(struct mvpp2 *priv, u32 offset)
1077{
Thomas Petazzonia7868412017-03-07 16:53:13 +01001078 return readl(priv->cpu_base[0] + offset);
1079}
1080
1081/* These accessors should be used to access:
1082 *
1083 * - per-CPU registers, where each CPU has its own copy of the
1084 * register.
1085 *
1086 * MVPP2_BM_VIRT_ALLOC_REG
1087 * MVPP2_BM_ADDR_HIGH_ALLOC
1088 * MVPP22_BM_ADDR_HIGH_RLS_REG
1089 * MVPP2_BM_VIRT_RLS_REG
1090 * MVPP2_ISR_RX_TX_CAUSE_REG
1091 * MVPP2_ISR_RX_TX_MASK_REG
1092 * MVPP2_TXQ_NUM_REG
1093 * MVPP2_AGGR_TXQ_UPDATE_REG
1094 * MVPP2_TXQ_RSVD_REQ_REG
1095 * MVPP2_TXQ_RSVD_RSLT_REG
1096 * MVPP2_TXQ_SENT_REG
1097 * MVPP2_RXQ_NUM_REG
1098 *
1099 * - global registers that must be accessed through a specific CPU
1100 * window, because they are related to an access to a per-CPU
1101 * register
1102 *
1103 * MVPP2_BM_PHY_ALLOC_REG (related to MVPP2_BM_VIRT_ALLOC_REG)
1104 * MVPP2_BM_PHY_RLS_REG (related to MVPP2_BM_VIRT_RLS_REG)
1105 * MVPP2_RXQ_THRESH_REG (related to MVPP2_RXQ_NUM_REG)
1106 * MVPP2_RXQ_DESC_ADDR_REG (related to MVPP2_RXQ_NUM_REG)
1107 * MVPP2_RXQ_DESC_SIZE_REG (related to MVPP2_RXQ_NUM_REG)
1108 * MVPP2_RXQ_INDEX_REG (related to MVPP2_RXQ_NUM_REG)
1109 * MVPP2_TXQ_PENDING_REG (related to MVPP2_TXQ_NUM_REG)
1110 * MVPP2_TXQ_DESC_ADDR_REG (related to MVPP2_TXQ_NUM_REG)
1111 * MVPP2_TXQ_DESC_SIZE_REG (related to MVPP2_TXQ_NUM_REG)
1112 * MVPP2_TXQ_INDEX_REG (related to MVPP2_TXQ_NUM_REG)
1113 * MVPP2_TXQ_PENDING_REG (related to MVPP2_TXQ_NUM_REG)
1114 * MVPP2_TXQ_PREF_BUF_REG (related to MVPP2_TXQ_NUM_REG)
1115 * MVPP2_TXQ_PREF_BUF_REG (related to MVPP2_TXQ_NUM_REG)
1116 */
1117static void mvpp2_percpu_write(struct mvpp2 *priv, int cpu,
1118 u32 offset, u32 data)
1119{
1120 writel(data, priv->cpu_base[cpu] + offset);
1121}
1122
1123static u32 mvpp2_percpu_read(struct mvpp2 *priv, int cpu,
1124 u32 offset)
1125{
1126 return readl(priv->cpu_base[cpu] + offset);
Marcin Wojtas3f518502014-07-10 16:52:13 -03001127}
1128
Thomas Petazzoniac3dd2772017-03-07 16:53:05 +01001129static dma_addr_t mvpp2_txdesc_dma_addr_get(struct mvpp2_port *port,
1130 struct mvpp2_tx_desc *tx_desc)
1131{
Thomas Petazzonie7c53592017-03-07 16:53:08 +01001132 if (port->priv->hw_version == MVPP21)
1133 return tx_desc->pp21.buf_dma_addr;
1134 else
1135 return tx_desc->pp22.buf_dma_addr_ptp & GENMASK_ULL(40, 0);
Thomas Petazzoniac3dd2772017-03-07 16:53:05 +01001136}
1137
1138static void mvpp2_txdesc_dma_addr_set(struct mvpp2_port *port,
1139 struct mvpp2_tx_desc *tx_desc,
1140 dma_addr_t dma_addr)
1141{
Thomas Petazzonie7c53592017-03-07 16:53:08 +01001142 if (port->priv->hw_version == MVPP21) {
1143 tx_desc->pp21.buf_dma_addr = dma_addr;
1144 } else {
1145 u64 val = (u64)dma_addr;
1146
1147 tx_desc->pp22.buf_dma_addr_ptp &= ~GENMASK_ULL(40, 0);
1148 tx_desc->pp22.buf_dma_addr_ptp |= val;
1149 }
Thomas Petazzoniac3dd2772017-03-07 16:53:05 +01001150}
1151
1152static size_t mvpp2_txdesc_size_get(struct mvpp2_port *port,
1153 struct mvpp2_tx_desc *tx_desc)
1154{
Thomas Petazzonie7c53592017-03-07 16:53:08 +01001155 if (port->priv->hw_version == MVPP21)
1156 return tx_desc->pp21.data_size;
1157 else
1158 return tx_desc->pp22.data_size;
Thomas Petazzoniac3dd2772017-03-07 16:53:05 +01001159}
1160
1161static void mvpp2_txdesc_size_set(struct mvpp2_port *port,
1162 struct mvpp2_tx_desc *tx_desc,
1163 size_t size)
1164{
Thomas Petazzonie7c53592017-03-07 16:53:08 +01001165 if (port->priv->hw_version == MVPP21)
1166 tx_desc->pp21.data_size = size;
1167 else
1168 tx_desc->pp22.data_size = size;
Thomas Petazzoniac3dd2772017-03-07 16:53:05 +01001169}
1170
1171static void mvpp2_txdesc_txq_set(struct mvpp2_port *port,
1172 struct mvpp2_tx_desc *tx_desc,
1173 unsigned int txq)
1174{
Thomas Petazzonie7c53592017-03-07 16:53:08 +01001175 if (port->priv->hw_version == MVPP21)
1176 tx_desc->pp21.phys_txq = txq;
1177 else
1178 tx_desc->pp22.phys_txq = txq;
Thomas Petazzoniac3dd2772017-03-07 16:53:05 +01001179}
1180
1181static void mvpp2_txdesc_cmd_set(struct mvpp2_port *port,
1182 struct mvpp2_tx_desc *tx_desc,
1183 unsigned int command)
1184{
Thomas Petazzonie7c53592017-03-07 16:53:08 +01001185 if (port->priv->hw_version == MVPP21)
1186 tx_desc->pp21.command = command;
1187 else
1188 tx_desc->pp22.command = command;
Thomas Petazzoniac3dd2772017-03-07 16:53:05 +01001189}
1190
1191static void mvpp2_txdesc_offset_set(struct mvpp2_port *port,
1192 struct mvpp2_tx_desc *tx_desc,
1193 unsigned int offset)
1194{
Thomas Petazzonie7c53592017-03-07 16:53:08 +01001195 if (port->priv->hw_version == MVPP21)
1196 tx_desc->pp21.packet_offset = offset;
1197 else
1198 tx_desc->pp22.packet_offset = offset;
Thomas Petazzoniac3dd2772017-03-07 16:53:05 +01001199}
1200
1201static unsigned int mvpp2_txdesc_offset_get(struct mvpp2_port *port,
1202 struct mvpp2_tx_desc *tx_desc)
1203{
Thomas Petazzonie7c53592017-03-07 16:53:08 +01001204 if (port->priv->hw_version == MVPP21)
1205 return tx_desc->pp21.packet_offset;
1206 else
1207 return tx_desc->pp22.packet_offset;
Thomas Petazzoniac3dd2772017-03-07 16:53:05 +01001208}
1209
1210static dma_addr_t mvpp2_rxdesc_dma_addr_get(struct mvpp2_port *port,
1211 struct mvpp2_rx_desc *rx_desc)
1212{
Thomas Petazzonie7c53592017-03-07 16:53:08 +01001213 if (port->priv->hw_version == MVPP21)
1214 return rx_desc->pp21.buf_dma_addr;
1215 else
1216 return rx_desc->pp22.buf_dma_addr_key_hash & GENMASK_ULL(40, 0);
Thomas Petazzoniac3dd2772017-03-07 16:53:05 +01001217}
1218
1219static unsigned long mvpp2_rxdesc_cookie_get(struct mvpp2_port *port,
1220 struct mvpp2_rx_desc *rx_desc)
1221{
Thomas Petazzonie7c53592017-03-07 16:53:08 +01001222 if (port->priv->hw_version == MVPP21)
1223 return rx_desc->pp21.buf_cookie;
1224 else
1225 return rx_desc->pp22.buf_cookie_misc & GENMASK_ULL(40, 0);
Thomas Petazzoniac3dd2772017-03-07 16:53:05 +01001226}
1227
1228static size_t mvpp2_rxdesc_size_get(struct mvpp2_port *port,
1229 struct mvpp2_rx_desc *rx_desc)
1230{
Thomas Petazzonie7c53592017-03-07 16:53:08 +01001231 if (port->priv->hw_version == MVPP21)
1232 return rx_desc->pp21.data_size;
1233 else
1234 return rx_desc->pp22.data_size;
Thomas Petazzoniac3dd2772017-03-07 16:53:05 +01001235}
1236
1237static u32 mvpp2_rxdesc_status_get(struct mvpp2_port *port,
1238 struct mvpp2_rx_desc *rx_desc)
1239{
Thomas Petazzonie7c53592017-03-07 16:53:08 +01001240 if (port->priv->hw_version == MVPP21)
1241 return rx_desc->pp21.status;
1242 else
1243 return rx_desc->pp22.status;
Thomas Petazzoniac3dd2772017-03-07 16:53:05 +01001244}
1245
Marcin Wojtas3f518502014-07-10 16:52:13 -03001246static void mvpp2_txq_inc_get(struct mvpp2_txq_pcpu *txq_pcpu)
1247{
1248 txq_pcpu->txq_get_index++;
1249 if (txq_pcpu->txq_get_index == txq_pcpu->size)
1250 txq_pcpu->txq_get_index = 0;
1251}
1252
Thomas Petazzoniac3dd2772017-03-07 16:53:05 +01001253static void mvpp2_txq_inc_put(struct mvpp2_port *port,
1254 struct mvpp2_txq_pcpu *txq_pcpu,
Marcin Wojtas71ce3912015-08-06 19:00:29 +02001255 struct sk_buff *skb,
1256 struct mvpp2_tx_desc *tx_desc)
Marcin Wojtas3f518502014-07-10 16:52:13 -03001257{
Thomas Petazzoni83544912016-12-21 11:28:49 +01001258 struct mvpp2_txq_pcpu_buf *tx_buf =
1259 txq_pcpu->buffs + txq_pcpu->txq_put_index;
1260 tx_buf->skb = skb;
Thomas Petazzoniac3dd2772017-03-07 16:53:05 +01001261 tx_buf->size = mvpp2_txdesc_size_get(port, tx_desc);
1262 tx_buf->dma = mvpp2_txdesc_dma_addr_get(port, tx_desc) +
1263 mvpp2_txdesc_offset_get(port, tx_desc);
Marcin Wojtas3f518502014-07-10 16:52:13 -03001264 txq_pcpu->txq_put_index++;
1265 if (txq_pcpu->txq_put_index == txq_pcpu->size)
1266 txq_pcpu->txq_put_index = 0;
1267}
1268
1269/* Get number of physical egress port */
1270static inline int mvpp2_egress_port(struct mvpp2_port *port)
1271{
1272 return MVPP2_MAX_TCONT + port->id;
1273}
1274
1275/* Get number of physical TXQ */
1276static inline int mvpp2_txq_phys(int port, int txq)
1277{
1278 return (MVPP2_MAX_TCONT + port) * MVPP2_MAX_TXQ + txq;
1279}
1280
1281/* Parser configuration routines */
1282
1283/* Update parser tcam and sram hw entries */
1284static int mvpp2_prs_hw_write(struct mvpp2 *priv, struct mvpp2_prs_entry *pe)
1285{
1286 int i;
1287
1288 if (pe->index > MVPP2_PRS_TCAM_SRAM_SIZE - 1)
1289 return -EINVAL;
1290
1291 /* Clear entry invalidation bit */
1292 pe->tcam.word[MVPP2_PRS_TCAM_INV_WORD] &= ~MVPP2_PRS_TCAM_INV_MASK;
1293
1294 /* Write tcam index - indirect access */
1295 mvpp2_write(priv, MVPP2_PRS_TCAM_IDX_REG, pe->index);
1296 for (i = 0; i < MVPP2_PRS_TCAM_WORDS; i++)
1297 mvpp2_write(priv, MVPP2_PRS_TCAM_DATA_REG(i), pe->tcam.word[i]);
1298
1299 /* Write sram index - indirect access */
1300 mvpp2_write(priv, MVPP2_PRS_SRAM_IDX_REG, pe->index);
1301 for (i = 0; i < MVPP2_PRS_SRAM_WORDS; i++)
1302 mvpp2_write(priv, MVPP2_PRS_SRAM_DATA_REG(i), pe->sram.word[i]);
1303
1304 return 0;
1305}
1306
1307/* Read tcam entry from hw */
1308static int mvpp2_prs_hw_read(struct mvpp2 *priv, struct mvpp2_prs_entry *pe)
1309{
1310 int i;
1311
1312 if (pe->index > MVPP2_PRS_TCAM_SRAM_SIZE - 1)
1313 return -EINVAL;
1314
1315 /* Write tcam index - indirect access */
1316 mvpp2_write(priv, MVPP2_PRS_TCAM_IDX_REG, pe->index);
1317
1318 pe->tcam.word[MVPP2_PRS_TCAM_INV_WORD] = mvpp2_read(priv,
1319 MVPP2_PRS_TCAM_DATA_REG(MVPP2_PRS_TCAM_INV_WORD));
1320 if (pe->tcam.word[MVPP2_PRS_TCAM_INV_WORD] & MVPP2_PRS_TCAM_INV_MASK)
1321 return MVPP2_PRS_TCAM_ENTRY_INVALID;
1322
1323 for (i = 0; i < MVPP2_PRS_TCAM_WORDS; i++)
1324 pe->tcam.word[i] = mvpp2_read(priv, MVPP2_PRS_TCAM_DATA_REG(i));
1325
1326 /* Write sram index - indirect access */
1327 mvpp2_write(priv, MVPP2_PRS_SRAM_IDX_REG, pe->index);
1328 for (i = 0; i < MVPP2_PRS_SRAM_WORDS; i++)
1329 pe->sram.word[i] = mvpp2_read(priv, MVPP2_PRS_SRAM_DATA_REG(i));
1330
1331 return 0;
1332}
1333
1334/* Invalidate tcam hw entry */
1335static void mvpp2_prs_hw_inv(struct mvpp2 *priv, int index)
1336{
1337 /* Write index - indirect access */
1338 mvpp2_write(priv, MVPP2_PRS_TCAM_IDX_REG, index);
1339 mvpp2_write(priv, MVPP2_PRS_TCAM_DATA_REG(MVPP2_PRS_TCAM_INV_WORD),
1340 MVPP2_PRS_TCAM_INV_MASK);
1341}
1342
1343/* Enable shadow table entry and set its lookup ID */
1344static void mvpp2_prs_shadow_set(struct mvpp2 *priv, int index, int lu)
1345{
1346 priv->prs_shadow[index].valid = true;
1347 priv->prs_shadow[index].lu = lu;
1348}
1349
1350/* Update ri fields in shadow table entry */
1351static void mvpp2_prs_shadow_ri_set(struct mvpp2 *priv, int index,
1352 unsigned int ri, unsigned int ri_mask)
1353{
1354 priv->prs_shadow[index].ri_mask = ri_mask;
1355 priv->prs_shadow[index].ri = ri;
1356}
1357
1358/* Update lookup field in tcam sw entry */
1359static void mvpp2_prs_tcam_lu_set(struct mvpp2_prs_entry *pe, unsigned int lu)
1360{
1361 int enable_off = MVPP2_PRS_TCAM_EN_OFFS(MVPP2_PRS_TCAM_LU_BYTE);
1362
1363 pe->tcam.byte[MVPP2_PRS_TCAM_LU_BYTE] = lu;
1364 pe->tcam.byte[enable_off] = MVPP2_PRS_LU_MASK;
1365}
1366
1367/* Update mask for single port in tcam sw entry */
1368static void mvpp2_prs_tcam_port_set(struct mvpp2_prs_entry *pe,
1369 unsigned int port, bool add)
1370{
1371 int enable_off = MVPP2_PRS_TCAM_EN_OFFS(MVPP2_PRS_TCAM_PORT_BYTE);
1372
1373 if (add)
1374 pe->tcam.byte[enable_off] &= ~(1 << port);
1375 else
1376 pe->tcam.byte[enable_off] |= 1 << port;
1377}
1378
1379/* Update port map in tcam sw entry */
1380static void mvpp2_prs_tcam_port_map_set(struct mvpp2_prs_entry *pe,
1381 unsigned int ports)
1382{
1383 unsigned char port_mask = MVPP2_PRS_PORT_MASK;
1384 int enable_off = MVPP2_PRS_TCAM_EN_OFFS(MVPP2_PRS_TCAM_PORT_BYTE);
1385
1386 pe->tcam.byte[MVPP2_PRS_TCAM_PORT_BYTE] = 0;
1387 pe->tcam.byte[enable_off] &= ~port_mask;
1388 pe->tcam.byte[enable_off] |= ~ports & MVPP2_PRS_PORT_MASK;
1389}
1390
1391/* Obtain port map from tcam sw entry */
1392static unsigned int mvpp2_prs_tcam_port_map_get(struct mvpp2_prs_entry *pe)
1393{
1394 int enable_off = MVPP2_PRS_TCAM_EN_OFFS(MVPP2_PRS_TCAM_PORT_BYTE);
1395
1396 return ~(pe->tcam.byte[enable_off]) & MVPP2_PRS_PORT_MASK;
1397}
1398
1399/* Set byte of data and its enable bits in tcam sw entry */
1400static void mvpp2_prs_tcam_data_byte_set(struct mvpp2_prs_entry *pe,
1401 unsigned int offs, unsigned char byte,
1402 unsigned char enable)
1403{
1404 pe->tcam.byte[MVPP2_PRS_TCAM_DATA_BYTE(offs)] = byte;
1405 pe->tcam.byte[MVPP2_PRS_TCAM_DATA_BYTE_EN(offs)] = enable;
1406}
1407
1408/* Get byte of data and its enable bits from tcam sw entry */
1409static void mvpp2_prs_tcam_data_byte_get(struct mvpp2_prs_entry *pe,
1410 unsigned int offs, unsigned char *byte,
1411 unsigned char *enable)
1412{
1413 *byte = pe->tcam.byte[MVPP2_PRS_TCAM_DATA_BYTE(offs)];
1414 *enable = pe->tcam.byte[MVPP2_PRS_TCAM_DATA_BYTE_EN(offs)];
1415}
1416
1417/* Compare tcam data bytes with a pattern */
1418static bool mvpp2_prs_tcam_data_cmp(struct mvpp2_prs_entry *pe, int offs,
1419 u16 data)
1420{
1421 int off = MVPP2_PRS_TCAM_DATA_BYTE(offs);
1422 u16 tcam_data;
1423
1424 tcam_data = (8 << pe->tcam.byte[off + 1]) | pe->tcam.byte[off];
1425 if (tcam_data != data)
1426 return false;
1427 return true;
1428}
1429
1430/* Update ai bits in tcam sw entry */
1431static void mvpp2_prs_tcam_ai_update(struct mvpp2_prs_entry *pe,
1432 unsigned int bits, unsigned int enable)
1433{
1434 int i, ai_idx = MVPP2_PRS_TCAM_AI_BYTE;
1435
1436 for (i = 0; i < MVPP2_PRS_AI_BITS; i++) {
1437
1438 if (!(enable & BIT(i)))
1439 continue;
1440
1441 if (bits & BIT(i))
1442 pe->tcam.byte[ai_idx] |= 1 << i;
1443 else
1444 pe->tcam.byte[ai_idx] &= ~(1 << i);
1445 }
1446
1447 pe->tcam.byte[MVPP2_PRS_TCAM_EN_OFFS(ai_idx)] |= enable;
1448}
1449
1450/* Get ai bits from tcam sw entry */
1451static int mvpp2_prs_tcam_ai_get(struct mvpp2_prs_entry *pe)
1452{
1453 return pe->tcam.byte[MVPP2_PRS_TCAM_AI_BYTE];
1454}
1455
1456/* Set ethertype in tcam sw entry */
1457static void mvpp2_prs_match_etype(struct mvpp2_prs_entry *pe, int offset,
1458 unsigned short ethertype)
1459{
1460 mvpp2_prs_tcam_data_byte_set(pe, offset + 0, ethertype >> 8, 0xff);
1461 mvpp2_prs_tcam_data_byte_set(pe, offset + 1, ethertype & 0xff, 0xff);
1462}
1463
1464/* Set bits in sram sw entry */
1465static void mvpp2_prs_sram_bits_set(struct mvpp2_prs_entry *pe, int bit_num,
1466 int val)
1467{
1468 pe->sram.byte[MVPP2_BIT_TO_BYTE(bit_num)] |= (val << (bit_num % 8));
1469}
1470
1471/* Clear bits in sram sw entry */
1472static void mvpp2_prs_sram_bits_clear(struct mvpp2_prs_entry *pe, int bit_num,
1473 int val)
1474{
1475 pe->sram.byte[MVPP2_BIT_TO_BYTE(bit_num)] &= ~(val << (bit_num % 8));
1476}
1477
1478/* Update ri bits in sram sw entry */
1479static void mvpp2_prs_sram_ri_update(struct mvpp2_prs_entry *pe,
1480 unsigned int bits, unsigned int mask)
1481{
1482 unsigned int i;
1483
1484 for (i = 0; i < MVPP2_PRS_SRAM_RI_CTRL_BITS; i++) {
1485 int ri_off = MVPP2_PRS_SRAM_RI_OFFS;
1486
1487 if (!(mask & BIT(i)))
1488 continue;
1489
1490 if (bits & BIT(i))
1491 mvpp2_prs_sram_bits_set(pe, ri_off + i, 1);
1492 else
1493 mvpp2_prs_sram_bits_clear(pe, ri_off + i, 1);
1494
1495 mvpp2_prs_sram_bits_set(pe, MVPP2_PRS_SRAM_RI_CTRL_OFFS + i, 1);
1496 }
1497}
1498
1499/* Obtain ri bits from sram sw entry */
1500static int mvpp2_prs_sram_ri_get(struct mvpp2_prs_entry *pe)
1501{
1502 return pe->sram.word[MVPP2_PRS_SRAM_RI_WORD];
1503}
1504
1505/* Update ai bits in sram sw entry */
1506static void mvpp2_prs_sram_ai_update(struct mvpp2_prs_entry *pe,
1507 unsigned int bits, unsigned int mask)
1508{
1509 unsigned int i;
1510 int ai_off = MVPP2_PRS_SRAM_AI_OFFS;
1511
1512 for (i = 0; i < MVPP2_PRS_SRAM_AI_CTRL_BITS; i++) {
1513
1514 if (!(mask & BIT(i)))
1515 continue;
1516
1517 if (bits & BIT(i))
1518 mvpp2_prs_sram_bits_set(pe, ai_off + i, 1);
1519 else
1520 mvpp2_prs_sram_bits_clear(pe, ai_off + i, 1);
1521
1522 mvpp2_prs_sram_bits_set(pe, MVPP2_PRS_SRAM_AI_CTRL_OFFS + i, 1);
1523 }
1524}
1525
1526/* Read ai bits from sram sw entry */
1527static int mvpp2_prs_sram_ai_get(struct mvpp2_prs_entry *pe)
1528{
1529 u8 bits;
1530 int ai_off = MVPP2_BIT_TO_BYTE(MVPP2_PRS_SRAM_AI_OFFS);
1531 int ai_en_off = ai_off + 1;
1532 int ai_shift = MVPP2_PRS_SRAM_AI_OFFS % 8;
1533
1534 bits = (pe->sram.byte[ai_off] >> ai_shift) |
1535 (pe->sram.byte[ai_en_off] << (8 - ai_shift));
1536
1537 return bits;
1538}
1539
1540/* In sram sw entry set lookup ID field of the tcam key to be used in the next
1541 * lookup interation
1542 */
1543static void mvpp2_prs_sram_next_lu_set(struct mvpp2_prs_entry *pe,
1544 unsigned int lu)
1545{
1546 int sram_next_off = MVPP2_PRS_SRAM_NEXT_LU_OFFS;
1547
1548 mvpp2_prs_sram_bits_clear(pe, sram_next_off,
1549 MVPP2_PRS_SRAM_NEXT_LU_MASK);
1550 mvpp2_prs_sram_bits_set(pe, sram_next_off, lu);
1551}
1552
1553/* In the sram sw entry set sign and value of the next lookup offset
1554 * and the offset value generated to the classifier
1555 */
1556static void mvpp2_prs_sram_shift_set(struct mvpp2_prs_entry *pe, int shift,
1557 unsigned int op)
1558{
1559 /* Set sign */
1560 if (shift < 0) {
1561 mvpp2_prs_sram_bits_set(pe, MVPP2_PRS_SRAM_SHIFT_SIGN_BIT, 1);
1562 shift = 0 - shift;
1563 } else {
1564 mvpp2_prs_sram_bits_clear(pe, MVPP2_PRS_SRAM_SHIFT_SIGN_BIT, 1);
1565 }
1566
1567 /* Set value */
1568 pe->sram.byte[MVPP2_BIT_TO_BYTE(MVPP2_PRS_SRAM_SHIFT_OFFS)] =
1569 (unsigned char)shift;
1570
1571 /* Reset and set operation */
1572 mvpp2_prs_sram_bits_clear(pe, MVPP2_PRS_SRAM_OP_SEL_SHIFT_OFFS,
1573 MVPP2_PRS_SRAM_OP_SEL_SHIFT_MASK);
1574 mvpp2_prs_sram_bits_set(pe, MVPP2_PRS_SRAM_OP_SEL_SHIFT_OFFS, op);
1575
1576 /* Set base offset as current */
1577 mvpp2_prs_sram_bits_clear(pe, MVPP2_PRS_SRAM_OP_SEL_BASE_OFFS, 1);
1578}
1579
1580/* In the sram sw entry set sign and value of the user defined offset
1581 * generated to the classifier
1582 */
1583static void mvpp2_prs_sram_offset_set(struct mvpp2_prs_entry *pe,
1584 unsigned int type, int offset,
1585 unsigned int op)
1586{
1587 /* Set sign */
1588 if (offset < 0) {
1589 mvpp2_prs_sram_bits_set(pe, MVPP2_PRS_SRAM_UDF_SIGN_BIT, 1);
1590 offset = 0 - offset;
1591 } else {
1592 mvpp2_prs_sram_bits_clear(pe, MVPP2_PRS_SRAM_UDF_SIGN_BIT, 1);
1593 }
1594
1595 /* Set value */
1596 mvpp2_prs_sram_bits_clear(pe, MVPP2_PRS_SRAM_UDF_OFFS,
1597 MVPP2_PRS_SRAM_UDF_MASK);
1598 mvpp2_prs_sram_bits_set(pe, MVPP2_PRS_SRAM_UDF_OFFS, offset);
1599 pe->sram.byte[MVPP2_BIT_TO_BYTE(MVPP2_PRS_SRAM_UDF_OFFS +
1600 MVPP2_PRS_SRAM_UDF_BITS)] &=
1601 ~(MVPP2_PRS_SRAM_UDF_MASK >> (8 - (MVPP2_PRS_SRAM_UDF_OFFS % 8)));
1602 pe->sram.byte[MVPP2_BIT_TO_BYTE(MVPP2_PRS_SRAM_UDF_OFFS +
1603 MVPP2_PRS_SRAM_UDF_BITS)] |=
1604 (offset >> (8 - (MVPP2_PRS_SRAM_UDF_OFFS % 8)));
1605
1606 /* Set offset type */
1607 mvpp2_prs_sram_bits_clear(pe, MVPP2_PRS_SRAM_UDF_TYPE_OFFS,
1608 MVPP2_PRS_SRAM_UDF_TYPE_MASK);
1609 mvpp2_prs_sram_bits_set(pe, MVPP2_PRS_SRAM_UDF_TYPE_OFFS, type);
1610
1611 /* Set offset operation */
1612 mvpp2_prs_sram_bits_clear(pe, MVPP2_PRS_SRAM_OP_SEL_UDF_OFFS,
1613 MVPP2_PRS_SRAM_OP_SEL_UDF_MASK);
1614 mvpp2_prs_sram_bits_set(pe, MVPP2_PRS_SRAM_OP_SEL_UDF_OFFS, op);
1615
1616 pe->sram.byte[MVPP2_BIT_TO_BYTE(MVPP2_PRS_SRAM_OP_SEL_UDF_OFFS +
1617 MVPP2_PRS_SRAM_OP_SEL_UDF_BITS)] &=
1618 ~(MVPP2_PRS_SRAM_OP_SEL_UDF_MASK >>
1619 (8 - (MVPP2_PRS_SRAM_OP_SEL_UDF_OFFS % 8)));
1620
1621 pe->sram.byte[MVPP2_BIT_TO_BYTE(MVPP2_PRS_SRAM_OP_SEL_UDF_OFFS +
1622 MVPP2_PRS_SRAM_OP_SEL_UDF_BITS)] |=
1623 (op >> (8 - (MVPP2_PRS_SRAM_OP_SEL_UDF_OFFS % 8)));
1624
1625 /* Set base offset as current */
1626 mvpp2_prs_sram_bits_clear(pe, MVPP2_PRS_SRAM_OP_SEL_BASE_OFFS, 1);
1627}
1628
1629/* Find parser flow entry */
1630static struct mvpp2_prs_entry *mvpp2_prs_flow_find(struct mvpp2 *priv, int flow)
1631{
1632 struct mvpp2_prs_entry *pe;
1633 int tid;
1634
1635 pe = kzalloc(sizeof(*pe), GFP_KERNEL);
1636 if (!pe)
1637 return NULL;
1638 mvpp2_prs_tcam_lu_set(pe, MVPP2_PRS_LU_FLOWS);
1639
1640 /* Go through the all entires with MVPP2_PRS_LU_FLOWS */
1641 for (tid = MVPP2_PRS_TCAM_SRAM_SIZE - 1; tid >= 0; tid--) {
1642 u8 bits;
1643
1644 if (!priv->prs_shadow[tid].valid ||
1645 priv->prs_shadow[tid].lu != MVPP2_PRS_LU_FLOWS)
1646 continue;
1647
1648 pe->index = tid;
1649 mvpp2_prs_hw_read(priv, pe);
1650 bits = mvpp2_prs_sram_ai_get(pe);
1651
1652 /* Sram store classification lookup ID in AI bits [5:0] */
1653 if ((bits & MVPP2_PRS_FLOW_ID_MASK) == flow)
1654 return pe;
1655 }
1656 kfree(pe);
1657
1658 return NULL;
1659}
1660
1661/* Return first free tcam index, seeking from start to end */
1662static int mvpp2_prs_tcam_first_free(struct mvpp2 *priv, unsigned char start,
1663 unsigned char end)
1664{
1665 int tid;
1666
1667 if (start > end)
1668 swap(start, end);
1669
1670 if (end >= MVPP2_PRS_TCAM_SRAM_SIZE)
1671 end = MVPP2_PRS_TCAM_SRAM_SIZE - 1;
1672
1673 for (tid = start; tid <= end; tid++) {
1674 if (!priv->prs_shadow[tid].valid)
1675 return tid;
1676 }
1677
1678 return -EINVAL;
1679}
1680
1681/* Enable/disable dropping all mac da's */
1682static void mvpp2_prs_mac_drop_all_set(struct mvpp2 *priv, int port, bool add)
1683{
1684 struct mvpp2_prs_entry pe;
1685
1686 if (priv->prs_shadow[MVPP2_PE_DROP_ALL].valid) {
1687 /* Entry exist - update port only */
1688 pe.index = MVPP2_PE_DROP_ALL;
1689 mvpp2_prs_hw_read(priv, &pe);
1690 } else {
1691 /* Entry doesn't exist - create new */
Markus Elfringc5b2ce22017-04-17 10:30:29 +02001692 memset(&pe, 0, sizeof(pe));
Marcin Wojtas3f518502014-07-10 16:52:13 -03001693 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_MAC);
1694 pe.index = MVPP2_PE_DROP_ALL;
1695
1696 /* Non-promiscuous mode for all ports - DROP unknown packets */
1697 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_DROP_MASK,
1698 MVPP2_PRS_RI_DROP_MASK);
1699
1700 mvpp2_prs_sram_bits_set(&pe, MVPP2_PRS_SRAM_LU_GEN_BIT, 1);
1701 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_FLOWS);
1702
1703 /* Update shadow table */
1704 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_MAC);
1705
1706 /* Mask all ports */
1707 mvpp2_prs_tcam_port_map_set(&pe, 0);
1708 }
1709
1710 /* Update port mask */
1711 mvpp2_prs_tcam_port_set(&pe, port, add);
1712
1713 mvpp2_prs_hw_write(priv, &pe);
1714}
1715
1716/* Set port to promiscuous mode */
1717static void mvpp2_prs_mac_promisc_set(struct mvpp2 *priv, int port, bool add)
1718{
1719 struct mvpp2_prs_entry pe;
1720
Joe Perchesdbedd442015-03-06 20:49:12 -08001721 /* Promiscuous mode - Accept unknown packets */
Marcin Wojtas3f518502014-07-10 16:52:13 -03001722
1723 if (priv->prs_shadow[MVPP2_PE_MAC_PROMISCUOUS].valid) {
1724 /* Entry exist - update port only */
1725 pe.index = MVPP2_PE_MAC_PROMISCUOUS;
1726 mvpp2_prs_hw_read(priv, &pe);
1727 } else {
1728 /* Entry doesn't exist - create new */
Markus Elfringc5b2ce22017-04-17 10:30:29 +02001729 memset(&pe, 0, sizeof(pe));
Marcin Wojtas3f518502014-07-10 16:52:13 -03001730 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_MAC);
1731 pe.index = MVPP2_PE_MAC_PROMISCUOUS;
1732
1733 /* Continue - set next lookup */
1734 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_DSA);
1735
1736 /* Set result info bits */
1737 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L2_UCAST,
1738 MVPP2_PRS_RI_L2_CAST_MASK);
1739
1740 /* Shift to ethertype */
1741 mvpp2_prs_sram_shift_set(&pe, 2 * ETH_ALEN,
1742 MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
1743
1744 /* Mask all ports */
1745 mvpp2_prs_tcam_port_map_set(&pe, 0);
1746
1747 /* Update shadow table */
1748 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_MAC);
1749 }
1750
1751 /* Update port mask */
1752 mvpp2_prs_tcam_port_set(&pe, port, add);
1753
1754 mvpp2_prs_hw_write(priv, &pe);
1755}
1756
1757/* Accept multicast */
1758static void mvpp2_prs_mac_multi_set(struct mvpp2 *priv, int port, int index,
1759 bool add)
1760{
1761 struct mvpp2_prs_entry pe;
1762 unsigned char da_mc;
1763
1764 /* Ethernet multicast address first byte is
1765 * 0x01 for IPv4 and 0x33 for IPv6
1766 */
1767 da_mc = (index == MVPP2_PE_MAC_MC_ALL) ? 0x01 : 0x33;
1768
1769 if (priv->prs_shadow[index].valid) {
1770 /* Entry exist - update port only */
1771 pe.index = index;
1772 mvpp2_prs_hw_read(priv, &pe);
1773 } else {
1774 /* Entry doesn't exist - create new */
Markus Elfringc5b2ce22017-04-17 10:30:29 +02001775 memset(&pe, 0, sizeof(pe));
Marcin Wojtas3f518502014-07-10 16:52:13 -03001776 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_MAC);
1777 pe.index = index;
1778
1779 /* Continue - set next lookup */
1780 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_DSA);
1781
1782 /* Set result info bits */
1783 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L2_MCAST,
1784 MVPP2_PRS_RI_L2_CAST_MASK);
1785
1786 /* Update tcam entry data first byte */
1787 mvpp2_prs_tcam_data_byte_set(&pe, 0, da_mc, 0xff);
1788
1789 /* Shift to ethertype */
1790 mvpp2_prs_sram_shift_set(&pe, 2 * ETH_ALEN,
1791 MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
1792
1793 /* Mask all ports */
1794 mvpp2_prs_tcam_port_map_set(&pe, 0);
1795
1796 /* Update shadow table */
1797 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_MAC);
1798 }
1799
1800 /* Update port mask */
1801 mvpp2_prs_tcam_port_set(&pe, port, add);
1802
1803 mvpp2_prs_hw_write(priv, &pe);
1804}
1805
1806/* Set entry for dsa packets */
1807static void mvpp2_prs_dsa_tag_set(struct mvpp2 *priv, int port, bool add,
1808 bool tagged, bool extend)
1809{
1810 struct mvpp2_prs_entry pe;
1811 int tid, shift;
1812
1813 if (extend) {
1814 tid = tagged ? MVPP2_PE_EDSA_TAGGED : MVPP2_PE_EDSA_UNTAGGED;
1815 shift = 8;
1816 } else {
1817 tid = tagged ? MVPP2_PE_DSA_TAGGED : MVPP2_PE_DSA_UNTAGGED;
1818 shift = 4;
1819 }
1820
1821 if (priv->prs_shadow[tid].valid) {
1822 /* Entry exist - update port only */
1823 pe.index = tid;
1824 mvpp2_prs_hw_read(priv, &pe);
1825 } else {
1826 /* Entry doesn't exist - create new */
Markus Elfringc5b2ce22017-04-17 10:30:29 +02001827 memset(&pe, 0, sizeof(pe));
Marcin Wojtas3f518502014-07-10 16:52:13 -03001828 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_DSA);
1829 pe.index = tid;
1830
1831 /* Shift 4 bytes if DSA tag or 8 bytes in case of EDSA tag*/
1832 mvpp2_prs_sram_shift_set(&pe, shift,
1833 MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
1834
1835 /* Update shadow table */
1836 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_DSA);
1837
1838 if (tagged) {
1839 /* Set tagged bit in DSA tag */
1840 mvpp2_prs_tcam_data_byte_set(&pe, 0,
1841 MVPP2_PRS_TCAM_DSA_TAGGED_BIT,
1842 MVPP2_PRS_TCAM_DSA_TAGGED_BIT);
1843 /* Clear all ai bits for next iteration */
1844 mvpp2_prs_sram_ai_update(&pe, 0,
1845 MVPP2_PRS_SRAM_AI_MASK);
1846 /* If packet is tagged continue check vlans */
1847 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_VLAN);
1848 } else {
1849 /* Set result info bits to 'no vlans' */
1850 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_VLAN_NONE,
1851 MVPP2_PRS_RI_VLAN_MASK);
1852 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_L2);
1853 }
1854
1855 /* Mask all ports */
1856 mvpp2_prs_tcam_port_map_set(&pe, 0);
1857 }
1858
1859 /* Update port mask */
1860 mvpp2_prs_tcam_port_set(&pe, port, add);
1861
1862 mvpp2_prs_hw_write(priv, &pe);
1863}
1864
1865/* Set entry for dsa ethertype */
1866static void mvpp2_prs_dsa_tag_ethertype_set(struct mvpp2 *priv, int port,
1867 bool add, bool tagged, bool extend)
1868{
1869 struct mvpp2_prs_entry pe;
1870 int tid, shift, port_mask;
1871
1872 if (extend) {
1873 tid = tagged ? MVPP2_PE_ETYPE_EDSA_TAGGED :
1874 MVPP2_PE_ETYPE_EDSA_UNTAGGED;
1875 port_mask = 0;
1876 shift = 8;
1877 } else {
1878 tid = tagged ? MVPP2_PE_ETYPE_DSA_TAGGED :
1879 MVPP2_PE_ETYPE_DSA_UNTAGGED;
1880 port_mask = MVPP2_PRS_PORT_MASK;
1881 shift = 4;
1882 }
1883
1884 if (priv->prs_shadow[tid].valid) {
1885 /* Entry exist - update port only */
1886 pe.index = tid;
1887 mvpp2_prs_hw_read(priv, &pe);
1888 } else {
1889 /* Entry doesn't exist - create new */
Markus Elfringc5b2ce22017-04-17 10:30:29 +02001890 memset(&pe, 0, sizeof(pe));
Marcin Wojtas3f518502014-07-10 16:52:13 -03001891 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_DSA);
1892 pe.index = tid;
1893
1894 /* Set ethertype */
1895 mvpp2_prs_match_etype(&pe, 0, ETH_P_EDSA);
1896 mvpp2_prs_match_etype(&pe, 2, 0);
1897
1898 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_DSA_MASK,
1899 MVPP2_PRS_RI_DSA_MASK);
1900 /* Shift ethertype + 2 byte reserved + tag*/
1901 mvpp2_prs_sram_shift_set(&pe, 2 + MVPP2_ETH_TYPE_LEN + shift,
1902 MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
1903
1904 /* Update shadow table */
1905 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_DSA);
1906
1907 if (tagged) {
1908 /* Set tagged bit in DSA tag */
1909 mvpp2_prs_tcam_data_byte_set(&pe,
1910 MVPP2_ETH_TYPE_LEN + 2 + 3,
1911 MVPP2_PRS_TCAM_DSA_TAGGED_BIT,
1912 MVPP2_PRS_TCAM_DSA_TAGGED_BIT);
1913 /* Clear all ai bits for next iteration */
1914 mvpp2_prs_sram_ai_update(&pe, 0,
1915 MVPP2_PRS_SRAM_AI_MASK);
1916 /* If packet is tagged continue check vlans */
1917 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_VLAN);
1918 } else {
1919 /* Set result info bits to 'no vlans' */
1920 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_VLAN_NONE,
1921 MVPP2_PRS_RI_VLAN_MASK);
1922 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_L2);
1923 }
1924 /* Mask/unmask all ports, depending on dsa type */
1925 mvpp2_prs_tcam_port_map_set(&pe, port_mask);
1926 }
1927
1928 /* Update port mask */
1929 mvpp2_prs_tcam_port_set(&pe, port, add);
1930
1931 mvpp2_prs_hw_write(priv, &pe);
1932}
1933
1934/* Search for existing single/triple vlan entry */
1935static struct mvpp2_prs_entry *mvpp2_prs_vlan_find(struct mvpp2 *priv,
1936 unsigned short tpid, int ai)
1937{
1938 struct mvpp2_prs_entry *pe;
1939 int tid;
1940
1941 pe = kzalloc(sizeof(*pe), GFP_KERNEL);
1942 if (!pe)
1943 return NULL;
1944 mvpp2_prs_tcam_lu_set(pe, MVPP2_PRS_LU_VLAN);
1945
1946 /* Go through the all entries with MVPP2_PRS_LU_VLAN */
1947 for (tid = MVPP2_PE_FIRST_FREE_TID;
1948 tid <= MVPP2_PE_LAST_FREE_TID; tid++) {
1949 unsigned int ri_bits, ai_bits;
1950 bool match;
1951
1952 if (!priv->prs_shadow[tid].valid ||
1953 priv->prs_shadow[tid].lu != MVPP2_PRS_LU_VLAN)
1954 continue;
1955
1956 pe->index = tid;
1957
1958 mvpp2_prs_hw_read(priv, pe);
1959 match = mvpp2_prs_tcam_data_cmp(pe, 0, swab16(tpid));
1960 if (!match)
1961 continue;
1962
1963 /* Get vlan type */
1964 ri_bits = mvpp2_prs_sram_ri_get(pe);
1965 ri_bits &= MVPP2_PRS_RI_VLAN_MASK;
1966
1967 /* Get current ai value from tcam */
1968 ai_bits = mvpp2_prs_tcam_ai_get(pe);
1969 /* Clear double vlan bit */
1970 ai_bits &= ~MVPP2_PRS_DBL_VLAN_AI_BIT;
1971
1972 if (ai != ai_bits)
1973 continue;
1974
1975 if (ri_bits == MVPP2_PRS_RI_VLAN_SINGLE ||
1976 ri_bits == MVPP2_PRS_RI_VLAN_TRIPLE)
1977 return pe;
1978 }
1979 kfree(pe);
1980
1981 return NULL;
1982}
1983
1984/* Add/update single/triple vlan entry */
1985static int mvpp2_prs_vlan_add(struct mvpp2 *priv, unsigned short tpid, int ai,
1986 unsigned int port_map)
1987{
1988 struct mvpp2_prs_entry *pe;
1989 int tid_aux, tid;
Sudip Mukherjee43737472014-11-01 16:59:34 +05301990 int ret = 0;
Marcin Wojtas3f518502014-07-10 16:52:13 -03001991
1992 pe = mvpp2_prs_vlan_find(priv, tpid, ai);
1993
1994 if (!pe) {
1995 /* Create new tcam entry */
1996 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_LAST_FREE_TID,
1997 MVPP2_PE_FIRST_FREE_TID);
1998 if (tid < 0)
1999 return tid;
2000
2001 pe = kzalloc(sizeof(*pe), GFP_KERNEL);
2002 if (!pe)
2003 return -ENOMEM;
2004
2005 /* Get last double vlan tid */
2006 for (tid_aux = MVPP2_PE_LAST_FREE_TID;
2007 tid_aux >= MVPP2_PE_FIRST_FREE_TID; tid_aux--) {
2008 unsigned int ri_bits;
2009
2010 if (!priv->prs_shadow[tid_aux].valid ||
2011 priv->prs_shadow[tid_aux].lu != MVPP2_PRS_LU_VLAN)
2012 continue;
2013
2014 pe->index = tid_aux;
2015 mvpp2_prs_hw_read(priv, pe);
2016 ri_bits = mvpp2_prs_sram_ri_get(pe);
2017 if ((ri_bits & MVPP2_PRS_RI_VLAN_MASK) ==
2018 MVPP2_PRS_RI_VLAN_DOUBLE)
2019 break;
2020 }
2021
Sudip Mukherjee43737472014-11-01 16:59:34 +05302022 if (tid <= tid_aux) {
2023 ret = -EINVAL;
Markus Elfringf9fd0e32017-04-17 13:50:35 +02002024 goto free_pe;
Sudip Mukherjee43737472014-11-01 16:59:34 +05302025 }
Marcin Wojtas3f518502014-07-10 16:52:13 -03002026
Markus Elfringbd6aaf52017-04-17 10:40:32 +02002027 memset(pe, 0, sizeof(*pe));
Marcin Wojtas3f518502014-07-10 16:52:13 -03002028 mvpp2_prs_tcam_lu_set(pe, MVPP2_PRS_LU_VLAN);
2029 pe->index = tid;
2030
2031 mvpp2_prs_match_etype(pe, 0, tpid);
2032
2033 mvpp2_prs_sram_next_lu_set(pe, MVPP2_PRS_LU_L2);
2034 /* Shift 4 bytes - skip 1 vlan tag */
2035 mvpp2_prs_sram_shift_set(pe, MVPP2_VLAN_TAG_LEN,
2036 MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
2037 /* Clear all ai bits for next iteration */
2038 mvpp2_prs_sram_ai_update(pe, 0, MVPP2_PRS_SRAM_AI_MASK);
2039
2040 if (ai == MVPP2_PRS_SINGLE_VLAN_AI) {
2041 mvpp2_prs_sram_ri_update(pe, MVPP2_PRS_RI_VLAN_SINGLE,
2042 MVPP2_PRS_RI_VLAN_MASK);
2043 } else {
2044 ai |= MVPP2_PRS_DBL_VLAN_AI_BIT;
2045 mvpp2_prs_sram_ri_update(pe, MVPP2_PRS_RI_VLAN_TRIPLE,
2046 MVPP2_PRS_RI_VLAN_MASK);
2047 }
2048 mvpp2_prs_tcam_ai_update(pe, ai, MVPP2_PRS_SRAM_AI_MASK);
2049
2050 mvpp2_prs_shadow_set(priv, pe->index, MVPP2_PRS_LU_VLAN);
2051 }
2052 /* Update ports' mask */
2053 mvpp2_prs_tcam_port_map_set(pe, port_map);
2054
2055 mvpp2_prs_hw_write(priv, pe);
Markus Elfringf9fd0e32017-04-17 13:50:35 +02002056free_pe:
Marcin Wojtas3f518502014-07-10 16:52:13 -03002057 kfree(pe);
2058
Sudip Mukherjee43737472014-11-01 16:59:34 +05302059 return ret;
Marcin Wojtas3f518502014-07-10 16:52:13 -03002060}
2061
2062/* Get first free double vlan ai number */
2063static int mvpp2_prs_double_vlan_ai_free_get(struct mvpp2 *priv)
2064{
2065 int i;
2066
2067 for (i = 1; i < MVPP2_PRS_DBL_VLANS_MAX; i++) {
2068 if (!priv->prs_double_vlans[i])
2069 return i;
2070 }
2071
2072 return -EINVAL;
2073}
2074
2075/* Search for existing double vlan entry */
2076static struct mvpp2_prs_entry *mvpp2_prs_double_vlan_find(struct mvpp2 *priv,
2077 unsigned short tpid1,
2078 unsigned short tpid2)
2079{
2080 struct mvpp2_prs_entry *pe;
2081 int tid;
2082
2083 pe = kzalloc(sizeof(*pe), GFP_KERNEL);
2084 if (!pe)
2085 return NULL;
2086 mvpp2_prs_tcam_lu_set(pe, MVPP2_PRS_LU_VLAN);
2087
2088 /* Go through the all entries with MVPP2_PRS_LU_VLAN */
2089 for (tid = MVPP2_PE_FIRST_FREE_TID;
2090 tid <= MVPP2_PE_LAST_FREE_TID; tid++) {
2091 unsigned int ri_mask;
2092 bool match;
2093
2094 if (!priv->prs_shadow[tid].valid ||
2095 priv->prs_shadow[tid].lu != MVPP2_PRS_LU_VLAN)
2096 continue;
2097
2098 pe->index = tid;
2099 mvpp2_prs_hw_read(priv, pe);
2100
2101 match = mvpp2_prs_tcam_data_cmp(pe, 0, swab16(tpid1))
2102 && mvpp2_prs_tcam_data_cmp(pe, 4, swab16(tpid2));
2103
2104 if (!match)
2105 continue;
2106
2107 ri_mask = mvpp2_prs_sram_ri_get(pe) & MVPP2_PRS_RI_VLAN_MASK;
2108 if (ri_mask == MVPP2_PRS_RI_VLAN_DOUBLE)
2109 return pe;
2110 }
2111 kfree(pe);
2112
2113 return NULL;
2114}
2115
2116/* Add or update double vlan entry */
2117static int mvpp2_prs_double_vlan_add(struct mvpp2 *priv, unsigned short tpid1,
2118 unsigned short tpid2,
2119 unsigned int port_map)
2120{
2121 struct mvpp2_prs_entry *pe;
Sudip Mukherjee43737472014-11-01 16:59:34 +05302122 int tid_aux, tid, ai, ret = 0;
Marcin Wojtas3f518502014-07-10 16:52:13 -03002123
2124 pe = mvpp2_prs_double_vlan_find(priv, tpid1, tpid2);
2125
2126 if (!pe) {
2127 /* Create new tcam entry */
2128 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
2129 MVPP2_PE_LAST_FREE_TID);
2130 if (tid < 0)
2131 return tid;
2132
2133 pe = kzalloc(sizeof(*pe), GFP_KERNEL);
2134 if (!pe)
2135 return -ENOMEM;
2136
2137 /* Set ai value for new double vlan entry */
2138 ai = mvpp2_prs_double_vlan_ai_free_get(priv);
Sudip Mukherjee43737472014-11-01 16:59:34 +05302139 if (ai < 0) {
2140 ret = ai;
Markus Elfringc9a7e122017-04-17 13:03:49 +02002141 goto free_pe;
Sudip Mukherjee43737472014-11-01 16:59:34 +05302142 }
Marcin Wojtas3f518502014-07-10 16:52:13 -03002143
2144 /* Get first single/triple vlan tid */
2145 for (tid_aux = MVPP2_PE_FIRST_FREE_TID;
2146 tid_aux <= MVPP2_PE_LAST_FREE_TID; tid_aux++) {
2147 unsigned int ri_bits;
2148
2149 if (!priv->prs_shadow[tid_aux].valid ||
2150 priv->prs_shadow[tid_aux].lu != MVPP2_PRS_LU_VLAN)
2151 continue;
2152
2153 pe->index = tid_aux;
2154 mvpp2_prs_hw_read(priv, pe);
2155 ri_bits = mvpp2_prs_sram_ri_get(pe);
2156 ri_bits &= MVPP2_PRS_RI_VLAN_MASK;
2157 if (ri_bits == MVPP2_PRS_RI_VLAN_SINGLE ||
2158 ri_bits == MVPP2_PRS_RI_VLAN_TRIPLE)
2159 break;
2160 }
2161
Sudip Mukherjee43737472014-11-01 16:59:34 +05302162 if (tid >= tid_aux) {
2163 ret = -ERANGE;
Markus Elfringc9a7e122017-04-17 13:03:49 +02002164 goto free_pe;
Sudip Mukherjee43737472014-11-01 16:59:34 +05302165 }
Marcin Wojtas3f518502014-07-10 16:52:13 -03002166
Markus Elfringbd6aaf52017-04-17 10:40:32 +02002167 memset(pe, 0, sizeof(*pe));
Marcin Wojtas3f518502014-07-10 16:52:13 -03002168 mvpp2_prs_tcam_lu_set(pe, MVPP2_PRS_LU_VLAN);
2169 pe->index = tid;
2170
2171 priv->prs_double_vlans[ai] = true;
2172
2173 mvpp2_prs_match_etype(pe, 0, tpid1);
2174 mvpp2_prs_match_etype(pe, 4, tpid2);
2175
2176 mvpp2_prs_sram_next_lu_set(pe, MVPP2_PRS_LU_VLAN);
2177 /* Shift 8 bytes - skip 2 vlan tags */
2178 mvpp2_prs_sram_shift_set(pe, 2 * MVPP2_VLAN_TAG_LEN,
2179 MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
2180 mvpp2_prs_sram_ri_update(pe, MVPP2_PRS_RI_VLAN_DOUBLE,
2181 MVPP2_PRS_RI_VLAN_MASK);
2182 mvpp2_prs_sram_ai_update(pe, ai | MVPP2_PRS_DBL_VLAN_AI_BIT,
2183 MVPP2_PRS_SRAM_AI_MASK);
2184
2185 mvpp2_prs_shadow_set(priv, pe->index, MVPP2_PRS_LU_VLAN);
2186 }
2187
2188 /* Update ports' mask */
2189 mvpp2_prs_tcam_port_map_set(pe, port_map);
2190 mvpp2_prs_hw_write(priv, pe);
Markus Elfringc9a7e122017-04-17 13:03:49 +02002191free_pe:
Marcin Wojtas3f518502014-07-10 16:52:13 -03002192 kfree(pe);
Sudip Mukherjee43737472014-11-01 16:59:34 +05302193 return ret;
Marcin Wojtas3f518502014-07-10 16:52:13 -03002194}
2195
2196/* IPv4 header parsing for fragmentation and L4 offset */
2197static int mvpp2_prs_ip4_proto(struct mvpp2 *priv, unsigned short proto,
2198 unsigned int ri, unsigned int ri_mask)
2199{
2200 struct mvpp2_prs_entry pe;
2201 int tid;
2202
2203 if ((proto != IPPROTO_TCP) && (proto != IPPROTO_UDP) &&
2204 (proto != IPPROTO_IGMP))
2205 return -EINVAL;
2206
2207 /* Fragmented packet */
2208 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
2209 MVPP2_PE_LAST_FREE_TID);
2210 if (tid < 0)
2211 return tid;
2212
Markus Elfringc5b2ce22017-04-17 10:30:29 +02002213 memset(&pe, 0, sizeof(pe));
Marcin Wojtas3f518502014-07-10 16:52:13 -03002214 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_IP4);
2215 pe.index = tid;
2216
2217 /* Set next lu to IPv4 */
2218 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_IP4);
2219 mvpp2_prs_sram_shift_set(&pe, 12, MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
2220 /* Set L4 offset */
2221 mvpp2_prs_sram_offset_set(&pe, MVPP2_PRS_SRAM_UDF_TYPE_L4,
2222 sizeof(struct iphdr) - 4,
2223 MVPP2_PRS_SRAM_OP_SEL_UDF_ADD);
2224 mvpp2_prs_sram_ai_update(&pe, MVPP2_PRS_IPV4_DIP_AI_BIT,
2225 MVPP2_PRS_IPV4_DIP_AI_BIT);
2226 mvpp2_prs_sram_ri_update(&pe, ri | MVPP2_PRS_RI_IP_FRAG_MASK,
2227 ri_mask | MVPP2_PRS_RI_IP_FRAG_MASK);
2228
2229 mvpp2_prs_tcam_data_byte_set(&pe, 5, proto, MVPP2_PRS_TCAM_PROTO_MASK);
2230 mvpp2_prs_tcam_ai_update(&pe, 0, MVPP2_PRS_IPV4_DIP_AI_BIT);
2231 /* Unmask all ports */
2232 mvpp2_prs_tcam_port_map_set(&pe, MVPP2_PRS_PORT_MASK);
2233
2234 /* Update shadow table and hw entry */
2235 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_IP4);
2236 mvpp2_prs_hw_write(priv, &pe);
2237
2238 /* Not fragmented packet */
2239 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
2240 MVPP2_PE_LAST_FREE_TID);
2241 if (tid < 0)
2242 return tid;
2243
2244 pe.index = tid;
2245 /* Clear ri before updating */
2246 pe.sram.word[MVPP2_PRS_SRAM_RI_WORD] = 0x0;
2247 pe.sram.word[MVPP2_PRS_SRAM_RI_CTRL_WORD] = 0x0;
2248 mvpp2_prs_sram_ri_update(&pe, ri, ri_mask);
2249
2250 mvpp2_prs_tcam_data_byte_set(&pe, 2, 0x00, MVPP2_PRS_TCAM_PROTO_MASK_L);
2251 mvpp2_prs_tcam_data_byte_set(&pe, 3, 0x00, MVPP2_PRS_TCAM_PROTO_MASK);
2252
2253 /* Update shadow table and hw entry */
2254 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_IP4);
2255 mvpp2_prs_hw_write(priv, &pe);
2256
2257 return 0;
2258}
2259
2260/* IPv4 L3 multicast or broadcast */
2261static int mvpp2_prs_ip4_cast(struct mvpp2 *priv, unsigned short l3_cast)
2262{
2263 struct mvpp2_prs_entry pe;
2264 int mask, tid;
2265
2266 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
2267 MVPP2_PE_LAST_FREE_TID);
2268 if (tid < 0)
2269 return tid;
2270
Markus Elfringc5b2ce22017-04-17 10:30:29 +02002271 memset(&pe, 0, sizeof(pe));
Marcin Wojtas3f518502014-07-10 16:52:13 -03002272 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_IP4);
2273 pe.index = tid;
2274
2275 switch (l3_cast) {
2276 case MVPP2_PRS_L3_MULTI_CAST:
2277 mvpp2_prs_tcam_data_byte_set(&pe, 0, MVPP2_PRS_IPV4_MC,
2278 MVPP2_PRS_IPV4_MC_MASK);
2279 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L3_MCAST,
2280 MVPP2_PRS_RI_L3_ADDR_MASK);
2281 break;
2282 case MVPP2_PRS_L3_BROAD_CAST:
2283 mask = MVPP2_PRS_IPV4_BC_MASK;
2284 mvpp2_prs_tcam_data_byte_set(&pe, 0, mask, mask);
2285 mvpp2_prs_tcam_data_byte_set(&pe, 1, mask, mask);
2286 mvpp2_prs_tcam_data_byte_set(&pe, 2, mask, mask);
2287 mvpp2_prs_tcam_data_byte_set(&pe, 3, mask, mask);
2288 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L3_BCAST,
2289 MVPP2_PRS_RI_L3_ADDR_MASK);
2290 break;
2291 default:
2292 return -EINVAL;
2293 }
2294
2295 /* Finished: go to flowid generation */
2296 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_FLOWS);
2297 mvpp2_prs_sram_bits_set(&pe, MVPP2_PRS_SRAM_LU_GEN_BIT, 1);
2298
2299 mvpp2_prs_tcam_ai_update(&pe, MVPP2_PRS_IPV4_DIP_AI_BIT,
2300 MVPP2_PRS_IPV4_DIP_AI_BIT);
2301 /* Unmask all ports */
2302 mvpp2_prs_tcam_port_map_set(&pe, MVPP2_PRS_PORT_MASK);
2303
2304 /* Update shadow table and hw entry */
2305 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_IP4);
2306 mvpp2_prs_hw_write(priv, &pe);
2307
2308 return 0;
2309}
2310
2311/* Set entries for protocols over IPv6 */
2312static int mvpp2_prs_ip6_proto(struct mvpp2 *priv, unsigned short proto,
2313 unsigned int ri, unsigned int ri_mask)
2314{
2315 struct mvpp2_prs_entry pe;
2316 int tid;
2317
2318 if ((proto != IPPROTO_TCP) && (proto != IPPROTO_UDP) &&
2319 (proto != IPPROTO_ICMPV6) && (proto != IPPROTO_IPIP))
2320 return -EINVAL;
2321
2322 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
2323 MVPP2_PE_LAST_FREE_TID);
2324 if (tid < 0)
2325 return tid;
2326
Markus Elfringc5b2ce22017-04-17 10:30:29 +02002327 memset(&pe, 0, sizeof(pe));
Marcin Wojtas3f518502014-07-10 16:52:13 -03002328 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_IP6);
2329 pe.index = tid;
2330
2331 /* Finished: go to flowid generation */
2332 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_FLOWS);
2333 mvpp2_prs_sram_bits_set(&pe, MVPP2_PRS_SRAM_LU_GEN_BIT, 1);
2334 mvpp2_prs_sram_ri_update(&pe, ri, ri_mask);
2335 mvpp2_prs_sram_offset_set(&pe, MVPP2_PRS_SRAM_UDF_TYPE_L4,
2336 sizeof(struct ipv6hdr) - 6,
2337 MVPP2_PRS_SRAM_OP_SEL_UDF_ADD);
2338
2339 mvpp2_prs_tcam_data_byte_set(&pe, 0, proto, MVPP2_PRS_TCAM_PROTO_MASK);
2340 mvpp2_prs_tcam_ai_update(&pe, MVPP2_PRS_IPV6_NO_EXT_AI_BIT,
2341 MVPP2_PRS_IPV6_NO_EXT_AI_BIT);
2342 /* Unmask all ports */
2343 mvpp2_prs_tcam_port_map_set(&pe, MVPP2_PRS_PORT_MASK);
2344
2345 /* Write HW */
2346 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_IP6);
2347 mvpp2_prs_hw_write(priv, &pe);
2348
2349 return 0;
2350}
2351
2352/* IPv6 L3 multicast entry */
2353static int mvpp2_prs_ip6_cast(struct mvpp2 *priv, unsigned short l3_cast)
2354{
2355 struct mvpp2_prs_entry pe;
2356 int tid;
2357
2358 if (l3_cast != MVPP2_PRS_L3_MULTI_CAST)
2359 return -EINVAL;
2360
2361 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
2362 MVPP2_PE_LAST_FREE_TID);
2363 if (tid < 0)
2364 return tid;
2365
Markus Elfringc5b2ce22017-04-17 10:30:29 +02002366 memset(&pe, 0, sizeof(pe));
Marcin Wojtas3f518502014-07-10 16:52:13 -03002367 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_IP6);
2368 pe.index = tid;
2369
2370 /* Finished: go to flowid generation */
2371 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_IP6);
2372 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L3_MCAST,
2373 MVPP2_PRS_RI_L3_ADDR_MASK);
2374 mvpp2_prs_sram_ai_update(&pe, MVPP2_PRS_IPV6_NO_EXT_AI_BIT,
2375 MVPP2_PRS_IPV6_NO_EXT_AI_BIT);
2376 /* Shift back to IPv6 NH */
2377 mvpp2_prs_sram_shift_set(&pe, -18, MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
2378
2379 mvpp2_prs_tcam_data_byte_set(&pe, 0, MVPP2_PRS_IPV6_MC,
2380 MVPP2_PRS_IPV6_MC_MASK);
2381 mvpp2_prs_tcam_ai_update(&pe, 0, MVPP2_PRS_IPV6_NO_EXT_AI_BIT);
2382 /* Unmask all ports */
2383 mvpp2_prs_tcam_port_map_set(&pe, MVPP2_PRS_PORT_MASK);
2384
2385 /* Update shadow table and hw entry */
2386 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_IP6);
2387 mvpp2_prs_hw_write(priv, &pe);
2388
2389 return 0;
2390}
2391
2392/* Parser per-port initialization */
2393static void mvpp2_prs_hw_port_init(struct mvpp2 *priv, int port, int lu_first,
2394 int lu_max, int offset)
2395{
2396 u32 val;
2397
2398 /* Set lookup ID */
2399 val = mvpp2_read(priv, MVPP2_PRS_INIT_LOOKUP_REG);
2400 val &= ~MVPP2_PRS_PORT_LU_MASK(port);
2401 val |= MVPP2_PRS_PORT_LU_VAL(port, lu_first);
2402 mvpp2_write(priv, MVPP2_PRS_INIT_LOOKUP_REG, val);
2403
2404 /* Set maximum number of loops for packet received from port */
2405 val = mvpp2_read(priv, MVPP2_PRS_MAX_LOOP_REG(port));
2406 val &= ~MVPP2_PRS_MAX_LOOP_MASK(port);
2407 val |= MVPP2_PRS_MAX_LOOP_VAL(port, lu_max);
2408 mvpp2_write(priv, MVPP2_PRS_MAX_LOOP_REG(port), val);
2409
2410 /* Set initial offset for packet header extraction for the first
2411 * searching loop
2412 */
2413 val = mvpp2_read(priv, MVPP2_PRS_INIT_OFFS_REG(port));
2414 val &= ~MVPP2_PRS_INIT_OFF_MASK(port);
2415 val |= MVPP2_PRS_INIT_OFF_VAL(port, offset);
2416 mvpp2_write(priv, MVPP2_PRS_INIT_OFFS_REG(port), val);
2417}
2418
2419/* Default flow entries initialization for all ports */
2420static void mvpp2_prs_def_flow_init(struct mvpp2 *priv)
2421{
2422 struct mvpp2_prs_entry pe;
2423 int port;
2424
2425 for (port = 0; port < MVPP2_MAX_PORTS; port++) {
Markus Elfringc5b2ce22017-04-17 10:30:29 +02002426 memset(&pe, 0, sizeof(pe));
Marcin Wojtas3f518502014-07-10 16:52:13 -03002427 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_FLOWS);
2428 pe.index = MVPP2_PE_FIRST_DEFAULT_FLOW - port;
2429
2430 /* Mask all ports */
2431 mvpp2_prs_tcam_port_map_set(&pe, 0);
2432
2433 /* Set flow ID*/
2434 mvpp2_prs_sram_ai_update(&pe, port, MVPP2_PRS_FLOW_ID_MASK);
2435 mvpp2_prs_sram_bits_set(&pe, MVPP2_PRS_SRAM_LU_DONE_BIT, 1);
2436
2437 /* Update shadow table and hw entry */
2438 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_FLOWS);
2439 mvpp2_prs_hw_write(priv, &pe);
2440 }
2441}
2442
2443/* Set default entry for Marvell Header field */
2444static void mvpp2_prs_mh_init(struct mvpp2 *priv)
2445{
2446 struct mvpp2_prs_entry pe;
2447
Markus Elfringc5b2ce22017-04-17 10:30:29 +02002448 memset(&pe, 0, sizeof(pe));
Marcin Wojtas3f518502014-07-10 16:52:13 -03002449
2450 pe.index = MVPP2_PE_MH_DEFAULT;
2451 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_MH);
2452 mvpp2_prs_sram_shift_set(&pe, MVPP2_MH_SIZE,
2453 MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
2454 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_MAC);
2455
2456 /* Unmask all ports */
2457 mvpp2_prs_tcam_port_map_set(&pe, MVPP2_PRS_PORT_MASK);
2458
2459 /* Update shadow table and hw entry */
2460 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_MH);
2461 mvpp2_prs_hw_write(priv, &pe);
2462}
2463
2464/* Set default entires (place holder) for promiscuous, non-promiscuous and
2465 * multicast MAC addresses
2466 */
2467static void mvpp2_prs_mac_init(struct mvpp2 *priv)
2468{
2469 struct mvpp2_prs_entry pe;
2470
Markus Elfringc5b2ce22017-04-17 10:30:29 +02002471 memset(&pe, 0, sizeof(pe));
Marcin Wojtas3f518502014-07-10 16:52:13 -03002472
2473 /* Non-promiscuous mode for all ports - DROP unknown packets */
2474 pe.index = MVPP2_PE_MAC_NON_PROMISCUOUS;
2475 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_MAC);
2476
2477 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_DROP_MASK,
2478 MVPP2_PRS_RI_DROP_MASK);
2479 mvpp2_prs_sram_bits_set(&pe, MVPP2_PRS_SRAM_LU_GEN_BIT, 1);
2480 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_FLOWS);
2481
2482 /* Unmask all ports */
2483 mvpp2_prs_tcam_port_map_set(&pe, MVPP2_PRS_PORT_MASK);
2484
2485 /* Update shadow table and hw entry */
2486 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_MAC);
2487 mvpp2_prs_hw_write(priv, &pe);
2488
2489 /* place holders only - no ports */
2490 mvpp2_prs_mac_drop_all_set(priv, 0, false);
2491 mvpp2_prs_mac_promisc_set(priv, 0, false);
2492 mvpp2_prs_mac_multi_set(priv, MVPP2_PE_MAC_MC_ALL, 0, false);
2493 mvpp2_prs_mac_multi_set(priv, MVPP2_PE_MAC_MC_IP6, 0, false);
2494}
2495
2496/* Set default entries for various types of dsa packets */
2497static void mvpp2_prs_dsa_init(struct mvpp2 *priv)
2498{
2499 struct mvpp2_prs_entry pe;
2500
2501 /* None tagged EDSA entry - place holder */
2502 mvpp2_prs_dsa_tag_set(priv, 0, false, MVPP2_PRS_UNTAGGED,
2503 MVPP2_PRS_EDSA);
2504
2505 /* Tagged EDSA entry - place holder */
2506 mvpp2_prs_dsa_tag_set(priv, 0, false, MVPP2_PRS_TAGGED, MVPP2_PRS_EDSA);
2507
2508 /* None tagged DSA entry - place holder */
2509 mvpp2_prs_dsa_tag_set(priv, 0, false, MVPP2_PRS_UNTAGGED,
2510 MVPP2_PRS_DSA);
2511
2512 /* Tagged DSA entry - place holder */
2513 mvpp2_prs_dsa_tag_set(priv, 0, false, MVPP2_PRS_TAGGED, MVPP2_PRS_DSA);
2514
2515 /* None tagged EDSA ethertype entry - place holder*/
2516 mvpp2_prs_dsa_tag_ethertype_set(priv, 0, false,
2517 MVPP2_PRS_UNTAGGED, MVPP2_PRS_EDSA);
2518
2519 /* Tagged EDSA ethertype entry - place holder*/
2520 mvpp2_prs_dsa_tag_ethertype_set(priv, 0, false,
2521 MVPP2_PRS_TAGGED, MVPP2_PRS_EDSA);
2522
2523 /* None tagged DSA ethertype entry */
2524 mvpp2_prs_dsa_tag_ethertype_set(priv, 0, true,
2525 MVPP2_PRS_UNTAGGED, MVPP2_PRS_DSA);
2526
2527 /* Tagged DSA ethertype entry */
2528 mvpp2_prs_dsa_tag_ethertype_set(priv, 0, true,
2529 MVPP2_PRS_TAGGED, MVPP2_PRS_DSA);
2530
2531 /* Set default entry, in case DSA or EDSA tag not found */
Markus Elfringc5b2ce22017-04-17 10:30:29 +02002532 memset(&pe, 0, sizeof(pe));
Marcin Wojtas3f518502014-07-10 16:52:13 -03002533 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_DSA);
2534 pe.index = MVPP2_PE_DSA_DEFAULT;
2535 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_VLAN);
2536
2537 /* Shift 0 bytes */
2538 mvpp2_prs_sram_shift_set(&pe, 0, MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
2539 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_MAC);
2540
2541 /* Clear all sram ai bits for next iteration */
2542 mvpp2_prs_sram_ai_update(&pe, 0, MVPP2_PRS_SRAM_AI_MASK);
2543
2544 /* Unmask all ports */
2545 mvpp2_prs_tcam_port_map_set(&pe, MVPP2_PRS_PORT_MASK);
2546
2547 mvpp2_prs_hw_write(priv, &pe);
2548}
2549
2550/* Match basic ethertypes */
2551static int mvpp2_prs_etype_init(struct mvpp2 *priv)
2552{
2553 struct mvpp2_prs_entry pe;
2554 int tid;
2555
2556 /* Ethertype: PPPoE */
2557 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
2558 MVPP2_PE_LAST_FREE_TID);
2559 if (tid < 0)
2560 return tid;
2561
Markus Elfringc5b2ce22017-04-17 10:30:29 +02002562 memset(&pe, 0, sizeof(pe));
Marcin Wojtas3f518502014-07-10 16:52:13 -03002563 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_L2);
2564 pe.index = tid;
2565
2566 mvpp2_prs_match_etype(&pe, 0, ETH_P_PPP_SES);
2567
2568 mvpp2_prs_sram_shift_set(&pe, MVPP2_PPPOE_HDR_SIZE,
2569 MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
2570 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_PPPOE);
2571 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_PPPOE_MASK,
2572 MVPP2_PRS_RI_PPPOE_MASK);
2573
2574 /* Update shadow table and hw entry */
2575 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_L2);
2576 priv->prs_shadow[pe.index].udf = MVPP2_PRS_UDF_L2_DEF;
2577 priv->prs_shadow[pe.index].finish = false;
2578 mvpp2_prs_shadow_ri_set(priv, pe.index, MVPP2_PRS_RI_PPPOE_MASK,
2579 MVPP2_PRS_RI_PPPOE_MASK);
2580 mvpp2_prs_hw_write(priv, &pe);
2581
2582 /* Ethertype: ARP */
2583 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
2584 MVPP2_PE_LAST_FREE_TID);
2585 if (tid < 0)
2586 return tid;
2587
Markus Elfringc5b2ce22017-04-17 10:30:29 +02002588 memset(&pe, 0, sizeof(pe));
Marcin Wojtas3f518502014-07-10 16:52:13 -03002589 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_L2);
2590 pe.index = tid;
2591
2592 mvpp2_prs_match_etype(&pe, 0, ETH_P_ARP);
2593
2594 /* Generate flow in the next iteration*/
2595 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_FLOWS);
2596 mvpp2_prs_sram_bits_set(&pe, MVPP2_PRS_SRAM_LU_GEN_BIT, 1);
2597 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L3_ARP,
2598 MVPP2_PRS_RI_L3_PROTO_MASK);
2599 /* Set L3 offset */
2600 mvpp2_prs_sram_offset_set(&pe, MVPP2_PRS_SRAM_UDF_TYPE_L3,
2601 MVPP2_ETH_TYPE_LEN,
2602 MVPP2_PRS_SRAM_OP_SEL_UDF_ADD);
2603
2604 /* Update shadow table and hw entry */
2605 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_L2);
2606 priv->prs_shadow[pe.index].udf = MVPP2_PRS_UDF_L2_DEF;
2607 priv->prs_shadow[pe.index].finish = true;
2608 mvpp2_prs_shadow_ri_set(priv, pe.index, MVPP2_PRS_RI_L3_ARP,
2609 MVPP2_PRS_RI_L3_PROTO_MASK);
2610 mvpp2_prs_hw_write(priv, &pe);
2611
2612 /* Ethertype: LBTD */
2613 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
2614 MVPP2_PE_LAST_FREE_TID);
2615 if (tid < 0)
2616 return tid;
2617
Markus Elfringc5b2ce22017-04-17 10:30:29 +02002618 memset(&pe, 0, sizeof(pe));
Marcin Wojtas3f518502014-07-10 16:52:13 -03002619 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_L2);
2620 pe.index = tid;
2621
2622 mvpp2_prs_match_etype(&pe, 0, MVPP2_IP_LBDT_TYPE);
2623
2624 /* Generate flow in the next iteration*/
2625 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_FLOWS);
2626 mvpp2_prs_sram_bits_set(&pe, MVPP2_PRS_SRAM_LU_GEN_BIT, 1);
2627 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_CPU_CODE_RX_SPEC |
2628 MVPP2_PRS_RI_UDF3_RX_SPECIAL,
2629 MVPP2_PRS_RI_CPU_CODE_MASK |
2630 MVPP2_PRS_RI_UDF3_MASK);
2631 /* Set L3 offset */
2632 mvpp2_prs_sram_offset_set(&pe, MVPP2_PRS_SRAM_UDF_TYPE_L3,
2633 MVPP2_ETH_TYPE_LEN,
2634 MVPP2_PRS_SRAM_OP_SEL_UDF_ADD);
2635
2636 /* Update shadow table and hw entry */
2637 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_L2);
2638 priv->prs_shadow[pe.index].udf = MVPP2_PRS_UDF_L2_DEF;
2639 priv->prs_shadow[pe.index].finish = true;
2640 mvpp2_prs_shadow_ri_set(priv, pe.index, MVPP2_PRS_RI_CPU_CODE_RX_SPEC |
2641 MVPP2_PRS_RI_UDF3_RX_SPECIAL,
2642 MVPP2_PRS_RI_CPU_CODE_MASK |
2643 MVPP2_PRS_RI_UDF3_MASK);
2644 mvpp2_prs_hw_write(priv, &pe);
2645
2646 /* Ethertype: IPv4 without options */
2647 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
2648 MVPP2_PE_LAST_FREE_TID);
2649 if (tid < 0)
2650 return tid;
2651
Markus Elfringc5b2ce22017-04-17 10:30:29 +02002652 memset(&pe, 0, sizeof(pe));
Marcin Wojtas3f518502014-07-10 16:52:13 -03002653 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_L2);
2654 pe.index = tid;
2655
2656 mvpp2_prs_match_etype(&pe, 0, ETH_P_IP);
2657 mvpp2_prs_tcam_data_byte_set(&pe, MVPP2_ETH_TYPE_LEN,
2658 MVPP2_PRS_IPV4_HEAD | MVPP2_PRS_IPV4_IHL,
2659 MVPP2_PRS_IPV4_HEAD_MASK |
2660 MVPP2_PRS_IPV4_IHL_MASK);
2661
2662 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_IP4);
2663 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L3_IP4,
2664 MVPP2_PRS_RI_L3_PROTO_MASK);
2665 /* Skip eth_type + 4 bytes of IP header */
2666 mvpp2_prs_sram_shift_set(&pe, MVPP2_ETH_TYPE_LEN + 4,
2667 MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
2668 /* Set L3 offset */
2669 mvpp2_prs_sram_offset_set(&pe, MVPP2_PRS_SRAM_UDF_TYPE_L3,
2670 MVPP2_ETH_TYPE_LEN,
2671 MVPP2_PRS_SRAM_OP_SEL_UDF_ADD);
2672
2673 /* Update shadow table and hw entry */
2674 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_L2);
2675 priv->prs_shadow[pe.index].udf = MVPP2_PRS_UDF_L2_DEF;
2676 priv->prs_shadow[pe.index].finish = false;
2677 mvpp2_prs_shadow_ri_set(priv, pe.index, MVPP2_PRS_RI_L3_IP4,
2678 MVPP2_PRS_RI_L3_PROTO_MASK);
2679 mvpp2_prs_hw_write(priv, &pe);
2680
2681 /* Ethertype: IPv4 with options */
2682 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
2683 MVPP2_PE_LAST_FREE_TID);
2684 if (tid < 0)
2685 return tid;
2686
2687 pe.index = tid;
2688
2689 /* Clear tcam data before updating */
2690 pe.tcam.byte[MVPP2_PRS_TCAM_DATA_BYTE(MVPP2_ETH_TYPE_LEN)] = 0x0;
2691 pe.tcam.byte[MVPP2_PRS_TCAM_DATA_BYTE_EN(MVPP2_ETH_TYPE_LEN)] = 0x0;
2692
2693 mvpp2_prs_tcam_data_byte_set(&pe, MVPP2_ETH_TYPE_LEN,
2694 MVPP2_PRS_IPV4_HEAD,
2695 MVPP2_PRS_IPV4_HEAD_MASK);
2696
2697 /* Clear ri before updating */
2698 pe.sram.word[MVPP2_PRS_SRAM_RI_WORD] = 0x0;
2699 pe.sram.word[MVPP2_PRS_SRAM_RI_CTRL_WORD] = 0x0;
2700 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L3_IP4_OPT,
2701 MVPP2_PRS_RI_L3_PROTO_MASK);
2702
2703 /* Update shadow table and hw entry */
2704 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_L2);
2705 priv->prs_shadow[pe.index].udf = MVPP2_PRS_UDF_L2_DEF;
2706 priv->prs_shadow[pe.index].finish = false;
2707 mvpp2_prs_shadow_ri_set(priv, pe.index, MVPP2_PRS_RI_L3_IP4_OPT,
2708 MVPP2_PRS_RI_L3_PROTO_MASK);
2709 mvpp2_prs_hw_write(priv, &pe);
2710
2711 /* Ethertype: IPv6 without options */
2712 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
2713 MVPP2_PE_LAST_FREE_TID);
2714 if (tid < 0)
2715 return tid;
2716
Markus Elfringc5b2ce22017-04-17 10:30:29 +02002717 memset(&pe, 0, sizeof(pe));
Marcin Wojtas3f518502014-07-10 16:52:13 -03002718 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_L2);
2719 pe.index = tid;
2720
2721 mvpp2_prs_match_etype(&pe, 0, ETH_P_IPV6);
2722
2723 /* Skip DIP of IPV6 header */
2724 mvpp2_prs_sram_shift_set(&pe, MVPP2_ETH_TYPE_LEN + 8 +
2725 MVPP2_MAX_L3_ADDR_SIZE,
2726 MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
2727 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_IP6);
2728 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L3_IP6,
2729 MVPP2_PRS_RI_L3_PROTO_MASK);
2730 /* Set L3 offset */
2731 mvpp2_prs_sram_offset_set(&pe, MVPP2_PRS_SRAM_UDF_TYPE_L3,
2732 MVPP2_ETH_TYPE_LEN,
2733 MVPP2_PRS_SRAM_OP_SEL_UDF_ADD);
2734
2735 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_L2);
2736 priv->prs_shadow[pe.index].udf = MVPP2_PRS_UDF_L2_DEF;
2737 priv->prs_shadow[pe.index].finish = false;
2738 mvpp2_prs_shadow_ri_set(priv, pe.index, MVPP2_PRS_RI_L3_IP6,
2739 MVPP2_PRS_RI_L3_PROTO_MASK);
2740 mvpp2_prs_hw_write(priv, &pe);
2741
2742 /* Default entry for MVPP2_PRS_LU_L2 - Unknown ethtype */
2743 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
2744 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_L2);
2745 pe.index = MVPP2_PE_ETH_TYPE_UN;
2746
2747 /* Unmask all ports */
2748 mvpp2_prs_tcam_port_map_set(&pe, MVPP2_PRS_PORT_MASK);
2749
2750 /* Generate flow in the next iteration*/
2751 mvpp2_prs_sram_bits_set(&pe, MVPP2_PRS_SRAM_LU_GEN_BIT, 1);
2752 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_FLOWS);
2753 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L3_UN,
2754 MVPP2_PRS_RI_L3_PROTO_MASK);
2755 /* Set L3 offset even it's unknown L3 */
2756 mvpp2_prs_sram_offset_set(&pe, MVPP2_PRS_SRAM_UDF_TYPE_L3,
2757 MVPP2_ETH_TYPE_LEN,
2758 MVPP2_PRS_SRAM_OP_SEL_UDF_ADD);
2759
2760 /* Update shadow table and hw entry */
2761 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_L2);
2762 priv->prs_shadow[pe.index].udf = MVPP2_PRS_UDF_L2_DEF;
2763 priv->prs_shadow[pe.index].finish = true;
2764 mvpp2_prs_shadow_ri_set(priv, pe.index, MVPP2_PRS_RI_L3_UN,
2765 MVPP2_PRS_RI_L3_PROTO_MASK);
2766 mvpp2_prs_hw_write(priv, &pe);
2767
2768 return 0;
2769}
2770
2771/* Configure vlan entries and detect up to 2 successive VLAN tags.
2772 * Possible options:
2773 * 0x8100, 0x88A8
2774 * 0x8100, 0x8100
2775 * 0x8100
2776 * 0x88A8
2777 */
2778static int mvpp2_prs_vlan_init(struct platform_device *pdev, struct mvpp2 *priv)
2779{
2780 struct mvpp2_prs_entry pe;
2781 int err;
2782
2783 priv->prs_double_vlans = devm_kcalloc(&pdev->dev, sizeof(bool),
2784 MVPP2_PRS_DBL_VLANS_MAX,
2785 GFP_KERNEL);
2786 if (!priv->prs_double_vlans)
2787 return -ENOMEM;
2788
2789 /* Double VLAN: 0x8100, 0x88A8 */
2790 err = mvpp2_prs_double_vlan_add(priv, ETH_P_8021Q, ETH_P_8021AD,
2791 MVPP2_PRS_PORT_MASK);
2792 if (err)
2793 return err;
2794
2795 /* Double VLAN: 0x8100, 0x8100 */
2796 err = mvpp2_prs_double_vlan_add(priv, ETH_P_8021Q, ETH_P_8021Q,
2797 MVPP2_PRS_PORT_MASK);
2798 if (err)
2799 return err;
2800
2801 /* Single VLAN: 0x88a8 */
2802 err = mvpp2_prs_vlan_add(priv, ETH_P_8021AD, MVPP2_PRS_SINGLE_VLAN_AI,
2803 MVPP2_PRS_PORT_MASK);
2804 if (err)
2805 return err;
2806
2807 /* Single VLAN: 0x8100 */
2808 err = mvpp2_prs_vlan_add(priv, ETH_P_8021Q, MVPP2_PRS_SINGLE_VLAN_AI,
2809 MVPP2_PRS_PORT_MASK);
2810 if (err)
2811 return err;
2812
2813 /* Set default double vlan entry */
Markus Elfringc5b2ce22017-04-17 10:30:29 +02002814 memset(&pe, 0, sizeof(pe));
Marcin Wojtas3f518502014-07-10 16:52:13 -03002815 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_VLAN);
2816 pe.index = MVPP2_PE_VLAN_DBL;
2817
2818 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_L2);
2819 /* Clear ai for next iterations */
2820 mvpp2_prs_sram_ai_update(&pe, 0, MVPP2_PRS_SRAM_AI_MASK);
2821 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_VLAN_DOUBLE,
2822 MVPP2_PRS_RI_VLAN_MASK);
2823
2824 mvpp2_prs_tcam_ai_update(&pe, MVPP2_PRS_DBL_VLAN_AI_BIT,
2825 MVPP2_PRS_DBL_VLAN_AI_BIT);
2826 /* Unmask all ports */
2827 mvpp2_prs_tcam_port_map_set(&pe, MVPP2_PRS_PORT_MASK);
2828
2829 /* Update shadow table and hw entry */
2830 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_VLAN);
2831 mvpp2_prs_hw_write(priv, &pe);
2832
2833 /* Set default vlan none entry */
Markus Elfringc5b2ce22017-04-17 10:30:29 +02002834 memset(&pe, 0, sizeof(pe));
Marcin Wojtas3f518502014-07-10 16:52:13 -03002835 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_VLAN);
2836 pe.index = MVPP2_PE_VLAN_NONE;
2837
2838 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_L2);
2839 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_VLAN_NONE,
2840 MVPP2_PRS_RI_VLAN_MASK);
2841
2842 /* Unmask all ports */
2843 mvpp2_prs_tcam_port_map_set(&pe, MVPP2_PRS_PORT_MASK);
2844
2845 /* Update shadow table and hw entry */
2846 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_VLAN);
2847 mvpp2_prs_hw_write(priv, &pe);
2848
2849 return 0;
2850}
2851
2852/* Set entries for PPPoE ethertype */
2853static int mvpp2_prs_pppoe_init(struct mvpp2 *priv)
2854{
2855 struct mvpp2_prs_entry pe;
2856 int tid;
2857
2858 /* IPv4 over PPPoE with options */
2859 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
2860 MVPP2_PE_LAST_FREE_TID);
2861 if (tid < 0)
2862 return tid;
2863
Markus Elfringc5b2ce22017-04-17 10:30:29 +02002864 memset(&pe, 0, sizeof(pe));
Marcin Wojtas3f518502014-07-10 16:52:13 -03002865 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_PPPOE);
2866 pe.index = tid;
2867
2868 mvpp2_prs_match_etype(&pe, 0, PPP_IP);
2869
2870 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_IP4);
2871 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L3_IP4_OPT,
2872 MVPP2_PRS_RI_L3_PROTO_MASK);
2873 /* Skip eth_type + 4 bytes of IP header */
2874 mvpp2_prs_sram_shift_set(&pe, MVPP2_ETH_TYPE_LEN + 4,
2875 MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
2876 /* Set L3 offset */
2877 mvpp2_prs_sram_offset_set(&pe, MVPP2_PRS_SRAM_UDF_TYPE_L3,
2878 MVPP2_ETH_TYPE_LEN,
2879 MVPP2_PRS_SRAM_OP_SEL_UDF_ADD);
2880
2881 /* Update shadow table and hw entry */
2882 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_PPPOE);
2883 mvpp2_prs_hw_write(priv, &pe);
2884
2885 /* IPv4 over PPPoE without options */
2886 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
2887 MVPP2_PE_LAST_FREE_TID);
2888 if (tid < 0)
2889 return tid;
2890
2891 pe.index = tid;
2892
2893 mvpp2_prs_tcam_data_byte_set(&pe, MVPP2_ETH_TYPE_LEN,
2894 MVPP2_PRS_IPV4_HEAD | MVPP2_PRS_IPV4_IHL,
2895 MVPP2_PRS_IPV4_HEAD_MASK |
2896 MVPP2_PRS_IPV4_IHL_MASK);
2897
2898 /* Clear ri before updating */
2899 pe.sram.word[MVPP2_PRS_SRAM_RI_WORD] = 0x0;
2900 pe.sram.word[MVPP2_PRS_SRAM_RI_CTRL_WORD] = 0x0;
2901 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L3_IP4,
2902 MVPP2_PRS_RI_L3_PROTO_MASK);
2903
2904 /* Update shadow table and hw entry */
2905 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_PPPOE);
2906 mvpp2_prs_hw_write(priv, &pe);
2907
2908 /* IPv6 over PPPoE */
2909 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
2910 MVPP2_PE_LAST_FREE_TID);
2911 if (tid < 0)
2912 return tid;
2913
Markus Elfringc5b2ce22017-04-17 10:30:29 +02002914 memset(&pe, 0, sizeof(pe));
Marcin Wojtas3f518502014-07-10 16:52:13 -03002915 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_PPPOE);
2916 pe.index = tid;
2917
2918 mvpp2_prs_match_etype(&pe, 0, PPP_IPV6);
2919
2920 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_IP6);
2921 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L3_IP6,
2922 MVPP2_PRS_RI_L3_PROTO_MASK);
2923 /* Skip eth_type + 4 bytes of IPv6 header */
2924 mvpp2_prs_sram_shift_set(&pe, MVPP2_ETH_TYPE_LEN + 4,
2925 MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
2926 /* Set L3 offset */
2927 mvpp2_prs_sram_offset_set(&pe, MVPP2_PRS_SRAM_UDF_TYPE_L3,
2928 MVPP2_ETH_TYPE_LEN,
2929 MVPP2_PRS_SRAM_OP_SEL_UDF_ADD);
2930
2931 /* Update shadow table and hw entry */
2932 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_PPPOE);
2933 mvpp2_prs_hw_write(priv, &pe);
2934
2935 /* Non-IP over PPPoE */
2936 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
2937 MVPP2_PE_LAST_FREE_TID);
2938 if (tid < 0)
2939 return tid;
2940
Markus Elfringc5b2ce22017-04-17 10:30:29 +02002941 memset(&pe, 0, sizeof(pe));
Marcin Wojtas3f518502014-07-10 16:52:13 -03002942 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_PPPOE);
2943 pe.index = tid;
2944
2945 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L3_UN,
2946 MVPP2_PRS_RI_L3_PROTO_MASK);
2947
2948 /* Finished: go to flowid generation */
2949 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_FLOWS);
2950 mvpp2_prs_sram_bits_set(&pe, MVPP2_PRS_SRAM_LU_GEN_BIT, 1);
2951 /* Set L3 offset even if it's unknown L3 */
2952 mvpp2_prs_sram_offset_set(&pe, MVPP2_PRS_SRAM_UDF_TYPE_L3,
2953 MVPP2_ETH_TYPE_LEN,
2954 MVPP2_PRS_SRAM_OP_SEL_UDF_ADD);
2955
2956 /* Update shadow table and hw entry */
2957 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_PPPOE);
2958 mvpp2_prs_hw_write(priv, &pe);
2959
2960 return 0;
2961}
2962
2963/* Initialize entries for IPv4 */
2964static int mvpp2_prs_ip4_init(struct mvpp2 *priv)
2965{
2966 struct mvpp2_prs_entry pe;
2967 int err;
2968
2969 /* Set entries for TCP, UDP and IGMP over IPv4 */
2970 err = mvpp2_prs_ip4_proto(priv, IPPROTO_TCP, MVPP2_PRS_RI_L4_TCP,
2971 MVPP2_PRS_RI_L4_PROTO_MASK);
2972 if (err)
2973 return err;
2974
2975 err = mvpp2_prs_ip4_proto(priv, IPPROTO_UDP, MVPP2_PRS_RI_L4_UDP,
2976 MVPP2_PRS_RI_L4_PROTO_MASK);
2977 if (err)
2978 return err;
2979
2980 err = mvpp2_prs_ip4_proto(priv, IPPROTO_IGMP,
2981 MVPP2_PRS_RI_CPU_CODE_RX_SPEC |
2982 MVPP2_PRS_RI_UDF3_RX_SPECIAL,
2983 MVPP2_PRS_RI_CPU_CODE_MASK |
2984 MVPP2_PRS_RI_UDF3_MASK);
2985 if (err)
2986 return err;
2987
2988 /* IPv4 Broadcast */
2989 err = mvpp2_prs_ip4_cast(priv, MVPP2_PRS_L3_BROAD_CAST);
2990 if (err)
2991 return err;
2992
2993 /* IPv4 Multicast */
2994 err = mvpp2_prs_ip4_cast(priv, MVPP2_PRS_L3_MULTI_CAST);
2995 if (err)
2996 return err;
2997
2998 /* Default IPv4 entry for unknown protocols */
Markus Elfringc5b2ce22017-04-17 10:30:29 +02002999 memset(&pe, 0, sizeof(pe));
Marcin Wojtas3f518502014-07-10 16:52:13 -03003000 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_IP4);
3001 pe.index = MVPP2_PE_IP4_PROTO_UN;
3002
3003 /* Set next lu to IPv4 */
3004 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_IP4);
3005 mvpp2_prs_sram_shift_set(&pe, 12, MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
3006 /* Set L4 offset */
3007 mvpp2_prs_sram_offset_set(&pe, MVPP2_PRS_SRAM_UDF_TYPE_L4,
3008 sizeof(struct iphdr) - 4,
3009 MVPP2_PRS_SRAM_OP_SEL_UDF_ADD);
3010 mvpp2_prs_sram_ai_update(&pe, MVPP2_PRS_IPV4_DIP_AI_BIT,
3011 MVPP2_PRS_IPV4_DIP_AI_BIT);
3012 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L4_OTHER,
3013 MVPP2_PRS_RI_L4_PROTO_MASK);
3014
3015 mvpp2_prs_tcam_ai_update(&pe, 0, MVPP2_PRS_IPV4_DIP_AI_BIT);
3016 /* Unmask all ports */
3017 mvpp2_prs_tcam_port_map_set(&pe, MVPP2_PRS_PORT_MASK);
3018
3019 /* Update shadow table and hw entry */
3020 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_IP4);
3021 mvpp2_prs_hw_write(priv, &pe);
3022
3023 /* Default IPv4 entry for unicast address */
Markus Elfringc5b2ce22017-04-17 10:30:29 +02003024 memset(&pe, 0, sizeof(pe));
Marcin Wojtas3f518502014-07-10 16:52:13 -03003025 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_IP4);
3026 pe.index = MVPP2_PE_IP4_ADDR_UN;
3027
3028 /* Finished: go to flowid generation */
3029 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_FLOWS);
3030 mvpp2_prs_sram_bits_set(&pe, MVPP2_PRS_SRAM_LU_GEN_BIT, 1);
3031 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L3_UCAST,
3032 MVPP2_PRS_RI_L3_ADDR_MASK);
3033
3034 mvpp2_prs_tcam_ai_update(&pe, MVPP2_PRS_IPV4_DIP_AI_BIT,
3035 MVPP2_PRS_IPV4_DIP_AI_BIT);
3036 /* Unmask all ports */
3037 mvpp2_prs_tcam_port_map_set(&pe, MVPP2_PRS_PORT_MASK);
3038
3039 /* Update shadow table and hw entry */
3040 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_IP4);
3041 mvpp2_prs_hw_write(priv, &pe);
3042
3043 return 0;
3044}
3045
3046/* Initialize entries for IPv6 */
3047static int mvpp2_prs_ip6_init(struct mvpp2 *priv)
3048{
3049 struct mvpp2_prs_entry pe;
3050 int tid, err;
3051
3052 /* Set entries for TCP, UDP and ICMP over IPv6 */
3053 err = mvpp2_prs_ip6_proto(priv, IPPROTO_TCP,
3054 MVPP2_PRS_RI_L4_TCP,
3055 MVPP2_PRS_RI_L4_PROTO_MASK);
3056 if (err)
3057 return err;
3058
3059 err = mvpp2_prs_ip6_proto(priv, IPPROTO_UDP,
3060 MVPP2_PRS_RI_L4_UDP,
3061 MVPP2_PRS_RI_L4_PROTO_MASK);
3062 if (err)
3063 return err;
3064
3065 err = mvpp2_prs_ip6_proto(priv, IPPROTO_ICMPV6,
3066 MVPP2_PRS_RI_CPU_CODE_RX_SPEC |
3067 MVPP2_PRS_RI_UDF3_RX_SPECIAL,
3068 MVPP2_PRS_RI_CPU_CODE_MASK |
3069 MVPP2_PRS_RI_UDF3_MASK);
3070 if (err)
3071 return err;
3072
3073 /* IPv4 is the last header. This is similar case as 6-TCP or 17-UDP */
3074 /* Result Info: UDF7=1, DS lite */
3075 err = mvpp2_prs_ip6_proto(priv, IPPROTO_IPIP,
3076 MVPP2_PRS_RI_UDF7_IP6_LITE,
3077 MVPP2_PRS_RI_UDF7_MASK);
3078 if (err)
3079 return err;
3080
3081 /* IPv6 multicast */
3082 err = mvpp2_prs_ip6_cast(priv, MVPP2_PRS_L3_MULTI_CAST);
3083 if (err)
3084 return err;
3085
3086 /* Entry for checking hop limit */
3087 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
3088 MVPP2_PE_LAST_FREE_TID);
3089 if (tid < 0)
3090 return tid;
3091
Markus Elfringc5b2ce22017-04-17 10:30:29 +02003092 memset(&pe, 0, sizeof(pe));
Marcin Wojtas3f518502014-07-10 16:52:13 -03003093 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_IP6);
3094 pe.index = tid;
3095
3096 /* Finished: go to flowid generation */
3097 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_FLOWS);
3098 mvpp2_prs_sram_bits_set(&pe, MVPP2_PRS_SRAM_LU_GEN_BIT, 1);
3099 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L3_UN |
3100 MVPP2_PRS_RI_DROP_MASK,
3101 MVPP2_PRS_RI_L3_PROTO_MASK |
3102 MVPP2_PRS_RI_DROP_MASK);
3103
3104 mvpp2_prs_tcam_data_byte_set(&pe, 1, 0x00, MVPP2_PRS_IPV6_HOP_MASK);
3105 mvpp2_prs_tcam_ai_update(&pe, MVPP2_PRS_IPV6_NO_EXT_AI_BIT,
3106 MVPP2_PRS_IPV6_NO_EXT_AI_BIT);
3107
3108 /* Update shadow table and hw entry */
3109 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_IP4);
3110 mvpp2_prs_hw_write(priv, &pe);
3111
3112 /* Default IPv6 entry for unknown protocols */
Markus Elfringc5b2ce22017-04-17 10:30:29 +02003113 memset(&pe, 0, sizeof(pe));
Marcin Wojtas3f518502014-07-10 16:52:13 -03003114 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_IP6);
3115 pe.index = MVPP2_PE_IP6_PROTO_UN;
3116
3117 /* Finished: go to flowid generation */
3118 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_FLOWS);
3119 mvpp2_prs_sram_bits_set(&pe, MVPP2_PRS_SRAM_LU_GEN_BIT, 1);
3120 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L4_OTHER,
3121 MVPP2_PRS_RI_L4_PROTO_MASK);
3122 /* Set L4 offset relatively to our current place */
3123 mvpp2_prs_sram_offset_set(&pe, MVPP2_PRS_SRAM_UDF_TYPE_L4,
3124 sizeof(struct ipv6hdr) - 4,
3125 MVPP2_PRS_SRAM_OP_SEL_UDF_ADD);
3126
3127 mvpp2_prs_tcam_ai_update(&pe, MVPP2_PRS_IPV6_NO_EXT_AI_BIT,
3128 MVPP2_PRS_IPV6_NO_EXT_AI_BIT);
3129 /* Unmask all ports */
3130 mvpp2_prs_tcam_port_map_set(&pe, MVPP2_PRS_PORT_MASK);
3131
3132 /* Update shadow table and hw entry */
3133 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_IP4);
3134 mvpp2_prs_hw_write(priv, &pe);
3135
3136 /* Default IPv6 entry for unknown ext protocols */
3137 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
3138 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_IP6);
3139 pe.index = MVPP2_PE_IP6_EXT_PROTO_UN;
3140
3141 /* Finished: go to flowid generation */
3142 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_FLOWS);
3143 mvpp2_prs_sram_bits_set(&pe, MVPP2_PRS_SRAM_LU_GEN_BIT, 1);
3144 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L4_OTHER,
3145 MVPP2_PRS_RI_L4_PROTO_MASK);
3146
3147 mvpp2_prs_tcam_ai_update(&pe, MVPP2_PRS_IPV6_EXT_AI_BIT,
3148 MVPP2_PRS_IPV6_EXT_AI_BIT);
3149 /* Unmask all ports */
3150 mvpp2_prs_tcam_port_map_set(&pe, MVPP2_PRS_PORT_MASK);
3151
3152 /* Update shadow table and hw entry */
3153 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_IP4);
3154 mvpp2_prs_hw_write(priv, &pe);
3155
3156 /* Default IPv6 entry for unicast address */
3157 memset(&pe, 0, sizeof(struct mvpp2_prs_entry));
3158 mvpp2_prs_tcam_lu_set(&pe, MVPP2_PRS_LU_IP6);
3159 pe.index = MVPP2_PE_IP6_ADDR_UN;
3160
3161 /* Finished: go to IPv6 again */
3162 mvpp2_prs_sram_next_lu_set(&pe, MVPP2_PRS_LU_IP6);
3163 mvpp2_prs_sram_ri_update(&pe, MVPP2_PRS_RI_L3_UCAST,
3164 MVPP2_PRS_RI_L3_ADDR_MASK);
3165 mvpp2_prs_sram_ai_update(&pe, MVPP2_PRS_IPV6_NO_EXT_AI_BIT,
3166 MVPP2_PRS_IPV6_NO_EXT_AI_BIT);
3167 /* Shift back to IPV6 NH */
3168 mvpp2_prs_sram_shift_set(&pe, -18, MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
3169
3170 mvpp2_prs_tcam_ai_update(&pe, 0, MVPP2_PRS_IPV6_NO_EXT_AI_BIT);
3171 /* Unmask all ports */
3172 mvpp2_prs_tcam_port_map_set(&pe, MVPP2_PRS_PORT_MASK);
3173
3174 /* Update shadow table and hw entry */
3175 mvpp2_prs_shadow_set(priv, pe.index, MVPP2_PRS_LU_IP6);
3176 mvpp2_prs_hw_write(priv, &pe);
3177
3178 return 0;
3179}
3180
3181/* Parser default initialization */
3182static int mvpp2_prs_default_init(struct platform_device *pdev,
3183 struct mvpp2 *priv)
3184{
3185 int err, index, i;
3186
3187 /* Enable tcam table */
3188 mvpp2_write(priv, MVPP2_PRS_TCAM_CTRL_REG, MVPP2_PRS_TCAM_EN_MASK);
3189
3190 /* Clear all tcam and sram entries */
3191 for (index = 0; index < MVPP2_PRS_TCAM_SRAM_SIZE; index++) {
3192 mvpp2_write(priv, MVPP2_PRS_TCAM_IDX_REG, index);
3193 for (i = 0; i < MVPP2_PRS_TCAM_WORDS; i++)
3194 mvpp2_write(priv, MVPP2_PRS_TCAM_DATA_REG(i), 0);
3195
3196 mvpp2_write(priv, MVPP2_PRS_SRAM_IDX_REG, index);
3197 for (i = 0; i < MVPP2_PRS_SRAM_WORDS; i++)
3198 mvpp2_write(priv, MVPP2_PRS_SRAM_DATA_REG(i), 0);
3199 }
3200
3201 /* Invalidate all tcam entries */
3202 for (index = 0; index < MVPP2_PRS_TCAM_SRAM_SIZE; index++)
3203 mvpp2_prs_hw_inv(priv, index);
3204
3205 priv->prs_shadow = devm_kcalloc(&pdev->dev, MVPP2_PRS_TCAM_SRAM_SIZE,
Markus Elfring37df25e2017-04-17 09:12:34 +02003206 sizeof(*priv->prs_shadow),
Marcin Wojtas3f518502014-07-10 16:52:13 -03003207 GFP_KERNEL);
3208 if (!priv->prs_shadow)
3209 return -ENOMEM;
3210
3211 /* Always start from lookup = 0 */
3212 for (index = 0; index < MVPP2_MAX_PORTS; index++)
3213 mvpp2_prs_hw_port_init(priv, index, MVPP2_PRS_LU_MH,
3214 MVPP2_PRS_PORT_LU_MAX, 0);
3215
3216 mvpp2_prs_def_flow_init(priv);
3217
3218 mvpp2_prs_mh_init(priv);
3219
3220 mvpp2_prs_mac_init(priv);
3221
3222 mvpp2_prs_dsa_init(priv);
3223
3224 err = mvpp2_prs_etype_init(priv);
3225 if (err)
3226 return err;
3227
3228 err = mvpp2_prs_vlan_init(pdev, priv);
3229 if (err)
3230 return err;
3231
3232 err = mvpp2_prs_pppoe_init(priv);
3233 if (err)
3234 return err;
3235
3236 err = mvpp2_prs_ip6_init(priv);
3237 if (err)
3238 return err;
3239
3240 err = mvpp2_prs_ip4_init(priv);
3241 if (err)
3242 return err;
3243
3244 return 0;
3245}
3246
3247/* Compare MAC DA with tcam entry data */
3248static bool mvpp2_prs_mac_range_equals(struct mvpp2_prs_entry *pe,
3249 const u8 *da, unsigned char *mask)
3250{
3251 unsigned char tcam_byte, tcam_mask;
3252 int index;
3253
3254 for (index = 0; index < ETH_ALEN; index++) {
3255 mvpp2_prs_tcam_data_byte_get(pe, index, &tcam_byte, &tcam_mask);
3256 if (tcam_mask != mask[index])
3257 return false;
3258
3259 if ((tcam_mask & tcam_byte) != (da[index] & mask[index]))
3260 return false;
3261 }
3262
3263 return true;
3264}
3265
3266/* Find tcam entry with matched pair <MAC DA, port> */
3267static struct mvpp2_prs_entry *
3268mvpp2_prs_mac_da_range_find(struct mvpp2 *priv, int pmap, const u8 *da,
3269 unsigned char *mask, int udf_type)
3270{
3271 struct mvpp2_prs_entry *pe;
3272 int tid;
3273
3274 pe = kzalloc(sizeof(*pe), GFP_KERNEL);
3275 if (!pe)
3276 return NULL;
3277 mvpp2_prs_tcam_lu_set(pe, MVPP2_PRS_LU_MAC);
3278
3279 /* Go through the all entires with MVPP2_PRS_LU_MAC */
3280 for (tid = MVPP2_PE_FIRST_FREE_TID;
3281 tid <= MVPP2_PE_LAST_FREE_TID; tid++) {
3282 unsigned int entry_pmap;
3283
3284 if (!priv->prs_shadow[tid].valid ||
3285 (priv->prs_shadow[tid].lu != MVPP2_PRS_LU_MAC) ||
3286 (priv->prs_shadow[tid].udf != udf_type))
3287 continue;
3288
3289 pe->index = tid;
3290 mvpp2_prs_hw_read(priv, pe);
3291 entry_pmap = mvpp2_prs_tcam_port_map_get(pe);
3292
3293 if (mvpp2_prs_mac_range_equals(pe, da, mask) &&
3294 entry_pmap == pmap)
3295 return pe;
3296 }
3297 kfree(pe);
3298
3299 return NULL;
3300}
3301
3302/* Update parser's mac da entry */
3303static int mvpp2_prs_mac_da_accept(struct mvpp2 *priv, int port,
3304 const u8 *da, bool add)
3305{
3306 struct mvpp2_prs_entry *pe;
3307 unsigned int pmap, len, ri;
3308 unsigned char mask[ETH_ALEN] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
3309 int tid;
3310
3311 /* Scan TCAM and see if entry with this <MAC DA, port> already exist */
3312 pe = mvpp2_prs_mac_da_range_find(priv, (1 << port), da, mask,
3313 MVPP2_PRS_UDF_MAC_DEF);
3314
3315 /* No such entry */
3316 if (!pe) {
3317 if (!add)
3318 return 0;
3319
3320 /* Create new TCAM entry */
3321 /* Find first range mac entry*/
3322 for (tid = MVPP2_PE_FIRST_FREE_TID;
3323 tid <= MVPP2_PE_LAST_FREE_TID; tid++)
3324 if (priv->prs_shadow[tid].valid &&
3325 (priv->prs_shadow[tid].lu == MVPP2_PRS_LU_MAC) &&
3326 (priv->prs_shadow[tid].udf ==
3327 MVPP2_PRS_UDF_MAC_RANGE))
3328 break;
3329
3330 /* Go through the all entries from first to last */
3331 tid = mvpp2_prs_tcam_first_free(priv, MVPP2_PE_FIRST_FREE_TID,
3332 tid - 1);
3333 if (tid < 0)
3334 return tid;
3335
3336 pe = kzalloc(sizeof(*pe), GFP_KERNEL);
3337 if (!pe)
Amitoj Kaur Chawlac2bb7bc2016-02-04 19:25:26 +05303338 return -ENOMEM;
Marcin Wojtas3f518502014-07-10 16:52:13 -03003339 mvpp2_prs_tcam_lu_set(pe, MVPP2_PRS_LU_MAC);
3340 pe->index = tid;
3341
3342 /* Mask all ports */
3343 mvpp2_prs_tcam_port_map_set(pe, 0);
3344 }
3345
3346 /* Update port mask */
3347 mvpp2_prs_tcam_port_set(pe, port, add);
3348
3349 /* Invalidate the entry if no ports are left enabled */
3350 pmap = mvpp2_prs_tcam_port_map_get(pe);
3351 if (pmap == 0) {
3352 if (add) {
3353 kfree(pe);
Amitoj Kaur Chawlac2bb7bc2016-02-04 19:25:26 +05303354 return -EINVAL;
Marcin Wojtas3f518502014-07-10 16:52:13 -03003355 }
3356 mvpp2_prs_hw_inv(priv, pe->index);
3357 priv->prs_shadow[pe->index].valid = false;
3358 kfree(pe);
3359 return 0;
3360 }
3361
3362 /* Continue - set next lookup */
3363 mvpp2_prs_sram_next_lu_set(pe, MVPP2_PRS_LU_DSA);
3364
3365 /* Set match on DA */
3366 len = ETH_ALEN;
3367 while (len--)
3368 mvpp2_prs_tcam_data_byte_set(pe, len, da[len], 0xff);
3369
3370 /* Set result info bits */
3371 if (is_broadcast_ether_addr(da))
3372 ri = MVPP2_PRS_RI_L2_BCAST;
3373 else if (is_multicast_ether_addr(da))
3374 ri = MVPP2_PRS_RI_L2_MCAST;
3375 else
3376 ri = MVPP2_PRS_RI_L2_UCAST | MVPP2_PRS_RI_MAC_ME_MASK;
3377
3378 mvpp2_prs_sram_ri_update(pe, ri, MVPP2_PRS_RI_L2_CAST_MASK |
3379 MVPP2_PRS_RI_MAC_ME_MASK);
3380 mvpp2_prs_shadow_ri_set(priv, pe->index, ri, MVPP2_PRS_RI_L2_CAST_MASK |
3381 MVPP2_PRS_RI_MAC_ME_MASK);
3382
3383 /* Shift to ethertype */
3384 mvpp2_prs_sram_shift_set(pe, 2 * ETH_ALEN,
3385 MVPP2_PRS_SRAM_OP_SEL_SHIFT_ADD);
3386
3387 /* Update shadow table and hw entry */
3388 priv->prs_shadow[pe->index].udf = MVPP2_PRS_UDF_MAC_DEF;
3389 mvpp2_prs_shadow_set(priv, pe->index, MVPP2_PRS_LU_MAC);
3390 mvpp2_prs_hw_write(priv, pe);
3391
3392 kfree(pe);
3393
3394 return 0;
3395}
3396
3397static int mvpp2_prs_update_mac_da(struct net_device *dev, const u8 *da)
3398{
3399 struct mvpp2_port *port = netdev_priv(dev);
3400 int err;
3401
3402 /* Remove old parser entry */
3403 err = mvpp2_prs_mac_da_accept(port->priv, port->id, dev->dev_addr,
3404 false);
3405 if (err)
3406 return err;
3407
3408 /* Add new parser entry */
3409 err = mvpp2_prs_mac_da_accept(port->priv, port->id, da, true);
3410 if (err)
3411 return err;
3412
3413 /* Set addr in the device */
3414 ether_addr_copy(dev->dev_addr, da);
3415
3416 return 0;
3417}
3418
3419/* Delete all port's multicast simple (not range) entries */
3420static void mvpp2_prs_mcast_del_all(struct mvpp2 *priv, int port)
3421{
3422 struct mvpp2_prs_entry pe;
3423 int index, tid;
3424
3425 for (tid = MVPP2_PE_FIRST_FREE_TID;
3426 tid <= MVPP2_PE_LAST_FREE_TID; tid++) {
3427 unsigned char da[ETH_ALEN], da_mask[ETH_ALEN];
3428
3429 if (!priv->prs_shadow[tid].valid ||
3430 (priv->prs_shadow[tid].lu != MVPP2_PRS_LU_MAC) ||
3431 (priv->prs_shadow[tid].udf != MVPP2_PRS_UDF_MAC_DEF))
3432 continue;
3433
3434 /* Only simple mac entries */
3435 pe.index = tid;
3436 mvpp2_prs_hw_read(priv, &pe);
3437
3438 /* Read mac addr from entry */
3439 for (index = 0; index < ETH_ALEN; index++)
3440 mvpp2_prs_tcam_data_byte_get(&pe, index, &da[index],
3441 &da_mask[index]);
3442
3443 if (is_multicast_ether_addr(da) && !is_broadcast_ether_addr(da))
3444 /* Delete this entry */
3445 mvpp2_prs_mac_da_accept(priv, port, da, false);
3446 }
3447}
3448
3449static int mvpp2_prs_tag_mode_set(struct mvpp2 *priv, int port, int type)
3450{
3451 switch (type) {
3452 case MVPP2_TAG_TYPE_EDSA:
3453 /* Add port to EDSA entries */
3454 mvpp2_prs_dsa_tag_set(priv, port, true,
3455 MVPP2_PRS_TAGGED, MVPP2_PRS_EDSA);
3456 mvpp2_prs_dsa_tag_set(priv, port, true,
3457 MVPP2_PRS_UNTAGGED, MVPP2_PRS_EDSA);
3458 /* Remove port from DSA entries */
3459 mvpp2_prs_dsa_tag_set(priv, port, false,
3460 MVPP2_PRS_TAGGED, MVPP2_PRS_DSA);
3461 mvpp2_prs_dsa_tag_set(priv, port, false,
3462 MVPP2_PRS_UNTAGGED, MVPP2_PRS_DSA);
3463 break;
3464
3465 case MVPP2_TAG_TYPE_DSA:
3466 /* Add port to DSA entries */
3467 mvpp2_prs_dsa_tag_set(priv, port, true,
3468 MVPP2_PRS_TAGGED, MVPP2_PRS_DSA);
3469 mvpp2_prs_dsa_tag_set(priv, port, true,
3470 MVPP2_PRS_UNTAGGED, MVPP2_PRS_DSA);
3471 /* Remove port from EDSA entries */
3472 mvpp2_prs_dsa_tag_set(priv, port, false,
3473 MVPP2_PRS_TAGGED, MVPP2_PRS_EDSA);
3474 mvpp2_prs_dsa_tag_set(priv, port, false,
3475 MVPP2_PRS_UNTAGGED, MVPP2_PRS_EDSA);
3476 break;
3477
3478 case MVPP2_TAG_TYPE_MH:
3479 case MVPP2_TAG_TYPE_NONE:
3480 /* Remove port form EDSA and DSA entries */
3481 mvpp2_prs_dsa_tag_set(priv, port, false,
3482 MVPP2_PRS_TAGGED, MVPP2_PRS_DSA);
3483 mvpp2_prs_dsa_tag_set(priv, port, false,
3484 MVPP2_PRS_UNTAGGED, MVPP2_PRS_DSA);
3485 mvpp2_prs_dsa_tag_set(priv, port, false,
3486 MVPP2_PRS_TAGGED, MVPP2_PRS_EDSA);
3487 mvpp2_prs_dsa_tag_set(priv, port, false,
3488 MVPP2_PRS_UNTAGGED, MVPP2_PRS_EDSA);
3489 break;
3490
3491 default:
3492 if ((type < 0) || (type > MVPP2_TAG_TYPE_EDSA))
3493 return -EINVAL;
3494 }
3495
3496 return 0;
3497}
3498
3499/* Set prs flow for the port */
3500static int mvpp2_prs_def_flow(struct mvpp2_port *port)
3501{
3502 struct mvpp2_prs_entry *pe;
3503 int tid;
3504
3505 pe = mvpp2_prs_flow_find(port->priv, port->id);
3506
3507 /* Such entry not exist */
3508 if (!pe) {
3509 /* Go through the all entires from last to first */
3510 tid = mvpp2_prs_tcam_first_free(port->priv,
3511 MVPP2_PE_LAST_FREE_TID,
3512 MVPP2_PE_FIRST_FREE_TID);
3513 if (tid < 0)
3514 return tid;
3515
3516 pe = kzalloc(sizeof(*pe), GFP_KERNEL);
3517 if (!pe)
3518 return -ENOMEM;
3519
3520 mvpp2_prs_tcam_lu_set(pe, MVPP2_PRS_LU_FLOWS);
3521 pe->index = tid;
3522
3523 /* Set flow ID*/
3524 mvpp2_prs_sram_ai_update(pe, port->id, MVPP2_PRS_FLOW_ID_MASK);
3525 mvpp2_prs_sram_bits_set(pe, MVPP2_PRS_SRAM_LU_DONE_BIT, 1);
3526
3527 /* Update shadow table */
3528 mvpp2_prs_shadow_set(port->priv, pe->index, MVPP2_PRS_LU_FLOWS);
3529 }
3530
3531 mvpp2_prs_tcam_port_map_set(pe, (1 << port->id));
3532 mvpp2_prs_hw_write(port->priv, pe);
3533 kfree(pe);
3534
3535 return 0;
3536}
3537
3538/* Classifier configuration routines */
3539
3540/* Update classification flow table registers */
3541static void mvpp2_cls_flow_write(struct mvpp2 *priv,
3542 struct mvpp2_cls_flow_entry *fe)
3543{
3544 mvpp2_write(priv, MVPP2_CLS_FLOW_INDEX_REG, fe->index);
3545 mvpp2_write(priv, MVPP2_CLS_FLOW_TBL0_REG, fe->data[0]);
3546 mvpp2_write(priv, MVPP2_CLS_FLOW_TBL1_REG, fe->data[1]);
3547 mvpp2_write(priv, MVPP2_CLS_FLOW_TBL2_REG, fe->data[2]);
3548}
3549
3550/* Update classification lookup table register */
3551static void mvpp2_cls_lookup_write(struct mvpp2 *priv,
3552 struct mvpp2_cls_lookup_entry *le)
3553{
3554 u32 val;
3555
3556 val = (le->way << MVPP2_CLS_LKP_INDEX_WAY_OFFS) | le->lkpid;
3557 mvpp2_write(priv, MVPP2_CLS_LKP_INDEX_REG, val);
3558 mvpp2_write(priv, MVPP2_CLS_LKP_TBL_REG, le->data);
3559}
3560
3561/* Classifier default initialization */
3562static void mvpp2_cls_init(struct mvpp2 *priv)
3563{
3564 struct mvpp2_cls_lookup_entry le;
3565 struct mvpp2_cls_flow_entry fe;
3566 int index;
3567
3568 /* Enable classifier */
3569 mvpp2_write(priv, MVPP2_CLS_MODE_REG, MVPP2_CLS_MODE_ACTIVE_MASK);
3570
3571 /* Clear classifier flow table */
Arnd Bergmanne8f967c2016-11-24 17:28:12 +01003572 memset(&fe.data, 0, sizeof(fe.data));
Marcin Wojtas3f518502014-07-10 16:52:13 -03003573 for (index = 0; index < MVPP2_CLS_FLOWS_TBL_SIZE; index++) {
3574 fe.index = index;
3575 mvpp2_cls_flow_write(priv, &fe);
3576 }
3577
3578 /* Clear classifier lookup table */
3579 le.data = 0;
3580 for (index = 0; index < MVPP2_CLS_LKP_TBL_SIZE; index++) {
3581 le.lkpid = index;
3582 le.way = 0;
3583 mvpp2_cls_lookup_write(priv, &le);
3584
3585 le.way = 1;
3586 mvpp2_cls_lookup_write(priv, &le);
3587 }
3588}
3589
3590static void mvpp2_cls_port_config(struct mvpp2_port *port)
3591{
3592 struct mvpp2_cls_lookup_entry le;
3593 u32 val;
3594
3595 /* Set way for the port */
3596 val = mvpp2_read(port->priv, MVPP2_CLS_PORT_WAY_REG);
3597 val &= ~MVPP2_CLS_PORT_WAY_MASK(port->id);
3598 mvpp2_write(port->priv, MVPP2_CLS_PORT_WAY_REG, val);
3599
3600 /* Pick the entry to be accessed in lookup ID decoding table
3601 * according to the way and lkpid.
3602 */
3603 le.lkpid = port->id;
3604 le.way = 0;
3605 le.data = 0;
3606
3607 /* Set initial CPU queue for receiving packets */
3608 le.data &= ~MVPP2_CLS_LKP_TBL_RXQ_MASK;
3609 le.data |= port->first_rxq;
3610
3611 /* Disable classification engines */
3612 le.data &= ~MVPP2_CLS_LKP_TBL_LOOKUP_EN_MASK;
3613
3614 /* Update lookup ID table entry */
3615 mvpp2_cls_lookup_write(port->priv, &le);
3616}
3617
3618/* Set CPU queue number for oversize packets */
3619static void mvpp2_cls_oversize_rxq_set(struct mvpp2_port *port)
3620{
3621 u32 val;
3622
3623 mvpp2_write(port->priv, MVPP2_CLS_OVERSIZE_RXQ_LOW_REG(port->id),
3624 port->first_rxq & MVPP2_CLS_OVERSIZE_RXQ_LOW_MASK);
3625
3626 mvpp2_write(port->priv, MVPP2_CLS_SWFWD_P2HQ_REG(port->id),
3627 (port->first_rxq >> MVPP2_CLS_OVERSIZE_RXQ_LOW_BITS));
3628
3629 val = mvpp2_read(port->priv, MVPP2_CLS_SWFWD_PCTRL_REG);
3630 val |= MVPP2_CLS_SWFWD_PCTRL_MASK(port->id);
3631 mvpp2_write(port->priv, MVPP2_CLS_SWFWD_PCTRL_REG, val);
3632}
3633
Thomas Petazzoni0e037282017-02-21 11:28:12 +01003634static void *mvpp2_frag_alloc(const struct mvpp2_bm_pool *pool)
3635{
3636 if (likely(pool->frag_size <= PAGE_SIZE))
3637 return netdev_alloc_frag(pool->frag_size);
3638 else
3639 return kmalloc(pool->frag_size, GFP_ATOMIC);
3640}
3641
3642static void mvpp2_frag_free(const struct mvpp2_bm_pool *pool, void *data)
3643{
3644 if (likely(pool->frag_size <= PAGE_SIZE))
3645 skb_free_frag(data);
3646 else
3647 kfree(data);
3648}
3649
Marcin Wojtas3f518502014-07-10 16:52:13 -03003650/* Buffer Manager configuration routines */
3651
3652/* Create pool */
3653static int mvpp2_bm_pool_create(struct platform_device *pdev,
3654 struct mvpp2 *priv,
3655 struct mvpp2_bm_pool *bm_pool, int size)
3656{
Marcin Wojtas3f518502014-07-10 16:52:13 -03003657 u32 val;
3658
Thomas Petazzonid01524d2017-03-07 16:53:09 +01003659 /* Number of buffer pointers must be a multiple of 16, as per
3660 * hardware constraints
3661 */
3662 if (!IS_ALIGNED(size, 16))
3663 return -EINVAL;
3664
3665 /* PPv2.1 needs 8 bytes per buffer pointer, PPv2.2 needs 16
3666 * bytes per buffer pointer
3667 */
3668 if (priv->hw_version == MVPP21)
3669 bm_pool->size_bytes = 2 * sizeof(u32) * size;
3670 else
3671 bm_pool->size_bytes = 2 * sizeof(u64) * size;
3672
3673 bm_pool->virt_addr = dma_alloc_coherent(&pdev->dev, bm_pool->size_bytes,
Thomas Petazzoni20396132017-03-07 16:53:00 +01003674 &bm_pool->dma_addr,
Marcin Wojtas3f518502014-07-10 16:52:13 -03003675 GFP_KERNEL);
3676 if (!bm_pool->virt_addr)
3677 return -ENOMEM;
3678
Thomas Petazzonid3158802017-02-21 11:28:13 +01003679 if (!IS_ALIGNED((unsigned long)bm_pool->virt_addr,
3680 MVPP2_BM_POOL_PTR_ALIGN)) {
Thomas Petazzonid01524d2017-03-07 16:53:09 +01003681 dma_free_coherent(&pdev->dev, bm_pool->size_bytes,
3682 bm_pool->virt_addr, bm_pool->dma_addr);
Marcin Wojtas3f518502014-07-10 16:52:13 -03003683 dev_err(&pdev->dev, "BM pool %d is not %d bytes aligned\n",
3684 bm_pool->id, MVPP2_BM_POOL_PTR_ALIGN);
3685 return -ENOMEM;
3686 }
3687
3688 mvpp2_write(priv, MVPP2_BM_POOL_BASE_REG(bm_pool->id),
Thomas Petazzonid01524d2017-03-07 16:53:09 +01003689 lower_32_bits(bm_pool->dma_addr));
Marcin Wojtas3f518502014-07-10 16:52:13 -03003690 mvpp2_write(priv, MVPP2_BM_POOL_SIZE_REG(bm_pool->id), size);
3691
3692 val = mvpp2_read(priv, MVPP2_BM_POOL_CTRL_REG(bm_pool->id));
3693 val |= MVPP2_BM_START_MASK;
3694 mvpp2_write(priv, MVPP2_BM_POOL_CTRL_REG(bm_pool->id), val);
3695
3696 bm_pool->type = MVPP2_BM_FREE;
3697 bm_pool->size = size;
3698 bm_pool->pkt_size = 0;
3699 bm_pool->buf_num = 0;
Marcin Wojtas3f518502014-07-10 16:52:13 -03003700
3701 return 0;
3702}
3703
3704/* Set pool buffer size */
3705static void mvpp2_bm_pool_bufsize_set(struct mvpp2 *priv,
3706 struct mvpp2_bm_pool *bm_pool,
3707 int buf_size)
3708{
3709 u32 val;
3710
3711 bm_pool->buf_size = buf_size;
3712
3713 val = ALIGN(buf_size, 1 << MVPP2_POOL_BUF_SIZE_OFFSET);
3714 mvpp2_write(priv, MVPP2_POOL_BUF_SIZE_REG(bm_pool->id), val);
3715}
3716
Thomas Petazzonid01524d2017-03-07 16:53:09 +01003717static void mvpp2_bm_bufs_get_addrs(struct device *dev, struct mvpp2 *priv,
3718 struct mvpp2_bm_pool *bm_pool,
3719 dma_addr_t *dma_addr,
3720 phys_addr_t *phys_addr)
3721{
Thomas Petazzonia7868412017-03-07 16:53:13 +01003722 int cpu = smp_processor_id();
3723
3724 *dma_addr = mvpp2_percpu_read(priv, cpu,
3725 MVPP2_BM_PHY_ALLOC_REG(bm_pool->id));
3726 *phys_addr = mvpp2_percpu_read(priv, cpu, MVPP2_BM_VIRT_ALLOC_REG);
Thomas Petazzonid01524d2017-03-07 16:53:09 +01003727
3728 if (priv->hw_version == MVPP22) {
3729 u32 val;
3730 u32 dma_addr_highbits, phys_addr_highbits;
3731
Thomas Petazzonia7868412017-03-07 16:53:13 +01003732 val = mvpp2_percpu_read(priv, cpu, MVPP22_BM_ADDR_HIGH_ALLOC);
Thomas Petazzonid01524d2017-03-07 16:53:09 +01003733 dma_addr_highbits = (val & MVPP22_BM_ADDR_HIGH_PHYS_MASK);
3734 phys_addr_highbits = (val & MVPP22_BM_ADDR_HIGH_VIRT_MASK) >>
3735 MVPP22_BM_ADDR_HIGH_VIRT_SHIFT;
3736
3737 if (sizeof(dma_addr_t) == 8)
3738 *dma_addr |= (u64)dma_addr_highbits << 32;
3739
3740 if (sizeof(phys_addr_t) == 8)
3741 *phys_addr |= (u64)phys_addr_highbits << 32;
3742 }
3743}
3744
Ezequiel Garcia7861f122014-07-21 13:48:14 -03003745/* Free all buffers from the pool */
Marcin Wojtas4229d502015-12-03 15:20:50 +01003746static void mvpp2_bm_bufs_free(struct device *dev, struct mvpp2 *priv,
3747 struct mvpp2_bm_pool *bm_pool)
Marcin Wojtas3f518502014-07-10 16:52:13 -03003748{
3749 int i;
3750
Ezequiel Garcia7861f122014-07-21 13:48:14 -03003751 for (i = 0; i < bm_pool->buf_num; i++) {
Thomas Petazzoni20396132017-03-07 16:53:00 +01003752 dma_addr_t buf_dma_addr;
Thomas Petazzoni4e4a1052017-03-07 16:53:04 +01003753 phys_addr_t buf_phys_addr;
3754 void *data;
Marcin Wojtas3f518502014-07-10 16:52:13 -03003755
Thomas Petazzonid01524d2017-03-07 16:53:09 +01003756 mvpp2_bm_bufs_get_addrs(dev, priv, bm_pool,
3757 &buf_dma_addr, &buf_phys_addr);
Marcin Wojtas4229d502015-12-03 15:20:50 +01003758
Thomas Petazzoni20396132017-03-07 16:53:00 +01003759 dma_unmap_single(dev, buf_dma_addr,
Marcin Wojtas4229d502015-12-03 15:20:50 +01003760 bm_pool->buf_size, DMA_FROM_DEVICE);
3761
Thomas Petazzoni4e4a1052017-03-07 16:53:04 +01003762 data = (void *)phys_to_virt(buf_phys_addr);
3763 if (!data)
Marcin Wojtas3f518502014-07-10 16:52:13 -03003764 break;
Thomas Petazzoni0e037282017-02-21 11:28:12 +01003765
Thomas Petazzoni4e4a1052017-03-07 16:53:04 +01003766 mvpp2_frag_free(bm_pool, data);
Marcin Wojtas3f518502014-07-10 16:52:13 -03003767 }
3768
3769 /* Update BM driver with number of buffers removed from pool */
3770 bm_pool->buf_num -= i;
Marcin Wojtas3f518502014-07-10 16:52:13 -03003771}
3772
3773/* Cleanup pool */
3774static int mvpp2_bm_pool_destroy(struct platform_device *pdev,
3775 struct mvpp2 *priv,
3776 struct mvpp2_bm_pool *bm_pool)
3777{
Marcin Wojtas3f518502014-07-10 16:52:13 -03003778 u32 val;
3779
Marcin Wojtas4229d502015-12-03 15:20:50 +01003780 mvpp2_bm_bufs_free(&pdev->dev, priv, bm_pool);
Ezequiel Garciad74c96c2014-07-21 13:48:13 -03003781 if (bm_pool->buf_num) {
Marcin Wojtas3f518502014-07-10 16:52:13 -03003782 WARN(1, "cannot free all buffers in pool %d\n", bm_pool->id);
3783 return 0;
3784 }
3785
3786 val = mvpp2_read(priv, MVPP2_BM_POOL_CTRL_REG(bm_pool->id));
3787 val |= MVPP2_BM_STOP_MASK;
3788 mvpp2_write(priv, MVPP2_BM_POOL_CTRL_REG(bm_pool->id), val);
3789
Thomas Petazzonid01524d2017-03-07 16:53:09 +01003790 dma_free_coherent(&pdev->dev, bm_pool->size_bytes,
Marcin Wojtas3f518502014-07-10 16:52:13 -03003791 bm_pool->virt_addr,
Thomas Petazzoni20396132017-03-07 16:53:00 +01003792 bm_pool->dma_addr);
Marcin Wojtas3f518502014-07-10 16:52:13 -03003793 return 0;
3794}
3795
3796static int mvpp2_bm_pools_init(struct platform_device *pdev,
3797 struct mvpp2 *priv)
3798{
3799 int i, err, size;
3800 struct mvpp2_bm_pool *bm_pool;
3801
3802 /* Create all pools with maximum size */
3803 size = MVPP2_BM_POOL_SIZE_MAX;
3804 for (i = 0; i < MVPP2_BM_POOLS_NUM; i++) {
3805 bm_pool = &priv->bm_pools[i];
3806 bm_pool->id = i;
3807 err = mvpp2_bm_pool_create(pdev, priv, bm_pool, size);
3808 if (err)
3809 goto err_unroll_pools;
3810 mvpp2_bm_pool_bufsize_set(priv, bm_pool, 0);
3811 }
3812 return 0;
3813
3814err_unroll_pools:
3815 dev_err(&pdev->dev, "failed to create BM pool %d, size %d\n", i, size);
3816 for (i = i - 1; i >= 0; i--)
3817 mvpp2_bm_pool_destroy(pdev, priv, &priv->bm_pools[i]);
3818 return err;
3819}
3820
3821static int mvpp2_bm_init(struct platform_device *pdev, struct mvpp2 *priv)
3822{
3823 int i, err;
3824
3825 for (i = 0; i < MVPP2_BM_POOLS_NUM; i++) {
3826 /* Mask BM all interrupts */
3827 mvpp2_write(priv, MVPP2_BM_INTR_MASK_REG(i), 0);
3828 /* Clear BM cause register */
3829 mvpp2_write(priv, MVPP2_BM_INTR_CAUSE_REG(i), 0);
3830 }
3831
3832 /* Allocate and initialize BM pools */
3833 priv->bm_pools = devm_kcalloc(&pdev->dev, MVPP2_BM_POOLS_NUM,
Markus Elfring81f915e2017-04-17 09:06:33 +02003834 sizeof(*priv->bm_pools), GFP_KERNEL);
Marcin Wojtas3f518502014-07-10 16:52:13 -03003835 if (!priv->bm_pools)
3836 return -ENOMEM;
3837
3838 err = mvpp2_bm_pools_init(pdev, priv);
3839 if (err < 0)
3840 return err;
3841 return 0;
3842}
3843
3844/* Attach long pool to rxq */
3845static void mvpp2_rxq_long_pool_set(struct mvpp2_port *port,
3846 int lrxq, int long_pool)
3847{
Thomas Petazzoni5eac8922017-03-07 16:53:10 +01003848 u32 val, mask;
Marcin Wojtas3f518502014-07-10 16:52:13 -03003849 int prxq;
3850
3851 /* Get queue physical ID */
3852 prxq = port->rxqs[lrxq]->id;
3853
Thomas Petazzoni5eac8922017-03-07 16:53:10 +01003854 if (port->priv->hw_version == MVPP21)
3855 mask = MVPP21_RXQ_POOL_LONG_MASK;
3856 else
3857 mask = MVPP22_RXQ_POOL_LONG_MASK;
Marcin Wojtas3f518502014-07-10 16:52:13 -03003858
Thomas Petazzoni5eac8922017-03-07 16:53:10 +01003859 val = mvpp2_read(port->priv, MVPP2_RXQ_CONFIG_REG(prxq));
3860 val &= ~mask;
3861 val |= (long_pool << MVPP2_RXQ_POOL_LONG_OFFS) & mask;
Marcin Wojtas3f518502014-07-10 16:52:13 -03003862 mvpp2_write(port->priv, MVPP2_RXQ_CONFIG_REG(prxq), val);
3863}
3864
3865/* Attach short pool to rxq */
3866static void mvpp2_rxq_short_pool_set(struct mvpp2_port *port,
3867 int lrxq, int short_pool)
3868{
Thomas Petazzoni5eac8922017-03-07 16:53:10 +01003869 u32 val, mask;
Marcin Wojtas3f518502014-07-10 16:52:13 -03003870 int prxq;
3871
3872 /* Get queue physical ID */
3873 prxq = port->rxqs[lrxq]->id;
3874
Thomas Petazzoni5eac8922017-03-07 16:53:10 +01003875 if (port->priv->hw_version == MVPP21)
3876 mask = MVPP21_RXQ_POOL_SHORT_MASK;
3877 else
3878 mask = MVPP22_RXQ_POOL_SHORT_MASK;
Marcin Wojtas3f518502014-07-10 16:52:13 -03003879
Thomas Petazzoni5eac8922017-03-07 16:53:10 +01003880 val = mvpp2_read(port->priv, MVPP2_RXQ_CONFIG_REG(prxq));
3881 val &= ~mask;
3882 val |= (short_pool << MVPP2_RXQ_POOL_SHORT_OFFS) & mask;
Marcin Wojtas3f518502014-07-10 16:52:13 -03003883 mvpp2_write(port->priv, MVPP2_RXQ_CONFIG_REG(prxq), val);
3884}
3885
Thomas Petazzoni0e037282017-02-21 11:28:12 +01003886static void *mvpp2_buf_alloc(struct mvpp2_port *port,
3887 struct mvpp2_bm_pool *bm_pool,
Thomas Petazzoni20396132017-03-07 16:53:00 +01003888 dma_addr_t *buf_dma_addr,
Thomas Petazzoni4e4a1052017-03-07 16:53:04 +01003889 phys_addr_t *buf_phys_addr,
Thomas Petazzoni0e037282017-02-21 11:28:12 +01003890 gfp_t gfp_mask)
Marcin Wojtas3f518502014-07-10 16:52:13 -03003891{
Thomas Petazzoni20396132017-03-07 16:53:00 +01003892 dma_addr_t dma_addr;
Thomas Petazzoni0e037282017-02-21 11:28:12 +01003893 void *data;
Marcin Wojtas3f518502014-07-10 16:52:13 -03003894
Thomas Petazzoni0e037282017-02-21 11:28:12 +01003895 data = mvpp2_frag_alloc(bm_pool);
3896 if (!data)
Marcin Wojtas3f518502014-07-10 16:52:13 -03003897 return NULL;
3898
Thomas Petazzoni20396132017-03-07 16:53:00 +01003899 dma_addr = dma_map_single(port->dev->dev.parent, data,
3900 MVPP2_RX_BUF_SIZE(bm_pool->pkt_size),
3901 DMA_FROM_DEVICE);
3902 if (unlikely(dma_mapping_error(port->dev->dev.parent, dma_addr))) {
Thomas Petazzoni0e037282017-02-21 11:28:12 +01003903 mvpp2_frag_free(bm_pool, data);
Marcin Wojtas3f518502014-07-10 16:52:13 -03003904 return NULL;
3905 }
Thomas Petazzoni20396132017-03-07 16:53:00 +01003906 *buf_dma_addr = dma_addr;
Thomas Petazzoni4e4a1052017-03-07 16:53:04 +01003907 *buf_phys_addr = virt_to_phys(data);
Marcin Wojtas3f518502014-07-10 16:52:13 -03003908
Thomas Petazzoni0e037282017-02-21 11:28:12 +01003909 return data;
Marcin Wojtas3f518502014-07-10 16:52:13 -03003910}
3911
3912/* Set pool number in a BM cookie */
3913static inline u32 mvpp2_bm_cookie_pool_set(u32 cookie, int pool)
3914{
3915 u32 bm;
3916
3917 bm = cookie & ~(0xFF << MVPP2_BM_COOKIE_POOL_OFFS);
3918 bm |= ((pool & 0xFF) << MVPP2_BM_COOKIE_POOL_OFFS);
3919
3920 return bm;
3921}
3922
3923/* Get pool number from a BM cookie */
Thomas Petazzonid3158802017-02-21 11:28:13 +01003924static inline int mvpp2_bm_cookie_pool_get(unsigned long cookie)
Marcin Wojtas3f518502014-07-10 16:52:13 -03003925{
3926 return (cookie >> MVPP2_BM_COOKIE_POOL_OFFS) & 0xFF;
3927}
3928
3929/* Release buffer to BM */
3930static inline void mvpp2_bm_pool_put(struct mvpp2_port *port, int pool,
Thomas Petazzoni20396132017-03-07 16:53:00 +01003931 dma_addr_t buf_dma_addr,
Thomas Petazzoni4e4a1052017-03-07 16:53:04 +01003932 phys_addr_t buf_phys_addr)
Marcin Wojtas3f518502014-07-10 16:52:13 -03003933{
Thomas Petazzonia7868412017-03-07 16:53:13 +01003934 int cpu = smp_processor_id();
3935
Thomas Petazzonid01524d2017-03-07 16:53:09 +01003936 if (port->priv->hw_version == MVPP22) {
3937 u32 val = 0;
3938
3939 if (sizeof(dma_addr_t) == 8)
3940 val |= upper_32_bits(buf_dma_addr) &
3941 MVPP22_BM_ADDR_HIGH_PHYS_RLS_MASK;
3942
3943 if (sizeof(phys_addr_t) == 8)
3944 val |= (upper_32_bits(buf_phys_addr)
3945 << MVPP22_BM_ADDR_HIGH_VIRT_RLS_SHIFT) &
3946 MVPP22_BM_ADDR_HIGH_VIRT_RLS_MASK;
3947
Thomas Petazzonia7868412017-03-07 16:53:13 +01003948 mvpp2_percpu_write(port->priv, cpu,
3949 MVPP22_BM_ADDR_HIGH_RLS_REG, val);
Thomas Petazzonid01524d2017-03-07 16:53:09 +01003950 }
3951
Thomas Petazzoni4e4a1052017-03-07 16:53:04 +01003952 /* MVPP2_BM_VIRT_RLS_REG is not interpreted by HW, and simply
3953 * returned in the "cookie" field of the RX
3954 * descriptor. Instead of storing the virtual address, we
3955 * store the physical address
3956 */
Thomas Petazzonia7868412017-03-07 16:53:13 +01003957 mvpp2_percpu_write(port->priv, cpu,
3958 MVPP2_BM_VIRT_RLS_REG, buf_phys_addr);
3959 mvpp2_percpu_write(port->priv, cpu,
3960 MVPP2_BM_PHY_RLS_REG(pool), buf_dma_addr);
Marcin Wojtas3f518502014-07-10 16:52:13 -03003961}
3962
Marcin Wojtas3f518502014-07-10 16:52:13 -03003963/* Refill BM pool */
3964static void mvpp2_pool_refill(struct mvpp2_port *port, u32 bm,
Thomas Petazzoni20396132017-03-07 16:53:00 +01003965 dma_addr_t dma_addr,
Thomas Petazzoni4e4a1052017-03-07 16:53:04 +01003966 phys_addr_t phys_addr)
Marcin Wojtas3f518502014-07-10 16:52:13 -03003967{
3968 int pool = mvpp2_bm_cookie_pool_get(bm);
3969
Thomas Petazzoni4e4a1052017-03-07 16:53:04 +01003970 mvpp2_bm_pool_put(port, pool, dma_addr, phys_addr);
Marcin Wojtas3f518502014-07-10 16:52:13 -03003971}
3972
3973/* Allocate buffers for the pool */
3974static int mvpp2_bm_bufs_add(struct mvpp2_port *port,
3975 struct mvpp2_bm_pool *bm_pool, int buf_num)
3976{
Marcin Wojtas3f518502014-07-10 16:52:13 -03003977 int i, buf_size, total_size;
Thomas Petazzoni20396132017-03-07 16:53:00 +01003978 dma_addr_t dma_addr;
Thomas Petazzoni4e4a1052017-03-07 16:53:04 +01003979 phys_addr_t phys_addr;
Thomas Petazzoni0e037282017-02-21 11:28:12 +01003980 void *buf;
Marcin Wojtas3f518502014-07-10 16:52:13 -03003981
3982 buf_size = MVPP2_RX_BUF_SIZE(bm_pool->pkt_size);
3983 total_size = MVPP2_RX_TOTAL_SIZE(buf_size);
3984
3985 if (buf_num < 0 ||
3986 (buf_num + bm_pool->buf_num > bm_pool->size)) {
3987 netdev_err(port->dev,
3988 "cannot allocate %d buffers for pool %d\n",
3989 buf_num, bm_pool->id);
3990 return 0;
3991 }
3992
Marcin Wojtas3f518502014-07-10 16:52:13 -03003993 for (i = 0; i < buf_num; i++) {
Thomas Petazzoni4e4a1052017-03-07 16:53:04 +01003994 buf = mvpp2_buf_alloc(port, bm_pool, &dma_addr,
3995 &phys_addr, GFP_KERNEL);
Thomas Petazzoni0e037282017-02-21 11:28:12 +01003996 if (!buf)
Marcin Wojtas3f518502014-07-10 16:52:13 -03003997 break;
3998
Thomas Petazzoni20396132017-03-07 16:53:00 +01003999 mvpp2_bm_pool_put(port, bm_pool->id, dma_addr,
Thomas Petazzoni4e4a1052017-03-07 16:53:04 +01004000 phys_addr);
Marcin Wojtas3f518502014-07-10 16:52:13 -03004001 }
4002
4003 /* Update BM driver with number of buffers added to pool */
4004 bm_pool->buf_num += i;
Marcin Wojtas3f518502014-07-10 16:52:13 -03004005
4006 netdev_dbg(port->dev,
4007 "%s pool %d: pkt_size=%4d, buf_size=%4d, total_size=%4d\n",
4008 bm_pool->type == MVPP2_BM_SWF_SHORT ? "short" : " long",
4009 bm_pool->id, bm_pool->pkt_size, buf_size, total_size);
4010
4011 netdev_dbg(port->dev,
4012 "%s pool %d: %d of %d buffers added\n",
4013 bm_pool->type == MVPP2_BM_SWF_SHORT ? "short" : " long",
4014 bm_pool->id, i, buf_num);
4015 return i;
4016}
4017
4018/* Notify the driver that BM pool is being used as specific type and return the
4019 * pool pointer on success
4020 */
4021static struct mvpp2_bm_pool *
4022mvpp2_bm_pool_use(struct mvpp2_port *port, int pool, enum mvpp2_bm_type type,
4023 int pkt_size)
4024{
Marcin Wojtas3f518502014-07-10 16:52:13 -03004025 struct mvpp2_bm_pool *new_pool = &port->priv->bm_pools[pool];
4026 int num;
4027
4028 if (new_pool->type != MVPP2_BM_FREE && new_pool->type != type) {
4029 netdev_err(port->dev, "mixing pool types is forbidden\n");
4030 return NULL;
4031 }
4032
Marcin Wojtas3f518502014-07-10 16:52:13 -03004033 if (new_pool->type == MVPP2_BM_FREE)
4034 new_pool->type = type;
4035
4036 /* Allocate buffers in case BM pool is used as long pool, but packet
4037 * size doesn't match MTU or BM pool hasn't being used yet
4038 */
4039 if (((type == MVPP2_BM_SWF_LONG) && (pkt_size > new_pool->pkt_size)) ||
4040 (new_pool->pkt_size == 0)) {
4041 int pkts_num;
4042
4043 /* Set default buffer number or free all the buffers in case
4044 * the pool is not empty
4045 */
4046 pkts_num = new_pool->buf_num;
4047 if (pkts_num == 0)
4048 pkts_num = type == MVPP2_BM_SWF_LONG ?
4049 MVPP2_BM_LONG_BUF_NUM :
4050 MVPP2_BM_SHORT_BUF_NUM;
4051 else
Marcin Wojtas4229d502015-12-03 15:20:50 +01004052 mvpp2_bm_bufs_free(port->dev->dev.parent,
4053 port->priv, new_pool);
Marcin Wojtas3f518502014-07-10 16:52:13 -03004054
4055 new_pool->pkt_size = pkt_size;
Thomas Petazzoni0e037282017-02-21 11:28:12 +01004056 new_pool->frag_size =
4057 SKB_DATA_ALIGN(MVPP2_RX_BUF_SIZE(pkt_size)) +
4058 MVPP2_SKB_SHINFO_SIZE;
Marcin Wojtas3f518502014-07-10 16:52:13 -03004059
4060 /* Allocate buffers for this pool */
4061 num = mvpp2_bm_bufs_add(port, new_pool, pkts_num);
4062 if (num != pkts_num) {
4063 WARN(1, "pool %d: %d of %d allocated\n",
4064 new_pool->id, num, pkts_num);
Marcin Wojtas3f518502014-07-10 16:52:13 -03004065 return NULL;
4066 }
4067 }
4068
4069 mvpp2_bm_pool_bufsize_set(port->priv, new_pool,
4070 MVPP2_RX_BUF_SIZE(new_pool->pkt_size));
4071
Marcin Wojtas3f518502014-07-10 16:52:13 -03004072 return new_pool;
4073}
4074
4075/* Initialize pools for swf */
4076static int mvpp2_swf_bm_pool_init(struct mvpp2_port *port)
4077{
Marcin Wojtas3f518502014-07-10 16:52:13 -03004078 int rxq;
4079
4080 if (!port->pool_long) {
4081 port->pool_long =
4082 mvpp2_bm_pool_use(port, MVPP2_BM_SWF_LONG_POOL(port->id),
4083 MVPP2_BM_SWF_LONG,
4084 port->pkt_size);
4085 if (!port->pool_long)
4086 return -ENOMEM;
4087
Marcin Wojtas3f518502014-07-10 16:52:13 -03004088 port->pool_long->port_map |= (1 << port->id);
Marcin Wojtas3f518502014-07-10 16:52:13 -03004089
4090 for (rxq = 0; rxq < rxq_number; rxq++)
4091 mvpp2_rxq_long_pool_set(port, rxq, port->pool_long->id);
4092 }
4093
4094 if (!port->pool_short) {
4095 port->pool_short =
4096 mvpp2_bm_pool_use(port, MVPP2_BM_SWF_SHORT_POOL,
4097 MVPP2_BM_SWF_SHORT,
4098 MVPP2_BM_SHORT_PKT_SIZE);
4099 if (!port->pool_short)
4100 return -ENOMEM;
4101
Marcin Wojtas3f518502014-07-10 16:52:13 -03004102 port->pool_short->port_map |= (1 << port->id);
Marcin Wojtas3f518502014-07-10 16:52:13 -03004103
4104 for (rxq = 0; rxq < rxq_number; rxq++)
4105 mvpp2_rxq_short_pool_set(port, rxq,
4106 port->pool_short->id);
4107 }
4108
4109 return 0;
4110}
4111
4112static int mvpp2_bm_update_mtu(struct net_device *dev, int mtu)
4113{
4114 struct mvpp2_port *port = netdev_priv(dev);
4115 struct mvpp2_bm_pool *port_pool = port->pool_long;
4116 int num, pkts_num = port_pool->buf_num;
4117 int pkt_size = MVPP2_RX_PKT_SIZE(mtu);
4118
4119 /* Update BM pool with new buffer size */
Marcin Wojtas4229d502015-12-03 15:20:50 +01004120 mvpp2_bm_bufs_free(dev->dev.parent, port->priv, port_pool);
Ezequiel Garciad74c96c2014-07-21 13:48:13 -03004121 if (port_pool->buf_num) {
Marcin Wojtas3f518502014-07-10 16:52:13 -03004122 WARN(1, "cannot free all buffers in pool %d\n", port_pool->id);
4123 return -EIO;
4124 }
4125
4126 port_pool->pkt_size = pkt_size;
Thomas Petazzoni0e037282017-02-21 11:28:12 +01004127 port_pool->frag_size = SKB_DATA_ALIGN(MVPP2_RX_BUF_SIZE(pkt_size)) +
4128 MVPP2_SKB_SHINFO_SIZE;
Marcin Wojtas3f518502014-07-10 16:52:13 -03004129 num = mvpp2_bm_bufs_add(port, port_pool, pkts_num);
4130 if (num != pkts_num) {
4131 WARN(1, "pool %d: %d of %d allocated\n",
4132 port_pool->id, num, pkts_num);
4133 return -EIO;
4134 }
4135
4136 mvpp2_bm_pool_bufsize_set(port->priv, port_pool,
4137 MVPP2_RX_BUF_SIZE(port_pool->pkt_size));
4138 dev->mtu = mtu;
4139 netdev_update_features(dev);
4140 return 0;
4141}
4142
4143static inline void mvpp2_interrupts_enable(struct mvpp2_port *port)
4144{
4145 int cpu, cpu_mask = 0;
4146
4147 for_each_present_cpu(cpu)
4148 cpu_mask |= 1 << cpu;
4149 mvpp2_write(port->priv, MVPP2_ISR_ENABLE_REG(port->id),
4150 MVPP2_ISR_ENABLE_INTERRUPT(cpu_mask));
4151}
4152
4153static inline void mvpp2_interrupts_disable(struct mvpp2_port *port)
4154{
4155 int cpu, cpu_mask = 0;
4156
4157 for_each_present_cpu(cpu)
4158 cpu_mask |= 1 << cpu;
4159 mvpp2_write(port->priv, MVPP2_ISR_ENABLE_REG(port->id),
4160 MVPP2_ISR_DISABLE_INTERRUPT(cpu_mask));
4161}
4162
4163/* Mask the current CPU's Rx/Tx interrupts */
4164static void mvpp2_interrupts_mask(void *arg)
4165{
4166 struct mvpp2_port *port = arg;
4167
Thomas Petazzonia7868412017-03-07 16:53:13 +01004168 mvpp2_percpu_write(port->priv, smp_processor_id(),
4169 MVPP2_ISR_RX_TX_MASK_REG(port->id), 0);
Marcin Wojtas3f518502014-07-10 16:52:13 -03004170}
4171
4172/* Unmask the current CPU's Rx/Tx interrupts */
4173static void mvpp2_interrupts_unmask(void *arg)
4174{
4175 struct mvpp2_port *port = arg;
4176
Thomas Petazzonia7868412017-03-07 16:53:13 +01004177 mvpp2_percpu_write(port->priv, smp_processor_id(),
4178 MVPP2_ISR_RX_TX_MASK_REG(port->id),
4179 (MVPP2_CAUSE_MISC_SUM_MASK |
4180 MVPP2_CAUSE_RXQ_OCCUP_DESC_ALL_MASK));
Marcin Wojtas3f518502014-07-10 16:52:13 -03004181}
4182
4183/* Port configuration routines */
4184
Thomas Petazzoni26975822017-03-07 16:53:14 +01004185static void mvpp22_port_mii_set(struct mvpp2_port *port)
4186{
4187 u32 val;
4188
4189 return;
4190
4191 /* Only GOP port 0 has an XLG MAC */
4192 if (port->gop_id == 0) {
4193 val = readl(port->base + MVPP22_XLG_CTRL3_REG);
4194 val &= ~MVPP22_XLG_CTRL3_MACMODESELECT_MASK;
4195 val |= MVPP22_XLG_CTRL3_MACMODESELECT_GMAC;
4196 writel(val, port->base + MVPP22_XLG_CTRL3_REG);
4197 }
4198
4199 val = readl(port->base + MVPP22_GMAC_CTRL_4_REG);
4200 if (port->phy_interface == PHY_INTERFACE_MODE_RGMII)
4201 val |= MVPP22_CTRL4_EXT_PIN_GMII_SEL;
4202 else
4203 val &= ~MVPP22_CTRL4_EXT_PIN_GMII_SEL;
4204 val &= ~MVPP22_CTRL4_DP_CLK_SEL;
4205 val |= MVPP22_CTRL4_SYNC_BYPASS;
4206 val |= MVPP22_CTRL4_QSGMII_BYPASS_ACTIVE;
4207 writel(val, port->base + MVPP22_GMAC_CTRL_4_REG);
4208}
4209
Marcin Wojtas3f518502014-07-10 16:52:13 -03004210static void mvpp2_port_mii_set(struct mvpp2_port *port)
4211{
Marcin Wojtas08a23752014-07-21 13:48:12 -03004212 u32 val;
Marcin Wojtas3f518502014-07-10 16:52:13 -03004213
Thomas Petazzoni26975822017-03-07 16:53:14 +01004214 if (port->priv->hw_version == MVPP22)
4215 mvpp22_port_mii_set(port);
4216
Marcin Wojtas08a23752014-07-21 13:48:12 -03004217 val = readl(port->base + MVPP2_GMAC_CTRL_2_REG);
Marcin Wojtas3f518502014-07-10 16:52:13 -03004218
Marcin Wojtas08a23752014-07-21 13:48:12 -03004219 switch (port->phy_interface) {
4220 case PHY_INTERFACE_MODE_SGMII:
4221 val |= MVPP2_GMAC_INBAND_AN_MASK;
4222 break;
4223 case PHY_INTERFACE_MODE_RGMII:
4224 val |= MVPP2_GMAC_PORT_RGMII_MASK;
4225 default:
4226 val &= ~MVPP2_GMAC_PCS_ENABLE_MASK;
4227 }
4228
4229 writel(val, port->base + MVPP2_GMAC_CTRL_2_REG);
4230}
4231
4232static void mvpp2_port_fc_adv_enable(struct mvpp2_port *port)
4233{
4234 u32 val;
4235
4236 val = readl(port->base + MVPP2_GMAC_AUTONEG_CONFIG);
4237 val |= MVPP2_GMAC_FC_ADV_EN;
4238 writel(val, port->base + MVPP2_GMAC_AUTONEG_CONFIG);
Marcin Wojtas3f518502014-07-10 16:52:13 -03004239}
4240
4241static void mvpp2_port_enable(struct mvpp2_port *port)
4242{
4243 u32 val;
4244
4245 val = readl(port->base + MVPP2_GMAC_CTRL_0_REG);
4246 val |= MVPP2_GMAC_PORT_EN_MASK;
4247 val |= MVPP2_GMAC_MIB_CNTR_EN_MASK;
4248 writel(val, port->base + MVPP2_GMAC_CTRL_0_REG);
4249}
4250
4251static void mvpp2_port_disable(struct mvpp2_port *port)
4252{
4253 u32 val;
4254
4255 val = readl(port->base + MVPP2_GMAC_CTRL_0_REG);
4256 val &= ~(MVPP2_GMAC_PORT_EN_MASK);
4257 writel(val, port->base + MVPP2_GMAC_CTRL_0_REG);
4258}
4259
4260/* Set IEEE 802.3x Flow Control Xon Packet Transmission Mode */
4261static void mvpp2_port_periodic_xon_disable(struct mvpp2_port *port)
4262{
4263 u32 val;
4264
4265 val = readl(port->base + MVPP2_GMAC_CTRL_1_REG) &
4266 ~MVPP2_GMAC_PERIODIC_XON_EN_MASK;
4267 writel(val, port->base + MVPP2_GMAC_CTRL_1_REG);
4268}
4269
4270/* Configure loopback port */
4271static void mvpp2_port_loopback_set(struct mvpp2_port *port)
4272{
4273 u32 val;
4274
4275 val = readl(port->base + MVPP2_GMAC_CTRL_1_REG);
4276
4277 if (port->speed == 1000)
4278 val |= MVPP2_GMAC_GMII_LB_EN_MASK;
4279 else
4280 val &= ~MVPP2_GMAC_GMII_LB_EN_MASK;
4281
4282 if (port->phy_interface == PHY_INTERFACE_MODE_SGMII)
4283 val |= MVPP2_GMAC_PCS_LB_EN_MASK;
4284 else
4285 val &= ~MVPP2_GMAC_PCS_LB_EN_MASK;
4286
4287 writel(val, port->base + MVPP2_GMAC_CTRL_1_REG);
4288}
4289
4290static void mvpp2_port_reset(struct mvpp2_port *port)
4291{
4292 u32 val;
4293
4294 val = readl(port->base + MVPP2_GMAC_CTRL_2_REG) &
4295 ~MVPP2_GMAC_PORT_RESET_MASK;
4296 writel(val, port->base + MVPP2_GMAC_CTRL_2_REG);
4297
4298 while (readl(port->base + MVPP2_GMAC_CTRL_2_REG) &
4299 MVPP2_GMAC_PORT_RESET_MASK)
4300 continue;
4301}
4302
4303/* Change maximum receive size of the port */
4304static inline void mvpp2_gmac_max_rx_size_set(struct mvpp2_port *port)
4305{
4306 u32 val;
4307
4308 val = readl(port->base + MVPP2_GMAC_CTRL_0_REG);
4309 val &= ~MVPP2_GMAC_MAX_RX_SIZE_MASK;
4310 val |= (((port->pkt_size - MVPP2_MH_SIZE) / 2) <<
4311 MVPP2_GMAC_MAX_RX_SIZE_OFFS);
4312 writel(val, port->base + MVPP2_GMAC_CTRL_0_REG);
4313}
4314
4315/* Set defaults to the MVPP2 port */
4316static void mvpp2_defaults_set(struct mvpp2_port *port)
4317{
4318 int tx_port_num, val, queue, ptxq, lrxq;
4319
Thomas Petazzoni3d9017d2017-03-07 16:53:11 +01004320 if (port->priv->hw_version == MVPP21) {
4321 /* Configure port to loopback if needed */
4322 if (port->flags & MVPP2_F_LOOPBACK)
4323 mvpp2_port_loopback_set(port);
Marcin Wojtas3f518502014-07-10 16:52:13 -03004324
Thomas Petazzoni3d9017d2017-03-07 16:53:11 +01004325 /* Update TX FIFO MIN Threshold */
4326 val = readl(port->base + MVPP2_GMAC_PORT_FIFO_CFG_1_REG);
4327 val &= ~MVPP2_GMAC_TX_FIFO_MIN_TH_ALL_MASK;
4328 /* Min. TX threshold must be less than minimal packet length */
4329 val |= MVPP2_GMAC_TX_FIFO_MIN_TH_MASK(64 - 4 - 2);
4330 writel(val, port->base + MVPP2_GMAC_PORT_FIFO_CFG_1_REG);
4331 }
Marcin Wojtas3f518502014-07-10 16:52:13 -03004332
4333 /* Disable Legacy WRR, Disable EJP, Release from reset */
4334 tx_port_num = mvpp2_egress_port(port);
4335 mvpp2_write(port->priv, MVPP2_TXP_SCHED_PORT_INDEX_REG,
4336 tx_port_num);
4337 mvpp2_write(port->priv, MVPP2_TXP_SCHED_CMD_1_REG, 0);
4338
4339 /* Close bandwidth for all queues */
4340 for (queue = 0; queue < MVPP2_MAX_TXQ; queue++) {
4341 ptxq = mvpp2_txq_phys(port->id, queue);
4342 mvpp2_write(port->priv,
4343 MVPP2_TXQ_SCHED_TOKEN_CNTR_REG(ptxq), 0);
4344 }
4345
4346 /* Set refill period to 1 usec, refill tokens
4347 * and bucket size to maximum
4348 */
4349 mvpp2_write(port->priv, MVPP2_TXP_SCHED_PERIOD_REG,
4350 port->priv->tclk / USEC_PER_SEC);
4351 val = mvpp2_read(port->priv, MVPP2_TXP_SCHED_REFILL_REG);
4352 val &= ~MVPP2_TXP_REFILL_PERIOD_ALL_MASK;
4353 val |= MVPP2_TXP_REFILL_PERIOD_MASK(1);
4354 val |= MVPP2_TXP_REFILL_TOKENS_ALL_MASK;
4355 mvpp2_write(port->priv, MVPP2_TXP_SCHED_REFILL_REG, val);
4356 val = MVPP2_TXP_TOKEN_SIZE_MAX;
4357 mvpp2_write(port->priv, MVPP2_TXP_SCHED_TOKEN_SIZE_REG, val);
4358
4359 /* Set MaximumLowLatencyPacketSize value to 256 */
4360 mvpp2_write(port->priv, MVPP2_RX_CTRL_REG(port->id),
4361 MVPP2_RX_USE_PSEUDO_FOR_CSUM_MASK |
4362 MVPP2_RX_LOW_LATENCY_PKT_SIZE(256));
4363
4364 /* Enable Rx cache snoop */
4365 for (lrxq = 0; lrxq < rxq_number; lrxq++) {
4366 queue = port->rxqs[lrxq]->id;
4367 val = mvpp2_read(port->priv, MVPP2_RXQ_CONFIG_REG(queue));
4368 val |= MVPP2_SNOOP_PKT_SIZE_MASK |
4369 MVPP2_SNOOP_BUF_HDR_MASK;
4370 mvpp2_write(port->priv, MVPP2_RXQ_CONFIG_REG(queue), val);
4371 }
4372
4373 /* At default, mask all interrupts to all present cpus */
4374 mvpp2_interrupts_disable(port);
4375}
4376
4377/* Enable/disable receiving packets */
4378static void mvpp2_ingress_enable(struct mvpp2_port *port)
4379{
4380 u32 val;
4381 int lrxq, queue;
4382
4383 for (lrxq = 0; lrxq < rxq_number; lrxq++) {
4384 queue = port->rxqs[lrxq]->id;
4385 val = mvpp2_read(port->priv, MVPP2_RXQ_CONFIG_REG(queue));
4386 val &= ~MVPP2_RXQ_DISABLE_MASK;
4387 mvpp2_write(port->priv, MVPP2_RXQ_CONFIG_REG(queue), val);
4388 }
4389}
4390
4391static void mvpp2_ingress_disable(struct mvpp2_port *port)
4392{
4393 u32 val;
4394 int lrxq, queue;
4395
4396 for (lrxq = 0; lrxq < rxq_number; lrxq++) {
4397 queue = port->rxqs[lrxq]->id;
4398 val = mvpp2_read(port->priv, MVPP2_RXQ_CONFIG_REG(queue));
4399 val |= MVPP2_RXQ_DISABLE_MASK;
4400 mvpp2_write(port->priv, MVPP2_RXQ_CONFIG_REG(queue), val);
4401 }
4402}
4403
4404/* Enable transmit via physical egress queue
4405 * - HW starts take descriptors from DRAM
4406 */
4407static void mvpp2_egress_enable(struct mvpp2_port *port)
4408{
4409 u32 qmap;
4410 int queue;
4411 int tx_port_num = mvpp2_egress_port(port);
4412
4413 /* Enable all initialized TXs. */
4414 qmap = 0;
4415 for (queue = 0; queue < txq_number; queue++) {
4416 struct mvpp2_tx_queue *txq = port->txqs[queue];
4417
Markus Elfringdbbb2f02017-04-17 14:07:52 +02004418 if (txq->descs)
Marcin Wojtas3f518502014-07-10 16:52:13 -03004419 qmap |= (1 << queue);
4420 }
4421
4422 mvpp2_write(port->priv, MVPP2_TXP_SCHED_PORT_INDEX_REG, tx_port_num);
4423 mvpp2_write(port->priv, MVPP2_TXP_SCHED_Q_CMD_REG, qmap);
4424}
4425
4426/* Disable transmit via physical egress queue
4427 * - HW doesn't take descriptors from DRAM
4428 */
4429static void mvpp2_egress_disable(struct mvpp2_port *port)
4430{
4431 u32 reg_data;
4432 int delay;
4433 int tx_port_num = mvpp2_egress_port(port);
4434
4435 /* Issue stop command for active channels only */
4436 mvpp2_write(port->priv, MVPP2_TXP_SCHED_PORT_INDEX_REG, tx_port_num);
4437 reg_data = (mvpp2_read(port->priv, MVPP2_TXP_SCHED_Q_CMD_REG)) &
4438 MVPP2_TXP_SCHED_ENQ_MASK;
4439 if (reg_data != 0)
4440 mvpp2_write(port->priv, MVPP2_TXP_SCHED_Q_CMD_REG,
4441 (reg_data << MVPP2_TXP_SCHED_DISQ_OFFSET));
4442
4443 /* Wait for all Tx activity to terminate. */
4444 delay = 0;
4445 do {
4446 if (delay >= MVPP2_TX_DISABLE_TIMEOUT_MSEC) {
4447 netdev_warn(port->dev,
4448 "Tx stop timed out, status=0x%08x\n",
4449 reg_data);
4450 break;
4451 }
4452 mdelay(1);
4453 delay++;
4454
4455 /* Check port TX Command register that all
4456 * Tx queues are stopped
4457 */
4458 reg_data = mvpp2_read(port->priv, MVPP2_TXP_SCHED_Q_CMD_REG);
4459 } while (reg_data & MVPP2_TXP_SCHED_ENQ_MASK);
4460}
4461
4462/* Rx descriptors helper methods */
4463
4464/* Get number of Rx descriptors occupied by received packets */
4465static inline int
4466mvpp2_rxq_received(struct mvpp2_port *port, int rxq_id)
4467{
4468 u32 val = mvpp2_read(port->priv, MVPP2_RXQ_STATUS_REG(rxq_id));
4469
4470 return val & MVPP2_RXQ_OCCUPIED_MASK;
4471}
4472
4473/* Update Rx queue status with the number of occupied and available
4474 * Rx descriptor slots.
4475 */
4476static inline void
4477mvpp2_rxq_status_update(struct mvpp2_port *port, int rxq_id,
4478 int used_count, int free_count)
4479{
4480 /* Decrement the number of used descriptors and increment count
4481 * increment the number of free descriptors.
4482 */
4483 u32 val = used_count | (free_count << MVPP2_RXQ_NUM_NEW_OFFSET);
4484
4485 mvpp2_write(port->priv, MVPP2_RXQ_STATUS_UPDATE_REG(rxq_id), val);
4486}
4487
4488/* Get pointer to next RX descriptor to be processed by SW */
4489static inline struct mvpp2_rx_desc *
4490mvpp2_rxq_next_desc_get(struct mvpp2_rx_queue *rxq)
4491{
4492 int rx_desc = rxq->next_desc_to_proc;
4493
4494 rxq->next_desc_to_proc = MVPP2_QUEUE_NEXT_DESC(rxq, rx_desc);
4495 prefetch(rxq->descs + rxq->next_desc_to_proc);
4496 return rxq->descs + rx_desc;
4497}
4498
4499/* Set rx queue offset */
4500static void mvpp2_rxq_offset_set(struct mvpp2_port *port,
4501 int prxq, int offset)
4502{
4503 u32 val;
4504
4505 /* Convert offset from bytes to units of 32 bytes */
4506 offset = offset >> 5;
4507
4508 val = mvpp2_read(port->priv, MVPP2_RXQ_CONFIG_REG(prxq));
4509 val &= ~MVPP2_RXQ_PACKET_OFFSET_MASK;
4510
4511 /* Offset is in */
4512 val |= ((offset << MVPP2_RXQ_PACKET_OFFSET_OFFS) &
4513 MVPP2_RXQ_PACKET_OFFSET_MASK);
4514
4515 mvpp2_write(port->priv, MVPP2_RXQ_CONFIG_REG(prxq), val);
4516}
4517
4518/* Obtain BM cookie information from descriptor */
Thomas Petazzoniac3dd2772017-03-07 16:53:05 +01004519static u32 mvpp2_bm_cookie_build(struct mvpp2_port *port,
4520 struct mvpp2_rx_desc *rx_desc)
Marcin Wojtas3f518502014-07-10 16:52:13 -03004521{
Marcin Wojtas3f518502014-07-10 16:52:13 -03004522 int cpu = smp_processor_id();
Thomas Petazzoniac3dd2772017-03-07 16:53:05 +01004523 int pool;
4524
4525 pool = (mvpp2_rxdesc_status_get(port, rx_desc) &
4526 MVPP2_RXD_BM_POOL_ID_MASK) >>
4527 MVPP2_RXD_BM_POOL_ID_OFFS;
Marcin Wojtas3f518502014-07-10 16:52:13 -03004528
4529 return ((pool & 0xFF) << MVPP2_BM_COOKIE_POOL_OFFS) |
4530 ((cpu & 0xFF) << MVPP2_BM_COOKIE_CPU_OFFS);
4531}
4532
4533/* Tx descriptors helper methods */
4534
Marcin Wojtas3f518502014-07-10 16:52:13 -03004535/* Get pointer to next Tx descriptor to be processed (send) by HW */
4536static struct mvpp2_tx_desc *
4537mvpp2_txq_next_desc_get(struct mvpp2_tx_queue *txq)
4538{
4539 int tx_desc = txq->next_desc_to_proc;
4540
4541 txq->next_desc_to_proc = MVPP2_QUEUE_NEXT_DESC(txq, tx_desc);
4542 return txq->descs + tx_desc;
4543}
4544
4545/* Update HW with number of aggregated Tx descriptors to be sent */
4546static void mvpp2_aggr_txq_pend_desc_add(struct mvpp2_port *port, int pending)
4547{
4548 /* aggregated access - relevant TXQ number is written in TX desc */
Thomas Petazzonia7868412017-03-07 16:53:13 +01004549 mvpp2_percpu_write(port->priv, smp_processor_id(),
4550 MVPP2_AGGR_TXQ_UPDATE_REG, pending);
Marcin Wojtas3f518502014-07-10 16:52:13 -03004551}
4552
4553
4554/* Check if there are enough free descriptors in aggregated txq.
4555 * If not, update the number of occupied descriptors and repeat the check.
4556 */
4557static int mvpp2_aggr_desc_num_check(struct mvpp2 *priv,
4558 struct mvpp2_tx_queue *aggr_txq, int num)
4559{
4560 if ((aggr_txq->count + num) > aggr_txq->size) {
4561 /* Update number of occupied aggregated Tx descriptors */
4562 int cpu = smp_processor_id();
4563 u32 val = mvpp2_read(priv, MVPP2_AGGR_TXQ_STATUS_REG(cpu));
4564
4565 aggr_txq->count = val & MVPP2_AGGR_TXQ_PENDING_MASK;
4566 }
4567
4568 if ((aggr_txq->count + num) > aggr_txq->size)
4569 return -ENOMEM;
4570
4571 return 0;
4572}
4573
4574/* Reserved Tx descriptors allocation request */
4575static int mvpp2_txq_alloc_reserved_desc(struct mvpp2 *priv,
4576 struct mvpp2_tx_queue *txq, int num)
4577{
4578 u32 val;
Thomas Petazzonia7868412017-03-07 16:53:13 +01004579 int cpu = smp_processor_id();
Marcin Wojtas3f518502014-07-10 16:52:13 -03004580
4581 val = (txq->id << MVPP2_TXQ_RSVD_REQ_Q_OFFSET) | num;
Thomas Petazzonia7868412017-03-07 16:53:13 +01004582 mvpp2_percpu_write(priv, cpu, MVPP2_TXQ_RSVD_REQ_REG, val);
Marcin Wojtas3f518502014-07-10 16:52:13 -03004583
Thomas Petazzonia7868412017-03-07 16:53:13 +01004584 val = mvpp2_percpu_read(priv, cpu, MVPP2_TXQ_RSVD_RSLT_REG);
Marcin Wojtas3f518502014-07-10 16:52:13 -03004585
4586 return val & MVPP2_TXQ_RSVD_RSLT_MASK;
4587}
4588
4589/* Check if there are enough reserved descriptors for transmission.
4590 * If not, request chunk of reserved descriptors and check again.
4591 */
4592static int mvpp2_txq_reserved_desc_num_proc(struct mvpp2 *priv,
4593 struct mvpp2_tx_queue *txq,
4594 struct mvpp2_txq_pcpu *txq_pcpu,
4595 int num)
4596{
4597 int req, cpu, desc_count;
4598
4599 if (txq_pcpu->reserved_num >= num)
4600 return 0;
4601
4602 /* Not enough descriptors reserved! Update the reserved descriptor
4603 * count and check again.
4604 */
4605
4606 desc_count = 0;
4607 /* Compute total of used descriptors */
4608 for_each_present_cpu(cpu) {
4609 struct mvpp2_txq_pcpu *txq_pcpu_aux;
4610
4611 txq_pcpu_aux = per_cpu_ptr(txq->pcpu, cpu);
4612 desc_count += txq_pcpu_aux->count;
4613 desc_count += txq_pcpu_aux->reserved_num;
4614 }
4615
4616 req = max(MVPP2_CPU_DESC_CHUNK, num - txq_pcpu->reserved_num);
4617 desc_count += req;
4618
4619 if (desc_count >
4620 (txq->size - (num_present_cpus() * MVPP2_CPU_DESC_CHUNK)))
4621 return -ENOMEM;
4622
4623 txq_pcpu->reserved_num += mvpp2_txq_alloc_reserved_desc(priv, txq, req);
4624
4625 /* OK, the descriptor cound has been updated: check again. */
4626 if (txq_pcpu->reserved_num < num)
4627 return -ENOMEM;
4628 return 0;
4629}
4630
4631/* Release the last allocated Tx descriptor. Useful to handle DMA
4632 * mapping failures in the Tx path.
4633 */
4634static void mvpp2_txq_desc_put(struct mvpp2_tx_queue *txq)
4635{
4636 if (txq->next_desc_to_proc == 0)
4637 txq->next_desc_to_proc = txq->last_desc - 1;
4638 else
4639 txq->next_desc_to_proc--;
4640}
4641
4642/* Set Tx descriptors fields relevant for CSUM calculation */
4643static u32 mvpp2_txq_desc_csum(int l3_offs, int l3_proto,
4644 int ip_hdr_len, int l4_proto)
4645{
4646 u32 command;
4647
4648 /* fields: L3_offset, IP_hdrlen, L3_type, G_IPv4_chk,
4649 * G_L4_chk, L4_type required only for checksum calculation
4650 */
4651 command = (l3_offs << MVPP2_TXD_L3_OFF_SHIFT);
4652 command |= (ip_hdr_len << MVPP2_TXD_IP_HLEN_SHIFT);
4653 command |= MVPP2_TXD_IP_CSUM_DISABLE;
4654
4655 if (l3_proto == swab16(ETH_P_IP)) {
4656 command &= ~MVPP2_TXD_IP_CSUM_DISABLE; /* enable IPv4 csum */
4657 command &= ~MVPP2_TXD_L3_IP6; /* enable IPv4 */
4658 } else {
4659 command |= MVPP2_TXD_L3_IP6; /* enable IPv6 */
4660 }
4661
4662 if (l4_proto == IPPROTO_TCP) {
4663 command &= ~MVPP2_TXD_L4_UDP; /* enable TCP */
4664 command &= ~MVPP2_TXD_L4_CSUM_FRAG; /* generate L4 csum */
4665 } else if (l4_proto == IPPROTO_UDP) {
4666 command |= MVPP2_TXD_L4_UDP; /* enable UDP */
4667 command &= ~MVPP2_TXD_L4_CSUM_FRAG; /* generate L4 csum */
4668 } else {
4669 command |= MVPP2_TXD_L4_CSUM_NOT;
4670 }
4671
4672 return command;
4673}
4674
4675/* Get number of sent descriptors and decrement counter.
4676 * The number of sent descriptors is returned.
4677 * Per-CPU access
4678 */
4679static inline int mvpp2_txq_sent_desc_proc(struct mvpp2_port *port,
4680 struct mvpp2_tx_queue *txq)
4681{
4682 u32 val;
4683
4684 /* Reading status reg resets transmitted descriptor counter */
Thomas Petazzonia7868412017-03-07 16:53:13 +01004685 val = mvpp2_percpu_read(port->priv, smp_processor_id(),
4686 MVPP2_TXQ_SENT_REG(txq->id));
Marcin Wojtas3f518502014-07-10 16:52:13 -03004687
4688 return (val & MVPP2_TRANSMITTED_COUNT_MASK) >>
4689 MVPP2_TRANSMITTED_COUNT_OFFSET;
4690}
4691
4692static void mvpp2_txq_sent_counter_clear(void *arg)
4693{
4694 struct mvpp2_port *port = arg;
4695 int queue;
4696
4697 for (queue = 0; queue < txq_number; queue++) {
4698 int id = port->txqs[queue]->id;
4699
Thomas Petazzonia7868412017-03-07 16:53:13 +01004700 mvpp2_percpu_read(port->priv, smp_processor_id(),
4701 MVPP2_TXQ_SENT_REG(id));
Marcin Wojtas3f518502014-07-10 16:52:13 -03004702 }
4703}
4704
4705/* Set max sizes for Tx queues */
4706static void mvpp2_txp_max_tx_size_set(struct mvpp2_port *port)
4707{
4708 u32 val, size, mtu;
4709 int txq, tx_port_num;
4710
4711 mtu = port->pkt_size * 8;
4712 if (mtu > MVPP2_TXP_MTU_MAX)
4713 mtu = MVPP2_TXP_MTU_MAX;
4714
4715 /* WA for wrong Token bucket update: Set MTU value = 3*real MTU value */
4716 mtu = 3 * mtu;
4717
4718 /* Indirect access to registers */
4719 tx_port_num = mvpp2_egress_port(port);
4720 mvpp2_write(port->priv, MVPP2_TXP_SCHED_PORT_INDEX_REG, tx_port_num);
4721
4722 /* Set MTU */
4723 val = mvpp2_read(port->priv, MVPP2_TXP_SCHED_MTU_REG);
4724 val &= ~MVPP2_TXP_MTU_MAX;
4725 val |= mtu;
4726 mvpp2_write(port->priv, MVPP2_TXP_SCHED_MTU_REG, val);
4727
4728 /* TXP token size and all TXQs token size must be larger that MTU */
4729 val = mvpp2_read(port->priv, MVPP2_TXP_SCHED_TOKEN_SIZE_REG);
4730 size = val & MVPP2_TXP_TOKEN_SIZE_MAX;
4731 if (size < mtu) {
4732 size = mtu;
4733 val &= ~MVPP2_TXP_TOKEN_SIZE_MAX;
4734 val |= size;
4735 mvpp2_write(port->priv, MVPP2_TXP_SCHED_TOKEN_SIZE_REG, val);
4736 }
4737
4738 for (txq = 0; txq < txq_number; txq++) {
4739 val = mvpp2_read(port->priv,
4740 MVPP2_TXQ_SCHED_TOKEN_SIZE_REG(txq));
4741 size = val & MVPP2_TXQ_TOKEN_SIZE_MAX;
4742
4743 if (size < mtu) {
4744 size = mtu;
4745 val &= ~MVPP2_TXQ_TOKEN_SIZE_MAX;
4746 val |= size;
4747 mvpp2_write(port->priv,
4748 MVPP2_TXQ_SCHED_TOKEN_SIZE_REG(txq),
4749 val);
4750 }
4751 }
4752}
4753
4754/* Set the number of packets that will be received before Rx interrupt
4755 * will be generated by HW.
4756 */
4757static void mvpp2_rx_pkts_coal_set(struct mvpp2_port *port,
Thomas Petazzonid63f9e42017-02-21 11:28:02 +01004758 struct mvpp2_rx_queue *rxq)
Marcin Wojtas3f518502014-07-10 16:52:13 -03004759{
Thomas Petazzonia7868412017-03-07 16:53:13 +01004760 int cpu = smp_processor_id();
4761
Thomas Petazzonif8b0d5f2017-02-21 11:28:03 +01004762 if (rxq->pkts_coal > MVPP2_OCCUPIED_THRESH_MASK)
4763 rxq->pkts_coal = MVPP2_OCCUPIED_THRESH_MASK;
Marcin Wojtas3f518502014-07-10 16:52:13 -03004764
Thomas Petazzonia7868412017-03-07 16:53:13 +01004765 mvpp2_percpu_write(port->priv, cpu, MVPP2_RXQ_NUM_REG, rxq->id);
4766 mvpp2_percpu_write(port->priv, cpu, MVPP2_RXQ_THRESH_REG,
4767 rxq->pkts_coal);
Marcin Wojtas3f518502014-07-10 16:52:13 -03004768}
4769
Thomas Petazzoniab426762017-02-21 11:28:04 +01004770static u32 mvpp2_usec_to_cycles(u32 usec, unsigned long clk_hz)
4771{
4772 u64 tmp = (u64)clk_hz * usec;
4773
4774 do_div(tmp, USEC_PER_SEC);
4775
4776 return tmp > U32_MAX ? U32_MAX : tmp;
4777}
4778
4779static u32 mvpp2_cycles_to_usec(u32 cycles, unsigned long clk_hz)
4780{
4781 u64 tmp = (u64)cycles * USEC_PER_SEC;
4782
4783 do_div(tmp, clk_hz);
4784
4785 return tmp > U32_MAX ? U32_MAX : tmp;
4786}
4787
Marcin Wojtas3f518502014-07-10 16:52:13 -03004788/* Set the time delay in usec before Rx interrupt */
4789static void mvpp2_rx_time_coal_set(struct mvpp2_port *port,
Thomas Petazzonid63f9e42017-02-21 11:28:02 +01004790 struct mvpp2_rx_queue *rxq)
Marcin Wojtas3f518502014-07-10 16:52:13 -03004791{
Thomas Petazzoniab426762017-02-21 11:28:04 +01004792 unsigned long freq = port->priv->tclk;
4793 u32 val = mvpp2_usec_to_cycles(rxq->time_coal, freq);
Marcin Wojtas3f518502014-07-10 16:52:13 -03004794
Thomas Petazzoniab426762017-02-21 11:28:04 +01004795 if (val > MVPP2_MAX_ISR_RX_THRESHOLD) {
4796 rxq->time_coal =
4797 mvpp2_cycles_to_usec(MVPP2_MAX_ISR_RX_THRESHOLD, freq);
4798
4799 /* re-evaluate to get actual register value */
4800 val = mvpp2_usec_to_cycles(rxq->time_coal, freq);
4801 }
4802
Marcin Wojtas3f518502014-07-10 16:52:13 -03004803 mvpp2_write(port->priv, MVPP2_ISR_RX_THRESHOLD_REG(rxq->id), val);
Marcin Wojtas3f518502014-07-10 16:52:13 -03004804}
4805
Marcin Wojtas3f518502014-07-10 16:52:13 -03004806/* Free Tx queue skbuffs */
4807static void mvpp2_txq_bufs_free(struct mvpp2_port *port,
4808 struct mvpp2_tx_queue *txq,
4809 struct mvpp2_txq_pcpu *txq_pcpu, int num)
4810{
4811 int i;
4812
4813 for (i = 0; i < num; i++) {
Thomas Petazzoni83544912016-12-21 11:28:49 +01004814 struct mvpp2_txq_pcpu_buf *tx_buf =
4815 txq_pcpu->buffs + txq_pcpu->txq_get_index;
Marcin Wojtas3f518502014-07-10 16:52:13 -03004816
Thomas Petazzoni20396132017-03-07 16:53:00 +01004817 dma_unmap_single(port->dev->dev.parent, tx_buf->dma,
Thomas Petazzoni83544912016-12-21 11:28:49 +01004818 tx_buf->size, DMA_TO_DEVICE);
Thomas Petazzoni36fb7432017-02-21 11:28:05 +01004819 if (tx_buf->skb)
4820 dev_kfree_skb_any(tx_buf->skb);
4821
4822 mvpp2_txq_inc_get(txq_pcpu);
Marcin Wojtas3f518502014-07-10 16:52:13 -03004823 }
4824}
4825
4826static inline struct mvpp2_rx_queue *mvpp2_get_rx_queue(struct mvpp2_port *port,
4827 u32 cause)
4828{
4829 int queue = fls(cause) - 1;
4830
4831 return port->rxqs[queue];
4832}
4833
4834static inline struct mvpp2_tx_queue *mvpp2_get_tx_queue(struct mvpp2_port *port,
4835 u32 cause)
4836{
Marcin Wojtasedc660f2015-08-06 19:00:30 +02004837 int queue = fls(cause) - 1;
Marcin Wojtas3f518502014-07-10 16:52:13 -03004838
4839 return port->txqs[queue];
4840}
4841
4842/* Handle end of transmission */
4843static void mvpp2_txq_done(struct mvpp2_port *port, struct mvpp2_tx_queue *txq,
4844 struct mvpp2_txq_pcpu *txq_pcpu)
4845{
4846 struct netdev_queue *nq = netdev_get_tx_queue(port->dev, txq->log_id);
4847 int tx_done;
4848
4849 if (txq_pcpu->cpu != smp_processor_id())
4850 netdev_err(port->dev, "wrong cpu on the end of Tx processing\n");
4851
4852 tx_done = mvpp2_txq_sent_desc_proc(port, txq);
4853 if (!tx_done)
4854 return;
4855 mvpp2_txq_bufs_free(port, txq, txq_pcpu, tx_done);
4856
4857 txq_pcpu->count -= tx_done;
4858
4859 if (netif_tx_queue_stopped(nq))
4860 if (txq_pcpu->size - txq_pcpu->count >= MAX_SKB_FRAGS + 1)
4861 netif_tx_wake_queue(nq);
4862}
4863
Marcin Wojtasedc660f2015-08-06 19:00:30 +02004864static unsigned int mvpp2_tx_done(struct mvpp2_port *port, u32 cause)
4865{
4866 struct mvpp2_tx_queue *txq;
4867 struct mvpp2_txq_pcpu *txq_pcpu;
4868 unsigned int tx_todo = 0;
4869
4870 while (cause) {
4871 txq = mvpp2_get_tx_queue(port, cause);
4872 if (!txq)
4873 break;
4874
4875 txq_pcpu = this_cpu_ptr(txq->pcpu);
4876
4877 if (txq_pcpu->count) {
4878 mvpp2_txq_done(port, txq, txq_pcpu);
4879 tx_todo += txq_pcpu->count;
4880 }
4881
4882 cause &= ~(1 << txq->log_id);
4883 }
4884 return tx_todo;
4885}
4886
Marcin Wojtas3f518502014-07-10 16:52:13 -03004887/* Rx/Tx queue initialization/cleanup methods */
4888
4889/* Allocate and initialize descriptors for aggr TXQ */
4890static int mvpp2_aggr_txq_init(struct platform_device *pdev,
4891 struct mvpp2_tx_queue *aggr_txq,
4892 int desc_num, int cpu,
4893 struct mvpp2 *priv)
4894{
Thomas Petazzonib02f31f2017-03-07 16:53:12 +01004895 u32 txq_dma;
4896
Marcin Wojtas3f518502014-07-10 16:52:13 -03004897 /* Allocate memory for TX descriptors */
4898 aggr_txq->descs = dma_alloc_coherent(&pdev->dev,
4899 desc_num * MVPP2_DESC_ALIGNED_SIZE,
Thomas Petazzoni20396132017-03-07 16:53:00 +01004900 &aggr_txq->descs_dma, GFP_KERNEL);
Marcin Wojtas3f518502014-07-10 16:52:13 -03004901 if (!aggr_txq->descs)
4902 return -ENOMEM;
4903
Marcin Wojtas3f518502014-07-10 16:52:13 -03004904 aggr_txq->last_desc = aggr_txq->size - 1;
4905
4906 /* Aggr TXQ no reset WA */
4907 aggr_txq->next_desc_to_proc = mvpp2_read(priv,
4908 MVPP2_AGGR_TXQ_INDEX_REG(cpu));
4909
Thomas Petazzonib02f31f2017-03-07 16:53:12 +01004910 /* Set Tx descriptors queue starting address indirect
4911 * access
4912 */
4913 if (priv->hw_version == MVPP21)
4914 txq_dma = aggr_txq->descs_dma;
4915 else
4916 txq_dma = aggr_txq->descs_dma >>
4917 MVPP22_AGGR_TXQ_DESC_ADDR_OFFS;
4918
4919 mvpp2_write(priv, MVPP2_AGGR_TXQ_DESC_ADDR_REG(cpu), txq_dma);
Marcin Wojtas3f518502014-07-10 16:52:13 -03004920 mvpp2_write(priv, MVPP2_AGGR_TXQ_DESC_SIZE_REG(cpu), desc_num);
4921
4922 return 0;
4923}
4924
4925/* Create a specified Rx queue */
4926static int mvpp2_rxq_init(struct mvpp2_port *port,
4927 struct mvpp2_rx_queue *rxq)
4928
4929{
Thomas Petazzonib02f31f2017-03-07 16:53:12 +01004930 u32 rxq_dma;
Thomas Petazzonia7868412017-03-07 16:53:13 +01004931 int cpu;
Thomas Petazzonib02f31f2017-03-07 16:53:12 +01004932
Marcin Wojtas3f518502014-07-10 16:52:13 -03004933 rxq->size = port->rx_ring_size;
4934
4935 /* Allocate memory for RX descriptors */
4936 rxq->descs = dma_alloc_coherent(port->dev->dev.parent,
4937 rxq->size * MVPP2_DESC_ALIGNED_SIZE,
Thomas Petazzoni20396132017-03-07 16:53:00 +01004938 &rxq->descs_dma, GFP_KERNEL);
Marcin Wojtas3f518502014-07-10 16:52:13 -03004939 if (!rxq->descs)
4940 return -ENOMEM;
4941
Marcin Wojtas3f518502014-07-10 16:52:13 -03004942 rxq->last_desc = rxq->size - 1;
4943
4944 /* Zero occupied and non-occupied counters - direct access */
4945 mvpp2_write(port->priv, MVPP2_RXQ_STATUS_REG(rxq->id), 0);
4946
4947 /* Set Rx descriptors queue starting address - indirect access */
Thomas Petazzonia7868412017-03-07 16:53:13 +01004948 cpu = smp_processor_id();
4949 mvpp2_percpu_write(port->priv, cpu, MVPP2_RXQ_NUM_REG, rxq->id);
Thomas Petazzonib02f31f2017-03-07 16:53:12 +01004950 if (port->priv->hw_version == MVPP21)
4951 rxq_dma = rxq->descs_dma;
4952 else
4953 rxq_dma = rxq->descs_dma >> MVPP22_DESC_ADDR_OFFS;
Thomas Petazzonia7868412017-03-07 16:53:13 +01004954 mvpp2_percpu_write(port->priv, cpu, MVPP2_RXQ_DESC_ADDR_REG, rxq_dma);
4955 mvpp2_percpu_write(port->priv, cpu, MVPP2_RXQ_DESC_SIZE_REG, rxq->size);
4956 mvpp2_percpu_write(port->priv, cpu, MVPP2_RXQ_INDEX_REG, 0);
Marcin Wojtas3f518502014-07-10 16:52:13 -03004957
4958 /* Set Offset */
4959 mvpp2_rxq_offset_set(port, rxq->id, NET_SKB_PAD);
4960
4961 /* Set coalescing pkts and time */
Thomas Petazzonid63f9e42017-02-21 11:28:02 +01004962 mvpp2_rx_pkts_coal_set(port, rxq);
4963 mvpp2_rx_time_coal_set(port, rxq);
Marcin Wojtas3f518502014-07-10 16:52:13 -03004964
4965 /* Add number of descriptors ready for receiving packets */
4966 mvpp2_rxq_status_update(port, rxq->id, 0, rxq->size);
4967
4968 return 0;
4969}
4970
4971/* Push packets received by the RXQ to BM pool */
4972static void mvpp2_rxq_drop_pkts(struct mvpp2_port *port,
4973 struct mvpp2_rx_queue *rxq)
4974{
4975 int rx_received, i;
4976
4977 rx_received = mvpp2_rxq_received(port, rxq->id);
4978 if (!rx_received)
4979 return;
4980
4981 for (i = 0; i < rx_received; i++) {
4982 struct mvpp2_rx_desc *rx_desc = mvpp2_rxq_next_desc_get(rxq);
Thomas Petazzoniac3dd2772017-03-07 16:53:05 +01004983 u32 bm = mvpp2_bm_cookie_build(port, rx_desc);
Marcin Wojtas3f518502014-07-10 16:52:13 -03004984
Thomas Petazzoniac3dd2772017-03-07 16:53:05 +01004985 mvpp2_pool_refill(port, bm,
4986 mvpp2_rxdesc_dma_addr_get(port, rx_desc),
4987 mvpp2_rxdesc_cookie_get(port, rx_desc));
Marcin Wojtas3f518502014-07-10 16:52:13 -03004988 }
4989 mvpp2_rxq_status_update(port, rxq->id, rx_received, rx_received);
4990}
4991
4992/* Cleanup Rx queue */
4993static void mvpp2_rxq_deinit(struct mvpp2_port *port,
4994 struct mvpp2_rx_queue *rxq)
4995{
Thomas Petazzonia7868412017-03-07 16:53:13 +01004996 int cpu;
4997
Marcin Wojtas3f518502014-07-10 16:52:13 -03004998 mvpp2_rxq_drop_pkts(port, rxq);
4999
5000 if (rxq->descs)
5001 dma_free_coherent(port->dev->dev.parent,
5002 rxq->size * MVPP2_DESC_ALIGNED_SIZE,
5003 rxq->descs,
Thomas Petazzoni20396132017-03-07 16:53:00 +01005004 rxq->descs_dma);
Marcin Wojtas3f518502014-07-10 16:52:13 -03005005
5006 rxq->descs = NULL;
5007 rxq->last_desc = 0;
5008 rxq->next_desc_to_proc = 0;
Thomas Petazzoni20396132017-03-07 16:53:00 +01005009 rxq->descs_dma = 0;
Marcin Wojtas3f518502014-07-10 16:52:13 -03005010
5011 /* Clear Rx descriptors queue starting address and size;
5012 * free descriptor number
5013 */
5014 mvpp2_write(port->priv, MVPP2_RXQ_STATUS_REG(rxq->id), 0);
Thomas Petazzonia7868412017-03-07 16:53:13 +01005015 cpu = smp_processor_id();
5016 mvpp2_percpu_write(port->priv, cpu, MVPP2_RXQ_NUM_REG, rxq->id);
5017 mvpp2_percpu_write(port->priv, cpu, MVPP2_RXQ_DESC_ADDR_REG, 0);
5018 mvpp2_percpu_write(port->priv, cpu, MVPP2_RXQ_DESC_SIZE_REG, 0);
Marcin Wojtas3f518502014-07-10 16:52:13 -03005019}
5020
5021/* Create and initialize a Tx queue */
5022static int mvpp2_txq_init(struct mvpp2_port *port,
5023 struct mvpp2_tx_queue *txq)
5024{
5025 u32 val;
5026 int cpu, desc, desc_per_txq, tx_port_num;
5027 struct mvpp2_txq_pcpu *txq_pcpu;
5028
5029 txq->size = port->tx_ring_size;
5030
5031 /* Allocate memory for Tx descriptors */
5032 txq->descs = dma_alloc_coherent(port->dev->dev.parent,
5033 txq->size * MVPP2_DESC_ALIGNED_SIZE,
Thomas Petazzoni20396132017-03-07 16:53:00 +01005034 &txq->descs_dma, GFP_KERNEL);
Marcin Wojtas3f518502014-07-10 16:52:13 -03005035 if (!txq->descs)
5036 return -ENOMEM;
5037
Marcin Wojtas3f518502014-07-10 16:52:13 -03005038 txq->last_desc = txq->size - 1;
5039
5040 /* Set Tx descriptors queue starting address - indirect access */
Thomas Petazzonia7868412017-03-07 16:53:13 +01005041 cpu = smp_processor_id();
5042 mvpp2_percpu_write(port->priv, cpu, MVPP2_TXQ_NUM_REG, txq->id);
5043 mvpp2_percpu_write(port->priv, cpu, MVPP2_TXQ_DESC_ADDR_REG,
5044 txq->descs_dma);
5045 mvpp2_percpu_write(port->priv, cpu, MVPP2_TXQ_DESC_SIZE_REG,
5046 txq->size & MVPP2_TXQ_DESC_SIZE_MASK);
5047 mvpp2_percpu_write(port->priv, cpu, MVPP2_TXQ_INDEX_REG, 0);
5048 mvpp2_percpu_write(port->priv, cpu, MVPP2_TXQ_RSVD_CLR_REG,
5049 txq->id << MVPP2_TXQ_RSVD_CLR_OFFSET);
5050 val = mvpp2_percpu_read(port->priv, cpu, MVPP2_TXQ_PENDING_REG);
Marcin Wojtas3f518502014-07-10 16:52:13 -03005051 val &= ~MVPP2_TXQ_PENDING_MASK;
Thomas Petazzonia7868412017-03-07 16:53:13 +01005052 mvpp2_percpu_write(port->priv, cpu, MVPP2_TXQ_PENDING_REG, val);
Marcin Wojtas3f518502014-07-10 16:52:13 -03005053
5054 /* Calculate base address in prefetch buffer. We reserve 16 descriptors
5055 * for each existing TXQ.
5056 * TCONTS for PON port must be continuous from 0 to MVPP2_MAX_TCONT
5057 * GBE ports assumed to be continious from 0 to MVPP2_MAX_PORTS
5058 */
5059 desc_per_txq = 16;
5060 desc = (port->id * MVPP2_MAX_TXQ * desc_per_txq) +
5061 (txq->log_id * desc_per_txq);
5062
Thomas Petazzonia7868412017-03-07 16:53:13 +01005063 mvpp2_percpu_write(port->priv, cpu, MVPP2_TXQ_PREF_BUF_REG,
5064 MVPP2_PREF_BUF_PTR(desc) | MVPP2_PREF_BUF_SIZE_16 |
5065 MVPP2_PREF_BUF_THRESH(desc_per_txq / 2));
Marcin Wojtas3f518502014-07-10 16:52:13 -03005066
5067 /* WRR / EJP configuration - indirect access */
5068 tx_port_num = mvpp2_egress_port(port);
5069 mvpp2_write(port->priv, MVPP2_TXP_SCHED_PORT_INDEX_REG, tx_port_num);
5070
5071 val = mvpp2_read(port->priv, MVPP2_TXQ_SCHED_REFILL_REG(txq->log_id));
5072 val &= ~MVPP2_TXQ_REFILL_PERIOD_ALL_MASK;
5073 val |= MVPP2_TXQ_REFILL_PERIOD_MASK(1);
5074 val |= MVPP2_TXQ_REFILL_TOKENS_ALL_MASK;
5075 mvpp2_write(port->priv, MVPP2_TXQ_SCHED_REFILL_REG(txq->log_id), val);
5076
5077 val = MVPP2_TXQ_TOKEN_SIZE_MAX;
5078 mvpp2_write(port->priv, MVPP2_TXQ_SCHED_TOKEN_SIZE_REG(txq->log_id),
5079 val);
5080
5081 for_each_present_cpu(cpu) {
5082 txq_pcpu = per_cpu_ptr(txq->pcpu, cpu);
5083 txq_pcpu->size = txq->size;
Markus Elfring02c91ec2017-04-17 08:09:07 +02005084 txq_pcpu->buffs = kmalloc_array(txq_pcpu->size,
5085 sizeof(*txq_pcpu->buffs),
5086 GFP_KERNEL);
Thomas Petazzoni83544912016-12-21 11:28:49 +01005087 if (!txq_pcpu->buffs)
Markus Elfring20b1e162017-04-17 12:58:33 +02005088 goto cleanup;
Marcin Wojtas3f518502014-07-10 16:52:13 -03005089
5090 txq_pcpu->count = 0;
5091 txq_pcpu->reserved_num = 0;
5092 txq_pcpu->txq_put_index = 0;
5093 txq_pcpu->txq_get_index = 0;
5094 }
5095
5096 return 0;
Markus Elfring20b1e162017-04-17 12:58:33 +02005097cleanup:
Marcin Wojtas71ce3912015-08-06 19:00:29 +02005098 for_each_present_cpu(cpu) {
5099 txq_pcpu = per_cpu_ptr(txq->pcpu, cpu);
Thomas Petazzoni83544912016-12-21 11:28:49 +01005100 kfree(txq_pcpu->buffs);
Marcin Wojtas71ce3912015-08-06 19:00:29 +02005101 }
5102
5103 dma_free_coherent(port->dev->dev.parent,
5104 txq->size * MVPP2_DESC_ALIGNED_SIZE,
Thomas Petazzoni20396132017-03-07 16:53:00 +01005105 txq->descs, txq->descs_dma);
Marcin Wojtas71ce3912015-08-06 19:00:29 +02005106
5107 return -ENOMEM;
Marcin Wojtas3f518502014-07-10 16:52:13 -03005108}
5109
5110/* Free allocated TXQ resources */
5111static void mvpp2_txq_deinit(struct mvpp2_port *port,
5112 struct mvpp2_tx_queue *txq)
5113{
5114 struct mvpp2_txq_pcpu *txq_pcpu;
5115 int cpu;
5116
5117 for_each_present_cpu(cpu) {
5118 txq_pcpu = per_cpu_ptr(txq->pcpu, cpu);
Thomas Petazzoni83544912016-12-21 11:28:49 +01005119 kfree(txq_pcpu->buffs);
Marcin Wojtas3f518502014-07-10 16:52:13 -03005120 }
5121
5122 if (txq->descs)
5123 dma_free_coherent(port->dev->dev.parent,
5124 txq->size * MVPP2_DESC_ALIGNED_SIZE,
Thomas Petazzoni20396132017-03-07 16:53:00 +01005125 txq->descs, txq->descs_dma);
Marcin Wojtas3f518502014-07-10 16:52:13 -03005126
5127 txq->descs = NULL;
5128 txq->last_desc = 0;
5129 txq->next_desc_to_proc = 0;
Thomas Petazzoni20396132017-03-07 16:53:00 +01005130 txq->descs_dma = 0;
Marcin Wojtas3f518502014-07-10 16:52:13 -03005131
5132 /* Set minimum bandwidth for disabled TXQs */
5133 mvpp2_write(port->priv, MVPP2_TXQ_SCHED_TOKEN_CNTR_REG(txq->id), 0);
5134
5135 /* Set Tx descriptors queue starting address and size */
Thomas Petazzonia7868412017-03-07 16:53:13 +01005136 cpu = smp_processor_id();
5137 mvpp2_percpu_write(port->priv, cpu, MVPP2_TXQ_NUM_REG, txq->id);
5138 mvpp2_percpu_write(port->priv, cpu, MVPP2_TXQ_DESC_ADDR_REG, 0);
5139 mvpp2_percpu_write(port->priv, cpu, MVPP2_TXQ_DESC_SIZE_REG, 0);
Marcin Wojtas3f518502014-07-10 16:52:13 -03005140}
5141
5142/* Cleanup Tx ports */
5143static void mvpp2_txq_clean(struct mvpp2_port *port, struct mvpp2_tx_queue *txq)
5144{
5145 struct mvpp2_txq_pcpu *txq_pcpu;
5146 int delay, pending, cpu;
5147 u32 val;
5148
Thomas Petazzonia7868412017-03-07 16:53:13 +01005149 cpu = smp_processor_id();
5150 mvpp2_percpu_write(port->priv, cpu, MVPP2_TXQ_NUM_REG, txq->id);
5151 val = mvpp2_percpu_read(port->priv, cpu, MVPP2_TXQ_PREF_BUF_REG);
Marcin Wojtas3f518502014-07-10 16:52:13 -03005152 val |= MVPP2_TXQ_DRAIN_EN_MASK;
Thomas Petazzonia7868412017-03-07 16:53:13 +01005153 mvpp2_percpu_write(port->priv, cpu, MVPP2_TXQ_PREF_BUF_REG, val);
Marcin Wojtas3f518502014-07-10 16:52:13 -03005154
5155 /* The napi queue has been stopped so wait for all packets
5156 * to be transmitted.
5157 */
5158 delay = 0;
5159 do {
5160 if (delay >= MVPP2_TX_PENDING_TIMEOUT_MSEC) {
5161 netdev_warn(port->dev,
5162 "port %d: cleaning queue %d timed out\n",
5163 port->id, txq->log_id);
5164 break;
5165 }
5166 mdelay(1);
5167 delay++;
5168
Thomas Petazzonia7868412017-03-07 16:53:13 +01005169 pending = mvpp2_percpu_read(port->priv, cpu,
5170 MVPP2_TXQ_PENDING_REG);
5171 pending &= MVPP2_TXQ_PENDING_MASK;
Marcin Wojtas3f518502014-07-10 16:52:13 -03005172 } while (pending);
5173
5174 val &= ~MVPP2_TXQ_DRAIN_EN_MASK;
Thomas Petazzonia7868412017-03-07 16:53:13 +01005175 mvpp2_percpu_write(port->priv, cpu, MVPP2_TXQ_PREF_BUF_REG, val);
Marcin Wojtas3f518502014-07-10 16:52:13 -03005176
5177 for_each_present_cpu(cpu) {
5178 txq_pcpu = per_cpu_ptr(txq->pcpu, cpu);
5179
5180 /* Release all packets */
5181 mvpp2_txq_bufs_free(port, txq, txq_pcpu, txq_pcpu->count);
5182
5183 /* Reset queue */
5184 txq_pcpu->count = 0;
5185 txq_pcpu->txq_put_index = 0;
5186 txq_pcpu->txq_get_index = 0;
5187 }
5188}
5189
5190/* Cleanup all Tx queues */
5191static void mvpp2_cleanup_txqs(struct mvpp2_port *port)
5192{
5193 struct mvpp2_tx_queue *txq;
5194 int queue;
5195 u32 val;
5196
5197 val = mvpp2_read(port->priv, MVPP2_TX_PORT_FLUSH_REG);
5198
5199 /* Reset Tx ports and delete Tx queues */
5200 val |= MVPP2_TX_PORT_FLUSH_MASK(port->id);
5201 mvpp2_write(port->priv, MVPP2_TX_PORT_FLUSH_REG, val);
5202
5203 for (queue = 0; queue < txq_number; queue++) {
5204 txq = port->txqs[queue];
5205 mvpp2_txq_clean(port, txq);
5206 mvpp2_txq_deinit(port, txq);
5207 }
5208
5209 on_each_cpu(mvpp2_txq_sent_counter_clear, port, 1);
5210
5211 val &= ~MVPP2_TX_PORT_FLUSH_MASK(port->id);
5212 mvpp2_write(port->priv, MVPP2_TX_PORT_FLUSH_REG, val);
5213}
5214
5215/* Cleanup all Rx queues */
5216static void mvpp2_cleanup_rxqs(struct mvpp2_port *port)
5217{
5218 int queue;
5219
5220 for (queue = 0; queue < rxq_number; queue++)
5221 mvpp2_rxq_deinit(port, port->rxqs[queue]);
5222}
5223
5224/* Init all Rx queues for port */
5225static int mvpp2_setup_rxqs(struct mvpp2_port *port)
5226{
5227 int queue, err;
5228
5229 for (queue = 0; queue < rxq_number; queue++) {
5230 err = mvpp2_rxq_init(port, port->rxqs[queue]);
5231 if (err)
5232 goto err_cleanup;
5233 }
5234 return 0;
5235
5236err_cleanup:
5237 mvpp2_cleanup_rxqs(port);
5238 return err;
5239}
5240
5241/* Init all tx queues for port */
5242static int mvpp2_setup_txqs(struct mvpp2_port *port)
5243{
5244 struct mvpp2_tx_queue *txq;
5245 int queue, err;
5246
5247 for (queue = 0; queue < txq_number; queue++) {
5248 txq = port->txqs[queue];
5249 err = mvpp2_txq_init(port, txq);
5250 if (err)
5251 goto err_cleanup;
5252 }
5253
Marcin Wojtas3f518502014-07-10 16:52:13 -03005254 on_each_cpu(mvpp2_txq_sent_counter_clear, port, 1);
5255 return 0;
5256
5257err_cleanup:
5258 mvpp2_cleanup_txqs(port);
5259 return err;
5260}
5261
5262/* The callback for per-port interrupt */
5263static irqreturn_t mvpp2_isr(int irq, void *dev_id)
5264{
5265 struct mvpp2_port *port = (struct mvpp2_port *)dev_id;
5266
5267 mvpp2_interrupts_disable(port);
5268
5269 napi_schedule(&port->napi);
5270
5271 return IRQ_HANDLED;
5272}
5273
5274/* Adjust link */
5275static void mvpp2_link_event(struct net_device *dev)
5276{
5277 struct mvpp2_port *port = netdev_priv(dev);
Philippe Reynes8e072692016-06-28 00:08:11 +02005278 struct phy_device *phydev = dev->phydev;
Marcin Wojtas3f518502014-07-10 16:52:13 -03005279 int status_change = 0;
5280 u32 val;
5281
5282 if (phydev->link) {
5283 if ((port->speed != phydev->speed) ||
5284 (port->duplex != phydev->duplex)) {
5285 u32 val;
5286
5287 val = readl(port->base + MVPP2_GMAC_AUTONEG_CONFIG);
5288 val &= ~(MVPP2_GMAC_CONFIG_MII_SPEED |
5289 MVPP2_GMAC_CONFIG_GMII_SPEED |
5290 MVPP2_GMAC_CONFIG_FULL_DUPLEX |
5291 MVPP2_GMAC_AN_SPEED_EN |
5292 MVPP2_GMAC_AN_DUPLEX_EN);
5293
5294 if (phydev->duplex)
5295 val |= MVPP2_GMAC_CONFIG_FULL_DUPLEX;
5296
5297 if (phydev->speed == SPEED_1000)
5298 val |= MVPP2_GMAC_CONFIG_GMII_SPEED;
Thomas Petazzoni2add5112014-07-27 23:21:35 +02005299 else if (phydev->speed == SPEED_100)
Marcin Wojtas3f518502014-07-10 16:52:13 -03005300 val |= MVPP2_GMAC_CONFIG_MII_SPEED;
5301
5302 writel(val, port->base + MVPP2_GMAC_AUTONEG_CONFIG);
5303
5304 port->duplex = phydev->duplex;
5305 port->speed = phydev->speed;
5306 }
5307 }
5308
5309 if (phydev->link != port->link) {
5310 if (!phydev->link) {
5311 port->duplex = -1;
5312 port->speed = 0;
5313 }
5314
5315 port->link = phydev->link;
5316 status_change = 1;
5317 }
5318
5319 if (status_change) {
5320 if (phydev->link) {
5321 val = readl(port->base + MVPP2_GMAC_AUTONEG_CONFIG);
5322 val |= (MVPP2_GMAC_FORCE_LINK_PASS |
5323 MVPP2_GMAC_FORCE_LINK_DOWN);
5324 writel(val, port->base + MVPP2_GMAC_AUTONEG_CONFIG);
5325 mvpp2_egress_enable(port);
5326 mvpp2_ingress_enable(port);
5327 } else {
5328 mvpp2_ingress_disable(port);
5329 mvpp2_egress_disable(port);
5330 }
5331 phy_print_status(phydev);
5332 }
5333}
5334
Marcin Wojtasedc660f2015-08-06 19:00:30 +02005335static void mvpp2_timer_set(struct mvpp2_port_pcpu *port_pcpu)
5336{
5337 ktime_t interval;
5338
5339 if (!port_pcpu->timer_scheduled) {
5340 port_pcpu->timer_scheduled = true;
Thomas Gleixner8b0e1952016-12-25 12:30:41 +01005341 interval = MVPP2_TXDONE_HRTIMER_PERIOD_NS;
Marcin Wojtasedc660f2015-08-06 19:00:30 +02005342 hrtimer_start(&port_pcpu->tx_done_timer, interval,
5343 HRTIMER_MODE_REL_PINNED);
5344 }
5345}
5346
5347static void mvpp2_tx_proc_cb(unsigned long data)
5348{
5349 struct net_device *dev = (struct net_device *)data;
5350 struct mvpp2_port *port = netdev_priv(dev);
5351 struct mvpp2_port_pcpu *port_pcpu = this_cpu_ptr(port->pcpu);
5352 unsigned int tx_todo, cause;
5353
5354 if (!netif_running(dev))
5355 return;
5356 port_pcpu->timer_scheduled = false;
5357
5358 /* Process all the Tx queues */
5359 cause = (1 << txq_number) - 1;
5360 tx_todo = mvpp2_tx_done(port, cause);
5361
5362 /* Set the timer in case not all the packets were processed */
5363 if (tx_todo)
5364 mvpp2_timer_set(port_pcpu);
5365}
5366
5367static enum hrtimer_restart mvpp2_hr_timer_cb(struct hrtimer *timer)
5368{
5369 struct mvpp2_port_pcpu *port_pcpu = container_of(timer,
5370 struct mvpp2_port_pcpu,
5371 tx_done_timer);
5372
5373 tasklet_schedule(&port_pcpu->tx_done_tasklet);
5374
5375 return HRTIMER_NORESTART;
5376}
5377
Marcin Wojtas3f518502014-07-10 16:52:13 -03005378/* Main RX/TX processing routines */
5379
5380/* Display more error info */
5381static void mvpp2_rx_error(struct mvpp2_port *port,
5382 struct mvpp2_rx_desc *rx_desc)
5383{
Thomas Petazzoniac3dd2772017-03-07 16:53:05 +01005384 u32 status = mvpp2_rxdesc_status_get(port, rx_desc);
5385 size_t sz = mvpp2_rxdesc_size_get(port, rx_desc);
Marcin Wojtas3f518502014-07-10 16:52:13 -03005386
5387 switch (status & MVPP2_RXD_ERR_CODE_MASK) {
5388 case MVPP2_RXD_ERR_CRC:
Thomas Petazzoniac3dd2772017-03-07 16:53:05 +01005389 netdev_err(port->dev, "bad rx status %08x (crc error), size=%zu\n",
5390 status, sz);
Marcin Wojtas3f518502014-07-10 16:52:13 -03005391 break;
5392 case MVPP2_RXD_ERR_OVERRUN:
Thomas Petazzoniac3dd2772017-03-07 16:53:05 +01005393 netdev_err(port->dev, "bad rx status %08x (overrun error), size=%zu\n",
5394 status, sz);
Marcin Wojtas3f518502014-07-10 16:52:13 -03005395 break;
5396 case MVPP2_RXD_ERR_RESOURCE:
Thomas Petazzoniac3dd2772017-03-07 16:53:05 +01005397 netdev_err(port->dev, "bad rx status %08x (resource error), size=%zu\n",
5398 status, sz);
Marcin Wojtas3f518502014-07-10 16:52:13 -03005399 break;
5400 }
5401}
5402
5403/* Handle RX checksum offload */
5404static void mvpp2_rx_csum(struct mvpp2_port *port, u32 status,
5405 struct sk_buff *skb)
5406{
5407 if (((status & MVPP2_RXD_L3_IP4) &&
5408 !(status & MVPP2_RXD_IP4_HEADER_ERR)) ||
5409 (status & MVPP2_RXD_L3_IP6))
5410 if (((status & MVPP2_RXD_L4_UDP) ||
5411 (status & MVPP2_RXD_L4_TCP)) &&
5412 (status & MVPP2_RXD_L4_CSUM_OK)) {
5413 skb->csum = 0;
5414 skb->ip_summed = CHECKSUM_UNNECESSARY;
5415 return;
5416 }
5417
5418 skb->ip_summed = CHECKSUM_NONE;
5419}
5420
5421/* Reuse skb if possible, or allocate a new skb and add it to BM pool */
5422static int mvpp2_rx_refill(struct mvpp2_port *port,
Thomas Petazzoni7ef7e1d2017-02-21 11:28:07 +01005423 struct mvpp2_bm_pool *bm_pool, u32 bm)
Marcin Wojtas3f518502014-07-10 16:52:13 -03005424{
Thomas Petazzoni20396132017-03-07 16:53:00 +01005425 dma_addr_t dma_addr;
Thomas Petazzoni4e4a1052017-03-07 16:53:04 +01005426 phys_addr_t phys_addr;
Thomas Petazzoni0e037282017-02-21 11:28:12 +01005427 void *buf;
Marcin Wojtas3f518502014-07-10 16:52:13 -03005428
Marcin Wojtas3f518502014-07-10 16:52:13 -03005429 /* No recycle or too many buffers are in use, so allocate a new skb */
Thomas Petazzoni4e4a1052017-03-07 16:53:04 +01005430 buf = mvpp2_buf_alloc(port, bm_pool, &dma_addr, &phys_addr,
5431 GFP_ATOMIC);
Thomas Petazzoni0e037282017-02-21 11:28:12 +01005432 if (!buf)
Marcin Wojtas3f518502014-07-10 16:52:13 -03005433 return -ENOMEM;
5434
Thomas Petazzoni4e4a1052017-03-07 16:53:04 +01005435 mvpp2_pool_refill(port, bm, dma_addr, phys_addr);
Thomas Petazzoni7ef7e1d2017-02-21 11:28:07 +01005436
Marcin Wojtas3f518502014-07-10 16:52:13 -03005437 return 0;
5438}
5439
5440/* Handle tx checksum */
5441static u32 mvpp2_skb_tx_csum(struct mvpp2_port *port, struct sk_buff *skb)
5442{
5443 if (skb->ip_summed == CHECKSUM_PARTIAL) {
5444 int ip_hdr_len = 0;
5445 u8 l4_proto;
5446
5447 if (skb->protocol == htons(ETH_P_IP)) {
5448 struct iphdr *ip4h = ip_hdr(skb);
5449
5450 /* Calculate IPv4 checksum and L4 checksum */
5451 ip_hdr_len = ip4h->ihl;
5452 l4_proto = ip4h->protocol;
5453 } else if (skb->protocol == htons(ETH_P_IPV6)) {
5454 struct ipv6hdr *ip6h = ipv6_hdr(skb);
5455
5456 /* Read l4_protocol from one of IPv6 extra headers */
5457 if (skb_network_header_len(skb) > 0)
5458 ip_hdr_len = (skb_network_header_len(skb) >> 2);
5459 l4_proto = ip6h->nexthdr;
5460 } else {
5461 return MVPP2_TXD_L4_CSUM_NOT;
5462 }
5463
5464 return mvpp2_txq_desc_csum(skb_network_offset(skb),
5465 skb->protocol, ip_hdr_len, l4_proto);
5466 }
5467
5468 return MVPP2_TXD_L4_CSUM_NOT | MVPP2_TXD_IP_CSUM_DISABLE;
5469}
5470
Marcin Wojtas3f518502014-07-10 16:52:13 -03005471/* Main rx processing */
5472static int mvpp2_rx(struct mvpp2_port *port, int rx_todo,
5473 struct mvpp2_rx_queue *rxq)
5474{
5475 struct net_device *dev = port->dev;
Marcin Wojtasb5015852015-12-03 15:20:51 +01005476 int rx_received;
5477 int rx_done = 0;
Marcin Wojtas3f518502014-07-10 16:52:13 -03005478 u32 rcvd_pkts = 0;
5479 u32 rcvd_bytes = 0;
5480
5481 /* Get number of received packets and clamp the to-do */
5482 rx_received = mvpp2_rxq_received(port, rxq->id);
5483 if (rx_todo > rx_received)
5484 rx_todo = rx_received;
5485
Marcin Wojtasb5015852015-12-03 15:20:51 +01005486 while (rx_done < rx_todo) {
Marcin Wojtas3f518502014-07-10 16:52:13 -03005487 struct mvpp2_rx_desc *rx_desc = mvpp2_rxq_next_desc_get(rxq);
5488 struct mvpp2_bm_pool *bm_pool;
5489 struct sk_buff *skb;
Thomas Petazzoni0e037282017-02-21 11:28:12 +01005490 unsigned int frag_size;
Thomas Petazzoni20396132017-03-07 16:53:00 +01005491 dma_addr_t dma_addr;
Thomas Petazzoniac3dd2772017-03-07 16:53:05 +01005492 phys_addr_t phys_addr;
Marcin Wojtas3f518502014-07-10 16:52:13 -03005493 u32 bm, rx_status;
5494 int pool, rx_bytes, err;
Thomas Petazzoni0e037282017-02-21 11:28:12 +01005495 void *data;
Marcin Wojtas3f518502014-07-10 16:52:13 -03005496
Marcin Wojtasb5015852015-12-03 15:20:51 +01005497 rx_done++;
Thomas Petazzoniac3dd2772017-03-07 16:53:05 +01005498 rx_status = mvpp2_rxdesc_status_get(port, rx_desc);
5499 rx_bytes = mvpp2_rxdesc_size_get(port, rx_desc);
5500 rx_bytes -= MVPP2_MH_SIZE;
5501 dma_addr = mvpp2_rxdesc_dma_addr_get(port, rx_desc);
5502 phys_addr = mvpp2_rxdesc_cookie_get(port, rx_desc);
5503 data = (void *)phys_to_virt(phys_addr);
Marcin Wojtas3f518502014-07-10 16:52:13 -03005504
Thomas Petazzoniac3dd2772017-03-07 16:53:05 +01005505 bm = mvpp2_bm_cookie_build(port, rx_desc);
Marcin Wojtas3f518502014-07-10 16:52:13 -03005506 pool = mvpp2_bm_cookie_pool_get(bm);
5507 bm_pool = &port->priv->bm_pools[pool];
Marcin Wojtas3f518502014-07-10 16:52:13 -03005508
5509 /* In case of an error, release the requested buffer pointer
5510 * to the Buffer Manager. This request process is controlled
5511 * by the hardware, and the information about the buffer is
5512 * comprised by the RX descriptor.
5513 */
5514 if (rx_status & MVPP2_RXD_ERR_SUMMARY) {
Markus Elfring8a524882017-04-17 10:52:02 +02005515err_drop_frame:
Marcin Wojtas3f518502014-07-10 16:52:13 -03005516 dev->stats.rx_errors++;
5517 mvpp2_rx_error(port, rx_desc);
Marcin Wojtasb5015852015-12-03 15:20:51 +01005518 /* Return the buffer to the pool */
Thomas Petazzoniac3dd2772017-03-07 16:53:05 +01005519 mvpp2_pool_refill(port, bm, dma_addr, phys_addr);
Marcin Wojtas3f518502014-07-10 16:52:13 -03005520 continue;
5521 }
5522
Thomas Petazzoni0e037282017-02-21 11:28:12 +01005523 if (bm_pool->frag_size > PAGE_SIZE)
5524 frag_size = 0;
5525 else
5526 frag_size = bm_pool->frag_size;
5527
5528 skb = build_skb(data, frag_size);
5529 if (!skb) {
5530 netdev_warn(port->dev, "skb build failed\n");
5531 goto err_drop_frame;
5532 }
Marcin Wojtas3f518502014-07-10 16:52:13 -03005533
Thomas Petazzoni7ef7e1d2017-02-21 11:28:07 +01005534 err = mvpp2_rx_refill(port, bm_pool, bm);
Marcin Wojtasb5015852015-12-03 15:20:51 +01005535 if (err) {
5536 netdev_err(port->dev, "failed to refill BM pools\n");
5537 goto err_drop_frame;
5538 }
5539
Thomas Petazzoni20396132017-03-07 16:53:00 +01005540 dma_unmap_single(dev->dev.parent, dma_addr,
Marcin Wojtas4229d502015-12-03 15:20:50 +01005541 bm_pool->buf_size, DMA_FROM_DEVICE);
5542
Marcin Wojtas3f518502014-07-10 16:52:13 -03005543 rcvd_pkts++;
5544 rcvd_bytes += rx_bytes;
Marcin Wojtas3f518502014-07-10 16:52:13 -03005545
Thomas Petazzoni0e037282017-02-21 11:28:12 +01005546 skb_reserve(skb, MVPP2_MH_SIZE + NET_SKB_PAD);
Marcin Wojtas3f518502014-07-10 16:52:13 -03005547 skb_put(skb, rx_bytes);
5548 skb->protocol = eth_type_trans(skb, dev);
5549 mvpp2_rx_csum(port, rx_status, skb);
5550
5551 napi_gro_receive(&port->napi, skb);
Marcin Wojtas3f518502014-07-10 16:52:13 -03005552 }
5553
5554 if (rcvd_pkts) {
5555 struct mvpp2_pcpu_stats *stats = this_cpu_ptr(port->stats);
5556
5557 u64_stats_update_begin(&stats->syncp);
5558 stats->rx_packets += rcvd_pkts;
5559 stats->rx_bytes += rcvd_bytes;
5560 u64_stats_update_end(&stats->syncp);
5561 }
5562
5563 /* Update Rx queue management counters */
5564 wmb();
Marcin Wojtasb5015852015-12-03 15:20:51 +01005565 mvpp2_rxq_status_update(port, rxq->id, rx_done, rx_done);
Marcin Wojtas3f518502014-07-10 16:52:13 -03005566
5567 return rx_todo;
5568}
5569
5570static inline void
Thomas Petazzoniac3dd2772017-03-07 16:53:05 +01005571tx_desc_unmap_put(struct mvpp2_port *port, struct mvpp2_tx_queue *txq,
Marcin Wojtas3f518502014-07-10 16:52:13 -03005572 struct mvpp2_tx_desc *desc)
5573{
Thomas Petazzoniac3dd2772017-03-07 16:53:05 +01005574 dma_addr_t buf_dma_addr =
5575 mvpp2_txdesc_dma_addr_get(port, desc);
5576 size_t buf_sz =
5577 mvpp2_txdesc_size_get(port, desc);
5578 dma_unmap_single(port->dev->dev.parent, buf_dma_addr,
5579 buf_sz, DMA_TO_DEVICE);
Marcin Wojtas3f518502014-07-10 16:52:13 -03005580 mvpp2_txq_desc_put(txq);
5581}
5582
5583/* Handle tx fragmentation processing */
5584static int mvpp2_tx_frag_process(struct mvpp2_port *port, struct sk_buff *skb,
5585 struct mvpp2_tx_queue *aggr_txq,
5586 struct mvpp2_tx_queue *txq)
5587{
5588 struct mvpp2_txq_pcpu *txq_pcpu = this_cpu_ptr(txq->pcpu);
5589 struct mvpp2_tx_desc *tx_desc;
5590 int i;
Thomas Petazzoni20396132017-03-07 16:53:00 +01005591 dma_addr_t buf_dma_addr;
Marcin Wojtas3f518502014-07-10 16:52:13 -03005592
5593 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
5594 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
5595 void *addr = page_address(frag->page.p) + frag->page_offset;
5596
5597 tx_desc = mvpp2_txq_next_desc_get(aggr_txq);
Thomas Petazzoniac3dd2772017-03-07 16:53:05 +01005598 mvpp2_txdesc_txq_set(port, tx_desc, txq->id);
5599 mvpp2_txdesc_size_set(port, tx_desc, frag->size);
Marcin Wojtas3f518502014-07-10 16:52:13 -03005600
Thomas Petazzoni20396132017-03-07 16:53:00 +01005601 buf_dma_addr = dma_map_single(port->dev->dev.parent, addr,
Thomas Petazzoniac3dd2772017-03-07 16:53:05 +01005602 frag->size,
5603 DMA_TO_DEVICE);
Thomas Petazzoni20396132017-03-07 16:53:00 +01005604 if (dma_mapping_error(port->dev->dev.parent, buf_dma_addr)) {
Marcin Wojtas3f518502014-07-10 16:52:13 -03005605 mvpp2_txq_desc_put(txq);
Markus Elfring32bae632017-04-17 11:36:34 +02005606 goto cleanup;
Marcin Wojtas3f518502014-07-10 16:52:13 -03005607 }
5608
Thomas Petazzoniac3dd2772017-03-07 16:53:05 +01005609 mvpp2_txdesc_offset_set(port, tx_desc,
5610 buf_dma_addr & MVPP2_TX_DESC_ALIGN);
5611 mvpp2_txdesc_dma_addr_set(port, tx_desc,
5612 buf_dma_addr & ~MVPP2_TX_DESC_ALIGN);
Marcin Wojtas3f518502014-07-10 16:52:13 -03005613
5614 if (i == (skb_shinfo(skb)->nr_frags - 1)) {
5615 /* Last descriptor */
Thomas Petazzoniac3dd2772017-03-07 16:53:05 +01005616 mvpp2_txdesc_cmd_set(port, tx_desc,
5617 MVPP2_TXD_L_DESC);
5618 mvpp2_txq_inc_put(port, txq_pcpu, skb, tx_desc);
Marcin Wojtas3f518502014-07-10 16:52:13 -03005619 } else {
5620 /* Descriptor in the middle: Not First, Not Last */
Thomas Petazzoniac3dd2772017-03-07 16:53:05 +01005621 mvpp2_txdesc_cmd_set(port, tx_desc, 0);
5622 mvpp2_txq_inc_put(port, txq_pcpu, NULL, tx_desc);
Marcin Wojtas3f518502014-07-10 16:52:13 -03005623 }
5624 }
5625
5626 return 0;
Markus Elfring32bae632017-04-17 11:36:34 +02005627cleanup:
Marcin Wojtas3f518502014-07-10 16:52:13 -03005628 /* Release all descriptors that were used to map fragments of
5629 * this packet, as well as the corresponding DMA mappings
5630 */
5631 for (i = i - 1; i >= 0; i--) {
5632 tx_desc = txq->descs + i;
Thomas Petazzoniac3dd2772017-03-07 16:53:05 +01005633 tx_desc_unmap_put(port, txq, tx_desc);
Marcin Wojtas3f518502014-07-10 16:52:13 -03005634 }
5635
5636 return -ENOMEM;
5637}
5638
5639/* Main tx processing */
5640static int mvpp2_tx(struct sk_buff *skb, struct net_device *dev)
5641{
5642 struct mvpp2_port *port = netdev_priv(dev);
5643 struct mvpp2_tx_queue *txq, *aggr_txq;
5644 struct mvpp2_txq_pcpu *txq_pcpu;
5645 struct mvpp2_tx_desc *tx_desc;
Thomas Petazzoni20396132017-03-07 16:53:00 +01005646 dma_addr_t buf_dma_addr;
Marcin Wojtas3f518502014-07-10 16:52:13 -03005647 int frags = 0;
5648 u16 txq_id;
5649 u32 tx_cmd;
5650
5651 txq_id = skb_get_queue_mapping(skb);
5652 txq = port->txqs[txq_id];
5653 txq_pcpu = this_cpu_ptr(txq->pcpu);
5654 aggr_txq = &port->priv->aggr_txqs[smp_processor_id()];
5655
5656 frags = skb_shinfo(skb)->nr_frags + 1;
5657
5658 /* Check number of available descriptors */
5659 if (mvpp2_aggr_desc_num_check(port->priv, aggr_txq, frags) ||
5660 mvpp2_txq_reserved_desc_num_proc(port->priv, txq,
5661 txq_pcpu, frags)) {
5662 frags = 0;
5663 goto out;
5664 }
5665
5666 /* Get a descriptor for the first part of the packet */
5667 tx_desc = mvpp2_txq_next_desc_get(aggr_txq);
Thomas Petazzoniac3dd2772017-03-07 16:53:05 +01005668 mvpp2_txdesc_txq_set(port, tx_desc, txq->id);
5669 mvpp2_txdesc_size_set(port, tx_desc, skb_headlen(skb));
Marcin Wojtas3f518502014-07-10 16:52:13 -03005670
Thomas Petazzoni20396132017-03-07 16:53:00 +01005671 buf_dma_addr = dma_map_single(dev->dev.parent, skb->data,
Thomas Petazzoniac3dd2772017-03-07 16:53:05 +01005672 skb_headlen(skb), DMA_TO_DEVICE);
Thomas Petazzoni20396132017-03-07 16:53:00 +01005673 if (unlikely(dma_mapping_error(dev->dev.parent, buf_dma_addr))) {
Marcin Wojtas3f518502014-07-10 16:52:13 -03005674 mvpp2_txq_desc_put(txq);
5675 frags = 0;
5676 goto out;
5677 }
Thomas Petazzoniac3dd2772017-03-07 16:53:05 +01005678
5679 mvpp2_txdesc_offset_set(port, tx_desc,
5680 buf_dma_addr & MVPP2_TX_DESC_ALIGN);
5681 mvpp2_txdesc_dma_addr_set(port, tx_desc,
5682 buf_dma_addr & ~MVPP2_TX_DESC_ALIGN);
Marcin Wojtas3f518502014-07-10 16:52:13 -03005683
5684 tx_cmd = mvpp2_skb_tx_csum(port, skb);
5685
5686 if (frags == 1) {
5687 /* First and Last descriptor */
5688 tx_cmd |= MVPP2_TXD_F_DESC | MVPP2_TXD_L_DESC;
Thomas Petazzoniac3dd2772017-03-07 16:53:05 +01005689 mvpp2_txdesc_cmd_set(port, tx_desc, tx_cmd);
5690 mvpp2_txq_inc_put(port, txq_pcpu, skb, tx_desc);
Marcin Wojtas3f518502014-07-10 16:52:13 -03005691 } else {
5692 /* First but not Last */
5693 tx_cmd |= MVPP2_TXD_F_DESC | MVPP2_TXD_PADDING_DISABLE;
Thomas Petazzoniac3dd2772017-03-07 16:53:05 +01005694 mvpp2_txdesc_cmd_set(port, tx_desc, tx_cmd);
5695 mvpp2_txq_inc_put(port, txq_pcpu, NULL, tx_desc);
Marcin Wojtas3f518502014-07-10 16:52:13 -03005696
5697 /* Continue with other skb fragments */
5698 if (mvpp2_tx_frag_process(port, skb, aggr_txq, txq)) {
Thomas Petazzoniac3dd2772017-03-07 16:53:05 +01005699 tx_desc_unmap_put(port, txq, tx_desc);
Marcin Wojtas3f518502014-07-10 16:52:13 -03005700 frags = 0;
5701 goto out;
5702 }
5703 }
5704
5705 txq_pcpu->reserved_num -= frags;
5706 txq_pcpu->count += frags;
5707 aggr_txq->count += frags;
5708
5709 /* Enable transmit */
5710 wmb();
5711 mvpp2_aggr_txq_pend_desc_add(port, frags);
5712
5713 if (txq_pcpu->size - txq_pcpu->count < MAX_SKB_FRAGS + 1) {
5714 struct netdev_queue *nq = netdev_get_tx_queue(dev, txq_id);
5715
5716 netif_tx_stop_queue(nq);
5717 }
5718out:
5719 if (frags > 0) {
5720 struct mvpp2_pcpu_stats *stats = this_cpu_ptr(port->stats);
5721
5722 u64_stats_update_begin(&stats->syncp);
5723 stats->tx_packets++;
5724 stats->tx_bytes += skb->len;
5725 u64_stats_update_end(&stats->syncp);
5726 } else {
5727 dev->stats.tx_dropped++;
5728 dev_kfree_skb_any(skb);
5729 }
5730
Marcin Wojtasedc660f2015-08-06 19:00:30 +02005731 /* Finalize TX processing */
5732 if (txq_pcpu->count >= txq->done_pkts_coal)
5733 mvpp2_txq_done(port, txq, txq_pcpu);
5734
5735 /* Set the timer in case not all frags were processed */
5736 if (txq_pcpu->count <= frags && txq_pcpu->count > 0) {
5737 struct mvpp2_port_pcpu *port_pcpu = this_cpu_ptr(port->pcpu);
5738
5739 mvpp2_timer_set(port_pcpu);
5740 }
5741
Marcin Wojtas3f518502014-07-10 16:52:13 -03005742 return NETDEV_TX_OK;
5743}
5744
5745static inline void mvpp2_cause_error(struct net_device *dev, int cause)
5746{
5747 if (cause & MVPP2_CAUSE_FCS_ERR_MASK)
5748 netdev_err(dev, "FCS error\n");
5749 if (cause & MVPP2_CAUSE_RX_FIFO_OVERRUN_MASK)
5750 netdev_err(dev, "rx fifo overrun error\n");
5751 if (cause & MVPP2_CAUSE_TX_FIFO_UNDERRUN_MASK)
5752 netdev_err(dev, "tx fifo underrun error\n");
5753}
5754
Marcin Wojtasedc660f2015-08-06 19:00:30 +02005755static int mvpp2_poll(struct napi_struct *napi, int budget)
Marcin Wojtas3f518502014-07-10 16:52:13 -03005756{
Marcin Wojtasedc660f2015-08-06 19:00:30 +02005757 u32 cause_rx_tx, cause_rx, cause_misc;
5758 int rx_done = 0;
5759 struct mvpp2_port *port = netdev_priv(napi->dev);
Thomas Petazzonia7868412017-03-07 16:53:13 +01005760 int cpu = smp_processor_id();
Marcin Wojtas3f518502014-07-10 16:52:13 -03005761
5762 /* Rx/Tx cause register
5763 *
5764 * Bits 0-15: each bit indicates received packets on the Rx queue
5765 * (bit 0 is for Rx queue 0).
5766 *
5767 * Bits 16-23: each bit indicates transmitted packets on the Tx queue
5768 * (bit 16 is for Tx queue 0).
5769 *
5770 * Each CPU has its own Rx/Tx cause register
5771 */
Thomas Petazzonia7868412017-03-07 16:53:13 +01005772 cause_rx_tx = mvpp2_percpu_read(port->priv, cpu,
5773 MVPP2_ISR_RX_TX_CAUSE_REG(port->id));
Marcin Wojtasedc660f2015-08-06 19:00:30 +02005774 cause_rx_tx &= ~MVPP2_CAUSE_TXQ_OCCUP_DESC_ALL_MASK;
Marcin Wojtas3f518502014-07-10 16:52:13 -03005775 cause_misc = cause_rx_tx & MVPP2_CAUSE_MISC_SUM_MASK;
5776
5777 if (cause_misc) {
5778 mvpp2_cause_error(port->dev, cause_misc);
5779
5780 /* Clear the cause register */
5781 mvpp2_write(port->priv, MVPP2_ISR_MISC_CAUSE_REG, 0);
Thomas Petazzonia7868412017-03-07 16:53:13 +01005782 mvpp2_percpu_write(port->priv, cpu,
5783 MVPP2_ISR_RX_TX_CAUSE_REG(port->id),
5784 cause_rx_tx & ~MVPP2_CAUSE_MISC_SUM_MASK);
Marcin Wojtas3f518502014-07-10 16:52:13 -03005785 }
5786
Marcin Wojtas3f518502014-07-10 16:52:13 -03005787 cause_rx = cause_rx_tx & MVPP2_CAUSE_RXQ_OCCUP_DESC_ALL_MASK;
5788
5789 /* Process RX packets */
5790 cause_rx |= port->pending_cause_rx;
5791 while (cause_rx && budget > 0) {
5792 int count;
5793 struct mvpp2_rx_queue *rxq;
5794
5795 rxq = mvpp2_get_rx_queue(port, cause_rx);
5796 if (!rxq)
5797 break;
5798
5799 count = mvpp2_rx(port, budget, rxq);
5800 rx_done += count;
5801 budget -= count;
5802 if (budget > 0) {
5803 /* Clear the bit associated to this Rx queue
5804 * so that next iteration will continue from
5805 * the next Rx queue.
5806 */
5807 cause_rx &= ~(1 << rxq->logic_rxq);
5808 }
5809 }
5810
5811 if (budget > 0) {
5812 cause_rx = 0;
Eric Dumazet6ad20162017-01-30 08:22:01 -08005813 napi_complete_done(napi, rx_done);
Marcin Wojtas3f518502014-07-10 16:52:13 -03005814
5815 mvpp2_interrupts_enable(port);
5816 }
5817 port->pending_cause_rx = cause_rx;
5818 return rx_done;
5819}
5820
5821/* Set hw internals when starting port */
5822static void mvpp2_start_dev(struct mvpp2_port *port)
5823{
Philippe Reynes8e072692016-06-28 00:08:11 +02005824 struct net_device *ndev = port->dev;
5825
Marcin Wojtas3f518502014-07-10 16:52:13 -03005826 mvpp2_gmac_max_rx_size_set(port);
5827 mvpp2_txp_max_tx_size_set(port);
5828
5829 napi_enable(&port->napi);
5830
5831 /* Enable interrupts on all CPUs */
5832 mvpp2_interrupts_enable(port);
5833
5834 mvpp2_port_enable(port);
Philippe Reynes8e072692016-06-28 00:08:11 +02005835 phy_start(ndev->phydev);
Marcin Wojtas3f518502014-07-10 16:52:13 -03005836 netif_tx_start_all_queues(port->dev);
5837}
5838
5839/* Set hw internals when stopping port */
5840static void mvpp2_stop_dev(struct mvpp2_port *port)
5841{
Philippe Reynes8e072692016-06-28 00:08:11 +02005842 struct net_device *ndev = port->dev;
5843
Marcin Wojtas3f518502014-07-10 16:52:13 -03005844 /* Stop new packets from arriving to RXQs */
5845 mvpp2_ingress_disable(port);
5846
5847 mdelay(10);
5848
5849 /* Disable interrupts on all CPUs */
5850 mvpp2_interrupts_disable(port);
5851
5852 napi_disable(&port->napi);
5853
5854 netif_carrier_off(port->dev);
5855 netif_tx_stop_all_queues(port->dev);
5856
5857 mvpp2_egress_disable(port);
5858 mvpp2_port_disable(port);
Philippe Reynes8e072692016-06-28 00:08:11 +02005859 phy_stop(ndev->phydev);
Marcin Wojtas3f518502014-07-10 16:52:13 -03005860}
5861
Marcin Wojtas3f518502014-07-10 16:52:13 -03005862static int mvpp2_check_ringparam_valid(struct net_device *dev,
5863 struct ethtool_ringparam *ring)
5864{
5865 u16 new_rx_pending = ring->rx_pending;
5866 u16 new_tx_pending = ring->tx_pending;
5867
5868 if (ring->rx_pending == 0 || ring->tx_pending == 0)
5869 return -EINVAL;
5870
5871 if (ring->rx_pending > MVPP2_MAX_RXD)
5872 new_rx_pending = MVPP2_MAX_RXD;
5873 else if (!IS_ALIGNED(ring->rx_pending, 16))
5874 new_rx_pending = ALIGN(ring->rx_pending, 16);
5875
5876 if (ring->tx_pending > MVPP2_MAX_TXD)
5877 new_tx_pending = MVPP2_MAX_TXD;
5878 else if (!IS_ALIGNED(ring->tx_pending, 32))
5879 new_tx_pending = ALIGN(ring->tx_pending, 32);
5880
5881 if (ring->rx_pending != new_rx_pending) {
5882 netdev_info(dev, "illegal Rx ring size value %d, round to %d\n",
5883 ring->rx_pending, new_rx_pending);
5884 ring->rx_pending = new_rx_pending;
5885 }
5886
5887 if (ring->tx_pending != new_tx_pending) {
5888 netdev_info(dev, "illegal Tx ring size value %d, round to %d\n",
5889 ring->tx_pending, new_tx_pending);
5890 ring->tx_pending = new_tx_pending;
5891 }
5892
5893 return 0;
5894}
5895
Thomas Petazzoni26975822017-03-07 16:53:14 +01005896static void mvpp21_get_mac_address(struct mvpp2_port *port, unsigned char *addr)
Marcin Wojtas3f518502014-07-10 16:52:13 -03005897{
5898 u32 mac_addr_l, mac_addr_m, mac_addr_h;
5899
5900 mac_addr_l = readl(port->base + MVPP2_GMAC_CTRL_1_REG);
5901 mac_addr_m = readl(port->priv->lms_base + MVPP2_SRC_ADDR_MIDDLE);
5902 mac_addr_h = readl(port->priv->lms_base + MVPP2_SRC_ADDR_HIGH);
5903 addr[0] = (mac_addr_h >> 24) & 0xFF;
5904 addr[1] = (mac_addr_h >> 16) & 0xFF;
5905 addr[2] = (mac_addr_h >> 8) & 0xFF;
5906 addr[3] = mac_addr_h & 0xFF;
5907 addr[4] = mac_addr_m & 0xFF;
5908 addr[5] = (mac_addr_l >> MVPP2_GMAC_SA_LOW_OFFS) & 0xFF;
5909}
5910
5911static int mvpp2_phy_connect(struct mvpp2_port *port)
5912{
5913 struct phy_device *phy_dev;
5914
5915 phy_dev = of_phy_connect(port->dev, port->phy_node, mvpp2_link_event, 0,
5916 port->phy_interface);
5917 if (!phy_dev) {
5918 netdev_err(port->dev, "cannot connect to phy\n");
5919 return -ENODEV;
5920 }
5921 phy_dev->supported &= PHY_GBIT_FEATURES;
5922 phy_dev->advertising = phy_dev->supported;
5923
Marcin Wojtas3f518502014-07-10 16:52:13 -03005924 port->link = 0;
5925 port->duplex = 0;
5926 port->speed = 0;
5927
5928 return 0;
5929}
5930
5931static void mvpp2_phy_disconnect(struct mvpp2_port *port)
5932{
Philippe Reynes8e072692016-06-28 00:08:11 +02005933 struct net_device *ndev = port->dev;
5934
5935 phy_disconnect(ndev->phydev);
Marcin Wojtas3f518502014-07-10 16:52:13 -03005936}
5937
5938static int mvpp2_open(struct net_device *dev)
5939{
5940 struct mvpp2_port *port = netdev_priv(dev);
5941 unsigned char mac_bcast[ETH_ALEN] = {
5942 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
5943 int err;
5944
5945 err = mvpp2_prs_mac_da_accept(port->priv, port->id, mac_bcast, true);
5946 if (err) {
5947 netdev_err(dev, "mvpp2_prs_mac_da_accept BC failed\n");
5948 return err;
5949 }
5950 err = mvpp2_prs_mac_da_accept(port->priv, port->id,
5951 dev->dev_addr, true);
5952 if (err) {
5953 netdev_err(dev, "mvpp2_prs_mac_da_accept MC failed\n");
5954 return err;
5955 }
5956 err = mvpp2_prs_tag_mode_set(port->priv, port->id, MVPP2_TAG_TYPE_MH);
5957 if (err) {
5958 netdev_err(dev, "mvpp2_prs_tag_mode_set failed\n");
5959 return err;
5960 }
5961 err = mvpp2_prs_def_flow(port);
5962 if (err) {
5963 netdev_err(dev, "mvpp2_prs_def_flow failed\n");
5964 return err;
5965 }
5966
5967 /* Allocate the Rx/Tx queues */
5968 err = mvpp2_setup_rxqs(port);
5969 if (err) {
5970 netdev_err(port->dev, "cannot allocate Rx queues\n");
5971 return err;
5972 }
5973
5974 err = mvpp2_setup_txqs(port);
5975 if (err) {
5976 netdev_err(port->dev, "cannot allocate Tx queues\n");
5977 goto err_cleanup_rxqs;
5978 }
5979
5980 err = request_irq(port->irq, mvpp2_isr, 0, dev->name, port);
5981 if (err) {
5982 netdev_err(port->dev, "cannot request IRQ %d\n", port->irq);
5983 goto err_cleanup_txqs;
5984 }
5985
5986 /* In default link is down */
5987 netif_carrier_off(port->dev);
5988
5989 err = mvpp2_phy_connect(port);
5990 if (err < 0)
5991 goto err_free_irq;
5992
5993 /* Unmask interrupts on all CPUs */
5994 on_each_cpu(mvpp2_interrupts_unmask, port, 1);
5995
5996 mvpp2_start_dev(port);
5997
5998 return 0;
5999
6000err_free_irq:
6001 free_irq(port->irq, port);
6002err_cleanup_txqs:
6003 mvpp2_cleanup_txqs(port);
6004err_cleanup_rxqs:
6005 mvpp2_cleanup_rxqs(port);
6006 return err;
6007}
6008
6009static int mvpp2_stop(struct net_device *dev)
6010{
6011 struct mvpp2_port *port = netdev_priv(dev);
Marcin Wojtasedc660f2015-08-06 19:00:30 +02006012 struct mvpp2_port_pcpu *port_pcpu;
6013 int cpu;
Marcin Wojtas3f518502014-07-10 16:52:13 -03006014
6015 mvpp2_stop_dev(port);
6016 mvpp2_phy_disconnect(port);
6017
6018 /* Mask interrupts on all CPUs */
6019 on_each_cpu(mvpp2_interrupts_mask, port, 1);
6020
6021 free_irq(port->irq, port);
Marcin Wojtasedc660f2015-08-06 19:00:30 +02006022 for_each_present_cpu(cpu) {
6023 port_pcpu = per_cpu_ptr(port->pcpu, cpu);
6024
6025 hrtimer_cancel(&port_pcpu->tx_done_timer);
6026 port_pcpu->timer_scheduled = false;
6027 tasklet_kill(&port_pcpu->tx_done_tasklet);
6028 }
Marcin Wojtas3f518502014-07-10 16:52:13 -03006029 mvpp2_cleanup_rxqs(port);
6030 mvpp2_cleanup_txqs(port);
6031
6032 return 0;
6033}
6034
6035static void mvpp2_set_rx_mode(struct net_device *dev)
6036{
6037 struct mvpp2_port *port = netdev_priv(dev);
6038 struct mvpp2 *priv = port->priv;
6039 struct netdev_hw_addr *ha;
6040 int id = port->id;
6041 bool allmulti = dev->flags & IFF_ALLMULTI;
6042
6043 mvpp2_prs_mac_promisc_set(priv, id, dev->flags & IFF_PROMISC);
6044 mvpp2_prs_mac_multi_set(priv, id, MVPP2_PE_MAC_MC_ALL, allmulti);
6045 mvpp2_prs_mac_multi_set(priv, id, MVPP2_PE_MAC_MC_IP6, allmulti);
6046
6047 /* Remove all port->id's mcast enries */
6048 mvpp2_prs_mcast_del_all(priv, id);
6049
6050 if (allmulti && !netdev_mc_empty(dev)) {
6051 netdev_for_each_mc_addr(ha, dev)
6052 mvpp2_prs_mac_da_accept(priv, id, ha->addr, true);
6053 }
6054}
6055
6056static int mvpp2_set_mac_address(struct net_device *dev, void *p)
6057{
6058 struct mvpp2_port *port = netdev_priv(dev);
6059 const struct sockaddr *addr = p;
6060 int err;
6061
6062 if (!is_valid_ether_addr(addr->sa_data)) {
6063 err = -EADDRNOTAVAIL;
Markus Elfringc1175542017-04-17 11:10:47 +02006064 goto log_error;
Marcin Wojtas3f518502014-07-10 16:52:13 -03006065 }
6066
6067 if (!netif_running(dev)) {
6068 err = mvpp2_prs_update_mac_da(dev, addr->sa_data);
6069 if (!err)
6070 return 0;
6071 /* Reconfigure parser to accept the original MAC address */
6072 err = mvpp2_prs_update_mac_da(dev, dev->dev_addr);
6073 if (err)
Markus Elfringc1175542017-04-17 11:10:47 +02006074 goto log_error;
Marcin Wojtas3f518502014-07-10 16:52:13 -03006075 }
6076
6077 mvpp2_stop_dev(port);
6078
6079 err = mvpp2_prs_update_mac_da(dev, addr->sa_data);
6080 if (!err)
6081 goto out_start;
6082
6083 /* Reconfigure parser accept the original MAC address */
6084 err = mvpp2_prs_update_mac_da(dev, dev->dev_addr);
6085 if (err)
Markus Elfringc1175542017-04-17 11:10:47 +02006086 goto log_error;
Marcin Wojtas3f518502014-07-10 16:52:13 -03006087out_start:
6088 mvpp2_start_dev(port);
6089 mvpp2_egress_enable(port);
6090 mvpp2_ingress_enable(port);
6091 return 0;
Markus Elfringc1175542017-04-17 11:10:47 +02006092log_error:
Markus Elfringdfd42402017-04-17 11:20:41 +02006093 netdev_err(dev, "failed to change MAC address\n");
Marcin Wojtas3f518502014-07-10 16:52:13 -03006094 return err;
6095}
6096
6097static int mvpp2_change_mtu(struct net_device *dev, int mtu)
6098{
6099 struct mvpp2_port *port = netdev_priv(dev);
6100 int err;
6101
Jarod Wilson57779872016-10-17 15:54:06 -04006102 if (!IS_ALIGNED(MVPP2_RX_PKT_SIZE(mtu), 8)) {
6103 netdev_info(dev, "illegal MTU value %d, round to %d\n", mtu,
6104 ALIGN(MVPP2_RX_PKT_SIZE(mtu), 8));
6105 mtu = ALIGN(MVPP2_RX_PKT_SIZE(mtu), 8);
Marcin Wojtas3f518502014-07-10 16:52:13 -03006106 }
6107
6108 if (!netif_running(dev)) {
6109 err = mvpp2_bm_update_mtu(dev, mtu);
6110 if (!err) {
6111 port->pkt_size = MVPP2_RX_PKT_SIZE(mtu);
6112 return 0;
6113 }
6114
6115 /* Reconfigure BM to the original MTU */
6116 err = mvpp2_bm_update_mtu(dev, dev->mtu);
6117 if (err)
Markus Elfringc1175542017-04-17 11:10:47 +02006118 goto log_error;
Marcin Wojtas3f518502014-07-10 16:52:13 -03006119 }
6120
6121 mvpp2_stop_dev(port);
6122
6123 err = mvpp2_bm_update_mtu(dev, mtu);
6124 if (!err) {
6125 port->pkt_size = MVPP2_RX_PKT_SIZE(mtu);
6126 goto out_start;
6127 }
6128
6129 /* Reconfigure BM to the original MTU */
6130 err = mvpp2_bm_update_mtu(dev, dev->mtu);
6131 if (err)
Markus Elfringc1175542017-04-17 11:10:47 +02006132 goto log_error;
Marcin Wojtas3f518502014-07-10 16:52:13 -03006133
6134out_start:
6135 mvpp2_start_dev(port);
6136 mvpp2_egress_enable(port);
6137 mvpp2_ingress_enable(port);
6138
6139 return 0;
Markus Elfringc1175542017-04-17 11:10:47 +02006140log_error:
Markus Elfringdfd42402017-04-17 11:20:41 +02006141 netdev_err(dev, "failed to change MTU\n");
Marcin Wojtas3f518502014-07-10 16:52:13 -03006142 return err;
6143}
6144
stephen hemmingerbc1f4472017-01-06 19:12:52 -08006145static void
Marcin Wojtas3f518502014-07-10 16:52:13 -03006146mvpp2_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats)
6147{
6148 struct mvpp2_port *port = netdev_priv(dev);
6149 unsigned int start;
6150 int cpu;
6151
6152 for_each_possible_cpu(cpu) {
6153 struct mvpp2_pcpu_stats *cpu_stats;
6154 u64 rx_packets;
6155 u64 rx_bytes;
6156 u64 tx_packets;
6157 u64 tx_bytes;
6158
6159 cpu_stats = per_cpu_ptr(port->stats, cpu);
6160 do {
6161 start = u64_stats_fetch_begin_irq(&cpu_stats->syncp);
6162 rx_packets = cpu_stats->rx_packets;
6163 rx_bytes = cpu_stats->rx_bytes;
6164 tx_packets = cpu_stats->tx_packets;
6165 tx_bytes = cpu_stats->tx_bytes;
6166 } while (u64_stats_fetch_retry_irq(&cpu_stats->syncp, start));
6167
6168 stats->rx_packets += rx_packets;
6169 stats->rx_bytes += rx_bytes;
6170 stats->tx_packets += tx_packets;
6171 stats->tx_bytes += tx_bytes;
6172 }
6173
6174 stats->rx_errors = dev->stats.rx_errors;
6175 stats->rx_dropped = dev->stats.rx_dropped;
6176 stats->tx_dropped = dev->stats.tx_dropped;
Marcin Wojtas3f518502014-07-10 16:52:13 -03006177}
6178
Thomas Petazzonibd695a52014-07-27 23:21:36 +02006179static int mvpp2_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
6180{
Thomas Petazzonibd695a52014-07-27 23:21:36 +02006181 int ret;
6182
Philippe Reynes8e072692016-06-28 00:08:11 +02006183 if (!dev->phydev)
Thomas Petazzonibd695a52014-07-27 23:21:36 +02006184 return -ENOTSUPP;
6185
Philippe Reynes8e072692016-06-28 00:08:11 +02006186 ret = phy_mii_ioctl(dev->phydev, ifr, cmd);
Thomas Petazzonibd695a52014-07-27 23:21:36 +02006187 if (!ret)
6188 mvpp2_link_event(dev);
6189
6190 return ret;
6191}
6192
Marcin Wojtas3f518502014-07-10 16:52:13 -03006193/* Ethtool methods */
6194
Marcin Wojtas3f518502014-07-10 16:52:13 -03006195/* Set interrupt coalescing for ethtools */
6196static int mvpp2_ethtool_set_coalesce(struct net_device *dev,
6197 struct ethtool_coalesce *c)
6198{
6199 struct mvpp2_port *port = netdev_priv(dev);
6200 int queue;
6201
6202 for (queue = 0; queue < rxq_number; queue++) {
6203 struct mvpp2_rx_queue *rxq = port->rxqs[queue];
6204
6205 rxq->time_coal = c->rx_coalesce_usecs;
6206 rxq->pkts_coal = c->rx_max_coalesced_frames;
Thomas Petazzonid63f9e42017-02-21 11:28:02 +01006207 mvpp2_rx_pkts_coal_set(port, rxq);
6208 mvpp2_rx_time_coal_set(port, rxq);
Marcin Wojtas3f518502014-07-10 16:52:13 -03006209 }
6210
6211 for (queue = 0; queue < txq_number; queue++) {
6212 struct mvpp2_tx_queue *txq = port->txqs[queue];
6213
6214 txq->done_pkts_coal = c->tx_max_coalesced_frames;
6215 }
6216
Marcin Wojtas3f518502014-07-10 16:52:13 -03006217 return 0;
6218}
6219
6220/* get coalescing for ethtools */
6221static int mvpp2_ethtool_get_coalesce(struct net_device *dev,
6222 struct ethtool_coalesce *c)
6223{
6224 struct mvpp2_port *port = netdev_priv(dev);
6225
6226 c->rx_coalesce_usecs = port->rxqs[0]->time_coal;
6227 c->rx_max_coalesced_frames = port->rxqs[0]->pkts_coal;
6228 c->tx_max_coalesced_frames = port->txqs[0]->done_pkts_coal;
6229 return 0;
6230}
6231
6232static void mvpp2_ethtool_get_drvinfo(struct net_device *dev,
6233 struct ethtool_drvinfo *drvinfo)
6234{
6235 strlcpy(drvinfo->driver, MVPP2_DRIVER_NAME,
6236 sizeof(drvinfo->driver));
6237 strlcpy(drvinfo->version, MVPP2_DRIVER_VERSION,
6238 sizeof(drvinfo->version));
6239 strlcpy(drvinfo->bus_info, dev_name(&dev->dev),
6240 sizeof(drvinfo->bus_info));
6241}
6242
6243static void mvpp2_ethtool_get_ringparam(struct net_device *dev,
6244 struct ethtool_ringparam *ring)
6245{
6246 struct mvpp2_port *port = netdev_priv(dev);
6247
6248 ring->rx_max_pending = MVPP2_MAX_RXD;
6249 ring->tx_max_pending = MVPP2_MAX_TXD;
6250 ring->rx_pending = port->rx_ring_size;
6251 ring->tx_pending = port->tx_ring_size;
6252}
6253
6254static int mvpp2_ethtool_set_ringparam(struct net_device *dev,
6255 struct ethtool_ringparam *ring)
6256{
6257 struct mvpp2_port *port = netdev_priv(dev);
6258 u16 prev_rx_ring_size = port->rx_ring_size;
6259 u16 prev_tx_ring_size = port->tx_ring_size;
6260 int err;
6261
6262 err = mvpp2_check_ringparam_valid(dev, ring);
6263 if (err)
6264 return err;
6265
6266 if (!netif_running(dev)) {
6267 port->rx_ring_size = ring->rx_pending;
6268 port->tx_ring_size = ring->tx_pending;
6269 return 0;
6270 }
6271
6272 /* The interface is running, so we have to force a
6273 * reallocation of the queues
6274 */
6275 mvpp2_stop_dev(port);
6276 mvpp2_cleanup_rxqs(port);
6277 mvpp2_cleanup_txqs(port);
6278
6279 port->rx_ring_size = ring->rx_pending;
6280 port->tx_ring_size = ring->tx_pending;
6281
6282 err = mvpp2_setup_rxqs(port);
6283 if (err) {
6284 /* Reallocate Rx queues with the original ring size */
6285 port->rx_ring_size = prev_rx_ring_size;
6286 ring->rx_pending = prev_rx_ring_size;
6287 err = mvpp2_setup_rxqs(port);
6288 if (err)
6289 goto err_out;
6290 }
6291 err = mvpp2_setup_txqs(port);
6292 if (err) {
6293 /* Reallocate Tx queues with the original ring size */
6294 port->tx_ring_size = prev_tx_ring_size;
6295 ring->tx_pending = prev_tx_ring_size;
6296 err = mvpp2_setup_txqs(port);
6297 if (err)
6298 goto err_clean_rxqs;
6299 }
6300
6301 mvpp2_start_dev(port);
6302 mvpp2_egress_enable(port);
6303 mvpp2_ingress_enable(port);
6304
6305 return 0;
6306
6307err_clean_rxqs:
6308 mvpp2_cleanup_rxqs(port);
6309err_out:
Markus Elfringdfd42402017-04-17 11:20:41 +02006310 netdev_err(dev, "failed to change ring parameters");
Marcin Wojtas3f518502014-07-10 16:52:13 -03006311 return err;
6312}
6313
6314/* Device ops */
6315
6316static const struct net_device_ops mvpp2_netdev_ops = {
6317 .ndo_open = mvpp2_open,
6318 .ndo_stop = mvpp2_stop,
6319 .ndo_start_xmit = mvpp2_tx,
6320 .ndo_set_rx_mode = mvpp2_set_rx_mode,
6321 .ndo_set_mac_address = mvpp2_set_mac_address,
6322 .ndo_change_mtu = mvpp2_change_mtu,
6323 .ndo_get_stats64 = mvpp2_get_stats64,
Thomas Petazzonibd695a52014-07-27 23:21:36 +02006324 .ndo_do_ioctl = mvpp2_ioctl,
Marcin Wojtas3f518502014-07-10 16:52:13 -03006325};
6326
6327static const struct ethtool_ops mvpp2_eth_tool_ops = {
Florian Fainelli00606c42016-11-15 11:19:48 -08006328 .nway_reset = phy_ethtool_nway_reset,
Marcin Wojtas3f518502014-07-10 16:52:13 -03006329 .get_link = ethtool_op_get_link,
Marcin Wojtas3f518502014-07-10 16:52:13 -03006330 .set_coalesce = mvpp2_ethtool_set_coalesce,
6331 .get_coalesce = mvpp2_ethtool_get_coalesce,
6332 .get_drvinfo = mvpp2_ethtool_get_drvinfo,
6333 .get_ringparam = mvpp2_ethtool_get_ringparam,
6334 .set_ringparam = mvpp2_ethtool_set_ringparam,
Philippe Reynesfb773e92016-06-28 00:08:12 +02006335 .get_link_ksettings = phy_ethtool_get_link_ksettings,
6336 .set_link_ksettings = phy_ethtool_set_link_ksettings,
Marcin Wojtas3f518502014-07-10 16:52:13 -03006337};
6338
Marcin Wojtas3f518502014-07-10 16:52:13 -03006339/* Initialize port HW */
6340static int mvpp2_port_init(struct mvpp2_port *port)
6341{
6342 struct device *dev = port->dev->dev.parent;
6343 struct mvpp2 *priv = port->priv;
6344 struct mvpp2_txq_pcpu *txq_pcpu;
6345 int queue, cpu, err;
6346
Thomas Petazzoni59b9a312017-03-07 16:53:17 +01006347 if (port->first_rxq + rxq_number >
6348 MVPP2_MAX_PORTS * priv->max_port_rxqs)
Marcin Wojtas3f518502014-07-10 16:52:13 -03006349 return -EINVAL;
6350
6351 /* Disable port */
6352 mvpp2_egress_disable(port);
6353 mvpp2_port_disable(port);
6354
6355 port->txqs = devm_kcalloc(dev, txq_number, sizeof(*port->txqs),
6356 GFP_KERNEL);
6357 if (!port->txqs)
6358 return -ENOMEM;
6359
6360 /* Associate physical Tx queues to this port and initialize.
6361 * The mapping is predefined.
6362 */
6363 for (queue = 0; queue < txq_number; queue++) {
6364 int queue_phy_id = mvpp2_txq_phys(port->id, queue);
6365 struct mvpp2_tx_queue *txq;
6366
6367 txq = devm_kzalloc(dev, sizeof(*txq), GFP_KERNEL);
Christophe Jaillet177c8d12017-02-19 10:19:57 +01006368 if (!txq) {
6369 err = -ENOMEM;
6370 goto err_free_percpu;
6371 }
Marcin Wojtas3f518502014-07-10 16:52:13 -03006372
6373 txq->pcpu = alloc_percpu(struct mvpp2_txq_pcpu);
6374 if (!txq->pcpu) {
6375 err = -ENOMEM;
6376 goto err_free_percpu;
6377 }
6378
6379 txq->id = queue_phy_id;
6380 txq->log_id = queue;
6381 txq->done_pkts_coal = MVPP2_TXDONE_COAL_PKTS_THRESH;
6382 for_each_present_cpu(cpu) {
6383 txq_pcpu = per_cpu_ptr(txq->pcpu, cpu);
6384 txq_pcpu->cpu = cpu;
6385 }
6386
6387 port->txqs[queue] = txq;
6388 }
6389
6390 port->rxqs = devm_kcalloc(dev, rxq_number, sizeof(*port->rxqs),
6391 GFP_KERNEL);
6392 if (!port->rxqs) {
6393 err = -ENOMEM;
6394 goto err_free_percpu;
6395 }
6396
6397 /* Allocate and initialize Rx queue for this port */
6398 for (queue = 0; queue < rxq_number; queue++) {
6399 struct mvpp2_rx_queue *rxq;
6400
6401 /* Map physical Rx queue to port's logical Rx queue */
6402 rxq = devm_kzalloc(dev, sizeof(*rxq), GFP_KERNEL);
Jisheng Zhangd82b0c22016-03-31 17:01:23 +08006403 if (!rxq) {
6404 err = -ENOMEM;
Marcin Wojtas3f518502014-07-10 16:52:13 -03006405 goto err_free_percpu;
Jisheng Zhangd82b0c22016-03-31 17:01:23 +08006406 }
Marcin Wojtas3f518502014-07-10 16:52:13 -03006407 /* Map this Rx queue to a physical queue */
6408 rxq->id = port->first_rxq + queue;
6409 rxq->port = port->id;
6410 rxq->logic_rxq = queue;
6411
6412 port->rxqs[queue] = rxq;
6413 }
6414
6415 /* Configure Rx queue group interrupt for this port */
Thomas Petazzonia73fef12017-03-07 16:53:16 +01006416 if (priv->hw_version == MVPP21) {
6417 mvpp2_write(priv, MVPP21_ISR_RXQ_GROUP_REG(port->id),
6418 rxq_number);
6419 } else {
6420 u32 val;
6421
6422 val = (port->id << MVPP22_ISR_RXQ_GROUP_INDEX_GROUP_OFFSET);
6423 mvpp2_write(priv, MVPP22_ISR_RXQ_GROUP_INDEX_REG, val);
6424
6425 val = (rxq_number << MVPP22_ISR_RXQ_SUB_GROUP_SIZE_OFFSET);
6426 mvpp2_write(priv, MVPP22_ISR_RXQ_SUB_GROUP_CONFIG_REG, val);
6427 }
Marcin Wojtas3f518502014-07-10 16:52:13 -03006428
6429 /* Create Rx descriptor rings */
6430 for (queue = 0; queue < rxq_number; queue++) {
6431 struct mvpp2_rx_queue *rxq = port->rxqs[queue];
6432
6433 rxq->size = port->rx_ring_size;
6434 rxq->pkts_coal = MVPP2_RX_COAL_PKTS;
6435 rxq->time_coal = MVPP2_RX_COAL_USEC;
6436 }
6437
6438 mvpp2_ingress_disable(port);
6439
6440 /* Port default configuration */
6441 mvpp2_defaults_set(port);
6442
6443 /* Port's classifier configuration */
6444 mvpp2_cls_oversize_rxq_set(port);
6445 mvpp2_cls_port_config(port);
6446
6447 /* Provide an initial Rx packet size */
6448 port->pkt_size = MVPP2_RX_PKT_SIZE(port->dev->mtu);
6449
6450 /* Initialize pools for swf */
6451 err = mvpp2_swf_bm_pool_init(port);
6452 if (err)
6453 goto err_free_percpu;
6454
6455 return 0;
6456
6457err_free_percpu:
6458 for (queue = 0; queue < txq_number; queue++) {
6459 if (!port->txqs[queue])
6460 continue;
6461 free_percpu(port->txqs[queue]->pcpu);
6462 }
6463 return err;
6464}
6465
6466/* Ports initialization */
6467static int mvpp2_port_probe(struct platform_device *pdev,
6468 struct device_node *port_node,
Thomas Petazzoni59b9a312017-03-07 16:53:17 +01006469 struct mvpp2 *priv)
Marcin Wojtas3f518502014-07-10 16:52:13 -03006470{
6471 struct device_node *phy_node;
6472 struct mvpp2_port *port;
Marcin Wojtasedc660f2015-08-06 19:00:30 +02006473 struct mvpp2_port_pcpu *port_pcpu;
Marcin Wojtas3f518502014-07-10 16:52:13 -03006474 struct net_device *dev;
6475 struct resource *res;
6476 const char *dt_mac_addr;
6477 const char *mac_from;
6478 char hw_mac_addr[ETH_ALEN];
6479 u32 id;
6480 int features;
6481 int phy_mode;
Marcin Wojtasedc660f2015-08-06 19:00:30 +02006482 int err, i, cpu;
Marcin Wojtas3f518502014-07-10 16:52:13 -03006483
Markus Elfring03bfffd2017-04-17 08:55:42 +02006484 dev = alloc_etherdev_mqs(sizeof(*port), txq_number, rxq_number);
Marcin Wojtas3f518502014-07-10 16:52:13 -03006485 if (!dev)
6486 return -ENOMEM;
6487
6488 phy_node = of_parse_phandle(port_node, "phy", 0);
6489 if (!phy_node) {
6490 dev_err(&pdev->dev, "missing phy\n");
6491 err = -ENODEV;
6492 goto err_free_netdev;
6493 }
6494
6495 phy_mode = of_get_phy_mode(port_node);
6496 if (phy_mode < 0) {
6497 dev_err(&pdev->dev, "incorrect phy mode\n");
6498 err = phy_mode;
6499 goto err_free_netdev;
6500 }
6501
6502 if (of_property_read_u32(port_node, "port-id", &id)) {
6503 err = -EINVAL;
6504 dev_err(&pdev->dev, "missing port-id value\n");
6505 goto err_free_netdev;
6506 }
6507
6508 dev->tx_queue_len = MVPP2_MAX_TXD;
6509 dev->watchdog_timeo = 5 * HZ;
6510 dev->netdev_ops = &mvpp2_netdev_ops;
6511 dev->ethtool_ops = &mvpp2_eth_tool_ops;
6512
6513 port = netdev_priv(dev);
6514
6515 port->irq = irq_of_parse_and_map(port_node, 0);
6516 if (port->irq <= 0) {
6517 err = -EINVAL;
6518 goto err_free_netdev;
6519 }
6520
6521 if (of_property_read_bool(port_node, "marvell,loopback"))
6522 port->flags |= MVPP2_F_LOOPBACK;
6523
6524 port->priv = priv;
6525 port->id = id;
Thomas Petazzoni59b9a312017-03-07 16:53:17 +01006526 if (priv->hw_version == MVPP21)
6527 port->first_rxq = port->id * rxq_number;
6528 else
6529 port->first_rxq = port->id * priv->max_port_rxqs;
6530
Marcin Wojtas3f518502014-07-10 16:52:13 -03006531 port->phy_node = phy_node;
6532 port->phy_interface = phy_mode;
6533
Thomas Petazzonia7868412017-03-07 16:53:13 +01006534 if (priv->hw_version == MVPP21) {
6535 res = platform_get_resource(pdev, IORESOURCE_MEM, 2 + id);
6536 port->base = devm_ioremap_resource(&pdev->dev, res);
6537 if (IS_ERR(port->base)) {
6538 err = PTR_ERR(port->base);
6539 goto err_free_irq;
6540 }
6541 } else {
6542 if (of_property_read_u32(port_node, "gop-port-id",
6543 &port->gop_id)) {
6544 err = -EINVAL;
6545 dev_err(&pdev->dev, "missing gop-port-id value\n");
6546 goto err_free_irq;
6547 }
6548
6549 port->base = priv->iface_base + MVPP22_GMAC_BASE(port->gop_id);
Marcin Wojtas3f518502014-07-10 16:52:13 -03006550 }
6551
6552 /* Alloc per-cpu stats */
6553 port->stats = netdev_alloc_pcpu_stats(struct mvpp2_pcpu_stats);
6554 if (!port->stats) {
6555 err = -ENOMEM;
6556 goto err_free_irq;
6557 }
6558
6559 dt_mac_addr = of_get_mac_address(port_node);
6560 if (dt_mac_addr && is_valid_ether_addr(dt_mac_addr)) {
6561 mac_from = "device tree";
6562 ether_addr_copy(dev->dev_addr, dt_mac_addr);
6563 } else {
Thomas Petazzoni26975822017-03-07 16:53:14 +01006564 if (priv->hw_version == MVPP21)
6565 mvpp21_get_mac_address(port, hw_mac_addr);
Marcin Wojtas3f518502014-07-10 16:52:13 -03006566 if (is_valid_ether_addr(hw_mac_addr)) {
6567 mac_from = "hardware";
6568 ether_addr_copy(dev->dev_addr, hw_mac_addr);
6569 } else {
6570 mac_from = "random";
6571 eth_hw_addr_random(dev);
6572 }
6573 }
6574
6575 port->tx_ring_size = MVPP2_MAX_TXD;
6576 port->rx_ring_size = MVPP2_MAX_RXD;
6577 port->dev = dev;
6578 SET_NETDEV_DEV(dev, &pdev->dev);
6579
6580 err = mvpp2_port_init(port);
6581 if (err < 0) {
6582 dev_err(&pdev->dev, "failed to init port %d\n", id);
6583 goto err_free_stats;
6584 }
Thomas Petazzoni26975822017-03-07 16:53:14 +01006585
6586 mvpp2_port_mii_set(port);
6587 mvpp2_port_periodic_xon_disable(port);
6588
6589 if (priv->hw_version == MVPP21)
6590 mvpp2_port_fc_adv_enable(port);
6591
6592 mvpp2_port_reset(port);
Marcin Wojtas3f518502014-07-10 16:52:13 -03006593
Marcin Wojtasedc660f2015-08-06 19:00:30 +02006594 port->pcpu = alloc_percpu(struct mvpp2_port_pcpu);
6595 if (!port->pcpu) {
6596 err = -ENOMEM;
6597 goto err_free_txq_pcpu;
6598 }
6599
6600 for_each_present_cpu(cpu) {
6601 port_pcpu = per_cpu_ptr(port->pcpu, cpu);
6602
6603 hrtimer_init(&port_pcpu->tx_done_timer, CLOCK_MONOTONIC,
6604 HRTIMER_MODE_REL_PINNED);
6605 port_pcpu->tx_done_timer.function = mvpp2_hr_timer_cb;
6606 port_pcpu->timer_scheduled = false;
6607
6608 tasklet_init(&port_pcpu->tx_done_tasklet, mvpp2_tx_proc_cb,
6609 (unsigned long)dev);
6610 }
6611
Marcin Wojtas3f518502014-07-10 16:52:13 -03006612 netif_napi_add(dev, &port->napi, mvpp2_poll, NAPI_POLL_WEIGHT);
6613 features = NETIF_F_SG | NETIF_F_IP_CSUM;
6614 dev->features = features | NETIF_F_RXCSUM;
6615 dev->hw_features |= features | NETIF_F_RXCSUM | NETIF_F_GRO;
6616 dev->vlan_features |= features;
6617
Jarod Wilson57779872016-10-17 15:54:06 -04006618 /* MTU range: 68 - 9676 */
6619 dev->min_mtu = ETH_MIN_MTU;
6620 /* 9676 == 9700 - 20 and rounding to 8 */
6621 dev->max_mtu = 9676;
6622
Marcin Wojtas3f518502014-07-10 16:52:13 -03006623 err = register_netdev(dev);
6624 if (err < 0) {
6625 dev_err(&pdev->dev, "failed to register netdev\n");
Marcin Wojtasedc660f2015-08-06 19:00:30 +02006626 goto err_free_port_pcpu;
Marcin Wojtas3f518502014-07-10 16:52:13 -03006627 }
6628 netdev_info(dev, "Using %s mac address %pM\n", mac_from, dev->dev_addr);
6629
Marcin Wojtas3f518502014-07-10 16:52:13 -03006630 priv->port_list[id] = port;
6631 return 0;
6632
Marcin Wojtasedc660f2015-08-06 19:00:30 +02006633err_free_port_pcpu:
6634 free_percpu(port->pcpu);
Marcin Wojtas3f518502014-07-10 16:52:13 -03006635err_free_txq_pcpu:
6636 for (i = 0; i < txq_number; i++)
6637 free_percpu(port->txqs[i]->pcpu);
6638err_free_stats:
6639 free_percpu(port->stats);
6640err_free_irq:
6641 irq_dispose_mapping(port->irq);
6642err_free_netdev:
Peter Chenccb80392016-08-01 15:02:37 +08006643 of_node_put(phy_node);
Marcin Wojtas3f518502014-07-10 16:52:13 -03006644 free_netdev(dev);
6645 return err;
6646}
6647
6648/* Ports removal routine */
6649static void mvpp2_port_remove(struct mvpp2_port *port)
6650{
6651 int i;
6652
6653 unregister_netdev(port->dev);
Peter Chenccb80392016-08-01 15:02:37 +08006654 of_node_put(port->phy_node);
Marcin Wojtasedc660f2015-08-06 19:00:30 +02006655 free_percpu(port->pcpu);
Marcin Wojtas3f518502014-07-10 16:52:13 -03006656 free_percpu(port->stats);
6657 for (i = 0; i < txq_number; i++)
6658 free_percpu(port->txqs[i]->pcpu);
6659 irq_dispose_mapping(port->irq);
6660 free_netdev(port->dev);
6661}
6662
6663/* Initialize decoding windows */
6664static void mvpp2_conf_mbus_windows(const struct mbus_dram_target_info *dram,
6665 struct mvpp2 *priv)
6666{
6667 u32 win_enable;
6668 int i;
6669
6670 for (i = 0; i < 6; i++) {
6671 mvpp2_write(priv, MVPP2_WIN_BASE(i), 0);
6672 mvpp2_write(priv, MVPP2_WIN_SIZE(i), 0);
6673
6674 if (i < 4)
6675 mvpp2_write(priv, MVPP2_WIN_REMAP(i), 0);
6676 }
6677
6678 win_enable = 0;
6679
6680 for (i = 0; i < dram->num_cs; i++) {
6681 const struct mbus_dram_window *cs = dram->cs + i;
6682
6683 mvpp2_write(priv, MVPP2_WIN_BASE(i),
6684 (cs->base & 0xffff0000) | (cs->mbus_attr << 8) |
6685 dram->mbus_dram_target_id);
6686
6687 mvpp2_write(priv, MVPP2_WIN_SIZE(i),
6688 (cs->size - 1) & 0xffff0000);
6689
6690 win_enable |= (1 << i);
6691 }
6692
6693 mvpp2_write(priv, MVPP2_BASE_ADDR_ENABLE, win_enable);
6694}
6695
6696/* Initialize Rx FIFO's */
6697static void mvpp2_rx_fifo_init(struct mvpp2 *priv)
6698{
6699 int port;
6700
6701 for (port = 0; port < MVPP2_MAX_PORTS; port++) {
6702 mvpp2_write(priv, MVPP2_RX_DATA_FIFO_SIZE_REG(port),
6703 MVPP2_RX_FIFO_PORT_DATA_SIZE);
6704 mvpp2_write(priv, MVPP2_RX_ATTR_FIFO_SIZE_REG(port),
6705 MVPP2_RX_FIFO_PORT_ATTR_SIZE);
6706 }
6707
6708 mvpp2_write(priv, MVPP2_RX_MIN_PKT_SIZE_REG,
6709 MVPP2_RX_FIFO_PORT_MIN_PKT);
6710 mvpp2_write(priv, MVPP2_RX_FIFO_INIT_REG, 0x1);
6711}
6712
Thomas Petazzoni6763ce32017-03-07 16:53:15 +01006713static void mvpp2_axi_init(struct mvpp2 *priv)
6714{
6715 u32 val, rdval, wrval;
6716
6717 mvpp2_write(priv, MVPP22_BM_ADDR_HIGH_RLS_REG, 0x0);
6718
6719 /* AXI Bridge Configuration */
6720
6721 rdval = MVPP22_AXI_CODE_CACHE_RD_CACHE
6722 << MVPP22_AXI_ATTR_CACHE_OFFS;
6723 rdval |= MVPP22_AXI_CODE_DOMAIN_OUTER_DOM
6724 << MVPP22_AXI_ATTR_DOMAIN_OFFS;
6725
6726 wrval = MVPP22_AXI_CODE_CACHE_WR_CACHE
6727 << MVPP22_AXI_ATTR_CACHE_OFFS;
6728 wrval |= MVPP22_AXI_CODE_DOMAIN_OUTER_DOM
6729 << MVPP22_AXI_ATTR_DOMAIN_OFFS;
6730
6731 /* BM */
6732 mvpp2_write(priv, MVPP22_AXI_BM_WR_ATTR_REG, wrval);
6733 mvpp2_write(priv, MVPP22_AXI_BM_RD_ATTR_REG, rdval);
6734
6735 /* Descriptors */
6736 mvpp2_write(priv, MVPP22_AXI_AGGRQ_DESCR_RD_ATTR_REG, rdval);
6737 mvpp2_write(priv, MVPP22_AXI_TXQ_DESCR_WR_ATTR_REG, wrval);
6738 mvpp2_write(priv, MVPP22_AXI_TXQ_DESCR_RD_ATTR_REG, rdval);
6739 mvpp2_write(priv, MVPP22_AXI_RXQ_DESCR_WR_ATTR_REG, wrval);
6740
6741 /* Buffer Data */
6742 mvpp2_write(priv, MVPP22_AXI_TX_DATA_RD_ATTR_REG, rdval);
6743 mvpp2_write(priv, MVPP22_AXI_RX_DATA_WR_ATTR_REG, wrval);
6744
6745 val = MVPP22_AXI_CODE_CACHE_NON_CACHE
6746 << MVPP22_AXI_CODE_CACHE_OFFS;
6747 val |= MVPP22_AXI_CODE_DOMAIN_SYSTEM
6748 << MVPP22_AXI_CODE_DOMAIN_OFFS;
6749 mvpp2_write(priv, MVPP22_AXI_RD_NORMAL_CODE_REG, val);
6750 mvpp2_write(priv, MVPP22_AXI_WR_NORMAL_CODE_REG, val);
6751
6752 val = MVPP22_AXI_CODE_CACHE_RD_CACHE
6753 << MVPP22_AXI_CODE_CACHE_OFFS;
6754 val |= MVPP22_AXI_CODE_DOMAIN_OUTER_DOM
6755 << MVPP22_AXI_CODE_DOMAIN_OFFS;
6756
6757 mvpp2_write(priv, MVPP22_AXI_RD_SNOOP_CODE_REG, val);
6758
6759 val = MVPP22_AXI_CODE_CACHE_WR_CACHE
6760 << MVPP22_AXI_CODE_CACHE_OFFS;
6761 val |= MVPP22_AXI_CODE_DOMAIN_OUTER_DOM
6762 << MVPP22_AXI_CODE_DOMAIN_OFFS;
6763
6764 mvpp2_write(priv, MVPP22_AXI_WR_SNOOP_CODE_REG, val);
6765}
6766
Marcin Wojtas3f518502014-07-10 16:52:13 -03006767/* Initialize network controller common part HW */
6768static int mvpp2_init(struct platform_device *pdev, struct mvpp2 *priv)
6769{
6770 const struct mbus_dram_target_info *dram_target_info;
6771 int err, i;
Marcin Wojtas08a23752014-07-21 13:48:12 -03006772 u32 val;
Marcin Wojtas3f518502014-07-10 16:52:13 -03006773
6774 /* Checks for hardware constraints */
Thomas Petazzoni59b9a312017-03-07 16:53:17 +01006775 if (rxq_number % 4 || (rxq_number > priv->max_port_rxqs) ||
Marcin Wojtas3f518502014-07-10 16:52:13 -03006776 (txq_number > MVPP2_MAX_TXQ)) {
6777 dev_err(&pdev->dev, "invalid queue size parameter\n");
6778 return -EINVAL;
6779 }
6780
6781 /* MBUS windows configuration */
6782 dram_target_info = mv_mbus_dram_info();
6783 if (dram_target_info)
6784 mvpp2_conf_mbus_windows(dram_target_info, priv);
6785
Thomas Petazzoni6763ce32017-03-07 16:53:15 +01006786 if (priv->hw_version == MVPP22)
6787 mvpp2_axi_init(priv);
6788
Marcin Wojtas08a23752014-07-21 13:48:12 -03006789 /* Disable HW PHY polling */
Thomas Petazzoni26975822017-03-07 16:53:14 +01006790 if (priv->hw_version == MVPP21) {
6791 val = readl(priv->lms_base + MVPP2_PHY_AN_CFG0_REG);
6792 val |= MVPP2_PHY_AN_STOP_SMI0_MASK;
6793 writel(val, priv->lms_base + MVPP2_PHY_AN_CFG0_REG);
6794 } else {
6795 val = readl(priv->iface_base + MVPP22_SMI_MISC_CFG_REG);
6796 val &= ~MVPP22_SMI_POLLING_EN;
6797 writel(val, priv->iface_base + MVPP22_SMI_MISC_CFG_REG);
6798 }
Marcin Wojtas08a23752014-07-21 13:48:12 -03006799
Marcin Wojtas3f518502014-07-10 16:52:13 -03006800 /* Allocate and initialize aggregated TXQs */
6801 priv->aggr_txqs = devm_kcalloc(&pdev->dev, num_present_cpus(),
Markus Elfringd7ce3ce2017-04-17 08:48:23 +02006802 sizeof(*priv->aggr_txqs),
Marcin Wojtas3f518502014-07-10 16:52:13 -03006803 GFP_KERNEL);
6804 if (!priv->aggr_txqs)
6805 return -ENOMEM;
6806
6807 for_each_present_cpu(i) {
6808 priv->aggr_txqs[i].id = i;
6809 priv->aggr_txqs[i].size = MVPP2_AGGR_TXQ_SIZE;
6810 err = mvpp2_aggr_txq_init(pdev, &priv->aggr_txqs[i],
6811 MVPP2_AGGR_TXQ_SIZE, i, priv);
6812 if (err < 0)
6813 return err;
6814 }
6815
6816 /* Rx Fifo Init */
6817 mvpp2_rx_fifo_init(priv);
6818
6819 /* Reset Rx queue group interrupt configuration */
Thomas Petazzonia73fef12017-03-07 16:53:16 +01006820 for (i = 0; i < MVPP2_MAX_PORTS; i++) {
6821 if (priv->hw_version == MVPP21) {
6822 mvpp2_write(priv, MVPP21_ISR_RXQ_GROUP_REG(i),
6823 rxq_number);
6824 continue;
6825 } else {
6826 u32 val;
6827
6828 val = (i << MVPP22_ISR_RXQ_GROUP_INDEX_GROUP_OFFSET);
6829 mvpp2_write(priv, MVPP22_ISR_RXQ_GROUP_INDEX_REG, val);
6830
6831 val = (rxq_number << MVPP22_ISR_RXQ_SUB_GROUP_SIZE_OFFSET);
6832 mvpp2_write(priv, MVPP22_ISR_RXQ_SUB_GROUP_CONFIG_REG, val);
6833 }
6834 }
Marcin Wojtas3f518502014-07-10 16:52:13 -03006835
Thomas Petazzoni26975822017-03-07 16:53:14 +01006836 if (priv->hw_version == MVPP21)
6837 writel(MVPP2_EXT_GLOBAL_CTRL_DEFAULT,
6838 priv->lms_base + MVPP2_MNG_EXTENDED_GLOBAL_CTRL_REG);
Marcin Wojtas3f518502014-07-10 16:52:13 -03006839
6840 /* Allow cache snoop when transmiting packets */
6841 mvpp2_write(priv, MVPP2_TX_SNOOP_REG, 0x1);
6842
6843 /* Buffer Manager initialization */
6844 err = mvpp2_bm_init(pdev, priv);
6845 if (err < 0)
6846 return err;
6847
6848 /* Parser default initialization */
6849 err = mvpp2_prs_default_init(pdev, priv);
6850 if (err < 0)
6851 return err;
6852
6853 /* Classifier default initialization */
6854 mvpp2_cls_init(priv);
6855
6856 return 0;
6857}
6858
6859static int mvpp2_probe(struct platform_device *pdev)
6860{
6861 struct device_node *dn = pdev->dev.of_node;
6862 struct device_node *port_node;
6863 struct mvpp2 *priv;
6864 struct resource *res;
Thomas Petazzonia7868412017-03-07 16:53:13 +01006865 void __iomem *base;
Thomas Petazzoni59b9a312017-03-07 16:53:17 +01006866 int port_count, cpu;
Marcin Wojtas3f518502014-07-10 16:52:13 -03006867 int err;
6868
Markus Elfring0b92e592017-04-17 08:38:32 +02006869 priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
Marcin Wojtas3f518502014-07-10 16:52:13 -03006870 if (!priv)
6871 return -ENOMEM;
6872
Thomas Petazzonifaca9242017-03-07 16:53:06 +01006873 priv->hw_version =
6874 (unsigned long)of_device_get_match_data(&pdev->dev);
6875
Marcin Wojtas3f518502014-07-10 16:52:13 -03006876 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Thomas Petazzonia7868412017-03-07 16:53:13 +01006877 base = devm_ioremap_resource(&pdev->dev, res);
6878 if (IS_ERR(base))
6879 return PTR_ERR(base);
Marcin Wojtas3f518502014-07-10 16:52:13 -03006880
Thomas Petazzonia7868412017-03-07 16:53:13 +01006881 if (priv->hw_version == MVPP21) {
6882 res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
6883 priv->lms_base = devm_ioremap_resource(&pdev->dev, res);
6884 if (IS_ERR(priv->lms_base))
6885 return PTR_ERR(priv->lms_base);
6886 } else {
6887 res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
6888 priv->iface_base = devm_ioremap_resource(&pdev->dev, res);
6889 if (IS_ERR(priv->iface_base))
6890 return PTR_ERR(priv->iface_base);
6891 }
6892
6893 for_each_present_cpu(cpu) {
6894 u32 addr_space_sz;
6895
6896 addr_space_sz = (priv->hw_version == MVPP21 ?
6897 MVPP21_ADDR_SPACE_SZ : MVPP22_ADDR_SPACE_SZ);
6898 priv->cpu_base[cpu] = base + cpu * addr_space_sz;
6899 }
Marcin Wojtas3f518502014-07-10 16:52:13 -03006900
Thomas Petazzoni59b9a312017-03-07 16:53:17 +01006901 if (priv->hw_version == MVPP21)
6902 priv->max_port_rxqs = 8;
6903 else
6904 priv->max_port_rxqs = 32;
6905
Marcin Wojtas3f518502014-07-10 16:52:13 -03006906 priv->pp_clk = devm_clk_get(&pdev->dev, "pp_clk");
6907 if (IS_ERR(priv->pp_clk))
6908 return PTR_ERR(priv->pp_clk);
6909 err = clk_prepare_enable(priv->pp_clk);
6910 if (err < 0)
6911 return err;
6912
6913 priv->gop_clk = devm_clk_get(&pdev->dev, "gop_clk");
6914 if (IS_ERR(priv->gop_clk)) {
6915 err = PTR_ERR(priv->gop_clk);
6916 goto err_pp_clk;
6917 }
6918 err = clk_prepare_enable(priv->gop_clk);
6919 if (err < 0)
6920 goto err_pp_clk;
6921
Thomas Petazzonifceb55d2017-03-07 16:53:18 +01006922 if (priv->hw_version == MVPP22) {
6923 priv->mg_clk = devm_clk_get(&pdev->dev, "mg_clk");
6924 if (IS_ERR(priv->mg_clk)) {
6925 err = PTR_ERR(priv->mg_clk);
6926 goto err_gop_clk;
6927 }
6928
6929 err = clk_prepare_enable(priv->mg_clk);
6930 if (err < 0)
6931 goto err_gop_clk;
6932 }
6933
Marcin Wojtas3f518502014-07-10 16:52:13 -03006934 /* Get system's tclk rate */
6935 priv->tclk = clk_get_rate(priv->pp_clk);
6936
Thomas Petazzoni2067e0a2017-03-07 16:53:19 +01006937 if (priv->hw_version == MVPP22) {
6938 err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(40));
6939 if (err)
6940 goto err_mg_clk;
6941 /* Sadly, the BM pools all share the same register to
6942 * store the high 32 bits of their address. So they
6943 * must all have the same high 32 bits, which forces
6944 * us to restrict coherent memory to DMA_BIT_MASK(32).
6945 */
6946 err = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(32));
6947 if (err)
6948 goto err_mg_clk;
6949 }
6950
Marcin Wojtas3f518502014-07-10 16:52:13 -03006951 /* Initialize network controller */
6952 err = mvpp2_init(pdev, priv);
6953 if (err < 0) {
6954 dev_err(&pdev->dev, "failed to initialize controller\n");
Thomas Petazzonifceb55d2017-03-07 16:53:18 +01006955 goto err_mg_clk;
Marcin Wojtas3f518502014-07-10 16:52:13 -03006956 }
6957
6958 port_count = of_get_available_child_count(dn);
6959 if (port_count == 0) {
6960 dev_err(&pdev->dev, "no ports enabled\n");
Wei Yongjun575a1932014-07-20 22:02:43 +08006961 err = -ENODEV;
Thomas Petazzonifceb55d2017-03-07 16:53:18 +01006962 goto err_mg_clk;
Marcin Wojtas3f518502014-07-10 16:52:13 -03006963 }
6964
6965 priv->port_list = devm_kcalloc(&pdev->dev, port_count,
Markus Elfring0b92e592017-04-17 08:38:32 +02006966 sizeof(*priv->port_list),
6967 GFP_KERNEL);
Marcin Wojtas3f518502014-07-10 16:52:13 -03006968 if (!priv->port_list) {
6969 err = -ENOMEM;
Thomas Petazzonifceb55d2017-03-07 16:53:18 +01006970 goto err_mg_clk;
Marcin Wojtas3f518502014-07-10 16:52:13 -03006971 }
6972
6973 /* Initialize ports */
Marcin Wojtas3f518502014-07-10 16:52:13 -03006974 for_each_available_child_of_node(dn, port_node) {
Thomas Petazzoni59b9a312017-03-07 16:53:17 +01006975 err = mvpp2_port_probe(pdev, port_node, priv);
Marcin Wojtas3f518502014-07-10 16:52:13 -03006976 if (err < 0)
Thomas Petazzonifceb55d2017-03-07 16:53:18 +01006977 goto err_mg_clk;
Marcin Wojtas3f518502014-07-10 16:52:13 -03006978 }
6979
6980 platform_set_drvdata(pdev, priv);
6981 return 0;
6982
Thomas Petazzonifceb55d2017-03-07 16:53:18 +01006983err_mg_clk:
6984 if (priv->hw_version == MVPP22)
6985 clk_disable_unprepare(priv->mg_clk);
Marcin Wojtas3f518502014-07-10 16:52:13 -03006986err_gop_clk:
6987 clk_disable_unprepare(priv->gop_clk);
6988err_pp_clk:
6989 clk_disable_unprepare(priv->pp_clk);
6990 return err;
6991}
6992
6993static int mvpp2_remove(struct platform_device *pdev)
6994{
6995 struct mvpp2 *priv = platform_get_drvdata(pdev);
6996 struct device_node *dn = pdev->dev.of_node;
6997 struct device_node *port_node;
6998 int i = 0;
6999
7000 for_each_available_child_of_node(dn, port_node) {
7001 if (priv->port_list[i])
7002 mvpp2_port_remove(priv->port_list[i]);
7003 i++;
7004 }
7005
7006 for (i = 0; i < MVPP2_BM_POOLS_NUM; i++) {
7007 struct mvpp2_bm_pool *bm_pool = &priv->bm_pools[i];
7008
7009 mvpp2_bm_pool_destroy(pdev, priv, bm_pool);
7010 }
7011
7012 for_each_present_cpu(i) {
7013 struct mvpp2_tx_queue *aggr_txq = &priv->aggr_txqs[i];
7014
7015 dma_free_coherent(&pdev->dev,
7016 MVPP2_AGGR_TXQ_SIZE * MVPP2_DESC_ALIGNED_SIZE,
7017 aggr_txq->descs,
Thomas Petazzoni20396132017-03-07 16:53:00 +01007018 aggr_txq->descs_dma);
Marcin Wojtas3f518502014-07-10 16:52:13 -03007019 }
7020
Thomas Petazzonifceb55d2017-03-07 16:53:18 +01007021 clk_disable_unprepare(priv->mg_clk);
Marcin Wojtas3f518502014-07-10 16:52:13 -03007022 clk_disable_unprepare(priv->pp_clk);
7023 clk_disable_unprepare(priv->gop_clk);
7024
7025 return 0;
7026}
7027
7028static const struct of_device_id mvpp2_match[] = {
Thomas Petazzonifaca9242017-03-07 16:53:06 +01007029 {
7030 .compatible = "marvell,armada-375-pp2",
7031 .data = (void *)MVPP21,
7032 },
Thomas Petazzonifc5e1552017-03-07 16:53:20 +01007033 {
7034 .compatible = "marvell,armada-7k-pp22",
7035 .data = (void *)MVPP22,
7036 },
Marcin Wojtas3f518502014-07-10 16:52:13 -03007037 { }
7038};
7039MODULE_DEVICE_TABLE(of, mvpp2_match);
7040
7041static struct platform_driver mvpp2_driver = {
7042 .probe = mvpp2_probe,
7043 .remove = mvpp2_remove,
7044 .driver = {
7045 .name = MVPP2_DRIVER_NAME,
7046 .of_match_table = mvpp2_match,
7047 },
7048};
7049
7050module_platform_driver(mvpp2_driver);
7051
7052MODULE_DESCRIPTION("Marvell PPv2 Ethernet Driver - www.marvell.com");
7053MODULE_AUTHOR("Marcin Wojtas <mw@semihalf.com>");
Ezequiel Garciac6340992014-07-14 10:34:47 -03007054MODULE_LICENSE("GPL v2");