Ye Li | 5fe419e | 2020-05-03 22:41:14 +0800 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | /* |
| 3 | * Copyright 2020 NXP |
| 4 | */ |
| 5 | |
Patrick Delaunay | a5db6e1 | 2021-07-20 20:15:28 +0200 | [diff] [blame] | 6 | #define LOG_CATEGORY UCLASS_ETH_PHY |
| 7 | |
Ye Li | 5fe419e | 2020-05-03 22:41:14 +0800 | [diff] [blame] | 8 | #include <common.h> |
| 9 | #include <dm.h> |
Patrick Delaunay | 880ecb0 | 2021-07-20 20:09:52 +0200 | [diff] [blame] | 10 | #include <log.h> |
Ye Li | 5fe419e | 2020-05-03 22:41:14 +0800 | [diff] [blame] | 11 | #include <net.h> |
Patrick Delaunay | d33982d | 2021-07-20 20:09:51 +0200 | [diff] [blame] | 12 | #include <asm-generic/gpio.h> |
Patrick Delaunay | 880ecb0 | 2021-07-20 20:09:52 +0200 | [diff] [blame] | 13 | #include <dm/device_compat.h> |
Ye Li | 5fe419e | 2020-05-03 22:41:14 +0800 | [diff] [blame] | 14 | #include <dm/device-internal.h> |
| 15 | #include <dm/uclass-internal.h> |
| 16 | #include <dm/lists.h> |
Patrick Delaunay | d33982d | 2021-07-20 20:09:51 +0200 | [diff] [blame] | 17 | #include <linux/delay.h> |
Ye Li | 5fe419e | 2020-05-03 22:41:14 +0800 | [diff] [blame] | 18 | |
| 19 | struct eth_phy_device_priv { |
| 20 | struct mii_dev *mdio_bus; |
Patrick Delaunay | d33982d | 2021-07-20 20:09:51 +0200 | [diff] [blame] | 21 | struct gpio_desc reset_gpio; |
| 22 | u32 reset_assert_delay; |
| 23 | u32 reset_deassert_delay; |
Ye Li | 5fe419e | 2020-05-03 22:41:14 +0800 | [diff] [blame] | 24 | }; |
| 25 | |
| 26 | int eth_phy_binds_nodes(struct udevice *eth_dev) |
| 27 | { |
| 28 | ofnode mdio_node, phy_node; |
| 29 | const char *node_name; |
| 30 | int ret; |
| 31 | |
Patrick Delaunay | 035d848 | 2021-07-20 20:09:53 +0200 | [diff] [blame] | 32 | /* search a subnode named "mdio.*" */ |
| 33 | dev_for_each_subnode(mdio_node, eth_dev) { |
| 34 | node_name = ofnode_get_name(mdio_node); |
| 35 | if (!strncmp(node_name, "mdio", 4)) |
| 36 | break; |
| 37 | } |
Ye Li | 5fe419e | 2020-05-03 22:41:14 +0800 | [diff] [blame] | 38 | if (!ofnode_valid(mdio_node)) { |
Patrick Delaunay | 035d848 | 2021-07-20 20:09:53 +0200 | [diff] [blame] | 39 | dev_dbg(eth_dev, "%s: %s mdio subnode not found!\n", __func__, |
Patrick Delaunay | 880ecb0 | 2021-07-20 20:09:52 +0200 | [diff] [blame] | 40 | eth_dev->name); |
Ye Li | 5fe419e | 2020-05-03 22:41:14 +0800 | [diff] [blame] | 41 | return -ENXIO; |
| 42 | } |
Patrick Delaunay | 035d848 | 2021-07-20 20:09:53 +0200 | [diff] [blame] | 43 | dev_dbg(eth_dev, "%s: %s subnode found!\n", __func__, node_name); |
Ye Li | 5fe419e | 2020-05-03 22:41:14 +0800 | [diff] [blame] | 44 | |
| 45 | ofnode_for_each_subnode(phy_node, mdio_node) { |
| 46 | node_name = ofnode_get_name(phy_node); |
| 47 | |
Patrick Delaunay | 880ecb0 | 2021-07-20 20:09:52 +0200 | [diff] [blame] | 48 | dev_dbg(eth_dev, "* Found child node: '%s'\n", node_name); |
Ye Li | 5fe419e | 2020-05-03 22:41:14 +0800 | [diff] [blame] | 49 | |
| 50 | ret = device_bind_driver_to_node(eth_dev, |
| 51 | "eth_phy_generic_drv", |
| 52 | node_name, phy_node, NULL); |
| 53 | if (ret) { |
Patrick Delaunay | 880ecb0 | 2021-07-20 20:09:52 +0200 | [diff] [blame] | 54 | dev_dbg(eth_dev, " - Eth phy binding error: %d\n", ret); |
Ye Li | 5fe419e | 2020-05-03 22:41:14 +0800 | [diff] [blame] | 55 | continue; |
| 56 | } |
| 57 | |
Patrick Delaunay | 880ecb0 | 2021-07-20 20:09:52 +0200 | [diff] [blame] | 58 | dev_dbg(eth_dev, " - bound phy device: '%s'\n", node_name); |
Ye Li | 5fe419e | 2020-05-03 22:41:14 +0800 | [diff] [blame] | 59 | } |
| 60 | |
| 61 | return 0; |
| 62 | } |
| 63 | |
| 64 | int eth_phy_set_mdio_bus(struct udevice *eth_dev, struct mii_dev *mdio_bus) |
| 65 | { |
| 66 | struct udevice *dev; |
| 67 | struct eth_phy_device_priv *uc_priv; |
| 68 | |
| 69 | for (uclass_first_device(UCLASS_ETH_PHY, &dev); dev; |
| 70 | uclass_next_device(&dev)) { |
| 71 | if (dev->parent == eth_dev) { |
Simon Glass | 0fd3d91 | 2020-12-22 19:30:28 -0700 | [diff] [blame] | 72 | uc_priv = (struct eth_phy_device_priv *)(dev_get_uclass_priv(dev)); |
Ye Li | 5fe419e | 2020-05-03 22:41:14 +0800 | [diff] [blame] | 73 | |
| 74 | if (!uc_priv->mdio_bus) |
| 75 | uc_priv->mdio_bus = mdio_bus; |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | return 0; |
| 80 | } |
| 81 | |
| 82 | struct mii_dev *eth_phy_get_mdio_bus(struct udevice *eth_dev) |
| 83 | { |
| 84 | int ret; |
| 85 | struct udevice *phy_dev; |
| 86 | struct eth_phy_device_priv *uc_priv; |
| 87 | |
| 88 | /* Will probe the parent of phy device, then phy device */ |
| 89 | ret = uclass_get_device_by_phandle(UCLASS_ETH_PHY, eth_dev, |
| 90 | "phy-handle", &phy_dev); |
| 91 | if (!ret) { |
| 92 | if (eth_dev != phy_dev->parent) { |
| 93 | /* |
| 94 | * phy_dev is shared and controlled by |
| 95 | * other eth controller |
| 96 | */ |
Simon Glass | 0fd3d91 | 2020-12-22 19:30:28 -0700 | [diff] [blame] | 97 | uc_priv = (struct eth_phy_device_priv *)(dev_get_uclass_priv(phy_dev)); |
Ye Li | 5fe419e | 2020-05-03 22:41:14 +0800 | [diff] [blame] | 98 | if (uc_priv->mdio_bus) |
Patrick Delaunay | 880ecb0 | 2021-07-20 20:09:52 +0200 | [diff] [blame] | 99 | log_notice("Get shared mii bus on %s\n", eth_dev->name); |
Ye Li | 5fe419e | 2020-05-03 22:41:14 +0800 | [diff] [blame] | 100 | else |
Patrick Delaunay | 880ecb0 | 2021-07-20 20:09:52 +0200 | [diff] [blame] | 101 | log_notice("Can't get shared mii bus on %s\n", eth_dev->name); |
Ye Li | 5fe419e | 2020-05-03 22:41:14 +0800 | [diff] [blame] | 102 | |
| 103 | return uc_priv->mdio_bus; |
| 104 | } |
| 105 | } else { |
Marek Vasut | 766ba78 | 2022-01-01 20:12:23 +0100 | [diff] [blame] | 106 | log_debug("Can't find phy-handle for %s\n", eth_dev->name); |
Ye Li | 5fe419e | 2020-05-03 22:41:14 +0800 | [diff] [blame] | 107 | } |
| 108 | |
| 109 | return NULL; |
| 110 | } |
| 111 | |
| 112 | int eth_phy_get_addr(struct udevice *dev) |
| 113 | { |
| 114 | struct ofnode_phandle_args phandle_args; |
| 115 | int reg; |
| 116 | |
| 117 | if (dev_read_phandle_with_args(dev, "phy-handle", NULL, 0, 0, |
| 118 | &phandle_args)) { |
Patrick Delaunay | 880ecb0 | 2021-07-20 20:09:52 +0200 | [diff] [blame] | 119 | dev_dbg(dev, "Failed to find phy-handle"); |
Ye Li | 5fe419e | 2020-05-03 22:41:14 +0800 | [diff] [blame] | 120 | return -ENODEV; |
| 121 | } |
| 122 | |
| 123 | reg = ofnode_read_u32_default(phandle_args.node, "reg", 0); |
| 124 | |
| 125 | return reg; |
| 126 | } |
| 127 | |
Patrick Delaunay | d33982d | 2021-07-20 20:09:51 +0200 | [diff] [blame] | 128 | /* parsing generic properties of devicetree/bindings/net/ethernet-phy.yaml */ |
| 129 | static int eth_phy_of_to_plat(struct udevice *dev) |
| 130 | { |
| 131 | struct eth_phy_device_priv *uc_priv = dev_get_uclass_priv(dev); |
| 132 | int ret; |
| 133 | |
| 134 | if (!CONFIG_IS_ENABLED(DM_GPIO)) |
| 135 | return 0; |
| 136 | |
| 137 | /* search "reset-gpios" in phy node */ |
| 138 | ret = gpio_request_by_name(dev, "reset-gpios", 0, |
| 139 | &uc_priv->reset_gpio, |
Tim Harvey | f3409d7 | 2022-03-01 12:15:02 -0800 | [diff] [blame] | 140 | GPIOD_IS_OUT | GPIOD_IS_OUT_ACTIVE); |
Marek Vasut | 8777033 | 2021-11-13 03:23:11 +0100 | [diff] [blame] | 141 | if (ret && ret != -ENOENT) |
Patrick Delaunay | d33982d | 2021-07-20 20:09:51 +0200 | [diff] [blame] | 142 | return ret; |
| 143 | |
| 144 | uc_priv->reset_assert_delay = dev_read_u32_default(dev, "reset-assert-us", 0); |
| 145 | uc_priv->reset_deassert_delay = dev_read_u32_default(dev, "reset-deassert-us", 0); |
| 146 | |
| 147 | return 0; |
| 148 | } |
| 149 | |
| 150 | void eth_phy_reset(struct udevice *dev, int value) |
| 151 | { |
| 152 | struct eth_phy_device_priv *uc_priv = dev_get_uclass_priv(dev); |
| 153 | u32 delay; |
| 154 | |
| 155 | if (!CONFIG_IS_ENABLED(DM_GPIO)) |
| 156 | return; |
| 157 | |
| 158 | if (!dm_gpio_is_valid(&uc_priv->reset_gpio)) |
| 159 | return; |
| 160 | |
| 161 | dm_gpio_set_value(&uc_priv->reset_gpio, value); |
| 162 | |
| 163 | delay = value ? uc_priv->reset_assert_delay : uc_priv->reset_deassert_delay; |
| 164 | if (delay) |
| 165 | udelay(delay); |
| 166 | } |
| 167 | |
| 168 | static int eth_phy_pre_probe(struct udevice *dev) |
| 169 | { |
| 170 | /* Assert and deassert the reset signal */ |
| 171 | eth_phy_reset(dev, 1); |
| 172 | eth_phy_reset(dev, 0); |
| 173 | |
| 174 | return 0; |
| 175 | } |
| 176 | |
Ye Li | 5fe419e | 2020-05-03 22:41:14 +0800 | [diff] [blame] | 177 | UCLASS_DRIVER(eth_phy_generic) = { |
| 178 | .id = UCLASS_ETH_PHY, |
| 179 | .name = "eth_phy_generic", |
Simon Glass | 41575d8 | 2020-12-03 16:55:17 -0700 | [diff] [blame] | 180 | .per_device_auto = sizeof(struct eth_phy_device_priv), |
Patrick Delaunay | d33982d | 2021-07-20 20:09:51 +0200 | [diff] [blame] | 181 | .pre_probe = eth_phy_pre_probe, |
Ye Li | 5fe419e | 2020-05-03 22:41:14 +0800 | [diff] [blame] | 182 | }; |
| 183 | |
| 184 | U_BOOT_DRIVER(eth_phy_generic_drv) = { |
| 185 | .name = "eth_phy_generic_drv", |
| 186 | .id = UCLASS_ETH_PHY, |
Patrick Delaunay | d33982d | 2021-07-20 20:09:51 +0200 | [diff] [blame] | 187 | .of_to_plat = eth_phy_of_to_plat, |
Ye Li | 5fe419e | 2020-05-03 22:41:14 +0800 | [diff] [blame] | 188 | }; |