xref: /openbmc/linux/drivers/net/phy/national.c (revision a4d7742149f6a4880fa8bdf941a40c345162074c)
1a2443fd1SAndrew Lunn // SPDX-License-Identifier: GPL-2.0+
24621bf12SDavid S. Miller /*
34621bf12SDavid S. Miller  * drivers/net/phy/national.c
44621bf12SDavid S. Miller  *
54621bf12SDavid S. Miller  * Driver for National Semiconductor PHYs
64621bf12SDavid S. Miller  *
74621bf12SDavid S. Miller  * Author: Stuart Menefy <stuart.menefy@st.com>
84621bf12SDavid S. Miller  * Maintainer: Giuseppe Cavallaro <peppe.cavallaro@st.com>
94621bf12SDavid S. Miller  *
104621bf12SDavid S. Miller  * Copyright (c) 2008 STMicroelectronics Limited
114621bf12SDavid S. Miller  */
124621bf12SDavid S. Miller 
138d242488SJoe Perches #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
148d242488SJoe Perches 
154621bf12SDavid S. Miller #include <linux/kernel.h>
164621bf12SDavid S. Miller #include <linux/module.h>
174621bf12SDavid S. Miller #include <linux/mii.h>
184621bf12SDavid S. Miller #include <linux/ethtool.h>
194621bf12SDavid S. Miller #include <linux/phy.h>
204621bf12SDavid S. Miller #include <linux/netdevice.h>
214621bf12SDavid S. Miller 
228d242488SJoe Perches #define DEBUG
238d242488SJoe Perches 
244621bf12SDavid S. Miller /* DP83865 phy identifier values */
254621bf12SDavid S. Miller #define DP83865_PHY_ID	0x20005c7a
264621bf12SDavid S. Miller 
276e6f400fSGiuseppe CAVALLARO #define DP83865_INT_STATUS	0x14
286e6f400fSGiuseppe CAVALLARO #define DP83865_INT_MASK	0x15
296e6f400fSGiuseppe CAVALLARO #define DP83865_INT_CLEAR	0x17
304621bf12SDavid S. Miller 
314621bf12SDavid S. Miller #define DP83865_INT_REMOTE_FAULT 0x0008
324621bf12SDavid S. Miller #define DP83865_INT_ANE_COMPLETED 0x0010
334621bf12SDavid S. Miller #define DP83865_INT_LINK_CHANGE	0xe000
344621bf12SDavid S. Miller #define DP83865_INT_MASK_DEFAULT (DP83865_INT_REMOTE_FAULT | \
354621bf12SDavid S. Miller 				DP83865_INT_ANE_COMPLETED | \
364621bf12SDavid S. Miller 				DP83865_INT_LINK_CHANGE)
374621bf12SDavid S. Miller 
384621bf12SDavid S. Miller /* Advanced proprietary configuration */
394621bf12SDavid S. Miller #define NS_EXP_MEM_CTL	0x16
404621bf12SDavid S. Miller #define NS_EXP_MEM_DATA	0x1d
414621bf12SDavid S. Miller #define NS_EXP_MEM_ADD	0x1e
424621bf12SDavid S. Miller 
434621bf12SDavid S. Miller #define LED_CTRL_REG 0x13
444621bf12SDavid S. Miller #define AN_FALLBACK_AN 0x0001
454621bf12SDavid S. Miller #define AN_FALLBACK_CRC 0x0002
464621bf12SDavid S. Miller #define AN_FALLBACK_IE 0x0004
474621bf12SDavid S. Miller #define ALL_FALLBACK_ON (AN_FALLBACK_AN |  AN_FALLBACK_CRC | AN_FALLBACK_IE)
484621bf12SDavid S. Miller 
494621bf12SDavid S. Miller enum hdx_loopback {
504621bf12SDavid S. Miller 	hdx_loopback_on = 0,
514621bf12SDavid S. Miller 	hdx_loopback_off = 1,
524621bf12SDavid S. Miller };
534621bf12SDavid S. Miller 
544621bf12SDavid S. Miller static u8 ns_exp_read(struct phy_device *phydev, u16 reg)
554621bf12SDavid S. Miller {
564621bf12SDavid S. Miller 	phy_write(phydev, NS_EXP_MEM_ADD, reg);
574621bf12SDavid S. Miller 	return phy_read(phydev, NS_EXP_MEM_DATA);
584621bf12SDavid S. Miller }
594621bf12SDavid S. Miller 
604621bf12SDavid S. Miller static void ns_exp_write(struct phy_device *phydev, u16 reg, u8 data)
614621bf12SDavid S. Miller {
624621bf12SDavid S. Miller 	phy_write(phydev, NS_EXP_MEM_ADD, reg);
634621bf12SDavid S. Miller 	phy_write(phydev, NS_EXP_MEM_DATA, data);
644621bf12SDavid S. Miller }
654621bf12SDavid S. Miller 
664621bf12SDavid S. Miller static int ns_ack_interrupt(struct phy_device *phydev)
674621bf12SDavid S. Miller {
686e6f400fSGiuseppe CAVALLARO 	int ret = phy_read(phydev, DP83865_INT_STATUS);
694621bf12SDavid S. Miller 	if (ret < 0)
704621bf12SDavid S. Miller 		return ret;
714621bf12SDavid S. Miller 
726e6f400fSGiuseppe CAVALLARO 	/* Clear the interrupt status bit by writing a “1”
736e6f400fSGiuseppe CAVALLARO 	 * to the corresponding bit in INT_CLEAR (2:0 are reserved) */
746e6f400fSGiuseppe CAVALLARO 	ret = phy_write(phydev, DP83865_INT_CLEAR, ret & ~0x7);
756e6f400fSGiuseppe CAVALLARO 
766e6f400fSGiuseppe CAVALLARO 	return ret;
774621bf12SDavid S. Miller }
784621bf12SDavid S. Miller 
796571b455SIoana Ciornei static irqreturn_t ns_handle_interrupt(struct phy_device *phydev)
806571b455SIoana Ciornei {
816571b455SIoana Ciornei 	int irq_status;
826571b455SIoana Ciornei 
836571b455SIoana Ciornei 	irq_status = phy_read(phydev, DP83865_INT_STATUS);
846571b455SIoana Ciornei 	if (irq_status < 0) {
856571b455SIoana Ciornei 		phy_error(phydev);
866571b455SIoana Ciornei 		return IRQ_NONE;
876571b455SIoana Ciornei 	}
886571b455SIoana Ciornei 
896571b455SIoana Ciornei 	if (!(irq_status & DP83865_INT_MASK_DEFAULT))
906571b455SIoana Ciornei 		return IRQ_NONE;
916571b455SIoana Ciornei 
926571b455SIoana Ciornei 	/* clear the interrupt */
936571b455SIoana Ciornei 	phy_write(phydev, DP83865_INT_CLEAR, irq_status & ~0x7);
946571b455SIoana Ciornei 
956571b455SIoana Ciornei 	phy_trigger_machine(phydev);
966571b455SIoana Ciornei 
976571b455SIoana Ciornei 	return IRQ_HANDLED;
986571b455SIoana Ciornei }
996571b455SIoana Ciornei 
100*a4d77421SIoana Ciornei static int ns_config_intr(struct phy_device *phydev)
101*a4d77421SIoana Ciornei {
102*a4d77421SIoana Ciornei 	int err;
103*a4d77421SIoana Ciornei 
104*a4d77421SIoana Ciornei 	if (phydev->interrupts == PHY_INTERRUPT_ENABLED) {
105*a4d77421SIoana Ciornei 		err = ns_ack_interrupt(phydev);
106*a4d77421SIoana Ciornei 		if (err)
107*a4d77421SIoana Ciornei 			return err;
108*a4d77421SIoana Ciornei 
109*a4d77421SIoana Ciornei 		err = phy_write(phydev, DP83865_INT_MASK,
110*a4d77421SIoana Ciornei 				DP83865_INT_MASK_DEFAULT);
111*a4d77421SIoana Ciornei 	} else {
112*a4d77421SIoana Ciornei 		err = phy_write(phydev, DP83865_INT_MASK, 0);
113*a4d77421SIoana Ciornei 		if (err)
114*a4d77421SIoana Ciornei 			return err;
115*a4d77421SIoana Ciornei 
116*a4d77421SIoana Ciornei 		err = ns_ack_interrupt(phydev);
117*a4d77421SIoana Ciornei 	}
118*a4d77421SIoana Ciornei 
119*a4d77421SIoana Ciornei 	return err;
120*a4d77421SIoana Ciornei }
121*a4d77421SIoana Ciornei 
1224621bf12SDavid S. Miller static void ns_giga_speed_fallback(struct phy_device *phydev, int mode)
1234621bf12SDavid S. Miller {
1244621bf12SDavid S. Miller 	int bmcr = phy_read(phydev, MII_BMCR);
1254621bf12SDavid S. Miller 
1264621bf12SDavid S. Miller 	phy_write(phydev, MII_BMCR, (bmcr | BMCR_PDOWN));
1274621bf12SDavid S. Miller 
1284621bf12SDavid S. Miller 	/* Enable 8 bit expended memory read/write (no auto increment) */
1294621bf12SDavid S. Miller 	phy_write(phydev, NS_EXP_MEM_CTL, 0);
1304621bf12SDavid S. Miller 	phy_write(phydev, NS_EXP_MEM_ADD, 0x1C0);
1314621bf12SDavid S. Miller 	phy_write(phydev, NS_EXP_MEM_DATA, 0x0008);
1324621bf12SDavid S. Miller 	phy_write(phydev, MII_BMCR, (bmcr & ~BMCR_PDOWN));
1334621bf12SDavid S. Miller 	phy_write(phydev, LED_CTRL_REG, mode);
1344621bf12SDavid S. Miller }
1354621bf12SDavid S. Miller 
1364621bf12SDavid S. Miller static void ns_10_base_t_hdx_loopack(struct phy_device *phydev, int disable)
1374621bf12SDavid S. Miller {
138e47488b2SPeter Mamonov 	u16 lb_dis = BIT(1);
139e47488b2SPeter Mamonov 
1404621bf12SDavid S. Miller 	if (disable)
141e47488b2SPeter Mamonov 		ns_exp_write(phydev, 0x1c0,
142e47488b2SPeter Mamonov 			     ns_exp_read(phydev, 0x1c0) | lb_dis);
1434621bf12SDavid S. Miller 	else
1444621bf12SDavid S. Miller 		ns_exp_write(phydev, 0x1c0,
145e47488b2SPeter Mamonov 			     ns_exp_read(phydev, 0x1c0) & ~lb_dis);
1464621bf12SDavid S. Miller 
1478d242488SJoe Perches 	pr_debug("10BASE-T HDX loopback %s\n",
148e47488b2SPeter Mamonov 		 (ns_exp_read(phydev, 0x1c0) & lb_dis) ? "off" : "on");
1494621bf12SDavid S. Miller }
1504621bf12SDavid S. Miller 
1514621bf12SDavid S. Miller static int ns_config_init(struct phy_device *phydev)
1524621bf12SDavid S. Miller {
1534621bf12SDavid S. Miller 	ns_giga_speed_fallback(phydev, ALL_FALLBACK_ON);
1544621bf12SDavid S. Miller 	/* In the latest MAC or switches design, the 10 Mbps loopback
1554621bf12SDavid S. Miller 	   is desired to be turned off. */
1564621bf12SDavid S. Miller 	ns_10_base_t_hdx_loopack(phydev, hdx_loopback_off);
1574621bf12SDavid S. Miller 	return ns_ack_interrupt(phydev);
1584621bf12SDavid S. Miller }
1594621bf12SDavid S. Miller 
160116dffa0SJohan Hovold static struct phy_driver dp83865_driver[] = { {
1614621bf12SDavid S. Miller 	.phy_id = DP83865_PHY_ID,
1624621bf12SDavid S. Miller 	.phy_id_mask = 0xfffffff0,
1634621bf12SDavid S. Miller 	.name = "NatSemi DP83865",
164dcdecdcfSHeiner Kallweit 	/* PHY_GBIT_FEATURES */
1654621bf12SDavid S. Miller 	.config_init = ns_config_init,
1664621bf12SDavid S. Miller 	.config_intr = ns_config_intr,
1676571b455SIoana Ciornei 	.handle_interrupt = ns_handle_interrupt,
168116dffa0SJohan Hovold } };
1694621bf12SDavid S. Miller 
170116dffa0SJohan Hovold module_phy_driver(dp83865_driver);
1714621bf12SDavid S. Miller 
1724621bf12SDavid S. Miller MODULE_DESCRIPTION("NatSemi PHY driver");
1734621bf12SDavid S. Miller MODULE_AUTHOR("Stuart Menefy");
1744621bf12SDavid S. Miller MODULE_LICENSE("GPL");
1754621bf12SDavid S. Miller 
176cf93c945SUwe Kleine-König static struct mdio_device_id __maybe_unused ns_tbl[] = {
1774e4f10f6SDavid Woodhouse 	{ DP83865_PHY_ID, 0xfffffff0 },
1784e4f10f6SDavid Woodhouse 	{ }
1794e4f10f6SDavid Woodhouse };
1804e4f10f6SDavid Woodhouse 
1814e4f10f6SDavid Woodhouse MODULE_DEVICE_TABLE(mdio, ns_tbl);
182