aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/of/of_mdio.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/of/of_mdio.c')
-rw-r--r--drivers/of/of_mdio.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/drivers/of/of_mdio.c b/drivers/of/of_mdio.c
index b5aa004a24b6..5648317d355f 100644
--- a/drivers/of/of_mdio.c
+++ b/drivers/of/of_mdio.c
@@ -143,11 +143,31 @@ int of_mdio_parse_addr(struct device *dev, const struct device_node *np)
143} 143}
144EXPORT_SYMBOL(of_mdio_parse_addr); 144EXPORT_SYMBOL(of_mdio_parse_addr);
145 145
146/* The following is a list of PHY compatible strings which appear in
147 * some DTBs. The compatible string is never matched against a PHY
148 * driver, so is pointless. We only expect devices which are not PHYs
149 * to have a compatible string, so they can be matched to an MDIO
150 * driver. Encourage users to upgrade their DT blobs to remove these.
151 */
152static const struct of_device_id whitelist_phys[] = {
153 { .compatible = "brcm,40nm-ephy" },
154 { .compatible = "marvell,88E1111", },
155 { .compatible = "marvell,88e1116", },
156 { .compatible = "marvell,88e1118", },
157 { .compatible = "marvell,88e1149r", },
158 { .compatible = "marvell,88e1310", },
159 { .compatible = "marvell,88E1510", },
160 { .compatible = "marvell,88E1514", },
161 { .compatible = "moxa,moxart-rtl8201cp", },
162 {}
163};
164
146/* 165/*
147 * Return true if the child node is for a phy. It must either: 166 * Return true if the child node is for a phy. It must either:
148 * o Compatible string of "ethernet-phy-idX.X" 167 * o Compatible string of "ethernet-phy-idX.X"
149 * o Compatible string of "ethernet-phy-ieee802.3-c45" 168 * o Compatible string of "ethernet-phy-ieee802.3-c45"
150 * o Compatible string of "ethernet-phy-ieee802.3-c22" 169 * o Compatible string of "ethernet-phy-ieee802.3-c22"
170 * o In the white list above (and issue a warning)
151 * o No compatibility string 171 * o No compatibility string
152 * 172 *
153 * A device which is not a phy is expected to have a compatible string 173 * A device which is not a phy is expected to have a compatible string
@@ -166,6 +186,13 @@ static bool of_mdiobus_child_is_phy(struct device_node *child)
166 if (of_device_is_compatible(child, "ethernet-phy-ieee802.3-c22")) 186 if (of_device_is_compatible(child, "ethernet-phy-ieee802.3-c22"))
167 return true; 187 return true;
168 188
189 if (of_match_node(whitelist_phys, child)) {
190 pr_warn(FW_WARN
191 "%s: Whitelisted compatible string. Please remove\n",
192 child->full_name);
193 return true;
194 }
195
169 if (!of_find_property(child, "compatible", NULL)) 196 if (!of_find_property(child, "compatible", NULL))
170 return true; 197 return true;
171 198