mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 08:31:55 +00:00
Merge branch 'net-pcs-altera-tse-simplify-and-clean-up-the-driver'
Maxime Chevallier says: ==================== net: pcs: altera-tse: simplify and clean-up the driver This small series does a bit of code cleanup in the altera TSE pcs driver, removing unused register definitions, handling 1000BaseX speed configuration correctly according to the datasheet, and making use of proper poll_timeout helpers. No functional change is introduced. ==================== Link: https://lore.kernel.org/r/20221125131801.64234-1-maxime.chevallier@bootlin.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
commit
b2d7b6e9e4
@ -12,22 +12,13 @@
|
||||
|
||||
/* SGMII PCS register addresses
|
||||
*/
|
||||
#define SGMII_PCS_SCRATCH 0x10
|
||||
#define SGMII_PCS_REV 0x11
|
||||
#define SGMII_PCS_LINK_TIMER_0 0x12
|
||||
#define SGMII_PCS_LINK_TIMER_REG(x) (0x12 + (x))
|
||||
#define SGMII_PCS_LINK_TIMER_1 0x13
|
||||
#define SGMII_PCS_IF_MODE 0x14
|
||||
#define PCS_IF_MODE_SGMII_ENA BIT(0)
|
||||
#define PCS_IF_MODE_USE_SGMII_AN BIT(1)
|
||||
#define PCS_IF_MODE_SGMI_SPEED_MASK GENMASK(3, 2)
|
||||
#define PCS_IF_MODE_SGMI_SPEED_10 (0 << 2)
|
||||
#define PCS_IF_MODE_SGMI_SPEED_100 (1 << 2)
|
||||
#define PCS_IF_MODE_SGMI_SPEED_1000 (2 << 2)
|
||||
#define PCS_IF_MODE_SGMI_HALF_DUPLEX BIT(4)
|
||||
#define PCS_IF_MODE_SGMI_PHY_AN BIT(5)
|
||||
#define SGMII_PCS_DIS_READ_TO 0x15
|
||||
#define SGMII_PCS_READ_TO 0x16
|
||||
#define SGMII_PCS_SW_RESET_TIMEOUT 100 /* usecs */
|
||||
|
||||
struct altera_tse_pcs {
|
||||
@ -60,7 +51,6 @@ static void tse_pcs_write(struct altera_tse_pcs *tse_pcs, int regnum,
|
||||
|
||||
static int tse_pcs_reset(struct altera_tse_pcs *tse_pcs)
|
||||
{
|
||||
int i = 0;
|
||||
u16 bmcr;
|
||||
|
||||
/* Reset PCS block */
|
||||
@ -68,13 +58,9 @@ static int tse_pcs_reset(struct altera_tse_pcs *tse_pcs)
|
||||
bmcr |= BMCR_RESET;
|
||||
tse_pcs_write(tse_pcs, MII_BMCR, bmcr);
|
||||
|
||||
for (i = 0; i < SGMII_PCS_SW_RESET_TIMEOUT; i++) {
|
||||
if (!(tse_pcs_read(tse_pcs, MII_BMCR) & BMCR_RESET))
|
||||
return 0;
|
||||
udelay(1);
|
||||
}
|
||||
|
||||
return -ETIMEDOUT;
|
||||
return read_poll_timeout(tse_pcs_read, bmcr, (bmcr & BMCR_RESET),
|
||||
10, SGMII_PCS_SW_RESET_TIMEOUT, 1,
|
||||
tse_pcs, MII_BMCR);
|
||||
}
|
||||
|
||||
static int alt_tse_pcs_validate(struct phylink_pcs *pcs,
|
||||
@ -107,7 +93,6 @@ static int alt_tse_pcs_config(struct phylink_pcs *pcs, unsigned int mode,
|
||||
if_mode |= PCS_IF_MODE_USE_SGMII_AN | PCS_IF_MODE_SGMII_ENA;
|
||||
} else if (interface == PHY_INTERFACE_MODE_1000BASEX) {
|
||||
if_mode &= ~(PCS_IF_MODE_USE_SGMII_AN | PCS_IF_MODE_SGMII_ENA);
|
||||
if_mode |= PCS_IF_MODE_SGMI_SPEED_1000;
|
||||
}
|
||||
|
||||
ctrl |= (BMCR_SPEED1000 | BMCR_FULLDPLX | BMCR_ANENABLE);
|
||||
|
Loading…
Reference in New Issue
Block a user