blob: 77af2ea9b5dc96a28997522b4c90a5f6faf7d913 [file] [log] [blame]
/*******************************************************************************
Copyright (C) Marvell International Ltd. and its affiliates
This software file (the "File") is owned and distributed by Marvell
International Ltd. and/or its affiliates ("Marvell") under the following
alternative licensing terms. Once you have made an election to distribute the
File under one of the following license alternatives, please (i) delete this
introductory statement regarding license alternatives, (ii) delete the two
license alternatives that you have not elected to use and (iii) preserve the
Marvell copyright notice above.
********************************************************************************
Marvell Commercial License Option
If you received this File from Marvell and you have entered into a commercial
license agreement (a "Commercial License") with Marvell, the File is licensed
to you under the terms of the applicable Commercial License.
********************************************************************************
Marvell GPL License Option
If you received this File from Marvell, you may opt to use, redistribute and/or
modify this File in accordance with the terms and conditions of the General
Public License Version 2, June 1991 (the "GPL License"), a copy of which is
available along with the File in the license.txt file or by writing to the Free
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 or
on the worldwide web at http://www.gnu.org/licenses/gpl.txt.
THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE IMPLIED
WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE ARE EXPRESSLY
DISCLAIMED. The GPL License provides additional details about this warranty
disclaimer.
********************************************************************************
Marvell BSD License Option
If you received this File from Marvell, you may opt to use, redistribute and/or
modify this File under the following licensing terms.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of Marvell nor the names of its contributors may be
used to endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*******************************************************************************/
#include "mvOs.h"
#include "mvSwitch.h"
#include "eth-phy/mvEthPhy.h"
#include "mvSwitchRegs.h"
#include "mvCtrlEnvLib.h"
#include "mvBoardEnvLib.h"
static void switchVlanInit(MV_U32 ethPortNum,
MV_U32 switchCpuPort,
MV_U32 switchMaxPortsNum,
MV_U32 switchPortsOffset,
MV_U32 switchEnabledPortsMask);
void mvEthSwitchRegWrite(MV_U32 ethPortNum, MV_U32 phyAddr,
MV_U32 regOffs, MV_U16 data);
void mvEthSwitchRegRead(MV_U32 ethPortNum, MV_U32 phyAddr,
MV_U32 regOffs, MV_U16 *data);
int switchMultiChipMode = 0xdeadbeef;
/*******************************************************************************
* mvEthE6065_61PhyBasicInit -
*
* DESCRIPTION:
* Do a basic Init to the Phy , including reset
*
* INPUT:
* ethPortNum - Ethernet port number
*
* OUTPUT:
* None.
*
* RETURN: None
*
*******************************************************************************/
MV_VOID mvEthE6065_61SwitchBasicInit(MV_U32 ethPortNum)
{
switchVlanInit(ethPortNum,
MV_E6065_CPU_PORT,
MV_E6065_MAX_PORTS_NUM,
MV_E6065_PORTS_OFFSET,
MV_E6065_ENABLED_PORTS);
}
/*******************************************************************************
* mvEthE6063PhyBasicInit -
*
* DESCRIPTION:
* Do a basic Init to the Phy , including reset
*
* INPUT:
* ethPortNum - Ethernet port number
*
* OUTPUT:
* None.
*
* RETURN: None
*
*******************************************************************************/
MV_VOID mvEthE6063SwitchBasicInit(MV_U32 ethPortNum)
{
switchVlanInit(ethPortNum,
MV_E6063_CPU_PORT,
MV_E6063_MAX_PORTS_NUM,
MV_E6063_PORTS_OFFSET,
MV_E6063_ENABLED_PORTS);
}
/*******************************************************************************
* mvEthE6131PhyBasicInit -
*
* DESCRIPTION:
* Do a basic Init to the Phy , including reset
*
* INPUT:
* ethPortNum - Ethernet port number
*
* OUTPUT:
* None.
*
* RETURN: None
*
*******************************************************************************/
MV_VOID mvEthE6131SwitchBasicInit(MV_U32 ethPortNum)
{
MV_U16 reg;
/*Enable Phy power up*/
mvEthPhyRegWrite (0,0,0x9140);
mvEthPhyRegWrite (1,0,0x9140);
mvEthPhyRegWrite (2,0,0x9140);
/*Enable PPU*/
mvEthPhyRegWrite (0x1b,4,0x4080);
/*Enable Phy detection*/
mvEthPhyRegRead (0x13,0,&reg);
reg &= ~(1<<12);
mvEthPhyRegWrite (0x13,0,reg);
mvOsDelay(100);
mvEthPhyRegWrite (0x13,1,0x33);
switchVlanInit(ethPortNum,
MV_E6131_CPU_PORT,
MV_E6131_MAX_PORTS_NUM,
MV_E6131_PORTS_OFFSET,
MV_E6131_ENABLED_PORTS);
}
/*******************************************************************************
* mvEthE6161PhyBasicInit -
*
* DESCRIPTION:
* Do a basic Init to the Phy , including reset
*
* INPUT:
* ethPortNum - Ethernet port number
*
* OUTPUT:
* None.
*
* RETURN: None
*
*******************************************************************************/
MV_VOID mvEthE6161SwitchBasicInit(MV_U32 ethPortNum)
{
MV_U32 prt;
MV_U16 reg;
volatile MV_U32 timeout;
/* The 6161/5 needs a delay */
mvOsDelay(1000);
/* Init vlan */
switchVlanInit(ethPortNum,
MV_E6161_CPU_PORT,
MV_E6161_MAX_PORTS_NUM,
MV_E6161_PORTS_OFFSET,
MV_E6161_ENABLED_PORTS);
/* Enable RGMII delay on Tx and Rx for CPU port */
mvEthSwitchRegWrite (ethPortNum, 0x14,0x1a,0x81e7);
mvEthSwitchRegRead (ethPortNum, 0x15,0x1a,&reg);
mvEthSwitchRegWrite (ethPortNum, 0x15,0x1a,0x18);
mvEthSwitchRegWrite (ethPortNum, 0x14,0x1a,0xc1e7);
for(prt=0; prt < MV_E6161_MAX_PORTS_NUM; prt++)
{
if (prt != MV_E6161_CPU_PORT)
{
/*Enable Phy power up*/
mvEthSwitchRegWrite (ethPortNum, MV_E6161_GLOBAL_2_REG_DEV_ADDR,
MV_E6161_SMI_PHY_DATA, 0x3360);
mvEthSwitchRegWrite (ethPortNum, MV_E6161_GLOBAL_2_REG_DEV_ADDR,
MV_E6161_SMI_PHY_COMMAND, (0x9410 | (prt << 5)));
/*Make sure SMIBusy bit cleared before another SMI operation can take place*/
timeout = E6161_PHY_TIMEOUT;
do
{
mvEthSwitchRegRead(ethPortNum, MV_E6161_GLOBAL_2_REG_DEV_ADDR,
MV_E6161_SMI_PHY_COMMAND,&reg);
if(timeout-- == 0)
{
mvOsPrintf("mvEthPhyRegRead: SMI busy timeout\n");
return;
}
}while (reg & E6161_PHY_SMI_BUSY_MASK);
mvEthSwitchRegWrite (ethPortNum, MV_E6161_GLOBAL_2_REG_DEV_ADDR,
MV_E6161_SMI_PHY_DATA,0x1140);
mvEthSwitchRegWrite (ethPortNum, MV_E6161_GLOBAL_2_REG_DEV_ADDR,
MV_E6161_SMI_PHY_COMMAND,(0x9400 | (prt << 5)));
/*Make sure SMIBusy bit cleared before another SMI operation can take place*/
timeout = E6161_PHY_TIMEOUT;
do
{
mvEthSwitchRegRead(ethPortNum, MV_E6161_GLOBAL_2_REG_DEV_ADDR,
MV_E6161_SMI_PHY_COMMAND,&reg);
if(timeout-- == 0)
{
mvOsPrintf("mvEthPhyRegRead: SMI busy timeout\n");
return;
}
}while (reg & E6161_PHY_SMI_BUSY_MASK);
}
/*Enable port*/
mvEthSwitchRegWrite (ethPortNum, MV_E6161_PORTS_OFFSET + prt, 4, 0x7f);
}
/*Force CPU port to RGMII FDX 1000Base*/
mvEthSwitchRegWrite (ethPortNum, MV_E6161_PORTS_OFFSET + MV_E6161_CPU_PORT, 1, 0x3e);
}
#if defined (MV88F66XX)
MV_VOID mvAlpBoardSwitchBasicInit(MV_U32 enabledPorts)
{
MV_U16 regVal;
MV_U32 port, forceMask, switchCpuPort = mvBoardSwitchCpuPortGet(0);
/* Force link, speed, duplex for switch CPU port */
mvEthSwitchRegWrite(0, 0x10 + switchCpuPort, 0x1, 0x3e);
forceMask = mvBoardSwitchPortForceLinkGet(0);
for (port = 0; port < 6; port++) {
MV_U32 toForce = forceMask & (1 << port);
if (toForce) {
mvEthSwitchRegWrite(0, MV_SWITCH_PORT_OFFSET(port),
MV_SWITCH_PHYS_CONTROL_REG, 0x3e);
/* Disable PHY polling for forced link ports - clear bit 12 */
mvEthSwitchRegRead(0, MV_SWITCH_PORT_OFFSET(port),
MV_SWITCH_PORT_STATUS_REG, &regVal);
mvEthSwitchRegWrite(0, MV_SWITCH_PORT_OFFSET(port),
MV_SWITCH_PORT_STATUS_REG, regVal & ~BIT12);
}
}
switchVlanInit(0, switchCpuPort, MV_ALP_SW_MAX_PORTS_NUM,
MV_ALP_SW_PORTS_OFFSET, enabledPorts);
}
#endif /* MV88F66XX */
MV_VOID mvEthE6171SwitchBasicInit(MV_U32 ethPortNum)
{
MV_U32 prt;
MV_U16 reg;
volatile MV_U32 timeout;
MV_32 cpuPort = mvBoardSwitchCpuPortGet(0);
/* The 6171 needs a delay */
mvOsDelay(1000);
/* Init vlan of switch 1 and enable all ports */
switchVlanInit(ethPortNum, MV_E6171_CPU_PORT, MV_E6171_MAX_PORTS_NUM, MV_E6171_PORTS_OFFSET,
MV_E6171_ENABLED_PORTS);
/* Enable RGMII delay on Tx and Rx for port 5 switch 1 */
mvEthSwitchRegRead(ethPortNum, MV_E6171_PORTS_OFFSET + cpuPort, MV_E6171_SWITCH_PHIYSICAL_CTRL_REG, &reg);
mvEthSwitchRegWrite(ethPortNum, MV_E6171_PORTS_OFFSET + cpuPort, MV_E6171_SWITCH_PHIYSICAL_CTRL_REG,
(reg|0xC000));
/* Power up PHYs */
for(prt=0; prt < MV_E6171_MAX_PORTS_NUM - 2; prt++) {
if (prt != MV_E6171_CPU_PORT) {
/*Enable Phy power up for switch 1*/
mvEthSwitchRegWrite(ethPortNum, MV_E6171_GLOBAL_2_REG_DEV_ADDR,
MV_E6171_SMI_PHY_DATA, 0x3360);
mvEthSwitchRegWrite(ethPortNum, MV_E6171_GLOBAL_2_REG_DEV_ADDR, MV_E6171_SMI_PHY_COMMAND,
(0x9410 | (prt << 5)));
/*Make sure SMIBusy bit cleared before another SMI operation can take place*/
timeout = E6171_PHY_TIMEOUT;
do {
mvEthSwitchRegRead(ethPortNum, MV_E6171_GLOBAL_2_REG_DEV_ADDR, MV_E6171_SMI_PHY_COMMAND,&reg);
if(timeout-- == 0) {
mvOsPrintf("mvEthPhyRegRead: SMI busy timeout\n");
return;
}
} while (reg & E6171_PHY_SMI_BUSY_MASK);
mvEthSwitchRegWrite(ethPortNum, MV_E6171_GLOBAL_2_REG_DEV_ADDR, MV_E6171_SMI_PHY_DATA,0x9140);
mvEthSwitchRegWrite(ethPortNum, MV_E6171_GLOBAL_2_REG_DEV_ADDR,
MV_E6171_SMI_PHY_COMMAND,(0x9400 | (prt << 5)));
/*Make sure SMIBusy bit cleared before another SMI operation can take place*/
timeout = E6171_PHY_TIMEOUT;
do {
mvEthSwitchRegRead(ethPortNum, MV_E6171_GLOBAL_2_REG_DEV_ADDR,
MV_E6171_SMI_PHY_COMMAND,&reg);
if(timeout-- == 0) {
mvOsPrintf("mvEthPhyRegRead: SMI busy timeout\n");
return;
}
} while (reg & E6171_PHY_SMI_BUSY_MASK);
}
}
mvEthSwitchRegWrite(ethPortNum, MV_E6161_PORTS_OFFSET + cpuPort, 0x4, 0x7f);
/* Init LEDs on RD-6282 */
/* Move all LEDs to special */
mvEthSwitchRegWrite(ethPortNum, MV_E6161_PORTS_OFFSET, 0x16, (BIT15|0x67));
mvEthSwitchRegWrite(ethPortNum, MV_E6161_PORTS_OFFSET, 0x16, (BIT15|BIT12|0x32));
/* Port 0 LED special activity link */
mvEthSwitchRegWrite(ethPortNum, MV_E6161_PORTS_OFFSET, 0x16, (BIT15|BIT14|BIT13|BIT12|BIT0));
/* Port 1 LED special activity link */
mvEthSwitchRegWrite(ethPortNum, MV_E6161_PORTS_OFFSET+1, 0x16, (BIT15|BIT14|BIT13|BIT12|BIT1));
/* Port 2 LED special activity link */
mvEthSwitchRegWrite(ethPortNum, MV_E6161_PORTS_OFFSET+2, 0x16, (BIT15|BIT14|BIT13|BIT12|BIT2));
/* Port 3 LED special activity link */
mvEthSwitchRegWrite(ethPortNum, MV_E6161_PORTS_OFFSET+3, 0x16, (BIT15|BIT14|BIT13|BIT12|BIT3));
#ifdef RD_88F6710
mvEthSwitchRegWrite(ethPortNum, MV_E6161_PORTS_OFFSET, 0x16, 0xf00f);
#endif
}
static void switchVlanInit(MV_U32 ethPortNum, MV_U32 switchCpuPort, MV_U32 switchMaxPortsNum,
MV_U32 switchPortsOffset, MV_U32 switchEnabledPortsMask)
{
MV_U32 port;
MV_U16 reg;
/*enable only appropriate ports to forwarding mode - and disable the others*/
for(port=0; port < switchMaxPortsNum; port++) {
if ((1 << port)& switchEnabledPortsMask) {
mvEthSwitchRegRead(ethPortNum, MV_SWITCH_PORT_OFFSET(port),
MV_SWITCH_PORT_CONTROL_REG,&reg);
reg |= 0x3;
mvEthSwitchRegWrite(ethPortNum, MV_SWITCH_PORT_OFFSET(port),
MV_SWITCH_PORT_CONTROL_REG,reg);
} else {
/* Disable port */
mvEthSwitchRegRead(ethPortNum, MV_SWITCH_PORT_OFFSET(port),
MV_SWITCH_PORT_CONTROL_REG,&reg);
reg &= ~0x3;
mvEthSwitchRegWrite(ethPortNum, MV_SWITCH_PORT_OFFSET(port),
MV_SWITCH_PORT_CONTROL_REG,reg);
}
}
}
void mvEthSwitchRegWrite(MV_U32 ethPortNum, MV_U32 switchPort,
MV_U32 switchReg, MV_U16 data)
{
MV_U32 offset = 0;
if (mvBoardIsInternalSwitchConnected() == MV_FALSE) {
mvOsPrintf("No Switch.\n");
return;
}
offset |= (0x3 << 16); /* [19:16] - APB bridge on XBar port #3 */
/* [15:13] - Switch is target 0 on ABP splitter */
offset |= (switchPort << 7); /* [11:7] - Switch port */
offset |= (switchReg << 2); /* [6:2] - Switch Register */
MV_REG_WRITE(offset, data);
}
void mvEthSwitchRegRead(MV_U32 ethPortNum, MV_U32 switchPort,
MV_U32 switchReg, MV_U16 *data)
{
MV_U32 result, reg = 0;
if (mvBoardIsInternalSwitchConnected() == MV_FALSE) {
mvOsPrintf("No Switch.\n");
return;
}
reg |= (0x3 << 16); /* [19:16] - APB bridge on XBar port #3 */
/* [15:13] - Switch is target 0 on ABP splitter */
reg |= (switchPort << 7); /* [11:7] - Switch port */
reg |= (switchReg << 2); /* [6:2] - Switch Register */
result = MV_REG_READ(reg);
*data = result;
}
void mvEthSwitchPhyRegWrite(MV_U32 ethPortNum, MV_U16 prt,
MV_U16 regOffs, MV_U16 data)
{
MV_U16 reg;
volatile MV_U32 timeout;
/*Make sure SMIBusy bit cleared before another SMI operation can take place*/
timeout = MV_SW_PHY_TIMEOUT;
do {
mvEthSwitchRegRead(ethPortNum, MV_SW_GLOBAL_2_REG_DEV_ADDR, MV_SW_SMI_PHY_COMMAND, &reg);
if (timeout-- == 0)
{
mvOsPrintf("mvEthPhyRegRead: SMI busy timeout\n");
return;
}
} while (reg & MV_SW_PHY_SMI_BUSY_MASK);
mvEthSwitchRegWrite(ethPortNum, MV_SW_GLOBAL_2_REG_DEV_ADDR, MV_SW_SMI_PHY_DATA, data);
mvEthSwitchRegWrite(ethPortNum, MV_SW_GLOBAL_2_REG_DEV_ADDR,
MV_SW_SMI_PHY_COMMAND,(0x9400 | (prt << 5) | regOffs));
/*Make sure SMIBusy bit cleared before another SMI operation can take place*/
timeout = MV_SW_PHY_TIMEOUT;
do {
mvEthSwitchRegRead(ethPortNum, MV_SW_GLOBAL_2_REG_DEV_ADDR, MV_SW_SMI_PHY_COMMAND, &reg);
if(timeout-- == 0) {
mvOsPrintf("mvEthPhyRegRead: SMI busy timeout\n");
return;
}
} while (reg & MV_SW_PHY_SMI_BUSY_MASK);
}
void mvEthSwitchPhyRegRead(MV_U32 ethPortNum, MV_U16 prt,
MV_U16 regOffs, MV_U16 *data)
{
MV_U16 reg;
volatile MV_U32 timeout;
/*Make sure SMIBusy bit cleared before another SMI operation can take place*/
timeout = MV_SW_PHY_TIMEOUT;
do {
mvEthSwitchRegRead(ethPortNum, MV_SW_GLOBAL_2_REG_DEV_ADDR, MV_SW_SMI_PHY_COMMAND, &reg);
if(timeout-- == 0)
{
mvOsPrintf("mvEthPhyRegRead: SMI busy timeout\n");
return;
}
} while (reg & MV_SW_PHY_SMI_BUSY_MASK);
mvEthSwitchRegWrite(ethPortNum, MV_SW_GLOBAL_2_REG_DEV_ADDR,
MV_SW_SMI_PHY_COMMAND,(0x9800 | (prt << 5) | regOffs));
/*Make sure SMIBusy bit cleared before another SMI operation can take place*/
timeout = MV_SW_PHY_TIMEOUT;
do {
mvEthSwitchRegRead(ethPortNum, MV_SW_GLOBAL_2_REG_DEV_ADDR, MV_SW_SMI_PHY_COMMAND, &reg);
if(timeout-- == 0)
{
mvOsPrintf("mvEthPhyRegRead: SMI busy timeout\n");
return;
}
} while (reg & MV_SW_PHY_SMI_BUSY_MASK);
mvEthSwitchRegRead(ethPortNum, MV_SW_GLOBAL_2_REG_DEV_ADDR, MV_SW_SMI_PHY_DATA, data);
}