162306a36Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */ 262306a36Sopenharmony_ci/****************************************************************************/ 362306a36Sopenharmony_ci 462306a36Sopenharmony_ci/* 562306a36Sopenharmony_ci * fec.h -- Fast Ethernet Controller for Motorola ColdFire SoC 662306a36Sopenharmony_ci * processors. 762306a36Sopenharmony_ci * 862306a36Sopenharmony_ci * (C) Copyright 2000-2005, Greg Ungerer (gerg@snapgear.com) 962306a36Sopenharmony_ci * (C) Copyright 2000-2001, Lineo (www.lineo.com) 1062306a36Sopenharmony_ci */ 1162306a36Sopenharmony_ci 1262306a36Sopenharmony_ci/****************************************************************************/ 1362306a36Sopenharmony_ci#ifndef FEC_H 1462306a36Sopenharmony_ci#define FEC_H 1562306a36Sopenharmony_ci/****************************************************************************/ 1662306a36Sopenharmony_ci 1762306a36Sopenharmony_ci#include <linux/clocksource.h> 1862306a36Sopenharmony_ci#include <linux/net_tstamp.h> 1962306a36Sopenharmony_ci#include <linux/pm_qos.h> 2062306a36Sopenharmony_ci#include <linux/bpf.h> 2162306a36Sopenharmony_ci#include <linux/ptp_clock_kernel.h> 2262306a36Sopenharmony_ci#include <linux/timecounter.h> 2362306a36Sopenharmony_ci#include <dt-bindings/firmware/imx/rsrc.h> 2462306a36Sopenharmony_ci#include <linux/firmware/imx/sci.h> 2562306a36Sopenharmony_ci#include <net/xdp.h> 2662306a36Sopenharmony_ci 2762306a36Sopenharmony_ci#if defined(CONFIG_M523x) || defined(CONFIG_M527x) || defined(CONFIG_M528x) || \ 2862306a36Sopenharmony_ci defined(CONFIG_M520x) || defined(CONFIG_M532x) || defined(CONFIG_ARM) || \ 2962306a36Sopenharmony_ci defined(CONFIG_ARM64) || defined(CONFIG_COMPILE_TEST) 3062306a36Sopenharmony_ci/* 3162306a36Sopenharmony_ci * Just figures, Motorola would have to change the offsets for 3262306a36Sopenharmony_ci * registers in the same peripheral device on different models 3362306a36Sopenharmony_ci * of the ColdFire! 3462306a36Sopenharmony_ci */ 3562306a36Sopenharmony_ci#define FEC_IEVENT 0x004 /* Interrupt event reg */ 3662306a36Sopenharmony_ci#define FEC_IMASK 0x008 /* Interrupt mask reg */ 3762306a36Sopenharmony_ci#define FEC_R_DES_ACTIVE_0 0x010 /* Receive descriptor reg */ 3862306a36Sopenharmony_ci#define FEC_X_DES_ACTIVE_0 0x014 /* Transmit descriptor reg */ 3962306a36Sopenharmony_ci#define FEC_ECNTRL 0x024 /* Ethernet control reg */ 4062306a36Sopenharmony_ci#define FEC_MII_DATA 0x040 /* MII manage frame reg */ 4162306a36Sopenharmony_ci#define FEC_MII_SPEED 0x044 /* MII speed control reg */ 4262306a36Sopenharmony_ci#define FEC_MIB_CTRLSTAT 0x064 /* MIB control/status reg */ 4362306a36Sopenharmony_ci#define FEC_R_CNTRL 0x084 /* Receive control reg */ 4462306a36Sopenharmony_ci#define FEC_X_CNTRL 0x0c4 /* Transmit Control reg */ 4562306a36Sopenharmony_ci#define FEC_ADDR_LOW 0x0e4 /* Low 32bits MAC address */ 4662306a36Sopenharmony_ci#define FEC_ADDR_HIGH 0x0e8 /* High 16bits MAC address */ 4762306a36Sopenharmony_ci#define FEC_OPD 0x0ec /* Opcode + Pause duration */ 4862306a36Sopenharmony_ci#define FEC_TXIC0 0x0f0 /* Tx Interrupt Coalescing for ring 0 */ 4962306a36Sopenharmony_ci#define FEC_TXIC1 0x0f4 /* Tx Interrupt Coalescing for ring 1 */ 5062306a36Sopenharmony_ci#define FEC_TXIC2 0x0f8 /* Tx Interrupt Coalescing for ring 2 */ 5162306a36Sopenharmony_ci#define FEC_RXIC0 0x100 /* Rx Interrupt Coalescing for ring 0 */ 5262306a36Sopenharmony_ci#define FEC_RXIC1 0x104 /* Rx Interrupt Coalescing for ring 1 */ 5362306a36Sopenharmony_ci#define FEC_RXIC2 0x108 /* Rx Interrupt Coalescing for ring 2 */ 5462306a36Sopenharmony_ci#define FEC_HASH_TABLE_HIGH 0x118 /* High 32bits hash table */ 5562306a36Sopenharmony_ci#define FEC_HASH_TABLE_LOW 0x11c /* Low 32bits hash table */ 5662306a36Sopenharmony_ci#define FEC_GRP_HASH_TABLE_HIGH 0x120 /* High 32bits hash table */ 5762306a36Sopenharmony_ci#define FEC_GRP_HASH_TABLE_LOW 0x124 /* Low 32bits hash table */ 5862306a36Sopenharmony_ci#define FEC_X_WMRK 0x144 /* FIFO transmit water mark */ 5962306a36Sopenharmony_ci#define FEC_R_BOUND 0x14c /* FIFO receive bound reg */ 6062306a36Sopenharmony_ci#define FEC_R_FSTART 0x150 /* FIFO receive start reg */ 6162306a36Sopenharmony_ci#define FEC_R_DES_START_1 0x160 /* Receive descriptor ring 1 */ 6262306a36Sopenharmony_ci#define FEC_X_DES_START_1 0x164 /* Transmit descriptor ring 1 */ 6362306a36Sopenharmony_ci#define FEC_R_BUFF_SIZE_1 0x168 /* Maximum receive buff ring1 size */ 6462306a36Sopenharmony_ci#define FEC_R_DES_START_2 0x16c /* Receive descriptor ring 2 */ 6562306a36Sopenharmony_ci#define FEC_X_DES_START_2 0x170 /* Transmit descriptor ring 2 */ 6662306a36Sopenharmony_ci#define FEC_R_BUFF_SIZE_2 0x174 /* Maximum receive buff ring2 size */ 6762306a36Sopenharmony_ci#define FEC_R_DES_START_0 0x180 /* Receive descriptor ring */ 6862306a36Sopenharmony_ci#define FEC_X_DES_START_0 0x184 /* Transmit descriptor ring */ 6962306a36Sopenharmony_ci#define FEC_R_BUFF_SIZE_0 0x188 /* Maximum receive buff size */ 7062306a36Sopenharmony_ci#define FEC_R_FIFO_RSFL 0x190 /* Receive FIFO section full threshold */ 7162306a36Sopenharmony_ci#define FEC_R_FIFO_RSEM 0x194 /* Receive FIFO section empty threshold */ 7262306a36Sopenharmony_ci#define FEC_R_FIFO_RAEM 0x198 /* Receive FIFO almost empty threshold */ 7362306a36Sopenharmony_ci#define FEC_R_FIFO_RAFL 0x19c /* Receive FIFO almost full threshold */ 7462306a36Sopenharmony_ci#define FEC_FTRL 0x1b0 /* Frame truncation receive length*/ 7562306a36Sopenharmony_ci#define FEC_RACC 0x1c4 /* Receive Accelerator function */ 7662306a36Sopenharmony_ci#define FEC_RCMR_1 0x1c8 /* Receive classification match ring 1 */ 7762306a36Sopenharmony_ci#define FEC_RCMR_2 0x1cc /* Receive classification match ring 2 */ 7862306a36Sopenharmony_ci#define FEC_DMA_CFG_1 0x1d8 /* DMA class configuration for ring 1 */ 7962306a36Sopenharmony_ci#define FEC_DMA_CFG_2 0x1dc /* DMA class Configuration for ring 2 */ 8062306a36Sopenharmony_ci#define FEC_R_DES_ACTIVE_1 0x1e0 /* Rx descriptor active for ring 1 */ 8162306a36Sopenharmony_ci#define FEC_X_DES_ACTIVE_1 0x1e4 /* Tx descriptor active for ring 1 */ 8262306a36Sopenharmony_ci#define FEC_R_DES_ACTIVE_2 0x1e8 /* Rx descriptor active for ring 2 */ 8362306a36Sopenharmony_ci#define FEC_X_DES_ACTIVE_2 0x1ec /* Tx descriptor active for ring 2 */ 8462306a36Sopenharmony_ci#define FEC_QOS_SCHEME 0x1f0 /* Set multi queues Qos scheme */ 8562306a36Sopenharmony_ci#define FEC_LPI_SLEEP 0x1f4 /* Set IEEE802.3az LPI Sleep Ts time */ 8662306a36Sopenharmony_ci#define FEC_LPI_WAKE 0x1f8 /* Set IEEE802.3az LPI Wake Tw time */ 8762306a36Sopenharmony_ci#define FEC_MIIGSK_CFGR 0x300 /* MIIGSK Configuration reg */ 8862306a36Sopenharmony_ci#define FEC_MIIGSK_ENR 0x308 /* MIIGSK Enable reg */ 8962306a36Sopenharmony_ci 9062306a36Sopenharmony_ci#define BM_MIIGSK_CFGR_MII 0x00 9162306a36Sopenharmony_ci#define BM_MIIGSK_CFGR_RMII 0x01 9262306a36Sopenharmony_ci#define BM_MIIGSK_CFGR_FRCONT_10M 0x40 9362306a36Sopenharmony_ci 9462306a36Sopenharmony_ci#define RMON_T_DROP 0x200 /* Count of frames not cntd correctly */ 9562306a36Sopenharmony_ci#define RMON_T_PACKETS 0x204 /* RMON TX packet count */ 9662306a36Sopenharmony_ci#define RMON_T_BC_PKT 0x208 /* RMON TX broadcast pkts */ 9762306a36Sopenharmony_ci#define RMON_T_MC_PKT 0x20c /* RMON TX multicast pkts */ 9862306a36Sopenharmony_ci#define RMON_T_CRC_ALIGN 0x210 /* RMON TX pkts with CRC align err */ 9962306a36Sopenharmony_ci#define RMON_T_UNDERSIZE 0x214 /* RMON TX pkts < 64 bytes, good CRC */ 10062306a36Sopenharmony_ci#define RMON_T_OVERSIZE 0x218 /* RMON TX pkts > MAX_FL bytes good CRC */ 10162306a36Sopenharmony_ci#define RMON_T_FRAG 0x21c /* RMON TX pkts < 64 bytes, bad CRC */ 10262306a36Sopenharmony_ci#define RMON_T_JAB 0x220 /* RMON TX pkts > MAX_FL bytes, bad CRC */ 10362306a36Sopenharmony_ci#define RMON_T_COL 0x224 /* RMON TX collision count */ 10462306a36Sopenharmony_ci#define RMON_T_P64 0x228 /* RMON TX 64 byte pkts */ 10562306a36Sopenharmony_ci#define RMON_T_P65TO127 0x22c /* RMON TX 65 to 127 byte pkts */ 10662306a36Sopenharmony_ci#define RMON_T_P128TO255 0x230 /* RMON TX 128 to 255 byte pkts */ 10762306a36Sopenharmony_ci#define RMON_T_P256TO511 0x234 /* RMON TX 256 to 511 byte pkts */ 10862306a36Sopenharmony_ci#define RMON_T_P512TO1023 0x238 /* RMON TX 512 to 1023 byte pkts */ 10962306a36Sopenharmony_ci#define RMON_T_P1024TO2047 0x23c /* RMON TX 1024 to 2047 byte pkts */ 11062306a36Sopenharmony_ci#define RMON_T_P_GTE2048 0x240 /* RMON TX pkts > 2048 bytes */ 11162306a36Sopenharmony_ci#define RMON_T_OCTETS 0x244 /* RMON TX octets */ 11262306a36Sopenharmony_ci#define IEEE_T_DROP 0x248 /* Count of frames not counted crtly */ 11362306a36Sopenharmony_ci#define IEEE_T_FRAME_OK 0x24c /* Frames tx'd OK */ 11462306a36Sopenharmony_ci#define IEEE_T_1COL 0x250 /* Frames tx'd with single collision */ 11562306a36Sopenharmony_ci#define IEEE_T_MCOL 0x254 /* Frames tx'd with multiple collision */ 11662306a36Sopenharmony_ci#define IEEE_T_DEF 0x258 /* Frames tx'd after deferral delay */ 11762306a36Sopenharmony_ci#define IEEE_T_LCOL 0x25c /* Frames tx'd with late collision */ 11862306a36Sopenharmony_ci#define IEEE_T_EXCOL 0x260 /* Frames tx'd with excesv collisions */ 11962306a36Sopenharmony_ci#define IEEE_T_MACERR 0x264 /* Frames tx'd with TX FIFO underrun */ 12062306a36Sopenharmony_ci#define IEEE_T_CSERR 0x268 /* Frames tx'd with carrier sense err */ 12162306a36Sopenharmony_ci#define IEEE_T_SQE 0x26c /* Frames tx'd with SQE err */ 12262306a36Sopenharmony_ci#define IEEE_T_FDXFC 0x270 /* Flow control pause frames tx'd */ 12362306a36Sopenharmony_ci#define IEEE_T_OCTETS_OK 0x274 /* Octet count for frames tx'd w/o err */ 12462306a36Sopenharmony_ci#define RMON_R_PACKETS 0x284 /* RMON RX packet count */ 12562306a36Sopenharmony_ci#define RMON_R_BC_PKT 0x288 /* RMON RX broadcast pkts */ 12662306a36Sopenharmony_ci#define RMON_R_MC_PKT 0x28c /* RMON RX multicast pkts */ 12762306a36Sopenharmony_ci#define RMON_R_CRC_ALIGN 0x290 /* RMON RX pkts with CRC alignment err */ 12862306a36Sopenharmony_ci#define RMON_R_UNDERSIZE 0x294 /* RMON RX pkts < 64 bytes, good CRC */ 12962306a36Sopenharmony_ci#define RMON_R_OVERSIZE 0x298 /* RMON RX pkts > MAX_FL bytes good CRC */ 13062306a36Sopenharmony_ci#define RMON_R_FRAG 0x29c /* RMON RX pkts < 64 bytes, bad CRC */ 13162306a36Sopenharmony_ci#define RMON_R_JAB 0x2a0 /* RMON RX pkts > MAX_FL bytes, bad CRC */ 13262306a36Sopenharmony_ci#define RMON_R_RESVD_O 0x2a4 /* Reserved */ 13362306a36Sopenharmony_ci#define RMON_R_P64 0x2a8 /* RMON RX 64 byte pkts */ 13462306a36Sopenharmony_ci#define RMON_R_P65TO127 0x2ac /* RMON RX 65 to 127 byte pkts */ 13562306a36Sopenharmony_ci#define RMON_R_P128TO255 0x2b0 /* RMON RX 128 to 255 byte pkts */ 13662306a36Sopenharmony_ci#define RMON_R_P256TO511 0x2b4 /* RMON RX 256 to 511 byte pkts */ 13762306a36Sopenharmony_ci#define RMON_R_P512TO1023 0x2b8 /* RMON RX 512 to 1023 byte pkts */ 13862306a36Sopenharmony_ci#define RMON_R_P1024TO2047 0x2bc /* RMON RX 1024 to 2047 byte pkts */ 13962306a36Sopenharmony_ci#define RMON_R_P_GTE2048 0x2c0 /* RMON RX pkts > 2048 bytes */ 14062306a36Sopenharmony_ci#define RMON_R_OCTETS 0x2c4 /* RMON RX octets */ 14162306a36Sopenharmony_ci#define IEEE_R_DROP 0x2c8 /* Count frames not counted correctly */ 14262306a36Sopenharmony_ci#define IEEE_R_FRAME_OK 0x2cc /* Frames rx'd OK */ 14362306a36Sopenharmony_ci#define IEEE_R_CRC 0x2d0 /* Frames rx'd with CRC err */ 14462306a36Sopenharmony_ci#define IEEE_R_ALIGN 0x2d4 /* Frames rx'd with alignment err */ 14562306a36Sopenharmony_ci#define IEEE_R_MACERR 0x2d8 /* Receive FIFO overflow count */ 14662306a36Sopenharmony_ci#define IEEE_R_FDXFC 0x2dc /* Flow control pause frames rx'd */ 14762306a36Sopenharmony_ci#define IEEE_R_OCTETS_OK 0x2e0 /* Octet cnt for frames rx'd w/o err */ 14862306a36Sopenharmony_ci 14962306a36Sopenharmony_ci#else 15062306a36Sopenharmony_ci 15162306a36Sopenharmony_ci#define FEC_ECNTRL 0x000 /* Ethernet control reg */ 15262306a36Sopenharmony_ci#define FEC_IEVENT 0x004 /* Interrupt even reg */ 15362306a36Sopenharmony_ci#define FEC_IMASK 0x008 /* Interrupt mask reg */ 15462306a36Sopenharmony_ci#define FEC_IVEC 0x00c /* Interrupt vec status reg */ 15562306a36Sopenharmony_ci#define FEC_R_DES_ACTIVE_0 0x010 /* Receive descriptor reg */ 15662306a36Sopenharmony_ci#define FEC_R_DES_ACTIVE_1 FEC_R_DES_ACTIVE_0 15762306a36Sopenharmony_ci#define FEC_R_DES_ACTIVE_2 FEC_R_DES_ACTIVE_0 15862306a36Sopenharmony_ci#define FEC_X_DES_ACTIVE_0 0x014 /* Transmit descriptor reg */ 15962306a36Sopenharmony_ci#define FEC_X_DES_ACTIVE_1 FEC_X_DES_ACTIVE_0 16062306a36Sopenharmony_ci#define FEC_X_DES_ACTIVE_2 FEC_X_DES_ACTIVE_0 16162306a36Sopenharmony_ci#define FEC_MII_DATA 0x040 /* MII manage frame reg */ 16262306a36Sopenharmony_ci#define FEC_MII_SPEED 0x044 /* MII speed control reg */ 16362306a36Sopenharmony_ci#define FEC_R_BOUND 0x08c /* FIFO receive bound reg */ 16462306a36Sopenharmony_ci#define FEC_R_FSTART 0x090 /* FIFO receive start reg */ 16562306a36Sopenharmony_ci#define FEC_X_WMRK 0x0a4 /* FIFO transmit water mark */ 16662306a36Sopenharmony_ci#define FEC_X_FSTART 0x0ac /* FIFO transmit start reg */ 16762306a36Sopenharmony_ci#define FEC_R_CNTRL 0x104 /* Receive control reg */ 16862306a36Sopenharmony_ci#define FEC_MAX_FRM_LEN 0x108 /* Maximum frame length reg */ 16962306a36Sopenharmony_ci#define FEC_X_CNTRL 0x144 /* Transmit Control reg */ 17062306a36Sopenharmony_ci#define FEC_ADDR_LOW 0x3c0 /* Low 32bits MAC address */ 17162306a36Sopenharmony_ci#define FEC_ADDR_HIGH 0x3c4 /* High 16bits MAC address */ 17262306a36Sopenharmony_ci#define FEC_GRP_HASH_TABLE_HIGH 0x3c8 /* High 32bits hash table */ 17362306a36Sopenharmony_ci#define FEC_GRP_HASH_TABLE_LOW 0x3cc /* Low 32bits hash table */ 17462306a36Sopenharmony_ci#define FEC_R_DES_START_0 0x3d0 /* Receive descriptor ring */ 17562306a36Sopenharmony_ci#define FEC_R_DES_START_1 FEC_R_DES_START_0 17662306a36Sopenharmony_ci#define FEC_R_DES_START_2 FEC_R_DES_START_0 17762306a36Sopenharmony_ci#define FEC_X_DES_START_0 0x3d4 /* Transmit descriptor ring */ 17862306a36Sopenharmony_ci#define FEC_X_DES_START_1 FEC_X_DES_START_0 17962306a36Sopenharmony_ci#define FEC_X_DES_START_2 FEC_X_DES_START_0 18062306a36Sopenharmony_ci#define FEC_R_BUFF_SIZE_0 0x3d8 /* Maximum receive buff size */ 18162306a36Sopenharmony_ci#define FEC_R_BUFF_SIZE_1 FEC_R_BUFF_SIZE_0 18262306a36Sopenharmony_ci#define FEC_R_BUFF_SIZE_2 FEC_R_BUFF_SIZE_0 18362306a36Sopenharmony_ci#define FEC_FIFO_RAM 0x400 /* FIFO RAM buffer */ 18462306a36Sopenharmony_ci/* Not existed in real chip 18562306a36Sopenharmony_ci * Just for pass build. 18662306a36Sopenharmony_ci */ 18762306a36Sopenharmony_ci#define FEC_RCMR_1 0xfff 18862306a36Sopenharmony_ci#define FEC_RCMR_2 0xfff 18962306a36Sopenharmony_ci#define FEC_DMA_CFG_1 0xfff 19062306a36Sopenharmony_ci#define FEC_DMA_CFG_2 0xfff 19162306a36Sopenharmony_ci#define FEC_TXIC0 0xfff 19262306a36Sopenharmony_ci#define FEC_TXIC1 0xfff 19362306a36Sopenharmony_ci#define FEC_TXIC2 0xfff 19462306a36Sopenharmony_ci#define FEC_RXIC0 0xfff 19562306a36Sopenharmony_ci#define FEC_RXIC1 0xfff 19662306a36Sopenharmony_ci#define FEC_RXIC2 0xfff 19762306a36Sopenharmony_ci#define FEC_LPI_SLEEP 0xfff 19862306a36Sopenharmony_ci#define FEC_LPI_WAKE 0xfff 19962306a36Sopenharmony_ci#endif /* CONFIG_M5272 */ 20062306a36Sopenharmony_ci 20162306a36Sopenharmony_ci 20262306a36Sopenharmony_ci/* 20362306a36Sopenharmony_ci * Define the buffer descriptor structure. 20462306a36Sopenharmony_ci * 20562306a36Sopenharmony_ci * Evidently, ARM SoCs have the FEC block generated in a 20662306a36Sopenharmony_ci * little endian mode so adjust endianness accordingly. 20762306a36Sopenharmony_ci */ 20862306a36Sopenharmony_ci#if defined(CONFIG_ARM) || defined(CONFIG_ARM64) 20962306a36Sopenharmony_ci#define fec32_to_cpu le32_to_cpu 21062306a36Sopenharmony_ci#define fec16_to_cpu le16_to_cpu 21162306a36Sopenharmony_ci#define cpu_to_fec32 cpu_to_le32 21262306a36Sopenharmony_ci#define cpu_to_fec16 cpu_to_le16 21362306a36Sopenharmony_ci#define __fec32 __le32 21462306a36Sopenharmony_ci#define __fec16 __le16 21562306a36Sopenharmony_ci 21662306a36Sopenharmony_cistruct bufdesc { 21762306a36Sopenharmony_ci __fec16 cbd_datlen; /* Data length */ 21862306a36Sopenharmony_ci __fec16 cbd_sc; /* Control and status info */ 21962306a36Sopenharmony_ci __fec32 cbd_bufaddr; /* Buffer address */ 22062306a36Sopenharmony_ci}; 22162306a36Sopenharmony_ci#else 22262306a36Sopenharmony_ci#define fec32_to_cpu be32_to_cpu 22362306a36Sopenharmony_ci#define fec16_to_cpu be16_to_cpu 22462306a36Sopenharmony_ci#define cpu_to_fec32 cpu_to_be32 22562306a36Sopenharmony_ci#define cpu_to_fec16 cpu_to_be16 22662306a36Sopenharmony_ci#define __fec32 __be32 22762306a36Sopenharmony_ci#define __fec16 __be16 22862306a36Sopenharmony_ci 22962306a36Sopenharmony_cistruct bufdesc { 23062306a36Sopenharmony_ci __fec16 cbd_sc; /* Control and status info */ 23162306a36Sopenharmony_ci __fec16 cbd_datlen; /* Data length */ 23262306a36Sopenharmony_ci __fec32 cbd_bufaddr; /* Buffer address */ 23362306a36Sopenharmony_ci}; 23462306a36Sopenharmony_ci#endif 23562306a36Sopenharmony_ci 23662306a36Sopenharmony_cistruct bufdesc_ex { 23762306a36Sopenharmony_ci struct bufdesc desc; 23862306a36Sopenharmony_ci __fec32 cbd_esc; 23962306a36Sopenharmony_ci __fec32 cbd_prot; 24062306a36Sopenharmony_ci __fec32 cbd_bdu; 24162306a36Sopenharmony_ci __fec32 ts; 24262306a36Sopenharmony_ci __fec16 res0[4]; 24362306a36Sopenharmony_ci}; 24462306a36Sopenharmony_ci 24562306a36Sopenharmony_ci/* 24662306a36Sopenharmony_ci * The following definitions courtesy of commproc.h, which where 24762306a36Sopenharmony_ci * Copyright (c) 1997 Dan Malek (dmalek@jlc.net). 24862306a36Sopenharmony_ci */ 24962306a36Sopenharmony_ci#define BD_SC_EMPTY ((ushort)0x8000) /* Receive is empty */ 25062306a36Sopenharmony_ci#define BD_SC_READY ((ushort)0x8000) /* Transmit is ready */ 25162306a36Sopenharmony_ci#define BD_SC_WRAP ((ushort)0x2000) /* Last buffer descriptor */ 25262306a36Sopenharmony_ci#define BD_SC_INTRPT ((ushort)0x1000) /* Interrupt on change */ 25362306a36Sopenharmony_ci#define BD_SC_CM ((ushort)0x0200) /* Continuous mode */ 25462306a36Sopenharmony_ci#define BD_SC_ID ((ushort)0x0100) /* Rec'd too many idles */ 25562306a36Sopenharmony_ci#define BD_SC_P ((ushort)0x0100) /* xmt preamble */ 25662306a36Sopenharmony_ci#define BD_SC_BR ((ushort)0x0020) /* Break received */ 25762306a36Sopenharmony_ci#define BD_SC_FR ((ushort)0x0010) /* Framing error */ 25862306a36Sopenharmony_ci#define BD_SC_PR ((ushort)0x0008) /* Parity error */ 25962306a36Sopenharmony_ci#define BD_SC_OV ((ushort)0x0002) /* Overrun */ 26062306a36Sopenharmony_ci#define BD_SC_CD ((ushort)0x0001) /* ?? */ 26162306a36Sopenharmony_ci 26262306a36Sopenharmony_ci/* Buffer descriptor control/status used by Ethernet receive. 26362306a36Sopenharmony_ci */ 26462306a36Sopenharmony_ci#define BD_ENET_RX_EMPTY ((ushort)0x8000) 26562306a36Sopenharmony_ci#define BD_ENET_RX_WRAP ((ushort)0x2000) 26662306a36Sopenharmony_ci#define BD_ENET_RX_INTR ((ushort)0x1000) 26762306a36Sopenharmony_ci#define BD_ENET_RX_LAST ((ushort)0x0800) 26862306a36Sopenharmony_ci#define BD_ENET_RX_FIRST ((ushort)0x0400) 26962306a36Sopenharmony_ci#define BD_ENET_RX_MISS ((ushort)0x0100) 27062306a36Sopenharmony_ci#define BD_ENET_RX_LG ((ushort)0x0020) 27162306a36Sopenharmony_ci#define BD_ENET_RX_NO ((ushort)0x0010) 27262306a36Sopenharmony_ci#define BD_ENET_RX_SH ((ushort)0x0008) 27362306a36Sopenharmony_ci#define BD_ENET_RX_CR ((ushort)0x0004) 27462306a36Sopenharmony_ci#define BD_ENET_RX_OV ((ushort)0x0002) 27562306a36Sopenharmony_ci#define BD_ENET_RX_CL ((ushort)0x0001) 27662306a36Sopenharmony_ci#define BD_ENET_RX_STATS ((ushort)0x013f) /* All status bits */ 27762306a36Sopenharmony_ci 27862306a36Sopenharmony_ci/* Enhanced buffer descriptor control/status used by Ethernet receive */ 27962306a36Sopenharmony_ci#define BD_ENET_RX_VLAN 0x00000004 28062306a36Sopenharmony_ci 28162306a36Sopenharmony_ci/* Buffer descriptor control/status used by Ethernet transmit. 28262306a36Sopenharmony_ci */ 28362306a36Sopenharmony_ci#define BD_ENET_TX_READY ((ushort)0x8000) 28462306a36Sopenharmony_ci#define BD_ENET_TX_PAD ((ushort)0x4000) 28562306a36Sopenharmony_ci#define BD_ENET_TX_WRAP ((ushort)0x2000) 28662306a36Sopenharmony_ci#define BD_ENET_TX_INTR ((ushort)0x1000) 28762306a36Sopenharmony_ci#define BD_ENET_TX_LAST ((ushort)0x0800) 28862306a36Sopenharmony_ci#define BD_ENET_TX_TC ((ushort)0x0400) 28962306a36Sopenharmony_ci#define BD_ENET_TX_DEF ((ushort)0x0200) 29062306a36Sopenharmony_ci#define BD_ENET_TX_HB ((ushort)0x0100) 29162306a36Sopenharmony_ci#define BD_ENET_TX_LC ((ushort)0x0080) 29262306a36Sopenharmony_ci#define BD_ENET_TX_RL ((ushort)0x0040) 29362306a36Sopenharmony_ci#define BD_ENET_TX_RCMASK ((ushort)0x003c) 29462306a36Sopenharmony_ci#define BD_ENET_TX_UN ((ushort)0x0002) 29562306a36Sopenharmony_ci#define BD_ENET_TX_CSL ((ushort)0x0001) 29662306a36Sopenharmony_ci#define BD_ENET_TX_STATS ((ushort)0x0fff) /* All status bits */ 29762306a36Sopenharmony_ci 29862306a36Sopenharmony_ci/* enhanced buffer descriptor control/status used by Ethernet transmit */ 29962306a36Sopenharmony_ci#define BD_ENET_TX_INT 0x40000000 30062306a36Sopenharmony_ci#define BD_ENET_TX_TS 0x20000000 30162306a36Sopenharmony_ci#define BD_ENET_TX_PINS 0x10000000 30262306a36Sopenharmony_ci#define BD_ENET_TX_IINS 0x08000000 30362306a36Sopenharmony_ci 30462306a36Sopenharmony_ci 30562306a36Sopenharmony_ci/* This device has up to three irqs on some platforms */ 30662306a36Sopenharmony_ci#define FEC_IRQ_NUM 3 30762306a36Sopenharmony_ci 30862306a36Sopenharmony_ci/* Maximum number of queues supported 30962306a36Sopenharmony_ci * ENET with AVB IP can support up to 3 independent tx queues and rx queues. 31062306a36Sopenharmony_ci * User can point the queue number that is less than or equal to 3. 31162306a36Sopenharmony_ci */ 31262306a36Sopenharmony_ci#define FEC_ENET_MAX_TX_QS 3 31362306a36Sopenharmony_ci#define FEC_ENET_MAX_RX_QS 3 31462306a36Sopenharmony_ci 31562306a36Sopenharmony_ci#define FEC_R_DES_START(X) (((X) == 1) ? FEC_R_DES_START_1 : \ 31662306a36Sopenharmony_ci (((X) == 2) ? \ 31762306a36Sopenharmony_ci FEC_R_DES_START_2 : FEC_R_DES_START_0)) 31862306a36Sopenharmony_ci#define FEC_X_DES_START(X) (((X) == 1) ? FEC_X_DES_START_1 : \ 31962306a36Sopenharmony_ci (((X) == 2) ? \ 32062306a36Sopenharmony_ci FEC_X_DES_START_2 : FEC_X_DES_START_0)) 32162306a36Sopenharmony_ci#define FEC_R_BUFF_SIZE(X) (((X) == 1) ? FEC_R_BUFF_SIZE_1 : \ 32262306a36Sopenharmony_ci (((X) == 2) ? \ 32362306a36Sopenharmony_ci FEC_R_BUFF_SIZE_2 : FEC_R_BUFF_SIZE_0)) 32462306a36Sopenharmony_ci 32562306a36Sopenharmony_ci#define FEC_DMA_CFG(X) (((X) == 2) ? FEC_DMA_CFG_2 : FEC_DMA_CFG_1) 32662306a36Sopenharmony_ci 32762306a36Sopenharmony_ci#define DMA_CLASS_EN (1 << 16) 32862306a36Sopenharmony_ci#define FEC_RCMR(X) (((X) == 2) ? FEC_RCMR_2 : FEC_RCMR_1) 32962306a36Sopenharmony_ci#define IDLE_SLOPE_MASK 0xffff 33062306a36Sopenharmony_ci#define IDLE_SLOPE_1 0x200 /* BW fraction: 0.5 */ 33162306a36Sopenharmony_ci#define IDLE_SLOPE_2 0x200 /* BW fraction: 0.5 */ 33262306a36Sopenharmony_ci#define IDLE_SLOPE(X) (((X) == 1) ? \ 33362306a36Sopenharmony_ci (IDLE_SLOPE_1 & IDLE_SLOPE_MASK) : \ 33462306a36Sopenharmony_ci (IDLE_SLOPE_2 & IDLE_SLOPE_MASK)) 33562306a36Sopenharmony_ci#define RCMR_MATCHEN (0x1 << 16) 33662306a36Sopenharmony_ci#define RCMR_CMP_CFG(v, n) (((v) & 0x7) << (n << 2)) 33762306a36Sopenharmony_ci#define RCMR_CMP_1 (RCMR_CMP_CFG(0, 0) | RCMR_CMP_CFG(1, 1) | \ 33862306a36Sopenharmony_ci RCMR_CMP_CFG(2, 2) | RCMR_CMP_CFG(3, 3)) 33962306a36Sopenharmony_ci#define RCMR_CMP_2 (RCMR_CMP_CFG(4, 0) | RCMR_CMP_CFG(5, 1) | \ 34062306a36Sopenharmony_ci RCMR_CMP_CFG(6, 2) | RCMR_CMP_CFG(7, 3)) 34162306a36Sopenharmony_ci#define RCMR_CMP(X) (((X) == 1) ? RCMR_CMP_1 : RCMR_CMP_2) 34262306a36Sopenharmony_ci#define FEC_TX_BD_FTYPE(X) (((X) & 0xf) << 20) 34362306a36Sopenharmony_ci 34462306a36Sopenharmony_ci/* The number of Tx and Rx buffers. These are allocated from the page 34562306a36Sopenharmony_ci * pool. The code may assume these are power of two, so it it best 34662306a36Sopenharmony_ci * to keep them that size. 34762306a36Sopenharmony_ci * We don't need to allocate pages for the transmitter. We just use 34862306a36Sopenharmony_ci * the skbuffer directly. 34962306a36Sopenharmony_ci */ 35062306a36Sopenharmony_ci 35162306a36Sopenharmony_ci#define FEC_ENET_XDP_HEADROOM (XDP_PACKET_HEADROOM) 35262306a36Sopenharmony_ci#define FEC_ENET_RX_PAGES 256 35362306a36Sopenharmony_ci#define FEC_ENET_RX_FRSIZE (PAGE_SIZE - FEC_ENET_XDP_HEADROOM \ 35462306a36Sopenharmony_ci - SKB_DATA_ALIGN(sizeof(struct skb_shared_info))) 35562306a36Sopenharmony_ci#define FEC_ENET_RX_FRPPG (PAGE_SIZE / FEC_ENET_RX_FRSIZE) 35662306a36Sopenharmony_ci#define RX_RING_SIZE (FEC_ENET_RX_FRPPG * FEC_ENET_RX_PAGES) 35762306a36Sopenharmony_ci#define FEC_ENET_TX_FRSIZE 2048 35862306a36Sopenharmony_ci#define FEC_ENET_TX_FRPPG (PAGE_SIZE / FEC_ENET_TX_FRSIZE) 35962306a36Sopenharmony_ci#define TX_RING_SIZE 1024 /* Must be power of two */ 36062306a36Sopenharmony_ci#define TX_RING_MOD_MASK 511 /* for this to work */ 36162306a36Sopenharmony_ci 36262306a36Sopenharmony_ci#define BD_ENET_RX_INT 0x00800000 36362306a36Sopenharmony_ci#define BD_ENET_RX_PTP ((ushort)0x0400) 36462306a36Sopenharmony_ci#define BD_ENET_RX_ICE 0x00000020 36562306a36Sopenharmony_ci#define BD_ENET_RX_PCR 0x00000010 36662306a36Sopenharmony_ci#define FLAG_RX_CSUM_ENABLED (BD_ENET_RX_ICE | BD_ENET_RX_PCR) 36762306a36Sopenharmony_ci#define FLAG_RX_CSUM_ERROR (BD_ENET_RX_ICE | BD_ENET_RX_PCR) 36862306a36Sopenharmony_ci 36962306a36Sopenharmony_ci/* Interrupt events/masks. */ 37062306a36Sopenharmony_ci#define FEC_ENET_HBERR ((uint)0x80000000) /* Heartbeat error */ 37162306a36Sopenharmony_ci#define FEC_ENET_BABR ((uint)0x40000000) /* Babbling receiver */ 37262306a36Sopenharmony_ci#define FEC_ENET_BABT ((uint)0x20000000) /* Babbling transmitter */ 37362306a36Sopenharmony_ci#define FEC_ENET_GRA ((uint)0x10000000) /* Graceful stop complete */ 37462306a36Sopenharmony_ci#define FEC_ENET_TXF_0 ((uint)0x08000000) /* Full frame transmitted */ 37562306a36Sopenharmony_ci#define FEC_ENET_TXF_1 ((uint)0x00000008) /* Full frame transmitted */ 37662306a36Sopenharmony_ci#define FEC_ENET_TXF_2 ((uint)0x00000080) /* Full frame transmitted */ 37762306a36Sopenharmony_ci#define FEC_ENET_TXB ((uint)0x04000000) /* A buffer was transmitted */ 37862306a36Sopenharmony_ci#define FEC_ENET_RXF_0 ((uint)0x02000000) /* Full frame received */ 37962306a36Sopenharmony_ci#define FEC_ENET_RXF_1 ((uint)0x00000002) /* Full frame received */ 38062306a36Sopenharmony_ci#define FEC_ENET_RXF_2 ((uint)0x00000020) /* Full frame received */ 38162306a36Sopenharmony_ci#define FEC_ENET_RXB ((uint)0x01000000) /* A buffer was received */ 38262306a36Sopenharmony_ci#define FEC_ENET_MII ((uint)0x00800000) /* MII interrupt */ 38362306a36Sopenharmony_ci#define FEC_ENET_EBERR ((uint)0x00400000) /* SDMA bus error */ 38462306a36Sopenharmony_ci#define FEC_ENET_WAKEUP ((uint)0x00020000) /* Wakeup request */ 38562306a36Sopenharmony_ci#define FEC_ENET_TXF (FEC_ENET_TXF_0 | FEC_ENET_TXF_1 | FEC_ENET_TXF_2) 38662306a36Sopenharmony_ci#define FEC_ENET_RXF (FEC_ENET_RXF_0 | FEC_ENET_RXF_1 | FEC_ENET_RXF_2) 38762306a36Sopenharmony_ci#define FEC_ENET_RXF_GET(X) (((X) == 0) ? FEC_ENET_RXF_0 : \ 38862306a36Sopenharmony_ci (((X) == 1) ? FEC_ENET_RXF_1 : \ 38962306a36Sopenharmony_ci FEC_ENET_RXF_2)) 39062306a36Sopenharmony_ci#define FEC_ENET_TS_AVAIL ((uint)0x00010000) 39162306a36Sopenharmony_ci#define FEC_ENET_TS_TIMER ((uint)0x00008000) 39262306a36Sopenharmony_ci 39362306a36Sopenharmony_ci#define FEC_DEFAULT_IMASK (FEC_ENET_TXF | FEC_ENET_RXF) 39462306a36Sopenharmony_ci#define FEC_RX_DISABLED_IMASK (FEC_DEFAULT_IMASK & (~FEC_ENET_RXF)) 39562306a36Sopenharmony_ci 39662306a36Sopenharmony_ci#define FEC_ENET_TXC_DLY ((uint)0x00010000) 39762306a36Sopenharmony_ci#define FEC_ENET_RXC_DLY ((uint)0x00020000) 39862306a36Sopenharmony_ci 39962306a36Sopenharmony_ci/* ENET interrupt coalescing macro define */ 40062306a36Sopenharmony_ci#define FEC_ITR_CLK_SEL (0x1 << 30) 40162306a36Sopenharmony_ci#define FEC_ITR_EN (0x1 << 31) 40262306a36Sopenharmony_ci#define FEC_ITR_ICFT(X) (((X) & 0xff) << 20) 40362306a36Sopenharmony_ci#define FEC_ITR_ICTT(X) ((X) & 0xffff) 40462306a36Sopenharmony_ci#define FEC_ITR_ICFT_DEFAULT 200 /* Set 200 frame count threshold */ 40562306a36Sopenharmony_ci#define FEC_ITR_ICTT_DEFAULT 1000 /* Set 1000us timer threshold */ 40662306a36Sopenharmony_ci 40762306a36Sopenharmony_ci#define FEC_VLAN_TAG_LEN 0x04 40862306a36Sopenharmony_ci#define FEC_ETHTYPE_LEN 0x02 40962306a36Sopenharmony_ci 41062306a36Sopenharmony_ci/* Controller is ENET-MAC */ 41162306a36Sopenharmony_ci#define FEC_QUIRK_ENET_MAC (1 << 0) 41262306a36Sopenharmony_ci/* Controller needs driver to swap frame */ 41362306a36Sopenharmony_ci#define FEC_QUIRK_SWAP_FRAME (1 << 1) 41462306a36Sopenharmony_ci/* Controller uses gasket */ 41562306a36Sopenharmony_ci#define FEC_QUIRK_USE_GASKET (1 << 2) 41662306a36Sopenharmony_ci/* Controller has GBIT support */ 41762306a36Sopenharmony_ci#define FEC_QUIRK_HAS_GBIT (1 << 3) 41862306a36Sopenharmony_ci/* Controller has extend desc buffer */ 41962306a36Sopenharmony_ci#define FEC_QUIRK_HAS_BUFDESC_EX (1 << 4) 42062306a36Sopenharmony_ci/* Controller has hardware checksum support */ 42162306a36Sopenharmony_ci#define FEC_QUIRK_HAS_CSUM (1 << 5) 42262306a36Sopenharmony_ci/* Controller has hardware vlan support */ 42362306a36Sopenharmony_ci#define FEC_QUIRK_HAS_VLAN (1 << 6) 42462306a36Sopenharmony_ci/* ENET IP errata ERR006358 42562306a36Sopenharmony_ci * 42662306a36Sopenharmony_ci * If the ready bit in the transmit buffer descriptor (TxBD[R]) is previously 42762306a36Sopenharmony_ci * detected as not set during a prior frame transmission, then the 42862306a36Sopenharmony_ci * ENET_TDAR[TDAR] bit is cleared at a later time, even if additional TxBDs 42962306a36Sopenharmony_ci * were added to the ring and the ENET_TDAR[TDAR] bit is set. This results in 43062306a36Sopenharmony_ci * frames not being transmitted until there is a 0-to-1 transition on 43162306a36Sopenharmony_ci * ENET_TDAR[TDAR]. 43262306a36Sopenharmony_ci */ 43362306a36Sopenharmony_ci#define FEC_QUIRK_ERR006358 (1 << 7) 43462306a36Sopenharmony_ci/* ENET IP hw AVB 43562306a36Sopenharmony_ci * 43662306a36Sopenharmony_ci * i.MX6SX ENET IP add Audio Video Bridging (AVB) feature support. 43762306a36Sopenharmony_ci * - Two class indicators on receive with configurable priority 43862306a36Sopenharmony_ci * - Two class indicators and line speed timer on transmit allowing 43962306a36Sopenharmony_ci * implementation class credit based shapers externally 44062306a36Sopenharmony_ci * - Additional DMA registers provisioned to allow managing up to 3 44162306a36Sopenharmony_ci * independent rings 44262306a36Sopenharmony_ci */ 44362306a36Sopenharmony_ci#define FEC_QUIRK_HAS_AVB (1 << 8) 44462306a36Sopenharmony_ci/* There is a TDAR race condition for mutliQ when the software sets TDAR 44562306a36Sopenharmony_ci * and the UDMA clears TDAR simultaneously or in a small window (2-4 cycles). 44662306a36Sopenharmony_ci * This will cause the udma_tx and udma_tx_arbiter state machines to hang. 44762306a36Sopenharmony_ci * The issue exist at i.MX6SX enet IP. 44862306a36Sopenharmony_ci */ 44962306a36Sopenharmony_ci#define FEC_QUIRK_ERR007885 (1 << 9) 45062306a36Sopenharmony_ci/* ENET Block Guide/ Chapter for the iMX6SX (PELE) address one issue: 45162306a36Sopenharmony_ci * After set ENET_ATCR[Capture], there need some time cycles before the counter 45262306a36Sopenharmony_ci * value is capture in the register clock domain. 45362306a36Sopenharmony_ci * The wait-time-cycles is at least 6 clock cycles of the slower clock between 45462306a36Sopenharmony_ci * the register clock and the 1588 clock. The 1588 ts_clk is fixed to 25Mhz, 45562306a36Sopenharmony_ci * register clock is 66Mhz, so the wait-time-cycles must be greater than 240ns 45662306a36Sopenharmony_ci * (40ns * 6). 45762306a36Sopenharmony_ci */ 45862306a36Sopenharmony_ci#define FEC_QUIRK_BUG_CAPTURE (1 << 10) 45962306a36Sopenharmony_ci/* Controller has only one MDIO bus */ 46062306a36Sopenharmony_ci#define FEC_QUIRK_SINGLE_MDIO (1 << 11) 46162306a36Sopenharmony_ci/* Controller supports RACC register */ 46262306a36Sopenharmony_ci#define FEC_QUIRK_HAS_RACC (1 << 12) 46362306a36Sopenharmony_ci/* Controller supports interrupt coalesc */ 46462306a36Sopenharmony_ci#define FEC_QUIRK_HAS_COALESCE (1 << 13) 46562306a36Sopenharmony_ci/* Interrupt doesn't wake CPU from deep idle */ 46662306a36Sopenharmony_ci#define FEC_QUIRK_ERR006687 (1 << 14) 46762306a36Sopenharmony_ci/* The MIB counters should be cleared and enabled during 46862306a36Sopenharmony_ci * initialisation. 46962306a36Sopenharmony_ci */ 47062306a36Sopenharmony_ci#define FEC_QUIRK_MIB_CLEAR (1 << 15) 47162306a36Sopenharmony_ci/* Only i.MX25/i.MX27/i.MX28 controller supports FRBR,FRSR registers, 47262306a36Sopenharmony_ci * those FIFO receive registers are resolved in other platforms. 47362306a36Sopenharmony_ci */ 47462306a36Sopenharmony_ci#define FEC_QUIRK_HAS_FRREG (1 << 16) 47562306a36Sopenharmony_ci 47662306a36Sopenharmony_ci/* Some FEC hardware blocks need the MMFR cleared at setup time to avoid 47762306a36Sopenharmony_ci * the generation of an MII event. This must be avoided in the older 47862306a36Sopenharmony_ci * FEC blocks where it will stop MII events being generated. 47962306a36Sopenharmony_ci */ 48062306a36Sopenharmony_ci#define FEC_QUIRK_CLEAR_SETUP_MII (1 << 17) 48162306a36Sopenharmony_ci 48262306a36Sopenharmony_ci/* Some link partners do not tolerate the momentary reset of the REF_CLK 48362306a36Sopenharmony_ci * frequency when the RNCTL register is cleared by hardware reset. 48462306a36Sopenharmony_ci */ 48562306a36Sopenharmony_ci#define FEC_QUIRK_NO_HARD_RESET (1 << 18) 48662306a36Sopenharmony_ci 48762306a36Sopenharmony_ci/* i.MX6SX ENET IP supports multiple queues (3 queues), use this quirk to 48862306a36Sopenharmony_ci * represents this ENET IP. 48962306a36Sopenharmony_ci */ 49062306a36Sopenharmony_ci#define FEC_QUIRK_HAS_MULTI_QUEUES (1 << 19) 49162306a36Sopenharmony_ci 49262306a36Sopenharmony_ci/* i.MX8MQ ENET IP version add new feature to support IEEE 802.3az EEE 49362306a36Sopenharmony_ci * standard. For the transmission, MAC supply two user registers to set 49462306a36Sopenharmony_ci * Sleep (TS) and Wake (TW) time. 49562306a36Sopenharmony_ci */ 49662306a36Sopenharmony_ci#define FEC_QUIRK_HAS_EEE (1 << 20) 49762306a36Sopenharmony_ci 49862306a36Sopenharmony_ci/* i.MX8QM ENET IP version add new feture to generate delayed TXC/RXC 49962306a36Sopenharmony_ci * as an alternative option to make sure it works well with various PHYs. 50062306a36Sopenharmony_ci * For the implementation of delayed clock, ENET takes synchronized 250MHz 50162306a36Sopenharmony_ci * clocks to generate 2ns delay. 50262306a36Sopenharmony_ci */ 50362306a36Sopenharmony_ci#define FEC_QUIRK_DELAYED_CLKS_SUPPORT (1 << 21) 50462306a36Sopenharmony_ci 50562306a36Sopenharmony_ci/* i.MX8MQ SoC integration mix wakeup interrupt signal into "int2" interrupt line. */ 50662306a36Sopenharmony_ci#define FEC_QUIRK_WAKEUP_FROM_INT2 (1 << 22) 50762306a36Sopenharmony_ci 50862306a36Sopenharmony_ci/* i.MX6Q adds pm_qos support */ 50962306a36Sopenharmony_ci#define FEC_QUIRK_HAS_PMQOS BIT(23) 51062306a36Sopenharmony_ci 51162306a36Sopenharmony_ci/* Not all FEC hardware block MDIOs support accesses in C45 mode. 51262306a36Sopenharmony_ci * Older blocks in the ColdFire parts do not support it. 51362306a36Sopenharmony_ci */ 51462306a36Sopenharmony_ci#define FEC_QUIRK_HAS_MDIO_C45 BIT(24) 51562306a36Sopenharmony_ci 51662306a36Sopenharmony_cistruct bufdesc_prop { 51762306a36Sopenharmony_ci int qid; 51862306a36Sopenharmony_ci /* Address of Rx and Tx buffers */ 51962306a36Sopenharmony_ci struct bufdesc *base; 52062306a36Sopenharmony_ci struct bufdesc *last; 52162306a36Sopenharmony_ci struct bufdesc *cur; 52262306a36Sopenharmony_ci void __iomem *reg_desc_active; 52362306a36Sopenharmony_ci dma_addr_t dma; 52462306a36Sopenharmony_ci unsigned short ring_size; 52562306a36Sopenharmony_ci unsigned char dsize; 52662306a36Sopenharmony_ci unsigned char dsize_log2; 52762306a36Sopenharmony_ci}; 52862306a36Sopenharmony_ci 52962306a36Sopenharmony_cistruct fec_enet_priv_txrx_info { 53062306a36Sopenharmony_ci int offset; 53162306a36Sopenharmony_ci struct page *page; 53262306a36Sopenharmony_ci struct sk_buff *skb; 53362306a36Sopenharmony_ci}; 53462306a36Sopenharmony_ci 53562306a36Sopenharmony_cienum { 53662306a36Sopenharmony_ci RX_XDP_REDIRECT = 0, 53762306a36Sopenharmony_ci RX_XDP_PASS, 53862306a36Sopenharmony_ci RX_XDP_DROP, 53962306a36Sopenharmony_ci RX_XDP_TX, 54062306a36Sopenharmony_ci RX_XDP_TX_ERRORS, 54162306a36Sopenharmony_ci TX_XDP_XMIT, 54262306a36Sopenharmony_ci TX_XDP_XMIT_ERRORS, 54362306a36Sopenharmony_ci 54462306a36Sopenharmony_ci /* The following must be the last one */ 54562306a36Sopenharmony_ci XDP_STATS_TOTAL, 54662306a36Sopenharmony_ci}; 54762306a36Sopenharmony_ci 54862306a36Sopenharmony_cienum fec_txbuf_type { 54962306a36Sopenharmony_ci FEC_TXBUF_T_SKB, 55062306a36Sopenharmony_ci FEC_TXBUF_T_XDP_NDO, 55162306a36Sopenharmony_ci FEC_TXBUF_T_XDP_TX, 55262306a36Sopenharmony_ci}; 55362306a36Sopenharmony_ci 55462306a36Sopenharmony_cistruct fec_tx_buffer { 55562306a36Sopenharmony_ci void *buf_p; 55662306a36Sopenharmony_ci enum fec_txbuf_type type; 55762306a36Sopenharmony_ci}; 55862306a36Sopenharmony_ci 55962306a36Sopenharmony_cistruct fec_enet_priv_tx_q { 56062306a36Sopenharmony_ci struct bufdesc_prop bd; 56162306a36Sopenharmony_ci unsigned char *tx_bounce[TX_RING_SIZE]; 56262306a36Sopenharmony_ci struct fec_tx_buffer tx_buf[TX_RING_SIZE]; 56362306a36Sopenharmony_ci 56462306a36Sopenharmony_ci unsigned short tx_stop_threshold; 56562306a36Sopenharmony_ci unsigned short tx_wake_threshold; 56662306a36Sopenharmony_ci 56762306a36Sopenharmony_ci struct bufdesc *dirty_tx; 56862306a36Sopenharmony_ci char *tso_hdrs; 56962306a36Sopenharmony_ci dma_addr_t tso_hdrs_dma; 57062306a36Sopenharmony_ci}; 57162306a36Sopenharmony_ci 57262306a36Sopenharmony_cistruct fec_enet_priv_rx_q { 57362306a36Sopenharmony_ci struct bufdesc_prop bd; 57462306a36Sopenharmony_ci struct fec_enet_priv_txrx_info rx_skb_info[RX_RING_SIZE]; 57562306a36Sopenharmony_ci 57662306a36Sopenharmony_ci /* page_pool */ 57762306a36Sopenharmony_ci struct page_pool *page_pool; 57862306a36Sopenharmony_ci struct xdp_rxq_info xdp_rxq; 57962306a36Sopenharmony_ci u32 stats[XDP_STATS_TOTAL]; 58062306a36Sopenharmony_ci 58162306a36Sopenharmony_ci /* rx queue number, in the range 0-7 */ 58262306a36Sopenharmony_ci u8 id; 58362306a36Sopenharmony_ci}; 58462306a36Sopenharmony_ci 58562306a36Sopenharmony_cistruct fec_stop_mode_gpr { 58662306a36Sopenharmony_ci struct regmap *gpr; 58762306a36Sopenharmony_ci u8 reg; 58862306a36Sopenharmony_ci u8 bit; 58962306a36Sopenharmony_ci}; 59062306a36Sopenharmony_ci 59162306a36Sopenharmony_ci/* The FEC buffer descriptors track the ring buffers. The rx_bd_base and 59262306a36Sopenharmony_ci * tx_bd_base always point to the base of the buffer descriptors. The 59362306a36Sopenharmony_ci * cur_rx and cur_tx point to the currently available buffer. 59462306a36Sopenharmony_ci * The dirty_tx tracks the current buffer that is being sent by the 59562306a36Sopenharmony_ci * controller. The cur_tx and dirty_tx are equal under both completely 59662306a36Sopenharmony_ci * empty and completely full conditions. The empty/ready indicator in 59762306a36Sopenharmony_ci * the buffer descriptor determines the actual condition. 59862306a36Sopenharmony_ci */ 59962306a36Sopenharmony_cistruct fec_enet_private { 60062306a36Sopenharmony_ci /* Hardware registers of the FEC device */ 60162306a36Sopenharmony_ci void __iomem *hwp; 60262306a36Sopenharmony_ci 60362306a36Sopenharmony_ci struct net_device *netdev; 60462306a36Sopenharmony_ci 60562306a36Sopenharmony_ci struct clk *clk_ipg; 60662306a36Sopenharmony_ci struct clk *clk_ahb; 60762306a36Sopenharmony_ci struct clk *clk_ref; 60862306a36Sopenharmony_ci struct clk *clk_enet_out; 60962306a36Sopenharmony_ci struct clk *clk_ptp; 61062306a36Sopenharmony_ci struct clk *clk_2x_txclk; 61162306a36Sopenharmony_ci 61262306a36Sopenharmony_ci bool ptp_clk_on; 61362306a36Sopenharmony_ci struct mutex ptp_clk_mutex; 61462306a36Sopenharmony_ci unsigned int num_tx_queues; 61562306a36Sopenharmony_ci unsigned int num_rx_queues; 61662306a36Sopenharmony_ci 61762306a36Sopenharmony_ci /* The saved address of a sent-in-place packet/buffer, for skfree(). */ 61862306a36Sopenharmony_ci struct fec_enet_priv_tx_q *tx_queue[FEC_ENET_MAX_TX_QS]; 61962306a36Sopenharmony_ci struct fec_enet_priv_rx_q *rx_queue[FEC_ENET_MAX_RX_QS]; 62062306a36Sopenharmony_ci 62162306a36Sopenharmony_ci unsigned int total_tx_ring_size; 62262306a36Sopenharmony_ci unsigned int total_rx_ring_size; 62362306a36Sopenharmony_ci 62462306a36Sopenharmony_ci struct platform_device *pdev; 62562306a36Sopenharmony_ci 62662306a36Sopenharmony_ci int dev_id; 62762306a36Sopenharmony_ci 62862306a36Sopenharmony_ci /* Phylib and MDIO interface */ 62962306a36Sopenharmony_ci struct mii_bus *mii_bus; 63062306a36Sopenharmony_ci uint phy_speed; 63162306a36Sopenharmony_ci phy_interface_t phy_interface; 63262306a36Sopenharmony_ci struct device_node *phy_node; 63362306a36Sopenharmony_ci bool rgmii_txc_dly; 63462306a36Sopenharmony_ci bool rgmii_rxc_dly; 63562306a36Sopenharmony_ci bool rpm_active; 63662306a36Sopenharmony_ci int link; 63762306a36Sopenharmony_ci int full_duplex; 63862306a36Sopenharmony_ci int speed; 63962306a36Sopenharmony_ci int irq[FEC_IRQ_NUM]; 64062306a36Sopenharmony_ci bool bufdesc_ex; 64162306a36Sopenharmony_ci int pause_flag; 64262306a36Sopenharmony_ci int wol_flag; 64362306a36Sopenharmony_ci int wake_irq; 64462306a36Sopenharmony_ci u32 quirks; 64562306a36Sopenharmony_ci 64662306a36Sopenharmony_ci struct napi_struct napi; 64762306a36Sopenharmony_ci int csum_flags; 64862306a36Sopenharmony_ci 64962306a36Sopenharmony_ci struct work_struct tx_timeout_work; 65062306a36Sopenharmony_ci 65162306a36Sopenharmony_ci struct ptp_clock *ptp_clock; 65262306a36Sopenharmony_ci struct ptp_clock_info ptp_caps; 65362306a36Sopenharmony_ci spinlock_t tmreg_lock; 65462306a36Sopenharmony_ci struct cyclecounter cc; 65562306a36Sopenharmony_ci struct timecounter tc; 65662306a36Sopenharmony_ci u32 cycle_speed; 65762306a36Sopenharmony_ci int hwts_rx_en; 65862306a36Sopenharmony_ci int hwts_tx_en; 65962306a36Sopenharmony_ci struct delayed_work time_keep; 66062306a36Sopenharmony_ci struct regulator *reg_phy; 66162306a36Sopenharmony_ci struct fec_stop_mode_gpr stop_gpr; 66262306a36Sopenharmony_ci struct pm_qos_request pm_qos_req; 66362306a36Sopenharmony_ci 66462306a36Sopenharmony_ci unsigned int tx_align; 66562306a36Sopenharmony_ci unsigned int rx_align; 66662306a36Sopenharmony_ci 66762306a36Sopenharmony_ci /* hw interrupt coalesce */ 66862306a36Sopenharmony_ci unsigned int rx_pkts_itr; 66962306a36Sopenharmony_ci unsigned int rx_time_itr; 67062306a36Sopenharmony_ci unsigned int tx_pkts_itr; 67162306a36Sopenharmony_ci unsigned int tx_time_itr; 67262306a36Sopenharmony_ci unsigned int itr_clk_rate; 67362306a36Sopenharmony_ci 67462306a36Sopenharmony_ci /* tx lpi eee mode */ 67562306a36Sopenharmony_ci struct ethtool_eee eee; 67662306a36Sopenharmony_ci unsigned int clk_ref_rate; 67762306a36Sopenharmony_ci 67862306a36Sopenharmony_ci /* ptp clock period in ns*/ 67962306a36Sopenharmony_ci unsigned int ptp_inc; 68062306a36Sopenharmony_ci 68162306a36Sopenharmony_ci /* pps */ 68262306a36Sopenharmony_ci int pps_channel; 68362306a36Sopenharmony_ci unsigned int reload_period; 68462306a36Sopenharmony_ci int pps_enable; 68562306a36Sopenharmony_ci unsigned int next_counter; 68662306a36Sopenharmony_ci struct hrtimer perout_timer; 68762306a36Sopenharmony_ci u64 perout_stime; 68862306a36Sopenharmony_ci 68962306a36Sopenharmony_ci struct imx_sc_ipc *ipc_handle; 69062306a36Sopenharmony_ci 69162306a36Sopenharmony_ci /* XDP BPF Program */ 69262306a36Sopenharmony_ci struct bpf_prog *xdp_prog; 69362306a36Sopenharmony_ci 69462306a36Sopenharmony_ci u64 ethtool_stats[]; 69562306a36Sopenharmony_ci}; 69662306a36Sopenharmony_ci 69762306a36Sopenharmony_civoid fec_ptp_init(struct platform_device *pdev, int irq_idx); 69862306a36Sopenharmony_civoid fec_ptp_stop(struct platform_device *pdev); 69962306a36Sopenharmony_civoid fec_ptp_start_cyclecounter(struct net_device *ndev); 70062306a36Sopenharmony_ciint fec_ptp_set(struct net_device *ndev, struct kernel_hwtstamp_config *config, 70162306a36Sopenharmony_ci struct netlink_ext_ack *extack); 70262306a36Sopenharmony_civoid fec_ptp_get(struct net_device *ndev, struct kernel_hwtstamp_config *config); 70362306a36Sopenharmony_ci 70462306a36Sopenharmony_ci/****************************************************************************/ 70562306a36Sopenharmony_ci#endif /* FEC_H */ 706