2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
6 * Copyright (C) 2009-2012 Cavium, Inc
9 #include <linux/platform_device.h>
10 #include <linux/dma-mapping.h>
11 #include <linux/etherdevice.h>
12 #include <linux/capability.h>
13 #include <linux/net_tstamp.h>
14 #include <linux/interrupt.h>
15 #include <linux/netdevice.h>
16 #include <linux/spinlock.h>
17 #include <linux/if_vlan.h>
18 #include <linux/of_mdio.h>
19 #include <linux/module.h>
20 #include <linux/of_net.h>
21 #include <linux/init.h>
22 #include <linux/slab.h>
23 #include <linux/phy.h>
26 #include <asm/octeon/octeon.h>
27 #include <asm/octeon/cvmx-mixx-defs.h>
28 #include <asm/octeon/cvmx-agl-defs.h>
30 #define DRV_NAME "octeon_mgmt"
31 #define DRV_VERSION "2.0"
32 #define DRV_DESCRIPTION \
33 "Cavium Networks Octeon MII (management) port Network Driver"
35 #define OCTEON_MGMT_NAPI_WEIGHT 16
37 /* Ring sizes that are powers of two allow for more efficient modulo
40 #define OCTEON_MGMT_RX_RING_SIZE 512
41 #define OCTEON_MGMT_TX_RING_SIZE 128
43 /* Allow 8 bytes for vlan and FCS. */
44 #define OCTEON_MGMT_RX_HEADROOM (ETH_HLEN + ETH_FCS_LEN + VLAN_HLEN)
46 union mgmt_port_ring_entry
{
49 #define RING_ENTRY_CODE_DONE 0xf
50 #define RING_ENTRY_CODE_MORE 0x10
51 #ifdef __BIG_ENDIAN_BITFIELD
53 /* Length of the buffer/packet in bytes */
55 /* For TX, signals that the packet should be timestamped */
57 /* The RX error code */
59 /* Physical address of the buffer */
71 #define MIX_ORING1 0x0
72 #define MIX_ORING2 0x8
73 #define MIX_IRING1 0x10
74 #define MIX_IRING2 0x18
76 #define MIX_IRHWM 0x28
77 #define MIX_IRCNT 0x30
78 #define MIX_ORHWM 0x38
79 #define MIX_ORCNT 0x40
81 #define MIX_INTENA 0x50
82 #define MIX_REMCNT 0x58
85 #define AGL_GMX_PRT_CFG 0x10
86 #define AGL_GMX_RX_FRM_CTL 0x18
87 #define AGL_GMX_RX_FRM_MAX 0x30
88 #define AGL_GMX_RX_JABBER 0x38
89 #define AGL_GMX_RX_STATS_CTL 0x50
91 #define AGL_GMX_RX_STATS_PKTS_DRP 0xb0
92 #define AGL_GMX_RX_STATS_OCTS_DRP 0xb8
93 #define AGL_GMX_RX_STATS_PKTS_BAD 0xc0
95 #define AGL_GMX_RX_ADR_CTL 0x100
96 #define AGL_GMX_RX_ADR_CAM_EN 0x108
97 #define AGL_GMX_RX_ADR_CAM0 0x180
98 #define AGL_GMX_RX_ADR_CAM1 0x188
99 #define AGL_GMX_RX_ADR_CAM2 0x190
100 #define AGL_GMX_RX_ADR_CAM3 0x198
101 #define AGL_GMX_RX_ADR_CAM4 0x1a0
102 #define AGL_GMX_RX_ADR_CAM5 0x1a8
104 #define AGL_GMX_TX_CLK 0x208
105 #define AGL_GMX_TX_STATS_CTL 0x268
106 #define AGL_GMX_TX_CTL 0x270
107 #define AGL_GMX_TX_STAT0 0x280
108 #define AGL_GMX_TX_STAT1 0x288
109 #define AGL_GMX_TX_STAT2 0x290
110 #define AGL_GMX_TX_STAT3 0x298
111 #define AGL_GMX_TX_STAT4 0x2a0
112 #define AGL_GMX_TX_STAT5 0x2a8
113 #define AGL_GMX_TX_STAT6 0x2b0
114 #define AGL_GMX_TX_STAT7 0x2b8
115 #define AGL_GMX_TX_STAT8 0x2c0
116 #define AGL_GMX_TX_STAT9 0x2c8
119 struct net_device
*netdev
;
127 dma_addr_t tx_ring_handle
;
128 unsigned int tx_next
;
129 unsigned int tx_next_clean
;
130 unsigned int tx_current_fill
;
131 /* The tx_list lock also protects the ring related variables */
132 struct sk_buff_head tx_list
;
134 /* RX variables only touched in napi_poll. No locking necessary. */
136 dma_addr_t rx_ring_handle
;
137 unsigned int rx_next
;
138 unsigned int rx_next_fill
;
139 unsigned int rx_current_fill
;
140 struct sk_buff_head rx_list
;
143 unsigned int last_duplex
;
144 unsigned int last_link
;
145 unsigned int last_speed
;
147 struct napi_struct napi
;
148 struct tasklet_struct tx_clean_tasklet
;
149 struct device_node
*phy_np
;
150 resource_size_t mix_phys
;
151 resource_size_t mix_size
;
152 resource_size_t agl_phys
;
153 resource_size_t agl_size
;
154 resource_size_t agl_prt_ctl_phys
;
155 resource_size_t agl_prt_ctl_size
;
158 static void octeon_mgmt_set_rx_irq(struct octeon_mgmt
*p
, int enable
)
160 union cvmx_mixx_intena mix_intena
;
163 spin_lock_irqsave(&p
->lock
, flags
);
164 mix_intena
.u64
= cvmx_read_csr(p
->mix
+ MIX_INTENA
);
165 mix_intena
.s
.ithena
= enable
? 1 : 0;
166 cvmx_write_csr(p
->mix
+ MIX_INTENA
, mix_intena
.u64
);
167 spin_unlock_irqrestore(&p
->lock
, flags
);
170 static void octeon_mgmt_set_tx_irq(struct octeon_mgmt
*p
, int enable
)
172 union cvmx_mixx_intena mix_intena
;
175 spin_lock_irqsave(&p
->lock
, flags
);
176 mix_intena
.u64
= cvmx_read_csr(p
->mix
+ MIX_INTENA
);
177 mix_intena
.s
.othena
= enable
? 1 : 0;
178 cvmx_write_csr(p
->mix
+ MIX_INTENA
, mix_intena
.u64
);
179 spin_unlock_irqrestore(&p
->lock
, flags
);
182 static void octeon_mgmt_enable_rx_irq(struct octeon_mgmt
*p
)
184 octeon_mgmt_set_rx_irq(p
, 1);
187 static void octeon_mgmt_disable_rx_irq(struct octeon_mgmt
*p
)
189 octeon_mgmt_set_rx_irq(p
, 0);
192 static void octeon_mgmt_enable_tx_irq(struct octeon_mgmt
*p
)
194 octeon_mgmt_set_tx_irq(p
, 1);
197 static void octeon_mgmt_disable_tx_irq(struct octeon_mgmt
*p
)
199 octeon_mgmt_set_tx_irq(p
, 0);
202 static unsigned int ring_max_fill(unsigned int ring_size
)
204 return ring_size
- 8;
207 static unsigned int ring_size_to_bytes(unsigned int ring_size
)
209 return ring_size
* sizeof(union mgmt_port_ring_entry
);
212 static void octeon_mgmt_rx_fill_ring(struct net_device
*netdev
)
214 struct octeon_mgmt
*p
= netdev_priv(netdev
);
216 while (p
->rx_current_fill
< ring_max_fill(OCTEON_MGMT_RX_RING_SIZE
)) {
218 union mgmt_port_ring_entry re
;
221 /* CN56XX pass 1 needs 8 bytes of padding. */
222 size
= netdev
->mtu
+ OCTEON_MGMT_RX_HEADROOM
+ 8 + NET_IP_ALIGN
;
224 skb
= netdev_alloc_skb(netdev
, size
);
227 skb_reserve(skb
, NET_IP_ALIGN
);
228 __skb_queue_tail(&p
->rx_list
, skb
);
232 re
.s
.addr
= dma_map_single(p
->dev
, skb
->data
,
236 /* Put it in the ring. */
237 p
->rx_ring
[p
->rx_next_fill
] = re
.d64
;
238 dma_sync_single_for_device(p
->dev
, p
->rx_ring_handle
,
239 ring_size_to_bytes(OCTEON_MGMT_RX_RING_SIZE
),
242 (p
->rx_next_fill
+ 1) % OCTEON_MGMT_RX_RING_SIZE
;
243 p
->rx_current_fill
++;
245 cvmx_write_csr(p
->mix
+ MIX_IRING2
, 1);
249 static void octeon_mgmt_clean_tx_buffers(struct octeon_mgmt
*p
)
251 union cvmx_mixx_orcnt mix_orcnt
;
252 union mgmt_port_ring_entry re
;
257 mix_orcnt
.u64
= cvmx_read_csr(p
->mix
+ MIX_ORCNT
);
258 while (mix_orcnt
.s
.orcnt
) {
259 spin_lock_irqsave(&p
->tx_list
.lock
, flags
);
261 mix_orcnt
.u64
= cvmx_read_csr(p
->mix
+ MIX_ORCNT
);
263 if (mix_orcnt
.s
.orcnt
== 0) {
264 spin_unlock_irqrestore(&p
->tx_list
.lock
, flags
);
268 dma_sync_single_for_cpu(p
->dev
, p
->tx_ring_handle
,
269 ring_size_to_bytes(OCTEON_MGMT_TX_RING_SIZE
),
272 re
.d64
= p
->tx_ring
[p
->tx_next_clean
];
274 (p
->tx_next_clean
+ 1) % OCTEON_MGMT_TX_RING_SIZE
;
275 skb
= __skb_dequeue(&p
->tx_list
);
278 mix_orcnt
.s
.orcnt
= 1;
280 /* Acknowledge to hardware that we have the buffer. */
281 cvmx_write_csr(p
->mix
+ MIX_ORCNT
, mix_orcnt
.u64
);
282 p
->tx_current_fill
--;
284 spin_unlock_irqrestore(&p
->tx_list
.lock
, flags
);
286 dma_unmap_single(p
->dev
, re
.s
.addr
, re
.s
.len
,
289 /* Read the hardware TX timestamp if one was recorded */
290 if (unlikely(re
.s
.tstamp
)) {
291 struct skb_shared_hwtstamps ts
;
294 memset(&ts
, 0, sizeof(ts
));
295 /* Read the timestamp */
296 ns
= cvmx_read_csr(CVMX_MIXX_TSTAMP(p
->port
));
297 /* Remove the timestamp from the FIFO */
298 cvmx_write_csr(CVMX_MIXX_TSCTL(p
->port
), 0);
299 /* Tell the kernel about the timestamp */
300 ts
.hwtstamp
= ns_to_ktime(ns
);
301 skb_tstamp_tx(skb
, &ts
);
304 dev_kfree_skb_any(skb
);
307 mix_orcnt
.u64
= cvmx_read_csr(p
->mix
+ MIX_ORCNT
);
310 if (cleaned
&& netif_queue_stopped(p
->netdev
))
311 netif_wake_queue(p
->netdev
);
314 static void octeon_mgmt_clean_tx_tasklet(unsigned long arg
)
316 struct octeon_mgmt
*p
= (struct octeon_mgmt
*)arg
;
317 octeon_mgmt_clean_tx_buffers(p
);
318 octeon_mgmt_enable_tx_irq(p
);
321 static void octeon_mgmt_update_rx_stats(struct net_device
*netdev
)
323 struct octeon_mgmt
*p
= netdev_priv(netdev
);
327 /* These reads also clear the count registers. */
328 drop
= cvmx_read_csr(p
->agl
+ AGL_GMX_RX_STATS_PKTS_DRP
);
329 bad
= cvmx_read_csr(p
->agl
+ AGL_GMX_RX_STATS_PKTS_BAD
);
332 /* Do an atomic update. */
333 spin_lock_irqsave(&p
->lock
, flags
);
334 netdev
->stats
.rx_errors
+= bad
;
335 netdev
->stats
.rx_dropped
+= drop
;
336 spin_unlock_irqrestore(&p
->lock
, flags
);
340 static void octeon_mgmt_update_tx_stats(struct net_device
*netdev
)
342 struct octeon_mgmt
*p
= netdev_priv(netdev
);
345 union cvmx_agl_gmx_txx_stat0 s0
;
346 union cvmx_agl_gmx_txx_stat1 s1
;
348 /* These reads also clear the count registers. */
349 s0
.u64
= cvmx_read_csr(p
->agl
+ AGL_GMX_TX_STAT0
);
350 s1
.u64
= cvmx_read_csr(p
->agl
+ AGL_GMX_TX_STAT1
);
352 if (s0
.s
.xsdef
|| s0
.s
.xscol
|| s1
.s
.scol
|| s1
.s
.mcol
) {
353 /* Do an atomic update. */
354 spin_lock_irqsave(&p
->lock
, flags
);
355 netdev
->stats
.tx_errors
+= s0
.s
.xsdef
+ s0
.s
.xscol
;
356 netdev
->stats
.collisions
+= s1
.s
.scol
+ s1
.s
.mcol
;
357 spin_unlock_irqrestore(&p
->lock
, flags
);
362 * Dequeue a receive skb and its corresponding ring entry. The ring
363 * entry is returned, *pskb is updated to point to the skb.
365 static u64
octeon_mgmt_dequeue_rx_buffer(struct octeon_mgmt
*p
,
366 struct sk_buff
**pskb
)
368 union mgmt_port_ring_entry re
;
370 dma_sync_single_for_cpu(p
->dev
, p
->rx_ring_handle
,
371 ring_size_to_bytes(OCTEON_MGMT_RX_RING_SIZE
),
374 re
.d64
= p
->rx_ring
[p
->rx_next
];
375 p
->rx_next
= (p
->rx_next
+ 1) % OCTEON_MGMT_RX_RING_SIZE
;
376 p
->rx_current_fill
--;
377 *pskb
= __skb_dequeue(&p
->rx_list
);
379 dma_unmap_single(p
->dev
, re
.s
.addr
,
380 ETH_FRAME_LEN
+ OCTEON_MGMT_RX_HEADROOM
,
387 static int octeon_mgmt_receive_one(struct octeon_mgmt
*p
)
389 struct net_device
*netdev
= p
->netdev
;
390 union cvmx_mixx_ircnt mix_ircnt
;
391 union mgmt_port_ring_entry re
;
393 struct sk_buff
*skb2
;
394 struct sk_buff
*skb_new
;
395 union mgmt_port_ring_entry re2
;
399 re
.d64
= octeon_mgmt_dequeue_rx_buffer(p
, &skb
);
400 if (likely(re
.s
.code
== RING_ENTRY_CODE_DONE
)) {
401 /* A good packet, send it up. */
402 skb_put(skb
, re
.s
.len
);
404 /* Process the RX timestamp if it was recorded */
405 if (p
->has_rx_tstamp
) {
406 /* The first 8 bytes are the timestamp */
407 u64 ns
= *(u64
*)skb
->data
;
408 struct skb_shared_hwtstamps
*ts
;
409 ts
= skb_hwtstamps(skb
);
410 ts
->hwtstamp
= ns_to_ktime(ns
);
413 skb
->protocol
= eth_type_trans(skb
, netdev
);
414 netdev
->stats
.rx_packets
++;
415 netdev
->stats
.rx_bytes
+= skb
->len
;
416 netif_receive_skb(skb
);
418 } else if (re
.s
.code
== RING_ENTRY_CODE_MORE
) {
419 /* Packet split across skbs. This can happen if we
420 * increase the MTU. Buffers that are already in the
421 * rx ring can then end up being too small. As the rx
422 * ring is refilled, buffers sized for the new MTU
423 * will be used and we should go back to the normal
426 skb_put(skb
, re
.s
.len
);
428 re2
.d64
= octeon_mgmt_dequeue_rx_buffer(p
, &skb2
);
429 if (re2
.s
.code
!= RING_ENTRY_CODE_MORE
430 && re2
.s
.code
!= RING_ENTRY_CODE_DONE
)
432 skb_put(skb2
, re2
.s
.len
);
433 skb_new
= skb_copy_expand(skb
, 0, skb2
->len
,
437 if (skb_copy_bits(skb2
, 0, skb_tail_pointer(skb_new
),
440 skb_put(skb_new
, skb2
->len
);
441 dev_kfree_skb_any(skb
);
442 dev_kfree_skb_any(skb2
);
444 } while (re2
.s
.code
== RING_ENTRY_CODE_MORE
);
447 /* Some other error, discard it. */
448 dev_kfree_skb_any(skb
);
449 /* Error statistics are accumulated in
450 * octeon_mgmt_update_rx_stats.
455 /* Discard the whole mess. */
456 dev_kfree_skb_any(skb
);
457 dev_kfree_skb_any(skb2
);
458 while (re2
.s
.code
== RING_ENTRY_CODE_MORE
) {
459 re2
.d64
= octeon_mgmt_dequeue_rx_buffer(p
, &skb2
);
460 dev_kfree_skb_any(skb2
);
462 netdev
->stats
.rx_errors
++;
465 /* Tell the hardware we processed a packet. */
467 mix_ircnt
.s
.ircnt
= 1;
468 cvmx_write_csr(p
->mix
+ MIX_IRCNT
, mix_ircnt
.u64
);
472 static int octeon_mgmt_receive_packets(struct octeon_mgmt
*p
, int budget
)
474 unsigned int work_done
= 0;
475 union cvmx_mixx_ircnt mix_ircnt
;
478 mix_ircnt
.u64
= cvmx_read_csr(p
->mix
+ MIX_IRCNT
);
479 while (work_done
< budget
&& mix_ircnt
.s
.ircnt
) {
481 rc
= octeon_mgmt_receive_one(p
);
485 /* Check for more packets. */
486 mix_ircnt
.u64
= cvmx_read_csr(p
->mix
+ MIX_IRCNT
);
489 octeon_mgmt_rx_fill_ring(p
->netdev
);
494 static int octeon_mgmt_napi_poll(struct napi_struct
*napi
, int budget
)
496 struct octeon_mgmt
*p
= container_of(napi
, struct octeon_mgmt
, napi
);
497 struct net_device
*netdev
= p
->netdev
;
498 unsigned int work_done
= 0;
500 work_done
= octeon_mgmt_receive_packets(p
, budget
);
502 if (work_done
< budget
) {
503 /* We stopped because no more packets were available. */
504 napi_complete_done(napi
, work_done
);
505 octeon_mgmt_enable_rx_irq(p
);
507 octeon_mgmt_update_rx_stats(netdev
);
512 /* Reset the hardware to clean state. */
513 static void octeon_mgmt_reset_hw(struct octeon_mgmt
*p
)
515 union cvmx_mixx_ctl mix_ctl
;
516 union cvmx_mixx_bist mix_bist
;
517 union cvmx_agl_gmx_bist agl_gmx_bist
;
520 cvmx_write_csr(p
->mix
+ MIX_CTL
, mix_ctl
.u64
);
522 mix_ctl
.u64
= cvmx_read_csr(p
->mix
+ MIX_CTL
);
523 } while (mix_ctl
.s
.busy
);
525 cvmx_write_csr(p
->mix
+ MIX_CTL
, mix_ctl
.u64
);
526 cvmx_read_csr(p
->mix
+ MIX_CTL
);
527 octeon_io_clk_delay(64);
529 mix_bist
.u64
= cvmx_read_csr(p
->mix
+ MIX_BIST
);
531 dev_warn(p
->dev
, "MIX failed BIST (0x%016llx)\n",
532 (unsigned long long)mix_bist
.u64
);
534 agl_gmx_bist
.u64
= cvmx_read_csr(CVMX_AGL_GMX_BIST
);
535 if (agl_gmx_bist
.u64
)
536 dev_warn(p
->dev
, "AGL failed BIST (0x%016llx)\n",
537 (unsigned long long)agl_gmx_bist
.u64
);
540 struct octeon_mgmt_cam_state
{
546 static void octeon_mgmt_cam_state_add(struct octeon_mgmt_cam_state
*cs
,
551 for (i
= 0; i
< 6; i
++)
552 cs
->cam
[i
] |= (u64
)addr
[i
] << (8 * (cs
->cam_index
));
553 cs
->cam_mask
|= (1ULL << cs
->cam_index
);
557 static void octeon_mgmt_set_rx_filtering(struct net_device
*netdev
)
559 struct octeon_mgmt
*p
= netdev_priv(netdev
);
560 union cvmx_agl_gmx_rxx_adr_ctl adr_ctl
;
561 union cvmx_agl_gmx_prtx_cfg agl_gmx_prtx
;
563 unsigned int prev_packet_enable
;
564 unsigned int cam_mode
= 1; /* 1 - Accept on CAM match */
565 unsigned int multicast_mode
= 1; /* 1 - Reject all multicast. */
566 struct octeon_mgmt_cam_state cam_state
;
567 struct netdev_hw_addr
*ha
;
568 int available_cam_entries
;
570 memset(&cam_state
, 0, sizeof(cam_state
));
572 if ((netdev
->flags
& IFF_PROMISC
) || netdev
->uc
.count
> 7) {
574 available_cam_entries
= 8;
576 /* One CAM entry for the primary address, leaves seven
577 * for the secondary addresses.
579 available_cam_entries
= 7 - netdev
->uc
.count
;
582 if (netdev
->flags
& IFF_MULTICAST
) {
583 if (cam_mode
== 0 || (netdev
->flags
& IFF_ALLMULTI
) ||
584 netdev_mc_count(netdev
) > available_cam_entries
)
585 multicast_mode
= 2; /* 2 - Accept all multicast. */
587 multicast_mode
= 0; /* 0 - Use CAM. */
591 /* Add primary address. */
592 octeon_mgmt_cam_state_add(&cam_state
, netdev
->dev_addr
);
593 netdev_for_each_uc_addr(ha
, netdev
)
594 octeon_mgmt_cam_state_add(&cam_state
, ha
->addr
);
596 if (multicast_mode
== 0) {
597 netdev_for_each_mc_addr(ha
, netdev
)
598 octeon_mgmt_cam_state_add(&cam_state
, ha
->addr
);
601 spin_lock_irqsave(&p
->lock
, flags
);
603 /* Disable packet I/O. */
604 agl_gmx_prtx
.u64
= cvmx_read_csr(p
->agl
+ AGL_GMX_PRT_CFG
);
605 prev_packet_enable
= agl_gmx_prtx
.s
.en
;
606 agl_gmx_prtx
.s
.en
= 0;
607 cvmx_write_csr(p
->agl
+ AGL_GMX_PRT_CFG
, agl_gmx_prtx
.u64
);
610 adr_ctl
.s
.cam_mode
= cam_mode
;
611 adr_ctl
.s
.mcst
= multicast_mode
;
612 adr_ctl
.s
.bcst
= 1; /* Allow broadcast */
614 cvmx_write_csr(p
->agl
+ AGL_GMX_RX_ADR_CTL
, adr_ctl
.u64
);
616 cvmx_write_csr(p
->agl
+ AGL_GMX_RX_ADR_CAM0
, cam_state
.cam
[0]);
617 cvmx_write_csr(p
->agl
+ AGL_GMX_RX_ADR_CAM1
, cam_state
.cam
[1]);
618 cvmx_write_csr(p
->agl
+ AGL_GMX_RX_ADR_CAM2
, cam_state
.cam
[2]);
619 cvmx_write_csr(p
->agl
+ AGL_GMX_RX_ADR_CAM3
, cam_state
.cam
[3]);
620 cvmx_write_csr(p
->agl
+ AGL_GMX_RX_ADR_CAM4
, cam_state
.cam
[4]);
621 cvmx_write_csr(p
->agl
+ AGL_GMX_RX_ADR_CAM5
, cam_state
.cam
[5]);
622 cvmx_write_csr(p
->agl
+ AGL_GMX_RX_ADR_CAM_EN
, cam_state
.cam_mask
);
624 /* Restore packet I/O. */
625 agl_gmx_prtx
.s
.en
= prev_packet_enable
;
626 cvmx_write_csr(p
->agl
+ AGL_GMX_PRT_CFG
, agl_gmx_prtx
.u64
);
628 spin_unlock_irqrestore(&p
->lock
, flags
);
631 static int octeon_mgmt_set_mac_address(struct net_device
*netdev
, void *addr
)
633 int r
= eth_mac_addr(netdev
, addr
);
638 octeon_mgmt_set_rx_filtering(netdev
);
643 static int octeon_mgmt_change_mtu(struct net_device
*netdev
, int new_mtu
)
645 struct octeon_mgmt
*p
= netdev_priv(netdev
);
646 int size_without_fcs
= new_mtu
+ OCTEON_MGMT_RX_HEADROOM
;
648 netdev
->mtu
= new_mtu
;
650 cvmx_write_csr(p
->agl
+ AGL_GMX_RX_FRM_MAX
, size_without_fcs
);
651 cvmx_write_csr(p
->agl
+ AGL_GMX_RX_JABBER
,
652 (size_without_fcs
+ 7) & 0xfff8);
657 static irqreturn_t
octeon_mgmt_interrupt(int cpl
, void *dev_id
)
659 struct net_device
*netdev
= dev_id
;
660 struct octeon_mgmt
*p
= netdev_priv(netdev
);
661 union cvmx_mixx_isr mixx_isr
;
663 mixx_isr
.u64
= cvmx_read_csr(p
->mix
+ MIX_ISR
);
665 /* Clear any pending interrupts */
666 cvmx_write_csr(p
->mix
+ MIX_ISR
, mixx_isr
.u64
);
667 cvmx_read_csr(p
->mix
+ MIX_ISR
);
669 if (mixx_isr
.s
.irthresh
) {
670 octeon_mgmt_disable_rx_irq(p
);
671 napi_schedule(&p
->napi
);
673 if (mixx_isr
.s
.orthresh
) {
674 octeon_mgmt_disable_tx_irq(p
);
675 tasklet_schedule(&p
->tx_clean_tasklet
);
681 static int octeon_mgmt_ioctl_hwtstamp(struct net_device
*netdev
,
682 struct ifreq
*rq
, int cmd
)
684 struct octeon_mgmt
*p
= netdev_priv(netdev
);
685 struct hwtstamp_config config
;
686 union cvmx_mio_ptp_clock_cfg ptp
;
687 union cvmx_agl_gmx_rxx_frm_ctl rxx_frm_ctl
;
688 bool have_hw_timestamps
= false;
690 if (copy_from_user(&config
, rq
->ifr_data
, sizeof(config
)))
693 if (config
.flags
) /* reserved for future extensions */
696 /* Check the status of hardware for tiemstamps */
697 if (OCTEON_IS_MODEL(OCTEON_CN6XXX
)) {
698 /* Get the current state of the PTP clock */
699 ptp
.u64
= cvmx_read_csr(CVMX_MIO_PTP_CLOCK_CFG
);
700 if (!ptp
.s
.ext_clk_en
) {
701 /* The clock has not been configured to use an
702 * external source. Program it to use the main clock
705 u64 clock_comp
= (NSEC_PER_SEC
<< 32) / octeon_get_io_clock_rate();
707 cvmx_write_csr(CVMX_MIO_PTP_CLOCK_COMP
, clock_comp
);
708 pr_info("PTP Clock: Using sclk reference at %lld Hz\n",
709 (NSEC_PER_SEC
<< 32) / clock_comp
);
711 /* The clock is already programmed to use a GPIO */
712 u64 clock_comp
= cvmx_read_csr(CVMX_MIO_PTP_CLOCK_COMP
);
713 pr_info("PTP Clock: Using GPIO %d at %lld Hz\n",
715 (NSEC_PER_SEC
<< 32) / clock_comp
);
718 /* Enable the clock if it wasn't done already */
721 cvmx_write_csr(CVMX_MIO_PTP_CLOCK_CFG
, ptp
.u64
);
723 have_hw_timestamps
= true;
726 if (!have_hw_timestamps
)
729 switch (config
.tx_type
) {
730 case HWTSTAMP_TX_OFF
:
737 switch (config
.rx_filter
) {
738 case HWTSTAMP_FILTER_NONE
:
739 p
->has_rx_tstamp
= false;
740 rxx_frm_ctl
.u64
= cvmx_read_csr(p
->agl
+ AGL_GMX_RX_FRM_CTL
);
741 rxx_frm_ctl
.s
.ptp_mode
= 0;
742 cvmx_write_csr(p
->agl
+ AGL_GMX_RX_FRM_CTL
, rxx_frm_ctl
.u64
);
744 case HWTSTAMP_FILTER_ALL
:
745 case HWTSTAMP_FILTER_SOME
:
746 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT
:
747 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC
:
748 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ
:
749 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT
:
750 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC
:
751 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ
:
752 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT
:
753 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC
:
754 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ
:
755 case HWTSTAMP_FILTER_PTP_V2_EVENT
:
756 case HWTSTAMP_FILTER_PTP_V2_SYNC
:
757 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ
:
758 case HWTSTAMP_FILTER_NTP_ALL
:
759 p
->has_rx_tstamp
= have_hw_timestamps
;
760 config
.rx_filter
= HWTSTAMP_FILTER_ALL
;
761 if (p
->has_rx_tstamp
) {
762 rxx_frm_ctl
.u64
= cvmx_read_csr(p
->agl
+ AGL_GMX_RX_FRM_CTL
);
763 rxx_frm_ctl
.s
.ptp_mode
= 1;
764 cvmx_write_csr(p
->agl
+ AGL_GMX_RX_FRM_CTL
, rxx_frm_ctl
.u64
);
771 if (copy_to_user(rq
->ifr_data
, &config
, sizeof(config
)))
777 static int octeon_mgmt_ioctl(struct net_device
*netdev
,
778 struct ifreq
*rq
, int cmd
)
782 return octeon_mgmt_ioctl_hwtstamp(netdev
, rq
, cmd
);
785 return phy_mii_ioctl(netdev
->phydev
, rq
, cmd
);
790 static void octeon_mgmt_disable_link(struct octeon_mgmt
*p
)
792 union cvmx_agl_gmx_prtx_cfg prtx_cfg
;
794 /* Disable GMX before we make any changes. */
795 prtx_cfg
.u64
= cvmx_read_csr(p
->agl
+ AGL_GMX_PRT_CFG
);
797 prtx_cfg
.s
.tx_en
= 0;
798 prtx_cfg
.s
.rx_en
= 0;
799 cvmx_write_csr(p
->agl
+ AGL_GMX_PRT_CFG
, prtx_cfg
.u64
);
801 if (OCTEON_IS_MODEL(OCTEON_CN6XXX
)) {
803 for (i
= 0; i
< 10; i
++) {
804 prtx_cfg
.u64
= cvmx_read_csr(p
->agl
+ AGL_GMX_PRT_CFG
);
805 if (prtx_cfg
.s
.tx_idle
== 1 || prtx_cfg
.s
.rx_idle
== 1)
813 static void octeon_mgmt_enable_link(struct octeon_mgmt
*p
)
815 union cvmx_agl_gmx_prtx_cfg prtx_cfg
;
817 /* Restore the GMX enable state only if link is set */
818 prtx_cfg
.u64
= cvmx_read_csr(p
->agl
+ AGL_GMX_PRT_CFG
);
819 prtx_cfg
.s
.tx_en
= 1;
820 prtx_cfg
.s
.rx_en
= 1;
822 cvmx_write_csr(p
->agl
+ AGL_GMX_PRT_CFG
, prtx_cfg
.u64
);
825 static void octeon_mgmt_update_link(struct octeon_mgmt
*p
)
827 struct net_device
*ndev
= p
->netdev
;
828 struct phy_device
*phydev
= ndev
->phydev
;
829 union cvmx_agl_gmx_prtx_cfg prtx_cfg
;
831 prtx_cfg
.u64
= cvmx_read_csr(p
->agl
+ AGL_GMX_PRT_CFG
);
834 prtx_cfg
.s
.duplex
= 1;
836 prtx_cfg
.s
.duplex
= phydev
->duplex
;
838 switch (phydev
->speed
) {
840 prtx_cfg
.s
.speed
= 0;
841 prtx_cfg
.s
.slottime
= 0;
843 if (OCTEON_IS_MODEL(OCTEON_CN6XXX
)) {
844 prtx_cfg
.s
.burst
= 1;
845 prtx_cfg
.s
.speed_msb
= 1;
849 prtx_cfg
.s
.speed
= 0;
850 prtx_cfg
.s
.slottime
= 0;
852 if (OCTEON_IS_MODEL(OCTEON_CN6XXX
)) {
853 prtx_cfg
.s
.burst
= 1;
854 prtx_cfg
.s
.speed_msb
= 0;
858 /* 1000 MBits is only supported on 6XXX chips */
859 if (OCTEON_IS_MODEL(OCTEON_CN6XXX
)) {
860 prtx_cfg
.s
.speed
= 1;
861 prtx_cfg
.s
.speed_msb
= 0;
862 /* Only matters for half-duplex */
863 prtx_cfg
.s
.slottime
= 1;
864 prtx_cfg
.s
.burst
= phydev
->duplex
;
867 case 0: /* No link */
872 /* Write the new GMX setting with the port still disabled. */
873 cvmx_write_csr(p
->agl
+ AGL_GMX_PRT_CFG
, prtx_cfg
.u64
);
875 /* Read GMX CFG again to make sure the config is completed. */
876 prtx_cfg
.u64
= cvmx_read_csr(p
->agl
+ AGL_GMX_PRT_CFG
);
878 if (OCTEON_IS_MODEL(OCTEON_CN6XXX
)) {
879 union cvmx_agl_gmx_txx_clk agl_clk
;
880 union cvmx_agl_prtx_ctl prtx_ctl
;
882 prtx_ctl
.u64
= cvmx_read_csr(p
->agl_prt_ctl
);
883 agl_clk
.u64
= cvmx_read_csr(p
->agl
+ AGL_GMX_TX_CLK
);
884 /* MII (both speeds) and RGMII 1000 speed. */
885 agl_clk
.s
.clk_cnt
= 1;
886 if (prtx_ctl
.s
.mode
== 0) { /* RGMII mode */
887 if (phydev
->speed
== 10)
888 agl_clk
.s
.clk_cnt
= 50;
889 else if (phydev
->speed
== 100)
890 agl_clk
.s
.clk_cnt
= 5;
892 cvmx_write_csr(p
->agl
+ AGL_GMX_TX_CLK
, agl_clk
.u64
);
896 static void octeon_mgmt_adjust_link(struct net_device
*netdev
)
898 struct octeon_mgmt
*p
= netdev_priv(netdev
);
899 struct phy_device
*phydev
= netdev
->phydev
;
901 int link_changed
= 0;
906 spin_lock_irqsave(&p
->lock
, flags
);
909 if (!phydev
->link
&& p
->last_link
)
913 (p
->last_duplex
!= phydev
->duplex
||
914 p
->last_link
!= phydev
->link
||
915 p
->last_speed
!= phydev
->speed
)) {
916 octeon_mgmt_disable_link(p
);
918 octeon_mgmt_update_link(p
);
919 octeon_mgmt_enable_link(p
);
922 p
->last_link
= phydev
->link
;
923 p
->last_speed
= phydev
->speed
;
924 p
->last_duplex
= phydev
->duplex
;
926 spin_unlock_irqrestore(&p
->lock
, flags
);
928 if (link_changed
!= 0) {
929 if (link_changed
> 0) {
930 pr_info("%s: Link is up - %d/%s\n", netdev
->name
,
932 phydev
->duplex
== DUPLEX_FULL
?
935 pr_info("%s: Link is down\n", netdev
->name
);
940 static int octeon_mgmt_init_phy(struct net_device
*netdev
)
942 struct octeon_mgmt
*p
= netdev_priv(netdev
);
943 struct phy_device
*phydev
= NULL
;
945 if (octeon_is_simulation() || p
->phy_np
== NULL
) {
946 /* No PHYs in the simulator. */
947 netif_carrier_on(netdev
);
951 phydev
= of_phy_connect(netdev
, p
->phy_np
,
952 octeon_mgmt_adjust_link
, 0,
953 PHY_INTERFACE_MODE_MII
);
961 static int octeon_mgmt_open(struct net_device
*netdev
)
963 struct octeon_mgmt
*p
= netdev_priv(netdev
);
964 union cvmx_mixx_ctl mix_ctl
;
965 union cvmx_agl_gmx_inf_mode agl_gmx_inf_mode
;
966 union cvmx_mixx_oring1 oring1
;
967 union cvmx_mixx_iring1 iring1
;
968 union cvmx_agl_gmx_rxx_frm_ctl rxx_frm_ctl
;
969 union cvmx_mixx_irhwm mix_irhwm
;
970 union cvmx_mixx_orhwm mix_orhwm
;
971 union cvmx_mixx_intena mix_intena
;
974 /* Allocate ring buffers. */
975 p
->tx_ring
= kzalloc(ring_size_to_bytes(OCTEON_MGMT_TX_RING_SIZE
),
980 dma_map_single(p
->dev
, p
->tx_ring
,
981 ring_size_to_bytes(OCTEON_MGMT_TX_RING_SIZE
),
984 p
->tx_next_clean
= 0;
985 p
->tx_current_fill
= 0;
988 p
->rx_ring
= kzalloc(ring_size_to_bytes(OCTEON_MGMT_RX_RING_SIZE
),
993 dma_map_single(p
->dev
, p
->rx_ring
,
994 ring_size_to_bytes(OCTEON_MGMT_RX_RING_SIZE
),
999 p
->rx_current_fill
= 0;
1001 octeon_mgmt_reset_hw(p
);
1003 mix_ctl
.u64
= cvmx_read_csr(p
->mix
+ MIX_CTL
);
1005 /* Bring it out of reset if needed. */
1006 if (mix_ctl
.s
.reset
) {
1007 mix_ctl
.s
.reset
= 0;
1008 cvmx_write_csr(p
->mix
+ MIX_CTL
, mix_ctl
.u64
);
1010 mix_ctl
.u64
= cvmx_read_csr(p
->mix
+ MIX_CTL
);
1011 } while (mix_ctl
.s
.reset
);
1014 if (OCTEON_IS_MODEL(OCTEON_CN5XXX
)) {
1015 agl_gmx_inf_mode
.u64
= 0;
1016 agl_gmx_inf_mode
.s
.en
= 1;
1017 cvmx_write_csr(CVMX_AGL_GMX_INF_MODE
, agl_gmx_inf_mode
.u64
);
1019 if (OCTEON_IS_MODEL(OCTEON_CN56XX_PASS1_X
)
1020 || OCTEON_IS_MODEL(OCTEON_CN52XX_PASS1_X
)) {
1021 /* Force compensation values, as they are not
1022 * determined properly by HW
1024 union cvmx_agl_gmx_drv_ctl drv_ctl
;
1026 drv_ctl
.u64
= cvmx_read_csr(CVMX_AGL_GMX_DRV_CTL
);
1028 drv_ctl
.s
.byp_en1
= 1;
1029 drv_ctl
.s
.nctl1
= 6;
1030 drv_ctl
.s
.pctl1
= 6;
1032 drv_ctl
.s
.byp_en
= 1;
1036 cvmx_write_csr(CVMX_AGL_GMX_DRV_CTL
, drv_ctl
.u64
);
1040 oring1
.s
.obase
= p
->tx_ring_handle
>> 3;
1041 oring1
.s
.osize
= OCTEON_MGMT_TX_RING_SIZE
;
1042 cvmx_write_csr(p
->mix
+ MIX_ORING1
, oring1
.u64
);
1045 iring1
.s
.ibase
= p
->rx_ring_handle
>> 3;
1046 iring1
.s
.isize
= OCTEON_MGMT_RX_RING_SIZE
;
1047 cvmx_write_csr(p
->mix
+ MIX_IRING1
, iring1
.u64
);
1049 memcpy(sa
.sa_data
, netdev
->dev_addr
, ETH_ALEN
);
1050 octeon_mgmt_set_mac_address(netdev
, &sa
);
1052 octeon_mgmt_change_mtu(netdev
, netdev
->mtu
);
1054 /* Enable the port HW. Packets are not allowed until
1055 * cvmx_mgmt_port_enable() is called.
1058 mix_ctl
.s
.crc_strip
= 1; /* Strip the ending CRC */
1059 mix_ctl
.s
.en
= 1; /* Enable the port */
1060 mix_ctl
.s
.nbtarb
= 0; /* Arbitration mode */
1061 /* MII CB-request FIFO programmable high watermark */
1062 mix_ctl
.s
.mrq_hwm
= 1;
1063 #ifdef __LITTLE_ENDIAN
1064 mix_ctl
.s
.lendian
= 1;
1066 cvmx_write_csr(p
->mix
+ MIX_CTL
, mix_ctl
.u64
);
1068 /* Read the PHY to find the mode of the interface. */
1069 if (octeon_mgmt_init_phy(netdev
)) {
1070 dev_err(p
->dev
, "Cannot initialize PHY on MIX%d.\n", p
->port
);
1074 /* Set the mode of the interface, RGMII/MII. */
1075 if (OCTEON_IS_MODEL(OCTEON_CN6XXX
) && netdev
->phydev
) {
1076 union cvmx_agl_prtx_ctl agl_prtx_ctl
;
1077 int rgmii_mode
= (netdev
->phydev
->supported
&
1078 (SUPPORTED_1000baseT_Half
| SUPPORTED_1000baseT_Full
)) != 0;
1080 agl_prtx_ctl
.u64
= cvmx_read_csr(p
->agl_prt_ctl
);
1081 agl_prtx_ctl
.s
.mode
= rgmii_mode
? 0 : 1;
1082 cvmx_write_csr(p
->agl_prt_ctl
, agl_prtx_ctl
.u64
);
1084 /* MII clocks counts are based on the 125Mhz
1085 * reference, which has an 8nS period. So our delays
1086 * need to be multiplied by this factor.
1088 #define NS_PER_PHY_CLK 8
1090 /* Take the DLL and clock tree out of reset */
1091 agl_prtx_ctl
.u64
= cvmx_read_csr(p
->agl_prt_ctl
);
1092 agl_prtx_ctl
.s
.clkrst
= 0;
1094 agl_prtx_ctl
.s
.dllrst
= 0;
1095 agl_prtx_ctl
.s
.clktx_byp
= 0;
1097 cvmx_write_csr(p
->agl_prt_ctl
, agl_prtx_ctl
.u64
);
1098 cvmx_read_csr(p
->agl_prt_ctl
); /* Force write out before wait */
1100 /* Wait for the DLL to lock. External 125 MHz
1101 * reference clock must be stable at this point.
1103 ndelay(256 * NS_PER_PHY_CLK
);
1105 /* Enable the interface */
1106 agl_prtx_ctl
.u64
= cvmx_read_csr(p
->agl_prt_ctl
);
1107 agl_prtx_ctl
.s
.enable
= 1;
1108 cvmx_write_csr(p
->agl_prt_ctl
, agl_prtx_ctl
.u64
);
1110 /* Read the value back to force the previous write */
1111 agl_prtx_ctl
.u64
= cvmx_read_csr(p
->agl_prt_ctl
);
1113 /* Enable the compensation controller */
1114 agl_prtx_ctl
.s
.comp
= 1;
1115 agl_prtx_ctl
.s
.drv_byp
= 0;
1116 cvmx_write_csr(p
->agl_prt_ctl
, agl_prtx_ctl
.u64
);
1117 /* Force write out before wait. */
1118 cvmx_read_csr(p
->agl_prt_ctl
);
1120 /* For compensation state to lock. */
1121 ndelay(1040 * NS_PER_PHY_CLK
);
1123 /* Default Interframe Gaps are too small. Recommended
1126 * AGL_GMX_TX_IFG[IFG1]=14
1127 * AGL_GMX_TX_IFG[IFG2]=10
1129 cvmx_write_csr(CVMX_AGL_GMX_TX_IFG
, 0xae);
1132 octeon_mgmt_rx_fill_ring(netdev
);
1134 /* Clear statistics. */
1135 /* Clear on read. */
1136 cvmx_write_csr(p
->agl
+ AGL_GMX_RX_STATS_CTL
, 1);
1137 cvmx_write_csr(p
->agl
+ AGL_GMX_RX_STATS_PKTS_DRP
, 0);
1138 cvmx_write_csr(p
->agl
+ AGL_GMX_RX_STATS_PKTS_BAD
, 0);
1140 cvmx_write_csr(p
->agl
+ AGL_GMX_TX_STATS_CTL
, 1);
1141 cvmx_write_csr(p
->agl
+ AGL_GMX_TX_STAT0
, 0);
1142 cvmx_write_csr(p
->agl
+ AGL_GMX_TX_STAT1
, 0);
1144 /* Clear any pending interrupts */
1145 cvmx_write_csr(p
->mix
+ MIX_ISR
, cvmx_read_csr(p
->mix
+ MIX_ISR
));
1147 if (request_irq(p
->irq
, octeon_mgmt_interrupt
, 0, netdev
->name
,
1149 dev_err(p
->dev
, "request_irq(%d) failed.\n", p
->irq
);
1153 /* Interrupt every single RX packet */
1155 mix_irhwm
.s
.irhwm
= 0;
1156 cvmx_write_csr(p
->mix
+ MIX_IRHWM
, mix_irhwm
.u64
);
1158 /* Interrupt when we have 1 or more packets to clean. */
1160 mix_orhwm
.s
.orhwm
= 0;
1161 cvmx_write_csr(p
->mix
+ MIX_ORHWM
, mix_orhwm
.u64
);
1163 /* Enable receive and transmit interrupts */
1165 mix_intena
.s
.ithena
= 1;
1166 mix_intena
.s
.othena
= 1;
1167 cvmx_write_csr(p
->mix
+ MIX_INTENA
, mix_intena
.u64
);
1169 /* Enable packet I/O. */
1171 rxx_frm_ctl
.u64
= 0;
1172 rxx_frm_ctl
.s
.ptp_mode
= p
->has_rx_tstamp
? 1 : 0;
1173 rxx_frm_ctl
.s
.pre_align
= 1;
1174 /* When set, disables the length check for non-min sized pkts
1175 * with padding in the client data.
1177 rxx_frm_ctl
.s
.pad_len
= 1;
1178 /* When set, disables the length check for VLAN pkts */
1179 rxx_frm_ctl
.s
.vlan_len
= 1;
1180 /* When set, PREAMBLE checking is less strict */
1181 rxx_frm_ctl
.s
.pre_free
= 1;
1182 /* Control Pause Frames can match station SMAC */
1183 rxx_frm_ctl
.s
.ctl_smac
= 0;
1184 /* Control Pause Frames can match globally assign Multicast address */
1185 rxx_frm_ctl
.s
.ctl_mcst
= 1;
1186 /* Forward pause information to TX block */
1187 rxx_frm_ctl
.s
.ctl_bck
= 1;
1188 /* Drop Control Pause Frames */
1189 rxx_frm_ctl
.s
.ctl_drp
= 1;
1190 /* Strip off the preamble */
1191 rxx_frm_ctl
.s
.pre_strp
= 1;
1192 /* This port is configured to send PREAMBLE+SFD to begin every
1193 * frame. GMX checks that the PREAMBLE is sent correctly.
1195 rxx_frm_ctl
.s
.pre_chk
= 1;
1196 cvmx_write_csr(p
->agl
+ AGL_GMX_RX_FRM_CTL
, rxx_frm_ctl
.u64
);
1198 /* Configure the port duplex, speed and enables */
1199 octeon_mgmt_disable_link(p
);
1201 octeon_mgmt_update_link(p
);
1202 octeon_mgmt_enable_link(p
);
1206 /* PHY is not present in simulator. The carrier is enabled
1207 * while initializing the phy for simulator, leave it enabled.
1209 if (netdev
->phydev
) {
1210 netif_carrier_off(netdev
);
1211 phy_start_aneg(netdev
->phydev
);
1214 netif_wake_queue(netdev
);
1215 napi_enable(&p
->napi
);
1219 octeon_mgmt_reset_hw(p
);
1220 dma_unmap_single(p
->dev
, p
->rx_ring_handle
,
1221 ring_size_to_bytes(OCTEON_MGMT_RX_RING_SIZE
),
1225 dma_unmap_single(p
->dev
, p
->tx_ring_handle
,
1226 ring_size_to_bytes(OCTEON_MGMT_TX_RING_SIZE
),
1232 static int octeon_mgmt_stop(struct net_device
*netdev
)
1234 struct octeon_mgmt
*p
= netdev_priv(netdev
);
1236 napi_disable(&p
->napi
);
1237 netif_stop_queue(netdev
);
1240 phy_disconnect(netdev
->phydev
);
1242 netif_carrier_off(netdev
);
1244 octeon_mgmt_reset_hw(p
);
1246 free_irq(p
->irq
, netdev
);
1248 /* dma_unmap is a nop on Octeon, so just free everything. */
1249 skb_queue_purge(&p
->tx_list
);
1250 skb_queue_purge(&p
->rx_list
);
1252 dma_unmap_single(p
->dev
, p
->rx_ring_handle
,
1253 ring_size_to_bytes(OCTEON_MGMT_RX_RING_SIZE
),
1257 dma_unmap_single(p
->dev
, p
->tx_ring_handle
,
1258 ring_size_to_bytes(OCTEON_MGMT_TX_RING_SIZE
),
1265 static int octeon_mgmt_xmit(struct sk_buff
*skb
, struct net_device
*netdev
)
1267 struct octeon_mgmt
*p
= netdev_priv(netdev
);
1268 union mgmt_port_ring_entry re
;
1269 unsigned long flags
;
1270 int rv
= NETDEV_TX_BUSY
;
1273 re
.s
.tstamp
= ((skb_shinfo(skb
)->tx_flags
& SKBTX_HW_TSTAMP
) != 0);
1274 re
.s
.len
= skb
->len
;
1275 re
.s
.addr
= dma_map_single(p
->dev
, skb
->data
,
1279 spin_lock_irqsave(&p
->tx_list
.lock
, flags
);
1281 if (unlikely(p
->tx_current_fill
>= ring_max_fill(OCTEON_MGMT_TX_RING_SIZE
) - 1)) {
1282 spin_unlock_irqrestore(&p
->tx_list
.lock
, flags
);
1283 netif_stop_queue(netdev
);
1284 spin_lock_irqsave(&p
->tx_list
.lock
, flags
);
1287 if (unlikely(p
->tx_current_fill
>=
1288 ring_max_fill(OCTEON_MGMT_TX_RING_SIZE
))) {
1289 spin_unlock_irqrestore(&p
->tx_list
.lock
, flags
);
1290 dma_unmap_single(p
->dev
, re
.s
.addr
, re
.s
.len
,
1295 __skb_queue_tail(&p
->tx_list
, skb
);
1297 /* Put it in the ring. */
1298 p
->tx_ring
[p
->tx_next
] = re
.d64
;
1299 p
->tx_next
= (p
->tx_next
+ 1) % OCTEON_MGMT_TX_RING_SIZE
;
1300 p
->tx_current_fill
++;
1302 spin_unlock_irqrestore(&p
->tx_list
.lock
, flags
);
1304 dma_sync_single_for_device(p
->dev
, p
->tx_ring_handle
,
1305 ring_size_to_bytes(OCTEON_MGMT_TX_RING_SIZE
),
1308 netdev
->stats
.tx_packets
++;
1309 netdev
->stats
.tx_bytes
+= skb
->len
;
1311 /* Ring the bell. */
1312 cvmx_write_csr(p
->mix
+ MIX_ORING2
, 1);
1314 netif_trans_update(netdev
);
1317 octeon_mgmt_update_tx_stats(netdev
);
1321 #ifdef CONFIG_NET_POLL_CONTROLLER
1322 static void octeon_mgmt_poll_controller(struct net_device
*netdev
)
1324 struct octeon_mgmt
*p
= netdev_priv(netdev
);
1326 octeon_mgmt_receive_packets(p
, 16);
1327 octeon_mgmt_update_rx_stats(netdev
);
1331 static void octeon_mgmt_get_drvinfo(struct net_device
*netdev
,
1332 struct ethtool_drvinfo
*info
)
1334 strlcpy(info
->driver
, DRV_NAME
, sizeof(info
->driver
));
1335 strlcpy(info
->version
, DRV_VERSION
, sizeof(info
->version
));
1336 strlcpy(info
->fw_version
, "N/A", sizeof(info
->fw_version
));
1337 strlcpy(info
->bus_info
, "N/A", sizeof(info
->bus_info
));
1340 static int octeon_mgmt_nway_reset(struct net_device
*dev
)
1342 if (!capable(CAP_NET_ADMIN
))
1346 return phy_start_aneg(dev
->phydev
);
1351 static const struct ethtool_ops octeon_mgmt_ethtool_ops
= {
1352 .get_drvinfo
= octeon_mgmt_get_drvinfo
,
1353 .nway_reset
= octeon_mgmt_nway_reset
,
1354 .get_link
= ethtool_op_get_link
,
1355 .get_link_ksettings
= phy_ethtool_get_link_ksettings
,
1356 .set_link_ksettings
= phy_ethtool_set_link_ksettings
,
1359 static const struct net_device_ops octeon_mgmt_ops
= {
1360 .ndo_open
= octeon_mgmt_open
,
1361 .ndo_stop
= octeon_mgmt_stop
,
1362 .ndo_start_xmit
= octeon_mgmt_xmit
,
1363 .ndo_set_rx_mode
= octeon_mgmt_set_rx_filtering
,
1364 .ndo_set_mac_address
= octeon_mgmt_set_mac_address
,
1365 .ndo_do_ioctl
= octeon_mgmt_ioctl
,
1366 .ndo_change_mtu
= octeon_mgmt_change_mtu
,
1367 #ifdef CONFIG_NET_POLL_CONTROLLER
1368 .ndo_poll_controller
= octeon_mgmt_poll_controller
,
1372 static int octeon_mgmt_probe(struct platform_device
*pdev
)
1374 struct net_device
*netdev
;
1375 struct octeon_mgmt
*p
;
1378 struct resource
*res_mix
;
1379 struct resource
*res_agl
;
1380 struct resource
*res_agl_prt_ctl
;
1384 netdev
= alloc_etherdev(sizeof(struct octeon_mgmt
));
1388 SET_NETDEV_DEV(netdev
, &pdev
->dev
);
1390 platform_set_drvdata(pdev
, netdev
);
1391 p
= netdev_priv(netdev
);
1392 netif_napi_add(netdev
, &p
->napi
, octeon_mgmt_napi_poll
,
1393 OCTEON_MGMT_NAPI_WEIGHT
);
1396 p
->dev
= &pdev
->dev
;
1397 p
->has_rx_tstamp
= false;
1399 data
= of_get_property(pdev
->dev
.of_node
, "cell-index", &len
);
1400 if (data
&& len
== sizeof(*data
)) {
1401 p
->port
= be32_to_cpup(data
);
1403 dev_err(&pdev
->dev
, "no 'cell-index' property\n");
1408 snprintf(netdev
->name
, IFNAMSIZ
, "mgmt%d", p
->port
);
1410 result
= platform_get_irq(pdev
, 0);
1416 res_mix
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1417 if (res_mix
== NULL
) {
1418 dev_err(&pdev
->dev
, "no 'reg' resource\n");
1423 res_agl
= platform_get_resource(pdev
, IORESOURCE_MEM
, 1);
1424 if (res_agl
== NULL
) {
1425 dev_err(&pdev
->dev
, "no 'reg' resource\n");
1430 res_agl_prt_ctl
= platform_get_resource(pdev
, IORESOURCE_MEM
, 3);
1431 if (res_agl_prt_ctl
== NULL
) {
1432 dev_err(&pdev
->dev
, "no 'reg' resource\n");
1437 p
->mix_phys
= res_mix
->start
;
1438 p
->mix_size
= resource_size(res_mix
);
1439 p
->agl_phys
= res_agl
->start
;
1440 p
->agl_size
= resource_size(res_agl
);
1441 p
->agl_prt_ctl_phys
= res_agl_prt_ctl
->start
;
1442 p
->agl_prt_ctl_size
= resource_size(res_agl_prt_ctl
);
1445 if (!devm_request_mem_region(&pdev
->dev
, p
->mix_phys
, p
->mix_size
,
1447 dev_err(&pdev
->dev
, "request_mem_region (%s) failed\n",
1453 if (!devm_request_mem_region(&pdev
->dev
, p
->agl_phys
, p
->agl_size
,
1456 dev_err(&pdev
->dev
, "request_mem_region (%s) failed\n",
1461 if (!devm_request_mem_region(&pdev
->dev
, p
->agl_prt_ctl_phys
,
1462 p
->agl_prt_ctl_size
, res_agl_prt_ctl
->name
)) {
1464 dev_err(&pdev
->dev
, "request_mem_region (%s) failed\n",
1465 res_agl_prt_ctl
->name
);
1469 p
->mix
= (u64
)devm_ioremap(&pdev
->dev
, p
->mix_phys
, p
->mix_size
);
1470 p
->agl
= (u64
)devm_ioremap(&pdev
->dev
, p
->agl_phys
, p
->agl_size
);
1471 p
->agl_prt_ctl
= (u64
)devm_ioremap(&pdev
->dev
, p
->agl_prt_ctl_phys
,
1472 p
->agl_prt_ctl_size
);
1473 if (!p
->mix
|| !p
->agl
|| !p
->agl_prt_ctl
) {
1474 dev_err(&pdev
->dev
, "failed to map I/O memory\n");
1479 spin_lock_init(&p
->lock
);
1481 skb_queue_head_init(&p
->tx_list
);
1482 skb_queue_head_init(&p
->rx_list
);
1483 tasklet_init(&p
->tx_clean_tasklet
,
1484 octeon_mgmt_clean_tx_tasklet
, (unsigned long)p
);
1486 netdev
->priv_flags
|= IFF_UNICAST_FLT
;
1488 netdev
->netdev_ops
= &octeon_mgmt_ops
;
1489 netdev
->ethtool_ops
= &octeon_mgmt_ethtool_ops
;
1491 netdev
->min_mtu
= 64 - OCTEON_MGMT_RX_HEADROOM
;
1492 netdev
->max_mtu
= 16383 - OCTEON_MGMT_RX_HEADROOM
;
1494 mac
= of_get_mac_address(pdev
->dev
.of_node
);
1497 memcpy(netdev
->dev_addr
, mac
, ETH_ALEN
);
1499 eth_hw_addr_random(netdev
);
1501 p
->phy_np
= of_parse_phandle(pdev
->dev
.of_node
, "phy-handle", 0);
1503 result
= dma_coerce_mask_and_coherent(&pdev
->dev
, DMA_BIT_MASK(64));
1507 netif_carrier_off(netdev
);
1508 result
= register_netdev(netdev
);
1512 dev_info(&pdev
->dev
, "Version " DRV_VERSION
"\n");
1516 of_node_put(p
->phy_np
);
1517 free_netdev(netdev
);
1521 static int octeon_mgmt_remove(struct platform_device
*pdev
)
1523 struct net_device
*netdev
= platform_get_drvdata(pdev
);
1524 struct octeon_mgmt
*p
= netdev_priv(netdev
);
1526 unregister_netdev(netdev
);
1527 of_node_put(p
->phy_np
);
1528 free_netdev(netdev
);
1532 static const struct of_device_id octeon_mgmt_match
[] = {
1534 .compatible
= "cavium,octeon-5750-mix",
1538 MODULE_DEVICE_TABLE(of
, octeon_mgmt_match
);
1540 static struct platform_driver octeon_mgmt_driver
= {
1542 .name
= "octeon_mgmt",
1543 .of_match_table
= octeon_mgmt_match
,
1545 .probe
= octeon_mgmt_probe
,
1546 .remove
= octeon_mgmt_remove
,
1549 extern void octeon_mdiobus_force_mod_depencency(void);
1551 static int __init
octeon_mgmt_mod_init(void)
1553 /* Force our mdiobus driver module to be loaded first. */
1554 octeon_mdiobus_force_mod_depencency();
1555 return platform_driver_register(&octeon_mgmt_driver
);
1558 static void __exit
octeon_mgmt_mod_exit(void)
1560 platform_driver_unregister(&octeon_mgmt_driver
);
1563 module_init(octeon_mgmt_mod_init
);
1564 module_exit(octeon_mgmt_mod_exit
);
1566 MODULE_DESCRIPTION(DRV_DESCRIPTION
);
1567 MODULE_AUTHOR("David Daney");
1568 MODULE_LICENSE("GPL");
1569 MODULE_VERSION(DRV_VERSION
);