Michael Barkowski | 0cefeeb | 2007-05-11 18:24:51 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Driver for ICPlus PHYs |
| 3 | * |
| 4 | * Copyright (c) 2007 Freescale Semiconductor, Inc. |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify it |
| 7 | * under the terms of the GNU General Public License as published by the |
| 8 | * Free Software Foundation; either version 2 of the License, or (at your |
| 9 | * option) any later version. |
| 10 | * |
| 11 | */ |
| 12 | #include <linux/kernel.h> |
| 13 | #include <linux/string.h> |
| 14 | #include <linux/errno.h> |
| 15 | #include <linux/unistd.h> |
Michael Barkowski | 0cefeeb | 2007-05-11 18:24:51 -0500 | [diff] [blame] | 16 | #include <linux/interrupt.h> |
| 17 | #include <linux/init.h> |
| 18 | #include <linux/delay.h> |
| 19 | #include <linux/netdevice.h> |
| 20 | #include <linux/etherdevice.h> |
| 21 | #include <linux/skbuff.h> |
| 22 | #include <linux/spinlock.h> |
| 23 | #include <linux/mm.h> |
| 24 | #include <linux/module.h> |
| 25 | #include <linux/mii.h> |
| 26 | #include <linux/ethtool.h> |
| 27 | #include <linux/phy.h> |
| 28 | |
| 29 | #include <asm/io.h> |
| 30 | #include <asm/irq.h> |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 31 | #include <linux/uaccess.h> |
Michael Barkowski | 0cefeeb | 2007-05-11 18:24:51 -0500 | [diff] [blame] | 32 | |
Giuseppe CAVALLARO | e3e09f2 | 2012-02-21 21:26:28 +0000 | [diff] [blame] | 33 | MODULE_DESCRIPTION("ICPlus IP175C/IP101A/IP101G/IC1001 PHY drivers"); |
Michael Barkowski | 0cefeeb | 2007-05-11 18:24:51 -0500 | [diff] [blame] | 34 | MODULE_AUTHOR("Michael Barkowski"); |
| 35 | MODULE_LICENSE("GPL"); |
| 36 | |
Giuseppe CAVALLARO | e3e09f2 | 2012-02-21 21:26:28 +0000 | [diff] [blame] | 37 | /* IP101A/G - IP1001 */ |
| 38 | #define IP10XX_SPEC_CTRL_STATUS 16 /* Spec. Control Register */ |
Stuart Menefy | b4a4963 | 2013-01-23 00:22:36 +0000 | [diff] [blame] | 39 | #define IP1001_RXPHASE_SEL (1<<0) /* Add delay on RX_CLK */ |
| 40 | #define IP1001_TXPHASE_SEL (1<<1) /* Add delay on TX_CLK */ |
Giuseppe CAVALLARO | e3e09f2 | 2012-02-21 21:26:28 +0000 | [diff] [blame] | 41 | #define IP1001_SPEC_CTRL_STATUS_2 20 /* IP1001 Spec. Control Reg 2 */ |
Giuseppe CAVALLARO | e3e09f2 | 2012-02-21 21:26:28 +0000 | [diff] [blame] | 42 | #define IP1001_APS_ON 11 /* IP1001 APS Mode bit */ |
| 43 | #define IP101A_G_APS_ON 2 /* IP101A/G APS Mode bit */ |
Giuseppe CAVALLARO | 996f739 | 2012-04-17 21:16:40 +0000 | [diff] [blame] | 44 | #define IP101A_G_IRQ_CONF_STATUS 0x11 /* Conf Info IRQ & Status Reg */ |
Giuseppe CAVALLARO | 9ec0db7 | 2012-06-04 05:51:18 +0000 | [diff] [blame] | 45 | #define IP101A_G_IRQ_PIN_USED (1<<15) /* INTR pin used */ |
| 46 | #define IP101A_G_IRQ_DEFAULT IP101A_G_IRQ_PIN_USED |
Giuseppe CAVALLARO | 9c9b1f2 | 2011-09-06 20:14:50 +0000 | [diff] [blame] | 47 | |
Michael Barkowski | 0cefeeb | 2007-05-11 18:24:51 -0500 | [diff] [blame] | 48 | static int ip175c_config_init(struct phy_device *phydev) |
| 49 | { |
| 50 | int err, i; |
Florian Fainelli | 9ed66cb | 2013-12-17 21:38:08 -0800 | [diff] [blame] | 51 | static int full_reset_performed; |
Michael Barkowski | 0cefeeb | 2007-05-11 18:24:51 -0500 | [diff] [blame] | 52 | |
| 53 | if (full_reset_performed == 0) { |
| 54 | |
| 55 | /* master reset */ |
Andrew Lunn | e5a03bf | 2016-01-06 20:11:16 +0100 | [diff] [blame] | 56 | err = mdiobus_write(phydev->mdio.bus, 30, 0, 0x175c); |
Michael Barkowski | 0cefeeb | 2007-05-11 18:24:51 -0500 | [diff] [blame] | 57 | if (err < 0) |
| 58 | return err; |
| 59 | |
| 60 | /* ensure no bus delays overlap reset period */ |
Andrew Lunn | e5a03bf | 2016-01-06 20:11:16 +0100 | [diff] [blame] | 61 | err = mdiobus_read(phydev->mdio.bus, 30, 0); |
Michael Barkowski | 0cefeeb | 2007-05-11 18:24:51 -0500 | [diff] [blame] | 62 | |
| 63 | /* data sheet specifies reset period is 2 msec */ |
| 64 | mdelay(2); |
| 65 | |
| 66 | /* enable IP175C mode */ |
Andrew Lunn | e5a03bf | 2016-01-06 20:11:16 +0100 | [diff] [blame] | 67 | err = mdiobus_write(phydev->mdio.bus, 29, 31, 0x175c); |
Michael Barkowski | 0cefeeb | 2007-05-11 18:24:51 -0500 | [diff] [blame] | 68 | if (err < 0) |
| 69 | return err; |
| 70 | |
| 71 | /* Set MII0 speed and duplex (in PHY mode) */ |
Andrew Lunn | e5a03bf | 2016-01-06 20:11:16 +0100 | [diff] [blame] | 72 | err = mdiobus_write(phydev->mdio.bus, 29, 22, 0x420); |
Michael Barkowski | 0cefeeb | 2007-05-11 18:24:51 -0500 | [diff] [blame] | 73 | if (err < 0) |
| 74 | return err; |
| 75 | |
| 76 | /* reset switch ports */ |
| 77 | for (i = 0; i < 5; i++) { |
Andrew Lunn | e5a03bf | 2016-01-06 20:11:16 +0100 | [diff] [blame] | 78 | err = mdiobus_write(phydev->mdio.bus, i, |
David Daney | 76231e0 | 2011-09-30 12:17:48 +0000 | [diff] [blame] | 79 | MII_BMCR, BMCR_RESET); |
Michael Barkowski | 0cefeeb | 2007-05-11 18:24:51 -0500 | [diff] [blame] | 80 | if (err < 0) |
| 81 | return err; |
| 82 | } |
| 83 | |
| 84 | for (i = 0; i < 5; i++) |
Andrew Lunn | e5a03bf | 2016-01-06 20:11:16 +0100 | [diff] [blame] | 85 | err = mdiobus_read(phydev->mdio.bus, i, MII_BMCR); |
Michael Barkowski | 0cefeeb | 2007-05-11 18:24:51 -0500 | [diff] [blame] | 86 | |
| 87 | mdelay(2); |
| 88 | |
| 89 | full_reset_performed = 1; |
| 90 | } |
| 91 | |
Andrew Lunn | e5a03bf | 2016-01-06 20:11:16 +0100 | [diff] [blame] | 92 | if (phydev->mdio.addr != 4) { |
Michael Barkowski | 0cefeeb | 2007-05-11 18:24:51 -0500 | [diff] [blame] | 93 | phydev->state = PHY_RUNNING; |
| 94 | phydev->speed = SPEED_100; |
| 95 | phydev->duplex = DUPLEX_FULL; |
| 96 | phydev->link = 1; |
| 97 | netif_carrier_on(phydev->attached_dev); |
| 98 | } |
| 99 | |
| 100 | return 0; |
| 101 | } |
| 102 | |
Giuseppe CAVALLARO | 9c9b1f2 | 2011-09-06 20:14:50 +0000 | [diff] [blame] | 103 | static int ip1xx_reset(struct phy_device *phydev) |
Giuseppe CAVALLARO | 377ecca | 2010-12-08 23:05:13 +0000 | [diff] [blame] | 104 | { |
David McKay | b8e3995 | 2012-02-21 21:24:57 +0000 | [diff] [blame] | 105 | int bmcr; |
Giuseppe CAVALLARO | 377ecca | 2010-12-08 23:05:13 +0000 | [diff] [blame] | 106 | |
| 107 | /* Software Reset PHY */ |
Giuseppe CAVALLARO | 9c9b1f2 | 2011-09-06 20:14:50 +0000 | [diff] [blame] | 108 | bmcr = phy_read(phydev, MII_BMCR); |
David McKay | b8e3995 | 2012-02-21 21:24:57 +0000 | [diff] [blame] | 109 | if (bmcr < 0) |
| 110 | return bmcr; |
Giuseppe CAVALLARO | 9c9b1f2 | 2011-09-06 20:14:50 +0000 | [diff] [blame] | 111 | bmcr |= BMCR_RESET; |
David McKay | b8e3995 | 2012-02-21 21:24:57 +0000 | [diff] [blame] | 112 | bmcr = phy_write(phydev, MII_BMCR, bmcr); |
| 113 | if (bmcr < 0) |
| 114 | return bmcr; |
Giuseppe CAVALLARO | 377ecca | 2010-12-08 23:05:13 +0000 | [diff] [blame] | 115 | |
| 116 | do { |
Giuseppe CAVALLARO | 9c9b1f2 | 2011-09-06 20:14:50 +0000 | [diff] [blame] | 117 | bmcr = phy_read(phydev, MII_BMCR); |
David McKay | b8e3995 | 2012-02-21 21:24:57 +0000 | [diff] [blame] | 118 | if (bmcr < 0) |
| 119 | return bmcr; |
Giuseppe CAVALLARO | 9c9b1f2 | 2011-09-06 20:14:50 +0000 | [diff] [blame] | 120 | } while (bmcr & BMCR_RESET); |
| 121 | |
David McKay | b8e3995 | 2012-02-21 21:24:57 +0000 | [diff] [blame] | 122 | return 0; |
Giuseppe CAVALLARO | 9c9b1f2 | 2011-09-06 20:14:50 +0000 | [diff] [blame] | 123 | } |
| 124 | |
| 125 | static int ip1001_config_init(struct phy_device *phydev) |
| 126 | { |
| 127 | int c; |
| 128 | |
| 129 | c = ip1xx_reset(phydev); |
| 130 | if (c < 0) |
| 131 | return c; |
| 132 | |
| 133 | /* Enable Auto Power Saving mode */ |
| 134 | c = phy_read(phydev, IP1001_SPEC_CTRL_STATUS_2); |
David McKay | b8e3995 | 2012-02-21 21:24:57 +0000 | [diff] [blame] | 135 | if (c < 0) |
| 136 | return c; |
Giuseppe CAVALLARO | 9c9b1f2 | 2011-09-06 20:14:50 +0000 | [diff] [blame] | 137 | c |= IP1001_APS_ON; |
David McKay | b8e3995 | 2012-02-21 21:24:57 +0000 | [diff] [blame] | 138 | c = phy_write(phydev, IP1001_SPEC_CTRL_STATUS_2, c); |
Giuseppe CAVALLARO | 9c9b1f2 | 2011-09-06 20:14:50 +0000 | [diff] [blame] | 139 | if (c < 0) |
| 140 | return c; |
Giuseppe CAVALLARO | 377ecca | 2010-12-08 23:05:13 +0000 | [diff] [blame] | 141 | |
Florian Fainelli | 32a6416 | 2015-05-26 12:19:59 -0700 | [diff] [blame] | 142 | if (phy_interface_is_rgmii(phydev)) { |
Stuart Menefy | b4a4963 | 2013-01-23 00:22:36 +0000 | [diff] [blame] | 143 | |
Giuseppe CAVALLARO | a4886d5 | 2011-10-10 21:37:56 +0000 | [diff] [blame] | 144 | c = phy_read(phydev, IP10XX_SPEC_CTRL_STATUS); |
David McKay | b8e3995 | 2012-02-21 21:24:57 +0000 | [diff] [blame] | 145 | if (c < 0) |
| 146 | return c; |
| 147 | |
Stuart Menefy | b4a4963 | 2013-01-23 00:22:36 +0000 | [diff] [blame] | 148 | c &= ~(IP1001_RXPHASE_SEL | IP1001_TXPHASE_SEL); |
| 149 | |
| 150 | if (phydev->interface == PHY_INTERFACE_MODE_RGMII_ID) |
| 151 | c |= (IP1001_RXPHASE_SEL | IP1001_TXPHASE_SEL); |
| 152 | else if (phydev->interface == PHY_INTERFACE_MODE_RGMII_RXID) |
| 153 | c |= IP1001_RXPHASE_SEL; |
| 154 | else if (phydev->interface == PHY_INTERFACE_MODE_RGMII_TXID) |
| 155 | c |= IP1001_TXPHASE_SEL; |
| 156 | |
Giuseppe CAVALLARO | a4886d5 | 2011-10-10 21:37:56 +0000 | [diff] [blame] | 157 | c = phy_write(phydev, IP10XX_SPEC_CTRL_STATUS, c); |
David McKay | b8e3995 | 2012-02-21 21:24:57 +0000 | [diff] [blame] | 158 | if (c < 0) |
| 159 | return c; |
Giuseppe CAVALLARO | a4886d5 | 2011-10-10 21:37:56 +0000 | [diff] [blame] | 160 | } |
Giuseppe CAVALLARO | 377ecca | 2010-12-08 23:05:13 +0000 | [diff] [blame] | 161 | |
David McKay | b8e3995 | 2012-02-21 21:24:57 +0000 | [diff] [blame] | 162 | return 0; |
Giuseppe CAVALLARO | 9c9b1f2 | 2011-09-06 20:14:50 +0000 | [diff] [blame] | 163 | } |
| 164 | |
Giuseppe CAVALLARO | e3e09f2 | 2012-02-21 21:26:28 +0000 | [diff] [blame] | 165 | static int ip101a_g_config_init(struct phy_device *phydev) |
Giuseppe CAVALLARO | 9c9b1f2 | 2011-09-06 20:14:50 +0000 | [diff] [blame] | 166 | { |
| 167 | int c; |
| 168 | |
| 169 | c = ip1xx_reset(phydev); |
| 170 | if (c < 0) |
| 171 | return c; |
| 172 | |
Giuseppe CAVALLARO | 014f2ff | 2013-01-23 00:22:37 +0000 | [diff] [blame] | 173 | /* INTR pin used: speed/link/duplex will cause an interrupt */ |
| 174 | c = phy_write(phydev, IP101A_G_IRQ_CONF_STATUS, IP101A_G_IRQ_DEFAULT); |
| 175 | if (c < 0) |
| 176 | return c; |
| 177 | |
Giuseppe CAVALLARO | 9c9b1f2 | 2011-09-06 20:14:50 +0000 | [diff] [blame] | 178 | /* Enable Auto Power Saving mode */ |
| 179 | c = phy_read(phydev, IP10XX_SPEC_CTRL_STATUS); |
Giuseppe CAVALLARO | e3e09f2 | 2012-02-21 21:26:28 +0000 | [diff] [blame] | 180 | c |= IP101A_G_APS_ON; |
Srinivas Kandagatla | b330014 | 2012-04-02 00:02:09 +0000 | [diff] [blame] | 181 | |
| 182 | return phy_write(phydev, IP10XX_SPEC_CTRL_STATUS, c); |
Giuseppe CAVALLARO | 377ecca | 2010-12-08 23:05:13 +0000 | [diff] [blame] | 183 | } |
| 184 | |
Michael Barkowski | 0cefeeb | 2007-05-11 18:24:51 -0500 | [diff] [blame] | 185 | static int ip175c_read_status(struct phy_device *phydev) |
| 186 | { |
Andrew Lunn | e5a03bf | 2016-01-06 20:11:16 +0100 | [diff] [blame] | 187 | if (phydev->mdio.addr == 4) /* WAN port */ |
Michael Barkowski | 0cefeeb | 2007-05-11 18:24:51 -0500 | [diff] [blame] | 188 | genphy_read_status(phydev); |
| 189 | else |
| 190 | /* Don't need to read status for switch ports */ |
| 191 | phydev->irq = PHY_IGNORE_INTERRUPT; |
| 192 | |
| 193 | return 0; |
| 194 | } |
| 195 | |
| 196 | static int ip175c_config_aneg(struct phy_device *phydev) |
| 197 | { |
Andrew Lunn | e5a03bf | 2016-01-06 20:11:16 +0100 | [diff] [blame] | 198 | if (phydev->mdio.addr == 4) /* WAN port */ |
Michael Barkowski | 0cefeeb | 2007-05-11 18:24:51 -0500 | [diff] [blame] | 199 | genphy_config_aneg(phydev); |
| 200 | |
| 201 | return 0; |
| 202 | } |
| 203 | |
Giuseppe CAVALLARO | 996f739 | 2012-04-17 21:16:40 +0000 | [diff] [blame] | 204 | static int ip101a_g_ack_interrupt(struct phy_device *phydev) |
| 205 | { |
| 206 | int err = phy_read(phydev, IP101A_G_IRQ_CONF_STATUS); |
| 207 | if (err < 0) |
| 208 | return err; |
| 209 | |
| 210 | return 0; |
| 211 | } |
| 212 | |
Christian Hohnstaedt | d5bf907 | 2012-07-04 05:44:34 +0000 | [diff] [blame] | 213 | static struct phy_driver icplus_driver[] = { |
| 214 | { |
Michael Barkowski | 0cefeeb | 2007-05-11 18:24:51 -0500 | [diff] [blame] | 215 | .phy_id = 0x02430d80, |
| 216 | .name = "ICPlus IP175C", |
| 217 | .phy_id_mask = 0x0ffffff0, |
| 218 | .features = PHY_BASIC_FEATURES, |
| 219 | .config_init = &ip175c_config_init, |
| 220 | .config_aneg = &ip175c_config_aneg, |
| 221 | .read_status = &ip175c_read_status, |
Giuseppe Cavallaro | dab1086 | 2010-07-20 13:24:25 -0700 | [diff] [blame] | 222 | .suspend = genphy_suspend, |
| 223 | .resume = genphy_resume, |
Christian Hohnstaedt | d5bf907 | 2012-07-04 05:44:34 +0000 | [diff] [blame] | 224 | }, { |
Giuseppe CAVALLARO | 377ecca | 2010-12-08 23:05:13 +0000 | [diff] [blame] | 225 | .phy_id = 0x02430d90, |
| 226 | .name = "ICPlus IP1001", |
| 227 | .phy_id_mask = 0x0ffffff0, |
Timur Tabi | 529ed12 | 2016-12-07 13:20:51 -0600 | [diff] [blame] | 228 | .features = PHY_GBIT_FEATURES, |
Giuseppe CAVALLARO | 377ecca | 2010-12-08 23:05:13 +0000 | [diff] [blame] | 229 | .config_init = &ip1001_config_init, |
| 230 | .config_aneg = &genphy_config_aneg, |
| 231 | .read_status = &genphy_read_status, |
| 232 | .suspend = genphy_suspend, |
| 233 | .resume = genphy_resume, |
Christian Hohnstaedt | d5bf907 | 2012-07-04 05:44:34 +0000 | [diff] [blame] | 234 | }, { |
Giuseppe CAVALLARO | 9c9b1f2 | 2011-09-06 20:14:50 +0000 | [diff] [blame] | 235 | .phy_id = 0x02430c54, |
Giuseppe CAVALLARO | e3e09f2 | 2012-02-21 21:26:28 +0000 | [diff] [blame] | 236 | .name = "ICPlus IP101A/G", |
Giuseppe CAVALLARO | 9c9b1f2 | 2011-09-06 20:14:50 +0000 | [diff] [blame] | 237 | .phy_id_mask = 0x0ffffff0, |
Timur Tabi | 529ed12 | 2016-12-07 13:20:51 -0600 | [diff] [blame] | 238 | .features = PHY_BASIC_FEATURES, |
Giuseppe CAVALLARO | e3e09f2 | 2012-02-21 21:26:28 +0000 | [diff] [blame] | 239 | .flags = PHY_HAS_INTERRUPT, |
Giuseppe CAVALLARO | 996f739 | 2012-04-17 21:16:40 +0000 | [diff] [blame] | 240 | .ack_interrupt = ip101a_g_ack_interrupt, |
Giuseppe CAVALLARO | e3e09f2 | 2012-02-21 21:26:28 +0000 | [diff] [blame] | 241 | .config_init = &ip101a_g_config_init, |
Giuseppe CAVALLARO | 9c9b1f2 | 2011-09-06 20:14:50 +0000 | [diff] [blame] | 242 | .config_aneg = &genphy_config_aneg, |
| 243 | .read_status = &genphy_read_status, |
| 244 | .suspend = genphy_suspend, |
| 245 | .resume = genphy_resume, |
Christian Hohnstaedt | d5bf907 | 2012-07-04 05:44:34 +0000 | [diff] [blame] | 246 | } }; |
Giuseppe CAVALLARO | 9c9b1f2 | 2011-09-06 20:14:50 +0000 | [diff] [blame] | 247 | |
Johan Hovold | 50fd715 | 2014-11-11 19:45:59 +0100 | [diff] [blame] | 248 | module_phy_driver(icplus_driver); |
David Woodhouse | 4e4f10f | 2010-04-02 01:05:56 +0000 | [diff] [blame] | 249 | |
Uwe Kleine-König | cf93c94 | 2010-10-03 23:43:32 +0000 | [diff] [blame] | 250 | static struct mdio_device_id __maybe_unused icplus_tbl[] = { |
David Woodhouse | 4e4f10f | 2010-04-02 01:05:56 +0000 | [diff] [blame] | 251 | { 0x02430d80, 0x0ffffff0 }, |
Giuseppe CAVALLARO | 377ecca | 2010-12-08 23:05:13 +0000 | [diff] [blame] | 252 | { 0x02430d90, 0x0ffffff0 }, |
Giuseppe CAVALLARO | e3e09f2 | 2012-02-21 21:26:28 +0000 | [diff] [blame] | 253 | { 0x02430c54, 0x0ffffff0 }, |
David Woodhouse | 4e4f10f | 2010-04-02 01:05:56 +0000 | [diff] [blame] | 254 | { } |
| 255 | }; |
| 256 | |
| 257 | MODULE_DEVICE_TABLE(mdio, icplus_tbl); |