2 * Driver for Aquantia PHY
4 * Author: Shaohui Xie <Shaohui.Xie@freescale.com>
6 * Copyright 2015 Freescale Semiconductor, Inc.
8 * This file is licensed under the terms of the GNU General Public License
9 * version 2. This program is licensed "as is" without any warranty of any
10 * kind, whether express or implied.
13 #include <linux/kernel.h>
14 #include <linux/module.h>
15 #include <linux/delay.h>
16 #include <linux/mii.h>
17 #include <linux/ethtool.h>
18 #include <linux/phy.h>
19 #include <linux/mdio.h>
21 #define PHY_ID_AQ1202 0x03a1b445
22 #define PHY_ID_AQ2104 0x03a1b460
23 #define PHY_ID_AQR105 0x03a1b4a2
24 #define PHY_ID_AQR405 0x03a1b4b0
26 #define PHY_AQUANTIA_FEATURES (SUPPORTED_10000baseT_Full | \
27 SUPPORTED_1000baseT_Full | \
28 SUPPORTED_100baseT_Full | \
31 static int aquantia_config_aneg(struct phy_device
*phydev
)
33 phydev
->supported
= PHY_AQUANTIA_FEATURES
;
34 phydev
->advertising
= phydev
->supported
;
39 static int aquantia_aneg_done(struct phy_device
*phydev
)
43 reg
= phy_read_mmd(phydev
, MDIO_MMD_AN
, MDIO_STAT1
);
44 return (reg
< 0) ? reg
: (reg
& BMSR_ANEGCOMPLETE
);
47 static int aquantia_config_intr(struct phy_device
*phydev
)
51 if (phydev
->interrupts
== PHY_INTERRUPT_ENABLED
) {
52 err
= phy_write_mmd(phydev
, MDIO_MMD_AN
, 0xd401, 1);
56 err
= phy_write_mmd(phydev
, MDIO_MMD_VEND1
, 0xff00, 1);
60 err
= phy_write_mmd(phydev
, MDIO_MMD_VEND1
, 0xff01, 0x1001);
62 err
= phy_write_mmd(phydev
, MDIO_MMD_AN
, 0xd401, 0);
66 err
= phy_write_mmd(phydev
, MDIO_MMD_VEND1
, 0xff00, 0);
70 err
= phy_write_mmd(phydev
, MDIO_MMD_VEND1
, 0xff01, 0);
76 static int aquantia_ack_interrupt(struct phy_device
*phydev
)
80 reg
= phy_read_mmd(phydev
, MDIO_MMD_AN
, 0xcc01);
81 return (reg
< 0) ? reg
: 0;
84 static int aquantia_read_status(struct phy_device
*phydev
)
88 reg
= phy_read_mmd(phydev
, MDIO_MMD_AN
, MDIO_STAT1
);
89 reg
= phy_read_mmd(phydev
, MDIO_MMD_AN
, MDIO_STAT1
);
90 if (reg
& MDIO_STAT1_LSTATUS
)
95 reg
= phy_read_mmd(phydev
, MDIO_MMD_AN
, 0xc800);
97 reg
= phy_read_mmd(phydev
, MDIO_MMD_AN
, 0xc800);
101 phydev
->speed
= SPEED_2500
;
104 phydev
->speed
= SPEED_1000
;
107 phydev
->speed
= SPEED_100
;
111 phydev
->speed
= SPEED_10000
;
114 phydev
->duplex
= DUPLEX_FULL
;
119 static struct phy_driver aquantia_driver
[] = {
121 .phy_id
= PHY_ID_AQ1202
,
122 .phy_id_mask
= 0xfffffff0,
123 .name
= "Aquantia AQ1202",
124 .features
= PHY_AQUANTIA_FEATURES
,
125 .flags
= PHY_HAS_INTERRUPT
,
126 .aneg_done
= aquantia_aneg_done
,
127 .config_aneg
= aquantia_config_aneg
,
128 .config_intr
= aquantia_config_intr
,
129 .ack_interrupt
= aquantia_ack_interrupt
,
130 .read_status
= aquantia_read_status
,
131 .driver
= { .owner
= THIS_MODULE
,},
134 .phy_id
= PHY_ID_AQ2104
,
135 .phy_id_mask
= 0xfffffff0,
136 .name
= "Aquantia AQ2104",
137 .features
= PHY_AQUANTIA_FEATURES
,
138 .flags
= PHY_HAS_INTERRUPT
,
139 .aneg_done
= aquantia_aneg_done
,
140 .config_aneg
= aquantia_config_aneg
,
141 .config_intr
= aquantia_config_intr
,
142 .ack_interrupt
= aquantia_ack_interrupt
,
143 .read_status
= aquantia_read_status
,
144 .driver
= { .owner
= THIS_MODULE
,},
147 .phy_id
= PHY_ID_AQR105
,
148 .phy_id_mask
= 0xfffffff0,
149 .name
= "Aquantia AQR105",
150 .features
= PHY_AQUANTIA_FEATURES
,
151 .flags
= PHY_HAS_INTERRUPT
,
152 .aneg_done
= aquantia_aneg_done
,
153 .config_aneg
= aquantia_config_aneg
,
154 .config_intr
= aquantia_config_intr
,
155 .ack_interrupt
= aquantia_ack_interrupt
,
156 .read_status
= aquantia_read_status
,
157 .driver
= { .owner
= THIS_MODULE
,},
160 .phy_id
= PHY_ID_AQR405
,
161 .phy_id_mask
= 0xfffffff0,
162 .name
= "Aquantia AQR405",
163 .features
= PHY_AQUANTIA_FEATURES
,
164 .flags
= PHY_HAS_INTERRUPT
,
165 .aneg_done
= aquantia_aneg_done
,
166 .config_aneg
= aquantia_config_aneg
,
167 .config_intr
= aquantia_config_intr
,
168 .ack_interrupt
= aquantia_ack_interrupt
,
169 .read_status
= aquantia_read_status
,
170 .driver
= { .owner
= THIS_MODULE
,},
174 module_phy_driver(aquantia_driver
);
176 static struct mdio_device_id __maybe_unused aquantia_tbl
[] = {
177 { PHY_ID_AQ1202
, 0xfffffff0 },
178 { PHY_ID_AQ2104
, 0xfffffff0 },
179 { PHY_ID_AQR105
, 0xfffffff0 },
180 { PHY_ID_AQR405
, 0xfffffff0 },
184 MODULE_DEVICE_TABLE(mdio
, aquantia_tbl
);
186 MODULE_DESCRIPTION("Aquantia PHY driver");
187 MODULE_AUTHOR("Shaohui Xie <Shaohui.Xie@freescale.com>");
188 MODULE_LICENSE("GPL v2");