18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */ 28c2ecf20Sopenharmony_ci/****************************************************************************/ 38c2ecf20Sopenharmony_ci 48c2ecf20Sopenharmony_ci/* 58c2ecf20Sopenharmony_ci * fec.h -- Fast Ethernet Controller for Motorola ColdFire SoC 68c2ecf20Sopenharmony_ci * processors. 78c2ecf20Sopenharmony_ci * 88c2ecf20Sopenharmony_ci * (C) Copyright 2000-2005, Greg Ungerer (gerg@snapgear.com) 98c2ecf20Sopenharmony_ci * (C) Copyright 2000-2001, Lineo (www.lineo.com) 108c2ecf20Sopenharmony_ci */ 118c2ecf20Sopenharmony_ci 128c2ecf20Sopenharmony_ci/****************************************************************************/ 138c2ecf20Sopenharmony_ci#ifndef FEC_H 148c2ecf20Sopenharmony_ci#define FEC_H 158c2ecf20Sopenharmony_ci/****************************************************************************/ 168c2ecf20Sopenharmony_ci 178c2ecf20Sopenharmony_ci#include <linux/clocksource.h> 188c2ecf20Sopenharmony_ci#include <linux/net_tstamp.h> 198c2ecf20Sopenharmony_ci#include <linux/ptp_clock_kernel.h> 208c2ecf20Sopenharmony_ci#include <linux/timecounter.h> 218c2ecf20Sopenharmony_ci 228c2ecf20Sopenharmony_ci#if defined(CONFIG_M523x) || defined(CONFIG_M527x) || defined(CONFIG_M528x) || \ 238c2ecf20Sopenharmony_ci defined(CONFIG_M520x) || defined(CONFIG_M532x) || defined(CONFIG_ARM) || \ 248c2ecf20Sopenharmony_ci defined(CONFIG_ARM64) || defined(CONFIG_COMPILE_TEST) 258c2ecf20Sopenharmony_ci/* 268c2ecf20Sopenharmony_ci * Just figures, Motorola would have to change the offsets for 278c2ecf20Sopenharmony_ci * registers in the same peripheral device on different models 288c2ecf20Sopenharmony_ci * of the ColdFire! 298c2ecf20Sopenharmony_ci */ 308c2ecf20Sopenharmony_ci#define FEC_IEVENT 0x004 /* Interrupt event reg */ 318c2ecf20Sopenharmony_ci#define FEC_IMASK 0x008 /* Interrupt mask reg */ 328c2ecf20Sopenharmony_ci#define FEC_R_DES_ACTIVE_0 0x010 /* Receive descriptor reg */ 338c2ecf20Sopenharmony_ci#define FEC_X_DES_ACTIVE_0 0x014 /* Transmit descriptor reg */ 348c2ecf20Sopenharmony_ci#define FEC_ECNTRL 0x024 /* Ethernet control reg */ 358c2ecf20Sopenharmony_ci#define FEC_MII_DATA 0x040 /* MII manage frame reg */ 368c2ecf20Sopenharmony_ci#define FEC_MII_SPEED 0x044 /* MII speed control reg */ 378c2ecf20Sopenharmony_ci#define FEC_MIB_CTRLSTAT 0x064 /* MIB control/status reg */ 388c2ecf20Sopenharmony_ci#define FEC_R_CNTRL 0x084 /* Receive control reg */ 398c2ecf20Sopenharmony_ci#define FEC_X_CNTRL 0x0c4 /* Transmit Control reg */ 408c2ecf20Sopenharmony_ci#define FEC_ADDR_LOW 0x0e4 /* Low 32bits MAC address */ 418c2ecf20Sopenharmony_ci#define FEC_ADDR_HIGH 0x0e8 /* High 16bits MAC address */ 428c2ecf20Sopenharmony_ci#define FEC_OPD 0x0ec /* Opcode + Pause duration */ 438c2ecf20Sopenharmony_ci#define FEC_TXIC0 0x0f0 /* Tx Interrupt Coalescing for ring 0 */ 448c2ecf20Sopenharmony_ci#define FEC_TXIC1 0x0f4 /* Tx Interrupt Coalescing for ring 1 */ 458c2ecf20Sopenharmony_ci#define FEC_TXIC2 0x0f8 /* Tx Interrupt Coalescing for ring 2 */ 468c2ecf20Sopenharmony_ci#define FEC_RXIC0 0x100 /* Rx Interrupt Coalescing for ring 0 */ 478c2ecf20Sopenharmony_ci#define FEC_RXIC1 0x104 /* Rx Interrupt Coalescing for ring 1 */ 488c2ecf20Sopenharmony_ci#define FEC_RXIC2 0x108 /* Rx Interrupt Coalescing for ring 2 */ 498c2ecf20Sopenharmony_ci#define FEC_HASH_TABLE_HIGH 0x118 /* High 32bits hash table */ 508c2ecf20Sopenharmony_ci#define FEC_HASH_TABLE_LOW 0x11c /* Low 32bits hash table */ 518c2ecf20Sopenharmony_ci#define FEC_GRP_HASH_TABLE_HIGH 0x120 /* High 32bits hash table */ 528c2ecf20Sopenharmony_ci#define FEC_GRP_HASH_TABLE_LOW 0x124 /* Low 32bits hash table */ 538c2ecf20Sopenharmony_ci#define FEC_X_WMRK 0x144 /* FIFO transmit water mark */ 548c2ecf20Sopenharmony_ci#define FEC_R_BOUND 0x14c /* FIFO receive bound reg */ 558c2ecf20Sopenharmony_ci#define FEC_R_FSTART 0x150 /* FIFO receive start reg */ 568c2ecf20Sopenharmony_ci#define FEC_R_DES_START_1 0x160 /* Receive descriptor ring 1 */ 578c2ecf20Sopenharmony_ci#define FEC_X_DES_START_1 0x164 /* Transmit descriptor ring 1 */ 588c2ecf20Sopenharmony_ci#define FEC_R_BUFF_SIZE_1 0x168 /* Maximum receive buff ring1 size */ 598c2ecf20Sopenharmony_ci#define FEC_R_DES_START_2 0x16c /* Receive descriptor ring 2 */ 608c2ecf20Sopenharmony_ci#define FEC_X_DES_START_2 0x170 /* Transmit descriptor ring 2 */ 618c2ecf20Sopenharmony_ci#define FEC_R_BUFF_SIZE_2 0x174 /* Maximum receive buff ring2 size */ 628c2ecf20Sopenharmony_ci#define FEC_R_DES_START_0 0x180 /* Receive descriptor ring */ 638c2ecf20Sopenharmony_ci#define FEC_X_DES_START_0 0x184 /* Transmit descriptor ring */ 648c2ecf20Sopenharmony_ci#define FEC_R_BUFF_SIZE_0 0x188 /* Maximum receive buff size */ 658c2ecf20Sopenharmony_ci#define FEC_R_FIFO_RSFL 0x190 /* Receive FIFO section full threshold */ 668c2ecf20Sopenharmony_ci#define FEC_R_FIFO_RSEM 0x194 /* Receive FIFO section empty threshold */ 678c2ecf20Sopenharmony_ci#define FEC_R_FIFO_RAEM 0x198 /* Receive FIFO almost empty threshold */ 688c2ecf20Sopenharmony_ci#define FEC_R_FIFO_RAFL 0x19c /* Receive FIFO almost full threshold */ 698c2ecf20Sopenharmony_ci#define FEC_FTRL 0x1b0 /* Frame truncation receive length*/ 708c2ecf20Sopenharmony_ci#define FEC_RACC 0x1c4 /* Receive Accelerator function */ 718c2ecf20Sopenharmony_ci#define FEC_RCMR_1 0x1c8 /* Receive classification match ring 1 */ 728c2ecf20Sopenharmony_ci#define FEC_RCMR_2 0x1cc /* Receive classification match ring 2 */ 738c2ecf20Sopenharmony_ci#define FEC_DMA_CFG_1 0x1d8 /* DMA class configuration for ring 1 */ 748c2ecf20Sopenharmony_ci#define FEC_DMA_CFG_2 0x1dc /* DMA class Configuration for ring 2 */ 758c2ecf20Sopenharmony_ci#define FEC_R_DES_ACTIVE_1 0x1e0 /* Rx descriptor active for ring 1 */ 768c2ecf20Sopenharmony_ci#define FEC_X_DES_ACTIVE_1 0x1e4 /* Tx descriptor active for ring 1 */ 778c2ecf20Sopenharmony_ci#define FEC_R_DES_ACTIVE_2 0x1e8 /* Rx descriptor active for ring 2 */ 788c2ecf20Sopenharmony_ci#define FEC_X_DES_ACTIVE_2 0x1ec /* Tx descriptor active for ring 2 */ 798c2ecf20Sopenharmony_ci#define FEC_QOS_SCHEME 0x1f0 /* Set multi queues Qos scheme */ 808c2ecf20Sopenharmony_ci#define FEC_MIIGSK_CFGR 0x300 /* MIIGSK Configuration reg */ 818c2ecf20Sopenharmony_ci#define FEC_MIIGSK_ENR 0x308 /* MIIGSK Enable reg */ 828c2ecf20Sopenharmony_ci 838c2ecf20Sopenharmony_ci#define BM_MIIGSK_CFGR_MII 0x00 848c2ecf20Sopenharmony_ci#define BM_MIIGSK_CFGR_RMII 0x01 858c2ecf20Sopenharmony_ci#define BM_MIIGSK_CFGR_FRCONT_10M 0x40 868c2ecf20Sopenharmony_ci 878c2ecf20Sopenharmony_ci#define RMON_T_DROP 0x200 /* Count of frames not cntd correctly */ 888c2ecf20Sopenharmony_ci#define RMON_T_PACKETS 0x204 /* RMON TX packet count */ 898c2ecf20Sopenharmony_ci#define RMON_T_BC_PKT 0x208 /* RMON TX broadcast pkts */ 908c2ecf20Sopenharmony_ci#define RMON_T_MC_PKT 0x20c /* RMON TX multicast pkts */ 918c2ecf20Sopenharmony_ci#define RMON_T_CRC_ALIGN 0x210 /* RMON TX pkts with CRC align err */ 928c2ecf20Sopenharmony_ci#define RMON_T_UNDERSIZE 0x214 /* RMON TX pkts < 64 bytes, good CRC */ 938c2ecf20Sopenharmony_ci#define RMON_T_OVERSIZE 0x218 /* RMON TX pkts > MAX_FL bytes good CRC */ 948c2ecf20Sopenharmony_ci#define RMON_T_FRAG 0x21c /* RMON TX pkts < 64 bytes, bad CRC */ 958c2ecf20Sopenharmony_ci#define RMON_T_JAB 0x220 /* RMON TX pkts > MAX_FL bytes, bad CRC */ 968c2ecf20Sopenharmony_ci#define RMON_T_COL 0x224 /* RMON TX collision count */ 978c2ecf20Sopenharmony_ci#define RMON_T_P64 0x228 /* RMON TX 64 byte pkts */ 988c2ecf20Sopenharmony_ci#define RMON_T_P65TO127 0x22c /* RMON TX 65 to 127 byte pkts */ 998c2ecf20Sopenharmony_ci#define RMON_T_P128TO255 0x230 /* RMON TX 128 to 255 byte pkts */ 1008c2ecf20Sopenharmony_ci#define RMON_T_P256TO511 0x234 /* RMON TX 256 to 511 byte pkts */ 1018c2ecf20Sopenharmony_ci#define RMON_T_P512TO1023 0x238 /* RMON TX 512 to 1023 byte pkts */ 1028c2ecf20Sopenharmony_ci#define RMON_T_P1024TO2047 0x23c /* RMON TX 1024 to 2047 byte pkts */ 1038c2ecf20Sopenharmony_ci#define RMON_T_P_GTE2048 0x240 /* RMON TX pkts > 2048 bytes */ 1048c2ecf20Sopenharmony_ci#define RMON_T_OCTETS 0x244 /* RMON TX octets */ 1058c2ecf20Sopenharmony_ci#define IEEE_T_DROP 0x248 /* Count of frames not counted crtly */ 1068c2ecf20Sopenharmony_ci#define IEEE_T_FRAME_OK 0x24c /* Frames tx'd OK */ 1078c2ecf20Sopenharmony_ci#define IEEE_T_1COL 0x250 /* Frames tx'd with single collision */ 1088c2ecf20Sopenharmony_ci#define IEEE_T_MCOL 0x254 /* Frames tx'd with multiple collision */ 1098c2ecf20Sopenharmony_ci#define IEEE_T_DEF 0x258 /* Frames tx'd after deferral delay */ 1108c2ecf20Sopenharmony_ci#define IEEE_T_LCOL 0x25c /* Frames tx'd with late collision */ 1118c2ecf20Sopenharmony_ci#define IEEE_T_EXCOL 0x260 /* Frames tx'd with excesv collisions */ 1128c2ecf20Sopenharmony_ci#define IEEE_T_MACERR 0x264 /* Frames tx'd with TX FIFO underrun */ 1138c2ecf20Sopenharmony_ci#define IEEE_T_CSERR 0x268 /* Frames tx'd with carrier sense err */ 1148c2ecf20Sopenharmony_ci#define IEEE_T_SQE 0x26c /* Frames tx'd with SQE err */ 1158c2ecf20Sopenharmony_ci#define IEEE_T_FDXFC 0x270 /* Flow control pause frames tx'd */ 1168c2ecf20Sopenharmony_ci#define IEEE_T_OCTETS_OK 0x274 /* Octet count for frames tx'd w/o err */ 1178c2ecf20Sopenharmony_ci#define RMON_R_PACKETS 0x284 /* RMON RX packet count */ 1188c2ecf20Sopenharmony_ci#define RMON_R_BC_PKT 0x288 /* RMON RX broadcast pkts */ 1198c2ecf20Sopenharmony_ci#define RMON_R_MC_PKT 0x28c /* RMON RX multicast pkts */ 1208c2ecf20Sopenharmony_ci#define RMON_R_CRC_ALIGN 0x290 /* RMON RX pkts with CRC alignment err */ 1218c2ecf20Sopenharmony_ci#define RMON_R_UNDERSIZE 0x294 /* RMON RX pkts < 64 bytes, good CRC */ 1228c2ecf20Sopenharmony_ci#define RMON_R_OVERSIZE 0x298 /* RMON RX pkts > MAX_FL bytes good CRC */ 1238c2ecf20Sopenharmony_ci#define RMON_R_FRAG 0x29c /* RMON RX pkts < 64 bytes, bad CRC */ 1248c2ecf20Sopenharmony_ci#define RMON_R_JAB 0x2a0 /* RMON RX pkts > MAX_FL bytes, bad CRC */ 1258c2ecf20Sopenharmony_ci#define RMON_R_RESVD_O 0x2a4 /* Reserved */ 1268c2ecf20Sopenharmony_ci#define RMON_R_P64 0x2a8 /* RMON RX 64 byte pkts */ 1278c2ecf20Sopenharmony_ci#define RMON_R_P65TO127 0x2ac /* RMON RX 65 to 127 byte pkts */ 1288c2ecf20Sopenharmony_ci#define RMON_R_P128TO255 0x2b0 /* RMON RX 128 to 255 byte pkts */ 1298c2ecf20Sopenharmony_ci#define RMON_R_P256TO511 0x2b4 /* RMON RX 256 to 511 byte pkts */ 1308c2ecf20Sopenharmony_ci#define RMON_R_P512TO1023 0x2b8 /* RMON RX 512 to 1023 byte pkts */ 1318c2ecf20Sopenharmony_ci#define RMON_R_P1024TO2047 0x2bc /* RMON RX 1024 to 2047 byte pkts */ 1328c2ecf20Sopenharmony_ci#define RMON_R_P_GTE2048 0x2c0 /* RMON RX pkts > 2048 bytes */ 1338c2ecf20Sopenharmony_ci#define RMON_R_OCTETS 0x2c4 /* RMON RX octets */ 1348c2ecf20Sopenharmony_ci#define IEEE_R_DROP 0x2c8 /* Count frames not counted correctly */ 1358c2ecf20Sopenharmony_ci#define IEEE_R_FRAME_OK 0x2cc /* Frames rx'd OK */ 1368c2ecf20Sopenharmony_ci#define IEEE_R_CRC 0x2d0 /* Frames rx'd with CRC err */ 1378c2ecf20Sopenharmony_ci#define IEEE_R_ALIGN 0x2d4 /* Frames rx'd with alignment err */ 1388c2ecf20Sopenharmony_ci#define IEEE_R_MACERR 0x2d8 /* Receive FIFO overflow count */ 1398c2ecf20Sopenharmony_ci#define IEEE_R_FDXFC 0x2dc /* Flow control pause frames rx'd */ 1408c2ecf20Sopenharmony_ci#define IEEE_R_OCTETS_OK 0x2e0 /* Octet cnt for frames rx'd w/o err */ 1418c2ecf20Sopenharmony_ci 1428c2ecf20Sopenharmony_ci#else 1438c2ecf20Sopenharmony_ci 1448c2ecf20Sopenharmony_ci#define FEC_ECNTRL 0x000 /* Ethernet control reg */ 1458c2ecf20Sopenharmony_ci#define FEC_IEVENT 0x004 /* Interrupt even reg */ 1468c2ecf20Sopenharmony_ci#define FEC_IMASK 0x008 /* Interrupt mask reg */ 1478c2ecf20Sopenharmony_ci#define FEC_IVEC 0x00c /* Interrupt vec status reg */ 1488c2ecf20Sopenharmony_ci#define FEC_R_DES_ACTIVE_0 0x010 /* Receive descriptor reg */ 1498c2ecf20Sopenharmony_ci#define FEC_R_DES_ACTIVE_1 FEC_R_DES_ACTIVE_0 1508c2ecf20Sopenharmony_ci#define FEC_R_DES_ACTIVE_2 FEC_R_DES_ACTIVE_0 1518c2ecf20Sopenharmony_ci#define FEC_X_DES_ACTIVE_0 0x014 /* Transmit descriptor reg */ 1528c2ecf20Sopenharmony_ci#define FEC_X_DES_ACTIVE_1 FEC_X_DES_ACTIVE_0 1538c2ecf20Sopenharmony_ci#define FEC_X_DES_ACTIVE_2 FEC_X_DES_ACTIVE_0 1548c2ecf20Sopenharmony_ci#define FEC_MII_DATA 0x040 /* MII manage frame reg */ 1558c2ecf20Sopenharmony_ci#define FEC_MII_SPEED 0x044 /* MII speed control reg */ 1568c2ecf20Sopenharmony_ci#define FEC_R_BOUND 0x08c /* FIFO receive bound reg */ 1578c2ecf20Sopenharmony_ci#define FEC_R_FSTART 0x090 /* FIFO receive start reg */ 1588c2ecf20Sopenharmony_ci#define FEC_X_WMRK 0x0a4 /* FIFO transmit water mark */ 1598c2ecf20Sopenharmony_ci#define FEC_X_FSTART 0x0ac /* FIFO transmit start reg */ 1608c2ecf20Sopenharmony_ci#define FEC_R_CNTRL 0x104 /* Receive control reg */ 1618c2ecf20Sopenharmony_ci#define FEC_MAX_FRM_LEN 0x108 /* Maximum frame length reg */ 1628c2ecf20Sopenharmony_ci#define FEC_X_CNTRL 0x144 /* Transmit Control reg */ 1638c2ecf20Sopenharmony_ci#define FEC_ADDR_LOW 0x3c0 /* Low 32bits MAC address */ 1648c2ecf20Sopenharmony_ci#define FEC_ADDR_HIGH 0x3c4 /* High 16bits MAC address */ 1658c2ecf20Sopenharmony_ci#define FEC_GRP_HASH_TABLE_HIGH 0x3c8 /* High 32bits hash table */ 1668c2ecf20Sopenharmony_ci#define FEC_GRP_HASH_TABLE_LOW 0x3cc /* Low 32bits hash table */ 1678c2ecf20Sopenharmony_ci#define FEC_R_DES_START_0 0x3d0 /* Receive descriptor ring */ 1688c2ecf20Sopenharmony_ci#define FEC_R_DES_START_1 FEC_R_DES_START_0 1698c2ecf20Sopenharmony_ci#define FEC_R_DES_START_2 FEC_R_DES_START_0 1708c2ecf20Sopenharmony_ci#define FEC_X_DES_START_0 0x3d4 /* Transmit descriptor ring */ 1718c2ecf20Sopenharmony_ci#define FEC_X_DES_START_1 FEC_X_DES_START_0 1728c2ecf20Sopenharmony_ci#define FEC_X_DES_START_2 FEC_X_DES_START_0 1738c2ecf20Sopenharmony_ci#define FEC_R_BUFF_SIZE_0 0x3d8 /* Maximum receive buff size */ 1748c2ecf20Sopenharmony_ci#define FEC_R_BUFF_SIZE_1 FEC_R_BUFF_SIZE_0 1758c2ecf20Sopenharmony_ci#define FEC_R_BUFF_SIZE_2 FEC_R_BUFF_SIZE_0 1768c2ecf20Sopenharmony_ci#define FEC_FIFO_RAM 0x400 /* FIFO RAM buffer */ 1778c2ecf20Sopenharmony_ci/* Not existed in real chip 1788c2ecf20Sopenharmony_ci * Just for pass build. 1798c2ecf20Sopenharmony_ci */ 1808c2ecf20Sopenharmony_ci#define FEC_RCMR_1 0xfff 1818c2ecf20Sopenharmony_ci#define FEC_RCMR_2 0xfff 1828c2ecf20Sopenharmony_ci#define FEC_DMA_CFG_1 0xfff 1838c2ecf20Sopenharmony_ci#define FEC_DMA_CFG_2 0xfff 1848c2ecf20Sopenharmony_ci#define FEC_TXIC0 0xfff 1858c2ecf20Sopenharmony_ci#define FEC_TXIC1 0xfff 1868c2ecf20Sopenharmony_ci#define FEC_TXIC2 0xfff 1878c2ecf20Sopenharmony_ci#define FEC_RXIC0 0xfff 1888c2ecf20Sopenharmony_ci#define FEC_RXIC1 0xfff 1898c2ecf20Sopenharmony_ci#define FEC_RXIC2 0xfff 1908c2ecf20Sopenharmony_ci#endif /* CONFIG_M5272 */ 1918c2ecf20Sopenharmony_ci 1928c2ecf20Sopenharmony_ci 1938c2ecf20Sopenharmony_ci/* 1948c2ecf20Sopenharmony_ci * Define the buffer descriptor structure. 1958c2ecf20Sopenharmony_ci * 1968c2ecf20Sopenharmony_ci * Evidently, ARM SoCs have the FEC block generated in a 1978c2ecf20Sopenharmony_ci * little endian mode so adjust endianness accordingly. 1988c2ecf20Sopenharmony_ci */ 1998c2ecf20Sopenharmony_ci#if defined(CONFIG_ARM) || defined(CONFIG_ARM64) 2008c2ecf20Sopenharmony_ci#define fec32_to_cpu le32_to_cpu 2018c2ecf20Sopenharmony_ci#define fec16_to_cpu le16_to_cpu 2028c2ecf20Sopenharmony_ci#define cpu_to_fec32 cpu_to_le32 2038c2ecf20Sopenharmony_ci#define cpu_to_fec16 cpu_to_le16 2048c2ecf20Sopenharmony_ci#define __fec32 __le32 2058c2ecf20Sopenharmony_ci#define __fec16 __le16 2068c2ecf20Sopenharmony_ci 2078c2ecf20Sopenharmony_cistruct bufdesc { 2088c2ecf20Sopenharmony_ci __fec16 cbd_datlen; /* Data length */ 2098c2ecf20Sopenharmony_ci __fec16 cbd_sc; /* Control and status info */ 2108c2ecf20Sopenharmony_ci __fec32 cbd_bufaddr; /* Buffer address */ 2118c2ecf20Sopenharmony_ci}; 2128c2ecf20Sopenharmony_ci#else 2138c2ecf20Sopenharmony_ci#define fec32_to_cpu be32_to_cpu 2148c2ecf20Sopenharmony_ci#define fec16_to_cpu be16_to_cpu 2158c2ecf20Sopenharmony_ci#define cpu_to_fec32 cpu_to_be32 2168c2ecf20Sopenharmony_ci#define cpu_to_fec16 cpu_to_be16 2178c2ecf20Sopenharmony_ci#define __fec32 __be32 2188c2ecf20Sopenharmony_ci#define __fec16 __be16 2198c2ecf20Sopenharmony_ci 2208c2ecf20Sopenharmony_cistruct bufdesc { 2218c2ecf20Sopenharmony_ci __fec16 cbd_sc; /* Control and status info */ 2228c2ecf20Sopenharmony_ci __fec16 cbd_datlen; /* Data length */ 2238c2ecf20Sopenharmony_ci __fec32 cbd_bufaddr; /* Buffer address */ 2248c2ecf20Sopenharmony_ci}; 2258c2ecf20Sopenharmony_ci#endif 2268c2ecf20Sopenharmony_ci 2278c2ecf20Sopenharmony_cistruct bufdesc_ex { 2288c2ecf20Sopenharmony_ci struct bufdesc desc; 2298c2ecf20Sopenharmony_ci __fec32 cbd_esc; 2308c2ecf20Sopenharmony_ci __fec32 cbd_prot; 2318c2ecf20Sopenharmony_ci __fec32 cbd_bdu; 2328c2ecf20Sopenharmony_ci __fec32 ts; 2338c2ecf20Sopenharmony_ci __fec16 res0[4]; 2348c2ecf20Sopenharmony_ci}; 2358c2ecf20Sopenharmony_ci 2368c2ecf20Sopenharmony_ci/* 2378c2ecf20Sopenharmony_ci * The following definitions courtesy of commproc.h, which where 2388c2ecf20Sopenharmony_ci * Copyright (c) 1997 Dan Malek (dmalek@jlc.net). 2398c2ecf20Sopenharmony_ci */ 2408c2ecf20Sopenharmony_ci#define BD_SC_EMPTY ((ushort)0x8000) /* Receive is empty */ 2418c2ecf20Sopenharmony_ci#define BD_SC_READY ((ushort)0x8000) /* Transmit is ready */ 2428c2ecf20Sopenharmony_ci#define BD_SC_WRAP ((ushort)0x2000) /* Last buffer descriptor */ 2438c2ecf20Sopenharmony_ci#define BD_SC_INTRPT ((ushort)0x1000) /* Interrupt on change */ 2448c2ecf20Sopenharmony_ci#define BD_SC_CM ((ushort)0x0200) /* Continuous mode */ 2458c2ecf20Sopenharmony_ci#define BD_SC_ID ((ushort)0x0100) /* Rec'd too many idles */ 2468c2ecf20Sopenharmony_ci#define BD_SC_P ((ushort)0x0100) /* xmt preamble */ 2478c2ecf20Sopenharmony_ci#define BD_SC_BR ((ushort)0x0020) /* Break received */ 2488c2ecf20Sopenharmony_ci#define BD_SC_FR ((ushort)0x0010) /* Framing error */ 2498c2ecf20Sopenharmony_ci#define BD_SC_PR ((ushort)0x0008) /* Parity error */ 2508c2ecf20Sopenharmony_ci#define BD_SC_OV ((ushort)0x0002) /* Overrun */ 2518c2ecf20Sopenharmony_ci#define BD_SC_CD ((ushort)0x0001) /* ?? */ 2528c2ecf20Sopenharmony_ci 2538c2ecf20Sopenharmony_ci/* Buffer descriptor control/status used by Ethernet receive. 2548c2ecf20Sopenharmony_ci */ 2558c2ecf20Sopenharmony_ci#define BD_ENET_RX_EMPTY ((ushort)0x8000) 2568c2ecf20Sopenharmony_ci#define BD_ENET_RX_WRAP ((ushort)0x2000) 2578c2ecf20Sopenharmony_ci#define BD_ENET_RX_INTR ((ushort)0x1000) 2588c2ecf20Sopenharmony_ci#define BD_ENET_RX_LAST ((ushort)0x0800) 2598c2ecf20Sopenharmony_ci#define BD_ENET_RX_FIRST ((ushort)0x0400) 2608c2ecf20Sopenharmony_ci#define BD_ENET_RX_MISS ((ushort)0x0100) 2618c2ecf20Sopenharmony_ci#define BD_ENET_RX_LG ((ushort)0x0020) 2628c2ecf20Sopenharmony_ci#define BD_ENET_RX_NO ((ushort)0x0010) 2638c2ecf20Sopenharmony_ci#define BD_ENET_RX_SH ((ushort)0x0008) 2648c2ecf20Sopenharmony_ci#define BD_ENET_RX_CR ((ushort)0x0004) 2658c2ecf20Sopenharmony_ci#define BD_ENET_RX_OV ((ushort)0x0002) 2668c2ecf20Sopenharmony_ci#define BD_ENET_RX_CL ((ushort)0x0001) 2678c2ecf20Sopenharmony_ci#define BD_ENET_RX_STATS ((ushort)0x013f) /* All status bits */ 2688c2ecf20Sopenharmony_ci 2698c2ecf20Sopenharmony_ci/* Enhanced buffer descriptor control/status used by Ethernet receive */ 2708c2ecf20Sopenharmony_ci#define BD_ENET_RX_VLAN 0x00000004 2718c2ecf20Sopenharmony_ci 2728c2ecf20Sopenharmony_ci/* Buffer descriptor control/status used by Ethernet transmit. 2738c2ecf20Sopenharmony_ci */ 2748c2ecf20Sopenharmony_ci#define BD_ENET_TX_READY ((ushort)0x8000) 2758c2ecf20Sopenharmony_ci#define BD_ENET_TX_PAD ((ushort)0x4000) 2768c2ecf20Sopenharmony_ci#define BD_ENET_TX_WRAP ((ushort)0x2000) 2778c2ecf20Sopenharmony_ci#define BD_ENET_TX_INTR ((ushort)0x1000) 2788c2ecf20Sopenharmony_ci#define BD_ENET_TX_LAST ((ushort)0x0800) 2798c2ecf20Sopenharmony_ci#define BD_ENET_TX_TC ((ushort)0x0400) 2808c2ecf20Sopenharmony_ci#define BD_ENET_TX_DEF ((ushort)0x0200) 2818c2ecf20Sopenharmony_ci#define BD_ENET_TX_HB ((ushort)0x0100) 2828c2ecf20Sopenharmony_ci#define BD_ENET_TX_LC ((ushort)0x0080) 2838c2ecf20Sopenharmony_ci#define BD_ENET_TX_RL ((ushort)0x0040) 2848c2ecf20Sopenharmony_ci#define BD_ENET_TX_RCMASK ((ushort)0x003c) 2858c2ecf20Sopenharmony_ci#define BD_ENET_TX_UN ((ushort)0x0002) 2868c2ecf20Sopenharmony_ci#define BD_ENET_TX_CSL ((ushort)0x0001) 2878c2ecf20Sopenharmony_ci#define BD_ENET_TX_STATS ((ushort)0x0fff) /* All status bits */ 2888c2ecf20Sopenharmony_ci 2898c2ecf20Sopenharmony_ci/* enhanced buffer descriptor control/status used by Ethernet transmit */ 2908c2ecf20Sopenharmony_ci#define BD_ENET_TX_INT 0x40000000 2918c2ecf20Sopenharmony_ci#define BD_ENET_TX_TS 0x20000000 2928c2ecf20Sopenharmony_ci#define BD_ENET_TX_PINS 0x10000000 2938c2ecf20Sopenharmony_ci#define BD_ENET_TX_IINS 0x08000000 2948c2ecf20Sopenharmony_ci 2958c2ecf20Sopenharmony_ci 2968c2ecf20Sopenharmony_ci/* This device has up to three irqs on some platforms */ 2978c2ecf20Sopenharmony_ci#define FEC_IRQ_NUM 3 2988c2ecf20Sopenharmony_ci 2998c2ecf20Sopenharmony_ci/* Maximum number of queues supported 3008c2ecf20Sopenharmony_ci * ENET with AVB IP can support up to 3 independent tx queues and rx queues. 3018c2ecf20Sopenharmony_ci * User can point the queue number that is less than or equal to 3. 3028c2ecf20Sopenharmony_ci */ 3038c2ecf20Sopenharmony_ci#define FEC_ENET_MAX_TX_QS 3 3048c2ecf20Sopenharmony_ci#define FEC_ENET_MAX_RX_QS 3 3058c2ecf20Sopenharmony_ci 3068c2ecf20Sopenharmony_ci#define FEC_R_DES_START(X) (((X) == 1) ? FEC_R_DES_START_1 : \ 3078c2ecf20Sopenharmony_ci (((X) == 2) ? \ 3088c2ecf20Sopenharmony_ci FEC_R_DES_START_2 : FEC_R_DES_START_0)) 3098c2ecf20Sopenharmony_ci#define FEC_X_DES_START(X) (((X) == 1) ? FEC_X_DES_START_1 : \ 3108c2ecf20Sopenharmony_ci (((X) == 2) ? \ 3118c2ecf20Sopenharmony_ci FEC_X_DES_START_2 : FEC_X_DES_START_0)) 3128c2ecf20Sopenharmony_ci#define FEC_R_BUFF_SIZE(X) (((X) == 1) ? FEC_R_BUFF_SIZE_1 : \ 3138c2ecf20Sopenharmony_ci (((X) == 2) ? \ 3148c2ecf20Sopenharmony_ci FEC_R_BUFF_SIZE_2 : FEC_R_BUFF_SIZE_0)) 3158c2ecf20Sopenharmony_ci 3168c2ecf20Sopenharmony_ci#define FEC_DMA_CFG(X) (((X) == 2) ? FEC_DMA_CFG_2 : FEC_DMA_CFG_1) 3178c2ecf20Sopenharmony_ci 3188c2ecf20Sopenharmony_ci#define DMA_CLASS_EN (1 << 16) 3198c2ecf20Sopenharmony_ci#define FEC_RCMR(X) (((X) == 2) ? FEC_RCMR_2 : FEC_RCMR_1) 3208c2ecf20Sopenharmony_ci#define IDLE_SLOPE_MASK 0xffff 3218c2ecf20Sopenharmony_ci#define IDLE_SLOPE_1 0x200 /* BW fraction: 0.5 */ 3228c2ecf20Sopenharmony_ci#define IDLE_SLOPE_2 0x200 /* BW fraction: 0.5 */ 3238c2ecf20Sopenharmony_ci#define IDLE_SLOPE(X) (((X) == 1) ? \ 3248c2ecf20Sopenharmony_ci (IDLE_SLOPE_1 & IDLE_SLOPE_MASK) : \ 3258c2ecf20Sopenharmony_ci (IDLE_SLOPE_2 & IDLE_SLOPE_MASK)) 3268c2ecf20Sopenharmony_ci#define RCMR_MATCHEN (0x1 << 16) 3278c2ecf20Sopenharmony_ci#define RCMR_CMP_CFG(v, n) (((v) & 0x7) << (n << 2)) 3288c2ecf20Sopenharmony_ci#define RCMR_CMP_1 (RCMR_CMP_CFG(0, 0) | RCMR_CMP_CFG(1, 1) | \ 3298c2ecf20Sopenharmony_ci RCMR_CMP_CFG(2, 2) | RCMR_CMP_CFG(3, 3)) 3308c2ecf20Sopenharmony_ci#define RCMR_CMP_2 (RCMR_CMP_CFG(4, 0) | RCMR_CMP_CFG(5, 1) | \ 3318c2ecf20Sopenharmony_ci RCMR_CMP_CFG(6, 2) | RCMR_CMP_CFG(7, 3)) 3328c2ecf20Sopenharmony_ci#define RCMR_CMP(X) (((X) == 1) ? RCMR_CMP_1 : RCMR_CMP_2) 3338c2ecf20Sopenharmony_ci#define FEC_TX_BD_FTYPE(X) (((X) & 0xf) << 20) 3348c2ecf20Sopenharmony_ci 3358c2ecf20Sopenharmony_ci/* The number of Tx and Rx buffers. These are allocated from the page 3368c2ecf20Sopenharmony_ci * pool. The code may assume these are power of two, so it it best 3378c2ecf20Sopenharmony_ci * to keep them that size. 3388c2ecf20Sopenharmony_ci * We don't need to allocate pages for the transmitter. We just use 3398c2ecf20Sopenharmony_ci * the skbuffer directly. 3408c2ecf20Sopenharmony_ci */ 3418c2ecf20Sopenharmony_ci 3428c2ecf20Sopenharmony_ci#define FEC_ENET_RX_PAGES 256 3438c2ecf20Sopenharmony_ci#define FEC_ENET_RX_FRSIZE 2048 3448c2ecf20Sopenharmony_ci#define FEC_ENET_RX_FRPPG (PAGE_SIZE / FEC_ENET_RX_FRSIZE) 3458c2ecf20Sopenharmony_ci#define RX_RING_SIZE (FEC_ENET_RX_FRPPG * FEC_ENET_RX_PAGES) 3468c2ecf20Sopenharmony_ci#define FEC_ENET_TX_FRSIZE 2048 3478c2ecf20Sopenharmony_ci#define FEC_ENET_TX_FRPPG (PAGE_SIZE / FEC_ENET_TX_FRSIZE) 3488c2ecf20Sopenharmony_ci#define TX_RING_SIZE 512 /* Must be power of two */ 3498c2ecf20Sopenharmony_ci#define TX_RING_MOD_MASK 511 /* for this to work */ 3508c2ecf20Sopenharmony_ci 3518c2ecf20Sopenharmony_ci#define BD_ENET_RX_INT 0x00800000 3528c2ecf20Sopenharmony_ci#define BD_ENET_RX_PTP ((ushort)0x0400) 3538c2ecf20Sopenharmony_ci#define BD_ENET_RX_ICE 0x00000020 3548c2ecf20Sopenharmony_ci#define BD_ENET_RX_PCR 0x00000010 3558c2ecf20Sopenharmony_ci#define FLAG_RX_CSUM_ENABLED (BD_ENET_RX_ICE | BD_ENET_RX_PCR) 3568c2ecf20Sopenharmony_ci#define FLAG_RX_CSUM_ERROR (BD_ENET_RX_ICE | BD_ENET_RX_PCR) 3578c2ecf20Sopenharmony_ci 3588c2ecf20Sopenharmony_ci/* Interrupt events/masks. */ 3598c2ecf20Sopenharmony_ci#define FEC_ENET_HBERR ((uint)0x80000000) /* Heartbeat error */ 3608c2ecf20Sopenharmony_ci#define FEC_ENET_BABR ((uint)0x40000000) /* Babbling receiver */ 3618c2ecf20Sopenharmony_ci#define FEC_ENET_BABT ((uint)0x20000000) /* Babbling transmitter */ 3628c2ecf20Sopenharmony_ci#define FEC_ENET_GRA ((uint)0x10000000) /* Graceful stop complete */ 3638c2ecf20Sopenharmony_ci#define FEC_ENET_TXF_0 ((uint)0x08000000) /* Full frame transmitted */ 3648c2ecf20Sopenharmony_ci#define FEC_ENET_TXF_1 ((uint)0x00000008) /* Full frame transmitted */ 3658c2ecf20Sopenharmony_ci#define FEC_ENET_TXF_2 ((uint)0x00000080) /* Full frame transmitted */ 3668c2ecf20Sopenharmony_ci#define FEC_ENET_TXB ((uint)0x04000000) /* A buffer was transmitted */ 3678c2ecf20Sopenharmony_ci#define FEC_ENET_RXF_0 ((uint)0x02000000) /* Full frame received */ 3688c2ecf20Sopenharmony_ci#define FEC_ENET_RXF_1 ((uint)0x00000002) /* Full frame received */ 3698c2ecf20Sopenharmony_ci#define FEC_ENET_RXF_2 ((uint)0x00000020) /* Full frame received */ 3708c2ecf20Sopenharmony_ci#define FEC_ENET_RXB ((uint)0x01000000) /* A buffer was received */ 3718c2ecf20Sopenharmony_ci#define FEC_ENET_MII ((uint)0x00800000) /* MII interrupt */ 3728c2ecf20Sopenharmony_ci#define FEC_ENET_EBERR ((uint)0x00400000) /* SDMA bus error */ 3738c2ecf20Sopenharmony_ci#define FEC_ENET_WAKEUP ((uint)0x00020000) /* Wakeup request */ 3748c2ecf20Sopenharmony_ci#define FEC_ENET_TXF (FEC_ENET_TXF_0 | FEC_ENET_TXF_1 | FEC_ENET_TXF_2) 3758c2ecf20Sopenharmony_ci#define FEC_ENET_RXF (FEC_ENET_RXF_0 | FEC_ENET_RXF_1 | FEC_ENET_RXF_2) 3768c2ecf20Sopenharmony_ci#define FEC_ENET_RXF_GET(X) (((X) == 0) ? FEC_ENET_RXF_0 : \ 3778c2ecf20Sopenharmony_ci (((X) == 1) ? FEC_ENET_RXF_1 : \ 3788c2ecf20Sopenharmony_ci FEC_ENET_RXF_2)) 3798c2ecf20Sopenharmony_ci#define FEC_ENET_TS_AVAIL ((uint)0x00010000) 3808c2ecf20Sopenharmony_ci#define FEC_ENET_TS_TIMER ((uint)0x00008000) 3818c2ecf20Sopenharmony_ci 3828c2ecf20Sopenharmony_ci#define FEC_DEFAULT_IMASK (FEC_ENET_TXF | FEC_ENET_RXF) 3838c2ecf20Sopenharmony_ci#define FEC_RX_DISABLED_IMASK (FEC_DEFAULT_IMASK & (~FEC_ENET_RXF)) 3848c2ecf20Sopenharmony_ci 3858c2ecf20Sopenharmony_ci/* ENET interrupt coalescing macro define */ 3868c2ecf20Sopenharmony_ci#define FEC_ITR_CLK_SEL (0x1 << 30) 3878c2ecf20Sopenharmony_ci#define FEC_ITR_EN (0x1 << 31) 3888c2ecf20Sopenharmony_ci#define FEC_ITR_ICFT(X) (((X) & 0xff) << 20) 3898c2ecf20Sopenharmony_ci#define FEC_ITR_ICTT(X) ((X) & 0xffff) 3908c2ecf20Sopenharmony_ci#define FEC_ITR_ICFT_DEFAULT 200 /* Set 200 frame count threshold */ 3918c2ecf20Sopenharmony_ci#define FEC_ITR_ICTT_DEFAULT 1000 /* Set 1000us timer threshold */ 3928c2ecf20Sopenharmony_ci 3938c2ecf20Sopenharmony_ci#define FEC_VLAN_TAG_LEN 0x04 3948c2ecf20Sopenharmony_ci#define FEC_ETHTYPE_LEN 0x02 3958c2ecf20Sopenharmony_ci 3968c2ecf20Sopenharmony_ci/* Controller is ENET-MAC */ 3978c2ecf20Sopenharmony_ci#define FEC_QUIRK_ENET_MAC (1 << 0) 3988c2ecf20Sopenharmony_ci/* Controller needs driver to swap frame */ 3998c2ecf20Sopenharmony_ci#define FEC_QUIRK_SWAP_FRAME (1 << 1) 4008c2ecf20Sopenharmony_ci/* Controller uses gasket */ 4018c2ecf20Sopenharmony_ci#define FEC_QUIRK_USE_GASKET (1 << 2) 4028c2ecf20Sopenharmony_ci/* Controller has GBIT support */ 4038c2ecf20Sopenharmony_ci#define FEC_QUIRK_HAS_GBIT (1 << 3) 4048c2ecf20Sopenharmony_ci/* Controller has extend desc buffer */ 4058c2ecf20Sopenharmony_ci#define FEC_QUIRK_HAS_BUFDESC_EX (1 << 4) 4068c2ecf20Sopenharmony_ci/* Controller has hardware checksum support */ 4078c2ecf20Sopenharmony_ci#define FEC_QUIRK_HAS_CSUM (1 << 5) 4088c2ecf20Sopenharmony_ci/* Controller has hardware vlan support */ 4098c2ecf20Sopenharmony_ci#define FEC_QUIRK_HAS_VLAN (1 << 6) 4108c2ecf20Sopenharmony_ci/* ENET IP errata ERR006358 4118c2ecf20Sopenharmony_ci * 4128c2ecf20Sopenharmony_ci * If the ready bit in the transmit buffer descriptor (TxBD[R]) is previously 4138c2ecf20Sopenharmony_ci * detected as not set during a prior frame transmission, then the 4148c2ecf20Sopenharmony_ci * ENET_TDAR[TDAR] bit is cleared at a later time, even if additional TxBDs 4158c2ecf20Sopenharmony_ci * were added to the ring and the ENET_TDAR[TDAR] bit is set. This results in 4168c2ecf20Sopenharmony_ci * frames not being transmitted until there is a 0-to-1 transition on 4178c2ecf20Sopenharmony_ci * ENET_TDAR[TDAR]. 4188c2ecf20Sopenharmony_ci */ 4198c2ecf20Sopenharmony_ci#define FEC_QUIRK_ERR006358 (1 << 7) 4208c2ecf20Sopenharmony_ci/* ENET IP hw AVB 4218c2ecf20Sopenharmony_ci * 4228c2ecf20Sopenharmony_ci * i.MX6SX ENET IP add Audio Video Bridging (AVB) feature support. 4238c2ecf20Sopenharmony_ci * - Two class indicators on receive with configurable priority 4248c2ecf20Sopenharmony_ci * - Two class indicators and line speed timer on transmit allowing 4258c2ecf20Sopenharmony_ci * implementation class credit based shapers externally 4268c2ecf20Sopenharmony_ci * - Additional DMA registers provisioned to allow managing up to 3 4278c2ecf20Sopenharmony_ci * independent rings 4288c2ecf20Sopenharmony_ci */ 4298c2ecf20Sopenharmony_ci#define FEC_QUIRK_HAS_AVB (1 << 8) 4308c2ecf20Sopenharmony_ci/* There is a TDAR race condition for mutliQ when the software sets TDAR 4318c2ecf20Sopenharmony_ci * and the UDMA clears TDAR simultaneously or in a small window (2-4 cycles). 4328c2ecf20Sopenharmony_ci * This will cause the udma_tx and udma_tx_arbiter state machines to hang. 4338c2ecf20Sopenharmony_ci * The issue exist at i.MX6SX enet IP. 4348c2ecf20Sopenharmony_ci */ 4358c2ecf20Sopenharmony_ci#define FEC_QUIRK_ERR007885 (1 << 9) 4368c2ecf20Sopenharmony_ci/* ENET Block Guide/ Chapter for the iMX6SX (PELE) address one issue: 4378c2ecf20Sopenharmony_ci * After set ENET_ATCR[Capture], there need some time cycles before the counter 4388c2ecf20Sopenharmony_ci * value is capture in the register clock domain. 4398c2ecf20Sopenharmony_ci * The wait-time-cycles is at least 6 clock cycles of the slower clock between 4408c2ecf20Sopenharmony_ci * the register clock and the 1588 clock. The 1588 ts_clk is fixed to 25Mhz, 4418c2ecf20Sopenharmony_ci * register clock is 66Mhz, so the wait-time-cycles must be greater than 240ns 4428c2ecf20Sopenharmony_ci * (40ns * 6). 4438c2ecf20Sopenharmony_ci */ 4448c2ecf20Sopenharmony_ci#define FEC_QUIRK_BUG_CAPTURE (1 << 10) 4458c2ecf20Sopenharmony_ci/* Controller has only one MDIO bus */ 4468c2ecf20Sopenharmony_ci#define FEC_QUIRK_SINGLE_MDIO (1 << 11) 4478c2ecf20Sopenharmony_ci/* Controller supports RACC register */ 4488c2ecf20Sopenharmony_ci#define FEC_QUIRK_HAS_RACC (1 << 12) 4498c2ecf20Sopenharmony_ci/* Controller supports interrupt coalesc */ 4508c2ecf20Sopenharmony_ci#define FEC_QUIRK_HAS_COALESCE (1 << 13) 4518c2ecf20Sopenharmony_ci/* Interrupt doesn't wake CPU from deep idle */ 4528c2ecf20Sopenharmony_ci#define FEC_QUIRK_ERR006687 (1 << 14) 4538c2ecf20Sopenharmony_ci/* The MIB counters should be cleared and enabled during 4548c2ecf20Sopenharmony_ci * initialisation. 4558c2ecf20Sopenharmony_ci */ 4568c2ecf20Sopenharmony_ci#define FEC_QUIRK_MIB_CLEAR (1 << 15) 4578c2ecf20Sopenharmony_ci/* Only i.MX25/i.MX27/i.MX28 controller supports FRBR,FRSR registers, 4588c2ecf20Sopenharmony_ci * those FIFO receive registers are resolved in other platforms. 4598c2ecf20Sopenharmony_ci */ 4608c2ecf20Sopenharmony_ci#define FEC_QUIRK_HAS_FRREG (1 << 16) 4618c2ecf20Sopenharmony_ci 4628c2ecf20Sopenharmony_ci/* Some FEC hardware blocks need the MMFR cleared at setup time to avoid 4638c2ecf20Sopenharmony_ci * the generation of an MII event. This must be avoided in the older 4648c2ecf20Sopenharmony_ci * FEC blocks where it will stop MII events being generated. 4658c2ecf20Sopenharmony_ci */ 4668c2ecf20Sopenharmony_ci#define FEC_QUIRK_CLEAR_SETUP_MII (1 << 17) 4678c2ecf20Sopenharmony_ci 4688c2ecf20Sopenharmony_cistruct bufdesc_prop { 4698c2ecf20Sopenharmony_ci int qid; 4708c2ecf20Sopenharmony_ci /* Address of Rx and Tx buffers */ 4718c2ecf20Sopenharmony_ci struct bufdesc *base; 4728c2ecf20Sopenharmony_ci struct bufdesc *last; 4738c2ecf20Sopenharmony_ci struct bufdesc *cur; 4748c2ecf20Sopenharmony_ci void __iomem *reg_desc_active; 4758c2ecf20Sopenharmony_ci dma_addr_t dma; 4768c2ecf20Sopenharmony_ci unsigned short ring_size; 4778c2ecf20Sopenharmony_ci unsigned char dsize; 4788c2ecf20Sopenharmony_ci unsigned char dsize_log2; 4798c2ecf20Sopenharmony_ci}; 4808c2ecf20Sopenharmony_ci 4818c2ecf20Sopenharmony_cistruct fec_enet_priv_tx_q { 4828c2ecf20Sopenharmony_ci struct bufdesc_prop bd; 4838c2ecf20Sopenharmony_ci unsigned char *tx_bounce[TX_RING_SIZE]; 4848c2ecf20Sopenharmony_ci struct sk_buff *tx_skbuff[TX_RING_SIZE]; 4858c2ecf20Sopenharmony_ci 4868c2ecf20Sopenharmony_ci unsigned short tx_stop_threshold; 4878c2ecf20Sopenharmony_ci unsigned short tx_wake_threshold; 4888c2ecf20Sopenharmony_ci 4898c2ecf20Sopenharmony_ci struct bufdesc *dirty_tx; 4908c2ecf20Sopenharmony_ci char *tso_hdrs; 4918c2ecf20Sopenharmony_ci dma_addr_t tso_hdrs_dma; 4928c2ecf20Sopenharmony_ci}; 4938c2ecf20Sopenharmony_ci 4948c2ecf20Sopenharmony_cistruct fec_enet_priv_rx_q { 4958c2ecf20Sopenharmony_ci struct bufdesc_prop bd; 4968c2ecf20Sopenharmony_ci struct sk_buff *rx_skbuff[RX_RING_SIZE]; 4978c2ecf20Sopenharmony_ci}; 4988c2ecf20Sopenharmony_ci 4998c2ecf20Sopenharmony_cistruct fec_stop_mode_gpr { 5008c2ecf20Sopenharmony_ci struct regmap *gpr; 5018c2ecf20Sopenharmony_ci u8 reg; 5028c2ecf20Sopenharmony_ci u8 bit; 5038c2ecf20Sopenharmony_ci}; 5048c2ecf20Sopenharmony_ci 5058c2ecf20Sopenharmony_ci/* The FEC buffer descriptors track the ring buffers. The rx_bd_base and 5068c2ecf20Sopenharmony_ci * tx_bd_base always point to the base of the buffer descriptors. The 5078c2ecf20Sopenharmony_ci * cur_rx and cur_tx point to the currently available buffer. 5088c2ecf20Sopenharmony_ci * The dirty_tx tracks the current buffer that is being sent by the 5098c2ecf20Sopenharmony_ci * controller. The cur_tx and dirty_tx are equal under both completely 5108c2ecf20Sopenharmony_ci * empty and completely full conditions. The empty/ready indicator in 5118c2ecf20Sopenharmony_ci * the buffer descriptor determines the actual condition. 5128c2ecf20Sopenharmony_ci */ 5138c2ecf20Sopenharmony_cistruct fec_enet_private { 5148c2ecf20Sopenharmony_ci /* Hardware registers of the FEC device */ 5158c2ecf20Sopenharmony_ci void __iomem *hwp; 5168c2ecf20Sopenharmony_ci 5178c2ecf20Sopenharmony_ci struct net_device *netdev; 5188c2ecf20Sopenharmony_ci 5198c2ecf20Sopenharmony_ci struct clk *clk_ipg; 5208c2ecf20Sopenharmony_ci struct clk *clk_ahb; 5218c2ecf20Sopenharmony_ci struct clk *clk_ref; 5228c2ecf20Sopenharmony_ci struct clk *clk_enet_out; 5238c2ecf20Sopenharmony_ci struct clk *clk_ptp; 5248c2ecf20Sopenharmony_ci 5258c2ecf20Sopenharmony_ci bool ptp_clk_on; 5268c2ecf20Sopenharmony_ci struct mutex ptp_clk_mutex; 5278c2ecf20Sopenharmony_ci unsigned int num_tx_queues; 5288c2ecf20Sopenharmony_ci unsigned int num_rx_queues; 5298c2ecf20Sopenharmony_ci 5308c2ecf20Sopenharmony_ci /* The saved address of a sent-in-place packet/buffer, for skfree(). */ 5318c2ecf20Sopenharmony_ci struct fec_enet_priv_tx_q *tx_queue[FEC_ENET_MAX_TX_QS]; 5328c2ecf20Sopenharmony_ci struct fec_enet_priv_rx_q *rx_queue[FEC_ENET_MAX_RX_QS]; 5338c2ecf20Sopenharmony_ci 5348c2ecf20Sopenharmony_ci unsigned int total_tx_ring_size; 5358c2ecf20Sopenharmony_ci unsigned int total_rx_ring_size; 5368c2ecf20Sopenharmony_ci 5378c2ecf20Sopenharmony_ci struct platform_device *pdev; 5388c2ecf20Sopenharmony_ci 5398c2ecf20Sopenharmony_ci int dev_id; 5408c2ecf20Sopenharmony_ci 5418c2ecf20Sopenharmony_ci /* Phylib and MDIO interface */ 5428c2ecf20Sopenharmony_ci struct mii_bus *mii_bus; 5438c2ecf20Sopenharmony_ci uint phy_speed; 5448c2ecf20Sopenharmony_ci phy_interface_t phy_interface; 5458c2ecf20Sopenharmony_ci struct device_node *phy_node; 5468c2ecf20Sopenharmony_ci int link; 5478c2ecf20Sopenharmony_ci int full_duplex; 5488c2ecf20Sopenharmony_ci int speed; 5498c2ecf20Sopenharmony_ci int irq[FEC_IRQ_NUM]; 5508c2ecf20Sopenharmony_ci bool bufdesc_ex; 5518c2ecf20Sopenharmony_ci int pause_flag; 5528c2ecf20Sopenharmony_ci int wol_flag; 5538c2ecf20Sopenharmony_ci u32 quirks; 5548c2ecf20Sopenharmony_ci 5558c2ecf20Sopenharmony_ci struct napi_struct napi; 5568c2ecf20Sopenharmony_ci int csum_flags; 5578c2ecf20Sopenharmony_ci 5588c2ecf20Sopenharmony_ci struct work_struct tx_timeout_work; 5598c2ecf20Sopenharmony_ci 5608c2ecf20Sopenharmony_ci struct ptp_clock *ptp_clock; 5618c2ecf20Sopenharmony_ci struct ptp_clock_info ptp_caps; 5628c2ecf20Sopenharmony_ci unsigned long last_overflow_check; 5638c2ecf20Sopenharmony_ci spinlock_t tmreg_lock; 5648c2ecf20Sopenharmony_ci struct cyclecounter cc; 5658c2ecf20Sopenharmony_ci struct timecounter tc; 5668c2ecf20Sopenharmony_ci int rx_hwtstamp_filter; 5678c2ecf20Sopenharmony_ci u32 base_incval; 5688c2ecf20Sopenharmony_ci u32 cycle_speed; 5698c2ecf20Sopenharmony_ci int hwts_rx_en; 5708c2ecf20Sopenharmony_ci int hwts_tx_en; 5718c2ecf20Sopenharmony_ci struct delayed_work time_keep; 5728c2ecf20Sopenharmony_ci struct regulator *reg_phy; 5738c2ecf20Sopenharmony_ci struct fec_stop_mode_gpr stop_gpr; 5748c2ecf20Sopenharmony_ci 5758c2ecf20Sopenharmony_ci unsigned int tx_align; 5768c2ecf20Sopenharmony_ci unsigned int rx_align; 5778c2ecf20Sopenharmony_ci 5788c2ecf20Sopenharmony_ci /* hw interrupt coalesce */ 5798c2ecf20Sopenharmony_ci unsigned int rx_pkts_itr; 5808c2ecf20Sopenharmony_ci unsigned int rx_time_itr; 5818c2ecf20Sopenharmony_ci unsigned int tx_pkts_itr; 5828c2ecf20Sopenharmony_ci unsigned int tx_time_itr; 5838c2ecf20Sopenharmony_ci unsigned int itr_clk_rate; 5848c2ecf20Sopenharmony_ci 5858c2ecf20Sopenharmony_ci u32 rx_copybreak; 5868c2ecf20Sopenharmony_ci 5878c2ecf20Sopenharmony_ci /* ptp clock period in ns*/ 5888c2ecf20Sopenharmony_ci unsigned int ptp_inc; 5898c2ecf20Sopenharmony_ci 5908c2ecf20Sopenharmony_ci /* pps */ 5918c2ecf20Sopenharmony_ci int pps_channel; 5928c2ecf20Sopenharmony_ci unsigned int reload_period; 5938c2ecf20Sopenharmony_ci int pps_enable; 5948c2ecf20Sopenharmony_ci unsigned int next_counter; 5958c2ecf20Sopenharmony_ci 5968c2ecf20Sopenharmony_ci u64 ethtool_stats[]; 5978c2ecf20Sopenharmony_ci}; 5988c2ecf20Sopenharmony_ci 5998c2ecf20Sopenharmony_civoid fec_ptp_init(struct platform_device *pdev, int irq_idx); 6008c2ecf20Sopenharmony_civoid fec_ptp_stop(struct platform_device *pdev); 6018c2ecf20Sopenharmony_civoid fec_ptp_start_cyclecounter(struct net_device *ndev); 6028c2ecf20Sopenharmony_civoid fec_ptp_disable_hwts(struct net_device *ndev); 6038c2ecf20Sopenharmony_ciint fec_ptp_set(struct net_device *ndev, struct ifreq *ifr); 6048c2ecf20Sopenharmony_ciint fec_ptp_get(struct net_device *ndev, struct ifreq *ifr); 6058c2ecf20Sopenharmony_ci 6068c2ecf20Sopenharmony_ci/****************************************************************************/ 6078c2ecf20Sopenharmony_ci#endif /* FEC_H */ 608