Linux Audio

Check our new training course

Loading...
v4.6
 
  1/*
  2 * Driver for Vitesse PHYs
  3 *
  4 * Author: Kriston Carson
  5 *
  6 * Copyright (c) 2005, 2009, 2011 Freescale Semiconductor, Inc.
  7 *
  8 * This program is free software; you can redistribute  it and/or modify it
  9 * under  the terms of  the GNU General  Public License as published by the
 10 * Free Software Foundation;  either version 2 of the  License, or (at your
 11 * option) any later version.
 12 *
 13 */
 14
 15#include <linux/kernel.h>
 16#include <linux/module.h>
 17#include <linux/mii.h>
 18#include <linux/ethtool.h>
 19#include <linux/phy.h>
 20
 21/* Vitesse Extended Page Magic Register(s) */
 22#define MII_VSC82X4_EXT_PAGE_16E	0x10
 23#define MII_VSC82X4_EXT_PAGE_17E	0x11
 24#define MII_VSC82X4_EXT_PAGE_18E	0x12
 25
 26/* Vitesse Extended Control Register 1 */
 27#define MII_VSC8244_EXT_CON1           0x17
 28#define MII_VSC8244_EXTCON1_INIT       0x0000
 29#define MII_VSC8244_EXTCON1_TX_SKEW_MASK	0x0c00
 30#define MII_VSC8244_EXTCON1_RX_SKEW_MASK	0x0300
 31#define MII_VSC8244_EXTCON1_TX_SKEW	0x0800
 32#define MII_VSC8244_EXTCON1_RX_SKEW	0x0200
 33
 34/* Vitesse Interrupt Mask Register */
 35#define MII_VSC8244_IMASK		0x19
 36#define MII_VSC8244_IMASK_IEN		0x8000
 37#define MII_VSC8244_IMASK_SPEED		0x4000
 38#define MII_VSC8244_IMASK_LINK		0x2000
 39#define MII_VSC8244_IMASK_DUPLEX	0x1000
 40#define MII_VSC8244_IMASK_MASK		0xf000
 41
 42#define MII_VSC8221_IMASK_MASK		0xa000
 43
 44/* Vitesse Interrupt Status Register */
 45#define MII_VSC8244_ISTAT		0x1a
 46#define MII_VSC8244_ISTAT_STATUS	0x8000
 47#define MII_VSC8244_ISTAT_SPEED		0x4000
 48#define MII_VSC8244_ISTAT_LINK		0x2000
 49#define MII_VSC8244_ISTAT_DUPLEX	0x1000
 
 
 
 
 
 50
 51/* Vitesse Auxiliary Control/Status Register */
 52#define MII_VSC8244_AUX_CONSTAT		0x1c
 53#define MII_VSC8244_AUXCONSTAT_INIT	0x0000
 54#define MII_VSC8244_AUXCONSTAT_DUPLEX	0x0020
 55#define MII_VSC8244_AUXCONSTAT_SPEED	0x0018
 56#define MII_VSC8244_AUXCONSTAT_GBIT	0x0010
 57#define MII_VSC8244_AUXCONSTAT_100	0x0008
 58
 59#define MII_VSC8221_AUXCONSTAT_INIT	0x0004 /* need to set this bit? */
 60#define MII_VSC8221_AUXCONSTAT_RESERVED	0x0004
 61
 62/* Vitesse Extended Page Access Register */
 63#define MII_VSC82X4_EXT_PAGE_ACCESS	0x1f
 64
 
 
 
 
 65#define PHY_ID_VSC8234			0x000fc620
 66#define PHY_ID_VSC8244			0x000fc6c0
 67#define PHY_ID_VSC8514			0x00070670
 68#define PHY_ID_VSC8574			0x000704a0
 69#define PHY_ID_VSC8601			0x00070420
 
 
 
 
 70#define PHY_ID_VSC8662			0x00070660
 71#define PHY_ID_VSC8221			0x000fc550
 72#define PHY_ID_VSC8211			0x000fc4b0
 73
 74MODULE_DESCRIPTION("Vitesse PHY driver");
 75MODULE_AUTHOR("Kriston Carson");
 76MODULE_LICENSE("GPL");
 77
 78static int vsc824x_add_skew(struct phy_device *phydev)
 79{
 80	int err;
 81	int extcon;
 82
 83	extcon = phy_read(phydev, MII_VSC8244_EXT_CON1);
 84
 85	if (extcon < 0)
 86		return extcon;
 87
 88	extcon &= ~(MII_VSC8244_EXTCON1_TX_SKEW_MASK |
 89			MII_VSC8244_EXTCON1_RX_SKEW_MASK);
 90
 91	extcon |= (MII_VSC8244_EXTCON1_TX_SKEW |
 92			MII_VSC8244_EXTCON1_RX_SKEW);
 93
 94	err = phy_write(phydev, MII_VSC8244_EXT_CON1, extcon);
 95
 96	return err;
 97}
 98
 99static int vsc824x_config_init(struct phy_device *phydev)
