ethernet.c revision ec977c5b473e29dbfdac8f2c7477eccc2142e3bc
1/**********************************************************************
2 * Author: Cavium Networks
3 *
4 * Contact: support@caviumnetworks.com
5 * This file is part of the OCTEON SDK
6 *
7 * Copyright (c) 2003-2007 Cavium Networks
8 *
9 * This file is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License, Version 2, as
11 * published by the Free Software Foundation.
12 *
13 * This file is distributed in the hope that it will be useful, but
14 * AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty
15 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
16 * NONINFRINGEMENT.  See the GNU General Public License for more
17 * details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this file; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 * or visit http://www.gnu.org/licenses/.
23 *
24 * This file may also be available under a different license from Cavium.
25 * Contact Cavium Networks for more information
26**********************************************************************/
27#include <linux/kernel.h>
28#include <linux/init.h>
29#include <linux/module.h>
30#include <linux/netdevice.h>
31#include <linux/etherdevice.h>
32#include <linux/phy.h>
33
34#include <net/dst.h>
35
36#include <asm/octeon/octeon.h>
37
38#include "ethernet-defines.h"
39#include "octeon-ethernet.h"
40#include "ethernet-mem.h"
41#include "ethernet-rx.h"
42#include "ethernet-tx.h"
43#include "ethernet-mdio.h"
44#include "ethernet-util.h"
45#include "ethernet-proc.h"
46
47
48#include "cvmx-pip.h"
49#include "cvmx-pko.h"
50#include "cvmx-fau.h"
51#include "cvmx-ipd.h"
52#include "cvmx-helper.h"
53
54#include "cvmx-gmxx-defs.h"
55#include "cvmx-smix-defs.h"
56
57#if defined(CONFIG_CAVIUM_OCTEON_NUM_PACKET_BUFFERS) \
58	&& CONFIG_CAVIUM_OCTEON_NUM_PACKET_BUFFERS
59int num_packet_buffers = CONFIG_CAVIUM_OCTEON_NUM_PACKET_BUFFERS;
60#else
61int num_packet_buffers = 1024;
62#endif
63module_param(num_packet_buffers, int, 0444);
64MODULE_PARM_DESC(num_packet_buffers, "\n"
65	"\tNumber of packet buffers to allocate and store in the\n"
66	"\tFPA. By default, 1024 packet buffers are used unless\n"
67	"\tCONFIG_CAVIUM_OCTEON_NUM_PACKET_BUFFERS is defined.");
68
69int pow_receive_group = 15;
70module_param(pow_receive_group, int, 0444);
71MODULE_PARM_DESC(pow_receive_group, "\n"
72	"\tPOW group to receive packets from. All ethernet hardware\n"
73	"\twill be configured to send incomming packets to this POW\n"
74	"\tgroup. Also any other software can submit packets to this\n"
75	"\tgroup for the kernel to process.");
76
77int pow_send_group = -1;
78module_param(pow_send_group, int, 0644);
79MODULE_PARM_DESC(pow_send_group, "\n"
80	"\tPOW group to send packets to other software on. This\n"
81	"\tcontrols the creation of the virtual device pow0.\n"
82	"\talways_use_pow also depends on this value.");
83
84int always_use_pow;
85module_param(always_use_pow, int, 0444);
86MODULE_PARM_DESC(always_use_pow, "\n"
87	"\tWhen set, always send to the pow group. This will cause\n"
88	"\tpackets sent to real ethernet devices to be sent to the\n"
89	"\tPOW group instead of the hardware. Unless some other\n"
90	"\tapplication changes the config, packets will still be\n"
91	"\treceived from the low level hardware. Use this option\n"
92	"\tto allow a CVMX app to intercept all packets from the\n"
93	"\tlinux kernel. You must specify pow_send_group along with\n"
94	"\tthis option.");
95
96char pow_send_list[128] = "";
97module_param_string(pow_send_list, pow_send_list, sizeof(pow_send_list), 0444);
98MODULE_PARM_DESC(pow_send_list, "\n"
99	"\tComma separated list of ethernet devices that should use the\n"
100	"\tPOW for transmit instead of the actual ethernet hardware. This\n"
101	"\tis a per port version of always_use_pow. always_use_pow takes\n"
102	"\tprecedence over this list. For example, setting this to\n"
103	"\t\"eth2,spi3,spi7\" would cause these three devices to transmit\n"
104	"\tusing the pow_send_group.");
105
106int max_rx_cpus = -1;
107module_param(max_rx_cpus, int, 0444);
108MODULE_PARM_DESC(max_rx_cpus, "\n"
109	"\t\tThe maximum number of CPUs to use for packet reception.\n"
110	"\t\tUse -1 to use all available CPUs.");
111
112int rx_napi_weight = 32;
113module_param(rx_napi_weight, int, 0444);
114MODULE_PARM_DESC(rx_napi_weight, "The NAPI WEIGHT parameter.");
115
116/*
117 * The offset from mac_addr_base that should be used for the next port
118 * that is configured.  By convention, if any mgmt ports exist on the
119 * chip, they get the first mac addresses, The ports controlled by
120 * this driver are numbered sequencially following any mgmt addresses
121 * that may exist.
122 */
123static unsigned int cvm_oct_mac_addr_offset;
124
125/**
126 * cvm_oct_poll_queue - Workqueue for polling operations.
127 */
128struct workqueue_struct *cvm_oct_poll_queue;
129
130/**
131 * cvm_oct_poll_queue_stopping - flag to indicate polling should stop.
132 *
133 * Set to one right before cvm_oct_poll_queue is destroyed.
134 */
135atomic_t cvm_oct_poll_queue_stopping = ATOMIC_INIT(0);
136
137/**
138 * Array of every ethernet device owned by this driver indexed by
139 * the ipd input port number.
140 */
141struct net_device *cvm_oct_device[TOTAL_NUMBER_OF_PORTS];
142
143u64 cvm_oct_tx_poll_interval;
144
145static void cvm_oct_rx_refill_worker(struct work_struct *work);
146static DECLARE_DELAYED_WORK(cvm_oct_rx_refill_work, cvm_oct_rx_refill_worker);
147
148static void cvm_oct_rx_refill_worker(struct work_struct *work)
149{
150	/*
151	 * FPA 0 may have been drained, try to refill it if we need
152	 * more than num_packet_buffers / 2, otherwise normal receive
153	 * processing will refill it.  If it were drained, no packets
154	 * could be received so cvm_oct_napi_poll would never be
155	 * invoked to do the refill.
156	 */
157	cvm_oct_rx_refill_pool(num_packet_buffers / 2);
158
159	if (!atomic_read(&cvm_oct_poll_queue_stopping))
160		queue_delayed_work(cvm_oct_poll_queue,
161				   &cvm_oct_rx_refill_work, HZ);
162}
163
164static void cvm_oct_periodic_worker(struct work_struct *work)
165{
166	struct octeon_ethernet *priv = container_of(work,
167						    struct octeon_ethernet,
168						    port_periodic_work.work);
169
170	if (priv->poll)
171		priv->poll(cvm_oct_device[priv->port]);
172
173	cvm_oct_device[priv->port]->netdev_ops->ndo_get_stats(cvm_oct_device[priv->port]);
174
175	if (!atomic_read(&cvm_oct_poll_queue_stopping))
176		queue_delayed_work(cvm_oct_poll_queue, &priv->port_periodic_work, HZ);
177 }
178
179static __init void cvm_oct_configure_common_hw(void)
180{
181	/* Setup the FPA */
182	cvmx_fpa_enable();
183	cvm_oct_mem_fill_fpa(CVMX_FPA_PACKET_POOL, CVMX_FPA_PACKET_POOL_SIZE,
184			     num_packet_buffers);
185	cvm_oct_mem_fill_fpa(CVMX_FPA_WQE_POOL, CVMX_FPA_WQE_POOL_SIZE,
186			     num_packet_buffers);
187	if (CVMX_FPA_OUTPUT_BUFFER_POOL != CVMX_FPA_PACKET_POOL)
188		cvm_oct_mem_fill_fpa(CVMX_FPA_OUTPUT_BUFFER_POOL,
189				     CVMX_FPA_OUTPUT_BUFFER_POOL_SIZE, 128);
190
191	if (USE_RED)
192		cvmx_helper_setup_red(num_packet_buffers / 4,
193				      num_packet_buffers / 8);
194
195}
196
197/**
198 * cvm_oct_free_work- Free a work queue entry
199 *
200 * @work_queue_entry: Work queue entry to free
201 *
202 * Returns Zero on success, Negative on failure.
203 */
204int cvm_oct_free_work(void *work_queue_entry)
205{
206	cvmx_wqe_t *work = work_queue_entry;
207
208	int segments = work->word2.s.bufs;
209	union cvmx_buf_ptr segment_ptr = work->packet_ptr;
210
211	while (segments--) {
212		union cvmx_buf_ptr next_ptr = *(union cvmx_buf_ptr *)
213			cvmx_phys_to_ptr(segment_ptr.s.addr - 8);
214		if (unlikely(!segment_ptr.s.i))
215			cvmx_fpa_free(cvm_oct_get_buffer_ptr(segment_ptr),
216				      segment_ptr.s.pool,
217				      DONT_WRITEBACK(CVMX_FPA_PACKET_POOL_SIZE /
218						     128));
219		segment_ptr = next_ptr;
220	}
221	cvmx_fpa_free(work, CVMX_FPA_WQE_POOL, DONT_WRITEBACK(1));
222
223	return 0;
224}
225EXPORT_SYMBOL(cvm_oct_free_work);
226
227/**
228 * cvm_oct_common_get_stats - get the low level ethernet statistics
229 * @dev:    Device to get the statistics from
230 *
231 * Returns Pointer to the statistics
232 */
233static struct net_device_stats *cvm_oct_common_get_stats(struct net_device *dev)
234{
235	cvmx_pip_port_status_t rx_status;
236	cvmx_pko_port_status_t tx_status;
237	struct octeon_ethernet *priv = netdev_priv(dev);
238
239	if (priv->port < CVMX_PIP_NUM_INPUT_PORTS) {
240		if (octeon_is_simulation()) {
241			/* The simulator doesn't support statistics */
242			memset(&rx_status, 0, sizeof(rx_status));
243			memset(&tx_status, 0, sizeof(tx_status));
244		} else {
245			cvmx_pip_get_port_status(priv->port, 1, &rx_status);
246			cvmx_pko_get_port_status(priv->port, 1, &tx_status);
247		}
248
249		priv->stats.rx_packets += rx_status.inb_packets;
250		priv->stats.tx_packets += tx_status.packets;
251		priv->stats.rx_bytes += rx_status.inb_octets;
252		priv->stats.tx_bytes += tx_status.octets;
253		priv->stats.multicast += rx_status.multicast_packets;
254		priv->stats.rx_crc_errors += rx_status.inb_errors;
255		priv->stats.rx_frame_errors += rx_status.fcs_align_err_packets;
256
257		/*
258		 * The drop counter must be incremented atomically
259		 * since the RX tasklet also increments it.
260		 */
261#ifdef CONFIG_64BIT
262		atomic64_add(rx_status.dropped_packets,
263			     (atomic64_t *)&priv->stats.rx_dropped);
264#else
265		atomic_add(rx_status.dropped_packets,
266			     (atomic_t *)&priv->stats.rx_dropped);
267#endif
268	}
269
270	return &priv->stats;
271}
272
273/**
274 * cvm_oct_common_change_mtu - change the link MTU
275 * @dev:     Device to change
276 * @new_mtu: The new MTU
277 *
278 * Returns Zero on success
279 */
280static int cvm_oct_common_change_mtu(struct net_device *dev, int new_mtu)
281{
282	struct octeon_ethernet *priv = netdev_priv(dev);
283	int interface = INTERFACE(priv->port);
284	int index = INDEX(priv->port);
285#if defined(CONFIG_VLAN_8021Q) || defined(CONFIG_VLAN_8021Q_MODULE)
286	int vlan_bytes = 4;
287#else
288	int vlan_bytes = 0;
289#endif
290
291	/*
292	 * Limit the MTU to make sure the ethernet packets are between
293	 * 64 bytes and 65535 bytes.
294	 */
295	if ((new_mtu + 14 + 4 + vlan_bytes < 64)
296	    || (new_mtu + 14 + 4 + vlan_bytes > 65392)) {
297		pr_err("MTU must be between %d and %d.\n",
298		       64 - 14 - 4 - vlan_bytes, 65392 - 14 - 4 - vlan_bytes);
299		return -EINVAL;
300	}
301	dev->mtu = new_mtu;
302
303	if ((interface < 2)
304	    && (cvmx_helper_interface_get_mode(interface) !=
305		CVMX_HELPER_INTERFACE_MODE_SPI)) {
306		/* Add ethernet header and FCS, and VLAN if configured. */
307		int max_packet = new_mtu + 14 + 4 + vlan_bytes;
308
309		if (OCTEON_IS_MODEL(OCTEON_CN3XXX)
310		    || OCTEON_IS_MODEL(OCTEON_CN58XX)) {
311			/* Signal errors on packets larger than the MTU */
312			cvmx_write_csr(CVMX_GMXX_RXX_FRM_MAX(index, interface),
313				       max_packet);
314		} else {
315			/*
316			 * Set the hardware to truncate packets larger
317			 * than the MTU and smaller the 64 bytes.
318			 */
319			union cvmx_pip_frm_len_chkx frm_len_chk;
320			frm_len_chk.u64 = 0;
321			frm_len_chk.s.minlen = 64;
322			frm_len_chk.s.maxlen = max_packet;
323			cvmx_write_csr(CVMX_PIP_FRM_LEN_CHKX(interface),
324				       frm_len_chk.u64);
325		}
326		/*
327		 * Set the hardware to truncate packets larger than
328		 * the MTU. The jabber register must be set to a
329		 * multiple of 8 bytes, so round up.
330		 */
331		cvmx_write_csr(CVMX_GMXX_RXX_JABBER(index, interface),
332			       (max_packet + 7) & ~7u);
333	}
334	return 0;
335}
336
337/**
338 * cvm_oct_common_set_multicast_list - set the multicast list
339 * @dev:    Device to work on
340 */
341static void cvm_oct_common_set_multicast_list(struct net_device *dev)
342{
343	union cvmx_gmxx_prtx_cfg gmx_cfg;
344	struct octeon_ethernet *priv = netdev_priv(dev);
345	int interface = INTERFACE(priv->port);
346	int index = INDEX(priv->port);
347
348	if ((interface < 2)
349	    && (cvmx_helper_interface_get_mode(interface) !=
350		CVMX_HELPER_INTERFACE_MODE_SPI)) {
351		union cvmx_gmxx_rxx_adr_ctl control;
352		control.u64 = 0;
353		control.s.bcst = 1;	/* Allow broadcast MAC addresses */
354
355		if (dev->mc_list || (dev->flags & IFF_ALLMULTI) ||
356		    (dev->flags & IFF_PROMISC))
357			/* Force accept multicast packets */
358			control.s.mcst = 2;
359		else
360			/* Force reject multicat packets */
361			control.s.mcst = 1;
362
363		if (dev->flags & IFF_PROMISC)
364			/*
365			 * Reject matches if promisc. Since CAM is
366			 * shut off, should accept everything.
367			 */
368			control.s.cam_mode = 0;
369		else
370			/* Filter packets based on the CAM */
371			control.s.cam_mode = 1;
372
373		gmx_cfg.u64 =
374		    cvmx_read_csr(CVMX_GMXX_PRTX_CFG(index, interface));
375		cvmx_write_csr(CVMX_GMXX_PRTX_CFG(index, interface),
376			       gmx_cfg.u64 & ~1ull);
377
378		cvmx_write_csr(CVMX_GMXX_RXX_ADR_CTL(index, interface),
379			       control.u64);
380		if (dev->flags & IFF_PROMISC)
381			cvmx_write_csr(CVMX_GMXX_RXX_ADR_CAM_EN
382				       (index, interface), 0);
383		else
384			cvmx_write_csr(CVMX_GMXX_RXX_ADR_CAM_EN
385				       (index, interface), 1);
386
387		cvmx_write_csr(CVMX_GMXX_PRTX_CFG(index, interface),
388			       gmx_cfg.u64);
389	}
390}
391
392/**
393 * cvm_oct_common_set_mac_address - set the hardware MAC address for a device
394 * @dev:    The device in question.
395 * @addr:   Address structure to change it too.
396
397 * Returns Zero on success
398 */
399static int cvm_oct_common_set_mac_address(struct net_device *dev, void *addr)
400{
401	struct octeon_ethernet *priv = netdev_priv(dev);
402	union cvmx_gmxx_prtx_cfg gmx_cfg;
403	int interface = INTERFACE(priv->port);
404	int index = INDEX(priv->port);
405
406	memcpy(dev->dev_addr, addr + 2, 6);
407
408	if ((interface < 2)
409	    && (cvmx_helper_interface_get_mode(interface) !=
410		CVMX_HELPER_INTERFACE_MODE_SPI)) {
411		int i;
412		uint8_t *ptr = addr;
413		uint64_t mac = 0;
414		for (i = 0; i < 6; i++)
415			mac = (mac << 8) | (uint64_t) (ptr[i + 2]);
416
417		gmx_cfg.u64 =
418		    cvmx_read_csr(CVMX_GMXX_PRTX_CFG(index, interface));
419		cvmx_write_csr(CVMX_GMXX_PRTX_CFG(index, interface),
420			       gmx_cfg.u64 & ~1ull);
421
422		cvmx_write_csr(CVMX_GMXX_SMACX(index, interface), mac);
423		cvmx_write_csr(CVMX_GMXX_RXX_ADR_CAM0(index, interface),
424			       ptr[2]);
425		cvmx_write_csr(CVMX_GMXX_RXX_ADR_CAM1(index, interface),
426			       ptr[3]);
427		cvmx_write_csr(CVMX_GMXX_RXX_ADR_CAM2(index, interface),
428			       ptr[4]);
429		cvmx_write_csr(CVMX_GMXX_RXX_ADR_CAM3(index, interface),
430			       ptr[5]);
431		cvmx_write_csr(CVMX_GMXX_RXX_ADR_CAM4(index, interface),
432			       ptr[6]);
433		cvmx_write_csr(CVMX_GMXX_RXX_ADR_CAM5(index, interface),
434			       ptr[7]);
435		cvm_oct_common_set_multicast_list(dev);
436		cvmx_write_csr(CVMX_GMXX_PRTX_CFG(index, interface),
437			       gmx_cfg.u64);
438	}
439	return 0;
440}
441
442/**
443 * cvm_oct_common_init - per network device initialization
444 * @dev:    Device to initialize
445 *
446 * Returns Zero on success
447 */
448int cvm_oct_common_init(struct net_device *dev)
449{
450	struct octeon_ethernet *priv = netdev_priv(dev);
451	struct sockaddr sa;
452	u64 mac = ((u64)(octeon_bootinfo->mac_addr_base[0] & 0xff) << 40) |
453		((u64)(octeon_bootinfo->mac_addr_base[1] & 0xff) << 32) |
454		((u64)(octeon_bootinfo->mac_addr_base[2] & 0xff) << 24) |
455		((u64)(octeon_bootinfo->mac_addr_base[3] & 0xff) << 16) |
456		((u64)(octeon_bootinfo->mac_addr_base[4] & 0xff) << 8) |
457		(u64)(octeon_bootinfo->mac_addr_base[5] & 0xff);
458
459	mac += cvm_oct_mac_addr_offset;
460	sa.sa_data[0] = (mac >> 40) & 0xff;
461	sa.sa_data[1] = (mac >> 32) & 0xff;
462	sa.sa_data[2] = (mac >> 24) & 0xff;
463	sa.sa_data[3] = (mac >> 16) & 0xff;
464	sa.sa_data[4] = (mac >> 8) & 0xff;
465	sa.sa_data[5] = mac & 0xff;
466
467	if (cvm_oct_mac_addr_offset >= octeon_bootinfo->mac_addr_count)
468		printk(KERN_DEBUG "%s: Using MAC outside of the assigned range:"
469			" %02x:%02x:%02x:%02x:%02x:%02x\n", dev->name,
470			sa.sa_data[0] & 0xff, sa.sa_data[1] & 0xff,
471			sa.sa_data[2] & 0xff, sa.sa_data[3] & 0xff,
472			sa.sa_data[4] & 0xff, sa.sa_data[5] & 0xff);
473	cvm_oct_mac_addr_offset++;
474
475	/*
476	 * Force the interface to use the POW send if always_use_pow
477	 * was specified or it is in the pow send list.
478	 */
479	if ((pow_send_group != -1)
480	    && (always_use_pow || strstr(pow_send_list, dev->name)))
481		priv->queue = -1;
482
483	if (priv->queue != -1) {
484		dev->features |= NETIF_F_SG;
485		if (USE_HW_TCPUDP_CHECKSUM)
486			dev->features |= NETIF_F_IP_CSUM;
487	}
488
489	/* We do our own locking, Linux doesn't need to */
490	dev->features |= NETIF_F_LLTX;
491	SET_ETHTOOL_OPS(dev, &cvm_oct_ethtool_ops);
492
493	cvm_oct_phy_setup_device(dev);
494	dev->netdev_ops->ndo_set_mac_address(dev, &sa);
495	dev->netdev_ops->ndo_change_mtu(dev, dev->mtu);
496
497	/*
498	 * Zero out stats for port so we won't mistakenly show
499	 * counters from the bootloader.
500	 */
501	memset(dev->netdev_ops->ndo_get_stats(dev), 0,
502	       sizeof(struct net_device_stats));
503
504	return 0;
505}
506
507void cvm_oct_common_uninit(struct net_device *dev)
508{
509	struct octeon_ethernet *priv = netdev_priv(dev);
510
511	if (priv->phydev)
512		phy_disconnect(priv->phydev);
513}
514
515static const struct net_device_ops cvm_oct_npi_netdev_ops = {
516	.ndo_init		= cvm_oct_common_init,
517	.ndo_uninit		= cvm_oct_common_uninit,
518	.ndo_start_xmit		= cvm_oct_xmit,
519	.ndo_set_multicast_list	= cvm_oct_common_set_multicast_list,
520	.ndo_set_mac_address	= cvm_oct_common_set_mac_address,
521	.ndo_do_ioctl		= cvm_oct_ioctl,
522	.ndo_change_mtu		= cvm_oct_common_change_mtu,
523	.ndo_get_stats		= cvm_oct_common_get_stats,
524#ifdef CONFIG_NET_POLL_CONTROLLER
525	.ndo_poll_controller	= cvm_oct_poll_controller,
526#endif
527};
528static const struct net_device_ops cvm_oct_xaui_netdev_ops = {
529	.ndo_init		= cvm_oct_xaui_init,
530	.ndo_uninit		= cvm_oct_xaui_uninit,
531	.ndo_open		= cvm_oct_xaui_open,
532	.ndo_stop		= cvm_oct_xaui_stop,
533	.ndo_start_xmit		= cvm_oct_xmit,
534	.ndo_set_multicast_list	= cvm_oct_common_set_multicast_list,
535	.ndo_set_mac_address	= cvm_oct_common_set_mac_address,
536	.ndo_do_ioctl		= cvm_oct_ioctl,
537	.ndo_change_mtu		= cvm_oct_common_change_mtu,
538	.ndo_get_stats		= cvm_oct_common_get_stats,
539#ifdef CONFIG_NET_POLL_CONTROLLER
540	.ndo_poll_controller	= cvm_oct_poll_controller,
541#endif
542};
543static const struct net_device_ops cvm_oct_sgmii_netdev_ops = {
544	.ndo_init		= cvm_oct_sgmii_init,
545	.ndo_uninit		= cvm_oct_sgmii_uninit,
546	.ndo_open		= cvm_oct_sgmii_open,
547	.ndo_stop		= cvm_oct_sgmii_stop,
548	.ndo_start_xmit		= cvm_oct_xmit,
549	.ndo_set_multicast_list	= cvm_oct_common_set_multicast_list,
550	.ndo_set_mac_address	= cvm_oct_common_set_mac_address,
551	.ndo_do_ioctl		= cvm_oct_ioctl,
552	.ndo_change_mtu		= cvm_oct_common_change_mtu,
553	.ndo_get_stats		= cvm_oct_common_get_stats,
554#ifdef CONFIG_NET_POLL_CONTROLLER
555	.ndo_poll_controller	= cvm_oct_poll_controller,
556#endif
557};
558static const struct net_device_ops cvm_oct_spi_netdev_ops = {
559	.ndo_init		= cvm_oct_spi_init,
560	.ndo_uninit		= cvm_oct_spi_uninit,
561	.ndo_start_xmit		= cvm_oct_xmit,
562	.ndo_set_multicast_list	= cvm_oct_common_set_multicast_list,
563	.ndo_set_mac_address	= cvm_oct_common_set_mac_address,
564	.ndo_do_ioctl		= cvm_oct_ioctl,
565	.ndo_change_mtu		= cvm_oct_common_change_mtu,
566	.ndo_get_stats		= cvm_oct_common_get_stats,
567#ifdef CONFIG_NET_POLL_CONTROLLER
568	.ndo_poll_controller	= cvm_oct_poll_controller,
569#endif
570};
571static const struct net_device_ops cvm_oct_rgmii_netdev_ops = {
572	.ndo_init		= cvm_oct_rgmii_init,
573	.ndo_uninit		= cvm_oct_rgmii_uninit,
574	.ndo_open		= cvm_oct_rgmii_open,
575	.ndo_stop		= cvm_oct_rgmii_stop,
576	.ndo_start_xmit		= cvm_oct_xmit,
577	.ndo_set_multicast_list	= cvm_oct_common_set_multicast_list,
578	.ndo_set_mac_address	= cvm_oct_common_set_mac_address,
579	.ndo_do_ioctl		= cvm_oct_ioctl,
580	.ndo_change_mtu		= cvm_oct_common_change_mtu,
581	.ndo_get_stats		= cvm_oct_common_get_stats,
582#ifdef CONFIG_NET_POLL_CONTROLLER
583	.ndo_poll_controller	= cvm_oct_poll_controller,
584#endif
585};
586static const struct net_device_ops cvm_oct_pow_netdev_ops = {
587	.ndo_init		= cvm_oct_common_init,
588	.ndo_start_xmit		= cvm_oct_xmit_pow,
589	.ndo_set_multicast_list	= cvm_oct_common_set_multicast_list,
590	.ndo_set_mac_address	= cvm_oct_common_set_mac_address,
591	.ndo_do_ioctl		= cvm_oct_ioctl,
592	.ndo_change_mtu		= cvm_oct_common_change_mtu,
593	.ndo_get_stats		= cvm_oct_common_get_stats,
594#ifdef CONFIG_NET_POLL_CONTROLLER
595	.ndo_poll_controller	= cvm_oct_poll_controller,
596#endif
597};
598
599extern void octeon_mdiobus_force_mod_depencency(void);
600
601static int __init cvm_oct_init_module(void)
602{
603	int num_interfaces;
604	int interface;
605	int fau = FAU_NUM_PACKET_BUFFERS_TO_FREE;
606	int qos;
607
608	octeon_mdiobus_force_mod_depencency();
609	pr_notice("cavium-ethernet %s\n", OCTEON_ETHERNET_VERSION);
610
611	if (OCTEON_IS_MODEL(OCTEON_CN52XX))
612		cvm_oct_mac_addr_offset = 2; /* First two are the mgmt ports. */
613	else if (OCTEON_IS_MODEL(OCTEON_CN56XX))
614		cvm_oct_mac_addr_offset = 1; /* First one is the mgmt port. */
615	else
616		cvm_oct_mac_addr_offset = 0;
617
618	cvm_oct_poll_queue = create_singlethread_workqueue("octeon-ethernet");
619	if (cvm_oct_poll_queue == NULL) {
620		pr_err("octeon-ethernet: Cannot create workqueue");
621		return -ENOMEM;
622	}
623
624	cvm_oct_proc_initialize();
625	cvm_oct_configure_common_hw();
626
627	cvmx_helper_initialize_packet_io_global();
628
629	/* Change the input group for all ports before input is enabled */
630	num_interfaces = cvmx_helper_get_number_of_interfaces();
631	for (interface = 0; interface < num_interfaces; interface++) {
632		int num_ports = cvmx_helper_ports_on_interface(interface);
633		int port;
634
635		for (port = cvmx_helper_get_ipd_port(interface, 0);
636		     port < cvmx_helper_get_ipd_port(interface, num_ports);
637		     port++) {
638			union cvmx_pip_prt_tagx pip_prt_tagx;
639			pip_prt_tagx.u64 =
640			    cvmx_read_csr(CVMX_PIP_PRT_TAGX(port));
641			pip_prt_tagx.s.grp = pow_receive_group;
642			cvmx_write_csr(CVMX_PIP_PRT_TAGX(port),
643				       pip_prt_tagx.u64);
644		}
645	}
646
647	cvmx_helper_ipd_and_packet_input_enable();
648
649	memset(cvm_oct_device, 0, sizeof(cvm_oct_device));
650
651	/*
652	 * Initialize the FAU used for counting packet buffers that
653	 * need to be freed.
654	 */
655	cvmx_fau_atomic_write32(FAU_NUM_PACKET_BUFFERS_TO_FREE, 0);
656
657	/* Initialize the FAU used for counting tx SKBs that need to be freed */
658	cvmx_fau_atomic_write32(FAU_TOTAL_TX_TO_CLEAN, 0);
659
660	if ((pow_send_group != -1)) {
661		struct net_device *dev;
662		pr_info("\tConfiguring device for POW only access\n");
663		dev = alloc_etherdev(sizeof(struct octeon_ethernet));
664		if (dev) {
665			/* Initialize the device private structure. */
666			struct octeon_ethernet *priv = netdev_priv(dev);
667
668			dev->netdev_ops = &cvm_oct_pow_netdev_ops;
669			priv->imode = CVMX_HELPER_INTERFACE_MODE_DISABLED;
670			priv->port = CVMX_PIP_NUM_INPUT_PORTS;
671			priv->queue = -1;
672			strcpy(dev->name, "pow%d");
673			for (qos = 0; qos < 16; qos++)
674				skb_queue_head_init(&priv->tx_free_list[qos]);
675
676			if (register_netdev(dev) < 0) {
677				pr_err("Failed to register ethernet device for POW\n");
678				kfree(dev);
679			} else {
680				cvm_oct_device[CVMX_PIP_NUM_INPUT_PORTS] = dev;
681				pr_info("%s: POW send group %d, receive group %d\n",
682					dev->name, pow_send_group,
683					pow_receive_group);
684			}
685		} else {
686			pr_err("Failed to allocate ethernet device for POW\n");
687		}
688	}
689
690	num_interfaces = cvmx_helper_get_number_of_interfaces();
691	for (interface = 0; interface < num_interfaces; interface++) {
692		cvmx_helper_interface_mode_t imode =
693		    cvmx_helper_interface_get_mode(interface);
694		int num_ports = cvmx_helper_ports_on_interface(interface);
695		int port;
696
697		for (port = cvmx_helper_get_ipd_port(interface, 0);
698		     port < cvmx_helper_get_ipd_port(interface, num_ports);
699		     port++) {
700			struct octeon_ethernet *priv;
701			struct net_device *dev =
702			    alloc_etherdev(sizeof(struct octeon_ethernet));
703			if (!dev) {
704				pr_err("Failed to allocate ethernet device for port %d\n", port);
705				continue;
706			}
707
708			/* Initialize the device private structure. */
709			priv = netdev_priv(dev);
710
711			INIT_DELAYED_WORK(&priv->port_periodic_work,
712					  cvm_oct_periodic_worker);
713			priv->imode = imode;
714			priv->port = port;
715			priv->queue = cvmx_pko_get_base_queue(priv->port);
716			priv->fau = fau - cvmx_pko_get_num_queues(port) * 4;
717			for (qos = 0; qos < 16; qos++)
718				skb_queue_head_init(&priv->tx_free_list[qos]);
719			for (qos = 0; qos < cvmx_pko_get_num_queues(port);
720			     qos++)
721				cvmx_fau_atomic_write32(priv->fau + qos * 4, 0);
722
723			switch (priv->imode) {
724
725			/* These types don't support ports to IPD/PKO */
726			case CVMX_HELPER_INTERFACE_MODE_DISABLED:
727			case CVMX_HELPER_INTERFACE_MODE_PCIE:
728			case CVMX_HELPER_INTERFACE_MODE_PICMG:
729				break;
730
731			case CVMX_HELPER_INTERFACE_MODE_NPI:
732				dev->netdev_ops = &cvm_oct_npi_netdev_ops;
733				strcpy(dev->name, "npi%d");
734				break;
735
736			case CVMX_HELPER_INTERFACE_MODE_XAUI:
737				dev->netdev_ops = &cvm_oct_xaui_netdev_ops;
738				strcpy(dev->name, "xaui%d");
739				break;
740
741			case CVMX_HELPER_INTERFACE_MODE_LOOP:
742				dev->netdev_ops = &cvm_oct_npi_netdev_ops;
743				strcpy(dev->name, "loop%d");
744				break;
745
746			case CVMX_HELPER_INTERFACE_MODE_SGMII:
747				dev->netdev_ops = &cvm_oct_sgmii_netdev_ops;
748				strcpy(dev->name, "eth%d");
749				break;
750
751			case CVMX_HELPER_INTERFACE_MODE_SPI:
752				dev->netdev_ops = &cvm_oct_spi_netdev_ops;
753				strcpy(dev->name, "spi%d");
754				break;
755
756			case CVMX_HELPER_INTERFACE_MODE_RGMII:
757			case CVMX_HELPER_INTERFACE_MODE_GMII:
758				dev->netdev_ops = &cvm_oct_rgmii_netdev_ops;
759				strcpy(dev->name, "eth%d");
760				break;
761			}
762
763			if (!dev->netdev_ops) {
764				kfree(dev);
765			} else if (register_netdev(dev) < 0) {
766				pr_err("Failed to register ethernet device "
767					 "for interface %d, port %d\n",
768					 interface, priv->port);
769				kfree(dev);
770			} else {
771				cvm_oct_device[priv->port] = dev;
772				fau -=
773				    cvmx_pko_get_num_queues(priv->port) *
774				    sizeof(uint32_t);
775				queue_delayed_work(cvm_oct_poll_queue,
776						   &priv->port_periodic_work, HZ);
777			}
778		}
779	}
780
781	cvm_oct_tx_initialize();
782	cvm_oct_rx_initialize();
783
784	/*
785	 * 150 uS: about 10 1500-byte packtes at 1GE.
786	 */
787	cvm_oct_tx_poll_interval = 150 * (octeon_get_clock_rate() / 1000000);
788
789	queue_delayed_work(cvm_oct_poll_queue, &cvm_oct_rx_refill_work, HZ);
790
791	return 0;
792}
793
794static void __exit cvm_oct_cleanup_module(void)
795{
796	int port;
797
798	/* Disable POW interrupt */
799	cvmx_write_csr(CVMX_POW_WQ_INT_THRX(pow_receive_group), 0);
800
801	cvmx_ipd_disable();
802
803	/* Free the interrupt handler */
804	free_irq(OCTEON_IRQ_WORKQ0 + pow_receive_group, cvm_oct_device);
805
806	atomic_inc_return(&cvm_oct_poll_queue_stopping);
807	cancel_delayed_work_sync(&cvm_oct_rx_refill_work);
808
809	cvm_oct_rx_shutdown();
810	cvm_oct_tx_shutdown();
811
812	cvmx_pko_disable();
813
814	/* Free the ethernet devices */
815	for (port = 0; port < TOTAL_NUMBER_OF_PORTS; port++) {
816		if (cvm_oct_device[port]) {
817			struct net_device *dev = cvm_oct_device[port];
818			struct octeon_ethernet *priv = netdev_priv(dev);
819			cancel_delayed_work_sync(&priv->port_periodic_work);
820
821			cvm_oct_tx_shutdown_dev(dev);
822			unregister_netdev(dev);
823			kfree(dev);
824			cvm_oct_device[port] = NULL;
825		}
826	}
827
828	destroy_workqueue(cvm_oct_poll_queue);
829
830	cvmx_pko_shutdown();
831	cvm_oct_proc_shutdown();
832
833	cvmx_ipd_free_ptr();
834
835	/* Free the HW pools */
836	cvm_oct_mem_empty_fpa(CVMX_FPA_PACKET_POOL, CVMX_FPA_PACKET_POOL_SIZE,
837			      num_packet_buffers);
838	cvm_oct_mem_empty_fpa(CVMX_FPA_WQE_POOL, CVMX_FPA_WQE_POOL_SIZE,
839			      num_packet_buffers);
840	if (CVMX_FPA_OUTPUT_BUFFER_POOL != CVMX_FPA_PACKET_POOL)
841		cvm_oct_mem_empty_fpa(CVMX_FPA_OUTPUT_BUFFER_POOL,
842				      CVMX_FPA_OUTPUT_BUFFER_POOL_SIZE, 128);
843}
844
845MODULE_LICENSE("GPL");
846MODULE_AUTHOR("Cavium Networks <support@caviumnetworks.com>");
847MODULE_DESCRIPTION("Cavium Networks Octeon ethernet driver.");
848module_init(cvm_oct_init_module);
849module_exit(cvm_oct_cleanup_module);
850