meson-gxl.c 6.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 * Amlogic Meson GXL Internal PHY Driver
 *
 * Copyright (C) 2015 Amlogic, Inc. All rights reserved.
 * Copyright (C) 2016 BayLibre, SAS. All rights reserved.
 * Author: Neil Armstrong <narmstrong@baylibre.com>
 *
 * 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.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 *
 */
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/mii.h>
#include <linux/ethtool.h>
#include <linux/phy.h>
#include <linux/netdevice.h>
25
#include <linux/bitfield.h>
26

27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
#define TSTCNTL		20
#define  TSTCNTL_READ		BIT(15)
#define  TSTCNTL_WRITE		BIT(14)
#define  TSTCNTL_REG_BANK_SEL	GENMASK(12, 11)
#define  TSTCNTL_TEST_MODE	BIT(10)
#define  TSTCNTL_READ_ADDRESS	GENMASK(9, 5)
#define  TSTCNTL_WRITE_ADDRESS	GENMASK(4, 0)
#define TSTREAD1	21
#define TSTWRITE	23

#define BANK_ANALOG_DSP		0
#define BANK_WOL		1
#define BANK_BIST		3

/* Analog/DSP Registers */
#define A6_CONFIG_REG	0x17

/* WOL Registers */
#define LPI_STATUS	0xc
#define  LPI_STATUS_RSV12	BIT(12)

/* BIST Registers */
#define FR_PLL_CONTROL	0x1b
#define FR_PLL_DIV0	0x1c
#define FR_PLL_DIV1	0x1d

53 54
static int meson_gxl_config_init(struct phy_device *phydev)
{
55 56
	int ret;

57
	/* Enable Analog and DSP register Bank access by */
58
	ret = phy_write(phydev, TSTCNTL, 0);
59 60
	if (ret)
		return ret;
61
	ret = phy_write(phydev, TSTCNTL, TSTCNTL_TEST_MODE);
62 63
	if (ret)
		return ret;
64
	ret = phy_write(phydev, TSTCNTL, 0);
65 66
	if (ret)
		return ret;
67
	ret = phy_write(phydev, TSTCNTL, TSTCNTL_TEST_MODE);
68 69
	if (ret)
		return ret;
70

71 72
	/* Write CONFIG_A6*/
	ret = phy_write(phydev, TSTWRITE, 0x8e0d);
73 74
	if (ret)
		return ret;
75 76 77 78 79
	ret = phy_write(phydev, TSTCNTL,
			TSTCNTL_WRITE
			| FIELD_PREP(TSTCNTL_REG_BANK_SEL, BANK_ANALOG_DSP)
			| TSTCNTL_TEST_MODE
			| FIELD_PREP(TSTCNTL_WRITE_ADDRESS, A6_CONFIG_REG));
80 81
	if (ret)
		return ret;
82 83

	/* Enable fractional PLL */
84
	ret = phy_write(phydev, TSTWRITE, 0x0005);
85 86
	if (ret)
		return ret;
87 88 89 90 91
	ret = phy_write(phydev, TSTCNTL,
			TSTCNTL_WRITE
			| FIELD_PREP(TSTCNTL_REG_BANK_SEL, BANK_BIST)
			| TSTCNTL_TEST_MODE
			| FIELD_PREP(TSTCNTL_WRITE_ADDRESS, FR_PLL_CONTROL));
92 93
	if (ret)
		return ret;
94 95

	/* Program fraction FR_PLL_DIV1 */
96
	ret = phy_write(phydev, TSTWRITE, 0x029a);
97 98
	if (ret)
		return ret;
99 100 101 102 103
	ret = phy_write(phydev, TSTCNTL,
			TSTCNTL_WRITE
			| FIELD_PREP(TSTCNTL_REG_BANK_SEL, BANK_BIST)
			| TSTCNTL_TEST_MODE
			| FIELD_PREP(TSTCNTL_WRITE_ADDRESS, FR_PLL_DIV1));
104 105
	if (ret)
		return ret;
106 107

	/* Program fraction FR_PLL_DIV1 */
108
	ret = phy_write(phydev, TSTWRITE, 0xaaaa);
109 110
	if (ret)
		return ret;
111 112 113 114 115
	ret = phy_write(phydev, TSTCNTL,
			TSTCNTL_WRITE
			| FIELD_PREP(TSTCNTL_REG_BANK_SEL, BANK_BIST)
			| TSTCNTL_TEST_MODE
			| FIELD_PREP(TSTCNTL_WRITE_ADDRESS, FR_PLL_DIV0));
116 117
	if (ret)
		return ret;
118 119 120 121

	return 0;
}

