Giuseppe Cavallaro | 47dd7a5 | 2009-10-14 15:13:45 -0700 | [diff] [blame] | 1 | /******************************************************************************* |
| 2 | STMMAC Common Header File |
| 3 | |
| 4 | Copyright (C) 2007-2009 STMicroelectronics Ltd |
| 5 | |
| 6 | This program is free software; you can redistribute it and/or modify it |
| 7 | under the terms and conditions of the GNU General Public License, |
| 8 | version 2, as published by the Free Software Foundation. |
| 9 | |
| 10 | This program is distributed in the hope it will be useful, but WITHOUT |
| 11 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 12 | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 13 | more details. |
| 14 | |
| 15 | You should have received a copy of the GNU General Public License along with |
| 16 | this program; if not, write to the Free Software Foundation, Inc., |
| 17 | 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. |
| 18 | |
| 19 | The full GNU General Public License is included in this distribution in |
| 20 | the file called "COPYING". |
| 21 | |
| 22 | Author: Giuseppe Cavallaro <peppe.cavallaro@st.com> |
| 23 | *******************************************************************************/ |
| 24 | |
Giuseppe CAVALLARO | bfab27a | 2011-12-21 03:58:19 +0000 | [diff] [blame] | 25 | #include <linux/etherdevice.h> |
Giuseppe CAVALLARO | 5e33c79 | 2010-01-06 23:07:21 +0000 | [diff] [blame] | 26 | #include <linux/netdevice.h> |
Giuseppe CAVALLARO | bfab27a | 2011-12-21 03:58:19 +0000 | [diff] [blame] | 27 | #include <linux/phy.h> |
| 28 | #include <linux/module.h> |
| 29 | #include <linux/init.h> |
Giuseppe CAVALLARO | 8f61754 | 2010-04-13 20:21:16 +0000 | [diff] [blame] | 30 | #if defined(CONFIG_VLAN_8021Q) || defined(CONFIG_VLAN_8021Q_MODULE) |
| 31 | #define STMMAC_VLAN_TAG_USED |
| 32 | #include <linux/if_vlan.h> |
| 33 | #endif |
| 34 | |
Giuseppe CAVALLARO | 56b106a | 2010-04-13 20:21:12 +0000 | [diff] [blame] | 35 | #include "descs.h" |
Giuseppe CAVALLARO | 1c901a4 | 2011-09-01 21:51:38 +0000 | [diff] [blame] | 36 | #include "mmc.h" |
Giuseppe CAVALLARO | 56b106a | 2010-04-13 20:21:12 +0000 | [diff] [blame] | 37 | |
| 38 | #undef CHIP_DEBUG_PRINT |
| 39 | /* Turn-on extra printk debug for MAC core, dma and descriptors */ |
| 40 | /* #define CHIP_DEBUG_PRINT */ |
| 41 | |
| 42 | #ifdef CHIP_DEBUG_PRINT |
| 43 | #define CHIP_DBG(fmt, args...) printk(fmt, ## args) |
| 44 | #else |
| 45 | #define CHIP_DBG(fmt, args...) do { } while (0) |
| 46 | #endif |
| 47 | |
| 48 | #undef FRAME_FILTER_DEBUG |
| 49 | /* #define FRAME_FILTER_DEBUG */ |
Giuseppe Cavallaro | 47dd7a5 | 2009-10-14 15:13:45 -0700 | [diff] [blame] | 50 | |
Giuseppe Cavallaro | 47dd7a5 | 2009-10-14 15:13:45 -0700 | [diff] [blame] | 51 | struct stmmac_extra_stats { |
| 52 | /* Transmit errors */ |
| 53 | unsigned long tx_underflow ____cacheline_aligned; |
| 54 | unsigned long tx_carrier; |
| 55 | unsigned long tx_losscarrier; |
Giuseppe CAVALLARO | 3c20f72 | 2011-10-26 19:43:09 +0000 | [diff] [blame] | 56 | unsigned long vlan_tag; |
Giuseppe Cavallaro | 47dd7a5 | 2009-10-14 15:13:45 -0700 | [diff] [blame] | 57 | unsigned long tx_deferred; |
| 58 | unsigned long tx_vlan; |
| 59 | unsigned long tx_jabber; |
| 60 | unsigned long tx_frame_flushed; |
| 61 | unsigned long tx_payload_error; |
| 62 | unsigned long tx_ip_header_error; |
| 63 | /* Receive errors */ |
| 64 | unsigned long rx_desc; |
Giuseppe CAVALLARO | 3c20f72 | 2011-10-26 19:43:09 +0000 | [diff] [blame] | 65 | unsigned long sa_filter_fail; |
| 66 | unsigned long overflow_error; |
| 67 | unsigned long ipc_csum_error; |
Giuseppe Cavallaro | 47dd7a5 | 2009-10-14 15:13:45 -0700 | [diff] [blame] | 68 | unsigned long rx_collision; |
| 69 | unsigned long rx_crc; |
Giuseppe CAVALLARO | 1cc5a73 | 2012-02-15 00:10:37 +0000 | [diff] [blame^] | 70 | unsigned long dribbling_bit; |
Giuseppe Cavallaro | 1b92403 | 2010-02-04 09:33:21 -0800 | [diff] [blame] | 71 | unsigned long rx_length; |
Giuseppe Cavallaro | 47dd7a5 | 2009-10-14 15:13:45 -0700 | [diff] [blame] | 72 | unsigned long rx_mii; |
| 73 | unsigned long rx_multicast; |
| 74 | unsigned long rx_gmac_overflow; |
| 75 | unsigned long rx_watchdog; |
| 76 | unsigned long da_rx_filter_fail; |
| 77 | unsigned long sa_rx_filter_fail; |
| 78 | unsigned long rx_missed_cntr; |
| 79 | unsigned long rx_overflow_cntr; |
| 80 | unsigned long rx_vlan; |
| 81 | /* Tx/Rx IRQ errors */ |
| 82 | unsigned long tx_undeflow_irq; |
| 83 | unsigned long tx_process_stopped_irq; |
| 84 | unsigned long tx_jabber_irq; |
| 85 | unsigned long rx_overflow_irq; |
| 86 | unsigned long rx_buf_unav_irq; |
| 87 | unsigned long rx_process_stopped_irq; |
| 88 | unsigned long rx_watchdog_irq; |
| 89 | unsigned long tx_early_irq; |
| 90 | unsigned long fatal_bus_error_irq; |
| 91 | /* Extra info */ |
| 92 | unsigned long threshold; |
| 93 | unsigned long tx_pkt_n; |
| 94 | unsigned long rx_pkt_n; |
| 95 | unsigned long poll_n; |
| 96 | unsigned long sched_timer_n; |
| 97 | unsigned long normal_irq_n; |
| 98 | }; |
| 99 | |
Giuseppe CAVALLARO | aec7ff2 | 2010-01-06 23:07:18 +0000 | [diff] [blame] | 100 | #define HASH_TABLE_SIZE 64 |
| 101 | #define PAUSE_TIME 0x200 |
| 102 | |
| 103 | /* Flow Control defines */ |
| 104 | #define FLOW_OFF 0 |
| 105 | #define FLOW_RX 1 |
| 106 | #define FLOW_TX 2 |
| 107 | #define FLOW_AUTO (FLOW_TX | FLOW_RX) |
| 108 | |
| 109 | #define SF_DMA_MODE 1 /* DMA STORE-AND-FORWARD Operation Mode */ |
| 110 | |
Rayagond Kokatanur | 1db123f | 2011-10-18 00:01:22 +0000 | [diff] [blame] | 111 | /* DAM HW feature register fields */ |
| 112 | #define DMA_HW_FEAT_MIISEL 0x00000001 /* 10/100 Mbps Support */ |
| 113 | #define DMA_HW_FEAT_GMIISEL 0x00000002 /* 1000 Mbps Support */ |
| 114 | #define DMA_HW_FEAT_HDSEL 0x00000004 /* Half-Duplex Support */ |
| 115 | #define DMA_HW_FEAT_EXTHASHEN 0x00000008 /* Expanded DA Hash Filter */ |
| 116 | #define DMA_HW_FEAT_HASHSEL 0x00000010 /* HASH Filter */ |
| 117 | #define DMA_HW_FEAT_ADDMACADRSEL 0x00000020 /* Multiple MAC Addr Reg */ |
| 118 | #define DMA_HW_FEAT_PCSSEL 0x00000040 /* PCS registers */ |
| 119 | #define DMA_HW_FEAT_L3L4FLTREN 0x00000080 /* Layer 3 & Layer 4 Feature */ |
| 120 | #define DMA_HW_FEAT_SMASEL 0x00000100 /* SMA(MDIO) Interface */ |
| 121 | #define DMA_HW_FEAT_RWKSEL 0x00000200 /* PMT Remote Wakeup */ |
| 122 | #define DMA_HW_FEAT_MGKSEL 0x00000400 /* PMT Magic Packet */ |
| 123 | #define DMA_HW_FEAT_MMCSEL 0x00000800 /* RMON Module */ |
| 124 | #define DMA_HW_FEAT_TSVER1SEL 0x00001000 /* Only IEEE 1588-2002 Timestamp */ |
| 125 | #define DMA_HW_FEAT_TSVER2SEL 0x00002000 /* IEEE 1588-2008 Adv Timestamp */ |
| 126 | #define DMA_HW_FEAT_EEESEL 0x00004000 /* Energy Efficient Ethernet */ |
| 127 | #define DMA_HW_FEAT_AVSEL 0x00008000 /* AV Feature */ |
| 128 | #define DMA_HW_FEAT_TXCOESEL 0x00010000 /* Checksum Offload in Tx */ |
| 129 | #define DMA_HW_FEAT_RXTYP1COE 0x00020000 /* IP csum Offload(Type 1) in Rx */ |
| 130 | #define DMA_HW_FEAT_RXTYP2COE 0x00040000 /* IP csum Offload(Type 2) in Rx */ |
| 131 | #define DMA_HW_FEAT_RXFIFOSIZE 0x00080000 /* Rx FIFO > 2048 Bytes */ |
| 132 | #define DMA_HW_FEAT_RXCHCNT 0x00300000 /* No. of additional Rx Channels */ |
| 133 | #define DMA_HW_FEAT_TXCHCNT 0x00c00000 /* No. of additional Tx Channels */ |
| 134 | #define DMA_HW_FEAT_ENHDESSEL 0x01000000 /* Alternate (Enhanced Descriptor) */ |
| 135 | #define DMA_HW_FEAT_INTTSEN 0x02000000 /* Timestamping with Internal |
| 136 | System Time */ |
| 137 | #define DMA_HW_FEAT_FLEXIPPSEN 0x04000000 /* Flexible PPS Output */ |
| 138 | #define DMA_HW_FEAT_SAVLANINS 0x08000000 /* Source Addr or VLAN Insertion */ |
| 139 | #define DMA_HW_FEAT_ACTPHYIF 0x70000000 /* Active/selected PHY interface */ |
| 140 | |
Giuseppe CAVALLARO | aec7ff2 | 2010-01-06 23:07:18 +0000 | [diff] [blame] | 141 | enum rx_frame_status { /* IPC status */ |
Giuseppe Cavallaro | 47dd7a5 | 2009-10-14 15:13:45 -0700 | [diff] [blame] | 142 | good_frame = 0, |
| 143 | discard_frame = 1, |
| 144 | csum_none = 2, |
Giuseppe CAVALLARO | 3eeb299 | 2010-07-27 00:09:47 +0000 | [diff] [blame] | 145 | llc_snap = 4, |
Giuseppe Cavallaro | 47dd7a5 | 2009-10-14 15:13:45 -0700 | [diff] [blame] | 146 | }; |
| 147 | |
Giuseppe CAVALLARO | aec7ff2 | 2010-01-06 23:07:18 +0000 | [diff] [blame] | 148 | enum tx_dma_irq_status { |
| 149 | tx_hard_error = 1, |
| 150 | tx_hard_error_bump_tc = 2, |
| 151 | handle_tx_rx = 3, |
| 152 | }; |
Giuseppe Cavallaro | 47dd7a5 | 2009-10-14 15:13:45 -0700 | [diff] [blame] | 153 | |
Giuseppe CAVALLARO | e743482 | 2011-09-01 21:51:41 +0000 | [diff] [blame] | 154 | /* DMA HW capabilities */ |
| 155 | struct dma_features { |
| 156 | unsigned int mbps_10_100; |
| 157 | unsigned int mbps_1000; |
| 158 | unsigned int half_duplex; |
| 159 | unsigned int hash_filter; |
| 160 | unsigned int multi_addr; |
| 161 | unsigned int pcs; |
| 162 | unsigned int sma_mdio; |
| 163 | unsigned int pmt_remote_wake_up; |
| 164 | unsigned int pmt_magic_frame; |
| 165 | unsigned int rmon; |
| 166 | /* IEEE 1588-2002*/ |
| 167 | unsigned int time_stamp; |
| 168 | /* IEEE 1588-2008*/ |
| 169 | unsigned int atime_stamp; |
| 170 | /* 802.3az - Energy-Efficient Ethernet (EEE) */ |
| 171 | unsigned int eee; |
| 172 | unsigned int av; |
| 173 | /* TX and RX csum */ |
| 174 | unsigned int tx_coe; |
| 175 | unsigned int rx_coe_type1; |
| 176 | unsigned int rx_coe_type2; |
| 177 | unsigned int rxfifo_over_2048; |
| 178 | /* TX and RX number of channels */ |
| 179 | unsigned int number_rx_channel; |
| 180 | unsigned int number_tx_channel; |
| 181 | /* Alternate (enhanced) DESC mode*/ |
| 182 | unsigned int enh_desc; |
| 183 | }; |
| 184 | |
Giuseppe CAVALLARO | aec7ff2 | 2010-01-06 23:07:18 +0000 | [diff] [blame] | 185 | /* GMAC TX FIFO is 8K, Rx FIFO is 16K */ |
| 186 | #define BUF_SIZE_16KiB 16384 |
| 187 | #define BUF_SIZE_8KiB 8192 |
| 188 | #define BUF_SIZE_4KiB 4096 |
| 189 | #define BUF_SIZE_2KiB 2048 |
Giuseppe Cavallaro | 47dd7a5 | 2009-10-14 15:13:45 -0700 | [diff] [blame] | 190 | |
Giuseppe CAVALLARO | aec7ff2 | 2010-01-06 23:07:18 +0000 | [diff] [blame] | 191 | /* Power Down and WOL */ |
| 192 | #define PMT_NOT_SUPPORTED 0 |
| 193 | #define PMT_SUPPORTED 1 |
Giuseppe Cavallaro | 47dd7a5 | 2009-10-14 15:13:45 -0700 | [diff] [blame] | 194 | |
Giuseppe CAVALLARO | aec7ff2 | 2010-01-06 23:07:18 +0000 | [diff] [blame] | 195 | /* Common MAC defines */ |
| 196 | #define MAC_CTRL_REG 0x00000000 /* MAC Control */ |
| 197 | #define MAC_ENABLE_TX 0x00000008 /* Transmitter Enable */ |
| 198 | #define MAC_RNABLE_RX 0x00000004 /* Receiver Enable */ |
Giuseppe Cavallaro | 47dd7a5 | 2009-10-14 15:13:45 -0700 | [diff] [blame] | 199 | |
Giuseppe CAVALLARO | db98a0b | 2010-01-06 23:07:17 +0000 | [diff] [blame] | 200 | struct stmmac_desc_ops { |
| 201 | /* DMA RX descriptor ring initialization */ |
Giuseppe Cavallaro | 47dd7a5 | 2009-10-14 15:13:45 -0700 | [diff] [blame] | 202 | void (*init_rx_desc) (struct dma_desc *p, unsigned int ring_size, |
Giuseppe CAVALLARO | db98a0b | 2010-01-06 23:07:17 +0000 | [diff] [blame] | 203 | int disable_rx_ic); |
| 204 | /* DMA TX descriptor ring initialization */ |
Giuseppe Cavallaro | 47dd7a5 | 2009-10-14 15:13:45 -0700 | [diff] [blame] | 205 | void (*init_tx_desc) (struct dma_desc *p, unsigned int ring_size); |
| 206 | |
| 207 | /* Invoked by the xmit function to prepare the tx descriptor */ |
| 208 | void (*prepare_tx_desc) (struct dma_desc *p, int is_fs, int len, |
| 209 | int csum_flag); |
| 210 | /* Set/get the owner of the descriptor */ |
| 211 | void (*set_tx_owner) (struct dma_desc *p); |
| 212 | int (*get_tx_owner) (struct dma_desc *p); |
| 213 | /* Invoked by the xmit function to close the tx descriptor */ |
| 214 | void (*close_tx_desc) (struct dma_desc *p); |
| 215 | /* Clean the tx descriptor as soon as the tx irq is received */ |
| 216 | void (*release_tx_desc) (struct dma_desc *p); |
| 217 | /* Clear interrupt on tx frame completion. When this bit is |
| 218 | * set an interrupt happens as soon as the frame is transmitted */ |
| 219 | void (*clear_tx_ic) (struct dma_desc *p); |
| 220 | /* Last tx segment reports the transmit status */ |
| 221 | int (*get_tx_ls) (struct dma_desc *p); |
| 222 | /* Return the transmit status looking at the TDES1 */ |
| 223 | int (*tx_status) (void *data, struct stmmac_extra_stats *x, |
Giuseppe CAVALLARO | ad01b7d | 2010-08-23 20:40:42 +0000 | [diff] [blame] | 224 | struct dma_desc *p, void __iomem *ioaddr); |
Giuseppe Cavallaro | 47dd7a5 | 2009-10-14 15:13:45 -0700 | [diff] [blame] | 225 | /* Get the buffer size from the descriptor */ |
| 226 | int (*get_tx_len) (struct dma_desc *p); |
| 227 | /* Handle extra events on specific interrupts hw dependent */ |
Giuseppe Cavallaro | 47dd7a5 | 2009-10-14 15:13:45 -0700 | [diff] [blame] | 228 | int (*get_rx_owner) (struct dma_desc *p); |
| 229 | void (*set_rx_owner) (struct dma_desc *p); |
| 230 | /* Get the receive frame size */ |
| 231 | int (*get_rx_frame_len) (struct dma_desc *p); |
| 232 | /* Return the reception status looking at the RDES1 */ |
| 233 | int (*rx_status) (void *data, struct stmmac_extra_stats *x, |
| 234 | struct dma_desc *p); |
Giuseppe CAVALLARO | db98a0b | 2010-01-06 23:07:17 +0000 | [diff] [blame] | 235 | }; |
| 236 | |
| 237 | struct stmmac_dma_ops { |
| 238 | /* DMA core initialization */ |
Giuseppe CAVALLARO | ad01b7d | 2010-08-23 20:40:42 +0000 | [diff] [blame] | 239 | int (*init) (void __iomem *ioaddr, int pbl, u32 dma_tx, u32 dma_rx); |
Giuseppe CAVALLARO | db98a0b | 2010-01-06 23:07:17 +0000 | [diff] [blame] | 240 | /* Dump DMA registers */ |
Giuseppe CAVALLARO | ad01b7d | 2010-08-23 20:40:42 +0000 | [diff] [blame] | 241 | void (*dump_regs) (void __iomem *ioaddr); |
Giuseppe CAVALLARO | db98a0b | 2010-01-06 23:07:17 +0000 | [diff] [blame] | 242 | /* Set tx/rx threshold in the csr6 register |
| 243 | * An invalid value enables the store-and-forward mode */ |
Giuseppe CAVALLARO | ad01b7d | 2010-08-23 20:40:42 +0000 | [diff] [blame] | 244 | void (*dma_mode) (void __iomem *ioaddr, int txmode, int rxmode); |
Giuseppe CAVALLARO | db98a0b | 2010-01-06 23:07:17 +0000 | [diff] [blame] | 245 | /* To track extra statistic (if supported) */ |
| 246 | void (*dma_diagnostic_fr) (void *data, struct stmmac_extra_stats *x, |
Giuseppe CAVALLARO | ad01b7d | 2010-08-23 20:40:42 +0000 | [diff] [blame] | 247 | void __iomem *ioaddr); |
| 248 | void (*enable_dma_transmission) (void __iomem *ioaddr); |
| 249 | void (*enable_dma_irq) (void __iomem *ioaddr); |
| 250 | void (*disable_dma_irq) (void __iomem *ioaddr); |
| 251 | void (*start_tx) (void __iomem *ioaddr); |
| 252 | void (*stop_tx) (void __iomem *ioaddr); |
| 253 | void (*start_rx) (void __iomem *ioaddr); |
| 254 | void (*stop_rx) (void __iomem *ioaddr); |
| 255 | int (*dma_interrupt) (void __iomem *ioaddr, |
Giuseppe CAVALLARO | aec7ff2 | 2010-01-06 23:07:18 +0000 | [diff] [blame] | 256 | struct stmmac_extra_stats *x); |
Giuseppe CAVALLARO | e743482 | 2011-09-01 21:51:41 +0000 | [diff] [blame] | 257 | /* If supported then get the optional core features */ |
| 258 | unsigned int (*get_hw_feature) (void __iomem *ioaddr); |
Giuseppe CAVALLARO | db98a0b | 2010-01-06 23:07:17 +0000 | [diff] [blame] | 259 | }; |
| 260 | |
| 261 | struct stmmac_ops { |
| 262 | /* MAC core initialization */ |
Giuseppe CAVALLARO | ad01b7d | 2010-08-23 20:40:42 +0000 | [diff] [blame] | 263 | void (*core_init) (void __iomem *ioaddr) ____cacheline_aligned; |
Giuseppe CAVALLARO | ebbb293 | 2010-09-17 03:23:40 +0000 | [diff] [blame] | 264 | /* Support checksum offload engine */ |
| 265 | int (*rx_coe) (void __iomem *ioaddr); |
Giuseppe CAVALLARO | db98a0b | 2010-01-06 23:07:17 +0000 | [diff] [blame] | 266 | /* Dump MAC registers */ |
Giuseppe CAVALLARO | ad01b7d | 2010-08-23 20:40:42 +0000 | [diff] [blame] | 267 | void (*dump_regs) (void __iomem *ioaddr); |
Giuseppe CAVALLARO | db98a0b | 2010-01-06 23:07:17 +0000 | [diff] [blame] | 268 | /* Handle extra events on specific interrupts hw dependent */ |
Giuseppe CAVALLARO | ad01b7d | 2010-08-23 20:40:42 +0000 | [diff] [blame] | 269 | void (*host_irq_status) (void __iomem *ioaddr); |
Giuseppe Cavallaro | 47dd7a5 | 2009-10-14 15:13:45 -0700 | [diff] [blame] | 270 | /* Multicast filter setting */ |
| 271 | void (*set_filter) (struct net_device *dev); |
| 272 | /* Flow control setting */ |
Giuseppe CAVALLARO | ad01b7d | 2010-08-23 20:40:42 +0000 | [diff] [blame] | 273 | void (*flow_ctrl) (void __iomem *ioaddr, unsigned int duplex, |
Giuseppe Cavallaro | 47dd7a5 | 2009-10-14 15:13:45 -0700 | [diff] [blame] | 274 | unsigned int fc, unsigned int pause_time); |
| 275 | /* Set power management mode (e.g. magic frame) */ |
Giuseppe CAVALLARO | ad01b7d | 2010-08-23 20:40:42 +0000 | [diff] [blame] | 276 | void (*pmt) (void __iomem *ioaddr, unsigned long mode); |
Giuseppe Cavallaro | 47dd7a5 | 2009-10-14 15:13:45 -0700 | [diff] [blame] | 277 | /* Set/Get Unicast MAC addresses */ |
Giuseppe CAVALLARO | ad01b7d | 2010-08-23 20:40:42 +0000 | [diff] [blame] | 278 | void (*set_umac_addr) (void __iomem *ioaddr, unsigned char *addr, |
Giuseppe CAVALLARO | db98a0b | 2010-01-06 23:07:17 +0000 | [diff] [blame] | 279 | unsigned int reg_n); |
Giuseppe CAVALLARO | ad01b7d | 2010-08-23 20:40:42 +0000 | [diff] [blame] | 280 | void (*get_umac_addr) (void __iomem *ioaddr, unsigned char *addr, |
Giuseppe CAVALLARO | db98a0b | 2010-01-06 23:07:17 +0000 | [diff] [blame] | 281 | unsigned int reg_n); |
Giuseppe Cavallaro | 47dd7a5 | 2009-10-14 15:13:45 -0700 | [diff] [blame] | 282 | }; |
| 283 | |
| 284 | struct mac_link { |
| 285 | int port; |
| 286 | int duplex; |
| 287 | int speed; |
| 288 | }; |
| 289 | |
| 290 | struct mii_regs { |
| 291 | unsigned int addr; /* MII Address */ |
| 292 | unsigned int data; /* MII Data */ |
| 293 | }; |
| 294 | |
Giuseppe CAVALLARO | 286a837 | 2011-10-18 00:01:24 +0000 | [diff] [blame] | 295 | struct stmmac_ring_mode_ops { |
| 296 | unsigned int (*is_jumbo_frm) (int len, int ehn_desc); |
| 297 | unsigned int (*jumbo_frm) (void *priv, struct sk_buff *skb, int csum); |
| 298 | void (*refill_desc3) (int bfsize, struct dma_desc *p); |
| 299 | void (*init_desc3) (int des3_as_data_buf, struct dma_desc *p); |
| 300 | void (*init_dma_chain) (struct dma_desc *des, dma_addr_t phy_addr, |
| 301 | unsigned int size); |
| 302 | void (*clean_desc3) (struct dma_desc *p); |
| 303 | int (*set_16kib_bfsize) (int mtu); |
| 304 | }; |
| 305 | |
Giuseppe Cavallaro | 47dd7a5 | 2009-10-14 15:13:45 -0700 | [diff] [blame] | 306 | struct mac_device_info { |
stephen hemminger | cadb792 | 2010-10-13 14:51:25 +0000 | [diff] [blame] | 307 | const struct stmmac_ops *mac; |
| 308 | const struct stmmac_desc_ops *desc; |
| 309 | const struct stmmac_dma_ops *dma; |
Giuseppe CAVALLARO | 286a837 | 2011-10-18 00:01:24 +0000 | [diff] [blame] | 310 | const struct stmmac_ring_mode_ops *ring; |
Giuseppe CAVALLARO | db98a0b | 2010-01-06 23:07:17 +0000 | [diff] [blame] | 311 | struct mii_regs mii; /* MII register Addresses */ |
| 312 | struct mac_link link; |
Giuseppe CAVALLARO | f0b9d78 | 2011-09-01 21:51:40 +0000 | [diff] [blame] | 313 | unsigned int synopsys_uid; |
Giuseppe Cavallaro | 47dd7a5 | 2009-10-14 15:13:45 -0700 | [diff] [blame] | 314 | }; |
| 315 | |
Giuseppe CAVALLARO | ad01b7d | 2010-08-23 20:40:42 +0000 | [diff] [blame] | 316 | struct mac_device_info *dwmac1000_setup(void __iomem *ioaddr); |
| 317 | struct mac_device_info *dwmac100_setup(void __iomem *ioaddr); |
Giuseppe CAVALLARO | aec7ff2 | 2010-01-06 23:07:18 +0000 | [diff] [blame] | 318 | |
Giuseppe CAVALLARO | ad01b7d | 2010-08-23 20:40:42 +0000 | [diff] [blame] | 319 | extern void stmmac_set_mac_addr(void __iomem *ioaddr, u8 addr[6], |
Giuseppe CAVALLARO | aec7ff2 | 2010-01-06 23:07:18 +0000 | [diff] [blame] | 320 | unsigned int high, unsigned int low); |
Giuseppe CAVALLARO | ad01b7d | 2010-08-23 20:40:42 +0000 | [diff] [blame] | 321 | extern void stmmac_get_mac_addr(void __iomem *ioaddr, unsigned char *addr, |
Giuseppe CAVALLARO | aec7ff2 | 2010-01-06 23:07:18 +0000 | [diff] [blame] | 322 | unsigned int high, unsigned int low); |
Giuseppe CAVALLARO | bfab27a | 2011-12-21 03:58:19 +0000 | [diff] [blame] | 323 | |
| 324 | extern void stmmac_set_mac(void __iomem *ioaddr, bool enable); |
| 325 | |
Giuseppe CAVALLARO | ad01b7d | 2010-08-23 20:40:42 +0000 | [diff] [blame] | 326 | extern void dwmac_dma_flush_tx_fifo(void __iomem *ioaddr); |
Giuseppe CAVALLARO | 286a837 | 2011-10-18 00:01:24 +0000 | [diff] [blame] | 327 | extern const struct stmmac_ring_mode_ops ring_mode_ops; |