18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */
28c2ecf20Sopenharmony_ci#ifndef _B44_H
38c2ecf20Sopenharmony_ci#define _B44_H
48c2ecf20Sopenharmony_ci
58c2ecf20Sopenharmony_ci#include <linux/brcmphy.h>
68c2ecf20Sopenharmony_ci
78c2ecf20Sopenharmony_ci/* Register layout. (These correspond to struct _bcmenettregs in bcm4400.) */
88c2ecf20Sopenharmony_ci#define	B44_DEVCTRL	0x0000UL /* Device Control */
98c2ecf20Sopenharmony_ci#define  DEVCTRL_MPM		0x00000040 /* Magic Packet PME Enable (B0 only) */
108c2ecf20Sopenharmony_ci#define  DEVCTRL_PFE		0x00000080 /* Pattern Filtering Enable */
118c2ecf20Sopenharmony_ci#define  DEVCTRL_IPP		0x00000400 /* Internal EPHY Present */
128c2ecf20Sopenharmony_ci#define  DEVCTRL_EPR		0x00008000 /* EPHY Reset */
138c2ecf20Sopenharmony_ci#define  DEVCTRL_PME		0x00001000 /* PHY Mode Enable */
148c2ecf20Sopenharmony_ci#define  DEVCTRL_PMCE		0x00002000 /* PHY Mode Clocks Enable */
158c2ecf20Sopenharmony_ci#define  DEVCTRL_PADDR		0x0007c000 /* PHY Address */
168c2ecf20Sopenharmony_ci#define  DEVCTRL_PADDR_SHIFT	18
178c2ecf20Sopenharmony_ci#define B44_BIST_STAT	0x000CUL /* Built-In Self-Test Status */
188c2ecf20Sopenharmony_ci#define B44_WKUP_LEN	0x0010UL /* Wakeup Length */
198c2ecf20Sopenharmony_ci#define  WKUP_LEN_P0_MASK	0x0000007f /* Pattern 0 */
208c2ecf20Sopenharmony_ci#define  WKUP_LEN_D0		0x00000080
218c2ecf20Sopenharmony_ci#define  WKUP_LEN_P1_MASK	0x00007f00 /* Pattern 1 */
228c2ecf20Sopenharmony_ci#define  WKUP_LEN_P1_SHIFT	8
238c2ecf20Sopenharmony_ci#define  WKUP_LEN_D1		0x00008000
248c2ecf20Sopenharmony_ci#define  WKUP_LEN_P2_MASK	0x007f0000 /* Pattern 2 */
258c2ecf20Sopenharmony_ci#define  WKUP_LEN_P2_SHIFT	16
268c2ecf20Sopenharmony_ci#define  WKUP_LEN_D2		0x00000000
278c2ecf20Sopenharmony_ci#define  WKUP_LEN_P3_MASK	0x7f000000 /* Pattern 3 */
288c2ecf20Sopenharmony_ci#define  WKUP_LEN_P3_SHIFT	24
298c2ecf20Sopenharmony_ci#define  WKUP_LEN_D3		0x80000000
308c2ecf20Sopenharmony_ci#define  WKUP_LEN_DISABLE	0x80808080
318c2ecf20Sopenharmony_ci#define  WKUP_LEN_ENABLE_TWO	0x80800000
328c2ecf20Sopenharmony_ci#define  WKUP_LEN_ENABLE_THREE	0x80000000
338c2ecf20Sopenharmony_ci#define B44_ISTAT	0x0020UL /* Interrupt Status */
348c2ecf20Sopenharmony_ci#define  ISTAT_LS		0x00000020 /* Link Change (B0 only) */
358c2ecf20Sopenharmony_ci#define  ISTAT_PME		0x00000040 /* Power Management Event */
368c2ecf20Sopenharmony_ci#define  ISTAT_TO		0x00000080 /* General Purpose Timeout */
378c2ecf20Sopenharmony_ci#define  ISTAT_DSCE		0x00000400 /* Descriptor Error */
388c2ecf20Sopenharmony_ci#define  ISTAT_DATAE		0x00000800 /* Data Error */
398c2ecf20Sopenharmony_ci#define  ISTAT_DPE		0x00001000 /* Descr. Protocol Error */
408c2ecf20Sopenharmony_ci#define  ISTAT_RDU		0x00002000 /* Receive Descr. Underflow */
418c2ecf20Sopenharmony_ci#define  ISTAT_RFO		0x00004000 /* Receive FIFO Overflow */
428c2ecf20Sopenharmony_ci#define  ISTAT_TFU		0x00008000 /* Transmit FIFO Underflow */
438c2ecf20Sopenharmony_ci#define  ISTAT_RX		0x00010000 /* RX Interrupt */
448c2ecf20Sopenharmony_ci#define  ISTAT_TX		0x01000000 /* TX Interrupt */
458c2ecf20Sopenharmony_ci#define  ISTAT_EMAC		0x04000000 /* EMAC Interrupt */
468c2ecf20Sopenharmony_ci#define  ISTAT_MII_WRITE	0x08000000 /* MII Write Interrupt */
478c2ecf20Sopenharmony_ci#define  ISTAT_MII_READ		0x10000000 /* MII Read Interrupt */
488c2ecf20Sopenharmony_ci#define  ISTAT_ERRORS (ISTAT_DSCE|ISTAT_DATAE|ISTAT_DPE|ISTAT_RDU|ISTAT_RFO|ISTAT_TFU)
498c2ecf20Sopenharmony_ci#define B44_IMASK	0x0024UL /* Interrupt Mask */
508c2ecf20Sopenharmony_ci#define  IMASK_DEF		(ISTAT_ERRORS | ISTAT_TO | ISTAT_RX | ISTAT_TX)
518c2ecf20Sopenharmony_ci#define B44_GPTIMER	0x0028UL /* General Purpose Timer */
528c2ecf20Sopenharmony_ci#define B44_ADDR_LO	0x0088UL /* ENET Address Lo (B0 only) */
538c2ecf20Sopenharmony_ci#define B44_ADDR_HI	0x008CUL /* ENET Address Hi (B0 only) */
548c2ecf20Sopenharmony_ci#define B44_FILT_ADDR	0x0090UL /* ENET Filter Address */
558c2ecf20Sopenharmony_ci#define B44_FILT_DATA	0x0094UL /* ENET Filter Data */
568c2ecf20Sopenharmony_ci#define B44_TXBURST	0x00A0UL /* TX Max Burst Length */
578c2ecf20Sopenharmony_ci#define B44_RXBURST	0x00A4UL /* RX Max Burst Length */
588c2ecf20Sopenharmony_ci#define B44_MAC_CTRL	0x00A8UL /* MAC Control */
598c2ecf20Sopenharmony_ci#define  MAC_CTRL_CRC32_ENAB	0x00000001 /* CRC32 Generation Enable */
608c2ecf20Sopenharmony_ci#define  MAC_CTRL_PHY_PDOWN	0x00000004 /* Onchip EPHY Powerdown */
618c2ecf20Sopenharmony_ci#define  MAC_CTRL_PHY_EDET	0x00000008 /* Onchip EPHY Energy Detected */
628c2ecf20Sopenharmony_ci#define  MAC_CTRL_PHY_LEDCTRL	0x000000e0 /* Onchip EPHY LED Control */
638c2ecf20Sopenharmony_ci#define  MAC_CTRL_PHY_LEDCTRL_SHIFT 5
648c2ecf20Sopenharmony_ci#define B44_MAC_FLOW	0x00ACUL /* MAC Flow Control */
658c2ecf20Sopenharmony_ci#define  MAC_FLOW_RX_HI_WATER	0x000000ff /* Receive FIFO HI Water Mark */
668c2ecf20Sopenharmony_ci#define  MAC_FLOW_PAUSE_ENAB	0x00008000 /* Enable Pause Frame Generation */
678c2ecf20Sopenharmony_ci#define B44_RCV_LAZY	0x0100UL /* Lazy Interrupt Control */
688c2ecf20Sopenharmony_ci#define  RCV_LAZY_TO_MASK	0x00ffffff /* Timeout */
698c2ecf20Sopenharmony_ci#define  RCV_LAZY_FC_MASK	0xff000000 /* Frame Count */
708c2ecf20Sopenharmony_ci#define  RCV_LAZY_FC_SHIFT	24
718c2ecf20Sopenharmony_ci#define B44_DMATX_CTRL	0x0200UL /* DMA TX Control */
728c2ecf20Sopenharmony_ci#define  DMATX_CTRL_ENABLE	0x00000001 /* Enable */
738c2ecf20Sopenharmony_ci#define  DMATX_CTRL_SUSPEND	0x00000002 /* Suepend Request */
748c2ecf20Sopenharmony_ci#define  DMATX_CTRL_LPBACK	0x00000004 /* Loopback Enable */
758c2ecf20Sopenharmony_ci#define  DMATX_CTRL_FAIRPRIOR	0x00000008 /* Fair Priority */
768c2ecf20Sopenharmony_ci#define  DMATX_CTRL_FLUSH	0x00000010 /* Flush Request */
778c2ecf20Sopenharmony_ci#define B44_DMATX_ADDR	0x0204UL /* DMA TX Descriptor Ring Address */
788c2ecf20Sopenharmony_ci#define B44_DMATX_PTR	0x0208UL /* DMA TX Last Posted Descriptor */
798c2ecf20Sopenharmony_ci#define B44_DMATX_STAT	0x020CUL /* DMA TX Current Active Desc. + Status */
808c2ecf20Sopenharmony_ci#define  DMATX_STAT_CDMASK	0x00000fff /* Current Descriptor Mask */
818c2ecf20Sopenharmony_ci#define  DMATX_STAT_SMASK	0x0000f000 /* State Mask */
828c2ecf20Sopenharmony_ci#define  DMATX_STAT_SDISABLED	0x00000000 /* State Disabled */
838c2ecf20Sopenharmony_ci#define  DMATX_STAT_SACTIVE	0x00001000 /* State Active */
848c2ecf20Sopenharmony_ci#define  DMATX_STAT_SIDLE	0x00002000 /* State Idle Wait */
858c2ecf20Sopenharmony_ci#define  DMATX_STAT_SSTOPPED	0x00003000 /* State Stopped */
868c2ecf20Sopenharmony_ci#define  DMATX_STAT_SSUSP	0x00004000 /* State Suspend Pending */
878c2ecf20Sopenharmony_ci#define  DMATX_STAT_EMASK	0x000f0000 /* Error Mask */
888c2ecf20Sopenharmony_ci#define  DMATX_STAT_ENONE	0x00000000 /* Error None */
898c2ecf20Sopenharmony_ci#define  DMATX_STAT_EDPE	0x00010000 /* Error Desc. Protocol Error */
908c2ecf20Sopenharmony_ci#define  DMATX_STAT_EDFU	0x00020000 /* Error Data FIFO Underrun */
918c2ecf20Sopenharmony_ci#define  DMATX_STAT_EBEBR	0x00030000 /* Error Bus Error on Buffer Read */
928c2ecf20Sopenharmony_ci#define  DMATX_STAT_EBEDA	0x00040000 /* Error Bus Error on Desc. Access */
938c2ecf20Sopenharmony_ci#define  DMATX_STAT_FLUSHED	0x00100000 /* Flushed */
948c2ecf20Sopenharmony_ci#define B44_DMARX_CTRL	0x0210UL /* DMA RX Control */
958c2ecf20Sopenharmony_ci#define  DMARX_CTRL_ENABLE	0x00000001 /* Enable */
968c2ecf20Sopenharmony_ci#define  DMARX_CTRL_ROMASK	0x000000fe /* Receive Offset Mask */
978c2ecf20Sopenharmony_ci#define  DMARX_CTRL_ROSHIFT	1 	   /* Receive Offset Shift */
988c2ecf20Sopenharmony_ci#define B44_DMARX_ADDR	0x0214UL /* DMA RX Descriptor Ring Address */
998c2ecf20Sopenharmony_ci#define B44_DMARX_PTR	0x0218UL /* DMA RX Last Posted Descriptor */
1008c2ecf20Sopenharmony_ci#define B44_DMARX_STAT	0x021CUL /* DMA RX Current Active Desc. + Status */
1018c2ecf20Sopenharmony_ci#define  DMARX_STAT_CDMASK	0x00000fff /* Current Descriptor Mask */
1028c2ecf20Sopenharmony_ci#define  DMARX_STAT_SMASK	0x0000f000 /* State Mask */
1038c2ecf20Sopenharmony_ci#define  DMARX_STAT_SDISABLED	0x00000000 /* State Disabled */
1048c2ecf20Sopenharmony_ci#define  DMARX_STAT_SACTIVE	0x00001000 /* State Active */
1058c2ecf20Sopenharmony_ci#define  DMARX_STAT_SIDLE	0x00002000 /* State Idle Wait */
1068c2ecf20Sopenharmony_ci#define  DMARX_STAT_SSTOPPED	0x00003000 /* State Stopped */
1078c2ecf20Sopenharmony_ci#define  DMARX_STAT_EMASK	0x000f0000 /* Error Mask */
1088c2ecf20Sopenharmony_ci#define  DMARX_STAT_ENONE	0x00000000 /* Error None */
1098c2ecf20Sopenharmony_ci#define  DMARX_STAT_EDPE	0x00010000 /* Error Desc. Protocol Error */
1108c2ecf20Sopenharmony_ci#define  DMARX_STAT_EDFO	0x00020000 /* Error Data FIFO Overflow */
1118c2ecf20Sopenharmony_ci#define  DMARX_STAT_EBEBW	0x00030000 /* Error Bus Error on Buffer Write */
1128c2ecf20Sopenharmony_ci#define  DMARX_STAT_EBEDA	0x00040000 /* Error Bus Error on Desc. Access */
1138c2ecf20Sopenharmony_ci#define B44_DMAFIFO_AD	0x0220UL /* DMA FIFO Diag Address */
1148c2ecf20Sopenharmony_ci#define  DMAFIFO_AD_OMASK	0x0000ffff /* Offset Mask */
1158c2ecf20Sopenharmony_ci#define  DMAFIFO_AD_SMASK	0x000f0000 /* Select Mask */
1168c2ecf20Sopenharmony_ci#define  DMAFIFO_AD_SXDD	0x00000000 /* Select Transmit DMA Data */
1178c2ecf20Sopenharmony_ci#define  DMAFIFO_AD_SXDP	0x00010000 /* Select Transmit DMA Pointers */
1188c2ecf20Sopenharmony_ci#define  DMAFIFO_AD_SRDD	0x00040000 /* Select Receive DMA Data */
1198c2ecf20Sopenharmony_ci#define  DMAFIFO_AD_SRDP	0x00050000 /* Select Receive DMA Pointers */
1208c2ecf20Sopenharmony_ci#define  DMAFIFO_AD_SXFD	0x00080000 /* Select Transmit FIFO Data */
1218c2ecf20Sopenharmony_ci#define  DMAFIFO_AD_SXFP	0x00090000 /* Select Transmit FIFO Pointers */
1228c2ecf20Sopenharmony_ci#define  DMAFIFO_AD_SRFD	0x000c0000 /* Select Receive FIFO Data */
1238c2ecf20Sopenharmony_ci#define  DMAFIFO_AD_SRFP	0x000c0000 /* Select Receive FIFO Pointers */
1248c2ecf20Sopenharmony_ci#define B44_DMAFIFO_LO	0x0224UL /* DMA FIFO Diag Low Data */
1258c2ecf20Sopenharmony_ci#define B44_DMAFIFO_HI	0x0228UL /* DMA FIFO Diag High Data */
1268c2ecf20Sopenharmony_ci#define B44_RXCONFIG	0x0400UL /* EMAC RX Config */
1278c2ecf20Sopenharmony_ci#define  RXCONFIG_DBCAST	0x00000001 /* Disable Broadcast */
1288c2ecf20Sopenharmony_ci#define  RXCONFIG_ALLMULTI	0x00000002 /* Accept All Multicast */
1298c2ecf20Sopenharmony_ci#define  RXCONFIG_NORX_WHILE_TX	0x00000004 /* Receive Disable While Transmitting */
1308c2ecf20Sopenharmony_ci#define  RXCONFIG_PROMISC	0x00000008 /* Promiscuous Enable */
1318c2ecf20Sopenharmony_ci#define  RXCONFIG_LPBACK	0x00000010 /* Loopback Enable */
1328c2ecf20Sopenharmony_ci#define  RXCONFIG_FLOW		0x00000020 /* Flow Control Enable */
1338c2ecf20Sopenharmony_ci#define  RXCONFIG_FLOW_ACCEPT	0x00000040 /* Accept Unicast Flow Control Frame */
1348c2ecf20Sopenharmony_ci#define  RXCONFIG_RFILT		0x00000080 /* Reject Filter */
1358c2ecf20Sopenharmony_ci#define  RXCONFIG_CAM_ABSENT	0x00000100 /* CAM Absent */
1368c2ecf20Sopenharmony_ci#define B44_RXMAXLEN	0x0404UL /* EMAC RX Max Packet Length */
1378c2ecf20Sopenharmony_ci#define B44_TXMAXLEN	0x0408UL /* EMAC TX Max Packet Length */
1388c2ecf20Sopenharmony_ci#define B44_MDIO_CTRL	0x0410UL /* EMAC MDIO Control */
1398c2ecf20Sopenharmony_ci#define  MDIO_CTRL_MAXF_MASK	0x0000007f /* MDC Frequency */
1408c2ecf20Sopenharmony_ci#define  MDIO_CTRL_PREAMBLE	0x00000080 /* MII Preamble Enable */
1418c2ecf20Sopenharmony_ci#define B44_MDIO_DATA	0x0414UL /* EMAC MDIO Data */
1428c2ecf20Sopenharmony_ci#define  MDIO_DATA_DATA		0x0000ffff /* R/W Data */
1438c2ecf20Sopenharmony_ci#define  MDIO_DATA_TA_MASK	0x00030000 /* Turnaround Value */
1448c2ecf20Sopenharmony_ci#define  MDIO_DATA_TA_SHIFT	16
1458c2ecf20Sopenharmony_ci#define  MDIO_TA_VALID		2
1468c2ecf20Sopenharmony_ci#define  MDIO_DATA_RA_MASK	0x007c0000 /* Register Address */
1478c2ecf20Sopenharmony_ci#define  MDIO_DATA_RA_SHIFT	18
1488c2ecf20Sopenharmony_ci#define  MDIO_DATA_PMD_MASK	0x0f800000 /* Physical Media Device */
1498c2ecf20Sopenharmony_ci#define  MDIO_DATA_PMD_SHIFT	23
1508c2ecf20Sopenharmony_ci#define  MDIO_DATA_OP_MASK	0x30000000 /* Opcode */
1518c2ecf20Sopenharmony_ci#define  MDIO_DATA_OP_SHIFT	28
1528c2ecf20Sopenharmony_ci#define  MDIO_OP_WRITE		1
1538c2ecf20Sopenharmony_ci#define  MDIO_OP_READ		2
1548c2ecf20Sopenharmony_ci#define  MDIO_DATA_SB_MASK	0xc0000000 /* Start Bits */
1558c2ecf20Sopenharmony_ci#define  MDIO_DATA_SB_SHIFT	30
1568c2ecf20Sopenharmony_ci#define  MDIO_DATA_SB_START	0x40000000 /* Start Of Frame */
1578c2ecf20Sopenharmony_ci#define B44_EMAC_IMASK	0x0418UL /* EMAC Interrupt Mask */
1588c2ecf20Sopenharmony_ci#define B44_EMAC_ISTAT	0x041CUL /* EMAC Interrupt Status */
1598c2ecf20Sopenharmony_ci#define  EMAC_INT_MII		0x00000001 /* MII MDIO Interrupt */
1608c2ecf20Sopenharmony_ci#define  EMAC_INT_MIB		0x00000002 /* MIB Interrupt */
1618c2ecf20Sopenharmony_ci#define  EMAC_INT_FLOW		0x00000003 /* Flow Control Interrupt */
1628c2ecf20Sopenharmony_ci#define B44_CAM_DATA_LO	0x0420UL /* EMAC CAM Data Low */
1638c2ecf20Sopenharmony_ci#define B44_CAM_DATA_HI	0x0424UL /* EMAC CAM Data High */
1648c2ecf20Sopenharmony_ci#define  CAM_DATA_HI_VALID	0x00010000 /* Valid Bit */
1658c2ecf20Sopenharmony_ci#define B44_CAM_CTRL	0x0428UL /* EMAC CAM Control */
1668c2ecf20Sopenharmony_ci#define  CAM_CTRL_ENABLE	0x00000001 /* CAM Enable */
1678c2ecf20Sopenharmony_ci#define  CAM_CTRL_MSEL		0x00000002 /* Mask Select */
1688c2ecf20Sopenharmony_ci#define  CAM_CTRL_READ		0x00000004 /* Read */
1698c2ecf20Sopenharmony_ci#define  CAM_CTRL_WRITE		0x00000008 /* Read */
1708c2ecf20Sopenharmony_ci#define  CAM_CTRL_INDEX_MASK	0x003f0000 /* Index Mask */
1718c2ecf20Sopenharmony_ci#define  CAM_CTRL_INDEX_SHIFT	16
1728c2ecf20Sopenharmony_ci#define  CAM_CTRL_BUSY		0x80000000 /* CAM Busy */
1738c2ecf20Sopenharmony_ci#define B44_ENET_CTRL	0x042CUL /* EMAC ENET Control */
1748c2ecf20Sopenharmony_ci#define  ENET_CTRL_ENABLE	0x00000001 /* EMAC Enable */
1758c2ecf20Sopenharmony_ci#define  ENET_CTRL_DISABLE	0x00000002 /* EMAC Disable */
1768c2ecf20Sopenharmony_ci#define  ENET_CTRL_SRST		0x00000004 /* EMAC Soft Reset */
1778c2ecf20Sopenharmony_ci#define  ENET_CTRL_EPSEL	0x00000008 /* External PHY Select */
1788c2ecf20Sopenharmony_ci#define B44_TX_CTRL	0x0430UL /* EMAC TX Control */
1798c2ecf20Sopenharmony_ci#define  TX_CTRL_DUPLEX		0x00000001 /* Full Duplex */
1808c2ecf20Sopenharmony_ci#define  TX_CTRL_FMODE		0x00000002 /* Flow Mode */
1818c2ecf20Sopenharmony_ci#define  TX_CTRL_SBENAB		0x00000004 /* Single Backoff Enable */
1828c2ecf20Sopenharmony_ci#define  TX_CTRL_SMALL_SLOT	0x00000008 /* Small Slottime */
1838c2ecf20Sopenharmony_ci#define B44_TX_WMARK	0x0434UL /* EMAC TX Watermark */
1848c2ecf20Sopenharmony_ci#define B44_MIB_CTRL	0x0438UL /* EMAC MIB Control */
1858c2ecf20Sopenharmony_ci#define  MIB_CTRL_CLR_ON_READ	0x00000001 /* Autoclear on Read */
1868c2ecf20Sopenharmony_ci#define B44_TX_GOOD_O	0x0500UL /* MIB TX Good Octets */
1878c2ecf20Sopenharmony_ci#define B44_TX_GOOD_P	0x0504UL /* MIB TX Good Packets */
1888c2ecf20Sopenharmony_ci#define B44_TX_O	0x0508UL /* MIB TX Octets */
1898c2ecf20Sopenharmony_ci#define B44_TX_P	0x050CUL /* MIB TX Packets */
1908c2ecf20Sopenharmony_ci#define B44_TX_BCAST	0x0510UL /* MIB TX Broadcast Packets */
1918c2ecf20Sopenharmony_ci#define B44_TX_MCAST	0x0514UL /* MIB TX Multicast Packets */
1928c2ecf20Sopenharmony_ci#define B44_TX_64	0x0518UL /* MIB TX <= 64 byte Packets */
1938c2ecf20Sopenharmony_ci#define B44_TX_65_127	0x051CUL /* MIB TX 65 to 127 byte Packets */
1948c2ecf20Sopenharmony_ci#define B44_TX_128_255	0x0520UL /* MIB TX 128 to 255 byte Packets */
1958c2ecf20Sopenharmony_ci#define B44_TX_256_511	0x0524UL /* MIB TX 256 to 511 byte Packets */
1968c2ecf20Sopenharmony_ci#define B44_TX_512_1023	0x0528UL /* MIB TX 512 to 1023 byte Packets */
1978c2ecf20Sopenharmony_ci#define B44_TX_1024_MAX	0x052CUL /* MIB TX 1024 to max byte Packets */
1988c2ecf20Sopenharmony_ci#define B44_TX_JABBER	0x0530UL /* MIB TX Jabber Packets */
1998c2ecf20Sopenharmony_ci#define B44_TX_OSIZE	0x0534UL /* MIB TX Oversize Packets */
2008c2ecf20Sopenharmony_ci#define B44_TX_FRAG	0x0538UL /* MIB TX Fragment Packets */
2018c2ecf20Sopenharmony_ci#define B44_TX_URUNS	0x053CUL /* MIB TX Underruns */
2028c2ecf20Sopenharmony_ci#define B44_TX_TCOLS	0x0540UL /* MIB TX Total Collisions */
2038c2ecf20Sopenharmony_ci#define B44_TX_SCOLS	0x0544UL /* MIB TX Single Collisions */
2048c2ecf20Sopenharmony_ci#define B44_TX_MCOLS	0x0548UL /* MIB TX Multiple Collisions */
2058c2ecf20Sopenharmony_ci#define B44_TX_ECOLS	0x054CUL /* MIB TX Excessive Collisions */
2068c2ecf20Sopenharmony_ci#define B44_TX_LCOLS	0x0550UL /* MIB TX Late Collisions */
2078c2ecf20Sopenharmony_ci#define B44_TX_DEFERED	0x0554UL /* MIB TX Defered Packets */
2088c2ecf20Sopenharmony_ci#define B44_TX_CLOST	0x0558UL /* MIB TX Carrier Lost */
2098c2ecf20Sopenharmony_ci#define B44_TX_PAUSE	0x055CUL /* MIB TX Pause Packets */
2108c2ecf20Sopenharmony_ci#define B44_RX_GOOD_O	0x0580UL /* MIB RX Good Octets */
2118c2ecf20Sopenharmony_ci#define B44_RX_GOOD_P	0x0584UL /* MIB RX Good Packets */
2128c2ecf20Sopenharmony_ci#define B44_RX_O	0x0588UL /* MIB RX Octets */
2138c2ecf20Sopenharmony_ci#define B44_RX_P	0x058CUL /* MIB RX Packets */
2148c2ecf20Sopenharmony_ci#define B44_RX_BCAST	0x0590UL /* MIB RX Broadcast Packets */
2158c2ecf20Sopenharmony_ci#define B44_RX_MCAST	0x0594UL /* MIB RX Multicast Packets */
2168c2ecf20Sopenharmony_ci#define B44_RX_64	0x0598UL /* MIB RX <= 64 byte Packets */
2178c2ecf20Sopenharmony_ci#define B44_RX_65_127	0x059CUL /* MIB RX 65 to 127 byte Packets */
2188c2ecf20Sopenharmony_ci#define B44_RX_128_255	0x05A0UL /* MIB RX 128 to 255 byte Packets */
2198c2ecf20Sopenharmony_ci#define B44_RX_256_511	0x05A4UL /* MIB RX 256 to 511 byte Packets */
2208c2ecf20Sopenharmony_ci#define B44_RX_512_1023	0x05A8UL /* MIB RX 512 to 1023 byte Packets */
2218c2ecf20Sopenharmony_ci#define B44_RX_1024_MAX	0x05ACUL /* MIB RX 1024 to max byte Packets */
2228c2ecf20Sopenharmony_ci#define B44_RX_JABBER	0x05B0UL /* MIB RX Jabber Packets */
2238c2ecf20Sopenharmony_ci#define B44_RX_OSIZE	0x05B4UL /* MIB RX Oversize Packets */
2248c2ecf20Sopenharmony_ci#define B44_RX_FRAG	0x05B8UL /* MIB RX Fragment Packets */
2258c2ecf20Sopenharmony_ci#define B44_RX_MISS	0x05BCUL /* MIB RX Missed Packets */
2268c2ecf20Sopenharmony_ci#define B44_RX_CRCA	0x05C0UL /* MIB RX CRC Align Errors */
2278c2ecf20Sopenharmony_ci#define B44_RX_USIZE	0x05C4UL /* MIB RX Undersize Packets */
2288c2ecf20Sopenharmony_ci#define B44_RX_CRC	0x05C8UL /* MIB RX CRC Errors */
2298c2ecf20Sopenharmony_ci#define B44_RX_ALIGN	0x05CCUL /* MIB RX Align Errors */
2308c2ecf20Sopenharmony_ci#define B44_RX_SYM	0x05D0UL /* MIB RX Symbol Errors */
2318c2ecf20Sopenharmony_ci#define B44_RX_PAUSE	0x05D4UL /* MIB RX Pause Packets */
2328c2ecf20Sopenharmony_ci#define B44_RX_NPAUSE	0x05D8UL /* MIB RX Non-Pause Packets */
2338c2ecf20Sopenharmony_ci
2348c2ecf20Sopenharmony_ci/* 4400 PHY registers */
2358c2ecf20Sopenharmony_ci#define B44_MII_AUXCTRL		24	/* Auxiliary Control */
2368c2ecf20Sopenharmony_ci#define  MII_AUXCTRL_DUPLEX	0x0001  /* Full Duplex */
2378c2ecf20Sopenharmony_ci#define  MII_AUXCTRL_SPEED	0x0002  /* 1=100Mbps, 0=10Mbps */
2388c2ecf20Sopenharmony_ci#define  MII_AUXCTRL_FORCED	0x0004	/* Forced 10/100 */
2398c2ecf20Sopenharmony_ci#define B44_MII_ALEDCTRL	26	/* Activity LED */
2408c2ecf20Sopenharmony_ci#define  MII_ALEDCTRL_ALLMSK	0x7fff
2418c2ecf20Sopenharmony_ci#define B44_MII_TLEDCTRL	27	/* Traffic Meter LED */
2428c2ecf20Sopenharmony_ci#define  MII_TLEDCTRL_ENABLE	0x0040
2438c2ecf20Sopenharmony_ci
2448c2ecf20Sopenharmony_cistruct dma_desc {
2458c2ecf20Sopenharmony_ci	__le32	ctrl;
2468c2ecf20Sopenharmony_ci	__le32	addr;
2478c2ecf20Sopenharmony_ci};
2488c2ecf20Sopenharmony_ci
2498c2ecf20Sopenharmony_ci/* There are only 12 bits in the DMA engine for descriptor offsetting
2508c2ecf20Sopenharmony_ci * so the table must be aligned on a boundary of this.
2518c2ecf20Sopenharmony_ci */
2528c2ecf20Sopenharmony_ci#define DMA_TABLE_BYTES		4096
2538c2ecf20Sopenharmony_ci
2548c2ecf20Sopenharmony_ci#define DESC_CTRL_LEN	0x00001fff
2558c2ecf20Sopenharmony_ci#define DESC_CTRL_CMASK	0x0ff00000 /* Core specific bits */
2568c2ecf20Sopenharmony_ci#define DESC_CTRL_EOT	0x10000000 /* End of Table */
2578c2ecf20Sopenharmony_ci#define DESC_CTRL_IOC	0x20000000 /* Interrupt On Completion */
2588c2ecf20Sopenharmony_ci#define DESC_CTRL_EOF	0x40000000 /* End of Frame */
2598c2ecf20Sopenharmony_ci#define DESC_CTRL_SOF	0x80000000 /* Start of Frame */
2608c2ecf20Sopenharmony_ci
2618c2ecf20Sopenharmony_ci#define RX_COPY_THRESHOLD  	256
2628c2ecf20Sopenharmony_ci
2638c2ecf20Sopenharmony_cistruct rx_header {
2648c2ecf20Sopenharmony_ci	__le16	len;
2658c2ecf20Sopenharmony_ci	__le16	flags;
2668c2ecf20Sopenharmony_ci	__le16	pad[12];
2678c2ecf20Sopenharmony_ci};
2688c2ecf20Sopenharmony_ci#define RX_HEADER_LEN	28
2698c2ecf20Sopenharmony_ci
2708c2ecf20Sopenharmony_ci#define RX_FLAG_OFIFO	0x00000001 /* FIFO Overflow */
2718c2ecf20Sopenharmony_ci#define RX_FLAG_CRCERR	0x00000002 /* CRC Error */
2728c2ecf20Sopenharmony_ci#define RX_FLAG_SERR	0x00000004 /* Receive Symbol Error */
2738c2ecf20Sopenharmony_ci#define RX_FLAG_ODD	0x00000008 /* Frame has odd number of nibbles */
2748c2ecf20Sopenharmony_ci#define RX_FLAG_LARGE	0x00000010 /* Frame is > RX MAX Length */
2758c2ecf20Sopenharmony_ci#define RX_FLAG_MCAST	0x00000020 /* Dest is Multicast Address */
2768c2ecf20Sopenharmony_ci#define RX_FLAG_BCAST	0x00000040 /* Dest is Broadcast Address */
2778c2ecf20Sopenharmony_ci#define RX_FLAG_MISS	0x00000080 /* Received due to promisc mode */
2788c2ecf20Sopenharmony_ci#define RX_FLAG_LAST	0x00000800 /* Last buffer in frame */
2798c2ecf20Sopenharmony_ci#define RX_FLAG_ERRORS	(RX_FLAG_ODD | RX_FLAG_SERR | RX_FLAG_CRCERR | RX_FLAG_OFIFO)
2808c2ecf20Sopenharmony_ci
2818c2ecf20Sopenharmony_cistruct ring_info {
2828c2ecf20Sopenharmony_ci	struct sk_buff		*skb;
2838c2ecf20Sopenharmony_ci	dma_addr_t	mapping;
2848c2ecf20Sopenharmony_ci};
2858c2ecf20Sopenharmony_ci
2868c2ecf20Sopenharmony_ci#define B44_MCAST_TABLE_SIZE		32
2878c2ecf20Sopenharmony_ci/* no local phy regs, e.g: Broadcom switches pseudo-PHY */
2888c2ecf20Sopenharmony_ci#define B44_PHY_ADDR_NO_LOCAL_PHY	BRCM_PSEUDO_PHY_ADDR
2898c2ecf20Sopenharmony_ci/* no phy present at all */
2908c2ecf20Sopenharmony_ci#define B44_PHY_ADDR_NO_PHY		31
2918c2ecf20Sopenharmony_ci#define B44_MDC_RATIO			5000000
2928c2ecf20Sopenharmony_ci
2938c2ecf20Sopenharmony_ci#define	B44_STAT_REG_DECLARE		\
2948c2ecf20Sopenharmony_ci	_B44(tx_good_octets)		\
2958c2ecf20Sopenharmony_ci	_B44(tx_good_pkts)		\
2968c2ecf20Sopenharmony_ci	_B44(tx_octets)			\
2978c2ecf20Sopenharmony_ci	_B44(tx_pkts)			\
2988c2ecf20Sopenharmony_ci	_B44(tx_broadcast_pkts)		\
2998c2ecf20Sopenharmony_ci	_B44(tx_multicast_pkts)		\
3008c2ecf20Sopenharmony_ci	_B44(tx_len_64)			\
3018c2ecf20Sopenharmony_ci	_B44(tx_len_65_to_127)		\
3028c2ecf20Sopenharmony_ci	_B44(tx_len_128_to_255)		\
3038c2ecf20Sopenharmony_ci	_B44(tx_len_256_to_511)		\
3048c2ecf20Sopenharmony_ci	_B44(tx_len_512_to_1023)	\
3058c2ecf20Sopenharmony_ci	_B44(tx_len_1024_to_max)	\
3068c2ecf20Sopenharmony_ci	_B44(tx_jabber_pkts)		\
3078c2ecf20Sopenharmony_ci	_B44(tx_oversize_pkts)		\
3088c2ecf20Sopenharmony_ci	_B44(tx_fragment_pkts)		\
3098c2ecf20Sopenharmony_ci	_B44(tx_underruns)		\
3108c2ecf20Sopenharmony_ci	_B44(tx_total_cols)		\
3118c2ecf20Sopenharmony_ci	_B44(tx_single_cols)		\
3128c2ecf20Sopenharmony_ci	_B44(tx_multiple_cols)		\
3138c2ecf20Sopenharmony_ci	_B44(tx_excessive_cols)		\
3148c2ecf20Sopenharmony_ci	_B44(tx_late_cols)		\
3158c2ecf20Sopenharmony_ci	_B44(tx_defered)		\
3168c2ecf20Sopenharmony_ci	_B44(tx_carrier_lost)		\
3178c2ecf20Sopenharmony_ci	_B44(tx_pause_pkts)		\
3188c2ecf20Sopenharmony_ci	_B44(rx_good_octets)		\
3198c2ecf20Sopenharmony_ci	_B44(rx_good_pkts)		\
3208c2ecf20Sopenharmony_ci	_B44(rx_octets)			\
3218c2ecf20Sopenharmony_ci	_B44(rx_pkts)			\
3228c2ecf20Sopenharmony_ci	_B44(rx_broadcast_pkts)		\
3238c2ecf20Sopenharmony_ci	_B44(rx_multicast_pkts)		\
3248c2ecf20Sopenharmony_ci	_B44(rx_len_64)			\
3258c2ecf20Sopenharmony_ci	_B44(rx_len_65_to_127)		\
3268c2ecf20Sopenharmony_ci	_B44(rx_len_128_to_255)		\
3278c2ecf20Sopenharmony_ci	_B44(rx_len_256_to_511)		\
3288c2ecf20Sopenharmony_ci	_B44(rx_len_512_to_1023)	\
3298c2ecf20Sopenharmony_ci	_B44(rx_len_1024_to_max)	\
3308c2ecf20Sopenharmony_ci	_B44(rx_jabber_pkts)		\
3318c2ecf20Sopenharmony_ci	_B44(rx_oversize_pkts)		\
3328c2ecf20Sopenharmony_ci	_B44(rx_fragment_pkts)		\
3338c2ecf20Sopenharmony_ci	_B44(rx_missed_pkts)		\
3348c2ecf20Sopenharmony_ci	_B44(rx_crc_align_errs)		\
3358c2ecf20Sopenharmony_ci	_B44(rx_undersize)		\
3368c2ecf20Sopenharmony_ci	_B44(rx_crc_errs)		\
3378c2ecf20Sopenharmony_ci	_B44(rx_align_errs)		\
3388c2ecf20Sopenharmony_ci	_B44(rx_symbol_errs)		\
3398c2ecf20Sopenharmony_ci	_B44(rx_pause_pkts)		\
3408c2ecf20Sopenharmony_ci	_B44(rx_nonpause_pkts)
3418c2ecf20Sopenharmony_ci
3428c2ecf20Sopenharmony_ci/* SW copy of device statistics, kept up to date by periodic timer
3438c2ecf20Sopenharmony_ci * which probes HW values. Check b44_stats_update if you mess with
3448c2ecf20Sopenharmony_ci * the layout
3458c2ecf20Sopenharmony_ci */
3468c2ecf20Sopenharmony_cistruct b44_hw_stats {
3478c2ecf20Sopenharmony_ci#define _B44(x)	u64 x;
3488c2ecf20Sopenharmony_ciB44_STAT_REG_DECLARE
3498c2ecf20Sopenharmony_ci#undef _B44
3508c2ecf20Sopenharmony_ci	struct u64_stats_sync	syncp;
3518c2ecf20Sopenharmony_ci};
3528c2ecf20Sopenharmony_ci
3538c2ecf20Sopenharmony_ci#define	B44_BOARDFLAG_ROBO		0x0010  /* Board has robo switch */
3548c2ecf20Sopenharmony_ci#define	B44_BOARDFLAG_ADM		0x0080  /* Board has ADMtek switch */
3558c2ecf20Sopenharmony_ci
3568c2ecf20Sopenharmony_cistruct ssb_device;
3578c2ecf20Sopenharmony_ci
3588c2ecf20Sopenharmony_cistruct b44 {
3598c2ecf20Sopenharmony_ci	spinlock_t		lock;
3608c2ecf20Sopenharmony_ci
3618c2ecf20Sopenharmony_ci	u32			imask, istat;
3628c2ecf20Sopenharmony_ci
3638c2ecf20Sopenharmony_ci	struct dma_desc		*rx_ring, *tx_ring;
3648c2ecf20Sopenharmony_ci
3658c2ecf20Sopenharmony_ci	u32			tx_prod, tx_cons;
3668c2ecf20Sopenharmony_ci	u32			rx_prod, rx_cons;
3678c2ecf20Sopenharmony_ci
3688c2ecf20Sopenharmony_ci	struct ring_info	*rx_buffers;
3698c2ecf20Sopenharmony_ci	struct ring_info	*tx_buffers;
3708c2ecf20Sopenharmony_ci
3718c2ecf20Sopenharmony_ci	struct napi_struct	napi;
3728c2ecf20Sopenharmony_ci
3738c2ecf20Sopenharmony_ci	u32			dma_offset;
3748c2ecf20Sopenharmony_ci	u32			flags;
3758c2ecf20Sopenharmony_ci#define B44_FLAG_B0_ANDLATER	0x00000001
3768c2ecf20Sopenharmony_ci#define B44_FLAG_BUGGY_TXPTR	0x00000002
3778c2ecf20Sopenharmony_ci#define B44_FLAG_REORDER_BUG	0x00000004
3788c2ecf20Sopenharmony_ci#define B44_FLAG_PAUSE_AUTO	0x00008000
3798c2ecf20Sopenharmony_ci#define B44_FLAG_FULL_DUPLEX	0x00010000
3808c2ecf20Sopenharmony_ci#define B44_FLAG_100_BASE_T	0x00020000
3818c2ecf20Sopenharmony_ci#define B44_FLAG_TX_PAUSE	0x00040000
3828c2ecf20Sopenharmony_ci#define B44_FLAG_RX_PAUSE	0x00080000
3838c2ecf20Sopenharmony_ci#define B44_FLAG_FORCE_LINK	0x00100000
3848c2ecf20Sopenharmony_ci#define B44_FLAG_ADV_10HALF	0x01000000
3858c2ecf20Sopenharmony_ci#define B44_FLAG_ADV_10FULL	0x02000000
3868c2ecf20Sopenharmony_ci#define B44_FLAG_ADV_100HALF	0x04000000
3878c2ecf20Sopenharmony_ci#define B44_FLAG_ADV_100FULL	0x08000000
3888c2ecf20Sopenharmony_ci#define B44_FLAG_EXTERNAL_PHY	0x10000000
3898c2ecf20Sopenharmony_ci#define B44_FLAG_RX_RING_HACK	0x20000000
3908c2ecf20Sopenharmony_ci#define B44_FLAG_TX_RING_HACK	0x40000000
3918c2ecf20Sopenharmony_ci#define B44_FLAG_WOL_ENABLE	0x80000000
3928c2ecf20Sopenharmony_ci
3938c2ecf20Sopenharmony_ci	u32			msg_enable;
3948c2ecf20Sopenharmony_ci
3958c2ecf20Sopenharmony_ci	struct timer_list	timer;
3968c2ecf20Sopenharmony_ci
3978c2ecf20Sopenharmony_ci	struct b44_hw_stats	hw_stats;
3988c2ecf20Sopenharmony_ci
3998c2ecf20Sopenharmony_ci	struct ssb_device	*sdev;
4008c2ecf20Sopenharmony_ci	struct net_device	*dev;
4018c2ecf20Sopenharmony_ci
4028c2ecf20Sopenharmony_ci	dma_addr_t		rx_ring_dma, tx_ring_dma;
4038c2ecf20Sopenharmony_ci
4048c2ecf20Sopenharmony_ci	u32			rx_pending;
4058c2ecf20Sopenharmony_ci	u32			tx_pending;
4068c2ecf20Sopenharmony_ci	u8			phy_addr;
4078c2ecf20Sopenharmony_ci	u8			force_copybreak;
4088c2ecf20Sopenharmony_ci	struct mii_bus		*mii_bus;
4098c2ecf20Sopenharmony_ci	int			old_link;
4108c2ecf20Sopenharmony_ci	struct mii_if_info	mii_if;
4118c2ecf20Sopenharmony_ci};
4128c2ecf20Sopenharmony_ci
4138c2ecf20Sopenharmony_ci#endif /* _B44_H */
414