2 * DaVinci Ethernet Medium Access Controller
4 * DaVinci EMAC is based upon CPPI 3.0 TI DMA engine
6 * Copyright (C) 2009 Texas Instruments.
8 * ---------------------------------------------------------------------------
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 * ---------------------------------------------------------------------------
25 * 0-5 A number of folks worked on this driver in bits and pieces but the major
26 * contribution came from Suraj Iyer and Anant Gole
27 * 6.0 Anant Gole - rewrote the driver as per Linux conventions
28 * 6.1 Chaithrika U S - added support for Gigabit and RMII features,
32 #include <linux/module.h>
33 #include <linux/kernel.h>
34 #include <linux/sched.h>
35 #include <linux/string.h>
36 #include <linux/timer.h>
37 #include <linux/errno.h>
39 #include <linux/ioport.h>
40 #include <linux/slab.h>
42 #include <linux/interrupt.h>
43 #include <linux/init.h>
44 #include <linux/netdevice.h>
45 #include <linux/etherdevice.h>
46 #include <linux/skbuff.h>
47 #include <linux/ethtool.h>
48 #include <linux/highmem.h>
49 #include <linux/proc_fs.h>
50 #include <linux/ctype.h>
51 #include <linux/version.h>
52 #include <linux/spinlock.h>
53 #include <linux/dma-mapping.h>
54 #include <linux/clk.h>
55 #include <linux/platform_device.h>
56 #include <linux/semaphore.h>
57 #include <linux/phy.h>
58 #include <linux/bitops.h>
60 #include <linux/uaccess.h>
61 #include <linux/davinci_emac.h>
66 static int debug_level
;
67 module_param(debug_level
, int, 0);
68 MODULE_PARM_DESC(debug_level
, "DaVinci EMAC debug level (NETIF_MSG bits)");
70 /* Netif debug messages possible */
71 #define DAVINCI_EMAC_DEBUG (NETIF_MSG_DRV | \
79 NETIF_MSG_TX_QUEUED | \
82 NETIF_MSG_RX_STATUS | \
88 #define EMAC_MAJOR_VERSION 6
89 #define EMAC_MINOR_VERSION 1
90 #define EMAC_MODULE_VERSION "6.1"
91 MODULE_VERSION(EMAC_MODULE_VERSION
);
92 static const char emac_version_string
[] = "TI DaVinci EMAC Linux v6.1";
94 /* Configuration items */
95 #define EMAC_DEF_PASS_CRC (0) /* Do not pass CRC upto frames */
96 #define EMAC_DEF_QOS_EN (0) /* EMAC proprietary QoS disabled */
97 #define EMAC_DEF_NO_BUFF_CHAIN (0) /* No buffer chain */
98 #define EMAC_DEF_MACCTRL_FRAME_EN (0) /* Discard Maccontrol frames */
99 #define EMAC_DEF_SHORT_FRAME_EN (0) /* Discard short frames */
100 #define EMAC_DEF_ERROR_FRAME_EN (0) /* Discard error frames */
101 #define EMAC_DEF_PROM_EN (0) /* Promiscous disabled */
102 #define EMAC_DEF_PROM_CH (0) /* Promiscous channel is 0 */
103 #define EMAC_DEF_BCAST_EN (1) /* Broadcast enabled */
104 #define EMAC_DEF_BCAST_CH (0) /* Broadcast channel is 0 */
105 #define EMAC_DEF_MCAST_EN (1) /* Multicast enabled */
106 #define EMAC_DEF_MCAST_CH (0) /* Multicast channel is 0 */
108 #define EMAC_DEF_TXPRIO_FIXED (1) /* TX Priority is fixed */
109 #define EMAC_DEF_TXPACING_EN (0) /* TX pacing NOT supported*/
111 #define EMAC_DEF_BUFFER_OFFSET (0) /* Buffer offset to DMA (future) */
112 #define EMAC_DEF_MIN_ETHPKTSIZE (60) /* Minimum ethernet pkt size */
113 #define EMAC_DEF_MAX_FRAME_SIZE (1500 + 14 + 4 + 4)
114 #define EMAC_DEF_TX_CH (0) /* Default 0th channel */
115 #define EMAC_DEF_RX_CH (0) /* Default 0th channel */
116 #define EMAC_DEF_MDIO_TICK_MS (10) /* typically 1 tick=1 ms) */
117 #define EMAC_DEF_MAX_TX_CH (1) /* Max TX channels configured */
118 #define EMAC_DEF_MAX_RX_CH (1) /* Max RX channels configured */
119 #define EMAC_POLL_WEIGHT (64) /* Default NAPI poll weight */
121 /* Buffer descriptor parameters */
122 #define EMAC_DEF_TX_MAX_SERVICE (32) /* TX max service BD's */
123 #define EMAC_DEF_RX_MAX_SERVICE (64) /* should = netdev->weight */
125 /* EMAC register related defines */
126 #define EMAC_ALL_MULTI_REG_VALUE (0xFFFFFFFF)
127 #define EMAC_NUM_MULTICAST_BITS (64)
128 #define EMAC_TEARDOWN_VALUE (0xFFFFFFFC)
129 #define EMAC_TX_CONTROL_TX_ENABLE_VAL (0x1)
130 #define EMAC_RX_CONTROL_RX_ENABLE_VAL (0x1)
131 #define EMAC_MAC_HOST_ERR_INTMASK_VAL (0x2)
132 #define EMAC_RX_UNICAST_CLEAR_ALL (0xFF)
133 #define EMAC_INT_MASK_CLEAR (0xFF)
135 /* RX MBP register bit positions */
136 #define EMAC_RXMBP_PASSCRC_MASK BIT(30)
137 #define EMAC_RXMBP_QOSEN_MASK BIT(29)
138 #define EMAC_RXMBP_NOCHAIN_MASK BIT(28)
139 #define EMAC_RXMBP_CMFEN_MASK BIT(24)
140 #define EMAC_RXMBP_CSFEN_MASK BIT(23)
141 #define EMAC_RXMBP_CEFEN_MASK BIT(22)
142 #define EMAC_RXMBP_CAFEN_MASK BIT(21)
143 #define EMAC_RXMBP_PROMCH_SHIFT (16)
144 #define EMAC_RXMBP_PROMCH_MASK (0x7 << 16)
145 #define EMAC_RXMBP_BROADEN_MASK BIT(13)
146 #define EMAC_RXMBP_BROADCH_SHIFT (8)
147 #define EMAC_RXMBP_BROADCH_MASK (0x7 << 8)
148 #define EMAC_RXMBP_MULTIEN_MASK BIT(5)
149 #define EMAC_RXMBP_MULTICH_SHIFT (0)
150 #define EMAC_RXMBP_MULTICH_MASK (0x7)
151 #define EMAC_RXMBP_CHMASK (0x7)
153 /* EMAC register definitions/bit maps used */
154 # define EMAC_MBP_RXPROMISC (0x00200000)
155 # define EMAC_MBP_PROMISCCH(ch) (((ch) & 0x7) << 16)
156 # define EMAC_MBP_RXBCAST (0x00002000)
157 # define EMAC_MBP_BCASTCHAN(ch) (((ch) & 0x7) << 8)
158 # define EMAC_MBP_RXMCAST (0x00000020)
159 # define EMAC_MBP_MCASTCHAN(ch) ((ch) & 0x7)
161 /* EMAC mac_control register */
162 #define EMAC_MACCONTROL_TXPTYPE BIT(9)
163 #define EMAC_MACCONTROL_TXPACEEN BIT(6)
164 #define EMAC_MACCONTROL_GMIIEN BIT(5)
165 #define EMAC_MACCONTROL_GIGABITEN BIT(7)
166 #define EMAC_MACCONTROL_FULLDUPLEXEN BIT(0)
167 #define EMAC_MACCONTROL_RMIISPEED_MASK BIT(15)
169 /* GIGABIT MODE related bits */
170 #define EMAC_DM646X_MACCONTORL_GIG BIT(7)
171 #define EMAC_DM646X_MACCONTORL_GIGFORCE BIT(17)
173 /* EMAC mac_status register */
174 #define EMAC_MACSTATUS_TXERRCODE_MASK (0xF00000)
175 #define EMAC_MACSTATUS_TXERRCODE_SHIFT (20)
176 #define EMAC_MACSTATUS_TXERRCH_MASK (0x7)
177 #define EMAC_MACSTATUS_TXERRCH_SHIFT (16)
178 #define EMAC_MACSTATUS_RXERRCODE_MASK (0xF000)
179 #define EMAC_MACSTATUS_RXERRCODE_SHIFT (12)
180 #define EMAC_MACSTATUS_RXERRCH_MASK (0x7)
181 #define EMAC_MACSTATUS_RXERRCH_SHIFT (8)
183 /* EMAC RX register masks */
184 #define EMAC_RX_MAX_LEN_MASK (0xFFFF)
185 #define EMAC_RX_BUFFER_OFFSET_MASK (0xFFFF)
187 /* MAC_IN_VECTOR (0x180) register bit fields */
188 #define EMAC_DM644X_MAC_IN_VECTOR_HOST_INT BIT(17)
189 #define EMAC_DM644X_MAC_IN_VECTOR_STATPEND_INT BIT(16)
190 #define EMAC_DM644X_MAC_IN_VECTOR_RX_INT_VEC BIT(8)
191 #define EMAC_DM644X_MAC_IN_VECTOR_TX_INT_VEC BIT(0)
193 /** NOTE:: For DM646x the IN_VECTOR has changed */
194 #define EMAC_DM646X_MAC_IN_VECTOR_RX_INT_VEC BIT(EMAC_DEF_RX_CH)
195 #define EMAC_DM646X_MAC_IN_VECTOR_TX_INT_VEC BIT(16 + EMAC_DEF_TX_CH)
196 #define EMAC_DM646X_MAC_IN_VECTOR_HOST_INT BIT(26)
197 #define EMAC_DM646X_MAC_IN_VECTOR_STATPEND_INT BIT(27)
199 /* CPPI bit positions */
200 #define EMAC_CPPI_SOP_BIT BIT(31)
201 #define EMAC_CPPI_EOP_BIT BIT(30)
202 #define EMAC_CPPI_OWNERSHIP_BIT BIT(29)
203 #define EMAC_CPPI_EOQ_BIT BIT(28)
204 #define EMAC_CPPI_TEARDOWN_COMPLETE_BIT BIT(27)
205 #define EMAC_CPPI_PASS_CRC_BIT BIT(26)
206 #define EMAC_RX_BD_BUF_SIZE (0xFFFF)
207 #define EMAC_BD_LENGTH_FOR_CACHE (16) /* only CPPI bytes */
208 #define EMAC_RX_BD_PKT_LENGTH_MASK (0xFFFF)
210 /* Max hardware defines */
211 #define EMAC_MAX_TXRX_CHANNELS (8) /* Max hardware channels */
212 #define EMAC_DEF_MAX_MULTICAST_ADDRESSES (64) /* Max mcast addr's */
214 /* EMAC Peripheral Device Register Memory Layout structure */
215 #define EMAC_TXIDVER 0x0
216 #define EMAC_TXCONTROL 0x4
217 #define EMAC_TXTEARDOWN 0x8
218 #define EMAC_RXIDVER 0x10
219 #define EMAC_RXCONTROL 0x14
220 #define EMAC_RXTEARDOWN 0x18
221 #define EMAC_TXINTSTATRAW 0x80
222 #define EMAC_TXINTSTATMASKED 0x84
223 #define EMAC_TXINTMASKSET 0x88
224 #define EMAC_TXINTMASKCLEAR 0x8C
225 #define EMAC_MACINVECTOR 0x90
227 #define EMAC_DM646X_MACEOIVECTOR 0x94
229 #define EMAC_RXINTSTATRAW 0xA0
230 #define EMAC_RXINTSTATMASKED 0xA4
231 #define EMAC_RXINTMASKSET 0xA8
232 #define EMAC_RXINTMASKCLEAR 0xAC
233 #define EMAC_MACINTSTATRAW 0xB0
234 #define EMAC_MACINTSTATMASKED 0xB4
235 #define EMAC_MACINTMASKSET 0xB8
236 #define EMAC_MACINTMASKCLEAR 0xBC
238 #define EMAC_RXMBPENABLE 0x100
239 #define EMAC_RXUNICASTSET 0x104
240 #define EMAC_RXUNICASTCLEAR 0x108
241 #define EMAC_RXMAXLEN 0x10C
242 #define EMAC_RXBUFFEROFFSET 0x110
243 #define EMAC_RXFILTERLOWTHRESH 0x114
245 #define EMAC_MACCONTROL 0x160
246 #define EMAC_MACSTATUS 0x164
247 #define EMAC_EMCONTROL 0x168
248 #define EMAC_FIFOCONTROL 0x16C
249 #define EMAC_MACCONFIG 0x170
250 #define EMAC_SOFTRESET 0x174
251 #define EMAC_MACSRCADDRLO 0x1D0
252 #define EMAC_MACSRCADDRHI 0x1D4
253 #define EMAC_MACHASH1 0x1D8
254 #define EMAC_MACHASH2 0x1DC
255 #define EMAC_MACADDRLO 0x500
256 #define EMAC_MACADDRHI 0x504
257 #define EMAC_MACINDEX 0x508
259 /* EMAC HDP and Completion registors */
260 #define EMAC_TXHDP(ch) (0x600 + (ch * 4))
261 #define EMAC_RXHDP(ch) (0x620 + (ch * 4))
262 #define EMAC_TXCP(ch) (0x640 + (ch * 4))
263 #define EMAC_RXCP(ch) (0x660 + (ch * 4))
265 /* EMAC statistics registers */
266 #define EMAC_RXGOODFRAMES 0x200
267 #define EMAC_RXBCASTFRAMES 0x204
268 #define EMAC_RXMCASTFRAMES 0x208
269 #define EMAC_RXPAUSEFRAMES 0x20C
270 #define EMAC_RXCRCERRORS 0x210
271 #define EMAC_RXALIGNCODEERRORS 0x214
272 #define EMAC_RXOVERSIZED 0x218
273 #define EMAC_RXJABBER 0x21C
274 #define EMAC_RXUNDERSIZED 0x220
275 #define EMAC_RXFRAGMENTS 0x224
276 #define EMAC_RXFILTERED 0x228
277 #define EMAC_RXQOSFILTERED 0x22C
278 #define EMAC_RXOCTETS 0x230
279 #define EMAC_TXGOODFRAMES 0x234
280 #define EMAC_TXBCASTFRAMES 0x238
281 #define EMAC_TXMCASTFRAMES 0x23C
282 #define EMAC_TXPAUSEFRAMES 0x240
283 #define EMAC_TXDEFERRED 0x244
284 #define EMAC_TXCOLLISION 0x248
285 #define EMAC_TXSINGLECOLL 0x24C
286 #define EMAC_TXMULTICOLL 0x250
287 #define EMAC_TXEXCESSIVECOLL 0x254
288 #define EMAC_TXLATECOLL 0x258
289 #define EMAC_TXUNDERRUN 0x25C
290 #define EMAC_TXCARRIERSENSE 0x260
291 #define EMAC_TXOCTETS 0x264
292 #define EMAC_NETOCTETS 0x280
293 #define EMAC_RXSOFOVERRUNS 0x284
294 #define EMAC_RXMOFOVERRUNS 0x288
295 #define EMAC_RXDMAOVERRUNS 0x28C
297 /* EMAC DM644x control registers */
298 #define EMAC_CTRL_EWCTL (0x4)
299 #define EMAC_CTRL_EWINTTCNT (0x8)
301 /* EMAC MDIO related */
302 /* Mask & Control defines */
303 #define MDIO_CONTROL_CLKDIV (0xFF)
304 #define MDIO_CONTROL_ENABLE BIT(30)
305 #define MDIO_USERACCESS_GO BIT(31)
306 #define MDIO_USERACCESS_WRITE BIT(30)
307 #define MDIO_USERACCESS_READ (0)
308 #define MDIO_USERACCESS_REGADR (0x1F << 21)
309 #define MDIO_USERACCESS_PHYADR (0x1F << 16)
310 #define MDIO_USERACCESS_DATA (0xFFFF)
311 #define MDIO_USERPHYSEL_LINKSEL BIT(7)
312 #define MDIO_VER_MODID (0xFFFF << 16)
313 #define MDIO_VER_REVMAJ (0xFF << 8)
314 #define MDIO_VER_REVMIN (0xFF)
316 #define MDIO_USERACCESS(inst) (0x80 + (inst * 8))
317 #define MDIO_USERPHYSEL(inst) (0x84 + (inst * 8))
318 #define MDIO_CONTROL (0x04)
320 /* EMAC DM646X control module registers */
321 #define EMAC_DM646X_CMRXINTEN (0x14)
322 #define EMAC_DM646X_CMTXINTEN (0x18)
324 /* EMAC EOI codes for C0 */
325 #define EMAC_DM646X_MAC_EOI_C0_RXEN (0x01)
326 #define EMAC_DM646X_MAC_EOI_C0_TXEN (0x02)
328 /* EMAC Stats Clear Mask */
329 #define EMAC_STATS_CLR_MASK (0xFFFFFFFF)
331 /** net_buf_obj: EMAC network bufferdata structure
333 * EMAC network buffer data structure
335 struct emac_netbufobj
{
341 /** net_pkt_obj: EMAC network packet data structure
343 * EMAC network packet data structure - supports buffer list (for future)
345 struct emac_netpktobj
{
346 void *pkt_token
; /* data token may hold tx/rx chan id */
347 struct emac_netbufobj
*buf_list
; /* array of network buffer objects */
352 /** emac_tx_bd: EMAC TX Buffer descriptor data structure
354 * EMAC TX Buffer descriptor data structure
360 int mode
; /* SOP, EOP, ownership, EOQ, teardown,Qstarv, length */
361 struct emac_tx_bd __iomem
*next
;
365 /** emac_txch: EMAC TX Channel data structure
367 * EMAC TX Channel data structure
376 void __iomem
*bd_mem
;
377 struct emac_tx_bd __iomem
*bd_pool_head
;
378 struct emac_tx_bd __iomem
*active_queue_head
;
379 struct emac_tx_bd __iomem
*active_queue_tail
;
380 struct emac_tx_bd __iomem
*last_hw_bdprocessed
;
382 u32 teardown_pending
;
386 u32 proc_count
; /* TX: # of times emac_tx_bdproc is called */
387 u32 mis_queued_packets
;
389 u32 end_of_queue_add
;
391 u32 no_active_pkts
; /* IRQ when there were no packets to process */
392 u32 active_queue_count
;
395 /** emac_rx_bd: EMAC RX Buffer descriptor data structure
397 * EMAC RX Buffer descriptor data structure
404 struct emac_rx_bd __iomem
*next
;
409 /** emac_rxch: EMAC RX Channel data structure
411 * EMAC RX Channel data structure
414 /* configuration info */
422 void __iomem
*bd_mem
;
423 struct emac_rx_bd __iomem
*bd_pool_head
;
424 struct emac_rx_bd __iomem
*active_queue_head
;
425 struct emac_rx_bd __iomem
*active_queue_tail
;
427 u32 teardown_pending
;
429 /* packet and buffer objects */
430 struct emac_netpktobj pkt_queue
;
431 struct emac_netbufobj buf_queue
;
434 u32 proc_count
; /* number of times emac_rx_bdproc is called */
438 u32 out_of_rx_buffers
;
440 u32 end_of_queue_add
;
442 u32 mis_queued_packets
;
445 /* emac_priv: EMAC private data structure
447 * EMAC adapter private data structure
451 struct net_device
*ndev
;
452 struct platform_device
*pdev
;
453 struct napi_struct napi
;
457 void __iomem
*remap_addr
;
459 void __iomem
*emac_base
;
460 void __iomem
*ctrl_base
;
461 void __iomem
*emac_ctrl_ram
;
464 struct emac_txch
*txch
[EMAC_DEF_MAX_TX_CH
];
465 struct emac_rxch
*rxch
[EMAC_DEF_MAX_RX_CH
];
466 u32 link
; /* 1=link on, 0=link off */
467 u32 speed
; /* 0=Auto Neg, 1=No PHY, 10,100, 1000 - mbps */
468 u32 duplex
; /* Link duplex: 0=Half, 1=Full */
473 struct net_device_stats net_dev_stats
;
476 u32 multicast_hash_cnt
[EMAC_NUM_MULTICAST_BITS
];
478 /* periodic timer required for MDIO polling */
479 struct timer_list periodic_timer
;
483 /* mii_bus,phy members */
484 struct mii_bus
*mii_bus
;
485 struct phy_device
*phydev
;
487 /*platform specific members*/
488 void (*int_enable
) (void);
489 void (*int_disable
) (void);
492 /* clock frequency for EMAC */
493 static struct clk
*emac_clk
;
494 static unsigned long emac_bus_frequency
;
495 static unsigned long mdio_max_freq
;
497 #define emac_virt_to_phys(addr, priv) \
498 (((u32 __force)(addr) - (u32 __force)(priv->emac_ctrl_ram)) \
501 /* Cache macros - Packet buffers would be from skb pool which is cached */
502 #define EMAC_VIRT_NOCACHE(addr) (addr)
504 /* DM644x does not have BD's in cached memory - so no cache functions */
505 #define BD_CACHE_INVALIDATE(addr, size)
506 #define BD_CACHE_WRITEBACK(addr, size)
507 #define BD_CACHE_WRITEBACK_INVALIDATE(addr, size)
509 /* EMAC TX Host Error description strings */
510 static char *emac_txhost_errcodes
[16] = {
511 "No error", "SOP error", "Ownership bit not set in SOP buffer",
512 "Zero Next Buffer Descriptor Pointer Without EOP",
513 "Zero Buffer Pointer", "Zero Buffer Length", "Packet Length Error",
514 "Reserved", "Reserved", "Reserved", "Reserved", "Reserved",
515 "Reserved", "Reserved", "Reserved", "Reserved"
518 /* EMAC RX Host Error description strings */
519 static char *emac_rxhost_errcodes
[16] = {
520 "No error", "Reserved", "Ownership bit not set in input buffer",
521 "Reserved", "Zero Buffer Pointer", "Reserved", "Reserved",
522 "Reserved", "Reserved", "Reserved", "Reserved", "Reserved",
523 "Reserved", "Reserved", "Reserved", "Reserved"
527 #define emac_read(reg) ioread32(priv->emac_base + (reg))
528 #define emac_write(reg, val) iowrite32(val, priv->emac_base + (reg))
530 #define emac_ctrl_read(reg) ioread32((priv->ctrl_base + (reg)))
531 #define emac_ctrl_write(reg, val) iowrite32(val, (priv->ctrl_base + (reg)))
533 #define emac_mdio_read(reg) ioread32(bus->priv + (reg))
534 #define emac_mdio_write(reg, val) iowrite32(val, (bus->priv + (reg)))
537 * emac_dump_regs: Dump important EMAC registers to debug terminal
538 * @priv: The DaVinci EMAC private adapter structure
540 * Executes ethtool set cmd & sets phy mode
543 static void emac_dump_regs(struct emac_priv
*priv
)
545 struct device
*emac_dev
= &priv
->ndev
->dev
;
547 /* Print important registers in EMAC */
548 dev_info(emac_dev
, "EMAC Basic registers\n");
549 dev_info(emac_dev
, "EMAC: EWCTL: %08X, EWINTTCNT: %08X\n",
550 emac_ctrl_read(EMAC_CTRL_EWCTL
),
551 emac_ctrl_read(EMAC_CTRL_EWINTTCNT
));
552 dev_info(emac_dev
, "EMAC: TXID: %08X %s, RXID: %08X %s\n",
553 emac_read(EMAC_TXIDVER
),
554 ((emac_read(EMAC_TXCONTROL
)) ? "enabled" : "disabled"),
555 emac_read(EMAC_RXIDVER
),
556 ((emac_read(EMAC_RXCONTROL
)) ? "enabled" : "disabled"));
557 dev_info(emac_dev
, "EMAC: TXIntRaw:%08X, TxIntMasked: %08X, "\
558 "TxIntMasSet: %08X\n", emac_read(EMAC_TXINTSTATRAW
),
559 emac_read(EMAC_TXINTSTATMASKED
), emac_read(EMAC_TXINTMASKSET
));
560 dev_info(emac_dev
, "EMAC: RXIntRaw:%08X, RxIntMasked: %08X, "\
561 "RxIntMasSet: %08X\n", emac_read(EMAC_RXINTSTATRAW
),
562 emac_read(EMAC_RXINTSTATMASKED
), emac_read(EMAC_RXINTMASKSET
));
563 dev_info(emac_dev
, "EMAC: MacIntRaw:%08X, MacIntMasked: %08X, "\
564 "MacInVector=%08X\n", emac_read(EMAC_MACINTSTATRAW
),
565 emac_read(EMAC_MACINTSTATMASKED
), emac_read(EMAC_MACINVECTOR
));
566 dev_info(emac_dev
, "EMAC: EmuControl:%08X, FifoControl: %08X\n",
567 emac_read(EMAC_EMCONTROL
), emac_read(EMAC_FIFOCONTROL
));
568 dev_info(emac_dev
, "EMAC: MBPEnable:%08X, RXUnicastSet: %08X, "\
569 "RXMaxLen=%08X\n", emac_read(EMAC_RXMBPENABLE
),
570 emac_read(EMAC_RXUNICASTSET
), emac_read(EMAC_RXMAXLEN
));
571 dev_info(emac_dev
, "EMAC: MacControl:%08X, MacStatus: %08X, "\
572 "MacConfig=%08X\n", emac_read(EMAC_MACCONTROL
),
573 emac_read(EMAC_MACSTATUS
), emac_read(EMAC_MACCONFIG
));
574 dev_info(emac_dev
, "EMAC: TXHDP[0]:%08X, RXHDP[0]: %08X\n",
575 emac_read(EMAC_TXHDP(0)), emac_read(EMAC_RXHDP(0)));
576 dev_info(emac_dev
, "EMAC Statistics\n");
577 dev_info(emac_dev
, "EMAC: rx_good_frames:%d\n",
578 emac_read(EMAC_RXGOODFRAMES
));
579 dev_info(emac_dev
, "EMAC: rx_broadcast_frames:%d\n",
580 emac_read(EMAC_RXBCASTFRAMES
));
581 dev_info(emac_dev
, "EMAC: rx_multicast_frames:%d\n",
582 emac_read(EMAC_RXMCASTFRAMES
));
583 dev_info(emac_dev
, "EMAC: rx_pause_frames:%d\n",
584 emac_read(EMAC_RXPAUSEFRAMES
));
585 dev_info(emac_dev
, "EMAC: rx_crcerrors:%d\n",
586 emac_read(EMAC_RXCRCERRORS
));
587 dev_info(emac_dev
, "EMAC: rx_align_code_errors:%d\n",
588 emac_read(EMAC_RXALIGNCODEERRORS
));
589 dev_info(emac_dev
, "EMAC: rx_oversized_frames:%d\n",
590 emac_read(EMAC_RXOVERSIZED
));
591 dev_info(emac_dev
, "EMAC: rx_jabber_frames:%d\n",
592 emac_read(EMAC_RXJABBER
));
593 dev_info(emac_dev
, "EMAC: rx_undersized_frames:%d\n",
594 emac_read(EMAC_RXUNDERSIZED
));
595 dev_info(emac_dev
, "EMAC: rx_fragments:%d\n",
596 emac_read(EMAC_RXFRAGMENTS
));
597 dev_info(emac_dev
, "EMAC: rx_filtered_frames:%d\n",
598 emac_read(EMAC_RXFILTERED
));
599 dev_info(emac_dev
, "EMAC: rx_qos_filtered_frames:%d\n",
600 emac_read(EMAC_RXQOSFILTERED
));
601 dev_info(emac_dev
, "EMAC: rx_octets:%d\n",
602 emac_read(EMAC_RXOCTETS
));
603 dev_info(emac_dev
, "EMAC: tx_goodframes:%d\n",
604 emac_read(EMAC_TXGOODFRAMES
));
605 dev_info(emac_dev
, "EMAC: tx_bcastframes:%d\n",
606 emac_read(EMAC_TXBCASTFRAMES
));
607 dev_info(emac_dev
, "EMAC: tx_mcastframes:%d\n",
608 emac_read(EMAC_TXMCASTFRAMES
));
609 dev_info(emac_dev
, "EMAC: tx_pause_frames:%d\n",
610 emac_read(EMAC_TXPAUSEFRAMES
));
611 dev_info(emac_dev
, "EMAC: tx_deferred_frames:%d\n",
612 emac_read(EMAC_TXDEFERRED
));
613 dev_info(emac_dev
, "EMAC: tx_collision_frames:%d\n",
614 emac_read(EMAC_TXCOLLISION
));
615 dev_info(emac_dev
, "EMAC: tx_single_coll_frames:%d\n",
616 emac_read(EMAC_TXSINGLECOLL
));
617 dev_info(emac_dev
, "EMAC: tx_mult_coll_frames:%d\n",
618 emac_read(EMAC_TXMULTICOLL
));
619 dev_info(emac_dev
, "EMAC: tx_excessive_collisions:%d\n",
620 emac_read(EMAC_TXEXCESSIVECOLL
));
621 dev_info(emac_dev
, "EMAC: tx_late_collisions:%d\n",
622 emac_read(EMAC_TXLATECOLL
));
623 dev_info(emac_dev
, "EMAC: tx_underrun:%d\n",
624 emac_read(EMAC_TXUNDERRUN
));
625 dev_info(emac_dev
, "EMAC: tx_carrier_sense_errors:%d\n",
626 emac_read(EMAC_TXCARRIERSENSE
));
627 dev_info(emac_dev
, "EMAC: tx_octets:%d\n",
628 emac_read(EMAC_TXOCTETS
));
629 dev_info(emac_dev
, "EMAC: net_octets:%d\n",
630 emac_read(EMAC_NETOCTETS
));
631 dev_info(emac_dev
, "EMAC: rx_sof_overruns:%d\n",
632 emac_read(EMAC_RXSOFOVERRUNS
));
633 dev_info(emac_dev
, "EMAC: rx_mof_overruns:%d\n",
634 emac_read(EMAC_RXMOFOVERRUNS
));
635 dev_info(emac_dev
, "EMAC: rx_dma_overruns:%d\n",
636 emac_read(EMAC_RXDMAOVERRUNS
));
639 /*************************************************************************
640 * EMAC MDIO/Phy Functionality
641 *************************************************************************/
643 * emac_get_drvinfo: Get EMAC driver information
644 * @ndev: The DaVinci EMAC network adapter
645 * @info: ethtool info structure containing name and version
647 * Returns EMAC driver information (name and version)
650 static void emac_get_drvinfo(struct net_device
*ndev
,
651 struct ethtool_drvinfo
*info
)
653 strcpy(info
->driver
, emac_version_string
);
654 strcpy(info
->version
, EMAC_MODULE_VERSION
);
658 * emac_get_settings: Get EMAC settings
659 * @ndev: The DaVinci EMAC network adapter
660 * @ecmd: ethtool command
662 * Executes ethool get command
665 static int emac_get_settings(struct net_device
*ndev
,
666 struct ethtool_cmd
*ecmd
)
668 struct emac_priv
*priv
= netdev_priv(ndev
);
670 return phy_ethtool_gset(priv
->phydev
, ecmd
);
677 * emac_set_settings: Set EMAC settings
678 * @ndev: The DaVinci EMAC network adapter
679 * @ecmd: ethtool command
681 * Executes ethool set command
684 static int emac_set_settings(struct net_device
*ndev
, struct ethtool_cmd
*ecmd
)
686 struct emac_priv
*priv
= netdev_priv(ndev
);
688 return phy_ethtool_sset(priv
->phydev
, ecmd
);
695 * ethtool_ops: DaVinci EMAC Ethtool structure
697 * Ethtool support for EMAC adapter
700 static const struct ethtool_ops ethtool_ops
= {
701 .get_drvinfo
= emac_get_drvinfo
,
702 .get_settings
= emac_get_settings
,
703 .set_settings
= emac_set_settings
,
704 .get_link
= ethtool_op_get_link
,
708 * emac_update_phystatus: Update Phy status
709 * @priv: The DaVinci EMAC private adapter structure
711 * Updates phy status and takes action for network queue if required
712 * based upon link status
715 static void emac_update_phystatus(struct emac_priv
*priv
)
720 struct net_device
*ndev
= priv
->ndev
;
722 mac_control
= emac_read(EMAC_MACCONTROL
);
723 cur_duplex
= (mac_control
& EMAC_MACCONTROL_FULLDUPLEXEN
) ?
724 DUPLEX_FULL
: DUPLEX_HALF
;
726 new_duplex
= priv
->phydev
->duplex
;
728 new_duplex
= DUPLEX_FULL
;
730 /* We get called only if link has changed (speed/duplex/status) */
731 if ((priv
->link
) && (new_duplex
!= cur_duplex
)) {
732 priv
->duplex
= new_duplex
;
733 if (DUPLEX_FULL
== priv
->duplex
)
734 mac_control
|= (EMAC_MACCONTROL_FULLDUPLEXEN
);
736 mac_control
&= ~(EMAC_MACCONTROL_FULLDUPLEXEN
);
739 if (priv
->speed
== SPEED_1000
&& (priv
->version
== EMAC_VERSION_2
)) {
740 mac_control
= emac_read(EMAC_MACCONTROL
);
741 mac_control
|= (EMAC_DM646X_MACCONTORL_GIG
|
742 EMAC_DM646X_MACCONTORL_GIGFORCE
);
744 /* Clear the GIG bit and GIGFORCE bit */
745 mac_control
&= ~(EMAC_DM646X_MACCONTORL_GIGFORCE
|
746 EMAC_DM646X_MACCONTORL_GIG
);
748 if (priv
->rmii_en
&& (priv
->speed
== SPEED_100
))
749 mac_control
|= EMAC_MACCONTROL_RMIISPEED_MASK
;
751 mac_control
&= ~EMAC_MACCONTROL_RMIISPEED_MASK
;
754 /* Update mac_control if changed */
755 emac_write(EMAC_MACCONTROL
, mac_control
);
759 if (!netif_carrier_ok(ndev
))
760 netif_carrier_on(ndev
);
761 /* reactivate the transmit queue if it is stopped */
762 if (netif_running(ndev
) && netif_queue_stopped(ndev
))
763 netif_wake_queue(ndev
);
766 if (netif_carrier_ok(ndev
))
767 netif_carrier_off(ndev
);
768 if (!netif_queue_stopped(ndev
))
769 netif_stop_queue(ndev
);
774 * hash_get: Calculate hash value from mac address
775 * @addr: mac address to delete from hash table
777 * Calculates hash value from mac address
780 static u32
hash_get(u8
*addr
)
787 for (cnt
= 0; cnt
< 2; cnt
++) {
789 hash
^= (tmpval
>> 2) ^ (tmpval
<< 4);
791 hash
^= (tmpval
>> 4) ^ (tmpval
<< 2);
793 hash
^= (tmpval
>> 6) ^ (tmpval
);
800 * hash_add: Hash function to add mac addr from hash table
801 * @priv: The DaVinci EMAC private adapter structure
802 * mac_addr: mac address to delete from hash table
804 * Adds mac address to the internal hash table
807 static int hash_add(struct emac_priv
*priv
, u8
*mac_addr
)
809 struct device
*emac_dev
= &priv
->ndev
->dev
;
812 u32 hash_value
= hash_get(mac_addr
);
814 if (hash_value
>= EMAC_NUM_MULTICAST_BITS
) {
815 if (netif_msg_drv(priv
)) {
816 dev_err(emac_dev
, "DaVinci EMAC: hash_add(): Invalid "\
817 "Hash %08x, should not be greater than %08x",
818 hash_value
, (EMAC_NUM_MULTICAST_BITS
- 1));
823 /* set the hash bit only if not previously set */
824 if (priv
->multicast_hash_cnt
[hash_value
] == 0) {
825 rc
= 1; /* hash value changed */
826 if (hash_value
< 32) {
827 hash_bit
= BIT(hash_value
);
828 priv
->mac_hash1
|= hash_bit
;
830 hash_bit
= BIT((hash_value
- 32));
831 priv
->mac_hash2
|= hash_bit
;
835 /* incr counter for num of mcast addr's mapped to "this" hash bit */
836 ++priv
->multicast_hash_cnt
[hash_value
];
842 * hash_del: Hash function to delete mac addr from hash table
843 * @priv: The DaVinci EMAC private adapter structure
844 * mac_addr: mac address to delete from hash table
846 * Removes mac address from the internal hash table
849 static int hash_del(struct emac_priv
*priv
, u8
*mac_addr
)
854 hash_value
= hash_get(mac_addr
);
855 if (priv
->multicast_hash_cnt
[hash_value
] > 0) {
856 /* dec cntr for num of mcast addr's mapped to this hash bit */
857 --priv
->multicast_hash_cnt
[hash_value
];
860 /* if counter still > 0, at least one multicast address refers
861 * to this hash bit. so return 0 */
862 if (priv
->multicast_hash_cnt
[hash_value
] > 0)
865 if (hash_value
< 32) {
866 hash_bit
= BIT(hash_value
);
867 priv
->mac_hash1
&= ~hash_bit
;
869 hash_bit
= BIT((hash_value
- 32));
870 priv
->mac_hash2
&= ~hash_bit
;
873 /* return 1 to indicate change in mac_hash registers reqd */
877 /* EMAC multicast operation */
878 #define EMAC_MULTICAST_ADD 0
879 #define EMAC_MULTICAST_DEL 1
880 #define EMAC_ALL_MULTI_SET 2
881 #define EMAC_ALL_MULTI_CLR 3
884 * emac_add_mcast: Set multicast address in the EMAC adapter (Internal)
885 * @priv: The DaVinci EMAC private adapter structure
886 * @action: multicast operation to perform
887 * mac_addr: mac address to set
889 * Set multicast addresses in EMAC adapter - internal function
892 static void emac_add_mcast(struct emac_priv
*priv
, u32 action
, u8
*mac_addr
)
894 struct device
*emac_dev
= &priv
->ndev
->dev
;
898 case EMAC_MULTICAST_ADD
:
899 update
= hash_add(priv
, mac_addr
);
901 case EMAC_MULTICAST_DEL
:
902 update
= hash_del(priv
, mac_addr
);
904 case EMAC_ALL_MULTI_SET
:
906 priv
->mac_hash1
= EMAC_ALL_MULTI_REG_VALUE
;
907 priv
->mac_hash2
= EMAC_ALL_MULTI_REG_VALUE
;
909 case EMAC_ALL_MULTI_CLR
:
913 memset(&(priv
->multicast_hash_cnt
[0]), 0,
914 sizeof(priv
->multicast_hash_cnt
[0]) *
915 EMAC_NUM_MULTICAST_BITS
);
918 if (netif_msg_drv(priv
))
919 dev_err(emac_dev
, "DaVinci EMAC: add_mcast"\
920 ": bad operation %d", action
);
924 /* write to the hardware only if the register status chances */
926 emac_write(EMAC_MACHASH1
, priv
->mac_hash1
);
927 emac_write(EMAC_MACHASH2
, priv
->mac_hash2
);
932 * emac_dev_mcast_set: Set multicast address in the EMAC adapter
933 * @ndev: The DaVinci EMAC network adapter
935 * Set multicast addresses in EMAC adapter
938 static void emac_dev_mcast_set(struct net_device
*ndev
)
941 struct emac_priv
*priv
= netdev_priv(ndev
);
943 mbp_enable
= emac_read(EMAC_RXMBPENABLE
);
944 if (ndev
->flags
& IFF_PROMISC
) {
945 mbp_enable
&= (~EMAC_MBP_PROMISCCH(EMAC_DEF_PROM_CH
));
946 mbp_enable
|= (EMAC_MBP_RXPROMISC
);
948 mbp_enable
= (mbp_enable
& ~EMAC_MBP_RXPROMISC
);
949 if ((ndev
->flags
& IFF_ALLMULTI
) ||
950 netdev_mc_count(ndev
) > EMAC_DEF_MAX_MULTICAST_ADDRESSES
) {
951 mbp_enable
= (mbp_enable
| EMAC_MBP_RXMCAST
);
952 emac_add_mcast(priv
, EMAC_ALL_MULTI_SET
, NULL
);
954 if (!netdev_mc_empty(ndev
)) {
955 struct netdev_hw_addr
*ha
;
957 mbp_enable
= (mbp_enable
| EMAC_MBP_RXMCAST
);
958 emac_add_mcast(priv
, EMAC_ALL_MULTI_CLR
, NULL
);
959 /* program multicast address list into EMAC hardware */
960 netdev_for_each_mc_addr(ha
, ndev
) {
961 emac_add_mcast(priv
, EMAC_MULTICAST_ADD
,
965 mbp_enable
= (mbp_enable
& ~EMAC_MBP_RXMCAST
);
966 emac_add_mcast(priv
, EMAC_ALL_MULTI_CLR
, NULL
);
969 /* Set mbp config register */
970 emac_write(EMAC_RXMBPENABLE
, mbp_enable
);
973 /*************************************************************************
974 * EMAC Hardware manipulation
975 *************************************************************************/
978 * emac_int_disable: Disable EMAC module interrupt (from adapter)
979 * @priv: The DaVinci EMAC private adapter structure
981 * Disable EMAC interrupt on the adapter
984 static void emac_int_disable(struct emac_priv
*priv
)
986 if (priv
->version
== EMAC_VERSION_2
) {
989 local_irq_save(flags
);
991 /* Program C0_Int_En to zero to turn off
992 * interrupts to the CPU */
993 emac_ctrl_write(EMAC_DM646X_CMRXINTEN
, 0x0);
994 emac_ctrl_write(EMAC_DM646X_CMTXINTEN
, 0x0);
995 /* NOTE: Rx Threshold and Misc interrupts are not disabled */
996 if (priv
->int_disable
)
999 local_irq_restore(flags
);
1002 /* Set DM644x control registers for interrupt control */
1003 emac_ctrl_write(EMAC_CTRL_EWCTL
, 0x0);
1008 * emac_int_enable: Enable EMAC module interrupt (from adapter)
1009 * @priv: The DaVinci EMAC private adapter structure
1011 * Enable EMAC interrupt on the adapter
1014 static void emac_int_enable(struct emac_priv
*priv
)
1016 if (priv
->version
== EMAC_VERSION_2
) {
1017 if (priv
->int_enable
)
1020 emac_ctrl_write(EMAC_DM646X_CMRXINTEN
, 0xff);
1021 emac_ctrl_write(EMAC_DM646X_CMTXINTEN
, 0xff);
1023 /* In addition to turning on interrupt Enable, we need
1024 * ack by writing appropriate values to the EOI
1027 /* NOTE: Rx Threshold and Misc interrupts are not enabled */
1029 /* ack rxen only then a new pulse will be generated */
1030 emac_write(EMAC_DM646X_MACEOIVECTOR
,
1031 EMAC_DM646X_MAC_EOI_C0_RXEN
);
1033 /* ack txen- only then a new pulse will be generated */
1034 emac_write(EMAC_DM646X_MACEOIVECTOR
,
1035 EMAC_DM646X_MAC_EOI_C0_TXEN
);
1038 /* Set DM644x control registers for interrupt control */
1039 emac_ctrl_write(EMAC_CTRL_EWCTL
, 0x1);
1044 * emac_irq: EMAC interrupt handler
1045 * @irq: interrupt number
1046 * @dev_id: EMAC network adapter data structure ptr
1048 * EMAC Interrupt handler - we only schedule NAPI and not process any packets
1049 * here. EVen the interrupt status is checked (TX/RX/Err) in NAPI poll function
1051 * Returns interrupt handled condition
1053 static irqreturn_t
emac_irq(int irq
, void *dev_id
)
1055 struct net_device
*ndev
= (struct net_device
*)dev_id
;
1056 struct emac_priv
*priv
= netdev_priv(ndev
);
1059 if (likely(netif_running(priv
->ndev
))) {
1060 emac_int_disable(priv
);
1061 napi_schedule(&priv
->napi
);
1063 /* we are closing down, so dont process anything */
1068 /** EMAC on-chip buffer descriptor memory
1070 * WARNING: Please note that the on chip memory is used for both TX and RX
1071 * buffer descriptor queues and is equally divided between TX and RX desc's
1072 * If the number of TX or RX descriptors change this memory pointers need
1073 * to be adjusted. If external memory is allocated then these pointers can
1074 * pointer to the memory
1077 #define EMAC_TX_BD_MEM(priv) ((priv)->emac_ctrl_ram)
1078 #define EMAC_RX_BD_MEM(priv) ((priv)->emac_ctrl_ram + \
1079 (((priv)->ctrl_ram_size) >> 1))
1082 * emac_init_txch: TX channel initialization
1083 * @priv: The DaVinci EMAC private adapter structure
1084 * @ch: RX channel number
1086 * Called during device init to setup a TX channel (allocate buffer desc
1087 * create free pool and keep ready for transmission
1089 * Returns success(0) or mem alloc failures error code
1091 static int emac_init_txch(struct emac_priv
*priv
, u32 ch
)
1093 struct device
*emac_dev
= &priv
->ndev
->dev
;
1096 struct emac_tx_bd __iomem
*curr_bd
;
1097 struct emac_txch
*txch
= NULL
;
1099 txch
= kzalloc(sizeof(struct emac_txch
), GFP_KERNEL
);
1101 dev_err(emac_dev
, "DaVinci EMAC: TX Ch mem alloc failed");
1104 priv
->txch
[ch
] = txch
;
1105 txch
->service_max
= EMAC_DEF_TX_MAX_SERVICE
;
1106 txch
->active_queue_head
= NULL
;
1107 txch
->active_queue_tail
= NULL
;
1108 txch
->queue_active
= 0;
1109 txch
->teardown_pending
= 0;
1111 /* allocate memory for TX CPPI channel on a 4 byte boundry */
1112 txch
->tx_complete
= kzalloc(txch
->service_max
* sizeof(u32
),
1114 if (NULL
== txch
->tx_complete
) {
1115 dev_err(emac_dev
, "DaVinci EMAC: Tx service mem alloc failed");
1120 /* allocate buffer descriptor pool align every BD on four word
1121 * boundry for future requirements */
1122 bd_size
= (sizeof(struct emac_tx_bd
) + 0xF) & ~0xF;
1123 txch
->num_bd
= (priv
->ctrl_ram_size
>> 1) / bd_size
;
1124 txch
->alloc_size
= (((bd_size
* txch
->num_bd
) + 0xF) & ~0xF);
1126 /* alloc TX BD memory */
1127 txch
->bd_mem
= EMAC_TX_BD_MEM(priv
);
1128 __memzero((void __force
*)txch
->bd_mem
, txch
->alloc_size
);
1130 /* initialize the BD linked list */
1131 mem
= (void __force __iomem
*)
1132 (((u32 __force
) txch
->bd_mem
+ 0xF) & ~0xF);
1133 txch
->bd_pool_head
= NULL
;
1134 for (cnt
= 0; cnt
< txch
->num_bd
; cnt
++) {
1135 curr_bd
= mem
+ (cnt
* bd_size
);
1136 curr_bd
->next
= txch
->bd_pool_head
;
1137 txch
->bd_pool_head
= curr_bd
;
1140 /* reset statistics counters */
1141 txch
->out_of_tx_bd
= 0;
1142 txch
->no_active_pkts
= 0;
1143 txch
->active_queue_count
= 0;
1149 * emac_cleanup_txch: Book-keep function to clean TX channel resources
1150 * @priv: The DaVinci EMAC private adapter structure
1151 * @ch: TX channel number
1153 * Called to clean up TX channel resources
1156 static void emac_cleanup_txch(struct emac_priv
*priv
, u32 ch
)
1158 struct emac_txch
*txch
= priv
->txch
[ch
];
1162 txch
->bd_mem
= NULL
;
1163 kfree(txch
->tx_complete
);
1165 priv
->txch
[ch
] = NULL
;
1170 * emac_net_tx_complete: TX packet completion function
1171 * @priv: The DaVinci EMAC private adapter structure
1172 * @net_data_tokens: packet token - skb pointer
1173 * @num_tokens: number of skb's to free
1174 * @ch: TX channel number
1176 * Frees the skb once packet is transmitted
1179 static int emac_net_tx_complete(struct emac_priv
*priv
,
1180 void **net_data_tokens
,
1181 int num_tokens
, u32 ch
)
1185 if (unlikely(num_tokens
&& netif_queue_stopped(priv
->ndev
)))
1186 netif_start_queue(priv
->ndev
);
1187 for (cnt
= 0; cnt
< num_tokens
; cnt
++) {
1188 struct sk_buff
*skb
= (struct sk_buff
*)net_data_tokens
[cnt
];
1191 priv
->net_dev_stats
.tx_packets
++;
1192 priv
->net_dev_stats
.tx_bytes
+= skb
->len
;
1193 dev_kfree_skb_any(skb
);
1199 * emac_txch_teardown: TX channel teardown
1200 * @priv: The DaVinci EMAC private adapter structure
1201 * @ch: TX channel number
1203 * Called to teardown TX channel
1206 static void emac_txch_teardown(struct emac_priv
*priv
, u32 ch
)
1208 struct device
*emac_dev
= &priv
->ndev
->dev
;
1209 u32 teardown_cnt
= 0xFFFFFFF0; /* Some high value */
1210 struct emac_txch
*txch
= priv
->txch
[ch
];
1211 struct emac_tx_bd __iomem
*curr_bd
;
1213 while ((emac_read(EMAC_TXCP(ch
)) & EMAC_TEARDOWN_VALUE
) !=
1214 EMAC_TEARDOWN_VALUE
) {
1215 /* wait till tx teardown complete */
1216 cpu_relax(); /* TODO: check if this helps ... */
1218 if (0 == teardown_cnt
) {
1219 dev_err(emac_dev
, "EMAC: TX teardown aborted\n");
1223 emac_write(EMAC_TXCP(ch
), EMAC_TEARDOWN_VALUE
);
1225 /* process sent packets and return skb's to upper layer */
1226 if (1 == txch
->queue_active
) {
1227 curr_bd
= txch
->active_queue_head
;
1228 while (curr_bd
!= NULL
) {
1229 dma_unmap_single(emac_dev
, curr_bd
->buff_ptr
,
1230 curr_bd
->off_b_len
& EMAC_RX_BD_BUF_SIZE
,
1233 emac_net_tx_complete(priv
, (void __force
*)
1234 &curr_bd
->buf_token
, 1, ch
);
1235 if (curr_bd
!= txch
->active_queue_tail
)
1236 curr_bd
= curr_bd
->next
;
1240 txch
->bd_pool_head
= txch
->active_queue_head
;
1241 txch
->active_queue_head
=
1242 txch
->active_queue_tail
= NULL
;
1247 * emac_stop_txch: Stop TX channel operation
1248 * @priv: The DaVinci EMAC private adapter structure
1249 * @ch: TX channel number
1251 * Called to stop TX channel operation
1254 static void emac_stop_txch(struct emac_priv
*priv
, u32 ch
)
1256 struct emac_txch
*txch
= priv
->txch
[ch
];
1259 txch
->teardown_pending
= 1;
1260 emac_write(EMAC_TXTEARDOWN
, 0);
1261 emac_txch_teardown(priv
, ch
);
1262 txch
->teardown_pending
= 0;
1263 emac_write(EMAC_TXINTMASKCLEAR
, BIT(ch
));
1268 * emac_tx_bdproc: TX buffer descriptor (packet) processing
1269 * @priv: The DaVinci EMAC private adapter structure
1270 * @ch: TX channel number to process buffer descriptors for
1271 * @budget: number of packets allowed to process
1272 * @pending: indication to caller that packets are pending to process
1274 * Processes TX buffer descriptors after packets are transmitted - checks
1275 * ownership bit on the TX * descriptor and requeues it to free pool & frees
1276 * the SKB buffer. Only "budget" number of packets are processed and
1277 * indication of pending packets provided to the caller
1279 * Returns number of packets processed
1281 static int emac_tx_bdproc(struct emac_priv
*priv
, u32 ch
, u32 budget
)
1283 struct device
*emac_dev
= &priv
->ndev
->dev
;
1284 unsigned long flags
;
1286 u32 pkts_processed
= 0;
1287 u32 tx_complete_cnt
= 0;
1288 struct emac_tx_bd __iomem
*curr_bd
;
1289 struct emac_txch
*txch
= priv
->txch
[ch
];
1290 u32
*tx_complete_ptr
= txch
->tx_complete
;
1292 if (unlikely(1 == txch
->teardown_pending
)) {
1293 if (netif_msg_tx_err(priv
) && net_ratelimit()) {
1294 dev_err(emac_dev
, "DaVinci EMAC:emac_tx_bdproc: "\
1295 "teardown pending\n");
1297 return 0; /* dont handle any pkt completions */
1301 spin_lock_irqsave(&priv
->tx_lock
, flags
);
1302 curr_bd
= txch
->active_queue_head
;
1303 if (NULL
== curr_bd
) {
1304 emac_write(EMAC_TXCP(ch
),
1305 emac_virt_to_phys(txch
->last_hw_bdprocessed
, priv
));
1306 txch
->no_active_pkts
++;
1307 spin_unlock_irqrestore(&priv
->tx_lock
, flags
);
1310 BD_CACHE_INVALIDATE(curr_bd
, EMAC_BD_LENGTH_FOR_CACHE
);
1311 frame_status
= curr_bd
->mode
;
1313 ((frame_status
& EMAC_CPPI_OWNERSHIP_BIT
) == 0) &&
1314 (pkts_processed
< budget
)) {
1315 emac_write(EMAC_TXCP(ch
), emac_virt_to_phys(curr_bd
, priv
));
1316 txch
->active_queue_head
= curr_bd
->next
;
1317 if (frame_status
& EMAC_CPPI_EOQ_BIT
) {
1318 if (curr_bd
->next
) { /* misqueued packet */
1319 emac_write(EMAC_TXHDP(ch
), curr_bd
->h_next
);
1320 ++txch
->mis_queued_packets
;
1322 txch
->queue_active
= 0; /* end of queue */
1326 dma_unmap_single(emac_dev
, curr_bd
->buff_ptr
,
1327 curr_bd
->off_b_len
& EMAC_RX_BD_BUF_SIZE
,
1330 *tx_complete_ptr
= (u32
) curr_bd
->buf_token
;
1333 curr_bd
->next
= txch
->bd_pool_head
;
1334 txch
->bd_pool_head
= curr_bd
;
1335 --txch
->active_queue_count
;
1337 txch
->last_hw_bdprocessed
= curr_bd
;
1338 curr_bd
= txch
->active_queue_head
;
1340 BD_CACHE_INVALIDATE(curr_bd
, EMAC_BD_LENGTH_FOR_CACHE
);
1341 frame_status
= curr_bd
->mode
;
1343 } /* end of pkt processing loop */
1345 emac_net_tx_complete(priv
,
1346 (void *)&txch
->tx_complete
[0],
1347 tx_complete_cnt
, ch
);
1348 spin_unlock_irqrestore(&priv
->tx_lock
, flags
);
1349 return pkts_processed
;
1352 #define EMAC_ERR_TX_OUT_OF_BD -1
1355 * emac_send: EMAC Transmit function (internal)
1356 * @priv: The DaVinci EMAC private adapter structure
1357 * @pkt: packet pointer (contains skb ptr)
1358 * @ch: TX channel number
1360 * Called by the transmit function to queue the packet in EMAC hardware queue
1362 * Returns success(0) or error code (typically out of desc's)
1364 static int emac_send(struct emac_priv
*priv
, struct emac_netpktobj
*pkt
, u32 ch
)
1366 unsigned long flags
;
1367 struct emac_tx_bd __iomem
*curr_bd
;
1368 struct emac_txch
*txch
;
1369 struct emac_netbufobj
*buf_list
;
1371 txch
= priv
->txch
[ch
];
1372 buf_list
= pkt
->buf_list
; /* get handle to the buffer array */
1374 /* check packet size and pad if short */
1375 if (pkt
->pkt_length
< EMAC_DEF_MIN_ETHPKTSIZE
) {
1376 buf_list
->length
+= (EMAC_DEF_MIN_ETHPKTSIZE
- pkt
->pkt_length
);
1377 pkt
->pkt_length
= EMAC_DEF_MIN_ETHPKTSIZE
;
1380 spin_lock_irqsave(&priv
->tx_lock
, flags
);
1381 curr_bd
= txch
->bd_pool_head
;
1382 if (curr_bd
== NULL
) {
1383 txch
->out_of_tx_bd
++;
1384 spin_unlock_irqrestore(&priv
->tx_lock
, flags
);
1385 return EMAC_ERR_TX_OUT_OF_BD
;
1388 txch
->bd_pool_head
= curr_bd
->next
;
1389 curr_bd
->buf_token
= buf_list
->buf_token
;
1390 curr_bd
->buff_ptr
= dma_map_single(&priv
->ndev
->dev
, buf_list
->data_ptr
,
1391 buf_list
->length
, DMA_TO_DEVICE
);
1392 curr_bd
->off_b_len
= buf_list
->length
;
1393 curr_bd
->h_next
= 0;
1394 curr_bd
->next
= NULL
;
1395 curr_bd
->mode
= (EMAC_CPPI_SOP_BIT
| EMAC_CPPI_OWNERSHIP_BIT
|
1396 EMAC_CPPI_EOP_BIT
| pkt
->pkt_length
);
1398 /* flush the packet from cache if write back cache is present */
1399 BD_CACHE_WRITEBACK_INVALIDATE(curr_bd
, EMAC_BD_LENGTH_FOR_CACHE
);
1401 /* send the packet */
1402 if (txch
->active_queue_head
== NULL
) {
1403 txch
->active_queue_head
= curr_bd
;
1404 txch
->active_queue_tail
= curr_bd
;
1405 if (1 != txch
->queue_active
) {
1406 emac_write(EMAC_TXHDP(ch
),
1407 emac_virt_to_phys(curr_bd
, priv
));
1408 txch
->queue_active
= 1;
1410 ++txch
->queue_reinit
;
1412 register struct emac_tx_bd __iomem
*tail_bd
;
1413 register u32 frame_status
;
1415 tail_bd
= txch
->active_queue_tail
;
1416 tail_bd
->next
= curr_bd
;
1417 txch
->active_queue_tail
= curr_bd
;
1418 tail_bd
= EMAC_VIRT_NOCACHE(tail_bd
);
1419 tail_bd
->h_next
= (int)emac_virt_to_phys(curr_bd
, priv
);
1420 frame_status
= tail_bd
->mode
;
1421 if (frame_status
& EMAC_CPPI_EOQ_BIT
) {
1422 emac_write(EMAC_TXHDP(ch
),
1423 emac_virt_to_phys(curr_bd
, priv
));
1424 frame_status
&= ~(EMAC_CPPI_EOQ_BIT
);
1425 tail_bd
->mode
= frame_status
;
1426 ++txch
->end_of_queue_add
;
1429 txch
->active_queue_count
++;
1430 spin_unlock_irqrestore(&priv
->tx_lock
, flags
);
1435 * emac_dev_xmit: EMAC Transmit function
1437 * @ndev: The DaVinci EMAC network adapter
1439 * Called by the system to transmit a packet - we queue the packet in
1440 * EMAC hardware transmit queue
1442 * Returns success(NETDEV_TX_OK) or error code (typically out of desc's)
1444 static int emac_dev_xmit(struct sk_buff
*skb
, struct net_device
*ndev
)
1446 struct device
*emac_dev
= &ndev
->dev
;
1448 struct emac_netbufobj tx_buf
; /* buffer obj-only single frame support */
1449 struct emac_netpktobj tx_packet
; /* packet object */
1450 struct emac_priv
*priv
= netdev_priv(ndev
);
1452 /* If no link, return */
1453 if (unlikely(!priv
->link
)) {
1454 if (netif_msg_tx_err(priv
) && net_ratelimit())
1455 dev_err(emac_dev
, "DaVinci EMAC: No link to transmit");
1456 return NETDEV_TX_BUSY
;
1459 /* Build the buffer and packet objects - Since only single fragment is
1460 * supported, need not set length and token in both packet & object.
1461 * Doing so for completeness sake & to show that this needs to be done
1462 * in multifragment case
1464 tx_packet
.buf_list
= &tx_buf
;
1465 tx_packet
.num_bufs
= 1; /* only single fragment supported */
1466 tx_packet
.pkt_length
= skb
->len
;
1467 tx_packet
.pkt_token
= (void *)skb
;
1468 tx_buf
.length
= skb
->len
;
1469 tx_buf
.buf_token
= (void *)skb
;
1470 tx_buf
.data_ptr
= skb
->data
;
1471 ndev
->trans_start
= jiffies
;
1472 ret_code
= emac_send(priv
, &tx_packet
, EMAC_DEF_TX_CH
);
1473 if (unlikely(ret_code
!= 0)) {
1474 if (ret_code
== EMAC_ERR_TX_OUT_OF_BD
) {
1475 if (netif_msg_tx_err(priv
) && net_ratelimit())
1476 dev_err(emac_dev
, "DaVinci EMAC: xmit() fatal"\
1477 " err. Out of TX BD's");
1478 netif_stop_queue(priv
->ndev
);
1480 priv
->net_dev_stats
.tx_dropped
++;
1481 return NETDEV_TX_BUSY
;
1484 return NETDEV_TX_OK
;
1488 * emac_dev_tx_timeout: EMAC Transmit timeout function
1489 * @ndev: The DaVinci EMAC network adapter
1491 * Called when system detects that a skb timeout period has expired
1492 * potentially due to a fault in the adapter in not being able to send
1493 * it out on the wire. We teardown the TX channel assuming a hardware
1494 * error and re-initialize the TX channel for hardware operation
1497 static void emac_dev_tx_timeout(struct net_device
*ndev
)
1499 struct emac_priv
*priv
= netdev_priv(ndev
);
1500 struct device
*emac_dev
= &ndev
->dev
;
1502 if (netif_msg_tx_err(priv
))
1503 dev_err(emac_dev
, "DaVinci EMAC: xmit timeout, restarting TX");
1505 priv
->net_dev_stats
.tx_errors
++;
1506 emac_int_disable(priv
);
1507 emac_stop_txch(priv
, EMAC_DEF_TX_CH
);
1508 emac_cleanup_txch(priv
, EMAC_DEF_TX_CH
);
1509 emac_init_txch(priv
, EMAC_DEF_TX_CH
);
1510 emac_write(EMAC_TXHDP(0), 0);
1511 emac_write(EMAC_TXINTMASKSET
, BIT(EMAC_DEF_TX_CH
));
1512 emac_int_enable(priv
);
1516 * emac_net_alloc_rx_buf: Allocate a skb for RX
1517 * @priv: The DaVinci EMAC private adapter structure
1518 * @buf_size: size of SKB data buffer to allocate
1519 * @data_token: data token returned (skb handle for storing in buffer desc)
1520 * @ch: RX channel number
1522 * Called during RX channel setup - allocates skb buffer of required size
1523 * and provides the skb handle and allocated buffer data pointer to caller
1525 * Returns skb data pointer or 0 on failure to alloc skb
1527 static void *emac_net_alloc_rx_buf(struct emac_priv
*priv
, int buf_size
,
1528 void **data_token
, u32 ch
)
1530 struct net_device
*ndev
= priv
->ndev
;
1531 struct device
*emac_dev
= &ndev
->dev
;
1532 struct sk_buff
*p_skb
;
1534 p_skb
= dev_alloc_skb(buf_size
);
1535 if (unlikely(NULL
== p_skb
)) {
1536 if (netif_msg_rx_err(priv
) && net_ratelimit())
1537 dev_err(emac_dev
, "DaVinci EMAC: failed to alloc skb");
1541 /* set device pointer in skb and reserve space for extra bytes */
1543 skb_reserve(p_skb
, NET_IP_ALIGN
);
1544 *data_token
= (void *) p_skb
;
1549 * emac_init_rxch: RX channel initialization
1550 * @priv: The DaVinci EMAC private adapter structure
1551 * @ch: RX channel number
1552 * @param: mac address for RX channel
1554 * Called during device init to setup a RX channel (allocate buffers and
1555 * buffer descriptors, create queue and keep ready for reception
1557 * Returns success(0) or mem alloc failures error code
1559 static int emac_init_rxch(struct emac_priv
*priv
, u32 ch
, char *param
)
1561 struct device
*emac_dev
= &priv
->ndev
->dev
;
1564 struct emac_rx_bd __iomem
*curr_bd
;
1565 struct emac_rxch
*rxch
= NULL
;
1567 rxch
= kzalloc(sizeof(struct emac_rxch
), GFP_KERNEL
);
1569 dev_err(emac_dev
, "DaVinci EMAC: RX Ch mem alloc failed");
1572 priv
->rxch
[ch
] = rxch
;
1573 rxch
->buf_size
= priv
->rx_buf_size
;
1574 rxch
->service_max
= EMAC_DEF_RX_MAX_SERVICE
;
1575 rxch
->queue_active
= 0;
1576 rxch
->teardown_pending
= 0;
1578 /* save mac address */
1579 for (cnt
= 0; cnt
< 6; cnt
++)
1580 rxch
->mac_addr
[cnt
] = param
[cnt
];
1582 /* allocate buffer descriptor pool align every BD on four word
1583 * boundry for future requirements */
1584 bd_size
= (sizeof(struct emac_rx_bd
) + 0xF) & ~0xF;
1585 rxch
->num_bd
= (priv
->ctrl_ram_size
>> 1) / bd_size
;
1586 rxch
->alloc_size
= (((bd_size
* rxch
->num_bd
) + 0xF) & ~0xF);
1587 rxch
->bd_mem
= EMAC_RX_BD_MEM(priv
);
1588 __memzero((void __force
*)rxch
->bd_mem
, rxch
->alloc_size
);
1589 rxch
->pkt_queue
.buf_list
= &rxch
->buf_queue
;
1591 /* allocate RX buffer and initialize the BD linked list */
1592 mem
= (void __force __iomem
*)
1593 (((u32 __force
) rxch
->bd_mem
+ 0xF) & ~0xF);
1594 rxch
->active_queue_head
= NULL
;
1595 rxch
->active_queue_tail
= mem
;
1596 for (cnt
= 0; cnt
< rxch
->num_bd
; cnt
++) {
1597 curr_bd
= mem
+ (cnt
* bd_size
);
1598 /* for future use the last parameter contains the BD ptr */
1599 curr_bd
->data_ptr
= emac_net_alloc_rx_buf(priv
,
1601 (void __force
**)&curr_bd
->buf_token
,
1603 if (curr_bd
->data_ptr
== NULL
) {
1604 dev_err(emac_dev
, "DaVinci EMAC: RX buf mem alloc " \
1605 "failed for ch %d\n", ch
);
1610 /* populate the hardware descriptor */
1611 curr_bd
->h_next
= emac_virt_to_phys(rxch
->active_queue_head
,
1613 curr_bd
->buff_ptr
= dma_map_single(emac_dev
, curr_bd
->data_ptr
,
1614 rxch
->buf_size
, DMA_FROM_DEVICE
);
1615 curr_bd
->off_b_len
= rxch
->buf_size
;
1616 curr_bd
->mode
= EMAC_CPPI_OWNERSHIP_BIT
;
1618 /* write back to hardware memory */
1619 BD_CACHE_WRITEBACK_INVALIDATE((u32
) curr_bd
,
1620 EMAC_BD_LENGTH_FOR_CACHE
);
1621 curr_bd
->next
= rxch
->active_queue_head
;
1622 rxch
->active_queue_head
= curr_bd
;
1625 /* At this point rxCppi->activeQueueHead points to the first
1626 RX BD ready to be given to RX HDP and rxch->active_queue_tail
1627 points to the last RX BD
1633 * emac_rxch_teardown: RX channel teardown
1634 * @priv: The DaVinci EMAC private adapter structure
1635 * @ch: RX channel number
1637 * Called during device stop to teardown RX channel
1640 static void emac_rxch_teardown(struct emac_priv
*priv
, u32 ch
)
1642 struct device
*emac_dev
= &priv
->ndev
->dev
;
1643 u32 teardown_cnt
= 0xFFFFFFF0; /* Some high value */
1645 while ((emac_read(EMAC_RXCP(ch
)) & EMAC_TEARDOWN_VALUE
) !=
1646 EMAC_TEARDOWN_VALUE
) {
1647 /* wait till tx teardown complete */
1648 cpu_relax(); /* TODO: check if this helps ... */
1650 if (0 == teardown_cnt
) {
1651 dev_err(emac_dev
, "EMAC: RX teardown aborted\n");
1655 emac_write(EMAC_RXCP(ch
), EMAC_TEARDOWN_VALUE
);
1659 * emac_stop_rxch: Stop RX channel operation
1660 * @priv: The DaVinci EMAC private adapter structure
1661 * @ch: RX channel number
1663 * Called during device stop to stop RX channel operation
1666 static void emac_stop_rxch(struct emac_priv
*priv
, u32 ch
)
1668 struct emac_rxch
*rxch
= priv
->rxch
[ch
];
1671 rxch
->teardown_pending
= 1;
1672 emac_write(EMAC_RXTEARDOWN
, ch
);
1673 /* wait for teardown complete */
1674 emac_rxch_teardown(priv
, ch
);
1675 rxch
->teardown_pending
= 0;
1676 emac_write(EMAC_RXINTMASKCLEAR
, BIT(ch
));
1681 * emac_cleanup_rxch: Book-keep function to clean RX channel resources
1682 * @priv: The DaVinci EMAC private adapter structure
1683 * @ch: RX channel number
1685 * Called during device stop to clean up RX channel resources
1688 static void emac_cleanup_rxch(struct emac_priv
*priv
, u32 ch
)
1690 struct emac_rxch
*rxch
= priv
->rxch
[ch
];
1691 struct emac_rx_bd __iomem
*curr_bd
;
1694 /* free the receive buffers previously allocated */
1695 curr_bd
= rxch
->active_queue_head
;
1697 if (curr_bd
->buf_token
) {
1698 dma_unmap_single(&priv
->ndev
->dev
,
1701 & EMAC_RX_BD_BUF_SIZE
,
1704 dev_kfree_skb_any((struct sk_buff
*)\
1705 curr_bd
->buf_token
);
1707 curr_bd
= curr_bd
->next
;
1710 rxch
->bd_mem
= NULL
;
1712 priv
->rxch
[ch
] = NULL
;
1717 * emac_set_type0addr: Set EMAC Type0 mac address
1718 * @priv: The DaVinci EMAC private adapter structure
1719 * @ch: RX channel number
1720 * @mac_addr: MAC address to set in device
1722 * Called internally to set Type0 mac address of the adapter (Device)
1724 * Returns success (0) or appropriate error code (none as of now)
1726 static void emac_set_type0addr(struct emac_priv
*priv
, u32 ch
, char *mac_addr
)
1729 val
= ((mac_addr
[5] << 8) | (mac_addr
[4]));
1730 emac_write(EMAC_MACSRCADDRLO
, val
);
1732 val
= ((mac_addr
[3] << 24) | (mac_addr
[2] << 16) | \
1733 (mac_addr
[1] << 8) | (mac_addr
[0]));
1734 emac_write(EMAC_MACSRCADDRHI
, val
);
1735 val
= emac_read(EMAC_RXUNICASTSET
);
1737 emac_write(EMAC_RXUNICASTSET
, val
);
1738 val
= emac_read(EMAC_RXUNICASTCLEAR
);
1740 emac_write(EMAC_RXUNICASTCLEAR
, val
);
1744 * emac_set_type1addr: Set EMAC Type1 mac address
1745 * @priv: The DaVinci EMAC private adapter structure
1746 * @ch: RX channel number
1747 * @mac_addr: MAC address to set in device
1749 * Called internally to set Type1 mac address of the adapter (Device)
1751 * Returns success (0) or appropriate error code (none as of now)
1753 static void emac_set_type1addr(struct emac_priv
*priv
, u32 ch
, char *mac_addr
)
1756 emac_write(EMAC_MACINDEX
, ch
);
1757 val
= ((mac_addr
[5] << 8) | mac_addr
[4]);
1758 emac_write(EMAC_MACADDRLO
, val
);
1759 val
= ((mac_addr
[3] << 24) | (mac_addr
[2] << 16) | \
1760 (mac_addr
[1] << 8) | (mac_addr
[0]));
1761 emac_write(EMAC_MACADDRHI
, val
);
1762 emac_set_type0addr(priv
, ch
, mac_addr
);
1766 * emac_set_type2addr: Set EMAC Type2 mac address
1767 * @priv: The DaVinci EMAC private adapter structure
1768 * @ch: RX channel number
1769 * @mac_addr: MAC address to set in device
1770 * @index: index into RX address entries
1771 * @match: match parameter for RX address matching logic
1773 * Called internally to set Type2 mac address of the adapter (Device)
1775 * Returns success (0) or appropriate error code (none as of now)
1777 static void emac_set_type2addr(struct emac_priv
*priv
, u32 ch
,
1778 char *mac_addr
, int index
, int match
)
1781 emac_write(EMAC_MACINDEX
, index
);
1782 val
= ((mac_addr
[3] << 24) | (mac_addr
[2] << 16) | \
1783 (mac_addr
[1] << 8) | (mac_addr
[0]));
1784 emac_write(EMAC_MACADDRHI
, val
);
1785 val
= ((mac_addr
[5] << 8) | mac_addr
[4] | ((ch
& 0x7) << 16) | \
1786 (match
<< 19) | BIT(20));
1787 emac_write(EMAC_MACADDRLO
, val
);
1788 emac_set_type0addr(priv
, ch
, mac_addr
);
1792 * emac_setmac: Set mac address in the adapter (internal function)
1793 * @priv: The DaVinci EMAC private adapter structure
1794 * @ch: RX channel number
1795 * @mac_addr: MAC address to set in device
1797 * Called internally to set the mac address of the adapter (Device)
1799 * Returns success (0) or appropriate error code (none as of now)
1801 static void emac_setmac(struct emac_priv
*priv
, u32 ch
, char *mac_addr
)
1803 struct device
*emac_dev
= &priv
->ndev
->dev
;
1805 if (priv
->rx_addr_type
== 0) {
1806 emac_set_type0addr(priv
, ch
, mac_addr
);
1807 } else if (priv
->rx_addr_type
== 1) {
1809 for (cnt
= 0; cnt
< EMAC_MAX_TXRX_CHANNELS
; cnt
++)
1810 emac_set_type1addr(priv
, ch
, mac_addr
);
1811 } else if (priv
->rx_addr_type
== 2) {
1812 emac_set_type2addr(priv
, ch
, mac_addr
, ch
, 1);
1813 emac_set_type0addr(priv
, ch
, mac_addr
);
1815 if (netif_msg_drv(priv
))
1816 dev_err(emac_dev
, "DaVinci EMAC: Wrong addressing\n");
1821 * emac_dev_setmac_addr: Set mac address in the adapter
1822 * @ndev: The DaVinci EMAC network adapter
1823 * @addr: MAC address to set in device
1825 * Called by the system to set the mac address of the adapter (Device)
1827 * Returns success (0) or appropriate error code (none as of now)
1829 static int emac_dev_setmac_addr(struct net_device
*ndev
, void *addr
)
1831 struct emac_priv
*priv
= netdev_priv(ndev
);
1832 struct emac_rxch
*rxch
= priv
->rxch
[EMAC_DEF_RX_CH
];
1833 struct device
*emac_dev
= &priv
->ndev
->dev
;
1834 struct sockaddr
*sa
= addr
;
1836 if (!is_valid_ether_addr(sa
->sa_data
))
1839 /* Store mac addr in priv and rx channel and set it in EMAC hw */
1840 memcpy(priv
->mac_addr
, sa
->sa_data
, ndev
->addr_len
);
1841 memcpy(ndev
->dev_addr
, sa
->sa_data
, ndev
->addr_len
);
1843 /* If the interface is down - rxch is NULL. */
1844 /* MAC address is configured only after the interface is enabled. */
1845 if (netif_running(ndev
)) {
1846 memcpy(rxch
->mac_addr
, sa
->sa_data
, ndev
->addr_len
);
1847 emac_setmac(priv
, EMAC_DEF_RX_CH
, rxch
->mac_addr
);
1850 if (netif_msg_drv(priv
))
1851 dev_notice(emac_dev
, "DaVinci EMAC: emac_dev_setmac_addr %pM\n",
1858 * emac_addbd_to_rx_queue: Recycle RX buffer descriptor
1859 * @priv: The DaVinci EMAC private adapter structure
1860 * @ch: RX channel number to process buffer descriptors for
1861 * @curr_bd: current buffer descriptor
1862 * @buffer: buffer pointer for descriptor
1863 * @buf_token: buffer token (stores skb information)
1865 * Prepares the recycled buffer descriptor and addes it to hardware
1866 * receive queue - if queue empty this descriptor becomes the head
1867 * else addes the descriptor to end of queue
1870 static void emac_addbd_to_rx_queue(struct emac_priv
*priv
, u32 ch
,
1871 struct emac_rx_bd __iomem
*curr_bd
,
1872 char *buffer
, void *buf_token
)
1874 struct emac_rxch
*rxch
= priv
->rxch
[ch
];
1876 /* populate the hardware descriptor */
1877 curr_bd
->h_next
= 0;
1878 curr_bd
->buff_ptr
= dma_map_single(&priv
->ndev
->dev
, buffer
,
1879 rxch
->buf_size
, DMA_FROM_DEVICE
);
1880 curr_bd
->off_b_len
= rxch
->buf_size
;
1881 curr_bd
->mode
= EMAC_CPPI_OWNERSHIP_BIT
;
1882 curr_bd
->next
= NULL
;
1883 curr_bd
->data_ptr
= buffer
;
1884 curr_bd
->buf_token
= buf_token
;
1887 BD_CACHE_WRITEBACK_INVALIDATE(curr_bd
, EMAC_BD_LENGTH_FOR_CACHE
);
1888 if (rxch
->active_queue_head
== NULL
) {
1889 rxch
->active_queue_head
= curr_bd
;
1890 rxch
->active_queue_tail
= curr_bd
;
1891 if (0 != rxch
->queue_active
) {
1892 emac_write(EMAC_RXHDP(ch
),
1893 emac_virt_to_phys(rxch
->active_queue_head
, priv
));
1894 rxch
->queue_active
= 1;
1897 struct emac_rx_bd __iomem
*tail_bd
;
1900 tail_bd
= rxch
->active_queue_tail
;
1901 rxch
->active_queue_tail
= curr_bd
;
1902 tail_bd
->next
= curr_bd
;
1903 tail_bd
= EMAC_VIRT_NOCACHE(tail_bd
);
1904 tail_bd
->h_next
= emac_virt_to_phys(curr_bd
, priv
);
1905 frame_status
= tail_bd
->mode
;
1906 if (frame_status
& EMAC_CPPI_EOQ_BIT
) {
1907 emac_write(EMAC_RXHDP(ch
),
1908 emac_virt_to_phys(curr_bd
, priv
));
1909 frame_status
&= ~(EMAC_CPPI_EOQ_BIT
);
1910 tail_bd
->mode
= frame_status
;
1911 ++rxch
->end_of_queue_add
;
1914 ++rxch
->recycled_bd
;
1918 * emac_net_rx_cb: Prepares packet and sends to upper layer
1919 * @priv: The DaVinci EMAC private adapter structure
1920 * @net_pkt_list: Network packet list (received packets)
1922 * Invalidates packet buffer memory and sends the received packet to upper
1925 * Returns success or appropriate error code (none as of now)
1927 static int emac_net_rx_cb(struct emac_priv
*priv
,
1928 struct emac_netpktobj
*net_pkt_list
)
1930 struct sk_buff
*p_skb
;
1931 p_skb
= (struct sk_buff
*)net_pkt_list
->pkt_token
;
1932 /* set length of packet */
1933 skb_put(p_skb
, net_pkt_list
->pkt_length
);
1934 p_skb
->protocol
= eth_type_trans(p_skb
, priv
->ndev
);
1935 netif_receive_skb(p_skb
);
1936 priv
->net_dev_stats
.rx_bytes
+= net_pkt_list
->pkt_length
;
1937 priv
->net_dev_stats
.rx_packets
++;
1942 * emac_rx_bdproc: RX buffer descriptor (packet) processing
1943 * @priv: The DaVinci EMAC private adapter structure
1944 * @ch: RX channel number to process buffer descriptors for
1945 * @budget: number of packets allowed to process
1946 * @pending: indication to caller that packets are pending to process
1948 * Processes RX buffer descriptors - checks ownership bit on the RX buffer
1949 * descriptor, sends the receive packet to upper layer, allocates a new SKB
1950 * and recycles the buffer descriptor (requeues it in hardware RX queue).
1951 * Only "budget" number of packets are processed and indication of pending
1952 * packets provided to the caller.
1954 * Returns number of packets processed (and indication of pending packets)
1956 static int emac_rx_bdproc(struct emac_priv
*priv
, u32 ch
, u32 budget
)
1958 unsigned long flags
;
1960 u32 pkts_processed
= 0;
1962 struct emac_rx_bd __iomem
*curr_bd
;
1963 struct emac_rx_bd __iomem
*last_bd
;
1964 struct emac_netpktobj
*curr_pkt
, pkt_obj
;
1965 struct emac_netbufobj buf_obj
;
1966 struct emac_netbufobj
*rx_buf_obj
;
1967 void *new_buf_token
;
1968 struct emac_rxch
*rxch
= priv
->rxch
[ch
];
1970 if (unlikely(1 == rxch
->teardown_pending
))
1973 spin_lock_irqsave(&priv
->rx_lock
, flags
);
1974 pkt_obj
.buf_list
= &buf_obj
;
1975 curr_pkt
= &pkt_obj
;
1976 curr_bd
= rxch
->active_queue_head
;
1977 BD_CACHE_INVALIDATE(curr_bd
, EMAC_BD_LENGTH_FOR_CACHE
);
1978 frame_status
= curr_bd
->mode
;
1981 ((frame_status
& EMAC_CPPI_OWNERSHIP_BIT
) == 0) &&
1982 (pkts_processed
< budget
)) {
1984 new_buffer
= emac_net_alloc_rx_buf(priv
, rxch
->buf_size
,
1985 &new_buf_token
, EMAC_DEF_RX_CH
);
1986 if (unlikely(NULL
== new_buffer
)) {
1987 ++rxch
->out_of_rx_buffers
;
1988 goto end_emac_rx_bdproc
;
1991 /* populate received packet data structure */
1992 rx_buf_obj
= &curr_pkt
->buf_list
[0];
1993 rx_buf_obj
->data_ptr
= (char *)curr_bd
->data_ptr
;
1994 rx_buf_obj
->length
= curr_bd
->off_b_len
& EMAC_RX_BD_BUF_SIZE
;
1995 rx_buf_obj
->buf_token
= curr_bd
->buf_token
;
1997 dma_unmap_single(&priv
->ndev
->dev
, curr_bd
->buff_ptr
,
1998 curr_bd
->off_b_len
& EMAC_RX_BD_BUF_SIZE
,
2001 curr_pkt
->pkt_token
= curr_pkt
->buf_list
->buf_token
;
2002 curr_pkt
->num_bufs
= 1;
2003 curr_pkt
->pkt_length
=
2004 (frame_status
& EMAC_RX_BD_PKT_LENGTH_MASK
);
2005 emac_write(EMAC_RXCP(ch
), emac_virt_to_phys(curr_bd
, priv
));
2006 ++rxch
->processed_bd
;
2008 curr_bd
= last_bd
->next
;
2009 rxch
->active_queue_head
= curr_bd
;
2011 /* check if end of RX queue ? */
2012 if (frame_status
& EMAC_CPPI_EOQ_BIT
) {
2014 ++rxch
->mis_queued_packets
;
2015 emac_write(EMAC_RXHDP(ch
),
2016 emac_virt_to_phys(curr_bd
, priv
));
2018 ++rxch
->end_of_queue
;
2019 rxch
->queue_active
= 0;
2024 emac_addbd_to_rx_queue(priv
, ch
, last_bd
, new_buffer
,
2027 /* return the packet to the user - BD ptr passed in
2028 * last parameter for potential *future* use */
2029 spin_unlock_irqrestore(&priv
->rx_lock
, flags
);
2030 emac_net_rx_cb(priv
, curr_pkt
);
2031 spin_lock_irqsave(&priv
->rx_lock
, flags
);
2032 curr_bd
= rxch
->active_queue_head
;
2034 BD_CACHE_INVALIDATE(curr_bd
, EMAC_BD_LENGTH_FOR_CACHE
);
2035 frame_status
= curr_bd
->mode
;
2041 spin_unlock_irqrestore(&priv
->rx_lock
, flags
);
2042 return pkts_processed
;
2046 * emac_hw_enable: Enable EMAC hardware for packet transmission/reception
2047 * @priv: The DaVinci EMAC private adapter structure
2049 * Enables EMAC hardware for packet processing - enables PHY, enables RX
2050 * for packet reception and enables device interrupts and then NAPI
2052 * Returns success (0) or appropriate error code (none right now)
2054 static int emac_hw_enable(struct emac_priv
*priv
)
2056 u32 ch
, val
, mbp_enable
, mac_control
;
2059 emac_write(EMAC_SOFTRESET
, 1);
2060 while (emac_read(EMAC_SOFTRESET
))
2063 /* Disable interrupt & Set pacing for more interrupts initially */
2064 emac_int_disable(priv
);
2066 /* Full duplex enable bit set when auto negotiation happens */
2068 (((EMAC_DEF_TXPRIO_FIXED
) ? (EMAC_MACCONTROL_TXPTYPE
) : 0x0) |
2069 ((priv
->speed
== 1000) ? EMAC_MACCONTROL_GIGABITEN
: 0x0) |
2070 ((EMAC_DEF_TXPACING_EN
) ? (EMAC_MACCONTROL_TXPACEEN
) : 0x0) |
2071 ((priv
->duplex
== DUPLEX_FULL
) ? 0x1 : 0));
2072 emac_write(EMAC_MACCONTROL
, mac_control
);
2075 (((EMAC_DEF_PASS_CRC
) ? (EMAC_RXMBP_PASSCRC_MASK
) : 0x0) |
2076 ((EMAC_DEF_QOS_EN
) ? (EMAC_RXMBP_QOSEN_MASK
) : 0x0) |
2077 ((EMAC_DEF_NO_BUFF_CHAIN
) ? (EMAC_RXMBP_NOCHAIN_MASK
) : 0x0) |
2078 ((EMAC_DEF_MACCTRL_FRAME_EN
) ? (EMAC_RXMBP_CMFEN_MASK
) : 0x0) |
2079 ((EMAC_DEF_SHORT_FRAME_EN
) ? (EMAC_RXMBP_CSFEN_MASK
) : 0x0) |
2080 ((EMAC_DEF_ERROR_FRAME_EN
) ? (EMAC_RXMBP_CEFEN_MASK
) : 0x0) |
2081 ((EMAC_DEF_PROM_EN
) ? (EMAC_RXMBP_CAFEN_MASK
) : 0x0) |
2082 ((EMAC_DEF_PROM_CH
& EMAC_RXMBP_CHMASK
) << \
2083 EMAC_RXMBP_PROMCH_SHIFT
) |
2084 ((EMAC_DEF_BCAST_EN
) ? (EMAC_RXMBP_BROADEN_MASK
) : 0x0) |
2085 ((EMAC_DEF_BCAST_CH
& EMAC_RXMBP_CHMASK
) << \
2086 EMAC_RXMBP_BROADCH_SHIFT
) |
2087 ((EMAC_DEF_MCAST_EN
) ? (EMAC_RXMBP_MULTIEN_MASK
) : 0x0) |
2088 ((EMAC_DEF_MCAST_CH
& EMAC_RXMBP_CHMASK
) << \
2089 EMAC_RXMBP_MULTICH_SHIFT
));
2090 emac_write(EMAC_RXMBPENABLE
, mbp_enable
);
2091 emac_write(EMAC_RXMAXLEN
, (EMAC_DEF_MAX_FRAME_SIZE
&
2092 EMAC_RX_MAX_LEN_MASK
));
2093 emac_write(EMAC_RXBUFFEROFFSET
, (EMAC_DEF_BUFFER_OFFSET
&
2094 EMAC_RX_BUFFER_OFFSET_MASK
));
2095 emac_write(EMAC_RXFILTERLOWTHRESH
, 0);
2096 emac_write(EMAC_RXUNICASTCLEAR
, EMAC_RX_UNICAST_CLEAR_ALL
);
2097 priv
->rx_addr_type
= (emac_read(EMAC_MACCONFIG
) >> 8) & 0xFF;
2099 val
= emac_read(EMAC_TXCONTROL
);
2100 val
|= EMAC_TX_CONTROL_TX_ENABLE_VAL
;
2101 emac_write(EMAC_TXCONTROL
, val
);
2102 val
= emac_read(EMAC_RXCONTROL
);
2103 val
|= EMAC_RX_CONTROL_RX_ENABLE_VAL
;
2104 emac_write(EMAC_RXCONTROL
, val
);
2105 emac_write(EMAC_MACINTMASKSET
, EMAC_MAC_HOST_ERR_INTMASK_VAL
);
2107 for (ch
= 0; ch
< EMAC_DEF_MAX_TX_CH
; ch
++) {
2108 emac_write(EMAC_TXHDP(ch
), 0);
2109 emac_write(EMAC_TXINTMASKSET
, BIT(ch
));
2111 for (ch
= 0; ch
< EMAC_DEF_MAX_RX_CH
; ch
++) {
2112 struct emac_rxch
*rxch
= priv
->rxch
[ch
];
2113 emac_setmac(priv
, ch
, rxch
->mac_addr
);
2114 emac_write(EMAC_RXINTMASKSET
, BIT(ch
));
2115 rxch
->queue_active
= 1;
2116 emac_write(EMAC_RXHDP(ch
),
2117 emac_virt_to_phys(rxch
->active_queue_head
, priv
));
2121 val
= emac_read(EMAC_MACCONTROL
);
2122 val
|= (EMAC_MACCONTROL_GMIIEN
);
2123 emac_write(EMAC_MACCONTROL
, val
);
2125 /* Enable NAPI and interrupts */
2126 napi_enable(&priv
->napi
);
2127 emac_int_enable(priv
);
2133 * emac_poll: EMAC NAPI Poll function
2134 * @ndev: The DaVinci EMAC network adapter
2135 * @budget: Number of receive packets to process (as told by NAPI layer)
2137 * NAPI Poll function implemented to process packets as per budget. We check
2138 * the type of interrupt on the device and accordingly call the TX or RX
2139 * packet processing functions. We follow the budget for RX processing and
2140 * also put a cap on number of TX pkts processed through config param. The
2141 * NAPI schedule function is called if more packets pending.
2143 * Returns number of packets received (in most cases; else TX pkts - rarely)
2145 static int emac_poll(struct napi_struct
*napi
, int budget
)
2148 struct emac_priv
*priv
= container_of(napi
, struct emac_priv
, napi
);
2149 struct net_device
*ndev
= priv
->ndev
;
2150 struct device
*emac_dev
= &ndev
->dev
;
2154 /* Check interrupt vectors and call packet processing */
2155 status
= emac_read(EMAC_MACINVECTOR
);
2157 mask
= EMAC_DM644X_MAC_IN_VECTOR_TX_INT_VEC
;
2159 if (priv
->version
== EMAC_VERSION_2
)
2160 mask
= EMAC_DM646X_MAC_IN_VECTOR_TX_INT_VEC
;
2162 if (status
& mask
) {
2163 num_pkts
= emac_tx_bdproc(priv
, EMAC_DEF_TX_CH
,
2164 EMAC_DEF_TX_MAX_SERVICE
);
2165 } /* TX processing */
2170 mask
= EMAC_DM644X_MAC_IN_VECTOR_RX_INT_VEC
;
2172 if (priv
->version
== EMAC_VERSION_2
)
2173 mask
= EMAC_DM646X_MAC_IN_VECTOR_RX_INT_VEC
;
2175 if (status
& mask
) {
2176 num_pkts
= emac_rx_bdproc(priv
, EMAC_DEF_RX_CH
, budget
);
2177 } /* RX processing */
2179 if (num_pkts
< budget
) {
2180 napi_complete(napi
);
2181 emac_int_enable(priv
);
2184 mask
= EMAC_DM644X_MAC_IN_VECTOR_HOST_INT
;
2185 if (priv
->version
== EMAC_VERSION_2
)
2186 mask
= EMAC_DM646X_MAC_IN_VECTOR_HOST_INT
;
2188 if (unlikely(status
& mask
)) {
2190 dev_err(emac_dev
, "DaVinci EMAC: Fatal Hardware Error\n");
2191 netif_stop_queue(ndev
);
2192 napi_disable(&priv
->napi
);
2194 status
= emac_read(EMAC_MACSTATUS
);
2195 cause
= ((status
& EMAC_MACSTATUS_TXERRCODE_MASK
) >>
2196 EMAC_MACSTATUS_TXERRCODE_SHIFT
);
2198 ch
= ((status
& EMAC_MACSTATUS_TXERRCH_MASK
) >>
2199 EMAC_MACSTATUS_TXERRCH_SHIFT
);
2200 if (net_ratelimit()) {
2201 dev_err(emac_dev
, "TX Host error %s on ch=%d\n",
2202 &emac_txhost_errcodes
[cause
][0], ch
);
2205 cause
= ((status
& EMAC_MACSTATUS_RXERRCODE_MASK
) >>
2206 EMAC_MACSTATUS_RXERRCODE_SHIFT
);
2208 ch
= ((status
& EMAC_MACSTATUS_RXERRCH_MASK
) >>
2209 EMAC_MACSTATUS_RXERRCH_SHIFT
);
2210 if (netif_msg_hw(priv
) && net_ratelimit())
2211 dev_err(emac_dev
, "RX Host error %s on ch=%d\n",
2212 &emac_rxhost_errcodes
[cause
][0], ch
);
2214 } /* Host error processing */
2219 #ifdef CONFIG_NET_POLL_CONTROLLER
2221 * emac_poll_controller: EMAC Poll controller function
2222 * @ndev: The DaVinci EMAC network adapter
2224 * Polled functionality used by netconsole and others in non interrupt mode
2227 void emac_poll_controller(struct net_device
*ndev
)
2229 struct emac_priv
*priv
= netdev_priv(ndev
);
2231 emac_int_disable(priv
);
2232 emac_irq(ndev
->irq
, ndev
);
2233 emac_int_enable(priv
);
2237 /* PHY/MII bus related */
2239 /* Wait until mdio is ready for next command */
2240 #define MDIO_WAIT_FOR_USER_ACCESS\
2241 while ((emac_mdio_read((MDIO_USERACCESS(0))) &\
2242 MDIO_USERACCESS_GO) != 0)
2244 static int emac_mii_read(struct mii_bus
*bus
, int phy_id
, int phy_reg
)
2246 unsigned int phy_data
= 0;
2247 unsigned int phy_control
;
2249 /* Wait until mdio is ready for next command */
2250 MDIO_WAIT_FOR_USER_ACCESS
;
2252 phy_control
= (MDIO_USERACCESS_GO
|
2253 MDIO_USERACCESS_READ
|
2254 ((phy_reg
<< 21) & MDIO_USERACCESS_REGADR
) |
2255 ((phy_id
<< 16) & MDIO_USERACCESS_PHYADR
) |
2256 (phy_data
& MDIO_USERACCESS_DATA
));
2257 emac_mdio_write(MDIO_USERACCESS(0), phy_control
);
2259 /* Wait until mdio is ready for next command */
2260 MDIO_WAIT_FOR_USER_ACCESS
;
2262 return emac_mdio_read(MDIO_USERACCESS(0)) & MDIO_USERACCESS_DATA
;
2266 static int emac_mii_write(struct mii_bus
*bus
, int phy_id
,
2267 int phy_reg
, u16 phy_data
)
2270 unsigned int control
;
2272 /* until mdio is ready for next command */
2273 MDIO_WAIT_FOR_USER_ACCESS
;
2275 control
= (MDIO_USERACCESS_GO
|
2276 MDIO_USERACCESS_WRITE
|
2277 ((phy_reg
<< 21) & MDIO_USERACCESS_REGADR
) |
2278 ((phy_id
<< 16) & MDIO_USERACCESS_PHYADR
) |
2279 (phy_data
& MDIO_USERACCESS_DATA
));
2280 emac_mdio_write(MDIO_USERACCESS(0), control
);
2285 static int emac_mii_reset(struct mii_bus
*bus
)
2287 unsigned int clk_div
;
2288 int mdio_bus_freq
= emac_bus_frequency
;
2290 if (mdio_max_freq
&& mdio_bus_freq
)
2291 clk_div
= ((mdio_bus_freq
/ mdio_max_freq
) - 1);
2295 clk_div
&= MDIO_CONTROL_CLKDIV
;
2297 /* Set enable and clock divider in MDIOControl */
2298 emac_mdio_write(MDIO_CONTROL
, (clk_div
| MDIO_CONTROL_ENABLE
));
2304 static int mii_irqs
[PHY_MAX_ADDR
] = { PHY_POLL
, PHY_POLL
};
2306 /* emac_driver: EMAC MII bus structure */
2308 static struct mii_bus
*emac_mii
;
2310 static void emac_adjust_link(struct net_device
*ndev
)
2312 struct emac_priv
*priv
= netdev_priv(ndev
);
2313 struct phy_device
*phydev
= priv
->phydev
;
2314 unsigned long flags
;
2317 spin_lock_irqsave(&priv
->lock
, flags
);
2320 /* check the mode of operation - full/half duplex */
2321 if (phydev
->duplex
!= priv
->duplex
) {
2323 priv
->duplex
= phydev
->duplex
;
2325 if (phydev
->speed
!= priv
->speed
) {
2327 priv
->speed
= phydev
->speed
;
2334 } else if (priv
->link
) {
2341 emac_update_phystatus(priv
);
2342 phy_print_status(priv
->phydev
);
2345 spin_unlock_irqrestore(&priv
->lock
, flags
);
2348 /*************************************************************************
2349 * Linux Driver Model
2350 *************************************************************************/
2353 * emac_devioctl: EMAC adapter ioctl
2354 * @ndev: The DaVinci EMAC network adapter
2355 * @ifrq: request parameter
2356 * @cmd: command parameter
2358 * EMAC driver ioctl function
2360 * Returns success(0) or appropriate error code
2362 static int emac_devioctl(struct net_device
*ndev
, struct ifreq
*ifrq
, int cmd
)
2364 dev_warn(&ndev
->dev
, "DaVinci EMAC: ioctl not supported\n");
2366 if (!(netif_running(ndev
)))
2369 /* TODO: Add phy read and write and private statistics get feature */
2375 * emac_dev_open: EMAC device open
2376 * @ndev: The DaVinci EMAC network adapter
2378 * Called when system wants to start the interface. We init TX/RX channels
2379 * and enable the hardware for packet reception/transmission and start the
2382 * Returns 0 for a successful open, or appropriate error code
2384 static int emac_dev_open(struct net_device
*ndev
)
2386 struct device
*emac_dev
= &ndev
->dev
;
2389 struct resource
*res
;
2393 struct emac_priv
*priv
= netdev_priv(ndev
);
2395 netif_carrier_off(ndev
);
2396 for (cnt
= 0; cnt
< ETH_ALEN
; cnt
++)
2397 ndev
->dev_addr
[cnt
] = priv
->mac_addr
[cnt
];
2399 /* Configuration items */
2400 priv
->rx_buf_size
= EMAC_DEF_MAX_FRAME_SIZE
+ NET_IP_ALIGN
;
2402 /* Clear basic hardware */
2403 for (ch
= 0; ch
< EMAC_MAX_TXRX_CHANNELS
; ch
++) {
2404 emac_write(EMAC_TXHDP(ch
), 0);
2405 emac_write(EMAC_RXHDP(ch
), 0);
2406 emac_write(EMAC_RXHDP(ch
), 0);
2407 emac_write(EMAC_RXINTMASKCLEAR
, EMAC_INT_MASK_CLEAR
);
2408 emac_write(EMAC_TXINTMASKCLEAR
, EMAC_INT_MASK_CLEAR
);
2410 priv
->mac_hash1
= 0;
2411 priv
->mac_hash2
= 0;
2412 emac_write(EMAC_MACHASH1
, 0);
2413 emac_write(EMAC_MACHASH2
, 0);
2415 /* multi ch not supported - open 1 TX, 1RX ch by default */
2416 rc
= emac_init_txch(priv
, EMAC_DEF_TX_CH
);
2418 dev_err(emac_dev
, "DaVinci EMAC: emac_init_txch() failed");
2421 rc
= emac_init_rxch(priv
, EMAC_DEF_RX_CH
, priv
->mac_addr
);
2423 dev_err(emac_dev
, "DaVinci EMAC: emac_init_rxch() failed");
2429 while ((res
= platform_get_resource(priv
->pdev
, IORESOURCE_IRQ
, k
))) {
2430 for (i
= res
->start
; i
<= res
->end
; i
++) {
2431 if (request_irq(i
, emac_irq
, IRQF_DISABLED
,
2438 /* Start/Enable EMAC hardware */
2439 emac_hw_enable(priv
);
2441 /* find the first phy */
2442 priv
->phydev
= NULL
;
2443 if (priv
->phy_mask
) {
2444 emac_mii_reset(priv
->mii_bus
);
2445 for (phy_addr
= 0; phy_addr
< PHY_MAX_ADDR
; phy_addr
++) {
2446 if (priv
->mii_bus
->phy_map
[phy_addr
]) {
2447 priv
->phydev
= priv
->mii_bus
->phy_map
[phy_addr
];
2452 if (!priv
->phydev
) {
2453 printk(KERN_ERR
"%s: no PHY found\n", ndev
->name
);
2457 priv
->phydev
= phy_connect(ndev
, dev_name(&priv
->phydev
->dev
),
2458 &emac_adjust_link
, 0, PHY_INTERFACE_MODE_MII
);
2460 if (IS_ERR(priv
->phydev
)) {
2461 printk(KERN_ERR
"%s: Could not attach to PHY\n",
2463 return PTR_ERR(priv
->phydev
);
2470 printk(KERN_INFO
"%s: attached PHY driver [%s] "
2471 "(mii_bus:phy_addr=%s, id=%x)\n", ndev
->name
,
2472 priv
->phydev
->drv
->name
, dev_name(&priv
->phydev
->dev
),
2473 priv
->phydev
->phy_id
);
2475 /* No PHY , fix the link, speed and duplex settings */
2477 priv
->speed
= SPEED_100
;
2478 priv
->duplex
= DUPLEX_FULL
;
2479 emac_update_phystatus(priv
);
2482 if (!netif_running(ndev
)) /* debug only - to avoid compiler warning */
2483 emac_dump_regs(priv
);
2485 if (netif_msg_drv(priv
))
2486 dev_notice(emac_dev
, "DaVinci EMAC: Opened %s\n", ndev
->name
);
2489 phy_start(priv
->phydev
);
2495 dev_err(emac_dev
, "DaVinci EMAC: request_irq() failed");
2497 for (q
= k
; k
>= 0; k
--) {
2498 for (m
= i
; m
>= res
->start
; m
--)
2500 res
= platform_get_resource(priv
->pdev
, IORESOURCE_IRQ
, k
-1);
2507 * emac_dev_stop: EMAC device stop
2508 * @ndev: The DaVinci EMAC network adapter
2510 * Called when system wants to stop or down the interface. We stop the network
2511 * queue, disable interrupts and cleanup TX/RX channels.
2513 * We return the statistics in net_device_stats structure pulled from emac
2515 static int emac_dev_stop(struct net_device
*ndev
)
2517 struct resource
*res
;
2520 struct emac_priv
*priv
= netdev_priv(ndev
);
2521 struct device
*emac_dev
= &ndev
->dev
;
2523 /* inform the upper layers. */
2524 netif_stop_queue(ndev
);
2525 napi_disable(&priv
->napi
);
2527 netif_carrier_off(ndev
);
2528 emac_int_disable(priv
);
2529 emac_stop_txch(priv
, EMAC_DEF_TX_CH
);
2530 emac_stop_rxch(priv
, EMAC_DEF_RX_CH
);
2531 emac_cleanup_txch(priv
, EMAC_DEF_TX_CH
);
2532 emac_cleanup_rxch(priv
, EMAC_DEF_RX_CH
);
2533 emac_write(EMAC_SOFTRESET
, 1);
2536 phy_disconnect(priv
->phydev
);
2539 while ((res
= platform_get_resource(priv
->pdev
, IORESOURCE_IRQ
, i
))) {
2540 for (irq_num
= res
->start
; irq_num
<= res
->end
; irq_num
++)
2541 free_irq(irq_num
, priv
->ndev
);
2545 if (netif_msg_drv(priv
))
2546 dev_notice(emac_dev
, "DaVinci EMAC: %s stopped\n", ndev
->name
);
2552 * emac_dev_getnetstats: EMAC get statistics function
2553 * @ndev: The DaVinci EMAC network adapter
2555 * Called when system wants to get statistics from the device.
2557 * We return the statistics in net_device_stats structure pulled from emac
2559 static struct net_device_stats
*emac_dev_getnetstats(struct net_device
*ndev
)
2561 struct emac_priv
*priv
= netdev_priv(ndev
);
2563 u32 stats_clear_mask
;
2565 /* update emac hardware stats and reset the registers*/
2567 mac_control
= emac_read(EMAC_MACCONTROL
);
2569 if (mac_control
& EMAC_MACCONTROL_GMIIEN
)
2570 stats_clear_mask
= EMAC_STATS_CLR_MASK
;
2572 stats_clear_mask
= 0;
2574 priv
->net_dev_stats
.multicast
+= emac_read(EMAC_RXMCASTFRAMES
);
2575 emac_write(EMAC_RXMCASTFRAMES
, stats_clear_mask
);
2577 priv
->net_dev_stats
.collisions
+= (emac_read(EMAC_TXCOLLISION
) +
2578 emac_read(EMAC_TXSINGLECOLL
) +
2579 emac_read(EMAC_TXMULTICOLL
));
2580 emac_write(EMAC_TXCOLLISION
, stats_clear_mask
);
2581 emac_write(EMAC_TXSINGLECOLL
, stats_clear_mask
);
2582 emac_write(EMAC_TXMULTICOLL
, stats_clear_mask
);
2584 priv
->net_dev_stats
.rx_length_errors
+= (emac_read(EMAC_RXOVERSIZED
) +
2585 emac_read(EMAC_RXJABBER
) +
2586 emac_read(EMAC_RXUNDERSIZED
));
2587 emac_write(EMAC_RXOVERSIZED
, stats_clear_mask
);
2588 emac_write(EMAC_RXJABBER
, stats_clear_mask
);
2589 emac_write(EMAC_RXUNDERSIZED
, stats_clear_mask
);
2591 priv
->net_dev_stats
.rx_over_errors
+= (emac_read(EMAC_RXSOFOVERRUNS
) +
2592 emac_read(EMAC_RXMOFOVERRUNS
));
2593 emac_write(EMAC_RXSOFOVERRUNS
, stats_clear_mask
);
2594 emac_write(EMAC_RXMOFOVERRUNS
, stats_clear_mask
);
2596 priv
->net_dev_stats
.rx_fifo_errors
+= emac_read(EMAC_RXDMAOVERRUNS
);
2597 emac_write(EMAC_RXDMAOVERRUNS
, stats_clear_mask
);
2599 priv
->net_dev_stats
.tx_carrier_errors
+=
2600 emac_read(EMAC_TXCARRIERSENSE
);
2601 emac_write(EMAC_TXCARRIERSENSE
, stats_clear_mask
);
2603 priv
->net_dev_stats
.tx_fifo_errors
= emac_read(EMAC_TXUNDERRUN
);
2604 emac_write(EMAC_TXUNDERRUN
, stats_clear_mask
);
2606 return &priv
->net_dev_stats
;
2609 static const struct net_device_ops emac_netdev_ops
= {
2610 .ndo_open
= emac_dev_open
,
2611 .ndo_stop
= emac_dev_stop
,
2612 .ndo_start_xmit
= emac_dev_xmit
,
2613 .ndo_set_multicast_list
= emac_dev_mcast_set
,
2614 .ndo_set_mac_address
= emac_dev_setmac_addr
,
2615 .ndo_do_ioctl
= emac_devioctl
,
2616 .ndo_tx_timeout
= emac_dev_tx_timeout
,
2617 .ndo_get_stats
= emac_dev_getnetstats
,
2618 #ifdef CONFIG_NET_POLL_CONTROLLER
2619 .ndo_poll_controller
= emac_poll_controller
,
2624 * davinci_emac_probe: EMAC device probe
2625 * @pdev: The DaVinci EMAC device that we are removing
2627 * Called when probing for emac devicesr. We get details of instances and
2628 * resource information from platform init and register a network device
2629 * and allocate resources necessary for driver to perform
2631 static int __devinit
davinci_emac_probe(struct platform_device
*pdev
)
2634 struct resource
*res
;
2635 struct net_device
*ndev
;
2636 struct emac_priv
*priv
;
2638 struct emac_platform_data
*pdata
;
2639 struct device
*emac_dev
;
2641 /* obtain emac clock from kernel */
2642 emac_clk
= clk_get(&pdev
->dev
, NULL
);
2643 if (IS_ERR(emac_clk
)) {
2644 printk(KERN_ERR
"DaVinci EMAC: Failed to get EMAC clock\n");
2647 emac_bus_frequency
= clk_get_rate(emac_clk
);
2648 /* TODO: Probe PHY here if possible */
2650 ndev
= alloc_etherdev(sizeof(struct emac_priv
));
2652 printk(KERN_ERR
"DaVinci EMAC: Error allocating net_device\n");
2657 platform_set_drvdata(pdev
, ndev
);
2658 priv
= netdev_priv(ndev
);
2661 priv
->msg_enable
= netif_msg_init(debug_level
, DAVINCI_EMAC_DEBUG
);
2663 spin_lock_init(&priv
->tx_lock
);
2664 spin_lock_init(&priv
->rx_lock
);
2665 spin_lock_init(&priv
->lock
);
2667 pdata
= pdev
->dev
.platform_data
;
2669 printk(KERN_ERR
"DaVinci EMAC: No platform data\n");
2673 /* MAC addr and PHY mask , RMII enable info from platform_data */
2674 memcpy(priv
->mac_addr
, pdata
->mac_addr
, 6);
2675 priv
->phy_mask
= pdata
->phy_mask
;
2676 priv
->rmii_en
= pdata
->rmii_en
;
2677 priv
->version
= pdata
->version
;
2678 priv
->int_enable
= pdata
->interrupt_enable
;
2679 priv
->int_disable
= pdata
->interrupt_disable
;
2681 emac_dev
= &ndev
->dev
;
2682 /* Get EMAC platform data */
2683 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
2685 dev_err(emac_dev
, "DaVinci EMAC: Error getting res\n");
2690 priv
->emac_base_phys
= res
->start
+ pdata
->ctrl_reg_offset
;
2691 size
= res
->end
- res
->start
+ 1;
2692 if (!request_mem_region(res
->start
, size
, ndev
->name
)) {
2693 dev_err(emac_dev
, "DaVinci EMAC: failed request_mem_region() for regs\n");
2698 priv
->remap_addr
= ioremap(res
->start
, size
);
2699 if (!priv
->remap_addr
) {
2700 dev_err(emac_dev
, "Unable to map IO\n");
2702 release_mem_region(res
->start
, size
);
2705 priv
->emac_base
= priv
->remap_addr
+ pdata
->ctrl_reg_offset
;
2706 ndev
->base_addr
= (unsigned long)priv
->remap_addr
;
2708 priv
->ctrl_base
= priv
->remap_addr
+ pdata
->ctrl_mod_reg_offset
;
2709 priv
->ctrl_ram_size
= pdata
->ctrl_ram_size
;
2710 priv
->emac_ctrl_ram
= priv
->remap_addr
+ pdata
->ctrl_ram_offset
;
2712 if (pdata
->hw_ram_addr
)
2713 priv
->hw_ram_addr
= pdata
->hw_ram_addr
;
2715 priv
->hw_ram_addr
= (u32 __force
)res
->start
+
2716 pdata
->ctrl_ram_offset
;
2718 res
= platform_get_resource(pdev
, IORESOURCE_IRQ
, 0);
2720 dev_err(emac_dev
, "DaVinci EMAC: Error getting irq res\n");
2724 ndev
->irq
= res
->start
;
2726 if (!is_valid_ether_addr(priv
->mac_addr
)) {
2727 /* Use random MAC if none passed */
2728 random_ether_addr(priv
->mac_addr
);
2729 printk(KERN_WARNING
"%s: using random MAC addr: %pM\n",
2730 __func__
, priv
->mac_addr
);
2733 ndev
->netdev_ops
= &emac_netdev_ops
;
2734 SET_ETHTOOL_OPS(ndev
, ðtool_ops
);
2735 netif_napi_add(ndev
, &priv
->napi
, emac_poll
, EMAC_POLL_WEIGHT
);
2737 clk_enable(emac_clk
);
2739 /* register the network device */
2740 SET_NETDEV_DEV(ndev
, &pdev
->dev
);
2741 rc
= register_netdev(ndev
);
2743 dev_err(emac_dev
, "DaVinci EMAC: Error in register_netdev\n");
2745 goto netdev_reg_err
;
2749 /* MII/Phy intialisation, mdio bus registration */
2750 emac_mii
= mdiobus_alloc();
2751 if (emac_mii
== NULL
) {
2752 dev_err(emac_dev
, "DaVinci EMAC: Error allocating mii_bus\n");
2754 goto mdio_alloc_err
;
2757 priv
->mii_bus
= emac_mii
;
2758 emac_mii
->name
= "emac-mii",
2759 emac_mii
->read
= emac_mii_read
,
2760 emac_mii
->write
= emac_mii_write
,
2761 emac_mii
->reset
= emac_mii_reset
,
2762 emac_mii
->irq
= mii_irqs
,
2763 emac_mii
->phy_mask
= ~(priv
->phy_mask
);
2764 emac_mii
->parent
= &pdev
->dev
;
2765 emac_mii
->priv
= priv
->remap_addr
+ pdata
->mdio_reg_offset
;
2766 snprintf(priv
->mii_bus
->id
, MII_BUS_ID_SIZE
, "%x", priv
->pdev
->id
);
2767 mdio_max_freq
= pdata
->mdio_max_freq
;
2768 emac_mii
->reset(emac_mii
);
2770 /* Register the MII bus */
2771 rc
= mdiobus_register(emac_mii
);
2775 if (netif_msg_probe(priv
)) {
2776 dev_notice(emac_dev
, "DaVinci EMAC Probe found device "\
2777 "(regs: %p, irq: %d)\n",
2778 (void *)priv
->emac_base_phys
, ndev
->irq
);
2783 mdiobus_free(emac_mii
);
2787 clk_disable(emac_clk
);
2789 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
2790 release_mem_region(res
->start
, res
->end
- res
->start
+ 1);
2791 iounmap(priv
->remap_addr
);
2800 * davinci_emac_remove: EMAC device remove
2801 * @pdev: The DaVinci EMAC device that we are removing
2803 * Called when removing the device driver. We disable clock usage and release
2804 * the resources taken up by the driver and unregister network device
2806 static int __devexit
davinci_emac_remove(struct platform_device
*pdev
)
2808 struct resource
*res
;
2809 struct net_device
*ndev
= platform_get_drvdata(pdev
);
2810 struct emac_priv
*priv
= netdev_priv(ndev
);
2812 dev_notice(&ndev
->dev
, "DaVinci EMAC: davinci_emac_remove()\n");
2814 platform_set_drvdata(pdev
, NULL
);
2815 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
2816 mdiobus_unregister(priv
->mii_bus
);
2817 mdiobus_free(priv
->mii_bus
);
2819 release_mem_region(res
->start
, res
->end
- res
->start
+ 1);
2821 unregister_netdev(ndev
);
2823 iounmap(priv
->remap_addr
);
2825 clk_disable(emac_clk
);
2831 static int davinci_emac_suspend(struct device
*dev
)
2833 struct platform_device
*pdev
= to_platform_device(dev
);
2834 struct net_device
*ndev
= platform_get_drvdata(pdev
);
2836 if (netif_running(ndev
))
2837 emac_dev_stop(ndev
);
2839 clk_disable(emac_clk
);
2844 static int davinci_emac_resume(struct device
*dev
)
2846 struct platform_device
*pdev
= to_platform_device(dev
);
2847 struct net_device
*ndev
= platform_get_drvdata(pdev
);
2849 clk_enable(emac_clk
);
2851 if (netif_running(ndev
))
2852 emac_dev_open(ndev
);
2857 static const struct dev_pm_ops davinci_emac_pm_ops
= {
2858 .suspend
= davinci_emac_suspend
,
2859 .resume
= davinci_emac_resume
,
2863 * davinci_emac_driver: EMAC platform driver structure
2865 static struct platform_driver davinci_emac_driver
= {
2867 .name
= "davinci_emac",
2868 .owner
= THIS_MODULE
,
2869 .pm
= &davinci_emac_pm_ops
,
2871 .probe
= davinci_emac_probe
,
2872 .remove
= __devexit_p(davinci_emac_remove
),
2876 * davinci_emac_init: EMAC driver module init
2878 * Called when initializing the driver. We register the driver with
2881 static int __init
davinci_emac_init(void)
2883 return platform_driver_register(&davinci_emac_driver
);
2885 late_initcall(davinci_emac_init
);
2888 * davinci_emac_exit: EMAC driver module exit
2890 * Called when exiting the driver completely. We unregister the driver with
2891 * the platform and exit
2893 static void __exit
davinci_emac_exit(void)
2895 platform_driver_unregister(&davinci_emac_driver
);
2897 module_exit(davinci_emac_exit
);
2899 MODULE_LICENSE("GPL");
2900 MODULE_AUTHOR("DaVinci EMAC Maintainer: Anant Gole <anantgole@ti.com>");
2901 MODULE_AUTHOR("DaVinci EMAC Maintainer: Chaithrika U S <chaithrika@ti.com>");
2902 MODULE_DESCRIPTION("DaVinci EMAC Ethernet driver");