cregit-Linux how code gets into the kernel

Release 4.16 drivers/net/dsa/mv88e6xxx/serdes.c

/*
 * Marvell 88E6xxx SERDES manipulation, via SMI bus
 *
 * Copyright (c) 2008 Marvell Semiconductor
 *
 * Copyright (c) 2017 Andrew Lunn <andrew@lunn.ch>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 */

#include <linux/mii.h>

#include "chip.h"
#include "global2.h"
#include "phy.h"
#include "port.h"
#include "serdes.h"


static int mv88e6352_serdes_read(struct mv88e6xxx_chip *chip, int reg, u16 *val) { return mv88e6xxx_phy_page_read(chip, MV88E6352_ADDR_SERDES, MV88E6352_SERDES_PAGE_FIBER, reg, val); }

Contributors

PersonTokensPropCommitsCommitProp
Andrew Lunn32100.00%1100.00%
Total32100.00%1100.00%


static int mv88e6352_serdes_write(struct mv88e6xxx_chip *chip, int reg, u16 val) { return mv88e6xxx_phy_page_write(chip, MV88E6352_ADDR_SERDES, MV88E6352_SERDES_PAGE_FIBER, reg, val); }

Contributors

PersonTokensPropCommitsCommitProp
Andrew Lunn31100.00%1100.00%
Total31100.00%1100.00%


static int mv88e6352_serdes_power_set(struct mv88e6xxx_chip *chip, bool on) { u16 val, new_val; int err; err = mv88e6352_serdes_read(chip, MII_BMCR, &val); if (err) return err; if (on) new_val = val & ~BMCR_PDOWN; else new_val = val | BMCR_PDOWN; if (val != new_val) err = mv88e6352_serdes_write(chip, MII_BMCR, new_val); return err; }

Contributors

PersonTokensPropCommitsCommitProp
Andrew Lunn79100.00%1100.00%
Total79100.00%1100.00%