100{
101	int err;
102
103	err = phy_write(phydev, MII_VSC8244_AUX_CONSTAT,
104			MII_VSC8244_AUXCONSTAT_INIT);
105	if (err < 0)
106		return err;
107
108	if (phydev->interface == PHY_INTERFACE_MODE_RGMII_ID)
109		err = vsc824x_add_skew(phydev);
110
111	return err;
112}
113
114static int vsc824x_ack_interrupt(struct phy_device *phydev)
 
 
 
 
 
 
 
115{
116	int err = 0;
 
 
 
 
 
 
 
 
 
 
 
 
117
118	/* Don't bother to ACK the interrupts if interrupts
119	 * are disabled.  The 824x cannot clear the interrupts
120	 * if they are disabled.
 
 
 
 
121	 */
122	if (phydev->interrupts == PHY_INTERRUPT_ENABLED)
123		err = phy_read(phydev, MII_VSC8244_ISTAT);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
124
125	return (err < 0) ? err : 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
126}
127
128static int vsc82xx_config_intr(struct phy_device *phydev)
129{
130	int err;
131
132	if (phydev->interrupts == PHY_INTERRUPT_ENABLED)
 
 
 
133		err = phy_write(phydev, MII_VSC8244_IMASK,
134			(phydev->drv->phy_id == PHY_ID_VSC8234 ||
135			 phydev->drv->phy_id == PHY_ID_VSC8244 ||
136			 phydev->drv->phy_id == PHY_ID_VSC8514 ||
137			 phydev->drv->phy_id == PHY_ID_VSC8574 ||
138			 phydev->drv->phy_id == PHY_ID_VSC8601) ?
139				MII_VSC8244_IMASK_MASK :
140				MII_VSC8221_IMASK_MASK);
141	else {
142		/* The Vitesse PHY cannot clear the interrupt
143		 * once it has disabled them, so we clear them first
144		 */
145		err = phy_read(phydev, MII_VSC8244_ISTAT);
146
147		if (err < 0)
148			return err;
149
150		err = phy_write(phydev, MII_VSC8244_IMASK, 0);
151	}
152
153	return err;
154}
155
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
156static int vsc8221_config_init(struct phy_device *phydev)
157{
158	int err;
159
160	err = phy_write(phydev, MII_VSC8244_AUX_CONSTAT,
161			MII_VSC8221_AUXCONSTAT_INIT);
162	return err;
163
164	/* Perhaps we should set EXT_CON1 based on the interface?
165	 * Options are 802.3Z SerDes or SGMII
166	 */
167}
168
169/* vsc82x4_config_autocross_enable - Enable auto MDI/MDI-X for forced links
170 * @phydev: target phy_device struct
171 *
172 * Enable auto MDI/MDI-X when in 10/100 forced link speeds by writing
173 * special values in the VSC8234/VSC8244 extended reserved registers
174 */
175static int vsc82x4_config_autocross_enable(struct phy_device *phydev)
176{
177	int ret;
178
179	if (phydev->autoneg == AUTONEG_ENABLE || phydev->speed > SPEED_100)
180		return 0;
181
182	/* map extended registers set 0x10 - 0x1e */
183	ret = phy_write(phydev, MII_VSC82X4_EXT_PAGE_ACCESS, 0x52b5);
184	if (ret >= 0)
185		ret = phy_write(phydev, MII_VSC82X4_EXT_PAGE_18E, 0x0012);
186	if (ret >= 0)
187		ret = phy_write(phydev, MII_VSC82X4_EXT_PAGE_17E, 0x2803);
188	if (ret >= 0)
189		ret = phy_write(phydev, MII_VSC82X4_EXT_PAGE_16E, 0x87fa);
190	/* map standard registers set 0x10 - 0x1e */
191	if (ret >= 0)
192		ret = phy_write(phydev, MII_VSC82X4_EXT_PAGE_ACCESS, 0x0000);
193	else
194		phy_write(phydev, MII_VSC82X4_EXT_PAGE_ACCESS, 0x0000);
195
196	return ret;
197}
198
199/* vsc82x4_config_aneg - restart auto-negotiation or write BMCR
200 * @phydev: target phy_device struct
201 *
202 * Description: If auto-negotiation is enabled, we configure the
203 *   advertising, and then restart auto-negotiation.  If it is not
204 *   enabled, then we write the BMCR and also start the auto
205 *   MDI/MDI-X feature
206 */
207static int vsc82x4_config_aneg(struct phy_device *phydev)
208{
209	int ret;
210
211	/* Enable auto MDI/MDI-X when in 10/100 forced link speeds by
212	 * writing special values in the VSC8234 extended reserved registers
213	 */
214	if (phydev->autoneg != AUTONEG_ENABLE && phydev->speed <= SPEED_100) {
215		ret = genphy_setup_forced(phydev);
216
217		if (ret < 0) /* error */
218			return ret;
219
220		return vsc82x4_config_autocross_enable(phydev);
221	}
222
223	return genphy_config_aneg(phydev);
224}
225
226/* Vitesse 82xx */
227static struct phy_driver vsc82xx_driver[] = {
228{
229	.phy_id         = PHY_ID_VSC8234,
230	.name           = "Vitesse VSC8234",
231	.phy_id_mask    = 0x000ffff0,
232	.features       = PHY_GBIT_FEATURES,
233	.flags          = PHY_HAS_INTERRUPT,
234	.config_init    = &vsc824x_config_init,
235	.config_aneg    = &vsc82x4_config_aneg,
236	.read_status    = &genphy_read_status,
237	.ack_interrupt  = &vsc824x_ack_interrupt,
238	.config_intr    = &vsc82xx_config_intr,
 
239}, {
240	.phy_id		= PHY_ID_VSC8244,
241	.name		= "Vitesse VSC8244",
242	.phy_id_mask	= 0x000fffc0,
243	.features	= PHY_GBIT_FEATURES,
244	.flags		= PHY_HAS_INTERRUPT,
245	.config_init	= &vsc824x_config_init,
246	.config_aneg	= &vsc82x4_config_aneg,
247	.read_status	= &genphy_read_status,
248	.ack_interrupt	= &vsc824x_ack_interrupt,
249	.config_intr	= &vsc82xx_config_intr,
250}, {
251	.phy_id		= PHY_ID_VSC8514,
252	.name		= "Vitesse VSC8514",
253	.phy_id_mask	= 0x000ffff0,
254	.features	= PHY_GBIT_FEATURES,
255	.flags		= PHY_HAS_INTERRUPT,
256	.config_init	= &vsc824x_config_init,
257	.config_aneg	= &vsc82x4_config_aneg,
258	.read_status	= &genphy_read_status,
259	.ack_interrupt	= &vsc824x_ack_interrupt,
260	.config_intr	= &vsc82xx_config_intr,
 
261}, {
262	.phy_id         = PHY_ID_VSC8574,
263	.name           = "Vitesse VSC8574",
264	.phy_id_mask    = 0x000ffff0,
265	.features       = PHY_GBIT_FEATURES,
266	.flags          = PHY_HAS_INTERRUPT,
267	.config_init    = &vsc824x_config_init,
268	.config_aneg    = &vsc82x4_config_aneg,
269	.read_status    = &genphy_read_status,
270	.ack_interrupt  = &vsc824x_ack_interrupt,
271	.config_intr    = &vsc82xx_config_intr,
 
272}, {
273	.phy_id         = PHY_ID_VSC8601,
274	.name           = "Vitesse VSC8601",
275	.phy_id_mask    = 0x000ffff0,
276	.features       = PHY_GBIT_FEATURES,
277	.flags          = PHY_HAS_INTERRUPT,
278	.config_init    = &genphy_config_init,
279	.config_aneg    = &genphy_config_aneg,
280	.read_status    = &genphy_read_status,
281	.ack_interrupt  = &vsc824x_ack_interrupt,
282	.config_intr    = &vsc82xx_config_intr,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
283}, {
284	.phy_id         = PHY_ID_VSC8662,
285	.name           = "Vitesse VSC8662",
286	.phy_id_mask    = 0x000ffff0,
287	.features       = PHY_GBIT_FEATURES,
288	.flags          = PHY_HAS_INTERRUPT,
289	.config_init    = &vsc824x_config_init,
290	.config_aneg    = &vsc82x4_config_aneg,
291	.read_status    = &genphy_read_status,
292	.ack_interrupt  = &vsc824x_ack_interrupt,
293	.config_intr    = &vsc82xx_config_intr,
 
294}, {
295	/* Vitesse 8221 */
296	.phy_id		= PHY_ID_VSC8221,
297	.phy_id_mask	= 0x000ffff0,
298	.name		= "Vitesse VSC8221",
299	.features	= PHY_GBIT_FEATURES,
300	.flags		= PHY_HAS_INTERRUPT,
301	.config_init	= &vsc8221_config_init,
302	.config_aneg	= &genphy_config_aneg,
303	.read_status	= &genphy_read_status,
304	.ack_interrupt	= &vsc824x_ack_interrupt,
305	.config_intr	= &vsc82xx_config_intr,
 
306}, {
307	/* Vitesse 8211 */
308	.phy_id		= PHY_ID_VSC8211,
309	.phy_id_mask	= 0x000ffff0,
310	.name		= "Vitesse VSC8211",
311	.features	= PHY_GBIT_FEATURES,
312	.flags		= PHY_HAS_INTERRUPT,
313	.config_init	= &vsc8221_config_init,
314	.config_aneg	= &genphy_config_aneg,
315	.read_status	= &genphy_read_status,
316	.ack_interrupt	= &vsc824x_ack_interrupt,
317	.config_intr	= &vsc82xx_config_intr,
 
318} };
319
320module_phy_driver(vsc82xx_driver);
321
322static struct mdio_device_id __maybe_unused vitesse_tbl[] = {
323	{ PHY_ID_VSC8234, 0x000ffff0 },
324	{ PHY_ID_VSC8244, 0x000fffc0 },
325	{ PHY_ID_VSC8514, 0x000ffff0 },
326	{ PHY_ID_VSC8574, 0x000ffff0 },
 
 
 
327	{ PHY_ID_VSC8662, 0x000ffff0 },
328	{ PHY_ID_VSC8221, 0x000ffff0 },
329	{ PHY_ID_VSC8211, 0x000ffff0 },
330	{ }
331};
332
333MODULE_DEVICE_TABLE(mdio, vitesse_tbl);
v6.2
  1// SPDX-License-Identifier: GPL-2.0+
  2/*
  3 * Driver for Vitesse PHYs
  4 *
  5 * Author: Kriston Carson
 
 
 
 
 
 
 
 
  6 */
  7
  8#include <linux/kernel.h>
  9#include <linux/module.h>
 10#include <linux/mii.h>
 11#include <linux/ethtool.h>
 12#include <linux/phy.h>
 13
 14/* Vitesse Extended Page Magic Register(s) */
 15#define MII_VSC82X4_EXT_PAGE_16E	0x10
 16#define MII_VSC82X4_EXT_PAGE_17E	0x11
 17#define MII_VSC82X4_EXT_PAGE_18E	0x12
 18
 19/* Vitesse Extended Control Register 1 */
 20#define MII_VSC8244_EXT_CON1           0x17
 21#define MII_VSC8244_EXTCON1_INIT       0x0000
 22#define MII_VSC8244_EXTCON1_TX_SKEW_MASK	0x0c00
 23#define MII_VSC8244_EXTCON1_RX_SKEW_MASK	0x0300
 24#define MII_VSC8244_EXTCON1_TX_SKEW	0x0800
 25#define MII_VSC8244_EXTCON1_RX_SKEW	0x0200
 26
 27/* Vitesse Interrupt Mask Register */
 28#define MII_VSC8244_IMASK		0x19
 29#define MII_VSC8244_IMASK_IEN		0x8000
 30#define MII_VSC8244_IMASK_SPEED		0x4000
 31#define MII_VSC8244_IMASK_LINK		0x2000
 32#define MII_VSC8244_IMASK_DUPLEX	0x1000
 33#define MII_VSC8244_IMASK_MASK		0xf000
 34
 35#define MII_VSC8221_IMASK_MASK		0xa000
 36
 37/* Vitesse Interrupt Status Register */
 38#define MII_VSC8244_ISTAT		0x1a
 39#define MII_VSC8244_ISTAT_STATUS	0x8000
 40#define MII_VSC8244_ISTAT_SPEED		0x4000
 41#define MII_VSC8244_ISTAT_LINK		0x2000
 42#define MII_VSC8244_ISTAT_DUPLEX	0x1000
 43#define MII_VSC8244_ISTAT_MASK		(MII_VSC8244_ISTAT_SPEED | \
 44					 MII_VSC8244_ISTAT_LINK | \
 45					 MII_VSC8244_ISTAT_DUPLEX)
 46
 47#define MII_VSC8221_ISTAT_MASK		MII_VSC8244_ISTAT_LINK
 48
 49/* Vitesse Auxiliary Control/Status Register */
 50#define MII_VSC8244_AUX_CONSTAT		0x1c
 51#define MII_VSC8244_AUXCONSTAT_INIT	0x0000
 52#define MII_VSC8244_AUXCONSTAT_DUPLEX	0x0020
 53#define MII_VSC8244_AUXCONSTAT_SPEED	0x0018
 54#define MII_VSC8244_AUXCONSTAT_GBIT	0x0010
 55#define MII_VSC8244_AUXCONSTAT_100	0x0008
 56
 57#define MII_VSC8221_AUXCONSTAT_INIT	0x0004 /* need to set this bit? */
 58#define MII_VSC8221_AUXCONSTAT_RESERVED	0x0004
 59
 60/* Vitesse Extended Page Access Register */
 61#define MII_VSC82X4_EXT_PAGE_ACCESS	0x1f
 62
 63/* Vitesse VSC8601 Extended PHY Control Register 1 */
 64#define MII_VSC8601_EPHY_CTL		0x17
 65#define MII_VSC8601_EPHY_CTL_RGMII_SKEW	(1 << 8)
 66
 67#define PHY_ID_VSC8234			0x000fc620
 68#define PHY_ID_VSC8244			0x000fc6c0
 69#define PHY_ID_VSC8572			0x000704d0
 
 70#define PHY_ID_VSC8601			0x00070420
 71#define PHY_ID_VSC7385			0x00070450
 72#define PHY_ID_VSC7388			0x00070480
 73#define PHY_ID_VSC7395			0x00070550
 74#define PHY_ID_VSC7398			0x00070580
 75#define PHY_ID_VSC8662			0x00070660
 76#define PHY_ID_VSC8221			0x000fc550
 77#define PHY_ID_VSC8211			0x000fc4b0
 78
 79MODULE_DESCRIPTION("Vitesse PHY driver");
 80MODULE_AUTHOR("Kriston Carson");
 81MODULE_LICENSE("GPL");
 82
 83static int vsc824x_add_skew(struct phy_device *phydev)
 84{
 85	int err;
 86	int extcon;
 87
 88	extcon = phy_read(phydev, MII_VSC8244_EXT_CON1);
 89
 90	if (extcon < 0)
 91		return extcon;
 92
 93	extcon &= ~(MII_VSC8244_EXTCON1_TX_SKEW_MASK |
 94			MII_VSC8244_EXTCON1_RX_SKEW_MASK);
 95
 96	extcon |= (MII_VSC8244_EXTCON1_TX_SKEW |
 97			MII_VSC8244_EXTCON1_RX_SKEW);
 98
 99	err = phy_write(phydev, MII_VSC8244_EXT_CON1, extcon);
100
101	return err;
102}
103
104static int vsc824x_config_init(struct phy_device *phydev)
105{
106	int err;
107
108	err = phy_write(phydev, MII_VSC8244_AUX_CONSTAT,
109			MII_VSC8244_AUXCONSTAT_INIT);
110	if (err < 0)
111		return err;
112
113	if (phydev->interface == PHY_INTERFACE_MODE_RGMII_ID)
114		err = vsc824x_add_skew(phydev);
115
116	return err;
117}
118
119#define VSC73XX_EXT_PAGE_ACCESS 0x1f
120
121static int vsc73xx_read_page(struct phy_device *phydev)
122{
123	return __phy_read(phydev, VSC73XX_EXT_PAGE_ACCESS);
124}
125
126static int vsc73xx_write_page(struct phy_device *phydev, int page)
127{
128	return __phy_write(phydev, VSC73XX_EXT_PAGE_ACCESS, page);
129}
130
131static void vsc73xx_config_init(struct phy_device *phydev)
132{
133	/* Receiver init */
134	phy_write(phydev, 0x1f, 0x2a30);
135	phy_modify(phydev, 0x0c, 0x0300, 0x0200);
136	phy_write(phydev, 0x1f, 0x0000);
137
138	/* Config LEDs 0x61 */
139	phy_modify(phydev, MII_TPISTATUS, 0xff00, 0x0061);
140}
141
142static int vsc738x_config_init(struct phy_device *phydev)
143{
144	u16 rev;
145	/* This magic sequence appear in the application note
146	 * "VSC7385/7388 PHY Configuration".
147	 *
148	 * Maybe one day we will get to know what it all means.
149	 */
150	phy_write(phydev, 0x1f, 0x2a30);
151	phy_modify(phydev, 0x08, 0x0200, 0x0200);
152	phy_write(phydev, 0x1f, 0x52b5);
153	phy_write(phydev, 0x10, 0xb68a);
154	phy_modify(phydev, 0x12, 0xff07, 0x0003);
155	phy_modify(phydev, 0x11, 0x00ff, 0x00a2);
156	phy_write(phydev, 0x10, 0x968a);
157	phy_write(phydev, 0x1f, 0x2a30);
158	phy_modify(phydev, 0x08, 0x0200, 0x0000);
159	phy_write(phydev, 0x1f, 0x0000);
160
161	/* Read revision */
162	rev = phy_read(phydev, MII_PHYSID2);
163	rev &= 0x0f;
164
165	/* Special quirk for revision 0 */
166	if (rev == 0) {
167		phy_write(phydev, 0x1f, 0x2a30);
168		phy_modify(phydev, 0x08, 0x0200, 0x0200);
169		phy_write(phydev, 0x1f, 0x52b5);
170		phy_write(phydev, 0x12, 0x0000);
171		phy_write(phydev, 0x11, 0x0689);
172		phy_write(phydev, 0x10, 0x8f92);
173		phy_write(phydev, 0x1f, 0x52b5);
174		phy_write(phydev, 0x12, 0x0000);
175		phy_write(phydev, 0x11, 0x0e35);
176		phy_write(phydev, 0x10, 0x9786);
177		phy_write(phydev, 0x1f, 0x2a30);
178		phy_modify(phydev, 0x08, 0x0200, 0x0000);
179		phy_write(phydev, 0x17, 0xff80);
180		phy_write(phydev, 0x17, 0x0000);
181	}
182
183	phy_write(phydev, 0x1f, 0x0000);
184	phy_write(phydev, 0x12, 0x0048);
185
186	if (rev == 0) {
187		phy_write(phydev, 0x1f, 0x2a30);
188		phy_write(phydev, 0x14, 0x6600);
189		phy_write(phydev, 0x1f, 0x0000);
190		phy_write(phydev, 0x18, 0xa24e);
191	} else {
192		phy_write(phydev, 0x1f, 0x2a30);
193		phy_modify(phydev, 0x16, 0x0fc0, 0x0240);
194		phy_modify(phydev, 0x14, 0x6000, 0x4000);
195		/* bits 14-15 in extended register 0x14 controls DACG amplitude
196		 * 6 = -8%, 2 is hardware default
197		 */
198		phy_write(phydev, 0x1f, 0x0001);
199		phy_modify(phydev, 0x14, 0xe000, 0x6000);
200		phy_write(phydev, 0x1f, 0x0000);
201	}
202
203	vsc73xx_config_init(phydev);
204
205	return 0;
206}
207
208static int vsc739x_config_init(struct phy_device *phydev)
209{
210	/* This magic sequence appears in the VSC7395 SparX-G5e application
211	 * note "VSC7395/VSC7398 PHY Configuration"
212	 *
213	 * Maybe one day we will get to know what it all means.
214	 */
215	phy_write(phydev, 0x1f, 0x2a30);
216	phy_modify(phydev, 0x08, 0x0200, 0x0200);
217	phy_write(phydev, 0x1f, 0x52b5);
218	phy_write(phydev, 0x10, 0xb68a);
219	phy_modify(phydev, 0x12, 0xff07, 0x0003);
220	phy_modify(phydev, 0x11, 0x00ff, 0x00a2);
221	phy_write(phydev, 0x10, 0x968a);
222	phy_write(phydev, 0x1f, 0x2a30);
223	phy_modify(phydev, 0x08, 0x0200, 0x0000);
224	phy_write(phydev, 0x1f, 0x0000);
225
226	phy_write(phydev, 0x1f, 0x0000);
227	phy_write(phydev, 0x12, 0x0048);
228	phy_write(phydev, 0x1f, 0x2a30);
229	phy_modify(phydev, 0x16, 0x0fc0, 0x0240);
230	phy_modify(phydev, 0x14, 0x6000, 0x4000);
231	phy_write(phydev, 0x1f, 0x0001);
232	phy_modify(phydev, 0x14, 0xe000, 0x6000);
233	phy_write(phydev, 0x1f, 0x0000);
234
235	vsc73xx_config_init(phydev);
236
237	return 0;
238}
239
240static int vsc73xx_config_aneg(struct phy_device *phydev)
241{
242	/* The VSC73xx switches does not like to be instructed to
243	 * do autonegotiation in any way, it prefers that you just go
244	 * with the power-on/reset defaults. Writing some registers will
245	 * just make autonegotiation permanently fail.
246	 */
247	return 0;
248}
249
250/* This adds a skew for both TX and RX clocks, so the skew should only be
251 * applied to "rgmii-id" interfaces. It may not work as expected
252 * on "rgmii-txid", "rgmii-rxid" or "rgmii" interfaces.
253 */
254static int vsc8601_add_skew(struct phy_device *phydev)
255{
256	int ret;
257
258	ret = phy_read(phydev, MII_VSC8601_EPHY_CTL);
259	if (ret < 0)
260		return ret;
261
262	ret |= MII_VSC8601_EPHY_CTL_RGMII_SKEW;
263	return phy_write(phydev, MII_VSC8601_EPHY_CTL, ret);
264}
265
266static int vsc8601_config_init(struct phy_device *phydev)
267{
268	int ret = 0;
269
270	if (phydev->interface == PHY_INTERFACE_MODE_RGMII_ID)
271		ret = vsc8601_add_skew(phydev);
272
273	if (ret < 0)
274		return ret;
275
276	return 0;
277}
278
279static int vsc82xx_config_intr(struct phy_device *phydev)
280{
281	int err;
282
283	if (phydev->interrupts == PHY_INTERRUPT_ENABLED)
284		/* Don't bother to ACK the interrupts since the 824x cannot
285		 * clear the interrupts if they are disabled.
286		 */
287		err = phy_write(phydev, MII_VSC8244_IMASK,
288			(phydev->drv->phy_id == PHY_ID_VSC8234 ||
289			 phydev->drv->phy_id == PHY_ID_VSC8244 ||
290			 phydev->drv->phy_id == PHY_ID_VSC8572 ||
 
291			 phydev->drv->phy_id == PHY_ID_VSC8601) ?
292				MII_VSC8244_IMASK_MASK :
293				MII_VSC8221_IMASK_MASK);
294	else {
295		/* The Vitesse PHY cannot clear the interrupt
296		 * once it has disabled them, so we clear them first
297		 */
298		err = phy_read(phydev, MII_VSC8244_ISTAT);
299
300		if (err < 0)
301			return err;
302
303		err = phy_write(phydev, MII_VSC8244_IMASK, 0);
304	}
305
306	return err;
307}
308
309static irqreturn_t vsc82xx_handle_interrupt(struct phy_device *phydev)
310{
311	int irq_status, irq_mask;
312
313	if (phydev->drv->phy_id == PHY_ID_VSC8244 ||
314	    phydev->drv->phy_id == PHY_ID_VSC8572 ||
315	    phydev->drv->phy_id == PHY_ID_VSC8601)
316		irq_mask = MII_VSC8244_ISTAT_MASK;
317	else
318		irq_mask = MII_VSC8221_ISTAT_MASK;
319
320	irq_status = phy_read(phydev, MII_VSC8244_ISTAT);
321	if (irq_status < 0) {
322		phy_error(phydev);
323		return IRQ_NONE;
324	}
325
326	if (!(irq_status & irq_mask))
327		return IRQ_NONE;
328
329	phy_trigger_machine(phydev);
330
331	return IRQ_HANDLED;
332}
333
334static int vsc8221_config_init(struct phy_device *phydev)
335{
336	int err;
337
338	err = phy_write(phydev, MII_VSC8244_AUX_CONSTAT,
339			MII_VSC8221_AUXCONSTAT_INIT);
340	return err;
341
342	/* Perhaps we should set EXT_CON1 based on the interface?
343	 * Options are 802.3Z SerDes or SGMII
344	 */
345}
346
347/* vsc82x4_config_autocross_enable - Enable auto MDI/MDI-X for forced links
348 * @phydev: target phy_device struct
349 *
350 * Enable auto MDI/MDI-X when in 10/100 forced link speeds by writing
351 * special values in the VSC8234/VSC8244 extended reserved registers
352 */
353static int vsc82x4_config_autocross_enable(struct phy_device *phydev)
354{
355	int ret;
356
357	if (phydev->autoneg == AUTONEG_ENABLE || phydev->speed > SPEED_100)
358		return 0;
359
360	/* map extended registers set 0x10 - 0x1e */
361	ret = phy_write(phydev, MII_VSC82X4_EXT_PAGE_ACCESS, 0x52b5);
362	if (ret >= 0)
363		ret = phy_write(phydev, MII_VSC82X4_EXT_PAGE_18E, 0x0012);
364	if (ret >= 0)
365		ret = phy_write(phydev, MII_VSC82X4_EXT_PAGE_17E, 0x2803);
366	if (ret >= 0)
367		ret = phy_write(phydev, MII_VSC82X4_EXT_PAGE_16E, 0x87fa);
368	/* map standard registers set 0x10 - 0x1e */
369	if (ret >= 0)
370		ret = phy_write(phydev, MII_VSC82X4_EXT_PAGE_ACCESS, 0x0000);
371	else
372		phy_write(phydev, MII_VSC82X4_EXT_PAGE_ACCESS, 0x0000);
373
374	return ret;
375}
376
377/* vsc82x4_config_aneg - restart auto-negotiation or write BMCR
378 * @phydev: target phy_device struct
379 *
380 * Description: If auto-negotiation is enabled, we configure the
381 *   advertising, and then restart auto-negotiation.  If it is not
382 *   enabled, then we write the BMCR and also start the auto
383 *   MDI/MDI-X feature
384 */
385static int vsc82x4_config_aneg(struct phy_device *phydev)
386{
387	int ret;
388
389	/* Enable auto MDI/MDI-X when in 10/100 forced link speeds by
390	 * writing special values in the VSC8234 extended reserved registers
391	 */
392	if (phydev->autoneg != AUTONEG_ENABLE && phydev->speed <= SPEED_100) {
393		ret = genphy_setup_forced(phydev);
394
395		if (ret < 0) /* error */
396			return ret;
397
398		return vsc82x4_config_autocross_enable(phydev);
399	}
400
401	return genphy_config_aneg(phydev);
402}
403
404/* Vitesse 82xx */
405static struct phy_driver vsc82xx_driver[] = {
406{
407	.phy_id         = PHY_ID_VSC8234,
408	.name           = "Vitesse VSC8234",
409	.phy_id_mask    = 0x000ffff0,
410	/* PHY_GBIT_FEATURES */
 
411	.config_init    = &vsc824x_config_init,
412	.config_aneg    = &vsc82x4_config_aneg,
 
 
413	.config_intr    = &vsc82xx_config_intr,
414	.handle_interrupt = &vsc82xx_handle_interrupt,
415}, {
416	.phy_id		= PHY_ID_VSC8244,
417	.name		= "Vitesse VSC8244",
418	.phy_id_mask	= 0x000fffc0,
419	/* PHY_GBIT_FEATURES */
 
 
 
 
 
 
 
 
 
 
 
 
420	.config_init	= &vsc824x_config_init,
421	.config_aneg	= &vsc82x4_config_aneg,
 
 
422	.config_intr	= &vsc82xx_config_intr,
423	.handle_interrupt = &vsc82xx_handle_interrupt,
424}, {
425	.phy_id         = PHY_ID_VSC8572,
426	.name           = "Vitesse VSC8572",
427	.phy_id_mask    = 0x000ffff0,
428	/* PHY_GBIT_FEATURES */
 
429	.config_init    = &vsc824x_config_init,
430	.config_aneg    = &vsc82x4_config_aneg,
 
 
431	.config_intr    = &vsc82xx_config_intr,
432	.handle_interrupt = &vsc82xx_handle_interrupt,
433}, {
434	.phy_id         = PHY_ID_VSC8601,
435	.name           = "Vitesse VSC8601",
436	.phy_id_mask    = 0x000ffff0,
437	/* PHY_GBIT_FEATURES */
438	.config_init    = &vsc8601_config_init,
 
 
 
 
439	.config_intr    = &vsc82xx_config_intr,
440	.handle_interrupt = &vsc82xx_handle_interrupt,
441}, {
442	.phy_id         = PHY_ID_VSC7385,
443	.name           = "Vitesse VSC7385",
444	.phy_id_mask    = 0x000ffff0,
445	/* PHY_GBIT_FEATURES */
446	.config_init    = vsc738x_config_init,
447	.config_aneg    = vsc73xx_config_aneg,
448	.read_page      = vsc73xx_read_page,
449	.write_page     = vsc73xx_write_page,
450}, {
451	.phy_id         = PHY_ID_VSC7388,
452	.name           = "Vitesse VSC7388",
453	.phy_id_mask    = 0x000ffff0,
454	/* PHY_GBIT_FEATURES */
455	.config_init    = vsc738x_config_init,
456	.config_aneg    = vsc73xx_config_aneg,
457	.read_page      = vsc73xx_read_page,
458	.write_page     = vsc73xx_write_page,
459}, {
460	.phy_id         = PHY_ID_VSC7395,
461	.name           = "Vitesse VSC7395",
462	.phy_id_mask    = 0x000ffff0,
463	/* PHY_GBIT_FEATURES */
464	.config_init    = vsc739x_config_init,
465	.config_aneg    = vsc73xx_config_aneg,
466	.read_page      = vsc73xx_read_page,
467	.write_page     = vsc73xx_write_page,
468}, {
469	.phy_id         = PHY_ID_VSC7398,
470	.name           = "Vitesse VSC7398",
471	.phy_id_mask    = 0x000ffff0,
472	/* PHY_GBIT_FEATURES */
473	.config_init    = vsc739x_config_init,
474	.config_aneg    = vsc73xx_config_aneg,
475	.read_page      = vsc73xx_read_page,
476	.write_page     = vsc73xx_write_page,
477}, {
478	.phy_id         = PHY_ID_VSC8662,
479	.name           = "Vitesse VSC8662",
480	.phy_id_mask    = 0x000ffff0,
481	/* PHY_GBIT_FEATURES */
 
482	.config_init    = &vsc824x_config_init,
483	.config_aneg    = &vsc82x4_config_aneg,
 
 
484	.config_intr    = &vsc82xx_config_intr,
485	.handle_interrupt = &vsc82xx_handle_interrupt,
486}, {
487	/* Vitesse 8221 */
488	.phy_id		= PHY_ID_VSC8221,
489	.phy_id_mask	= 0x000ffff0,
490	.name		= "Vitesse VSC8221",
491	/* PHY_GBIT_FEATURES */
 
492	.config_init	= &vsc8221_config_init,
 
 
 
493	.config_intr	= &vsc82xx_config_intr,
494	.handle_interrupt = &vsc82xx_handle_interrupt,
495}, {
496	/* Vitesse 8211 */
497	.phy_id		= PHY_ID_VSC8211,
498	.phy_id_mask	= 0x000ffff0,
499	.name		= "Vitesse VSC8211",
500	/* PHY_GBIT_FEATURES */
 
501	.config_init	= &vsc8221_config_init,
 
 
 
502	.config_intr	= &vsc82xx_config_intr,
503	.handle_interrupt = &vsc82xx_handle_interrupt,
504} };
505
506module_phy_driver(vsc82xx_driver);
507
508static struct mdio_device_id __maybe_unused vitesse_tbl[] = {
509	{ PHY_ID_VSC8234, 0x000ffff0 },
510	{ PHY_ID_VSC8244, 0x000fffc0 },
511	{ PHY_ID_VSC8572, 0x000ffff0 },
512	{ PHY_ID_VSC7385, 0x000ffff0 },
513	{ PHY_ID_VSC7388, 0x000ffff0 },
514	{ PHY_ID_VSC7395, 0x000ffff0 },
515	{ PHY_ID_VSC7398, 0x000ffff0 },
516	{ PHY_ID_VSC8662, 0x000ffff0 },
517	{ PHY_ID_VSC8221, 0x000ffff0 },
518	{ PHY_ID_VSC8211, 0x000ffff0 },
519	{ }
520};
521
522MODULE_DEVICE_TABLE(mdio, vitesse_tbl);