blob: cf440b91fd04a331a7dce529d740a22686b96dfd [file] [log] [blame]
Florian Fainelli80105be2014-04-24 18:08:57 -07001/*
2 * Broadcom BCM7xxx System Port Ethernet MAC driver
3 *
4 * Copyright (C) 2014 Broadcom Corporation
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
11#ifndef __BCM_SYSPORT_H
12#define __BCM_SYSPORT_H
13
14#include <linux/if_vlan.h>
Florian Fainellib6e0e872018-03-22 18:19:32 -070015#include <linux/net_dim.h>
Florian Fainelli80105be2014-04-24 18:08:57 -070016
17/* Receive/transmit descriptor format */
18#define DESC_ADDR_HI_STATUS_LEN 0x00
19#define DESC_ADDR_HI_SHIFT 0
20#define DESC_ADDR_HI_MASK 0xff
21#define DESC_STATUS_SHIFT 8
22#define DESC_STATUS_MASK 0x3ff
23#define DESC_LEN_SHIFT 18
24#define DESC_LEN_MASK 0x7fff
25#define DESC_ADDR_LO 0x04
26
27/* HW supports 40-bit addressing hence the */
28#define DESC_SIZE (WORDS_PER_DESC * sizeof(u32))
29
30/* Default RX buffer allocation size */
31#define RX_BUF_LENGTH 2048
32
Florian Fainellidab531b2014-05-14 19:32:14 -070033/* Body(1500) + EH_SIZE(14) + VLANTAG(4) + BRCMTAG(4) + FCS(4) = 1526.
Florian Fainelli80105be2014-04-24 18:08:57 -070034 * 1536 is multiple of 256 bytes
35 */
Florian Fainellidab531b2014-05-14 19:32:14 -070036#define ENET_BRCM_TAG_LEN 4
37#define ENET_PAD 10
Florian Fainelli80105be2014-04-24 18:08:57 -070038#define UMAC_MAX_MTU_SIZE (ETH_DATA_LEN + ETH_HLEN + VLAN_HLEN + \
39 ENET_BRCM_TAG_LEN + ETH_FCS_LEN + ENET_PAD)
40
41/* Transmit status block */
Paul Gortmaker3afc5572014-05-30 15:39:30 -040042struct bcm_tsb {
Florian Fainelli80105be2014-04-24 18:08:57 -070043 u32 pcp_dei_vid;
44#define PCP_DEI_MASK 0xf
45#define VID_SHIFT 4
46#define VID_MASK 0xfff
47 u32 l4_ptr_dest_map;
48#define L4_CSUM_PTR_MASK 0x1ff
49#define L4_PTR_SHIFT 9
50#define L4_PTR_MASK 0x1ff
51#define L4_UDP (1 << 18)
52#define L4_LENGTH_VALID (1 << 19)
53#define DEST_MAP_SHIFT 20
54#define DEST_MAP_MASK 0x1ff
55};
56
57/* Receive status block uses the same
58 * definitions as the DMA descriptor
59 */
Paul Gortmaker3afc5572014-05-30 15:39:30 -040060struct bcm_rsb {
Florian Fainelli80105be2014-04-24 18:08:57 -070061 u32 rx_status_len;
62 u32 brcm_egress_tag;
63};
64
65/* Common Receive/Transmit status bits */
66#define DESC_L4_CSUM (1 << 7)
67#define DESC_SOP (1 << 8)
68#define DESC_EOP (1 << 9)
69
70/* Receive Status bits */
71#define RX_STATUS_UCAST 0
72#define RX_STATUS_BCAST 0x04
73#define RX_STATUS_MCAST 0x08
74#define RX_STATUS_L2_MCAST 0x0c
75#define RX_STATUS_ERR (1 << 4)
76#define RX_STATUS_OVFLOW (1 << 5)
77#define RX_STATUS_PARSE_FAIL (1 << 6)
78
79/* Transmit Status bits */
80#define TX_STATUS_VLAN_NO_ACT 0x00
81#define TX_STATUS_VLAN_PCP_TSB 0x01
82#define TX_STATUS_VLAN_QUEUE 0x02
83#define TX_STATUS_VLAN_VID_TSB 0x03
84#define TX_STATUS_OWR_CRC (1 << 2)
85#define TX_STATUS_APP_CRC (1 << 3)
86#define TX_STATUS_BRCM_TAG_NO_ACT 0
87#define TX_STATUS_BRCM_TAG_ZERO 0x10
88#define TX_STATUS_BRCM_TAG_ONE_QUEUE 0x20
89#define TX_STATUS_BRCM_TAG_ONE_TSB 0x30
90#define TX_STATUS_SKIP_BYTES (1 << 6)
91
92/* Specific register definitions */
93#define SYS_PORT_TOPCTRL_OFFSET 0
94#define REV_CNTL 0x00
95#define REV_MASK 0xffff
96
97#define RX_FLUSH_CNTL 0x04
98#define RX_FLUSH (1 << 0)
99
100#define TX_FLUSH_CNTL 0x08
101#define TX_FLUSH (1 << 0)
102
103#define MISC_CNTL 0x0c
104#define SYS_CLK_SEL (1 << 0)
105#define TDMA_EOP_SEL (1 << 1)
106
107/* Level-2 Interrupt controller offsets and defines */
108#define SYS_PORT_INTRL2_0_OFFSET 0x200
109#define SYS_PORT_INTRL2_1_OFFSET 0x240
110#define INTRL2_CPU_STATUS 0x00
111#define INTRL2_CPU_SET 0x04
112#define INTRL2_CPU_CLEAR 0x08
113#define INTRL2_CPU_MASK_STATUS 0x0c
114#define INTRL2_CPU_MASK_SET 0x10
115#define INTRL2_CPU_MASK_CLEAR 0x14
116
117/* Level-2 instance 0 interrupt bits */
118#define INTRL2_0_GISB_ERR (1 << 0)
119#define INTRL2_0_RBUF_OVFLOW (1 << 1)
120#define INTRL2_0_TBUF_UNDFLOW (1 << 2)
121#define INTRL2_0_MPD (1 << 3)
122#define INTRL2_0_BRCM_MATCH_TAG (1 << 4)
123#define INTRL2_0_RDMA_MBDONE (1 << 5)
124#define INTRL2_0_OVER_MAX_THRESH (1 << 6)
125#define INTRL2_0_BELOW_HYST_THRESH (1 << 7)
126#define INTRL2_0_FREE_LIST_EMPTY (1 << 8)
127#define INTRL2_0_TX_RING_FULL (1 << 9)
128#define INTRL2_0_DESC_ALLOC_ERR (1 << 10)
129#define INTRL2_0_UNEXP_PKTSIZE_ACK (1 << 11)
130
Florian Fainelli44a45242017-01-20 11:08:27 -0800131/* SYSTEMPORT Lite groups the TX queues interrupts on instance 0 */
132#define INTRL2_0_TDMA_MBDONE_SHIFT 12
133#define INTRL2_0_TDMA_MBDONE_MASK (0xffff << INTRL2_0_TDMA_MBDONE_SHIFT)
134
Florian Fainelli80105be2014-04-24 18:08:57 -0700135/* RXCHK offset and defines */
136#define SYS_PORT_RXCHK_OFFSET 0x300
137
138#define RXCHK_CONTROL 0x00
139#define RXCHK_EN (1 << 0)
140#define RXCHK_SKIP_FCS (1 << 1)
141#define RXCHK_BAD_CSUM_DIS (1 << 2)
142#define RXCHK_BRCM_TAG_EN (1 << 3)
143#define RXCHK_BRCM_TAG_MATCH_SHIFT 4
144#define RXCHK_BRCM_TAG_MATCH_MASK 0xff
145#define RXCHK_PARSE_TNL (1 << 12)
146#define RXCHK_VIOL_EN (1 << 13)
147#define RXCHK_VIOL_DIS (1 << 14)
148#define RXCHK_INCOM_PKT (1 << 15)
149#define RXCHK_V6_DUPEXT_EN (1 << 16)
150#define RXCHK_V6_DUPEXT_DIS (1 << 17)
151#define RXCHK_ETHERTYPE_DIS (1 << 18)
152#define RXCHK_L2_HDR_DIS (1 << 19)
153#define RXCHK_L3_HDR_DIS (1 << 20)
154#define RXCHK_MAC_RX_ERR_DIS (1 << 21)
155#define RXCHK_PARSE_AUTH (1 << 22)
156
157#define RXCHK_BRCM_TAG0 0x04
158#define RXCHK_BRCM_TAG(i) ((i) * RXCHK_BRCM_TAG0)
159#define RXCHK_BRCM_TAG0_MASK 0x24
160#define RXCHK_BRCM_TAG_MASK(i) ((i) * RXCHK_BRCM_TAG0_MASK)
161#define RXCHK_BRCM_TAG_MATCH_STATUS 0x44
162#define RXCHK_ETHERTYPE 0x48
163#define RXCHK_BAD_CSUM_CNTR 0x4C
164#define RXCHK_OTHER_DISC_CNTR 0x50
165
166/* TXCHCK offsets and defines */
167#define SYS_PORT_TXCHK_OFFSET 0x380
168#define TXCHK_PKT_RDY_THRESH 0x00
169
170/* Receive buffer offset and defines */
171#define SYS_PORT_RBUF_OFFSET 0x400
172
173#define RBUF_CONTROL 0x00
174#define RBUF_RSB_EN (1 << 0)
175#define RBUF_4B_ALGN (1 << 1)
176#define RBUF_BRCM_TAG_STRIP (1 << 2)
177#define RBUF_BAD_PKT_DISC (1 << 3)
178#define RBUF_RESUME_THRESH_SHIFT 4
179#define RBUF_RESUME_THRESH_MASK 0xff
180#define RBUF_OK_TO_SEND_SHIFT 12
181#define RBUF_OK_TO_SEND_MASK 0xff
182#define RBUF_CRC_REPLACE (1 << 20)
183#define RBUF_OK_TO_SEND_MODE (1 << 21)
Florian Fainelli44a45242017-01-20 11:08:27 -0800184/* SYSTEMPORT Lite uses two bits here */
185#define RBUF_RSB_SWAP0 (1 << 22)
186#define RBUF_RSB_SWAP1 (1 << 23)
Florian Fainelli80105be2014-04-24 18:08:57 -0700187#define RBUF_ACPI_EN (1 << 23)
188
189#define RBUF_PKT_RDY_THRESH 0x04
190
191#define RBUF_STATUS 0x08
192#define RBUF_WOL_MODE (1 << 0)
193#define RBUF_MPD (1 << 1)
194#define RBUF_ACPI (1 << 2)
195
196#define RBUF_OVFL_DISC_CNTR 0x0c
197#define RBUF_ERR_PKT_CNTR 0x10
198
199/* Transmit buffer offset and defines */
200#define SYS_PORT_TBUF_OFFSET 0x600
201
202#define TBUF_CONTROL 0x00
203#define TBUF_BP_EN (1 << 0)
204#define TBUF_MAX_PKT_THRESH_SHIFT 1
205#define TBUF_MAX_PKT_THRESH_MASK 0x1f
206#define TBUF_FULL_THRESH_SHIFT 8
207#define TBUF_FULL_THRESH_MASK 0x1f
208
209/* UniMAC offset and defines */
210#define SYS_PORT_UMAC_OFFSET 0x800
211
212#define UMAC_CMD 0x008
213#define CMD_TX_EN (1 << 0)
214#define CMD_RX_EN (1 << 1)
215#define CMD_SPEED_SHIFT 2
216#define CMD_SPEED_10 0
217#define CMD_SPEED_100 1
218#define CMD_SPEED_1000 2
219#define CMD_SPEED_2500 3
220#define CMD_SPEED_MASK 3
221#define CMD_PROMISC (1 << 4)
222#define CMD_PAD_EN (1 << 5)
223#define CMD_CRC_FWD (1 << 6)
224#define CMD_PAUSE_FWD (1 << 7)
225#define CMD_RX_PAUSE_IGNORE (1 << 8)
226#define CMD_TX_ADDR_INS (1 << 9)
227#define CMD_HD_EN (1 << 10)
228#define CMD_SW_RESET (1 << 13)
229#define CMD_LCL_LOOP_EN (1 << 15)
230#define CMD_AUTO_CONFIG (1 << 22)
231#define CMD_CNTL_FRM_EN (1 << 23)
232#define CMD_NO_LEN_CHK (1 << 24)
233#define CMD_RMT_LOOP_EN (1 << 25)
234#define CMD_PRBL_EN (1 << 27)
235#define CMD_TX_PAUSE_IGNORE (1 << 28)
236#define CMD_TX_RX_EN (1 << 29)
237#define CMD_RUNT_FILTER_DIS (1 << 30)
238
239#define UMAC_MAC0 0x00c
240#define UMAC_MAC1 0x010
241#define UMAC_MAX_FRAME_LEN 0x014
242
243#define UMAC_TX_FLUSH 0x334
244
245#define UMAC_MIB_START 0x400
246
247/* There is a 0xC gap between the end of RX and beginning of TX stats and then
248 * between the end of TX stats and the beginning of the RX RUNT
249 */
250#define UMAC_MIB_STAT_OFFSET 0xc
251
252#define UMAC_MIB_CTRL 0x580
253#define MIB_RX_CNT_RST (1 << 0)
254#define MIB_RUNT_CNT_RST (1 << 1)
255#define MIB_TX_CNT_RST (1 << 2)
Florian Fainelli83e82f42014-07-01 21:08:40 -0700256
Florian Fainelli44a45242017-01-20 11:08:27 -0800257/* These offsets are valid for SYSTEMPORT and SYSTEMPORT Lite */
Florian Fainelli83e82f42014-07-01 21:08:40 -0700258#define UMAC_MPD_CTRL 0x620
259#define MPD_EN (1 << 0)
260#define MSEQ_LEN_SHIFT 16
261#define MSEQ_LEN_MASK 0xff
262#define PSW_EN (1 << 27)
263
264#define UMAC_PSW_MS 0x624
265#define UMAC_PSW_LS 0x628
Florian Fainelli80105be2014-04-24 18:08:57 -0700266#define UMAC_MDF_CTRL 0x650
267#define UMAC_MDF_ADDR 0x654
268
Florian Fainelli44a45242017-01-20 11:08:27 -0800269/* Only valid on SYSTEMPORT Lite */
270#define SYS_PORT_GIB_OFFSET 0x1000
271
272#define GIB_CONTROL 0x00
273#define GIB_TX_EN (1 << 0)
274#define GIB_RX_EN (1 << 1)
275#define GIB_TX_FLUSH (1 << 2)
276#define GIB_RX_FLUSH (1 << 3)
277#define GIB_GTX_CLK_SEL_SHIFT 4
278#define GIB_GTX_CLK_EXT_CLK (0 << GIB_GTX_CLK_SEL_SHIFT)
279#define GIB_GTX_CLK_125MHZ (1 << GIB_GTX_CLK_SEL_SHIFT)
280#define GIB_GTX_CLK_250MHZ (2 << GIB_GTX_CLK_SEL_SHIFT)
Florian Fainelli9e3bff92018-07-11 02:47:58 -0700281#define GIB_FCS_STRIP_SHIFT 6
282#define GIB_FCS_STRIP (1 << GIB_FCS_STRIP_SHIFT)
Florian Fainelli44a45242017-01-20 11:08:27 -0800283#define GIB_LCL_LOOP_EN (1 << 7)
284#define GIB_LCL_LOOP_TXEN (1 << 8)
285#define GIB_RMT_LOOP_EN (1 << 9)
286#define GIB_RMT_LOOP_RXEN (1 << 10)
287#define GIB_RX_PAUSE_EN (1 << 11)
288#define GIB_PREAMBLE_LEN_SHIFT 12
289#define GIB_PREAMBLE_LEN_MASK 0xf
290#define GIB_IPG_LEN_SHIFT 16
291#define GIB_IPG_LEN_MASK 0x3f
292#define GIB_PAD_EXTENSION_SHIFT 22
293#define GIB_PAD_EXTENSION_MASK 0x3f
294
295#define GIB_MAC1 0x08
296#define GIB_MAC0 0x0c
297
Florian Fainelli80105be2014-04-24 18:08:57 -0700298/* Receive DMA offset and defines */
299#define SYS_PORT_RDMA_OFFSET 0x2000
300
301#define RDMA_CONTROL 0x1000
302#define RDMA_EN (1 << 0)
303#define RDMA_RING_CFG (1 << 1)
304#define RDMA_DISC_EN (1 << 2)
305#define RDMA_BUF_DATA_OFFSET_SHIFT 4
306#define RDMA_BUF_DATA_OFFSET_MASK 0x3ff
307
308#define RDMA_STATUS 0x1004
309#define RDMA_DISABLED (1 << 0)
310#define RDMA_DESC_RAM_INIT_BUSY (1 << 1)
311#define RDMA_BP_STATUS (1 << 2)
312
313#define RDMA_SCB_BURST_SIZE 0x1008
314
315#define RDMA_RING_BUF_SIZE 0x100c
316#define RDMA_RING_SIZE_SHIFT 16
317
318#define RDMA_WRITE_PTR_HI 0x1010
319#define RDMA_WRITE_PTR_LO 0x1014
320#define RDMA_PROD_INDEX 0x1018
321#define RDMA_PROD_INDEX_MASK 0xffff
322
323#define RDMA_CONS_INDEX 0x101c
324#define RDMA_CONS_INDEX_MASK 0xffff
325
326#define RDMA_START_ADDR_HI 0x1020
327#define RDMA_START_ADDR_LO 0x1024
328#define RDMA_END_ADDR_HI 0x1028
329#define RDMA_END_ADDR_LO 0x102c
330
331#define RDMA_MBDONE_INTR 0x1030
Florian Fainellid0634862015-05-11 15:12:42 -0700332#define RDMA_INTR_THRESH_MASK 0x1ff
Florian Fainelli80105be2014-04-24 18:08:57 -0700333#define RDMA_TIMEOUT_SHIFT 16
334#define RDMA_TIMEOUT_MASK 0xffff
335
336#define RDMA_XON_XOFF_THRESH 0x1034
337#define RDMA_XON_XOFF_THRESH_MASK 0xffff
338#define RDMA_XOFF_THRESH_SHIFT 16
339
340#define RDMA_READ_PTR_HI 0x1038
341#define RDMA_READ_PTR_LO 0x103c
342
343#define RDMA_OVERRIDE 0x1040
344#define RDMA_LE_MODE (1 << 0)
345#define RDMA_REG_MODE (1 << 1)
346
347#define RDMA_TEST 0x1044
348#define RDMA_TP_OUT_SEL (1 << 0)
349#define RDMA_MEM_SEL (1 << 1)
350
351#define RDMA_DEBUG 0x1048
352
353/* Transmit DMA offset and defines */
354#define TDMA_NUM_RINGS 32 /* rings = queues */
355#define TDMA_PORT_SIZE DESC_SIZE /* two 32-bits words */
356
357#define SYS_PORT_TDMA_OFFSET 0x4000
358#define TDMA_WRITE_PORT_OFFSET 0x0000
359#define TDMA_WRITE_PORT_HI(i) (TDMA_WRITE_PORT_OFFSET + \
360 (i) * TDMA_PORT_SIZE)
361#define TDMA_WRITE_PORT_LO(i) (TDMA_WRITE_PORT_OFFSET + \
362 sizeof(u32) + (i) * TDMA_PORT_SIZE)
363
364#define TDMA_READ_PORT_OFFSET (TDMA_WRITE_PORT_OFFSET + \
365 (TDMA_NUM_RINGS * TDMA_PORT_SIZE))
366#define TDMA_READ_PORT_HI(i) (TDMA_READ_PORT_OFFSET + \
367 (i) * TDMA_PORT_SIZE)
368#define TDMA_READ_PORT_LO(i) (TDMA_READ_PORT_OFFSET + \
369 sizeof(u32) + (i) * TDMA_PORT_SIZE)
370
371#define TDMA_READ_PORT_CMD_OFFSET (TDMA_READ_PORT_OFFSET + \
372 (TDMA_NUM_RINGS * TDMA_PORT_SIZE))
373#define TDMA_READ_PORT_CMD(i) (TDMA_READ_PORT_CMD_OFFSET + \
374 (i) * sizeof(u32))
375
376#define TDMA_DESC_RING_00_BASE (TDMA_READ_PORT_CMD_OFFSET + \
377 (TDMA_NUM_RINGS * sizeof(u32)))
378
379/* Register offsets and defines relatives to a specific ring number */
380#define RING_HEAD_TAIL_PTR 0x00
381#define RING_HEAD_MASK 0x7ff
382#define RING_TAIL_SHIFT 11
383#define RING_TAIL_MASK 0x7ff
384#define RING_FLUSH (1 << 24)
385#define RING_EN (1 << 25)
386
387#define RING_COUNT 0x04
388#define RING_COUNT_MASK 0x7ff
389#define RING_BUFF_DONE_SHIFT 11
390#define RING_BUFF_DONE_MASK 0x7ff
391
392#define RING_MAX_HYST 0x08
393#define RING_MAX_THRESH_MASK 0x7ff
394#define RING_HYST_THRESH_SHIFT 11
395#define RING_HYST_THRESH_MASK 0x7ff
396
397#define RING_INTR_CONTROL 0x0c
398#define RING_INTR_THRESH_MASK 0x7ff
399#define RING_EMPTY_INTR_EN (1 << 15)
400#define RING_TIMEOUT_SHIFT 16
401#define RING_TIMEOUT_MASK 0xffff
402
403#define RING_PROD_CONS_INDEX 0x10
404#define RING_PROD_INDEX_MASK 0xffff
405#define RING_CONS_INDEX_SHIFT 16
406#define RING_CONS_INDEX_MASK 0xffff
407
408#define RING_MAPPING 0x14
Florian Fainellid1565762017-10-11 10:57:50 -0700409#define RING_QID_MASK 0x7
Florian Fainelli80105be2014-04-24 18:08:57 -0700410#define RING_PORT_ID_SHIFT 3
411#define RING_PORT_ID_MASK 0x7
412#define RING_IGNORE_STATUS (1 << 6)
413#define RING_FAILOVER_EN (1 << 7)
414#define RING_CREDIT_SHIFT 8
415#define RING_CREDIT_MASK 0xffff
416
417#define RING_PCP_DEI_VID 0x18
418#define RING_VID_MASK 0x7ff
419#define RING_DEI (1 << 12)
420#define RING_PCP_SHIFT 13
421#define RING_PCP_MASK 0x7
422#define RING_PKT_SIZE_ADJ_SHIFT 16
423#define RING_PKT_SIZE_ADJ_MASK 0xf
424
425#define TDMA_DESC_RING_SIZE 28
426
427/* Defininition for a given TX ring base address */
428#define TDMA_DESC_RING_BASE(i) (TDMA_DESC_RING_00_BASE + \
429 ((i) * TDMA_DESC_RING_SIZE))
430
431/* Ring indexed register addreses */
432#define TDMA_DESC_RING_HEAD_TAIL_PTR(i) (TDMA_DESC_RING_BASE(i) + \
433 RING_HEAD_TAIL_PTR)
434#define TDMA_DESC_RING_COUNT(i) (TDMA_DESC_RING_BASE(i) + \
435 RING_COUNT)
436#define TDMA_DESC_RING_MAX_HYST(i) (TDMA_DESC_RING_BASE(i) + \
437 RING_MAX_HYST)
438#define TDMA_DESC_RING_INTR_CONTROL(i) (TDMA_DESC_RING_BASE(i) + \
439 RING_INTR_CONTROL)
440#define TDMA_DESC_RING_PROD_CONS_INDEX(i) \
441 (TDMA_DESC_RING_BASE(i) + \
442 RING_PROD_CONS_INDEX)
443#define TDMA_DESC_RING_MAPPING(i) (TDMA_DESC_RING_BASE(i) + \
444 RING_MAPPING)
445#define TDMA_DESC_RING_PCP_DEI_VID(i) (TDMA_DESC_RING_BASE(i) + \
446 RING_PCP_DEI_VID)
447
448#define TDMA_CONTROL 0x600
Florian Fainelli44a45242017-01-20 11:08:27 -0800449#define TDMA_EN 0
450#define TSB_EN 1
451/* Uses 2 bits on SYSTEMPORT Lite and shifts everything by 1 bit, we
452 * keep the SYSTEMPORT layout here and adjust with tdma_control_bit()
453 */
Florian Fainelli487234c2017-09-01 17:32:34 -0700454#define TSB_SWAP0 2
455#define TSB_SWAP1 3
Florian Fainelli44a45242017-01-20 11:08:27 -0800456#define ACB_ALGO 3
Florian Fainelli80105be2014-04-24 18:08:57 -0700457#define BUF_DATA_OFFSET_SHIFT 4
458#define BUF_DATA_OFFSET_MASK 0x3ff
Florian Fainelli44a45242017-01-20 11:08:27 -0800459#define VLAN_EN 14
460#define SW_BRCM_TAG 15
461#define WNC_KPT_SIZE_UPDATE 16
462#define SYNC_PKT_SIZE 17
Florian Fainelli80105be2014-04-24 18:08:57 -0700463#define ACH_TXDONE_DELAY_SHIFT 18
464#define ACH_TXDONE_DELAY_MASK 0xff
465
466#define TDMA_STATUS 0x604
467#define TDMA_DISABLED (1 << 0)
468#define TDMA_LL_RAM_INIT_BUSY (1 << 1)
469
470#define TDMA_SCB_BURST_SIZE 0x608
471#define TDMA_OVER_MAX_THRESH_STATUS 0x60c
472#define TDMA_OVER_HYST_THRESH_STATUS 0x610
473#define TDMA_TPID 0x614
474
475#define TDMA_FREE_LIST_HEAD_TAIL_PTR 0x618
476#define TDMA_FREE_HEAD_MASK 0x7ff
477#define TDMA_FREE_TAIL_SHIFT 11
478#define TDMA_FREE_TAIL_MASK 0x7ff
479
480#define TDMA_FREE_LIST_COUNT 0x61c
481#define TDMA_FREE_LIST_COUNT_MASK 0x7ff
482
483#define TDMA_TIER2_ARB_CTRL 0x620
484#define TDMA_ARB_MODE_RR 0
485#define TDMA_ARB_MODE_WEIGHT_RR 0x1
486#define TDMA_ARB_MODE_STRICT 0x2
487#define TDMA_ARB_MODE_DEFICIT_RR 0x3
488#define TDMA_CREDIT_SHIFT 4
489#define TDMA_CREDIT_MASK 0xffff
490
491#define TDMA_TIER1_ARB_0_CTRL 0x624
492#define TDMA_ARB_EN (1 << 0)
493
494#define TDMA_TIER1_ARB_0_QUEUE_EN 0x628
495#define TDMA_TIER1_ARB_1_CTRL 0x62c
496#define TDMA_TIER1_ARB_1_QUEUE_EN 0x630
497#define TDMA_TIER1_ARB_2_CTRL 0x634
498#define TDMA_TIER1_ARB_2_QUEUE_EN 0x638
499#define TDMA_TIER1_ARB_3_CTRL 0x63c
500#define TDMA_TIER1_ARB_3_QUEUE_EN 0x640
501
502#define TDMA_SCB_ENDIAN_OVERRIDE 0x644
503#define TDMA_LE_MODE (1 << 0)
504#define TDMA_REG_MODE (1 << 1)
505
506#define TDMA_TEST 0x648
507#define TDMA_TP_OUT_SEL (1 << 0)
508#define TDMA_MEM_TM (1 << 1)
509
510#define TDMA_DEBUG 0x64c
511
512/* Transmit/Receive descriptor */
513struct dma_desc {
514 u32 addr_status_len;
515 u32 addr_lo;
516};
517
518/* Number of Receive hardware descriptor words */
Florian Fainelli44a45242017-01-20 11:08:27 -0800519#define SP_NUM_HW_RX_DESC_WORDS 1024
520#define SP_LT_NUM_HW_RX_DESC_WORDS 256
Florian Fainelli80105be2014-04-24 18:08:57 -0700521
Florian Fainelli44a45242017-01-20 11:08:27 -0800522/* Internal linked-list RAM size */
523#define SP_NUM_TX_DESC 1536
524#define SP_LT_NUM_TX_DESC 256
Florian Fainelli80105be2014-04-24 18:08:57 -0700525
526#define WORDS_PER_DESC (sizeof(struct dma_desc) / sizeof(u32))
527
528/* Rx/Tx common counter group.*/
529struct bcm_sysport_pkt_counters {
530 u32 cnt_64; /* RO Received/Transmited 64 bytes packet */
531 u32 cnt_127; /* RO Rx/Tx 127 bytes packet */
532 u32 cnt_255; /* RO Rx/Tx 65-255 bytes packet */
533 u32 cnt_511; /* RO Rx/Tx 256-511 bytes packet */
534 u32 cnt_1023; /* RO Rx/Tx 512-1023 bytes packet */
535 u32 cnt_1518; /* RO Rx/Tx 1024-1518 bytes packet */
536 u32 cnt_mgv; /* RO Rx/Tx 1519-1522 good VLAN packet */
537 u32 cnt_2047; /* RO Rx/Tx 1522-2047 bytes packet*/
538 u32 cnt_4095; /* RO Rx/Tx 2048-4095 bytes packet*/
539 u32 cnt_9216; /* RO Rx/Tx 4096-9216 bytes packet*/
540};
541
542/* RSV, Receive Status Vector */
543struct bcm_sysport_rx_counters {
544 struct bcm_sysport_pkt_counters pkt_cnt;
545 u32 pkt; /* RO (0x428) Received pkt count*/
546 u32 bytes; /* RO Received byte count */
547 u32 mca; /* RO # of Received multicast pkt */
548 u32 bca; /* RO # of Receive broadcast pkt */
549 u32 fcs; /* RO # of Received FCS error */
550 u32 cf; /* RO # of Received control frame pkt*/
551 u32 pf; /* RO # of Received pause frame pkt */
552 u32 uo; /* RO # of unknown op code pkt */
553 u32 aln; /* RO # of alignment error count */
554 u32 flr; /* RO # of frame length out of range count */
555 u32 cde; /* RO # of code error pkt */
556 u32 fcr; /* RO # of carrier sense error pkt */
557 u32 ovr; /* RO # of oversize pkt*/
558 u32 jbr; /* RO # of jabber count */
559 u32 mtue; /* RO # of MTU error pkt*/
560 u32 pok; /* RO # of Received good pkt */
561 u32 uc; /* RO # of unicast pkt */
562 u32 ppp; /* RO # of PPP pkt */
563 u32 rcrc; /* RO (0x470),# of CRC match pkt */
564};
565
566/* TSV, Transmit Status Vector */
567struct bcm_sysport_tx_counters {
568 struct bcm_sysport_pkt_counters pkt_cnt;
569 u32 pkts; /* RO (0x4a8) Transmited pkt */
570 u32 mca; /* RO # of xmited multicast pkt */
571 u32 bca; /* RO # of xmited broadcast pkt */
572 u32 pf; /* RO # of xmited pause frame count */
573 u32 cf; /* RO # of xmited control frame count */
574 u32 fcs; /* RO # of xmited FCS error count */
575 u32 ovr; /* RO # of xmited oversize pkt */
576 u32 drf; /* RO # of xmited deferral pkt */
577 u32 edf; /* RO # of xmited Excessive deferral pkt*/
578 u32 scl; /* RO # of xmited single collision pkt */
579 u32 mcl; /* RO # of xmited multiple collision pkt*/
580 u32 lcl; /* RO # of xmited late collision pkt */
581 u32 ecl; /* RO # of xmited excessive collision pkt*/
582 u32 frg; /* RO # of xmited fragments pkt*/
583 u32 ncl; /* RO # of xmited total collision count */
584 u32 jbr; /* RO # of xmited jabber count*/
585 u32 bytes; /* RO # of xmited byte count */
586 u32 pok; /* RO # of xmited good pkt */
Antonio Ospite165996b2015-04-28 13:11:29 +0200587 u32 uc; /* RO (0x4f0) # of xmited unicast pkt */
Florian Fainelli80105be2014-04-24 18:08:57 -0700588};
589
590struct bcm_sysport_mib {
591 struct bcm_sysport_rx_counters rx;
592 struct bcm_sysport_tx_counters tx;
593 u32 rx_runt_cnt;
594 u32 rx_runt_fcs;
595 u32 rx_runt_fcs_align;
596 u32 rx_runt_bytes;
597 u32 rxchk_bad_csum;
598 u32 rxchk_other_pkt_disc;
599 u32 rbuf_ovflow_cnt;
600 u32 rbuf_err_cnt;
Florian Fainelli60b4ea12014-11-19 10:29:55 -0800601 u32 alloc_rx_buff_failed;
602 u32 rx_dma_failed;
603 u32 tx_dma_failed;
Florian Fainelli80105be2014-04-24 18:08:57 -0700604};
605
606/* HW maintains a large list of counters */
607enum bcm_sysport_stat_type {
608 BCM_SYSPORT_STAT_NETDEV = -1,
kiki good10377ba2017-08-04 00:07:45 +0100609 BCM_SYSPORT_STAT_NETDEV64,
Florian Fainelli80105be2014-04-24 18:08:57 -0700610 BCM_SYSPORT_STAT_MIB_RX,
611 BCM_SYSPORT_STAT_MIB_TX,
612 BCM_SYSPORT_STAT_RUNT,
613 BCM_SYSPORT_STAT_RXCHK,
614 BCM_SYSPORT_STAT_RBUF,
Florian Fainelli55ff4ea2015-02-28 18:09:17 -0800615 BCM_SYSPORT_STAT_SOFT,
Florian Fainelli80105be2014-04-24 18:08:57 -0700616};
617
618/* Macros to help define ethtool statistics */
619#define STAT_NETDEV(m) { \
620 .stat_string = __stringify(m), \
621 .stat_sizeof = sizeof(((struct net_device_stats *)0)->m), \
622 .stat_offset = offsetof(struct net_device_stats, m), \
623 .type = BCM_SYSPORT_STAT_NETDEV, \
624}
625
kiki good10377ba2017-08-04 00:07:45 +0100626#define STAT_NETDEV64(m) { \
627 .stat_string = __stringify(m), \
628 .stat_sizeof = sizeof(((struct bcm_sysport_stats64 *)0)->m), \
629 .stat_offset = offsetof(struct bcm_sysport_stats64, m), \
630 .type = BCM_SYSPORT_STAT_NETDEV64, \
631}
632
Florian Fainelli80105be2014-04-24 18:08:57 -0700633#define STAT_MIB(str, m, _type) { \
634 .stat_string = str, \
635 .stat_sizeof = sizeof(((struct bcm_sysport_priv *)0)->m), \
636 .stat_offset = offsetof(struct bcm_sysport_priv, m), \
637 .type = _type, \
638}
639
640#define STAT_MIB_RX(str, m) STAT_MIB(str, m, BCM_SYSPORT_STAT_MIB_RX)
641#define STAT_MIB_TX(str, m) STAT_MIB(str, m, BCM_SYSPORT_STAT_MIB_TX)
642#define STAT_RUNT(str, m) STAT_MIB(str, m, BCM_SYSPORT_STAT_RUNT)
Florian Fainelli55ff4ea2015-02-28 18:09:17 -0800643#define STAT_MIB_SOFT(str, m) STAT_MIB(str, m, BCM_SYSPORT_STAT_SOFT)
Florian Fainelli80105be2014-04-24 18:08:57 -0700644
645#define STAT_RXCHK(str, m, ofs) { \
646 .stat_string = str, \
647 .stat_sizeof = sizeof(((struct bcm_sysport_priv *)0)->m), \
648 .stat_offset = offsetof(struct bcm_sysport_priv, m), \
649 .type = BCM_SYSPORT_STAT_RXCHK, \
650 .reg_offset = ofs, \
651}
652
653#define STAT_RBUF(str, m, ofs) { \
654 .stat_string = str, \
655 .stat_sizeof = sizeof(((struct bcm_sysport_priv *)0)->m), \
656 .stat_offset = offsetof(struct bcm_sysport_priv, m), \
657 .type = BCM_SYSPORT_STAT_RBUF, \
658 .reg_offset = ofs, \
659}
660
Florian Fainelli30defeb2017-03-23 10:36:46 -0700661/* TX bytes and packets */
662#define NUM_SYSPORT_TXQ_STAT 2
663
Florian Fainelli80105be2014-04-24 18:08:57 -0700664struct bcm_sysport_stats {
665 char stat_string[ETH_GSTRING_LEN];
666 int stat_sizeof;
667 int stat_offset;
668 enum bcm_sysport_stat_type type;
669 /* reg offset from UMAC base for misc counters */
670 u16 reg_offset;
671};
672
kiki good10377ba2017-08-04 00:07:45 +0100673struct bcm_sysport_stats64 {
674 /* 64bit stats on 32bit/64bit Machine */
675 u64 rx_packets;
676 u64 rx_bytes;
677 u64 tx_packets;
678 u64 tx_bytes;
679};
680
Florian Fainelli80105be2014-04-24 18:08:57 -0700681/* Software house keeping helper structure */
682struct bcm_sysport_cb {
683 struct sk_buff *skb; /* SKB for RX packets */
684 void __iomem *bd_addr; /* Buffer descriptor PHYS addr */
685
686 DEFINE_DMA_UNMAP_ADDR(dma_addr);
687 DEFINE_DMA_UNMAP_LEN(dma_len);
688};
689
Florian Fainelli44a45242017-01-20 11:08:27 -0800690enum bcm_sysport_type {
691 SYSTEMPORT = 0,
692 SYSTEMPORT_LITE,
693};
694
695struct bcm_sysport_hw_params {
696 bool is_lite;
697 unsigned int num_rx_desc_words;
698};
699
Florian Fainellib6e0e872018-03-22 18:19:32 -0700700struct bcm_sysport_net_dim {
701 u16 use_dim;
702 u16 event_ctr;
703 unsigned long packets;
704 unsigned long bytes;
Florian Fainellib6e0e872018-03-22 18:19:32 -0700705 struct net_dim dim;
706};
707
Florian Fainelli80105be2014-04-24 18:08:57 -0700708/* Software view of the TX ring */
709struct bcm_sysport_tx_ring {
710 spinlock_t lock; /* Ring lock for tx reclaim/xmit */
711 struct napi_struct napi; /* NAPI per tx queue */
712 dma_addr_t desc_dma; /* DMA cookie */
713 unsigned int index; /* Ring index */
714 unsigned int size; /* Ring current size */
715 unsigned int alloc_size; /* Ring one-time allocated size */
716 unsigned int desc_count; /* Number of descriptors */
717 unsigned int curr_desc; /* Current descriptor */
718 unsigned int c_index; /* Last consumer index */
Florian Fainelli484d8022018-03-13 14:45:07 -0700719 unsigned int clean_index; /* Current clean index */
Florian Fainelli80105be2014-04-24 18:08:57 -0700720 struct bcm_sysport_cb *cbs; /* Transmit control blocks */
721 struct dma_desc *desc_cpu; /* CPU view of the descriptor */
722 struct bcm_sysport_priv *priv; /* private context backpointer */
Florian Fainelli30defeb2017-03-23 10:36:46 -0700723 unsigned long packets; /* packets statistics */
724 unsigned long bytes; /* bytes statistics */
Florian Fainellid1565762017-10-11 10:57:50 -0700725 unsigned int switch_queue; /* switch port queue number */
726 unsigned int switch_port; /* switch port queue number */
Florian Fainelli3ded76a2017-11-01 11:29:47 -0700727 bool inspect; /* inspect switch port and queue */
Florian Fainelli80105be2014-04-24 18:08:57 -0700728};
729
730/* Driver private structure */
731struct bcm_sysport_priv {
732 void __iomem *base;
733 u32 irq0_stat;
734 u32 irq0_mask;
735 u32 irq1_stat;
736 u32 irq1_mask;
Florian Fainelli44a45242017-01-20 11:08:27 -0800737 bool is_lite;
738 unsigned int num_rx_desc_words;
Florian Fainelli80105be2014-04-24 18:08:57 -0700739 struct napi_struct napi ____cacheline_aligned;
740 struct net_device *netdev;
741 struct platform_device *pdev;
742 int irq0;
743 int irq1;
Florian Fainelli83e82f42014-07-01 21:08:40 -0700744 int wol_irq;
Florian Fainelli80105be2014-04-24 18:08:57 -0700745
746 /* Transmit rings */
Florian Fainelli7b78be42017-01-20 11:08:26 -0800747 struct bcm_sysport_tx_ring *tx_rings;
Florian Fainelli80105be2014-04-24 18:08:57 -0700748
749 /* Receive queue */
750 void __iomem *rx_bds;
Florian Fainelli80105be2014-04-24 18:08:57 -0700751 struct bcm_sysport_cb *rx_cbs;
752 unsigned int num_rx_bds;
753 unsigned int rx_read_ptr;
754 unsigned int rx_c_index;
755
Florian Fainellib6e0e872018-03-22 18:19:32 -0700756 struct bcm_sysport_net_dim dim;
Florian Fainellia8cdfbdf2018-03-28 15:15:37 -0700757 u32 rx_max_coalesced_frames;
758 u32 rx_coalesce_usecs;
Florian Fainellib6e0e872018-03-22 18:19:32 -0700759
Florian Fainelli80105be2014-04-24 18:08:57 -0700760 /* PHY device */
Florian Fainelli186534a2014-05-22 09:47:46 -0700761 struct device_node *phy_dn;
Florian Fainelli80105be2014-04-24 18:08:57 -0700762 phy_interface_t phy_interface;
763 int old_pause;
764 int old_link;
765 int old_duplex;
766
767 /* Misc fields */
Florian Fainelli9d34c1c2014-07-01 21:08:39 -0700768 unsigned int rx_chk_en:1;
Florian Fainelli80105be2014-04-24 18:08:57 -0700769 unsigned int tsb_en:1;
770 unsigned int crc_fwd:1;
771 u16 rev;
Florian Fainelli83e82f42014-07-01 21:08:40 -0700772 u32 wolopts;
773 unsigned int wol_irq_disabled:1;
Florian Fainelli80105be2014-04-24 18:08:57 -0700774
775 /* MIB related fields */
776 struct bcm_sysport_mib mib;
777
778 /* Ethtool */
779 u32 msg_enable;
kiki good10377ba2017-08-04 00:07:45 +0100780
781 struct bcm_sysport_stats64 stats64;
782
783 /* For atomic update generic 64bit value on 32bit Machine */
784 struct u64_stats_sync syncp;
Florian Fainellid1565762017-10-11 10:57:50 -0700785
786 /* map information between switch port queues and local queues */
787 struct notifier_block dsa_notifier;
788 unsigned int per_port_num_tx_queues;
789 unsigned long queue_bitmap;
790 struct bcm_sysport_tx_ring *ring_map[DSA_MAX_PORTS * 8];
791
Florian Fainelli80105be2014-04-24 18:08:57 -0700792};
793#endif /* __BCM_SYSPORT_H */