122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
/* This function is provided to cope with the possible failures of this phy
 * during aneg process. When aneg fails, the PHY reports that aneg is done
 * but the value found in MII_LPA is wrong:
 *  - Early failures: MII_LPA is just 0x0001. if MII_EXPANSION reports that
 *    the link partner (LP) supports aneg but the LP never acked our base
 *    code word, it is likely that we never sent it to begin with.
 *  - Late failures: MII_LPA is filled with a value which seems to make sense
 *    but it actually is not what the LP is advertising. It seems that we
 *    can detect this using a magic bit in the WOL bank (reg 12 - bit 12).
 *    If this particular bit is not set when aneg is reported being done,
 *    it means MII_LPA is likely to be wrong.
 *
 * In both case, forcing a restart of the aneg process solve the problem.
 * When this failure happens, the first retry is usually successful but,
 * in some cases, it may take up to 6 retries to get a decent result
 */
138
static int meson_gxl_read_status(struct phy_device *phydev)
139 140 141 142 143 144 145 146 147 148 149
{
	int ret, wol, lpa, exp;

	if (phydev->autoneg == AUTONEG_ENABLE) {
		ret = genphy_aneg_done(phydev);
		if (ret < 0)
			return ret;
		else if (!ret)
			goto read_status_continue;

		/* Need to access WOL bank, make sure the access is open */
150
		ret = phy_write(phydev, TSTCNTL, 0);
151 152
		if (ret)
			return ret;
153
		ret = phy_write(phydev, TSTCNTL, TSTCNTL_TEST_MODE);
154 155
		if (ret)
			return ret;
156
		ret = phy_write(phydev, TSTCNTL, 0);
157 158
		if (ret)
			return ret;
159
		ret = phy_write(phydev, TSTCNTL, TSTCNTL_TEST_MODE);
160 161 162 163
		if (ret)
			return ret;

		/* Request LPI_STATUS WOL register */
164 165 166 167 168
		ret = phy_write(phydev, TSTCNTL,
				TSTCNTL_READ
				| FIELD_PREP(TSTCNTL_REG_BANK_SEL, BANK_WOL)
				| TSTCNTL_TEST_MODE
				| FIELD_PREP(TSTCNTL_READ_ADDRESS, LPI_STATUS));
169 170 171 172
		if (ret)
			return ret;

		/* Read LPI_STATUS value */
173
		wol = phy_read(phydev, TSTREAD1);
174 175 176 177 178 179 180 181 182 183 184
		if (wol < 0)
			return wol;

		lpa = phy_read(phydev, MII_LPA);
		if (lpa < 0)
			return lpa;

		exp = phy_read(phydev, MII_EXPANSION);
		if (exp < 0)
			return exp;

185
		if (!(wol & LPI_STATUS_RSV12) ||
186 187 188 189 190 191 192 193 194 195 196
		    ((exp & EXPANSION_NWAY) && !(lpa & LPA_LPACK))) {
			/* Looks like aneg failed after all */
			phydev_dbg(phydev, "LPA corruption - aneg restart\n");
			return genphy_restart_aneg(phydev);
		}
	}

read_status_continue:
	return genphy_read_status(phydev);
}

197 198 199 200 201 202 203 204 205
static struct phy_driver meson_gxl_phy[] = {
	{
		.phy_id		= 0x01814400,
		.phy_id_mask	= 0xfffffff0,
		.name		= "Meson GXL Internal PHY",
		.features	= PHY_BASIC_FEATURES,
		.flags		= PHY_IS_INTERNAL,
		.config_init	= meson_gxl_config_init,
		.aneg_done      = genphy_aneg_done,
206
		.read_status	= meson_gxl_read_status,
207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
		.suspend        = genphy_suspend,
		.resume         = genphy_resume,
	},
};

static struct mdio_device_id __maybe_unused meson_gxl_tbl[] = {
	{ 0x01814400, 0xfffffff0 },
	{ }
};

module_phy_driver(meson_gxl_phy);

MODULE_DEVICE_TABLE(mdio, meson_gxl_tbl);

MODULE_DESCRIPTION("Amlogic Meson GXL Internal PHY driver");
MODULE_AUTHOR("Baoqi wang");
MODULE_AUTHOR("Neil Armstrong <narmstrong@baylibre.com>");
MODULE_LICENSE("GPL");