blob: 4917857681f802020227d3c3e854b239768ca73b [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0
Stefan Roese19fc2ea2014-10-22 12:13:14 +02002/*
3 * Driver for Marvell NETA network card for Armada XP and Armada 370 SoCs.
4 *
5 * U-Boot version:
Stefan Roesee3b9c982015-11-19 07:46:15 +01006 * Copyright (C) 2014-2015 Stefan Roese <sr@denx.de>
Stefan Roese19fc2ea2014-10-22 12:13:14 +02007 *
8 * Based on the Linux version which is:
9 * Copyright (C) 2012 Marvell
10 *
11 * Rami Rosen <rosenr@marvell.com>
12 * Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Stefan Roese19fc2ea2014-10-22 12:13:14 +020013 */
14
15#include <common.h>
Simon Glass1eb69ae2019-11-14 12:57:39 -070016#include <cpu_func.h>
Stefan Roesee3b9c982015-11-19 07:46:15 +010017#include <dm.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060018#include <log.h>
Stefan Roese19fc2ea2014-10-22 12:13:14 +020019#include <net.h>
20#include <netdev.h>
21#include <config.h>
22#include <malloc.h>
Simon Glass90526e92020-05-10 11:39:56 -060023#include <asm/cache.h>
Simon Glass401d1c42020-10-30 21:38:53 -060024#include <asm/global_data.h>
Stefan Roese19fc2ea2014-10-22 12:13:14 +020025#include <asm/io.h>
Simon Glass336d4612020-02-03 07:36:16 -070026#include <dm/device_compat.h>
Simon Glass61b29b82020-02-03 07:36:15 -070027#include <dm/devres.h>
Simon Glasscd93d622020-05-10 11:40:13 -060028#include <linux/bitops.h>
Simon Glasseb41d8a2020-05-10 11:40:08 -060029#include <linux/bug.h>
Simon Glassc05ed002020-05-10 11:40:11 -060030#include <linux/delay.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090031#include <linux/errno.h>
Stefan Roese19fc2ea2014-10-22 12:13:14 +020032#include <phy.h>
33#include <miiphy.h>
34#include <watchdog.h>
35#include <asm/arch/cpu.h>
36#include <asm/arch/soc.h>
37#include <linux/compat.h>
38#include <linux/mbus.h>
Aditya Prayoga18bfc8f2018-12-05 00:39:23 +080039#include <asm-generic/gpio.h>
Stefan Roese19fc2ea2014-10-22 12:13:14 +020040
Stefan Roesee3b9c982015-11-19 07:46:15 +010041DECLARE_GLOBAL_DATA_PTR;
42
Marek Behún31f4ccc2022-04-27 12:41:57 +020043#define MVNETA_NR_CPUS 1
Stefan Roese19fc2ea2014-10-22 12:13:14 +020044#define ETH_HLEN 14 /* Total octets in header */
45
46/* 2(HW hdr) 14(MAC hdr) 4(CRC) 32(extra for cache prefetch) */
47#define WRAP (2 + ETH_HLEN + 4 + 32)
48#define MTU 1500
49#define RX_BUFFER_SIZE (ALIGN(MTU + WRAP, ARCH_DMA_MINALIGN))
50
51#define MVNETA_SMI_TIMEOUT 10000
52
53/* Registers */
54#define MVNETA_RXQ_CONFIG_REG(q) (0x1400 + ((q) << 2))
55#define MVNETA_RXQ_HW_BUF_ALLOC BIT(1)
56#define MVNETA_RXQ_PKT_OFFSET_ALL_MASK (0xf << 8)
57#define MVNETA_RXQ_PKT_OFFSET_MASK(offs) ((offs) << 8)
58#define MVNETA_RXQ_THRESHOLD_REG(q) (0x14c0 + ((q) << 2))
59#define MVNETA_RXQ_NON_OCCUPIED(v) ((v) << 16)
60#define MVNETA_RXQ_BASE_ADDR_REG(q) (0x1480 + ((q) << 2))
61#define MVNETA_RXQ_SIZE_REG(q) (0x14a0 + ((q) << 2))
62#define MVNETA_RXQ_BUF_SIZE_SHIFT 19
63#define MVNETA_RXQ_BUF_SIZE_MASK (0x1fff << 19)
64#define MVNETA_RXQ_STATUS_REG(q) (0x14e0 + ((q) << 2))
65#define MVNETA_RXQ_OCCUPIED_ALL_MASK 0x3fff
66#define MVNETA_RXQ_STATUS_UPDATE_REG(q) (0x1500 + ((q) << 2))
67#define MVNETA_RXQ_ADD_NON_OCCUPIED_SHIFT 16
68#define MVNETA_RXQ_ADD_NON_OCCUPIED_MAX 255
69#define MVNETA_PORT_RX_RESET 0x1cc0
70#define MVNETA_PORT_RX_DMA_RESET BIT(0)
71#define MVNETA_PHY_ADDR 0x2000
72#define MVNETA_PHY_ADDR_MASK 0x1f
73#define MVNETA_SMI 0x2004
74#define MVNETA_PHY_REG_MASK 0x1f
75/* SMI register fields */
76#define MVNETA_SMI_DATA_OFFS 0 /* Data */
77#define MVNETA_SMI_DATA_MASK (0xffff << MVNETA_SMI_DATA_OFFS)
78#define MVNETA_SMI_DEV_ADDR_OFFS 16 /* PHY device address */
79#define MVNETA_SMI_REG_ADDR_OFFS 21 /* PHY device reg addr*/
80#define MVNETA_SMI_OPCODE_OFFS 26 /* Write/Read opcode */
81#define MVNETA_SMI_OPCODE_READ (1 << MVNETA_SMI_OPCODE_OFFS)
82#define MVNETA_SMI_READ_VALID (1 << 27) /* Read Valid */
83#define MVNETA_SMI_BUSY (1 << 28) /* Busy */
84#define MVNETA_MBUS_RETRY 0x2010
85#define MVNETA_UNIT_INTR_CAUSE 0x2080
86#define MVNETA_UNIT_CONTROL 0x20B0
87#define MVNETA_PHY_POLLING_ENABLE BIT(1)
88#define MVNETA_WIN_BASE(w) (0x2200 + ((w) << 3))
89#define MVNETA_WIN_SIZE(w) (0x2204 + ((w) << 3))
90#define MVNETA_WIN_REMAP(w) (0x2280 + ((w) << 2))
Stefan Roese544eefe2016-05-19 17:46:36 +020091#define MVNETA_WIN_SIZE_MASK (0xffff0000)
Stefan Roese19fc2ea2014-10-22 12:13:14 +020092#define MVNETA_BASE_ADDR_ENABLE 0x2290
Stefan Roese544eefe2016-05-19 17:46:36 +020093#define MVNETA_BASE_ADDR_ENABLE_BIT 0x1
94#define MVNETA_PORT_ACCESS_PROTECT 0x2294
95#define MVNETA_PORT_ACCESS_PROTECT_WIN0_RW 0x3
Stefan Roese19fc2ea2014-10-22 12:13:14 +020096#define MVNETA_PORT_CONFIG 0x2400
97#define MVNETA_UNI_PROMISC_MODE BIT(0)
98#define MVNETA_DEF_RXQ(q) ((q) << 1)
99#define MVNETA_DEF_RXQ_ARP(q) ((q) << 4)
100#define MVNETA_TX_UNSET_ERR_SUM BIT(12)
101#define MVNETA_DEF_RXQ_TCP(q) ((q) << 16)
102#define MVNETA_DEF_RXQ_UDP(q) ((q) << 19)
103#define MVNETA_DEF_RXQ_BPDU(q) ((q) << 22)
104#define MVNETA_RX_CSUM_WITH_PSEUDO_HDR BIT(25)
105#define MVNETA_PORT_CONFIG_DEFL_VALUE(q) (MVNETA_DEF_RXQ(q) | \
106 MVNETA_DEF_RXQ_ARP(q) | \
107 MVNETA_DEF_RXQ_TCP(q) | \
108 MVNETA_DEF_RXQ_UDP(q) | \
109 MVNETA_DEF_RXQ_BPDU(q) | \
110 MVNETA_TX_UNSET_ERR_SUM | \
111 MVNETA_RX_CSUM_WITH_PSEUDO_HDR)
112#define MVNETA_PORT_CONFIG_EXTEND 0x2404
113#define MVNETA_MAC_ADDR_LOW 0x2414
114#define MVNETA_MAC_ADDR_HIGH 0x2418
115#define MVNETA_SDMA_CONFIG 0x241c
116#define MVNETA_SDMA_BRST_SIZE_16 4
117#define MVNETA_RX_BRST_SZ_MASK(burst) ((burst) << 1)
118#define MVNETA_RX_NO_DATA_SWAP BIT(4)
119#define MVNETA_TX_NO_DATA_SWAP BIT(5)
120#define MVNETA_DESC_SWAP BIT(6)
121#define MVNETA_TX_BRST_SZ_MASK(burst) ((burst) << 22)
122#define MVNETA_PORT_STATUS 0x2444
123#define MVNETA_TX_IN_PRGRS BIT(1)
124#define MVNETA_TX_FIFO_EMPTY BIT(8)
125#define MVNETA_RX_MIN_FRAME_SIZE 0x247c
126#define MVNETA_SERDES_CFG 0x24A0
127#define MVNETA_SGMII_SERDES_PROTO 0x0cc7
128#define MVNETA_QSGMII_SERDES_PROTO 0x0667
129#define MVNETA_TYPE_PRIO 0x24bc
130#define MVNETA_FORCE_UNI BIT(21)
131#define MVNETA_TXQ_CMD_1 0x24e4
132#define MVNETA_TXQ_CMD 0x2448
133#define MVNETA_TXQ_DISABLE_SHIFT 8
134#define MVNETA_TXQ_ENABLE_MASK 0x000000ff
135#define MVNETA_ACC_MODE 0x2500
136#define MVNETA_CPU_MAP(cpu) (0x2540 + ((cpu) << 2))
137#define MVNETA_CPU_RXQ_ACCESS_ALL_MASK 0x000000ff
138#define MVNETA_CPU_TXQ_ACCESS_ALL_MASK 0x0000ff00
139#define MVNETA_RXQ_TIME_COAL_REG(q) (0x2580 + ((q) << 2))
140
141/* Exception Interrupt Port/Queue Cause register */
142
143#define MVNETA_INTR_NEW_CAUSE 0x25a0
144#define MVNETA_INTR_NEW_MASK 0x25a4
145
146/* bits 0..7 = TXQ SENT, one bit per queue.
147 * bits 8..15 = RXQ OCCUP, one bit per queue.
148 * bits 16..23 = RXQ FREE, one bit per queue.
149 * bit 29 = OLD_REG_SUM, see old reg ?
150 * bit 30 = TX_ERR_SUM, one bit for 4 ports
151 * bit 31 = MISC_SUM, one bit for 4 ports
152 */
153#define MVNETA_TX_INTR_MASK(nr_txqs) (((1 << nr_txqs) - 1) << 0)
154#define MVNETA_TX_INTR_MASK_ALL (0xff << 0)
155#define MVNETA_RX_INTR_MASK(nr_rxqs) (((1 << nr_rxqs) - 1) << 8)
156#define MVNETA_RX_INTR_MASK_ALL (0xff << 8)
157
158#define MVNETA_INTR_OLD_CAUSE 0x25a8
159#define MVNETA_INTR_OLD_MASK 0x25ac
160
161/* Data Path Port/Queue Cause Register */
162#define MVNETA_INTR_MISC_CAUSE 0x25b0
163#define MVNETA_INTR_MISC_MASK 0x25b4
164#define MVNETA_INTR_ENABLE 0x25b8
165
166#define MVNETA_RXQ_CMD 0x2680
167#define MVNETA_RXQ_DISABLE_SHIFT 8
168#define MVNETA_RXQ_ENABLE_MASK 0x000000ff
169#define MVETH_TXQ_TOKEN_COUNT_REG(q) (0x2700 + ((q) << 4))
170#define MVETH_TXQ_TOKEN_CFG_REG(q) (0x2704 + ((q) << 4))
171#define MVNETA_GMAC_CTRL_0 0x2c00
172#define MVNETA_GMAC_MAX_RX_SIZE_SHIFT 2
173#define MVNETA_GMAC_MAX_RX_SIZE_MASK 0x7ffc
174#define MVNETA_GMAC0_PORT_ENABLE BIT(0)
175#define MVNETA_GMAC_CTRL_2 0x2c08
176#define MVNETA_GMAC2_PCS_ENABLE BIT(3)
177#define MVNETA_GMAC2_PORT_RGMII BIT(4)
178#define MVNETA_GMAC2_PORT_RESET BIT(6)
179#define MVNETA_GMAC_STATUS 0x2c10
180#define MVNETA_GMAC_LINK_UP BIT(0)
181#define MVNETA_GMAC_SPEED_1000 BIT(1)
182#define MVNETA_GMAC_SPEED_100 BIT(2)
183#define MVNETA_GMAC_FULL_DUPLEX BIT(3)
184#define MVNETA_GMAC_RX_FLOW_CTRL_ENABLE BIT(4)
185#define MVNETA_GMAC_TX_FLOW_CTRL_ENABLE BIT(5)
186#define MVNETA_GMAC_RX_FLOW_CTRL_ACTIVE BIT(6)
187#define MVNETA_GMAC_TX_FLOW_CTRL_ACTIVE BIT(7)
188#define MVNETA_GMAC_AUTONEG_CONFIG 0x2c0c
189#define MVNETA_GMAC_FORCE_LINK_DOWN BIT(0)
190#define MVNETA_GMAC_FORCE_LINK_PASS BIT(1)
Konstantin Porotchkin278d30c2017-02-16 13:52:28 +0200191#define MVNETA_GMAC_FORCE_LINK_UP (BIT(0) | BIT(1))
192#define MVNETA_GMAC_IB_BYPASS_AN_EN BIT(3)
Stefan Roese19fc2ea2014-10-22 12:13:14 +0200193#define MVNETA_GMAC_CONFIG_MII_SPEED BIT(5)
194#define MVNETA_GMAC_CONFIG_GMII_SPEED BIT(6)
195#define MVNETA_GMAC_AN_SPEED_EN BIT(7)
Konstantin Porotchkin278d30c2017-02-16 13:52:28 +0200196#define MVNETA_GMAC_SET_FC_EN BIT(8)
197#define MVNETA_GMAC_ADVERT_FC_EN BIT(9)
Stefan Roese19fc2ea2014-10-22 12:13:14 +0200198#define MVNETA_GMAC_CONFIG_FULL_DUPLEX BIT(12)
199#define MVNETA_GMAC_AN_DUPLEX_EN BIT(13)
Konstantin Porotchkin278d30c2017-02-16 13:52:28 +0200200#define MVNETA_GMAC_SAMPLE_TX_CFG_EN BIT(15)
Stefan Roese19fc2ea2014-10-22 12:13:14 +0200201#define MVNETA_MIB_COUNTERS_BASE 0x3080
202#define MVNETA_MIB_LATE_COLLISION 0x7c
203#define MVNETA_DA_FILT_SPEC_MCAST 0x3400
204#define MVNETA_DA_FILT_OTH_MCAST 0x3500
205#define MVNETA_DA_FILT_UCAST_BASE 0x3600
206#define MVNETA_TXQ_BASE_ADDR_REG(q) (0x3c00 + ((q) << 2))
207#define MVNETA_TXQ_SIZE_REG(q) (0x3c20 + ((q) << 2))
208#define MVNETA_TXQ_SENT_THRESH_ALL_MASK 0x3fff0000
209#define MVNETA_TXQ_SENT_THRESH_MASK(coal) ((coal) << 16)
210#define MVNETA_TXQ_UPDATE_REG(q) (0x3c60 + ((q) << 2))
211#define MVNETA_TXQ_DEC_SENT_SHIFT 16
212#define MVNETA_TXQ_STATUS_REG(q) (0x3c40 + ((q) << 2))
213#define MVNETA_TXQ_SENT_DESC_SHIFT 16
214#define MVNETA_TXQ_SENT_DESC_MASK 0x3fff0000
215#define MVNETA_PORT_TX_RESET 0x3cf0
216#define MVNETA_PORT_TX_DMA_RESET BIT(0)
217#define MVNETA_TX_MTU 0x3e0c
218#define MVNETA_TX_TOKEN_SIZE 0x3e14
219#define MVNETA_TX_TOKEN_SIZE_MAX 0xffffffff
220#define MVNETA_TXQ_TOKEN_SIZE_REG(q) (0x3e40 + ((q) << 2))
221#define MVNETA_TXQ_TOKEN_SIZE_MAX 0x7fffffff
222
223/* Descriptor ring Macros */
224#define MVNETA_QUEUE_NEXT_DESC(q, index) \
225 (((index) < (q)->last_desc) ? ((index) + 1) : 0)
226
227/* Various constants */
228
229/* Coalescing */
230#define MVNETA_TXDONE_COAL_PKTS 16
231#define MVNETA_RX_COAL_PKTS 32
232#define MVNETA_RX_COAL_USEC 100
233
234/* The two bytes Marvell header. Either contains a special value used
235 * by Marvell switches when a specific hardware mode is enabled (not
236 * supported by this driver) or is filled automatically by zeroes on
237 * the RX side. Those two bytes being at the front of the Ethernet
238 * header, they allow to have the IP header aligned on a 4 bytes
239 * boundary automatically: the hardware skips those two bytes on its
240 * own.
241 */
242#define MVNETA_MH_SIZE 2
243
244#define MVNETA_VLAN_TAG_LEN 4
245
246#define MVNETA_CPU_D_CACHE_LINE_SIZE 32
247#define MVNETA_TX_CSUM_MAX_SIZE 9800
248#define MVNETA_ACC_MODE_EXT 1
249
250/* Timeout constants */
251#define MVNETA_TX_DISABLE_TIMEOUT_MSEC 1000
252#define MVNETA_RX_DISABLE_TIMEOUT_MSEC 1000
253#define MVNETA_TX_FIFO_EMPTY_TIMEOUT 10000
254
255#define MVNETA_TX_MTU_MAX 0x3ffff
256
257/* Max number of Rx descriptors */
258#define MVNETA_MAX_RXD 16
259
260/* Max number of Tx descriptors */
261#define MVNETA_MAX_TXD 16
262
263/* descriptor aligned size */
264#define MVNETA_DESC_ALIGNED_SIZE 32
265
266struct mvneta_port {
267 void __iomem *base;
268 struct mvneta_rx_queue *rxqs;
269 struct mvneta_tx_queue *txqs;
270
271 u8 mcast_count[256];
272 u16 tx_ring_size;
273 u16 rx_ring_size;
274
275 phy_interface_t phy_interface;
Marek Behún4d47ea22022-04-27 12:41:47 +0200276 bool fixed_link;
Stefan Roese19fc2ea2014-10-22 12:13:14 +0200277 unsigned int link;
278 unsigned int duplex;
279 unsigned int speed;
280
281 int init;
Stefan Roese19fc2ea2014-10-22 12:13:14 +0200282 struct phy_device *phydev;
Simon Glassbcee8d62019-12-06 21:41:35 -0700283#if CONFIG_IS_ENABLED(DM_GPIO)
Aditya Prayoga18bfc8f2018-12-05 00:39:23 +0800284 struct gpio_desc phy_reset_gpio;
Robert Marko2b7beb92022-03-24 10:57:37 +0100285 struct gpio_desc sfp_tx_disable_gpio;
Aditya Prayoga18bfc8f2018-12-05 00:39:23 +0800286#endif
Stefan Roese19fc2ea2014-10-22 12:13:14 +0200287};
288
289/* The mvneta_tx_desc and mvneta_rx_desc structures describe the
290 * layout of the transmit and reception DMA descriptors, and their
291 * layout is therefore defined by the hardware design
292 */
293
294#define MVNETA_TX_L3_OFF_SHIFT 0
295#define MVNETA_TX_IP_HLEN_SHIFT 8
296#define MVNETA_TX_L4_UDP BIT(16)
297#define MVNETA_TX_L3_IP6 BIT(17)
298#define MVNETA_TXD_IP_CSUM BIT(18)
299#define MVNETA_TXD_Z_PAD BIT(19)
300#define MVNETA_TXD_L_DESC BIT(20)
301#define MVNETA_TXD_F_DESC BIT(21)
302#define MVNETA_TXD_FLZ_DESC (MVNETA_TXD_Z_PAD | \
303 MVNETA_TXD_L_DESC | \
304 MVNETA_TXD_F_DESC)
305#define MVNETA_TX_L4_CSUM_FULL BIT(30)
306#define MVNETA_TX_L4_CSUM_NOT BIT(31)
307
308#define MVNETA_RXD_ERR_CRC 0x0
309#define MVNETA_RXD_ERR_SUMMARY BIT(16)
310#define MVNETA_RXD_ERR_OVERRUN BIT(17)
311#define MVNETA_RXD_ERR_LEN BIT(18)
312#define MVNETA_RXD_ERR_RESOURCE (BIT(17) | BIT(18))
313#define MVNETA_RXD_ERR_CODE_MASK (BIT(17) | BIT(18))
314#define MVNETA_RXD_L3_IP4 BIT(25)
315#define MVNETA_RXD_FIRST_LAST_DESC (BIT(26) | BIT(27))
316#define MVNETA_RXD_L4_CSUM_OK BIT(30)
317
318struct mvneta_tx_desc {
319 u32 command; /* Options used by HW for packet transmitting.*/
320 u16 reserverd1; /* csum_l4 (for future use) */
321 u16 data_size; /* Data size of transmitted packet in bytes */
322 u32 buf_phys_addr; /* Physical addr of transmitted buffer */
323 u32 reserved2; /* hw_cmd - (for future use, PMT) */
324 u32 reserved3[4]; /* Reserved - (for future use) */
325};
326
327struct mvneta_rx_desc {
328 u32 status; /* Info about received packet */
329 u16 reserved1; /* pnc_info - (for future use, PnC) */
330 u16 data_size; /* Size of received packet in bytes */
331
332 u32 buf_phys_addr; /* Physical address of the buffer */
333 u32 reserved2; /* pnc_flow_id (for future use, PnC) */
334
335 u32 buf_cookie; /* cookie for access to RX buffer in rx path */
336 u16 reserved3; /* prefetch_cmd, for future use */
337 u16 reserved4; /* csum_l4 - (for future use, PnC) */
338
339 u32 reserved5; /* pnc_extra PnC (for future use, PnC) */
340 u32 reserved6; /* hw_cmd (for future use, PnC and HWF) */
341};
342
343struct mvneta_tx_queue {
344 /* Number of this TX queue, in the range 0-7 */
345 u8 id;
346
347 /* Number of TX DMA descriptors in the descriptor ring */
348 int size;
349
350 /* Index of last TX DMA descriptor that was inserted */
351 int txq_put_index;
352
353 /* Index of the TX DMA descriptor to be cleaned up */
354 int txq_get_index;
355
356 /* Virtual address of the TX DMA descriptors array */
357 struct mvneta_tx_desc *descs;
358
359 /* DMA address of the TX DMA descriptors array */
360 dma_addr_t descs_phys;
361
362 /* Index of the last TX DMA descriptor */
363 int last_desc;
364
365 /* Index of the next TX DMA descriptor to process */
366 int next_desc_to_proc;
367};
368
369struct mvneta_rx_queue {
370 /* rx queue number, in the range 0-7 */
371 u8 id;
372
373 /* num of rx descriptors in the rx descriptor ring */
374 int size;
375
376 /* Virtual address of the RX DMA descriptors array */
377 struct mvneta_rx_desc *descs;
378
379 /* DMA address of the RX DMA descriptors array */
380 dma_addr_t descs_phys;
381
382 /* Index of the last RX DMA descriptor */
383 int last_desc;
384
385 /* Index of the next RX DMA descriptor to process */
386 int next_desc_to_proc;
387};
388
389/* U-Boot doesn't use the queues, so set the number to 1 */
390static int rxq_number = 1;
391static int txq_number = 1;
392static int rxq_def;
393
394struct buffer_location {
395 struct mvneta_tx_desc *tx_descs;
396 struct mvneta_rx_desc *rx_descs;
397 u32 rx_buffers;
398};
399
400/*
401 * All 4 interfaces use the same global buffer, since only one interface
402 * can be enabled at once
403 */
404static struct buffer_location buffer_loc;
405
406/*
407 * Page table entries are set to 1MB, or multiples of 1MB
408 * (not < 1MB). driver uses less bd's so use 1MB bdspace.
409 */
410#define BD_SPACE (1 << 20)
411
412/* Utility/helper methods */
413
414/* Write helper method */
415static void mvreg_write(struct mvneta_port *pp, u32 offset, u32 data)
416{
417 writel(data, pp->base + offset);
418}
419
420/* Read helper method */
421static u32 mvreg_read(struct mvneta_port *pp, u32 offset)
422{
423 return readl(pp->base + offset);
424}
425
426/* Clear all MIB counters */
427static void mvneta_mib_counters_clear(struct mvneta_port *pp)
428{
429 int i;
430
431 /* Perform dummy reads from MIB counters */
432 for (i = 0; i < MVNETA_MIB_LATE_COLLISION; i += 4)
433 mvreg_read(pp, (MVNETA_MIB_COUNTERS_BASE + i));
434}
435
436/* Rx descriptors helper methods */
437
438/* Checks whether the RX descriptor having this status is both the first
439 * and the last descriptor for the RX packet. Each RX packet is currently
440 * received through a single RX descriptor, so not having each RX
441 * descriptor with its first and last bits set is an error
442 */
443static int mvneta_rxq_desc_is_first_last(u32 status)
444{
445 return (status & MVNETA_RXD_FIRST_LAST_DESC) ==
446 MVNETA_RXD_FIRST_LAST_DESC;
447}
448
449/* Add number of descriptors ready to receive new packets */
450static void mvneta_rxq_non_occup_desc_add(struct mvneta_port *pp,
451 struct mvneta_rx_queue *rxq,
452 int ndescs)
453{
454 /* Only MVNETA_RXQ_ADD_NON_OCCUPIED_MAX (255) descriptors can
455 * be added at once
456 */
457 while (ndescs > MVNETA_RXQ_ADD_NON_OCCUPIED_MAX) {
458 mvreg_write(pp, MVNETA_RXQ_STATUS_UPDATE_REG(rxq->id),
459 (MVNETA_RXQ_ADD_NON_OCCUPIED_MAX <<
460 MVNETA_RXQ_ADD_NON_OCCUPIED_SHIFT));
461 ndescs -= MVNETA_RXQ_ADD_NON_OCCUPIED_MAX;
462 }
463
464 mvreg_write(pp, MVNETA_RXQ_STATUS_UPDATE_REG(rxq->id),
465 (ndescs << MVNETA_RXQ_ADD_NON_OCCUPIED_SHIFT));
466}
467
468/* Get number of RX descriptors occupied by received packets */
469static int mvneta_rxq_busy_desc_num_get(struct mvneta_port *pp,
470 struct mvneta_rx_queue *rxq)
471{
472 u32 val;
473
474 val = mvreg_read(pp, MVNETA_RXQ_STATUS_REG(rxq->id));
475 return val & MVNETA_RXQ_OCCUPIED_ALL_MASK;
476}
477
478/* Update num of rx desc called upon return from rx path or
479 * from mvneta_rxq_drop_pkts().
480 */
481static void mvneta_rxq_desc_num_update(struct mvneta_port *pp,
482 struct mvneta_rx_queue *rxq,
483 int rx_done, int rx_filled)
484{
485 u32 val;
486
487 if ((rx_done <= 0xff) && (rx_filled <= 0xff)) {
488 val = rx_done |
489 (rx_filled << MVNETA_RXQ_ADD_NON_OCCUPIED_SHIFT);
490 mvreg_write(pp, MVNETA_RXQ_STATUS_UPDATE_REG(rxq->id), val);
491 return;
492 }
493
494 /* Only 255 descriptors can be added at once */
495 while ((rx_done > 0) || (rx_filled > 0)) {
496 if (rx_done <= 0xff) {
497 val = rx_done;
498 rx_done = 0;
499 } else {
500 val = 0xff;
501 rx_done -= 0xff;
502 }
503 if (rx_filled <= 0xff) {
504 val |= rx_filled << MVNETA_RXQ_ADD_NON_OCCUPIED_SHIFT;
505 rx_filled = 0;
506 } else {
507 val |= 0xff << MVNETA_RXQ_ADD_NON_OCCUPIED_SHIFT;
508 rx_filled -= 0xff;
509 }
510 mvreg_write(pp, MVNETA_RXQ_STATUS_UPDATE_REG(rxq->id), val);
511 }
512}
513
514/* Get pointer to next RX descriptor to be processed by SW */
515static struct mvneta_rx_desc *
516mvneta_rxq_next_desc_get(struct mvneta_rx_queue *rxq)
517{
518 int rx_desc = rxq->next_desc_to_proc;
519
520 rxq->next_desc_to_proc = MVNETA_QUEUE_NEXT_DESC(rxq, rx_desc);
521 return rxq->descs + rx_desc;
522}
523
524/* Tx descriptors helper methods */
525
526/* Update HW with number of TX descriptors to be sent */
527static void mvneta_txq_pend_desc_add(struct mvneta_port *pp,
528 struct mvneta_tx_queue *txq,
529 int pend_desc)
530{
531 u32 val;
532
533 /* Only 255 descriptors can be added at once ; Assume caller
Heinrich Schuchardte4691562017-08-29 18:44:37 +0200534 * process TX descriptors in quanta less than 256
Stefan Roese19fc2ea2014-10-22 12:13:14 +0200535 */
536 val = pend_desc;
537 mvreg_write(pp, MVNETA_TXQ_UPDATE_REG(txq->id), val);
538}
539
540/* Get pointer to next TX descriptor to be processed (send) by HW */
541static struct mvneta_tx_desc *
542mvneta_txq_next_desc_get(struct mvneta_tx_queue *txq)
543{
544 int tx_desc = txq->next_desc_to_proc;
545
546 txq->next_desc_to_proc = MVNETA_QUEUE_NEXT_DESC(txq, tx_desc);
547 return txq->descs + tx_desc;
548}
549
550/* Set rxq buf size */
551static void mvneta_rxq_buf_size_set(struct mvneta_port *pp,
552 struct mvneta_rx_queue *rxq,
553 int buf_size)
554{
555 u32 val;
556
557 val = mvreg_read(pp, MVNETA_RXQ_SIZE_REG(rxq->id));
558
559 val &= ~MVNETA_RXQ_BUF_SIZE_MASK;
560 val |= ((buf_size >> 3) << MVNETA_RXQ_BUF_SIZE_SHIFT);
561
562 mvreg_write(pp, MVNETA_RXQ_SIZE_REG(rxq->id), val);
563}
564
565/* Start the Ethernet port RX and TX activity */
566static void mvneta_port_up(struct mvneta_port *pp)
567{
568 int queue;
569 u32 q_map;
570
571 /* Enable all initialized TXs. */
572 mvneta_mib_counters_clear(pp);
573 q_map = 0;
574 for (queue = 0; queue < txq_number; queue++) {
575 struct mvneta_tx_queue *txq = &pp->txqs[queue];
576 if (txq->descs != NULL)
577 q_map |= (1 << queue);
578 }
579 mvreg_write(pp, MVNETA_TXQ_CMD, q_map);
580
581 /* Enable all initialized RXQs. */
582 q_map = 0;
583 for (queue = 0; queue < rxq_number; queue++) {
584 struct mvneta_rx_queue *rxq = &pp->rxqs[queue];
585 if (rxq->descs != NULL)
586 q_map |= (1 << queue);
587 }
588 mvreg_write(pp, MVNETA_RXQ_CMD, q_map);
589}
590
591/* Stop the Ethernet port activity */
592static void mvneta_port_down(struct mvneta_port *pp)
593{
594 u32 val;
595 int count;
596
597 /* Stop Rx port activity. Check port Rx activity. */
598 val = mvreg_read(pp, MVNETA_RXQ_CMD) & MVNETA_RXQ_ENABLE_MASK;
599
600 /* Issue stop command for active channels only */
601 if (val != 0)
602 mvreg_write(pp, MVNETA_RXQ_CMD,
603 val << MVNETA_RXQ_DISABLE_SHIFT);
604
605 /* Wait for all Rx activity to terminate. */
606 count = 0;
607 do {
608 if (count++ >= MVNETA_RX_DISABLE_TIMEOUT_MSEC) {
Sean Andersonc519cbf2020-09-15 10:44:55 -0400609 dev_warn(pp->phydev->dev,
610 "TIMEOUT for RX stopped ! rx_queue_cmd: 0x08%x\n",
611 val);
Stefan Roese19fc2ea2014-10-22 12:13:14 +0200612 break;
613 }
614 mdelay(1);
615
616 val = mvreg_read(pp, MVNETA_RXQ_CMD);
617 } while (val & 0xff);
618
619 /* Stop Tx port activity. Check port Tx activity. Issue stop
620 * command for active channels only
621 */
622 val = (mvreg_read(pp, MVNETA_TXQ_CMD)) & MVNETA_TXQ_ENABLE_MASK;
623
624 if (val != 0)
625 mvreg_write(pp, MVNETA_TXQ_CMD,
626 (val << MVNETA_TXQ_DISABLE_SHIFT));
627
628 /* Wait for all Tx activity to terminate. */
629 count = 0;
630 do {
631 if (count++ >= MVNETA_TX_DISABLE_TIMEOUT_MSEC) {
Sean Andersonc519cbf2020-09-15 10:44:55 -0400632 dev_warn(pp->phydev->dev,
633 "TIMEOUT for TX stopped status=0x%08x\n",
634 val);
Stefan Roese19fc2ea2014-10-22 12:13:14 +0200635 break;
636 }
637 mdelay(1);
638
639 /* Check TX Command reg that all Txqs are stopped */
640 val = mvreg_read(pp, MVNETA_TXQ_CMD);
641
642 } while (val & 0xff);
643
644 /* Double check to verify that TX FIFO is empty */
645 count = 0;
646 do {
647 if (count++ >= MVNETA_TX_FIFO_EMPTY_TIMEOUT) {
Sean Andersonc519cbf2020-09-15 10:44:55 -0400648 dev_warn(pp->phydev->dev,
649 "TX FIFO empty timeout status=0x08%x\n",
650 val);
Stefan Roese19fc2ea2014-10-22 12:13:14 +0200651 break;
652 }
653 mdelay(1);
654
655 val = mvreg_read(pp, MVNETA_PORT_STATUS);
656 } while (!(val & MVNETA_TX_FIFO_EMPTY) &&
657 (val & MVNETA_TX_IN_PRGRS));
658
659 udelay(200);
660}
661
662/* Enable the port by setting the port enable bit of the MAC control register */
663static void mvneta_port_enable(struct mvneta_port *pp)
664{
665 u32 val;
666
667 /* Enable port */
668 val = mvreg_read(pp, MVNETA_GMAC_CTRL_0);
669 val |= MVNETA_GMAC0_PORT_ENABLE;
670 mvreg_write(pp, MVNETA_GMAC_CTRL_0, val);
671}
672
673/* Disable the port and wait for about 200 usec before retuning */
674static void mvneta_port_disable(struct mvneta_port *pp)
675{
676 u32 val;
677
678 /* Reset the Enable bit in the Serial Control Register */
679 val = mvreg_read(pp, MVNETA_GMAC_CTRL_0);
680 val &= ~MVNETA_GMAC0_PORT_ENABLE;
681 mvreg_write(pp, MVNETA_GMAC_CTRL_0, val);
682
683 udelay(200);
684}
685
686/* Multicast tables methods */
687
688/* Set all entries in Unicast MAC Table; queue==-1 means reject all */
689static void mvneta_set_ucast_table(struct mvneta_port *pp, int queue)
690{
691 int offset;
692 u32 val;
693
694 if (queue == -1) {
695 val = 0;
696 } else {
697 val = 0x1 | (queue << 1);
698 val |= (val << 24) | (val << 16) | (val << 8);
699 }
700
701 for (offset = 0; offset <= 0xc; offset += 4)
702 mvreg_write(pp, MVNETA_DA_FILT_UCAST_BASE + offset, val);
703}
704
705/* Set all entries in Special Multicast MAC Table; queue==-1 means reject all */
706static void mvneta_set_special_mcast_table(struct mvneta_port *pp, int queue)
707{
708 int offset;
709 u32 val;
710
711 if (queue == -1) {
712 val = 0;
713 } else {
714 val = 0x1 | (queue << 1);
715 val |= (val << 24) | (val << 16) | (val << 8);
716 }
717
718 for (offset = 0; offset <= 0xfc; offset += 4)
719 mvreg_write(pp, MVNETA_DA_FILT_SPEC_MCAST + offset, val);
720}
721
722/* Set all entries in Other Multicast MAC Table. queue==-1 means reject all */
723static void mvneta_set_other_mcast_table(struct mvneta_port *pp, int queue)
724{
725 int offset;
726 u32 val;
727
728 if (queue == -1) {
729 memset(pp->mcast_count, 0, sizeof(pp->mcast_count));
730 val = 0;
731 } else {
732 memset(pp->mcast_count, 1, sizeof(pp->mcast_count));
733 val = 0x1 | (queue << 1);
734 val |= (val << 24) | (val << 16) | (val << 8);
735 }
736
737 for (offset = 0; offset <= 0xfc; offset += 4)
738 mvreg_write(pp, MVNETA_DA_FILT_OTH_MCAST + offset, val);
739}
740
741/* This method sets defaults to the NETA port:
742 * Clears interrupt Cause and Mask registers.
743 * Clears all MAC tables.
744 * Sets defaults to all registers.
745 * Resets RX and TX descriptor rings.
746 * Resets PHY.
747 * This method can be called after mvneta_port_down() to return the port
748 * settings to defaults.
749 */
750static void mvneta_defaults_set(struct mvneta_port *pp)
751{
752 int cpu;
753 int queue;
754 u32 val;
755
756 /* Clear all Cause registers */
757 mvreg_write(pp, MVNETA_INTR_NEW_CAUSE, 0);
758 mvreg_write(pp, MVNETA_INTR_OLD_CAUSE, 0);
759 mvreg_write(pp, MVNETA_INTR_MISC_CAUSE, 0);
760
761 /* Mask all interrupts */
762 mvreg_write(pp, MVNETA_INTR_NEW_MASK, 0);
763 mvreg_write(pp, MVNETA_INTR_OLD_MASK, 0);
764 mvreg_write(pp, MVNETA_INTR_MISC_MASK, 0);
765 mvreg_write(pp, MVNETA_INTR_ENABLE, 0);
766
767 /* Enable MBUS Retry bit16 */
768 mvreg_write(pp, MVNETA_MBUS_RETRY, 0x20);
769
770 /* Set CPU queue access map - all CPUs have access to all RX
771 * queues and to all TX queues
772 */
Marek Behún31f4ccc2022-04-27 12:41:57 +0200773 for (cpu = 0; cpu < MVNETA_NR_CPUS; cpu++)
Stefan Roese19fc2ea2014-10-22 12:13:14 +0200774 mvreg_write(pp, MVNETA_CPU_MAP(cpu),
775 (MVNETA_CPU_RXQ_ACCESS_ALL_MASK |
776 MVNETA_CPU_TXQ_ACCESS_ALL_MASK));
777
778 /* Reset RX and TX DMAs */
779 mvreg_write(pp, MVNETA_PORT_RX_RESET, MVNETA_PORT_RX_DMA_RESET);
780 mvreg_write(pp, MVNETA_PORT_TX_RESET, MVNETA_PORT_TX_DMA_RESET);
781
782 /* Disable Legacy WRR, Disable EJP, Release from reset */
783 mvreg_write(pp, MVNETA_TXQ_CMD_1, 0);
784 for (queue = 0; queue < txq_number; queue++) {
785 mvreg_write(pp, MVETH_TXQ_TOKEN_COUNT_REG(queue), 0);
786 mvreg_write(pp, MVETH_TXQ_TOKEN_CFG_REG(queue), 0);
787 }
788
789 mvreg_write(pp, MVNETA_PORT_TX_RESET, 0);
790 mvreg_write(pp, MVNETA_PORT_RX_RESET, 0);
791
792 /* Set Port Acceleration Mode */
793 val = MVNETA_ACC_MODE_EXT;
794 mvreg_write(pp, MVNETA_ACC_MODE, val);
795
796 /* Update val of portCfg register accordingly with all RxQueue types */
797 val = MVNETA_PORT_CONFIG_DEFL_VALUE(rxq_def);
798 mvreg_write(pp, MVNETA_PORT_CONFIG, val);
799
800 val = 0;
801 mvreg_write(pp, MVNETA_PORT_CONFIG_EXTEND, val);
802 mvreg_write(pp, MVNETA_RX_MIN_FRAME_SIZE, 64);
803
804 /* Build PORT_SDMA_CONFIG_REG */
805 val = 0;
806
807 /* Default burst size */
808 val |= MVNETA_TX_BRST_SZ_MASK(MVNETA_SDMA_BRST_SIZE_16);
809 val |= MVNETA_RX_BRST_SZ_MASK(MVNETA_SDMA_BRST_SIZE_16);
810 val |= MVNETA_RX_NO_DATA_SWAP | MVNETA_TX_NO_DATA_SWAP;
811
812 /* Assign port SDMA configuration */
813 mvreg_write(pp, MVNETA_SDMA_CONFIG, val);
814
Konstantin Porotchkin278d30c2017-02-16 13:52:28 +0200815 /* Enable PHY polling in hardware if not in fixed-link mode */
Marek Behún4d47ea22022-04-27 12:41:47 +0200816 if (!pp->fixed_link) {
Marek Behúne06c7f32022-04-27 12:41:59 +0200817 mvreg_write(pp, MVNETA_PHY_ADDR, pp->phydev->addr);
818
Konstantin Porotchkin278d30c2017-02-16 13:52:28 +0200819 val = mvreg_read(pp, MVNETA_UNIT_CONTROL);
820 val |= MVNETA_PHY_POLLING_ENABLE;
821 mvreg_write(pp, MVNETA_UNIT_CONTROL, val);
822 }
Stefan Roese19fc2ea2014-10-22 12:13:14 +0200823
824 mvneta_set_ucast_table(pp, -1);
825 mvneta_set_special_mcast_table(pp, -1);
826 mvneta_set_other_mcast_table(pp, -1);
827}
828
829/* Set unicast address */
830static void mvneta_set_ucast_addr(struct mvneta_port *pp, u8 last_nibble,
831 int queue)
832{
833 unsigned int unicast_reg;
834 unsigned int tbl_offset;
835 unsigned int reg_offset;
836
837 /* Locate the Unicast table entry */
838 last_nibble = (0xf & last_nibble);
839
840 /* offset from unicast tbl base */
841 tbl_offset = (last_nibble / 4) * 4;
842
843 /* offset within the above reg */
844 reg_offset = last_nibble % 4;
845
846 unicast_reg = mvreg_read(pp, (MVNETA_DA_FILT_UCAST_BASE + tbl_offset));
847
848 if (queue == -1) {
849 /* Clear accepts frame bit at specified unicast DA tbl entry */
850 unicast_reg &= ~(0xff << (8 * reg_offset));
851 } else {
852 unicast_reg &= ~(0xff << (8 * reg_offset));
853 unicast_reg |= ((0x01 | (queue << 1)) << (8 * reg_offset));
854 }
855
856 mvreg_write(pp, (MVNETA_DA_FILT_UCAST_BASE + tbl_offset), unicast_reg);
857}
858
859/* Set mac address */
860static void mvneta_mac_addr_set(struct mvneta_port *pp, unsigned char *addr,
861 int queue)
862{
863 unsigned int mac_h;
864 unsigned int mac_l;
865
866 if (queue != -1) {
867 mac_l = (addr[4] << 8) | (addr[5]);
868 mac_h = (addr[0] << 24) | (addr[1] << 16) |
869 (addr[2] << 8) | (addr[3] << 0);
870
871 mvreg_write(pp, MVNETA_MAC_ADDR_LOW, mac_l);
872 mvreg_write(pp, MVNETA_MAC_ADDR_HIGH, mac_h);
873 }
874
875 /* Accept frames of this address */
876 mvneta_set_ucast_addr(pp, addr[5], queue);
877}
878
Matt Pelland0a85f022018-03-27 13:18:25 -0400879static int mvneta_write_hwaddr(struct udevice *dev)
880{
881 mvneta_mac_addr_set(dev_get_priv(dev),
Simon Glassc69cda22020-12-03 16:55:20 -0700882 ((struct eth_pdata *)dev_get_plat(dev))->enetaddr,
Matt Pelland0a85f022018-03-27 13:18:25 -0400883 rxq_def);
884
885 return 0;
886}
887
Stefan Roese19fc2ea2014-10-22 12:13:14 +0200888/* Handle rx descriptor fill by setting buf_cookie and buf_phys_addr */
889static void mvneta_rx_desc_fill(struct mvneta_rx_desc *rx_desc,
890 u32 phys_addr, u32 cookie)
891{
892 rx_desc->buf_cookie = cookie;
893 rx_desc->buf_phys_addr = phys_addr;
894}
895
896/* Decrement sent descriptors counter */
897static void mvneta_txq_sent_desc_dec(struct mvneta_port *pp,
898 struct mvneta_tx_queue *txq,
899 int sent_desc)
900{
901 u32 val;
902
903 /* Only 255 TX descriptors can be updated at once */
904 while (sent_desc > 0xff) {
905 val = 0xff << MVNETA_TXQ_DEC_SENT_SHIFT;
906 mvreg_write(pp, MVNETA_TXQ_UPDATE_REG(txq->id), val);
907 sent_desc = sent_desc - 0xff;
908 }
909
910 val = sent_desc << MVNETA_TXQ_DEC_SENT_SHIFT;
911 mvreg_write(pp, MVNETA_TXQ_UPDATE_REG(txq->id), val);
912}
913
914/* Get number of TX descriptors already sent by HW */
915static int mvneta_txq_sent_desc_num_get(struct mvneta_port *pp,
916 struct mvneta_tx_queue *txq)
917{
918 u32 val;
919 int sent_desc;
920
921 val = mvreg_read(pp, MVNETA_TXQ_STATUS_REG(txq->id));
922 sent_desc = (val & MVNETA_TXQ_SENT_DESC_MASK) >>
923 MVNETA_TXQ_SENT_DESC_SHIFT;
924
925 return sent_desc;
926}
927
928/* Display more error info */
929static void mvneta_rx_error(struct mvneta_port *pp,
930 struct mvneta_rx_desc *rx_desc)
931{
932 u32 status = rx_desc->status;
933
934 if (!mvneta_rxq_desc_is_first_last(status)) {
Sean Andersonc519cbf2020-09-15 10:44:55 -0400935 dev_err(pp->phydev->dev,
936 "bad rx status %08x (buffer oversize), size=%d\n",
937 status, rx_desc->data_size);
Stefan Roese19fc2ea2014-10-22 12:13:14 +0200938 return;
939 }
940
941 switch (status & MVNETA_RXD_ERR_CODE_MASK) {
942 case MVNETA_RXD_ERR_CRC:
Sean Andersonc519cbf2020-09-15 10:44:55 -0400943 dev_err(pp->phydev->dev,
944 "bad rx status %08x (crc error), size=%d\n", status,
945 rx_desc->data_size);
Stefan Roese19fc2ea2014-10-22 12:13:14 +0200946 break;
947 case MVNETA_RXD_ERR_OVERRUN:
Sean Andersonc519cbf2020-09-15 10:44:55 -0400948 dev_err(pp->phydev->dev,
949 "bad rx status %08x (overrun error), size=%d\n", status,
950 rx_desc->data_size);
Stefan Roese19fc2ea2014-10-22 12:13:14 +0200951 break;
952 case MVNETA_RXD_ERR_LEN:
Sean Andersonc519cbf2020-09-15 10:44:55 -0400953 dev_err(pp->phydev->dev,
954 "bad rx status %08x (max frame length error), size=%d\n",
955 status, rx_desc->data_size);
Stefan Roese19fc2ea2014-10-22 12:13:14 +0200956 break;
957 case MVNETA_RXD_ERR_RESOURCE:
Sean Andersonc519cbf2020-09-15 10:44:55 -0400958 dev_err(pp->phydev->dev,
959 "bad rx status %08x (resource error), size=%d\n",
960 status, rx_desc->data_size);
Stefan Roese19fc2ea2014-10-22 12:13:14 +0200961 break;
962 }
963}
964
965static struct mvneta_rx_queue *mvneta_rxq_handle_get(struct mvneta_port *pp,
966 int rxq)
967{
968 return &pp->rxqs[rxq];
969}
970
971
972/* Drop packets received by the RXQ and free buffers */
973static void mvneta_rxq_drop_pkts(struct mvneta_port *pp,
974 struct mvneta_rx_queue *rxq)
975{
976 int rx_done;
977
978 rx_done = mvneta_rxq_busy_desc_num_get(pp, rxq);
979 if (rx_done)
980 mvneta_rxq_desc_num_update(pp, rxq, rx_done, rx_done);
981}
982
983/* Handle rxq fill: allocates rxq skbs; called when initializing a port */
984static int mvneta_rxq_fill(struct mvneta_port *pp, struct mvneta_rx_queue *rxq,
985 int num)
986{
987 int i;
988
989 for (i = 0; i < num; i++) {
990 u32 addr;
991
992 /* U-Boot special: Fill in the rx buffer addresses */
993 addr = buffer_loc.rx_buffers + (i * RX_BUFFER_SIZE);
994 mvneta_rx_desc_fill(rxq->descs + i, addr, addr);
995 }
996
997 /* Add this number of RX descriptors as non occupied (ready to
998 * get packets)
999 */
1000 mvneta_rxq_non_occup_desc_add(pp, rxq, i);
1001
1002 return 0;
1003}
1004
1005/* Rx/Tx queue initialization/cleanup methods */
1006
1007/* Create a specified RX queue */
1008static int mvneta_rxq_init(struct mvneta_port *pp,
1009 struct mvneta_rx_queue *rxq)
1010
1011{
1012 rxq->size = pp->rx_ring_size;
1013
1014 /* Allocate memory for RX descriptors */
1015 rxq->descs_phys = (dma_addr_t)rxq->descs;
1016 if (rxq->descs == NULL)
1017 return -ENOMEM;
1018
Jon Nettleton199b27b2018-05-30 08:52:29 +03001019 WARN_ON(rxq->descs != PTR_ALIGN(rxq->descs, ARCH_DMA_MINALIGN));
1020
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001021 rxq->last_desc = rxq->size - 1;
1022
1023 /* Set Rx descriptors queue starting address */
1024 mvreg_write(pp, MVNETA_RXQ_BASE_ADDR_REG(rxq->id), rxq->descs_phys);
1025 mvreg_write(pp, MVNETA_RXQ_SIZE_REG(rxq->id), rxq->size);
1026
1027 /* Fill RXQ with buffers from RX pool */
1028 mvneta_rxq_buf_size_set(pp, rxq, RX_BUFFER_SIZE);
1029 mvneta_rxq_fill(pp, rxq, rxq->size);
1030
1031 return 0;
1032}
1033
1034/* Cleanup Rx queue */
1035static void mvneta_rxq_deinit(struct mvneta_port *pp,
1036 struct mvneta_rx_queue *rxq)
1037{
1038 mvneta_rxq_drop_pkts(pp, rxq);
1039
1040 rxq->descs = NULL;
1041 rxq->last_desc = 0;
1042 rxq->next_desc_to_proc = 0;
1043 rxq->descs_phys = 0;
1044}
1045
1046/* Create and initialize a tx queue */
1047static int mvneta_txq_init(struct mvneta_port *pp,
1048 struct mvneta_tx_queue *txq)
1049{
1050 txq->size = pp->tx_ring_size;
1051
1052 /* Allocate memory for TX descriptors */
Stefan Roese3cbc11d2016-05-19 18:09:17 +02001053 txq->descs_phys = (dma_addr_t)txq->descs;
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001054 if (txq->descs == NULL)
1055 return -ENOMEM;
1056
Jon Nettleton199b27b2018-05-30 08:52:29 +03001057 WARN_ON(txq->descs != PTR_ALIGN(txq->descs, ARCH_DMA_MINALIGN));
1058
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001059 txq->last_desc = txq->size - 1;
1060
1061 /* Set maximum bandwidth for enabled TXQs */
1062 mvreg_write(pp, MVETH_TXQ_TOKEN_CFG_REG(txq->id), 0x03ffffff);
1063 mvreg_write(pp, MVETH_TXQ_TOKEN_COUNT_REG(txq->id), 0x3fffffff);
1064
1065 /* Set Tx descriptors queue starting address */
1066 mvreg_write(pp, MVNETA_TXQ_BASE_ADDR_REG(txq->id), txq->descs_phys);
1067 mvreg_write(pp, MVNETA_TXQ_SIZE_REG(txq->id), txq->size);
1068
1069 return 0;
1070}
1071
1072/* Free allocated resources when mvneta_txq_init() fails to allocate memory*/
1073static void mvneta_txq_deinit(struct mvneta_port *pp,
1074 struct mvneta_tx_queue *txq)
1075{
1076 txq->descs = NULL;
1077 txq->last_desc = 0;
1078 txq->next_desc_to_proc = 0;
1079 txq->descs_phys = 0;
1080
1081 /* Set minimum bandwidth for disabled TXQs */
1082 mvreg_write(pp, MVETH_TXQ_TOKEN_CFG_REG(txq->id), 0);
1083 mvreg_write(pp, MVETH_TXQ_TOKEN_COUNT_REG(txq->id), 0);
1084
1085 /* Set Tx descriptors queue starting address and size */
1086 mvreg_write(pp, MVNETA_TXQ_BASE_ADDR_REG(txq->id), 0);
1087 mvreg_write(pp, MVNETA_TXQ_SIZE_REG(txq->id), 0);
1088}
1089
1090/* Cleanup all Tx queues */
1091static void mvneta_cleanup_txqs(struct mvneta_port *pp)
1092{
1093 int queue;
1094
1095 for (queue = 0; queue < txq_number; queue++)
1096 mvneta_txq_deinit(pp, &pp->txqs[queue]);
1097}
1098
1099/* Cleanup all Rx queues */
1100static void mvneta_cleanup_rxqs(struct mvneta_port *pp)
1101{
1102 int queue;
1103
1104 for (queue = 0; queue < rxq_number; queue++)
1105 mvneta_rxq_deinit(pp, &pp->rxqs[queue]);
1106}
1107
1108
1109/* Init all Rx queues */
1110static int mvneta_setup_rxqs(struct mvneta_port *pp)
1111{
1112 int queue;
1113
1114 for (queue = 0; queue < rxq_number; queue++) {
1115 int err = mvneta_rxq_init(pp, &pp->rxqs[queue]);
1116 if (err) {
Sean Andersonc519cbf2020-09-15 10:44:55 -04001117 dev_err(pp->phydev->dev, "%s: can't create rxq=%d\n",
1118 __func__, queue);
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001119 mvneta_cleanup_rxqs(pp);
1120 return err;
1121 }
1122 }
1123
1124 return 0;
1125}
1126
1127/* Init all tx queues */
1128static int mvneta_setup_txqs(struct mvneta_port *pp)
1129{
1130 int queue;
1131
1132 for (queue = 0; queue < txq_number; queue++) {
1133 int err = mvneta_txq_init(pp, &pp->txqs[queue]);
1134 if (err) {
Sean Andersonc519cbf2020-09-15 10:44:55 -04001135 dev_err(pp->phydev->dev, "%s: can't create txq=%d\n",
1136 __func__, queue);
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001137 mvneta_cleanup_txqs(pp);
1138 return err;
1139 }
1140 }
1141
1142 return 0;
1143}
1144
1145static void mvneta_start_dev(struct mvneta_port *pp)
1146{
1147 /* start the Rx/Tx activity */
1148 mvneta_port_enable(pp);
1149}
1150
Stefan Roesee3b9c982015-11-19 07:46:15 +01001151static void mvneta_adjust_link(struct udevice *dev)
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001152{
Stefan Roesee3b9c982015-11-19 07:46:15 +01001153 struct mvneta_port *pp = dev_get_priv(dev);
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001154 struct phy_device *phydev = pp->phydev;
Marek Behún3b38fad2022-04-27 12:41:54 +02001155 bool status_change = false;
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001156
Marek Behúnca4730a2022-04-27 12:41:53 +02001157 if (phydev->link &&
1158 (pp->speed != phydev->speed || pp->duplex != phydev->duplex)) {
1159 u32 val;
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001160
Marek Behúnca4730a2022-04-27 12:41:53 +02001161 val = mvreg_read(pp, MVNETA_GMAC_AUTONEG_CONFIG);
1162 val &= ~(MVNETA_GMAC_CONFIG_MII_SPEED |
1163 MVNETA_GMAC_CONFIG_GMII_SPEED |
1164 MVNETA_GMAC_CONFIG_FULL_DUPLEX |
1165 MVNETA_GMAC_AN_SPEED_EN |
1166 MVNETA_GMAC_AN_DUPLEX_EN);
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001167
Marek Behún77fcf3c2022-04-27 12:41:58 +02001168 /* FIXME: For fixed-link case, these were the initial settings
1169 * used before the code was converted to use PHY_FIXED. Some of
1170 * these may look nonsensical (for example BYPASS_AN makes sense
1171 * for 1000base-x and 2500base-x modes, AFAIK), and in fact this
1172 * may be changed in the future (when support for inband AN will
1173 * be added). Also, why is ADVERT_FC enabled if we don't enable
1174 * inband AN at all?
1175 */
1176 if (pp->fixed_link)
1177 val = MVNETA_GMAC_FORCE_LINK_UP |
1178 MVNETA_GMAC_IB_BYPASS_AN_EN |
1179 MVNETA_GMAC_SET_FC_EN |
1180 MVNETA_GMAC_ADVERT_FC_EN |
1181 MVNETA_GMAC_SAMPLE_TX_CFG_EN;
1182
Marek Behúnca4730a2022-04-27 12:41:53 +02001183 if (phydev->duplex)
1184 val |= MVNETA_GMAC_CONFIG_FULL_DUPLEX;
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001185
Marek Behúnca4730a2022-04-27 12:41:53 +02001186 if (phydev->speed == SPEED_1000)
1187 val |= MVNETA_GMAC_CONFIG_GMII_SPEED;
1188 else if (pp->speed == SPEED_100)
1189 val |= MVNETA_GMAC_CONFIG_MII_SPEED;
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001190
Marek Behúnca4730a2022-04-27 12:41:53 +02001191 mvreg_write(pp, MVNETA_GMAC_AUTONEG_CONFIG, val);
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001192
Marek Behúnca4730a2022-04-27 12:41:53 +02001193 pp->duplex = phydev->duplex;
Marek Behún824f2f92022-04-27 12:41:55 +02001194 pp->speed = phydev->speed;
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001195 }
1196
1197 if (phydev->link != pp->link) {
1198 if (!phydev->link) {
1199 pp->duplex = -1;
1200 pp->speed = 0;
1201 }
1202
1203 pp->link = phydev->link;
Marek Behún3b38fad2022-04-27 12:41:54 +02001204 status_change = true;
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001205 }
1206
1207 if (status_change) {
1208 if (phydev->link) {
1209 u32 val = mvreg_read(pp, MVNETA_GMAC_AUTONEG_CONFIG);
1210 val |= (MVNETA_GMAC_FORCE_LINK_PASS |
1211 MVNETA_GMAC_FORCE_LINK_DOWN);
1212 mvreg_write(pp, MVNETA_GMAC_AUTONEG_CONFIG, val);
1213 mvneta_port_up(pp);
1214 } else {
1215 mvneta_port_down(pp);
1216 }
1217 }
1218}
1219
Stefan Roesee3b9c982015-11-19 07:46:15 +01001220static int mvneta_open(struct udevice *dev)
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001221{
Stefan Roesee3b9c982015-11-19 07:46:15 +01001222 struct mvneta_port *pp = dev_get_priv(dev);
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001223 int ret;
1224
1225 ret = mvneta_setup_rxqs(pp);
1226 if (ret)
1227 return ret;
1228
1229 ret = mvneta_setup_txqs(pp);
1230 if (ret)
1231 return ret;
1232
1233 mvneta_adjust_link(dev);
1234
1235 mvneta_start_dev(pp);
1236
1237 return 0;
1238}
1239
1240/* Initialize hw */
Stefan Roesee3b9c982015-11-19 07:46:15 +01001241static int mvneta_init2(struct mvneta_port *pp)
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001242{
1243 int queue;
1244
1245 /* Disable port */
1246 mvneta_port_disable(pp);
1247
1248 /* Set port default values */
1249 mvneta_defaults_set(pp);
1250
1251 pp->txqs = kzalloc(txq_number * sizeof(struct mvneta_tx_queue),
1252 GFP_KERNEL);
1253 if (!pp->txqs)
1254 return -ENOMEM;
1255
1256 /* U-Boot special: use preallocated area */
1257 pp->txqs[0].descs = buffer_loc.tx_descs;
1258
1259 /* Initialize TX descriptor rings */
1260 for (queue = 0; queue < txq_number; queue++) {
1261 struct mvneta_tx_queue *txq = &pp->txqs[queue];
1262 txq->id = queue;
1263 txq->size = pp->tx_ring_size;
1264 }
1265
1266 pp->rxqs = kzalloc(rxq_number * sizeof(struct mvneta_rx_queue),
1267 GFP_KERNEL);
1268 if (!pp->rxqs) {
1269 kfree(pp->txqs);
1270 return -ENOMEM;
1271 }
1272
1273 /* U-Boot special: use preallocated area */
1274 pp->rxqs[0].descs = buffer_loc.rx_descs;
1275
1276 /* Create Rx descriptor rings */
1277 for (queue = 0; queue < rxq_number; queue++) {
1278 struct mvneta_rx_queue *rxq = &pp->rxqs[queue];
1279 rxq->id = queue;
1280 rxq->size = pp->rx_ring_size;
1281 }
1282
1283 return 0;
1284}
1285
1286/* platform glue : initialize decoding windows */
Stefan Roese544eefe2016-05-19 17:46:36 +02001287
1288/*
1289 * Not like A380, in Armada3700, there are two layers of decode windows for GBE:
1290 * First layer is: GbE Address window that resides inside the GBE unit,
1291 * Second layer is: Fabric address window which is located in the NIC400
1292 * (South Fabric).
1293 * To simplify the address decode configuration for Armada3700, we bypass the
1294 * first layer of GBE decode window by setting the first window to 4GB.
1295 */
1296static void mvneta_bypass_mbus_windows(struct mvneta_port *pp)
1297{
1298 /*
1299 * Set window size to 4GB, to bypass GBE address decode, leave the
1300 * work to MBUS decode window
1301 */
1302 mvreg_write(pp, MVNETA_WIN_SIZE(0), MVNETA_WIN_SIZE_MASK);
1303
1304 /* Enable GBE address decode window 0 by set bit 0 to 0 */
1305 clrbits_le32(pp->base + MVNETA_BASE_ADDR_ENABLE,
1306 MVNETA_BASE_ADDR_ENABLE_BIT);
1307
1308 /* Set GBE address decode window 0 to full Access (read or write) */
1309 setbits_le32(pp->base + MVNETA_PORT_ACCESS_PROTECT,
1310 MVNETA_PORT_ACCESS_PROTECT_WIN0_RW);
1311}
1312
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001313static void mvneta_conf_mbus_windows(struct mvneta_port *pp)
1314{
1315 const struct mbus_dram_target_info *dram;
1316 u32 win_enable;
1317 u32 win_protect;
1318 int i;
1319
1320 dram = mvebu_mbus_dram_info();
1321 for (i = 0; i < 6; i++) {
1322 mvreg_write(pp, MVNETA_WIN_BASE(i), 0);
1323 mvreg_write(pp, MVNETA_WIN_SIZE(i), 0);
1324
1325 if (i < 4)
1326 mvreg_write(pp, MVNETA_WIN_REMAP(i), 0);
1327 }
1328
1329 win_enable = 0x3f;
1330 win_protect = 0;
1331
1332 for (i = 0; i < dram->num_cs; i++) {
1333 const struct mbus_dram_window *cs = dram->cs + i;
1334 mvreg_write(pp, MVNETA_WIN_BASE(i), (cs->base & 0xffff0000) |
1335 (cs->mbus_attr << 8) | dram->mbus_dram_target_id);
1336
1337 mvreg_write(pp, MVNETA_WIN_SIZE(i),
1338 (cs->size - 1) & 0xffff0000);
1339
1340 win_enable &= ~(1 << i);
1341 win_protect |= 3 << (2 * i);
1342 }
1343
1344 mvreg_write(pp, MVNETA_BASE_ADDR_ENABLE, win_enable);
1345}
1346
1347/* Power up the port */
1348static int mvneta_port_power_up(struct mvneta_port *pp, int phy_mode)
1349{
1350 u32 ctrl;
1351
1352 /* MAC Cause register should be cleared */
1353 mvreg_write(pp, MVNETA_UNIT_INTR_CAUSE, 0);
1354
1355 ctrl = mvreg_read(pp, MVNETA_GMAC_CTRL_2);
1356
1357 /* Even though it might look weird, when we're configured in
1358 * SGMII or QSGMII mode, the RGMII bit needs to be set.
1359 */
1360 switch (phy_mode) {
1361 case PHY_INTERFACE_MODE_QSGMII:
1362 mvreg_write(pp, MVNETA_SERDES_CFG, MVNETA_QSGMII_SERDES_PROTO);
1363 ctrl |= MVNETA_GMAC2_PCS_ENABLE | MVNETA_GMAC2_PORT_RGMII;
1364 break;
1365 case PHY_INTERFACE_MODE_SGMII:
1366 mvreg_write(pp, MVNETA_SERDES_CFG, MVNETA_SGMII_SERDES_PROTO);
1367 ctrl |= MVNETA_GMAC2_PCS_ENABLE | MVNETA_GMAC2_PORT_RGMII;
1368 break;
1369 case PHY_INTERFACE_MODE_RGMII:
1370 case PHY_INTERFACE_MODE_RGMII_ID:
1371 ctrl |= MVNETA_GMAC2_PORT_RGMII;
1372 break;
1373 default:
1374 return -EINVAL;
1375 }
1376
1377 /* Cancel Port Reset */
1378 ctrl &= ~MVNETA_GMAC2_PORT_RESET;
1379 mvreg_write(pp, MVNETA_GMAC_CTRL_2, ctrl);
1380
1381 while ((mvreg_read(pp, MVNETA_GMAC_CTRL_2) &
1382 MVNETA_GMAC2_PORT_RESET) != 0)
1383 continue;
1384
1385 return 0;
1386}
1387
1388/* Device initialization routine */
Stefan Roesee3b9c982015-11-19 07:46:15 +01001389static int mvneta_init(struct udevice *dev)
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001390{
Simon Glassc69cda22020-12-03 16:55:20 -07001391 struct eth_pdata *pdata = dev_get_plat(dev);
Stefan Roesee3b9c982015-11-19 07:46:15 +01001392 struct mvneta_port *pp = dev_get_priv(dev);
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001393 int err;
1394
1395 pp->tx_ring_size = MVNETA_MAX_TXD;
1396 pp->rx_ring_size = MVNETA_MAX_RXD;
1397
Stefan Roesee3b9c982015-11-19 07:46:15 +01001398 err = mvneta_init2(pp);
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001399 if (err < 0) {
Sean Anderson13cbe292020-09-15 10:44:54 -04001400 dev_err(dev, "can't init eth hal\n");
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001401 return err;
1402 }
1403
Stefan Roesee3b9c982015-11-19 07:46:15 +01001404 mvneta_mac_addr_set(pp, pdata->enetaddr, rxq_def);
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001405
1406 err = mvneta_port_power_up(pp, pp->phy_interface);
1407 if (err < 0) {
Sean Anderson13cbe292020-09-15 10:44:54 -04001408 dev_err(dev, "can't power up port\n");
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001409 return err;
1410 }
1411
1412 /* Call open() now as it needs to be done before runing send() */
1413 mvneta_open(dev);
1414
1415 return 0;
1416}
1417
1418/* U-Boot only functions follow here */
1419
Stefan Roesee3b9c982015-11-19 07:46:15 +01001420static int mvneta_start(struct udevice *dev)
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001421{
Stefan Roesee3b9c982015-11-19 07:46:15 +01001422 struct mvneta_port *pp = dev_get_priv(dev);
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001423 struct phy_device *phydev;
1424
1425 mvneta_port_power_up(pp, pp->phy_interface);
1426
1427 if (!pp->init || pp->link == 0) {
Marek Behún77fcf3c2022-04-27 12:41:58 +02001428 phydev = dm_eth_phy_connect(dev);
1429 if (!phydev) {
1430 printf("dm_eth_phy_connect failed\n");
1431 return -ENODEV;
1432 }
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001433
Marek Behún77fcf3c2022-04-27 12:41:58 +02001434 pp->fixed_link = phydev->phy_id == PHY_FIXED_ID;
Konstantin Porotchkin278d30c2017-02-16 13:52:28 +02001435
Marek Behún77fcf3c2022-04-27 12:41:58 +02001436 pp->phydev = phydev;
1437 phy_config(phydev);
1438 phy_startup(phydev);
1439 if (!phydev->link) {
1440 printf("%s: No link.\n", phydev->dev->name);
1441 return -1;
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001442 }
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001443
Marek Behún77fcf3c2022-04-27 12:41:58 +02001444 /* Full init on first call */
1445 mvneta_init(dev);
1446 pp->init = 1;
1447 } else {
1448 /* Upon all following calls, this is enough */
1449 mvneta_port_up(pp);
1450 mvneta_port_enable(pp);
1451 }
Konstantin Porotchkin278d30c2017-02-16 13:52:28 +02001452
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001453 return 0;
1454}
1455
Stefan Roesee3b9c982015-11-19 07:46:15 +01001456static int mvneta_send(struct udevice *dev, void *packet, int length)
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001457{
Stefan Roesee3b9c982015-11-19 07:46:15 +01001458 struct mvneta_port *pp = dev_get_priv(dev);
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001459 struct mvneta_tx_queue *txq = &pp->txqs[0];
1460 struct mvneta_tx_desc *tx_desc;
1461 int sent_desc;
1462 u32 timeout = 0;
1463
1464 /* Get a descriptor for the first part of the packet */
1465 tx_desc = mvneta_txq_next_desc_get(txq);
1466
Stefan Roese3cbc11d2016-05-19 18:09:17 +02001467 tx_desc->buf_phys_addr = (u32)(uintptr_t)packet;
Stefan Roesee3b9c982015-11-19 07:46:15 +01001468 tx_desc->data_size = length;
Stefan Roese3cbc11d2016-05-19 18:09:17 +02001469 flush_dcache_range((ulong)packet,
1470 (ulong)packet + ALIGN(length, PKTALIGN));
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001471
1472 /* First and Last descriptor */
1473 tx_desc->command = MVNETA_TX_L4_CSUM_NOT | MVNETA_TXD_FLZ_DESC;
1474 mvneta_txq_pend_desc_add(pp, txq, 1);
1475
1476 /* Wait for packet to be sent (queue might help with speed here) */
1477 sent_desc = mvneta_txq_sent_desc_num_get(pp, txq);
1478 while (!sent_desc) {
1479 if (timeout++ > 10000) {
1480 printf("timeout: packet not sent\n");
1481 return -1;
1482 }
1483 sent_desc = mvneta_txq_sent_desc_num_get(pp, txq);
1484 }
1485
1486 /* txDone has increased - hw sent packet */
1487 mvneta_txq_sent_desc_dec(pp, txq, sent_desc);
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001488
1489 return 0;
1490}
1491
Stefan Roesee3b9c982015-11-19 07:46:15 +01001492static int mvneta_recv(struct udevice *dev, int flags, uchar **packetp)
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001493{
Stefan Roesee3b9c982015-11-19 07:46:15 +01001494 struct mvneta_port *pp = dev_get_priv(dev);
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001495 int rx_done;
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001496 struct mvneta_rx_queue *rxq;
Stefan Roesee3b9c982015-11-19 07:46:15 +01001497 int rx_bytes = 0;
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001498
1499 /* get rx queue */
1500 rxq = mvneta_rxq_handle_get(pp, rxq_def);
1501 rx_done = mvneta_rxq_busy_desc_num_get(pp, rxq);
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001502
Stefan Roesee3b9c982015-11-19 07:46:15 +01001503 if (rx_done) {
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001504 struct mvneta_rx_desc *rx_desc;
1505 unsigned char *data;
1506 u32 rx_status;
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001507
1508 /*
1509 * No cache invalidation needed here, since the desc's are
1510 * located in a uncached memory region
1511 */
1512 rx_desc = mvneta_rxq_next_desc_get(rxq);
1513
1514 rx_status = rx_desc->status;
1515 if (!mvneta_rxq_desc_is_first_last(rx_status) ||
1516 (rx_status & MVNETA_RXD_ERR_SUMMARY)) {
1517 mvneta_rx_error(pp, rx_desc);
1518 /* leave the descriptor untouched */
Stefan Roesee3b9c982015-11-19 07:46:15 +01001519 return -EIO;
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001520 }
1521
1522 /* 2 bytes for marvell header. 4 bytes for crc */
1523 rx_bytes = rx_desc->data_size - 6;
1524
1525 /* give packet to stack - skip on first 2 bytes */
Stefan Roese3cbc11d2016-05-19 18:09:17 +02001526 data = (u8 *)(uintptr_t)rx_desc->buf_cookie + 2;
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001527 /*
1528 * No cache invalidation needed here, since the rx_buffer's are
1529 * located in a uncached memory region
1530 */
Stefan Roesee3b9c982015-11-19 07:46:15 +01001531 *packetp = data;
1532
Jason Brown32ac8b02017-11-28 11:12:43 -08001533 /*
1534 * Only mark one descriptor as free
1535 * since only one was processed
1536 */
1537 mvneta_rxq_desc_num_update(pp, rxq, 1, 1);
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001538 }
1539
Stefan Roesee3b9c982015-11-19 07:46:15 +01001540 return rx_bytes;
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001541}
1542
Stefan Roesee3b9c982015-11-19 07:46:15 +01001543static int mvneta_probe(struct udevice *dev)
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001544{
Stefan Roesee3b9c982015-11-19 07:46:15 +01001545 struct mvneta_port *pp = dev_get_priv(dev);
Robert Marko2b7beb92022-03-24 10:57:37 +01001546#if CONFIG_IS_ENABLED(DM_GPIO)
1547 struct ofnode_phandle_args sfp_args;
1548#endif
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001549 void *bd_space;
1550
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001551 /*
1552 * Allocate buffer area for descs and rx_buffers. This is only
1553 * done once for all interfaces. As only one interface can
Chris Packham6723b232016-08-29 20:54:02 +12001554 * be active. Make this area DMA safe by disabling the D-cache
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001555 */
1556 if (!buffer_loc.tx_descs) {
Jon Nettleton199b27b2018-05-30 08:52:29 +03001557 u32 size;
1558
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001559 /* Align buffer area for descs and rx_buffers to 1MiB */
1560 bd_space = memalign(1 << MMU_SECTION_SHIFT, BD_SPACE);
Rabeeh Khoury0f8888b2018-06-19 21:36:50 +03001561 flush_dcache_range((ulong)bd_space, (ulong)bd_space + BD_SPACE);
Stefan Roese3cbc11d2016-05-19 18:09:17 +02001562 mmu_set_region_dcache_behaviour((phys_addr_t)bd_space, BD_SPACE,
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001563 DCACHE_OFF);
1564 buffer_loc.tx_descs = (struct mvneta_tx_desc *)bd_space;
Jon Nettleton199b27b2018-05-30 08:52:29 +03001565 size = roundup(MVNETA_MAX_TXD * sizeof(struct mvneta_tx_desc),
1566 ARCH_DMA_MINALIGN);
Rabeeh Khoury318b5d72018-06-19 21:36:51 +03001567 memset(buffer_loc.tx_descs, 0, size);
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001568 buffer_loc.rx_descs = (struct mvneta_rx_desc *)
Jon Nettleton199b27b2018-05-30 08:52:29 +03001569 ((phys_addr_t)bd_space + size);
1570 size += roundup(MVNETA_MAX_RXD * sizeof(struct mvneta_rx_desc),
1571 ARCH_DMA_MINALIGN);
1572 buffer_loc.rx_buffers = (phys_addr_t)(bd_space + size);
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001573 }
1574
Marek Behún443cf352022-04-27 12:41:44 +02001575 pp->base = dev_read_addr_ptr(dev);
1576 pp->phy_interface = dev_read_phy_mode(dev);
1577 if (pp->phy_interface == PHY_INTERFACE_MODE_NA)
1578 return -EINVAL;
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001579
Stefan Roesee3b9c982015-11-19 07:46:15 +01001580 /* Configure MBUS address windows */
Simon Glass911f3ae2017-05-18 20:08:57 -06001581 if (device_is_compatible(dev, "marvell,armada-3700-neta"))
Stefan Roese544eefe2016-05-19 17:46:36 +02001582 mvneta_bypass_mbus_windows(pp);
1583 else
1584 mvneta_conf_mbus_windows(pp);
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001585
Simon Glassbcee8d62019-12-06 21:41:35 -07001586#if CONFIG_IS_ENABLED(DM_GPIO)
Marek Behún7ec50402022-04-27 12:41:52 +02001587 if (!dev_read_phandle_with_args(dev, "sfp", NULL, 0, 0, &sfp_args) &&
1588 ofnode_is_enabled(sfp_args.node))
Robert Marko2b7beb92022-03-24 10:57:37 +01001589 gpio_request_by_name_nodev(sfp_args.node, "tx-disable-gpio", 0,
1590 &pp->sfp_tx_disable_gpio, GPIOD_IS_OUT);
1591
Aditya Prayoga18bfc8f2018-12-05 00:39:23 +08001592 gpio_request_by_name(dev, "phy-reset-gpios", 0,
1593 &pp->phy_reset_gpio, GPIOD_IS_OUT);
1594
1595 if (dm_gpio_is_valid(&pp->phy_reset_gpio)) {
1596 dm_gpio_set_value(&pp->phy_reset_gpio, 1);
1597 mdelay(10);
1598 dm_gpio_set_value(&pp->phy_reset_gpio, 0);
1599 }
Robert Marko2b7beb92022-03-24 10:57:37 +01001600
1601 if (dm_gpio_is_valid(&pp->sfp_tx_disable_gpio))
1602 dm_gpio_set_value(&pp->sfp_tx_disable_gpio, 0);
Aditya Prayoga18bfc8f2018-12-05 00:39:23 +08001603#endif
1604
Marek Behún1d879042022-04-27 12:41:51 +02001605 return 0;
Stefan Roese19fc2ea2014-10-22 12:13:14 +02001606}
Stefan Roesee3b9c982015-11-19 07:46:15 +01001607
1608static void mvneta_stop(struct udevice *dev)
1609{
1610 struct mvneta_port *pp = dev_get_priv(dev);
1611
1612 mvneta_port_down(pp);
1613 mvneta_port_disable(pp);
1614}
1615
1616static const struct eth_ops mvneta_ops = {
1617 .start = mvneta_start,
1618 .send = mvneta_send,
1619 .recv = mvneta_recv,
1620 .stop = mvneta_stop,
Matt Pelland0a85f022018-03-27 13:18:25 -04001621 .write_hwaddr = mvneta_write_hwaddr,
Stefan Roesee3b9c982015-11-19 07:46:15 +01001622};
1623
Stefan Roesee3b9c982015-11-19 07:46:15 +01001624static const struct udevice_id mvneta_ids[] = {
1625 { .compatible = "marvell,armada-370-neta" },
1626 { .compatible = "marvell,armada-xp-neta" },
Stefan Roese544eefe2016-05-19 17:46:36 +02001627 { .compatible = "marvell,armada-3700-neta" },
Stefan Roesee3b9c982015-11-19 07:46:15 +01001628 { }
1629};
1630
1631U_BOOT_DRIVER(mvneta) = {
1632 .name = "mvneta",
1633 .id = UCLASS_ETH,
1634 .of_match = mvneta_ids,
Stefan Roesee3b9c982015-11-19 07:46:15 +01001635 .probe = mvneta_probe,
1636 .ops = &mvneta_ops,
Simon Glass41575d82020-12-03 16:55:17 -07001637 .priv_auto = sizeof(struct mvneta_port),
Simon Glasscaa4daa2020-12-03 16:55:18 -07001638 .plat_auto = sizeof(struct eth_pdata),
Stefan Roesee3b9c982015-11-19 07:46:15 +01001639};