int mv88e6352_serdes_power(struct mv88e6xxx_chip *chip, int port, bool on) { int err; u8 cmode; err = mv88e6xxx_port_get_cmode(chip, port, &cmode); if (err) return err; if ((cmode == MV88E6XXX_PORT_STS_CMODE_100BASE_X) || (cmode == MV88E6XXX_PORT_STS_CMODE_1000BASE_X) || (cmode == MV88E6XXX_PORT_STS_CMODE_SGMII)) { err = mv88e6352_serdes_power_set(chip, on); if (err < 0) return err; } return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Andrew Lunn8196.43%150.00%
Vivien Didelot33.57%150.00%
Total84100.00%2100.00%

/* Set the power on/off for 10GBASE-R and 10GBASE-X4/X2 */
static int mv88e6390_serdes_10g(struct mv88e6xxx_chip *chip, int addr, bool on) { u16 val, new_val; int reg_c45; int err; reg_c45 = MII_ADDR_C45 | MV88E6390_SERDES_DEVICE | MV88E6390_PCS_CONTROL_1; err = mv88e6xxx_phy_read(chip, addr, reg_c45, &val); if (err) return err; if (on) new_val = val & ~(MV88E6390_PCS_CONTROL_1_RESET | MV88E6390_PCS_CONTROL_1_LOOPBACK | MV88E6390_PCS_CONTROL_1_PDOWN); else new_val = val | MV88E6390_PCS_CONTROL_1_PDOWN; if (val != new_val) err = mv88e6xxx_phy_write(chip, addr, reg_c45, new_val); return err; }

Contributors

PersonTokensPropCommitsCommitProp
Andrew Lunn103100.00%1100.00%
Total103100.00%1100.00%

/* Set the power on/off for 10GBASE-R and 10GBASE-X4/X2 */
static int mv88e6390_serdes_sgmii(struct mv88e6xxx_chip *chip, int addr, bool on) { u16 val, new_val; int reg_c45; int err; reg_c45 = MII_ADDR_C45 | MV88E6390_SERDES_DEVICE | MV88E6390_SGMII_CONTROL; err = mv88e6xxx_phy_read(chip, addr, reg_c45, &val); if (err) return err; if (on) new_val = val & ~(MV88E6390_SGMII_CONTROL_RESET | MV88E6390_SGMII_CONTROL_LOOPBACK | MV88E6390_SGMII_CONTROL_PDOWN); else new_val = val | MV88E6390_SGMII_CONTROL_PDOWN; if (val != new_val) err = mv88e6xxx_phy_write(chip, addr, reg_c45, new_val); return err; }

Contributors

PersonTokensPropCommitsCommitProp
Andrew Lunn103100.00%1100.00%
Total103100.00%1100.00%


static int mv88e6390_serdes_lower(struct mv88e6xxx_chip *chip, u8 cmode, int port_donor, int lane, bool rxaui, bool on) { int err; u8 cmode_donor; err = mv88e6xxx_port_get_cmode(chip, port_donor, &cmode_donor); if (err) return err; switch (cmode_donor) { case MV88E6XXX_PORT_STS_CMODE_RXAUI: if (!rxaui) break; /* Fall through */ case MV88E6XXX_PORT_STS_CMODE_1000BASE_X: case MV88E6XXX_PORT_STS_CMODE_SGMII: case MV88E6XXX_PORT_STS_CMODE_2500BASEX: if (cmode == MV88E6XXX_PORT_STS_CMODE_1000BASE_X || cmode == MV88E6XXX_PORT_STS_CMODE_SGMII) return mv88e6390_serdes_sgmii(chip, lane, on); } return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Andrew Lunn9393.94%150.00%
Vivien Didelot66.06%150.00%
Total99100.00%2100.00%


static int mv88e6390_serdes_port9(struct mv88e6xxx_chip *chip, u8 cmode, bool on) { switch (cmode) { case MV88E6XXX_PORT_STS_CMODE_1000BASE_X: case MV88E6XXX_PORT_STS_CMODE_SGMII: return mv88e6390_serdes_sgmii(chip, MV88E6390_PORT9_LANE0, on); case MV88E6XXX_PORT_STS_CMODE_XAUI: case MV88E6XXX_PORT_STS_CMODE_RXAUI: case MV88E6XXX_PORT_STS_CMODE_2500BASEX: return mv88e6390_serdes_10g(chip, MV88E6390_PORT9_LANE0, on); } return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Andrew Lunn5691.80%150.00%
Vivien Didelot58.20%150.00%
Total61100.00%2100.00%


static int mv88e6390_serdes_port10(struct mv88e6xxx_chip *chip, u8 cmode, bool on) { switch (cmode) { case MV88E6XXX_PORT_STS_CMODE_SGMII: return mv88e6390_serdes_sgmii(chip, MV88E6390_PORT10_LANE0, on); case MV88E6XXX_PORT_STS_CMODE_XAUI: case MV88E6XXX_PORT_STS_CMODE_RXAUI: case MV88E6XXX_PORT_STS_CMODE_1000BASE_X: case MV88E6XXX_PORT_STS_CMODE_2500BASEX: return mv88e6390_serdes_10g(chip, MV88E6390_PORT10_LANE0, on); } return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Andrew Lunn5691.80%150.00%
Vivien Didelot58.20%150.00%
Total61100.00%2100.00%


int mv88e6390_serdes_power(struct mv88e6xxx_chip *chip, int port, bool on) { u8 cmode; int err; err = mv88e6xxx_port_get_cmode(chip, port, &cmode); if (err) return err; switch (port) { case 2: return mv88e6390_serdes_lower(chip, cmode, 9, MV88E6390_PORT9_LANE1, false, on); case 3: return mv88e6390_serdes_lower(chip, cmode, 9, MV88E6390_PORT9_LANE2, true, on); case 4: return mv88e6390_serdes_lower(chip, cmode, 9, MV88E6390_PORT9_LANE3, true, on); case 5: return mv88e6390_serdes_lower(chip, cmode, 10, MV88E6390_PORT10_LANE1, false, on); case 6: return mv88e6390_serdes_lower(chip, cmode, 10, MV88E6390_PORT10_LANE2, true, on); case 7: return mv88e6390_serdes_lower(chip, cmode, 10, MV88E6390_PORT10_LANE3, true, on); case 9: return mv88e6390_serdes_port9(chip, cmode, on); case 10: return mv88e6390_serdes_port10(chip, cmode, on); } return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Andrew Lunn18999.47%150.00%
Dan Carpenter10.53%150.00%
Total190100.00%2100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Andrew Lunn84297.45%240.00%
Vivien Didelot212.43%240.00%
Dan Carpenter10.12%120.00%
Total864100.00%5100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.