WIP FPC-III support
[linux/fpc-iii.git] / drivers / net / phy / icplus.c
blobb632947cbcdf3aae4d15f66147de1dcce533b454
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3 * Driver for ICPlus PHYs
5 * Copyright (c) 2007 Freescale Semiconductor, Inc.
6 */
7 #include <linux/kernel.h>
8 #include <linux/string.h>
9 #include <linux/errno.h>
10 #include <linux/unistd.h>
11 #include <linux/interrupt.h>
12 #include <linux/init.h>
13 #include <linux/delay.h>
14 #include <linux/netdevice.h>
15 #include <linux/etherdevice.h>
16 #include <linux/skbuff.h>
17 #include <linux/spinlock.h>
18 #include <linux/mm.h>
19 #include <linux/module.h>
20 #include <linux/mii.h>
21 #include <linux/ethtool.h>
22 #include <linux/phy.h>
23 #include <linux/property.h>
25 #include <asm/io.h>
26 #include <asm/irq.h>
27 #include <linux/uaccess.h>
29 MODULE_DESCRIPTION("ICPlus IP175C/IP101A/IP101G/IC1001 PHY drivers");
30 MODULE_AUTHOR("Michael Barkowski");
31 MODULE_LICENSE("GPL");
33 /* IP101A/G - IP1001 */
34 #define IP10XX_SPEC_CTRL_STATUS 16 /* Spec. Control Register */
35 #define IP1001_RXPHASE_SEL BIT(0) /* Add delay on RX_CLK */
36 #define IP1001_TXPHASE_SEL BIT(1) /* Add delay on TX_CLK */
37 #define IP1001_SPEC_CTRL_STATUS_2 20 /* IP1001 Spec. Control Reg 2 */
38 #define IP1001_APS_ON 11 /* IP1001 APS Mode bit */
39 #define IP101A_G_APS_ON BIT(1) /* IP101A/G APS Mode bit */
40 #define IP101A_G_IRQ_CONF_STATUS 0x11 /* Conf Info IRQ & Status Reg */
41 #define IP101A_G_IRQ_PIN_USED BIT(15) /* INTR pin used */
42 #define IP101A_G_IRQ_ALL_MASK BIT(11) /* IRQ's inactive */
43 #define IP101A_G_IRQ_SPEED_CHANGE BIT(2)
44 #define IP101A_G_IRQ_DUPLEX_CHANGE BIT(1)
45 #define IP101A_G_IRQ_LINK_CHANGE BIT(0)
47 #define IP101G_DIGITAL_IO_SPEC_CTRL 0x1d
48 #define IP101G_DIGITAL_IO_SPEC_CTRL_SEL_INTR32 BIT(2)
50 /* The 32-pin IP101GR package can re-configure the mode of the RXER/INTR_32 pin
51 * (pin number 21). The hardware default is RXER (receive error) mode. But it
52 * can be configured to interrupt mode manually.
54 enum ip101gr_sel_intr32 {
55 IP101GR_SEL_INTR32_KEEP,
56 IP101GR_SEL_INTR32_INTR,
57 IP101GR_SEL_INTR32_RXER,
60 struct ip101a_g_phy_priv {
61 enum ip101gr_sel_intr32 sel_intr32;
64 static int ip175c_config_init(struct phy_device *phydev)
66 int err, i;
67 static int full_reset_performed;
69 if (full_reset_performed == 0) {
71 /* master reset */
72 err = mdiobus_write(phydev->mdio.bus, 30, 0, 0x175c);
73 if (err < 0)
74 return err;
76 /* ensure no bus delays overlap reset period */
77 err = mdiobus_read(phydev->mdio.bus, 30, 0);
79 /* data sheet specifies reset period is 2 msec */
80 mdelay(2);
82 /* enable IP175C mode */
83 err = mdiobus_write(phydev->mdio.bus, 29, 31, 0x175c);
84 if (err < 0)
85 return err;
87 /* Set MII0 speed and duplex (in PHY mode) */
88 err = mdiobus_write(phydev->mdio.bus, 29, 22, 0x420);
89 if (err < 0)
90 return err;
92 /* reset switch ports */
93 for (i = 0; i < 5; i++) {
94 err = mdiobus_write(phydev->mdio.bus, i,
95 MII_BMCR, BMCR_RESET);
96 if (err < 0)
97 return err;
100 for (i = 0; i < 5; i++)
101 err = mdiobus_read(phydev->mdio.bus, i, MII_BMCR);
103 mdelay(2);
105 full_reset_performed = 1;
108 if (phydev->mdio.addr != 4) {
109 phydev->state = PHY_RUNNING;
110 phydev->speed = SPEED_100;
111 phydev->duplex = DUPLEX_FULL;
112 phydev->link = 1;
113 netif_carrier_on(phydev->attached_dev);
116 return 0;
119 static int ip1xx_reset(struct phy_device *phydev)
121 int bmcr;
123 /* Software Reset PHY */
124 bmcr = phy_read(phydev, MII_BMCR);
125 if (bmcr < 0)
126 return bmcr;
127 bmcr |= BMCR_RESET;
128 bmcr = phy_write(phydev, MII_BMCR, bmcr);
129 if (bmcr < 0)
130 return bmcr;
132 do {
133 bmcr = phy_read(phydev, MII_BMCR);
134 if (bmcr < 0)
135 return bmcr;
136 } while (bmcr & BMCR_RESET);
138 return 0;
141 static int ip1001_config_init(struct phy_device *phydev)
143 int c;
145 c = ip1xx_reset(phydev);
146 if (c < 0)
147 return c;
149 /* Enable Auto Power Saving mode */
150 c = phy_read(phydev, IP1001_SPEC_CTRL_STATUS_2);
151 if (c < 0)
152 return c;
153 c |= IP1001_APS_ON;
154 c = phy_write(phydev, IP1001_SPEC_CTRL_STATUS_2, c);
155 if (c < 0)
156 return c;
158 if (phy_interface_is_rgmii(phydev)) {
160 c = phy_read(phydev, IP10XX_SPEC_CTRL_STATUS);
161 if (c < 0)
162 return c;
164 c &= ~(IP1001_RXPHASE_SEL | IP1001_TXPHASE_SEL);
166 if (phydev->interface == PHY_INTERFACE_MODE_RGMII_ID)
167 c |= (IP1001_RXPHASE_SEL | IP1001_TXPHASE_SEL);
168 else if (phydev->interface == PHY_INTERFACE_MODE_RGMII_RXID)
169 c |= IP1001_RXPHASE_SEL;
170 else if (phydev->interface == PHY_INTERFACE_MODE_RGMII_TXID)
171 c |= IP1001_TXPHASE_SEL;
173 c = phy_write(phydev, IP10XX_SPEC_CTRL_STATUS, c);
174 if (c < 0)
175 return c;
178 return 0;
181 static int ip175c_read_status(struct phy_device *phydev)
183 if (phydev->mdio.addr == 4) /* WAN port */
184 genphy_read_status(phydev);
185 else
186 /* Don't need to read status for switch ports */
187 phydev->irq = PHY_IGNORE_INTERRUPT;
189 return 0;
192 static int ip175c_config_aneg(struct phy_device *phydev)
194 if (phydev->mdio.addr == 4) /* WAN port */
195 genphy_config_aneg(phydev);
197 return 0;
200 static int ip101a_g_probe(struct phy_device *phydev)
202 struct device *dev = &phydev->mdio.dev;
203 struct ip101a_g_phy_priv *priv;
205 priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
206 if (!priv)
207 return -ENOMEM;
209 /* Both functions (RX error and interrupt status) are sharing the same
210 * pin on the 32-pin IP101GR, so this is an exclusive choice.
212 if (device_property_read_bool(dev, "icplus,select-rx-error") &&
213 device_property_read_bool(dev, "icplus,select-interrupt")) {
214 dev_err(dev,
215 "RXER and INTR mode cannot be selected together\n");
216 return -EINVAL;
219 if (device_property_read_bool(dev, "icplus,select-rx-error"))
220 priv->sel_intr32 = IP101GR_SEL_INTR32_RXER;
221 else if (device_property_read_bool(dev, "icplus,select-interrupt"))
222 priv->sel_intr32 = IP101GR_SEL_INTR32_INTR;
223 else
224 priv->sel_intr32 = IP101GR_SEL_INTR32_KEEP;
226 phydev->priv = priv;
228 return 0;
231 static int ip101a_g_config_init(struct phy_device *phydev)
233 struct ip101a_g_phy_priv *priv = phydev->priv;
234 int err, c;
236 c = ip1xx_reset(phydev);
237 if (c < 0)
238 return c;
240 /* configure the RXER/INTR_32 pin of the 32-pin IP101GR if needed: */
241 switch (priv->sel_intr32) {
242 case IP101GR_SEL_INTR32_RXER:
243 err = phy_modify(phydev, IP101G_DIGITAL_IO_SPEC_CTRL,
244 IP101G_DIGITAL_IO_SPEC_CTRL_SEL_INTR32, 0);
245 if (err < 0)
246 return err;
247 break;
249 case IP101GR_SEL_INTR32_INTR:
250 err = phy_modify(phydev, IP101G_DIGITAL_IO_SPEC_CTRL,
251 IP101G_DIGITAL_IO_SPEC_CTRL_SEL_INTR32,
252 IP101G_DIGITAL_IO_SPEC_CTRL_SEL_INTR32);
253 if (err < 0)
254 return err;
255 break;
257 default:
258 /* Don't touch IP101G_DIGITAL_IO_SPEC_CTRL because it's not
259 * documented on IP101A and it's not clear whether this would
260 * cause problems.
261 * For the 32-pin IP101GR we simply keep the SEL_INTR32
262 * configuration as set by the bootloader when not configured
263 * to one of the special functions.
265 break;
268 /* Enable Auto Power Saving mode */
269 c = phy_read(phydev, IP10XX_SPEC_CTRL_STATUS);
270 c |= IP101A_G_APS_ON;
272 return phy_write(phydev, IP10XX_SPEC_CTRL_STATUS, c);
275 static int ip101a_g_ack_interrupt(struct phy_device *phydev)
277 int err = phy_read(phydev, IP101A_G_IRQ_CONF_STATUS);
279 if (err < 0)
280 return err;
282 return 0;
285 static int ip101a_g_config_intr(struct phy_device *phydev)
287 u16 val;
288 int err;
290 if (phydev->interrupts == PHY_INTERRUPT_ENABLED) {
291 err = ip101a_g_ack_interrupt(phydev);
292 if (err)
293 return err;
295 /* INTR pin used: Speed/link/duplex will cause an interrupt */
296 val = IP101A_G_IRQ_PIN_USED;
297 err = phy_write(phydev, IP101A_G_IRQ_CONF_STATUS, val);
298 } else {
299 val = IP101A_G_IRQ_ALL_MASK;
300 err = phy_write(phydev, IP101A_G_IRQ_CONF_STATUS, val);
301 if (err)
302 return err;
304 err = ip101a_g_ack_interrupt(phydev);
307 return err;
310 static irqreturn_t ip101a_g_handle_interrupt(struct phy_device *phydev)
312 int irq_status;
314 irq_status = phy_read(phydev, IP101A_G_IRQ_CONF_STATUS);
315 if (irq_status < 0) {
316 phy_error(phydev);
317 return IRQ_NONE;
320 if (!(irq_status & (IP101A_G_IRQ_SPEED_CHANGE |
321 IP101A_G_IRQ_DUPLEX_CHANGE |
322 IP101A_G_IRQ_LINK_CHANGE)))
323 return IRQ_NONE;
325 phy_trigger_machine(phydev);
327 return IRQ_HANDLED;
330 static struct phy_driver icplus_driver[] = {
332 .phy_id = 0x02430d80,
333 .name = "ICPlus IP175C",
334 .phy_id_mask = 0x0ffffff0,
335 /* PHY_BASIC_FEATURES */
336 .config_init = &ip175c_config_init,
337 .config_aneg = &ip175c_config_aneg,
338 .read_status = &ip175c_read_status,
339 .suspend = genphy_suspend,
340 .resume = genphy_resume,
341 }, {
342 .phy_id = 0x02430d90,
343 .name = "ICPlus IP1001",
344 .phy_id_mask = 0x0ffffff0,
345 /* PHY_GBIT_FEATURES */
346 .config_init = &ip1001_config_init,
347 .suspend = genphy_suspend,
348 .resume = genphy_resume,
349 }, {
350 .phy_id = 0x02430c54,
351 .name = "ICPlus IP101A/G",
352 .phy_id_mask = 0x0ffffff0,
353 /* PHY_BASIC_FEATURES */
354 .probe = ip101a_g_probe,
355 .config_intr = ip101a_g_config_intr,
356 .handle_interrupt = ip101a_g_handle_interrupt,
357 .config_init = &ip101a_g_config_init,
358 .suspend = genphy_suspend,
359 .resume = genphy_resume,
360 } };
362 module_phy_driver(icplus_driver);
364 static struct mdio_device_id __maybe_unused icplus_tbl[] = {
365 { 0x02430d80, 0x0ffffff0 },
366 { 0x02430d90, 0x0ffffff0 },
367 { 0x02430c54, 0x0ffffff0 },
371 MODULE_DEVICE_TABLE(mdio, icplus_tbl);