Wolfram Sang | 00e1cae | 2018-08-22 00:02:19 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Sergei Shtylyov | 128296f | 2014-01-03 15:52:22 +0300 | [diff] [blame] | 2 | /* SuperH Ethernet device driver |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 3 | * |
Nobuhiro Iwamatsu | f0e81fe | 2012-03-25 18:59:51 +0000 | [diff] [blame] | 4 | * Copyright (C) 2006-2012 Nobuhiro Iwamatsu |
| 5 | * Copyright (C) 2008-2012 Renesas Solutions Corp. |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef __SH_ETH_H__ |
| 9 | #define __SH_ETH_H__ |
| 10 | |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 11 | #define CARDNAME "sh-eth" |
| 12 | #define TX_TIMEOUT (5*HZ) |
Nobuhiro Iwamatsu | b0ca2a2 | 2008-06-30 11:08:17 +0900 | [diff] [blame] | 13 | #define TX_RING_SIZE 64 /* Tx ring size */ |
| 14 | #define RX_RING_SIZE 64 /* Rx ring size */ |
Yoshihiro Shimoda | 525b807 | 2012-06-26 20:00:03 +0000 | [diff] [blame] | 15 | #define TX_RING_MIN 64 |
| 16 | #define RX_RING_MIN 64 |
| 17 | #define TX_RING_MAX 1024 |
| 18 | #define RX_RING_MAX 1024 |
Sergei Shtylyov | 730c8c6 | 2014-02-14 03:05:42 +0300 | [diff] [blame] | 19 | #define PKT_BUF_SZ 1538 |
Yoshihiro Shimoda | 6743fe6 | 2012-02-15 17:55:03 +0000 | [diff] [blame] | 20 | #define SH_ETH_TSU_TIMEOUT_MS 500 |
| 21 | #define SH_ETH_TSU_CAM_ENTRIES 32 |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 22 | |
Yoshihiro Shimoda | 4a55530 | 2011-03-07 21:59:26 +0000 | [diff] [blame] | 23 | enum { |
Ben Hutchings | 6b4b4fe | 2015-02-26 20:34:35 +0000 | [diff] [blame] | 24 | /* IMPORTANT: To keep ethtool register dump working, add new |
| 25 | * register names immediately before SH_ETH_MAX_REGISTER_OFFSET. |
| 26 | */ |
| 27 | |
Yoshihiro Shimoda | 4a55530 | 2011-03-07 21:59:26 +0000 | [diff] [blame] | 28 | /* E-DMAC registers */ |
| 29 | EDSR = 0, |
| 30 | EDMR, |
| 31 | EDTRR, |
| 32 | EDRRR, |
| 33 | EESR, |
| 34 | EESIPR, |
| 35 | TDLAR, |
| 36 | TDFAR, |
| 37 | TDFXR, |
| 38 | TDFFR, |
| 39 | RDLAR, |
| 40 | RDFAR, |
| 41 | RDFXR, |
| 42 | RDFFR, |
| 43 | TRSCER, |
| 44 | RMFCR, |
| 45 | TFTR, |
| 46 | FDR, |
| 47 | RMCR, |
| 48 | EDOCR, |
| 49 | TFUCR, |
| 50 | RFOCR, |
Simon Horman | 55754f1 | 2013-07-23 10:18:04 +0900 | [diff] [blame] | 51 | RMIIMODE, |
Yoshihiro Shimoda | 4a55530 | 2011-03-07 21:59:26 +0000 | [diff] [blame] | 52 | FCFTR, |
| 53 | RPADIR, |
| 54 | TRIMD, |
| 55 | RBWAR, |
| 56 | TBRAR, |
| 57 | |
| 58 | /* Ether registers */ |
| 59 | ECMR, |
| 60 | ECSR, |
| 61 | ECSIPR, |
| 62 | PIR, |
| 63 | PSR, |
| 64 | RDMLR, |
| 65 | PIPR, |
| 66 | RFLR, |
| 67 | IPGR, |
| 68 | APR, |
| 69 | MPR, |
| 70 | PFTCR, |
| 71 | PFRCR, |
| 72 | RFCR, |
| 73 | RFCF, |
| 74 | TPAUSER, |
| 75 | TPAUSECR, |
| 76 | BCFR, |
| 77 | BCFRR, |
| 78 | GECMR, |
| 79 | BCULR, |
| 80 | MAHR, |
| 81 | MALR, |
| 82 | TROCR, |
| 83 | CDCR, |
| 84 | LCCR, |
| 85 | CNDCR, |
| 86 | CEFCR, |
| 87 | FRECR, |
| 88 | TSFRCR, |
| 89 | TLFRCR, |
| 90 | CERCR, |
| 91 | CEECR, |
| 92 | MAFCR, |
| 93 | RTRATE, |
Nobuhiro Iwamatsu | f0e81fe | 2012-03-25 18:59:51 +0000 | [diff] [blame] | 94 | CSMR, |
| 95 | RMII_MII, |
Yoshihiro Shimoda | 4a55530 | 2011-03-07 21:59:26 +0000 | [diff] [blame] | 96 | |
| 97 | /* TSU Absolute address */ |
| 98 | ARSTR, |
| 99 | TSU_CTRST, |
| 100 | TSU_FWEN0, |
| 101 | TSU_FWEN1, |
| 102 | TSU_FCM, |
| 103 | TSU_BSYSL0, |
| 104 | TSU_BSYSL1, |
| 105 | TSU_PRISL0, |
| 106 | TSU_PRISL1, |
| 107 | TSU_FWSL0, |
| 108 | TSU_FWSL1, |
| 109 | TSU_FWSLC, |
Sergei Shtylyov | 4869a14 | 2018-02-24 20:28:16 +0300 | [diff] [blame] | 110 | TSU_QTAG0, /* Same as TSU_QTAGM0 */ |
| 111 | TSU_QTAG1, /* Same as TSU_QTAGM1 */ |
Yoshihiro Shimoda | 4a55530 | 2011-03-07 21:59:26 +0000 | [diff] [blame] | 112 | TSU_QTAGM0, |
| 113 | TSU_QTAGM1, |
| 114 | TSU_FWSR, |
| 115 | TSU_FWINMK, |
| 116 | TSU_ADQT0, |
| 117 | TSU_ADQT1, |
| 118 | TSU_VTAG0, |
| 119 | TSU_VTAG1, |
| 120 | TSU_ADSBSY, |
| 121 | TSU_TEN, |
| 122 | TSU_POST1, |
| 123 | TSU_POST2, |
| 124 | TSU_POST3, |
| 125 | TSU_POST4, |
| 126 | TSU_ADRH0, |
Ben Hutchings | 6b4b4fe | 2015-02-26 20:34:35 +0000 | [diff] [blame] | 127 | /* TSU_ADR{H,L}{0..31} are assumed to be contiguous */ |
Yoshihiro Shimoda | 4a55530 | 2011-03-07 21:59:26 +0000 | [diff] [blame] | 128 | |
| 129 | TXNLCR0, |
| 130 | TXALCR0, |
| 131 | RXNLCR0, |
| 132 | RXALCR0, |
| 133 | FWNLCR0, |
| 134 | FWALCR0, |
| 135 | TXNLCR1, |
| 136 | TXALCR1, |
| 137 | RXNLCR1, |
| 138 | RXALCR1, |
| 139 | FWNLCR1, |
| 140 | FWALCR1, |
| 141 | |
| 142 | /* This value must be written at last. */ |
| 143 | SH_ETH_MAX_REGISTER_OFFSET, |
| 144 | }; |
| 145 | |
Sergei Shtylyov | 8d3214c | 2013-08-18 03:13:26 +0400 | [diff] [blame] | 146 | enum { |
| 147 | SH_ETH_REG_GIGABIT, |
Simon Horman | db89347 | 2014-01-17 09:22:28 +0900 | [diff] [blame] | 148 | SH_ETH_REG_FAST_RZ, |
Sergei Shtylyov | 8d3214c | 2013-08-18 03:13:26 +0400 | [diff] [blame] | 149 | SH_ETH_REG_FAST_RCAR, |
| 150 | SH_ETH_REG_FAST_SH4, |
| 151 | SH_ETH_REG_FAST_SH3_SH2 |
| 152 | }; |
| 153 | |
Yoshihiro Shimoda | 380af9e | 2009-05-24 23:54:21 +0000 | [diff] [blame] | 154 | /* Driver's parameters */ |
Geert Uytterhoeven | b16a960 | 2018-05-18 12:52:51 +0200 | [diff] [blame] | 155 | #if defined(CONFIG_CPU_SH4) || defined(CONFIG_ARCH_RENESAS) |
Mitsuhiro Kimura | 4d6a949 | 2014-11-27 20:34:00 +0900 | [diff] [blame] | 156 | #define SH_ETH_RX_ALIGN 32 |
Yoshihiro Shimoda | 380af9e | 2009-05-24 23:54:21 +0000 | [diff] [blame] | 157 | #else |
Mitsuhiro Kimura | 4d6a949 | 2014-11-27 20:34:00 +0900 | [diff] [blame] | 158 | #define SH_ETH_RX_ALIGN 2 |
Yoshihiro Shimoda | 380af9e | 2009-05-24 23:54:21 +0000 | [diff] [blame] | 159 | #endif |
| 160 | |
Sergei Shtylyov | 128296f | 2014-01-03 15:52:22 +0300 | [diff] [blame] | 161 | /* Register's bits |
Nobuhiro Iwamatsu | b0ca2a2 | 2008-06-30 11:08:17 +0900 | [diff] [blame] | 162 | */ |
Simon Horman | db89347 | 2014-01-17 09:22:28 +0900 | [diff] [blame] | 163 | /* EDSR : sh7734, sh7757, sh7763, r8a7740, and r7s72100 only */ |
Nobuhiro Iwamatsu | b0ca2a2 | 2008-06-30 11:08:17 +0900 | [diff] [blame] | 164 | enum EDSR_BIT { |
| 165 | EDSR_ENT = 0x01, EDSR_ENR = 0x02, |
| 166 | }; |
| 167 | #define EDSR_ENALL (EDSR_ENT|EDSR_ENR) |
| 168 | |
Nobuhiro Iwamatsu | 41d5ffe | 2013-06-06 09:43:16 +0000 | [diff] [blame] | 169 | /* GECMR : sh7734, sh7763 and r8a7740 only */ |
Nobuhiro Iwamatsu | b0ca2a2 | 2008-06-30 11:08:17 +0900 | [diff] [blame] | 170 | enum GECMR_BIT { |
| 171 | GECMR_10 = 0x0, GECMR_100 = 0x04, GECMR_1000 = 0x01, |
| 172 | }; |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 173 | |
| 174 | /* EDMR */ |
| 175 | enum DMAC_M_BIT { |
Sergei Shtylyov | 93f0fa7 | 2018-05-18 21:31:28 +0300 | [diff] [blame] | 176 | EDMR_NBST = 0x80, |
Yoshihiro Shimoda | 380af9e | 2009-05-24 23:54:21 +0000 | [diff] [blame] | 177 | EDMR_EL = 0x40, /* Litte endian */ |
Nobuhiro Iwamatsu | b0ca2a2 | 2008-06-30 11:08:17 +0900 | [diff] [blame] | 178 | EDMR_DL1 = 0x20, EDMR_DL0 = 0x10, |
Yoshihiro Shimoda | c5ed536 | 2011-03-07 21:59:38 +0000 | [diff] [blame] | 179 | EDMR_SRST_GETHER = 0x03, |
| 180 | EDMR_SRST_ETHER = 0x01, |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 181 | }; |
| 182 | |
| 183 | /* EDTRR */ |
| 184 | enum DMAC_T_BIT { |
Yoshihiro Shimoda | c5ed536 | 2011-03-07 21:59:38 +0000 | [diff] [blame] | 185 | EDTRR_TRNS_GETHER = 0x03, |
| 186 | EDTRR_TRNS_ETHER = 0x01, |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 187 | }; |
| 188 | |
Sergei Shtylyov | 128296f | 2014-01-03 15:52:22 +0300 | [diff] [blame] | 189 | /* EDRRR */ |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 190 | enum EDRRR_R_BIT { |
| 191 | EDRRR_R = 0x01, |
| 192 | }; |
| 193 | |
| 194 | /* TPAUSER */ |
| 195 | enum TPAUSER_BIT { |
| 196 | TPAUSER_TPAUSE = 0x0000ffff, |
| 197 | TPAUSER_UNLIMITED = 0, |
| 198 | }; |
| 199 | |
| 200 | /* BCFR */ |
| 201 | enum BCFR_BIT { |
| 202 | BCFR_RPAUSE = 0x0000ffff, |
| 203 | BCFR_UNLIMITED = 0, |
| 204 | }; |
| 205 | |
| 206 | /* PIR */ |
| 207 | enum PIR_BIT { |
| 208 | PIR_MDI = 0x08, PIR_MDO = 0x04, PIR_MMD = 0x02, PIR_MDC = 0x01, |
| 209 | }; |
| 210 | |
| 211 | /* PSR */ |
| 212 | enum PHY_STATUS_BIT { PHY_ST_LINK = 0x01, }; |
| 213 | |
| 214 | /* EESR */ |
| 215 | enum EESR_BIT { |
Yoshihiro Shimoda | 380af9e | 2009-05-24 23:54:21 +0000 | [diff] [blame] | 216 | EESR_TWB1 = 0x80000000, |
| 217 | EESR_TWB = 0x40000000, /* same as TWB0 */ |
| 218 | EESR_TC1 = 0x20000000, |
| 219 | EESR_TUC = 0x10000000, |
| 220 | EESR_ROC = 0x08000000, |
| 221 | EESR_TABT = 0x04000000, |
| 222 | EESR_RABT = 0x02000000, |
| 223 | EESR_RFRMER = 0x01000000, /* same as RFCOF */ |
| 224 | EESR_ADE = 0x00800000, |
| 225 | EESR_ECI = 0x00400000, |
| 226 | EESR_FTC = 0x00200000, /* same as TC or TC0 */ |
| 227 | EESR_TDE = 0x00100000, |
| 228 | EESR_TFE = 0x00080000, /* same as TFUF */ |
| 229 | EESR_FRC = 0x00040000, /* same as FR */ |
| 230 | EESR_RDE = 0x00020000, |
| 231 | EESR_RFE = 0x00010000, |
| 232 | EESR_CND = 0x00000800, |
| 233 | EESR_DLC = 0x00000400, |
| 234 | EESR_CD = 0x00000200, |
Sergei Shtylyov | 2716449 | 2018-05-20 00:02:36 +0300 | [diff] [blame] | 235 | EESR_TRO = 0x00000100, |
Yoshihiro Shimoda | 380af9e | 2009-05-24 23:54:21 +0000 | [diff] [blame] | 236 | EESR_RMAF = 0x00000080, |
| 237 | EESR_CEEF = 0x00000040, |
| 238 | EESR_CELF = 0x00000020, |
| 239 | EESR_RRF = 0x00000010, |
| 240 | EESR_RTLF = 0x00000008, |
| 241 | EESR_RTSF = 0x00000004, |
| 242 | EESR_PRE = 0x00000002, |
| 243 | EESR_CERF = 0x00000001, |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 244 | }; |
| 245 | |
Sergei Shtylyov | ea7d69e | 2013-06-19 23:29:23 +0400 | [diff] [blame] | 246 | #define EESR_RX_CHECK (EESR_FRC | /* Frame recv */ \ |
| 247 | EESR_RMAF | /* Multicast address recv */ \ |
| 248 | EESR_RRF | /* Bit frame recv */ \ |
| 249 | EESR_RTLF | /* Long frame recv */ \ |
| 250 | EESR_RTSF | /* Short frame recv */ \ |
| 251 | EESR_PRE | /* PHY-LSI recv error */ \ |
| 252 | EESR_CERF) /* Recv frame CRC error */ |
| 253 | |
Yoshihiro Shimoda | 380af9e | 2009-05-24 23:54:21 +0000 | [diff] [blame] | 254 | #define DEFAULT_TX_CHECK (EESR_FTC | EESR_CND | EESR_DLC | EESR_CD | \ |
Sergei Shtylyov | 2716449 | 2018-05-20 00:02:36 +0300 | [diff] [blame] | 255 | EESR_TRO) |
Sergei Shtylyov | ca8c358 | 2013-06-21 01:12:21 +0400 | [diff] [blame] | 256 | #define DEFAULT_EESR_ERR_CHECK (EESR_TWB | EESR_TABT | EESR_RABT | EESR_RFE | \ |
Yoshihiro Shimoda | 380af9e | 2009-05-24 23:54:21 +0000 | [diff] [blame] | 257 | EESR_RDE | EESR_RFRMER | EESR_ADE | \ |
Sergei Shtylyov | 9b39f05 | 2017-01-04 15:11:21 +0300 | [diff] [blame] | 258 | EESR_TFE | EESR_TDE) |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 259 | |
| 260 | /* EESIPR */ |
Sergei Shtylyov | 1a0bee6 | 2017-01-29 15:07:34 +0300 | [diff] [blame] | 261 | enum EESIPR_BIT { |
Sergei Shtylyov | 00300b2 | 2017-01-29 15:08:09 +0300 | [diff] [blame] | 262 | EESIPR_TWB1IP = 0x80000000, |
| 263 | EESIPR_TWBIP = 0x40000000, /* same as TWB0IP */ |
| 264 | EESIPR_TC1IP = 0x20000000, |
| 265 | EESIPR_TUCIP = 0x10000000, |
| 266 | EESIPR_ROCIP = 0x08000000, |
Sergei Shtylyov | 1a0bee6 | 2017-01-29 15:07:34 +0300 | [diff] [blame] | 267 | EESIPR_TABTIP = 0x04000000, |
| 268 | EESIPR_RABTIP = 0x02000000, |
| 269 | EESIPR_RFCOFIP = 0x01000000, |
| 270 | EESIPR_ADEIP = 0x00800000, |
| 271 | EESIPR_ECIIP = 0x00400000, |
Sergei Shtylyov | 00300b2 | 2017-01-29 15:08:09 +0300 | [diff] [blame] | 272 | EESIPR_FTCIP = 0x00200000, /* same as TC0IP */ |
Sergei Shtylyov | 1a0bee6 | 2017-01-29 15:07:34 +0300 | [diff] [blame] | 273 | EESIPR_TDEIP = 0x00100000, |
| 274 | EESIPR_TFUFIP = 0x00080000, |
| 275 | EESIPR_FRIP = 0x00040000, |
| 276 | EESIPR_RDEIP = 0x00020000, |
| 277 | EESIPR_RFOFIP = 0x00010000, |
| 278 | EESIPR_CNDIP = 0x00000800, |
| 279 | EESIPR_DLCIP = 0x00000400, |
| 280 | EESIPR_CDIP = 0x00000200, |
| 281 | EESIPR_TROIP = 0x00000100, |
| 282 | EESIPR_RMAFIP = 0x00000080, |
Sergei Shtylyov | 00300b2 | 2017-01-29 15:08:09 +0300 | [diff] [blame] | 283 | EESIPR_CEEFIP = 0x00000040, |
| 284 | EESIPR_CELFIP = 0x00000020, |
Sergei Shtylyov | 1a0bee6 | 2017-01-29 15:07:34 +0300 | [diff] [blame] | 285 | EESIPR_RRFIP = 0x00000010, |
| 286 | EESIPR_RTLFIP = 0x00000008, |
| 287 | EESIPR_RTSFIP = 0x00000004, |
| 288 | EESIPR_PREIP = 0x00000002, |
| 289 | EESIPR_CERFIP = 0x00000001, |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 290 | }; |
| 291 | |
Sergei Shtylyov | 5cbf20c | 2015-12-20 01:48:04 +0300 | [diff] [blame] | 292 | /* Receive descriptor 0 bits */ |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 293 | enum RD_STS_BIT { |
Sergei Shtylyov | c238041 | 2015-11-03 01:28:07 +0300 | [diff] [blame] | 294 | RD_RACT = 0x80000000, RD_RDLE = 0x40000000, |
Nobuhiro Iwamatsu | b0ca2a2 | 2008-06-30 11:08:17 +0900 | [diff] [blame] | 295 | RD_RFP1 = 0x20000000, RD_RFP0 = 0x10000000, |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 296 | RD_RFE = 0x08000000, RD_RFS10 = 0x00000200, |
| 297 | RD_RFS9 = 0x00000100, RD_RFS8 = 0x00000080, |
| 298 | RD_RFS7 = 0x00000040, RD_RFS6 = 0x00000020, |
| 299 | RD_RFS5 = 0x00000010, RD_RFS4 = 0x00000008, |
| 300 | RD_RFS3 = 0x00000004, RD_RFS2 = 0x00000002, |
| 301 | RD_RFS1 = 0x00000001, |
| 302 | }; |
Nobuhiro Iwamatsu | b0ca2a2 | 2008-06-30 11:08:17 +0900 | [diff] [blame] | 303 | #define RDF1ST RD_RFP1 |
| 304 | #define RDFEND RD_RFP0 |
| 305 | #define RD_RFP (RD_RFP1|RD_RFP0) |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 306 | |
Sergei Shtylyov | 5cbf20c | 2015-12-20 01:48:04 +0300 | [diff] [blame] | 307 | /* Receive descriptor 1 bits */ |
| 308 | enum RD_LEN_BIT { |
| 309 | RD_RFL = 0x0000ffff, /* receive frame length */ |
| 310 | RD_RBL = 0xffff0000, /* receive buffer length */ |
| 311 | }; |
| 312 | |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 313 | /* FCFTR */ |
| 314 | enum FCFTR_BIT { |
| 315 | FCFTR_RFF2 = 0x00040000, FCFTR_RFF1 = 0x00020000, |
| 316 | FCFTR_RFF0 = 0x00010000, FCFTR_RFD2 = 0x00000004, |
| 317 | FCFTR_RFD1 = 0x00000002, FCFTR_RFD0 = 0x00000001, |
| 318 | }; |
Yoshihiro Shimoda | 380af9e | 2009-05-24 23:54:21 +0000 | [diff] [blame] | 319 | #define DEFAULT_FIFO_F_D_RFF (FCFTR_RFF2 | FCFTR_RFF1 | FCFTR_RFF0) |
| 320 | #define DEFAULT_FIFO_F_D_RFD (FCFTR_RFD2 | FCFTR_RFD1 | FCFTR_RFD0) |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 321 | |
Sergei Shtylyov | 5cbf20c | 2015-12-20 01:48:04 +0300 | [diff] [blame] | 322 | /* Transmit descriptor 0 bits */ |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 323 | enum TD_STS_BIT { |
Sergei Shtylyov | c8bbe37 | 2013-06-20 02:26:14 +0400 | [diff] [blame] | 324 | TD_TACT = 0x80000000, TD_TDLE = 0x40000000, |
| 325 | TD_TFP1 = 0x20000000, TD_TFP0 = 0x10000000, |
| 326 | TD_TFE = 0x08000000, TD_TWBI = 0x04000000, |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 327 | }; |
| 328 | #define TDF1ST TD_TFP1 |
| 329 | #define TDFEND TD_TFP0 |
| 330 | #define TD_TFP (TD_TFP1|TD_TFP0) |
| 331 | |
Sergei Shtylyov | 5cbf20c | 2015-12-20 01:48:04 +0300 | [diff] [blame] | 332 | /* Transmit descriptor 1 bits */ |
| 333 | enum TD_LEN_BIT { |
| 334 | TD_TBL = 0xffff0000, /* transmit buffer length */ |
| 335 | }; |
| 336 | |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 337 | /* RMCR */ |
Sergei Shtylyov | 305a338 | 2013-10-16 02:29:58 +0400 | [diff] [blame] | 338 | enum RMCR_BIT { |
| 339 | RMCR_RNC = 0x00000001, |
| 340 | }; |
Yoshihiro Shimoda | 380af9e | 2009-05-24 23:54:21 +0000 | [diff] [blame] | 341 | |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 342 | /* ECMR */ |
| 343 | enum FELIC_MODE_BIT { |
Nobuhiro Iwamatsu | b0ca2a2 | 2008-06-30 11:08:17 +0900 | [diff] [blame] | 344 | ECMR_TRCCM = 0x04000000, ECMR_RCSC = 0x00800000, |
| 345 | ECMR_DPAD = 0x00200000, ECMR_RZPF = 0x00100000, |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 346 | ECMR_ZPF = 0x00080000, ECMR_PFR = 0x00040000, ECMR_RXF = 0x00020000, |
| 347 | ECMR_TXF = 0x00010000, ECMR_MCT = 0x00002000, ECMR_PRCEF = 0x00001000, |
Niklas Söderlund | 6dcf45e5 | 2017-01-09 16:34:04 +0100 | [diff] [blame] | 348 | ECMR_MPDE = 0x00000200, ECMR_RE = 0x00000040, ECMR_TE = 0x00000020, |
Yoshihiro Shimoda | 65ac885 | 2009-05-24 23:54:30 +0000 | [diff] [blame] | 349 | ECMR_RTM = 0x00000010, ECMR_ILB = 0x00000008, ECMR_ELB = 0x00000004, |
Yoshihiro Shimoda | 380af9e | 2009-05-24 23:54:21 +0000 | [diff] [blame] | 350 | ECMR_DM = 0x00000002, ECMR_PRM = 0x00000001, |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 351 | }; |
| 352 | |
| 353 | /* ECSR */ |
| 354 | enum ECSR_STATUS_BIT { |
Nobuhiro Iwamatsu | b0ca2a2 | 2008-06-30 11:08:17 +0900 | [diff] [blame] | 355 | ECSR_BRCRX = 0x20, ECSR_PSRTO = 0x10, |
Nobuhiro Iwamatsu | b0ca2a2 | 2008-06-30 11:08:17 +0900 | [diff] [blame] | 356 | ECSR_LCHNG = 0x04, |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 357 | ECSR_MPD = 0x02, ECSR_ICD = 0x01, |
| 358 | }; |
| 359 | |
Yoshihiro Shimoda | 380af9e | 2009-05-24 23:54:21 +0000 | [diff] [blame] | 360 | #define DEFAULT_ECSR_INIT (ECSR_BRCRX | ECSR_PSRTO | ECSR_LCHNG | \ |
| 361 | ECSR_ICD | ECSIPR_MPDIP) |
Nobuhiro Iwamatsu | b0ca2a2 | 2008-06-30 11:08:17 +0900 | [diff] [blame] | 362 | |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 363 | /* ECSIPR */ |
| 364 | enum ECSIPR_STATUS_MASK_BIT { |
Nobuhiro Iwamatsu | b0ca2a2 | 2008-06-30 11:08:17 +0900 | [diff] [blame] | 365 | ECSIPR_BRCRXIP = 0x20, ECSIPR_PSRTOIP = 0x10, |
Nobuhiro Iwamatsu | b0ca2a2 | 2008-06-30 11:08:17 +0900 | [diff] [blame] | 366 | ECSIPR_LCHNGIP = 0x04, |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 367 | ECSIPR_MPDIP = 0x02, ECSIPR_ICDIP = 0x01, |
| 368 | }; |
| 369 | |
Yoshihiro Shimoda | 380af9e | 2009-05-24 23:54:21 +0000 | [diff] [blame] | 370 | #define DEFAULT_ECSIPR_INIT (ECSIPR_BRCRXIP | ECSIPR_PSRTOIP | \ |
| 371 | ECSIPR_LCHNGIP | ECSIPR_ICDIP | ECSIPR_MPDIP) |
Nobuhiro Iwamatsu | b0ca2a2 | 2008-06-30 11:08:17 +0900 | [diff] [blame] | 372 | |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 373 | /* APR */ |
| 374 | enum APR_BIT { |
Sergei Shtylyov | 782e85c | 2018-06-26 18:42:33 +0300 | [diff] [blame] | 375 | APR_AP = 0x0000ffff, |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 376 | }; |
| 377 | |
| 378 | /* MPR */ |
| 379 | enum MPR_BIT { |
Sergei Shtylyov | 782e85c | 2018-06-26 18:42:33 +0300 | [diff] [blame] | 380 | MPR_MP = 0x0000ffff, |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 381 | }; |
| 382 | |
| 383 | /* TRSCER */ |
| 384 | enum DESC_I_BIT { |
| 385 | DESC_I_TINT4 = 0x0800, DESC_I_TINT3 = 0x0400, DESC_I_TINT2 = 0x0200, |
| 386 | DESC_I_TINT1 = 0x0100, DESC_I_RINT8 = 0x0080, DESC_I_RINT5 = 0x0010, |
| 387 | DESC_I_RINT4 = 0x0008, DESC_I_RINT3 = 0x0004, DESC_I_RINT2 = 0x0002, |
| 388 | DESC_I_RINT1 = 0x0001, |
| 389 | }; |
| 390 | |
Nobuhiro Iwamatsu | b284fbe | 2015-01-08 15:25:07 +0900 | [diff] [blame] | 391 | #define DEFAULT_TRSCER_ERR_MASK (DESC_I_RINT8 | DESC_I_RINT5 | DESC_I_TINT2) |
| 392 | |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 393 | /* RPADIR */ |
| 394 | enum RPADIR_BIT { |
Sergei Shtylyov | b13ca098 | 2018-06-25 23:36:21 +0300 | [diff] [blame] | 395 | RPADIR_PADS = 0x1f0000, RPADIR_PADR = 0xffff, |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 396 | }; |
| 397 | |
| 398 | /* FDR */ |
Yoshihiro Shimoda | 380af9e | 2009-05-24 23:54:21 +0000 | [diff] [blame] | 399 | #define DEFAULT_FDR_INIT 0x00000707 |
| 400 | |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 401 | /* ARSTR */ |
Sergei Shtylyov | ec65cfc | 2016-04-24 23:46:15 +0300 | [diff] [blame] | 402 | enum ARSTR_BIT { ARSTR_ARST = 0x00000001, }; |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 403 | |
| 404 | /* TSU_FWEN0 */ |
| 405 | enum TSU_FWEN0_BIT { |
| 406 | TSU_FWEN0_0 = 0x00000001, |
| 407 | }; |
| 408 | |
| 409 | /* TSU_ADSBSY */ |
| 410 | enum TSU_ADSBSY_BIT { |
| 411 | TSU_ADSBSY_0 = 0x00000001, |
| 412 | }; |
| 413 | |
| 414 | /* TSU_TEN */ |
| 415 | enum TSU_TEN_BIT { |
| 416 | TSU_TEN_0 = 0x80000000, |
| 417 | }; |
| 418 | |
| 419 | /* TSU_FWSL0 */ |
| 420 | enum TSU_FWSL0_BIT { |
| 421 | TSU_FWSL0_FW50 = 0x1000, TSU_FWSL0_FW40 = 0x0800, |
| 422 | TSU_FWSL0_FW30 = 0x0400, TSU_FWSL0_FW20 = 0x0200, |
| 423 | TSU_FWSL0_FW10 = 0x0100, TSU_FWSL0_RMSA0 = 0x0010, |
| 424 | }; |
| 425 | |
| 426 | /* TSU_FWSLC */ |
| 427 | enum TSU_FWSLC_BIT { |
| 428 | TSU_FWSLC_POSTENU = 0x2000, TSU_FWSLC_POSTENL = 0x1000, |
| 429 | TSU_FWSLC_CAMSEL03 = 0x0080, TSU_FWSLC_CAMSEL02 = 0x0040, |
| 430 | TSU_FWSLC_CAMSEL01 = 0x0020, TSU_FWSLC_CAMSEL00 = 0x0010, |
| 431 | TSU_FWSLC_CAMSEL13 = 0x0008, TSU_FWSLC_CAMSEL12 = 0x0004, |
| 432 | TSU_FWSLC_CAMSEL11 = 0x0002, TSU_FWSLC_CAMSEL10 = 0x0001, |
| 433 | }; |
| 434 | |
Yoshihiro Shimoda | 71cc7c3 | 2012-02-15 17:55:06 +0000 | [diff] [blame] | 435 | /* TSU_VTAGn */ |
| 436 | #define TSU_VTAG_ENABLE 0x80000000 |
| 437 | #define TSU_VTAG_VID_MASK 0x00000fff |
| 438 | |
Sergei Shtylyov | 128296f | 2014-01-03 15:52:22 +0300 | [diff] [blame] | 439 | /* The sh ether Tx buffer descriptors. |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 440 | * This structure should be 20 bytes. |
| 441 | */ |
| 442 | struct sh_eth_txdesc { |
| 443 | u32 status; /* TD0 */ |
Sergei Shtylyov | 5cbf20c | 2015-12-20 01:48:04 +0300 | [diff] [blame] | 444 | u32 len; /* TD1 */ |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 445 | u32 addr; /* TD2 */ |
Sergei Shtylyov | 5cbf20c | 2015-12-20 01:48:04 +0300 | [diff] [blame] | 446 | u32 pad0; /* padding data */ |
Sergei Shtylyov | 128296f | 2014-01-03 15:52:22 +0300 | [diff] [blame] | 447 | } __aligned(2) __packed; |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 448 | |
Sergei Shtylyov | 128296f | 2014-01-03 15:52:22 +0300 | [diff] [blame] | 449 | /* The sh ether Rx buffer descriptors. |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 450 | * This structure should be 20 bytes. |
| 451 | */ |
| 452 | struct sh_eth_rxdesc { |
| 453 | u32 status; /* RD0 */ |
Sergei Shtylyov | 5cbf20c | 2015-12-20 01:48:04 +0300 | [diff] [blame] | 454 | u32 len; /* RD1 */ |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 455 | u32 addr; /* RD2 */ |
| 456 | u32 pad0; /* padding data */ |
Sergei Shtylyov | 128296f | 2014-01-03 15:52:22 +0300 | [diff] [blame] | 457 | } __aligned(2) __packed; |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 458 | |
Yoshihiro Shimoda | 380af9e | 2009-05-24 23:54:21 +0000 | [diff] [blame] | 459 | /* This structure is used by each CPU dependency handling. */ |
| 460 | struct sh_eth_cpu_data { |
Sergei Shtylyov | 4ceedeb | 2018-03-24 23:07:41 +0300 | [diff] [blame] | 461 | /* mandatory functions */ |
| 462 | int (*soft_reset)(struct net_device *ndev); |
| 463 | |
Yoshihiro Shimoda | 380af9e | 2009-05-24 23:54:21 +0000 | [diff] [blame] | 464 | /* optional functions */ |
| 465 | void (*chip_reset)(struct net_device *ndev); |
| 466 | void (*set_duplex)(struct net_device *ndev); |
| 467 | void (*set_rate)(struct net_device *ndev); |
| 468 | |
| 469 | /* mandatory initialize value */ |
Sergei Shtylyov | a3153d8 | 2013-08-18 03:11:28 +0400 | [diff] [blame] | 470 | int register_type; |
Sergei Shtylyov | 3e41699 | 2018-03-24 23:08:42 +0300 | [diff] [blame] | 471 | u32 edtrr_trns; |
Geert Uytterhoeven | 0799c2d | 2015-01-15 11:54:28 +0100 | [diff] [blame] | 472 | u32 eesipr_value; |
Yoshihiro Shimoda | 380af9e | 2009-05-24 23:54:21 +0000 | [diff] [blame] | 473 | |
| 474 | /* optional initialize value */ |
Geert Uytterhoeven | 0799c2d | 2015-01-15 11:54:28 +0100 | [diff] [blame] | 475 | u32 ecsr_value; |
| 476 | u32 ecsipr_value; |
| 477 | u32 fdr_value; |
| 478 | u32 fcftr_value; |
Yoshihiro Shimoda | 380af9e | 2009-05-24 23:54:21 +0000 | [diff] [blame] | 479 | |
| 480 | /* interrupt checking mask */ |
Geert Uytterhoeven | 0799c2d | 2015-01-15 11:54:28 +0100 | [diff] [blame] | 481 | u32 tx_check; |
| 482 | u32 eesr_err_check; |
Yoshihiro Shimoda | 380af9e | 2009-05-24 23:54:21 +0000 | [diff] [blame] | 483 | |
Nobuhiro Iwamatsu | b284fbe | 2015-01-08 15:25:07 +0900 | [diff] [blame] | 484 | /* Error mask */ |
Geert Uytterhoeven | 0799c2d | 2015-01-15 11:54:28 +0100 | [diff] [blame] | 485 | u32 trscer_err_mask; |
Nobuhiro Iwamatsu | b284fbe | 2015-01-08 15:25:07 +0900 | [diff] [blame] | 486 | |
Yoshihiro Shimoda | 380af9e | 2009-05-24 23:54:21 +0000 | [diff] [blame] | 487 | /* hardware features */ |
Sergei Shtylyov | 128296f | 2014-01-03 15:52:22 +0300 | [diff] [blame] | 488 | unsigned long irq_flags; /* IRQ configuration flags */ |
Sergei Shtylyov | 9c59c9a | 2018-05-20 00:03:42 +0300 | [diff] [blame] | 489 | unsigned no_psr:1; /* EtherC DOES NOT have PSR */ |
| 490 | unsigned apr:1; /* EtherC has APR */ |
| 491 | unsigned mpr:1; /* EtherC has MPR */ |
| 492 | unsigned tpauser:1; /* EtherC has TPAUSER */ |
| 493 | unsigned bculr:1; /* EtherC has BCULR */ |
| 494 | unsigned tsu:1; /* EtherC has TSU */ |
| 495 | unsigned hw_swap:1; /* E-DMAC has DE bit in EDMR */ |
Sergei Shtylyov | 93f0fa7 | 2018-05-18 21:31:28 +0300 | [diff] [blame] | 496 | unsigned nbst:1; /* E-DMAC has NBST bit in EDMR */ |
Sergei Shtylyov | 9c59c9a | 2018-05-20 00:03:42 +0300 | [diff] [blame] | 497 | unsigned rpadir:1; /* E-DMAC has RPADIR */ |
| 498 | unsigned no_trimd:1; /* E-DMAC DOES NOT have TRIMD */ |
| 499 | unsigned no_ade:1; /* E-DMAC DOES NOT have ADE bit in EESR */ |
Sergei Shtylyov | 6e80e55 | 2018-04-01 00:22:08 +0300 | [diff] [blame] | 500 | unsigned no_xdfar:1; /* E-DMAC DOES NOT have RDFAR/TDFAR */ |
Sergei Shtylyov | 246e30c | 2018-03-24 23:09:55 +0300 | [diff] [blame] | 501 | unsigned xdfar_rw:1; /* E-DMAC has writeable RDFAR/TDFAR */ |
Sergei Shtylyov | 2c2ab5a | 2019-02-04 21:05:55 +0300 | [diff] [blame] | 502 | unsigned csmr:1; /* E-DMAC has CSMR */ |
Sergei Shtylyov | f8e022d | 2019-02-04 21:06:52 +0300 | [diff] [blame] | 503 | unsigned rx_csum:1; /* EtherC has ECMR.RCSC */ |
Sergei Shtylyov | 9c59c9a | 2018-05-20 00:03:42 +0300 | [diff] [blame] | 504 | unsigned select_mii:1; /* EtherC has RMII_MII (MII select register) */ |
Simon Horman | 55754f1 | 2013-07-23 10:18:04 +0900 | [diff] [blame] | 505 | unsigned rmiimode:1; /* EtherC has RMIIMODE register */ |
Ben Hutchings | 6b4b4fe | 2015-02-26 20:34:35 +0000 | [diff] [blame] | 506 | unsigned rtrate:1; /* EtherC has RTRATE register */ |
Niklas Söderlund | d8981d0 | 2017-01-09 16:34:05 +0100 | [diff] [blame] | 507 | unsigned magic:1; /* EtherC has ECMR.MPDE and ECSR.MPD */ |
Sergei Shtylyov | ce9134d | 2018-03-24 23:11:19 +0300 | [diff] [blame] | 508 | unsigned no_tx_cntrs:1; /* EtherC DOES NOT have TX error counters */ |
Sergei Shtylyov | 4c1d458 | 2018-03-24 23:12:54 +0300 | [diff] [blame] | 509 | unsigned cexcr:1; /* EtherC has CERCR/CEECR */ |
Sergei Shtylyov | a94cf2a | 2018-02-24 22:41:45 +0300 | [diff] [blame] | 510 | unsigned dual_port:1; /* Dual EtherC/E-DMAC */ |
Yoshihiro Shimoda | 380af9e | 2009-05-24 23:54:21 +0000 | [diff] [blame] | 511 | }; |
| 512 | |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 513 | struct sh_eth_private { |
Magnus Damm | bcd5149 | 2009-10-09 00:20:04 +0000 | [diff] [blame] | 514 | struct platform_device *pdev; |
Yoshihiro Shimoda | 380af9e | 2009-05-24 23:54:21 +0000 | [diff] [blame] | 515 | struct sh_eth_cpu_data *cd; |
Yoshihiro Shimoda | 4a55530 | 2011-03-07 21:59:26 +0000 | [diff] [blame] | 516 | const u16 *reg_offset; |
Yoshihiro Shimoda | ae70644 | 2011-09-27 21:48:58 +0000 | [diff] [blame] | 517 | void __iomem *addr; |
Yoshihiro Shimoda | 4a55530 | 2011-03-07 21:59:26 +0000 | [diff] [blame] | 518 | void __iomem *tsu_addr; |
Niklas Söderlund | d8981d0 | 2017-01-09 16:34:05 +0100 | [diff] [blame] | 519 | struct clk *clk; |
Yoshihiro Shimoda | 525b807 | 2012-06-26 20:00:03 +0000 | [diff] [blame] | 520 | u32 num_rx_ring; |
| 521 | u32 num_tx_ring; |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 522 | dma_addr_t rx_desc_dma; |
| 523 | dma_addr_t tx_desc_dma; |
| 524 | struct sh_eth_rxdesc *rx_ring; |
| 525 | struct sh_eth_txdesc *tx_ring; |
| 526 | struct sk_buff **rx_skbuff; |
| 527 | struct sk_buff **tx_skbuff; |
Sergei Shtylyov | 128296f | 2014-01-03 15:52:22 +0300 | [diff] [blame] | 528 | spinlock_t lock; /* Register access lock */ |
| 529 | u32 cur_rx, dirty_rx; /* Producer/consumer ring indices */ |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 530 | u32 cur_tx, dirty_tx; |
Sergei Shtylyov | 128296f | 2014-01-03 15:52:22 +0300 | [diff] [blame] | 531 | u32 rx_buf_sz; /* Based on MTU+slack. */ |
Sergei Shtylyov | 3719109 | 2013-06-19 23:30:23 +0400 | [diff] [blame] | 532 | struct napi_struct napi; |
Ben Hutchings | 283e38d | 2015-01-22 12:44:08 +0000 | [diff] [blame] | 533 | bool irq_enabled; |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 534 | /* MII transceiver section. */ |
Sergei Shtylyov | 128296f | 2014-01-03 15:52:22 +0300 | [diff] [blame] | 535 | u32 phy_id; /* PHY ID */ |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 536 | struct mii_bus *mii_bus; /* MDIO bus control */ |
Sergei Shtylyov | 3340d2a | 2013-03-31 10:11:04 +0000 | [diff] [blame] | 537 | int link; |
Yoshihiro Shimoda | e47c905 | 2011-03-07 21:59:45 +0000 | [diff] [blame] | 538 | phy_interface_t phy_interface; |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 539 | int msg_enable; |
| 540 | int speed; |
| 541 | int duplex; |
Sergei Shtylyov | 128296f | 2014-01-03 15:52:22 +0300 | [diff] [blame] | 542 | int port; /* for TSU */ |
| 543 | int vlan_num_ids; /* for VLAN tag filter */ |
Yoshihiro Shimoda | 4923576 | 2009-08-27 23:25:03 +0000 | [diff] [blame] | 544 | |
| 545 | unsigned no_ether_link:1; |
| 546 | unsigned ether_link_active_low:1; |
Mitsuhiro Kimura | 7fa2955 | 2014-11-28 10:04:15 +0900 | [diff] [blame] | 547 | unsigned is_opened:1; |
Niklas Söderlund | d8981d0 | 2017-01-09 16:34:05 +0100 | [diff] [blame] | 548 | unsigned wol_enabled:1; |
Nobuhiro Iwamatsu | 86a74ff | 2008-06-09 16:33:56 -0700 | [diff] [blame] | 549 | }; |
| 550 | |
Yoshihiro Shimoda | 380af9e | 2009-05-24 23:54:21 +0000 | [diff] [blame] | 551 | #endif /* #ifndef __SH_ETH_H__ */ |