xref: /OK3568_Linux_fs/kernel/arch/mips/cavium-octeon/executive/cvmx-helper-loop.c (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /***********************license start***************
2*4882a593Smuzhiyun  * Author: Cavium Networks
3*4882a593Smuzhiyun  *
4*4882a593Smuzhiyun  * Contact: support@caviumnetworks.com
5*4882a593Smuzhiyun  * This file is part of the OCTEON SDK
6*4882a593Smuzhiyun  *
7*4882a593Smuzhiyun  * Copyright (c) 2003-2008 Cavium Networks
8*4882a593Smuzhiyun  *
9*4882a593Smuzhiyun  * This file is free software; you can redistribute it and/or modify
10*4882a593Smuzhiyun  * it under the terms of the GNU General Public License, Version 2, as
11*4882a593Smuzhiyun  * published by the Free Software Foundation.
12*4882a593Smuzhiyun  *
13*4882a593Smuzhiyun  * This file is distributed in the hope that it will be useful, but
14*4882a593Smuzhiyun  * AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty
15*4882a593Smuzhiyun  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
16*4882a593Smuzhiyun  * NONINFRINGEMENT.  See the GNU General Public License for more
17*4882a593Smuzhiyun  * details.
18*4882a593Smuzhiyun  *
19*4882a593Smuzhiyun  * You should have received a copy of the GNU General Public License
20*4882a593Smuzhiyun  * along with this file; if not, write to the Free Software
21*4882a593Smuzhiyun  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22*4882a593Smuzhiyun  * or visit http://www.gnu.org/licenses/.
23*4882a593Smuzhiyun  *
24*4882a593Smuzhiyun  * This file may also be available under a different license from Cavium.
25*4882a593Smuzhiyun  * Contact Cavium Networks for more information
26*4882a593Smuzhiyun  ***********************license end**************************************/
27*4882a593Smuzhiyun 
28*4882a593Smuzhiyun /*
29*4882a593Smuzhiyun  * Functions for LOOP initialization, configuration,
30*4882a593Smuzhiyun  * and monitoring.
31*4882a593Smuzhiyun  */
32*4882a593Smuzhiyun #include <asm/octeon/octeon.h>
33*4882a593Smuzhiyun 
34*4882a593Smuzhiyun #include <asm/octeon/cvmx-config.h>
35*4882a593Smuzhiyun 
36*4882a593Smuzhiyun #include <asm/octeon/cvmx-helper.h>
37*4882a593Smuzhiyun #include <asm/octeon/cvmx-pip-defs.h>
38*4882a593Smuzhiyun 
39*4882a593Smuzhiyun /**
40*4882a593Smuzhiyun  * Probe a LOOP interface and determine the number of ports
41*4882a593Smuzhiyun  * connected to it. The LOOP interface should still be down
42*4882a593Smuzhiyun  * after this call.
43*4882a593Smuzhiyun  *
44*4882a593Smuzhiyun  * @interface: Interface to probe
45*4882a593Smuzhiyun  *
46*4882a593Smuzhiyun  * Returns Number of ports on the interface. Zero to disable.
47*4882a593Smuzhiyun  */
__cvmx_helper_loop_probe(int interface)48*4882a593Smuzhiyun int __cvmx_helper_loop_probe(int interface)
49*4882a593Smuzhiyun {
50*4882a593Smuzhiyun 	union cvmx_ipd_sub_port_fcs ipd_sub_port_fcs;
51*4882a593Smuzhiyun 	int num_ports = 4;
52*4882a593Smuzhiyun 	int port;
53*4882a593Smuzhiyun 
54*4882a593Smuzhiyun 	/* We need to disable length checking so packet < 64 bytes and jumbo
55*4882a593Smuzhiyun 	   frames don't get errors */
56*4882a593Smuzhiyun 	for (port = 0; port < num_ports; port++) {
57*4882a593Smuzhiyun 		union cvmx_pip_prt_cfgx port_cfg;
58*4882a593Smuzhiyun 		int ipd_port = cvmx_helper_get_ipd_port(interface, port);
59*4882a593Smuzhiyun 		port_cfg.u64 = cvmx_read_csr(CVMX_PIP_PRT_CFGX(ipd_port));
60*4882a593Smuzhiyun 		port_cfg.s.maxerr_en = 0;
61*4882a593Smuzhiyun 		port_cfg.s.minerr_en = 0;
62*4882a593Smuzhiyun 		cvmx_write_csr(CVMX_PIP_PRT_CFGX(ipd_port), port_cfg.u64);
63*4882a593Smuzhiyun 	}
64*4882a593Smuzhiyun 
65*4882a593Smuzhiyun 	/* Disable FCS stripping for loopback ports */
66*4882a593Smuzhiyun 	ipd_sub_port_fcs.u64 = cvmx_read_csr(CVMX_IPD_SUB_PORT_FCS);
67*4882a593Smuzhiyun 	ipd_sub_port_fcs.s.port_bit2 = 0;
68*4882a593Smuzhiyun 	cvmx_write_csr(CVMX_IPD_SUB_PORT_FCS, ipd_sub_port_fcs.u64);
69*4882a593Smuzhiyun 	return num_ports;
70*4882a593Smuzhiyun }
71*4882a593Smuzhiyun 
72*4882a593Smuzhiyun /**
73*4882a593Smuzhiyun  * Bringup and enable a LOOP interface. After this call packet
74*4882a593Smuzhiyun  * I/O should be fully functional. This is called with IPD
75*4882a593Smuzhiyun  * enabled but PKO disabled.
76*4882a593Smuzhiyun  *
77*4882a593Smuzhiyun  * @interface: Interface to bring up
78*4882a593Smuzhiyun  *
79*4882a593Smuzhiyun  * Returns Zero on success, negative on failure
80*4882a593Smuzhiyun  */
__cvmx_helper_loop_enable(int interface)81*4882a593Smuzhiyun int __cvmx_helper_loop_enable(int interface)
82*4882a593Smuzhiyun {
83*4882a593Smuzhiyun 	/* Do nothing. */
84*4882a593Smuzhiyun 	return 0;
85*4882a593Smuzhiyun }
86