Jon Mason | f6a95a2 | 2016-07-07 19:08:57 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2016 Broadcom |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or |
| 5 | * modify it under the terms of the GNU General Public License as |
| 6 | * published by the Free Software Foundation version 2. |
| 7 | * |
| 8 | * This program is distributed "as is" WITHOUT ANY WARRANTY of any |
| 9 | * kind, whether express or implied; without even the implied warranty |
| 10 | * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 11 | * GNU General Public License for more details. |
| 12 | */ |
| 13 | |
| 14 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 15 | |
| 16 | #include <linux/bcma/bcma.h> |
Jon Mason | dd5c5d0 | 2016-11-04 01:11:01 -0400 | [diff] [blame] | 17 | #include <linux/brcmphy.h> |
Jon Mason | f6a95a2 | 2016-07-07 19:08:57 -0400 | [diff] [blame] | 18 | #include <linux/etherdevice.h> |
| 19 | #include <linux/of_address.h> |
Jon Mason | 1676aba5ef | 2016-11-04 01:11:00 -0400 | [diff] [blame] | 20 | #include <linux/of_mdio.h> |
Jon Mason | f6a95a2 | 2016-07-07 19:08:57 -0400 | [diff] [blame] | 21 | #include <linux/of_net.h> |
| 22 | #include "bgmac.h" |
| 23 | |
Joey Zhong | f3537b3 | 2017-02-28 13:51:01 -0500 | [diff] [blame] | 24 | #define NICPM_PADRING_CFG 0x00000004 |
Jon Mason | dd5c5d0 | 2016-11-04 01:11:01 -0400 | [diff] [blame] | 25 | #define NICPM_IOMUX_CTRL 0x00000008 |
| 26 | |
Joey Zhong | f3537b3 | 2017-02-28 13:51:01 -0500 | [diff] [blame] | 27 | #define NICPM_PADRING_CFG_INIT_VAL 0x74000000 |
| 28 | #define NICPM_IOMUX_CTRL_INIT_VAL_AX 0x21880000 |
| 29 | |
Jon Mason | dd5c5d0 | 2016-11-04 01:11:01 -0400 | [diff] [blame] | 30 | #define NICPM_IOMUX_CTRL_INIT_VAL 0x3196e000 |
| 31 | #define NICPM_IOMUX_CTRL_SPD_SHIFT 10 |
| 32 | #define NICPM_IOMUX_CTRL_SPD_10M 0 |
| 33 | #define NICPM_IOMUX_CTRL_SPD_100M 1 |
| 34 | #define NICPM_IOMUX_CTRL_SPD_1000M 2 |
| 35 | |
Jon Mason | f6a95a2 | 2016-07-07 19:08:57 -0400 | [diff] [blame] | 36 | static u32 platform_bgmac_read(struct bgmac *bgmac, u16 offset) |
| 37 | { |
| 38 | return readl(bgmac->plat.base + offset); |
| 39 | } |
| 40 | |
| 41 | static void platform_bgmac_write(struct bgmac *bgmac, u16 offset, u32 value) |
| 42 | { |
| 43 | writel(value, bgmac->plat.base + offset); |
| 44 | } |
| 45 | |
| 46 | static u32 platform_bgmac_idm_read(struct bgmac *bgmac, u16 offset) |
| 47 | { |
| 48 | return readl(bgmac->plat.idm_base + offset); |
| 49 | } |
| 50 | |
| 51 | static void platform_bgmac_idm_write(struct bgmac *bgmac, u16 offset, u32 value) |
| 52 | { |
Abhishek Shah | 83a5c5a | 2017-07-14 00:34:07 +0530 | [diff] [blame] | 53 | writel(value, bgmac->plat.idm_base + offset); |
Jon Mason | f6a95a2 | 2016-07-07 19:08:57 -0400 | [diff] [blame] | 54 | } |
| 55 | |
| 56 | static bool platform_bgmac_clk_enabled(struct bgmac *bgmac) |
| 57 | { |
Abhishek Shah | a163bdb | 2017-07-14 00:34:08 +0530 | [diff] [blame] | 58 | if (!bgmac->plat.idm_base) |
| 59 | return true; |
| 60 | |
Jon Mason | 1620652 | 2017-03-02 17:59:56 -0500 | [diff] [blame] | 61 | if ((bgmac_idm_read(bgmac, BCMA_IOCTL) & BGMAC_CLK_EN) != BGMAC_CLK_EN) |
Jon Mason | f6a95a2 | 2016-07-07 19:08:57 -0400 | [diff] [blame] | 62 | return false; |
| 63 | if (bgmac_idm_read(bgmac, BCMA_RESET_CTL) & BCMA_RESET_CTL_RESET) |
| 64 | return false; |
| 65 | return true; |
| 66 | } |
| 67 | |
| 68 | static void platform_bgmac_clk_enable(struct bgmac *bgmac, u32 flags) |
| 69 | { |
Jon Mason | 1620652 | 2017-03-02 17:59:56 -0500 | [diff] [blame] | 70 | u32 val; |
Jon Mason | f6a95a2 | 2016-07-07 19:08:57 -0400 | [diff] [blame] | 71 | |
Abhishek Shah | a163bdb | 2017-07-14 00:34:08 +0530 | [diff] [blame] | 72 | if (!bgmac->plat.idm_base) |
| 73 | return; |
| 74 | |
Jon Mason | 1620652 | 2017-03-02 17:59:56 -0500 | [diff] [blame] | 75 | /* The Reset Control register only contains a single bit to show if the |
| 76 | * controller is currently in reset. Do a sanity check here, just in |
| 77 | * case the bootloader happened to leave the device in reset. |
| 78 | */ |
| 79 | val = bgmac_idm_read(bgmac, BCMA_RESET_CTL); |
| 80 | if (val) { |
| 81 | bgmac_idm_write(bgmac, BCMA_RESET_CTL, 0); |
| 82 | bgmac_idm_read(bgmac, BCMA_RESET_CTL); |
| 83 | udelay(1); |
| 84 | } |
Jon Mason | f6a95a2 | 2016-07-07 19:08:57 -0400 | [diff] [blame] | 85 | |
Jon Mason | 1620652 | 2017-03-02 17:59:56 -0500 | [diff] [blame] | 86 | val = bgmac_idm_read(bgmac, BCMA_IOCTL); |
| 87 | /* Some bits of BCMA_IOCTL set by HW/ATF and should not change */ |
| 88 | val |= flags & ~(BGMAC_AWCACHE | BGMAC_ARCACHE | BGMAC_AWUSER | |
| 89 | BGMAC_ARUSER); |
| 90 | val |= BGMAC_CLK_EN; |
| 91 | bgmac_idm_write(bgmac, BCMA_IOCTL, val); |
Jon Mason | f6a95a2 | 2016-07-07 19:08:57 -0400 | [diff] [blame] | 92 | bgmac_idm_read(bgmac, BCMA_IOCTL); |
| 93 | udelay(1); |
| 94 | } |
| 95 | |
| 96 | static void platform_bgmac_cco_ctl_maskset(struct bgmac *bgmac, u32 offset, |
| 97 | u32 mask, u32 set) |
| 98 | { |
| 99 | /* This shouldn't be encountered */ |
| 100 | WARN_ON(1); |
| 101 | } |
| 102 | |
| 103 | static u32 platform_bgmac_get_bus_clock(struct bgmac *bgmac) |
| 104 | { |
| 105 | /* This shouldn't be encountered */ |
| 106 | WARN_ON(1); |
| 107 | |
| 108 | return 0; |
| 109 | } |
| 110 | |
| 111 | static void platform_bgmac_cmn_maskset32(struct bgmac *bgmac, u16 offset, |
| 112 | u32 mask, u32 set) |
| 113 | { |
| 114 | /* This shouldn't be encountered */ |
| 115 | WARN_ON(1); |
| 116 | } |
| 117 | |
Jon Mason | dd5c5d0 | 2016-11-04 01:11:01 -0400 | [diff] [blame] | 118 | static void bgmac_nicpm_speed_set(struct net_device *net_dev) |
| 119 | { |
| 120 | struct bgmac *bgmac = netdev_priv(net_dev); |
| 121 | u32 val; |
| 122 | |
| 123 | if (!bgmac->plat.nicpm_base) |
| 124 | return; |
| 125 | |
Joey Zhong | f3537b3 | 2017-02-28 13:51:01 -0500 | [diff] [blame] | 126 | /* SET RGMII IO CONFIG */ |
| 127 | writel(NICPM_PADRING_CFG_INIT_VAL, |
| 128 | bgmac->plat.nicpm_base + NICPM_PADRING_CFG); |
| 129 | |
Jon Mason | dd5c5d0 | 2016-11-04 01:11:01 -0400 | [diff] [blame] | 130 | val = NICPM_IOMUX_CTRL_INIT_VAL; |
| 131 | switch (bgmac->net_dev->phydev->speed) { |
| 132 | default: |
| 133 | netdev_err(net_dev, "Unsupported speed. Defaulting to 1000Mb\n"); |
Gustavo A. R. Silva | d9b9c0e | 2017-11-08 11:24:57 -0600 | [diff] [blame] | 134 | /* fall through */ |
Jon Mason | dd5c5d0 | 2016-11-04 01:11:01 -0400 | [diff] [blame] | 135 | case SPEED_1000: |
| 136 | val |= NICPM_IOMUX_CTRL_SPD_1000M << NICPM_IOMUX_CTRL_SPD_SHIFT; |
| 137 | break; |
| 138 | case SPEED_100: |
| 139 | val |= NICPM_IOMUX_CTRL_SPD_100M << NICPM_IOMUX_CTRL_SPD_SHIFT; |
| 140 | break; |
| 141 | case SPEED_10: |
| 142 | val |= NICPM_IOMUX_CTRL_SPD_10M << NICPM_IOMUX_CTRL_SPD_SHIFT; |
| 143 | break; |
| 144 | } |
| 145 | |
| 146 | writel(val, bgmac->plat.nicpm_base + NICPM_IOMUX_CTRL); |
| 147 | |
| 148 | bgmac_adjust_link(bgmac->net_dev); |
| 149 | } |
| 150 | |
Jon Mason | 1676aba5ef | 2016-11-04 01:11:00 -0400 | [diff] [blame] | 151 | static int platform_phy_connect(struct bgmac *bgmac) |
| 152 | { |
| 153 | struct phy_device *phy_dev; |
| 154 | |
Jon Mason | dd5c5d0 | 2016-11-04 01:11:01 -0400 | [diff] [blame] | 155 | if (bgmac->plat.nicpm_base) |
| 156 | phy_dev = of_phy_get_and_connect(bgmac->net_dev, |
| 157 | bgmac->dev->of_node, |
| 158 | bgmac_nicpm_speed_set); |
| 159 | else |
| 160 | phy_dev = of_phy_get_and_connect(bgmac->net_dev, |
| 161 | bgmac->dev->of_node, |
| 162 | bgmac_adjust_link); |
Jon Mason | 1676aba5ef | 2016-11-04 01:11:00 -0400 | [diff] [blame] | 163 | if (!phy_dev) { |
| 164 | dev_err(bgmac->dev, "PHY connection failed\n"); |
| 165 | return -ENODEV; |
| 166 | } |
| 167 | |
| 168 | return 0; |
| 169 | } |
| 170 | |
Jon Mason | f6a95a2 | 2016-07-07 19:08:57 -0400 | [diff] [blame] | 171 | static int bgmac_probe(struct platform_device *pdev) |
| 172 | { |
| 173 | struct device_node *np = pdev->dev.of_node; |
| 174 | struct bgmac *bgmac; |
| 175 | struct resource *regs; |
| 176 | const u8 *mac_addr; |
| 177 | |
Rafał Miłecki | 34a5102 | 2017-01-31 19:37:54 +0100 | [diff] [blame] | 178 | bgmac = bgmac_alloc(&pdev->dev); |
Jon Mason | f6a95a2 | 2016-07-07 19:08:57 -0400 | [diff] [blame] | 179 | if (!bgmac) |
| 180 | return -ENOMEM; |
| 181 | |
| 182 | platform_set_drvdata(pdev, bgmac); |
| 183 | |
| 184 | /* Set the features of the 4707 family */ |
| 185 | bgmac->feature_flags |= BGMAC_FEAT_CLKCTLST; |
| 186 | bgmac->feature_flags |= BGMAC_FEAT_NO_RESET; |
Jon Mason | f6a95a2 | 2016-07-07 19:08:57 -0400 | [diff] [blame] | 187 | bgmac->feature_flags |= BGMAC_FEAT_CMDCFG_SR_REV4; |
| 188 | bgmac->feature_flags |= BGMAC_FEAT_TX_MASK_SETUP; |
| 189 | bgmac->feature_flags |= BGMAC_FEAT_RX_MASK_SETUP; |
Abhishek Shah | a163bdb | 2017-07-14 00:34:08 +0530 | [diff] [blame] | 190 | bgmac->feature_flags |= BGMAC_FEAT_IDM_MASK; |
Jon Mason | f6a95a2 | 2016-07-07 19:08:57 -0400 | [diff] [blame] | 191 | |
| 192 | bgmac->dev = &pdev->dev; |
| 193 | bgmac->dma_dev = &pdev->dev; |
| 194 | |
| 195 | mac_addr = of_get_mac_address(np); |
| 196 | if (mac_addr) |
Tobias Klauser | 6850f8b | 2017-02-16 15:11:19 +0100 | [diff] [blame] | 197 | ether_addr_copy(bgmac->net_dev->dev_addr, mac_addr); |
Jon Mason | f6a95a2 | 2016-07-07 19:08:57 -0400 | [diff] [blame] | 198 | else |
| 199 | dev_warn(&pdev->dev, "MAC address not present in device tree\n"); |
| 200 | |
| 201 | bgmac->irq = platform_get_irq(pdev, 0); |
| 202 | if (bgmac->irq < 0) { |
| 203 | dev_err(&pdev->dev, "Unable to obtain IRQ\n"); |
| 204 | return bgmac->irq; |
| 205 | } |
| 206 | |
| 207 | regs = platform_get_resource_byname(pdev, IORESOURCE_MEM, "amac_base"); |
| 208 | if (!regs) { |
| 209 | dev_err(&pdev->dev, "Unable to obtain base resource\n"); |
| 210 | return -EINVAL; |
| 211 | } |
| 212 | |
| 213 | bgmac->plat.base = devm_ioremap_resource(&pdev->dev, regs); |
Wei Yongjun | ce3a380 | 2016-07-13 12:46:57 +0000 | [diff] [blame] | 214 | if (IS_ERR(bgmac->plat.base)) |
Jon Mason | f6a95a2 | 2016-07-07 19:08:57 -0400 | [diff] [blame] | 215 | return PTR_ERR(bgmac->plat.base); |
Jon Mason | f6a95a2 | 2016-07-07 19:08:57 -0400 | [diff] [blame] | 216 | |
| 217 | regs = platform_get_resource_byname(pdev, IORESOURCE_MEM, "idm_base"); |
Abhishek Shah | a163bdb | 2017-07-14 00:34:08 +0530 | [diff] [blame] | 218 | if (regs) { |
| 219 | bgmac->plat.idm_base = devm_ioremap_resource(&pdev->dev, regs); |
| 220 | if (IS_ERR(bgmac->plat.idm_base)) |
| 221 | return PTR_ERR(bgmac->plat.idm_base); |
| 222 | bgmac->feature_flags &= ~BGMAC_FEAT_IDM_MASK; |
Jon Mason | f6a95a2 | 2016-07-07 19:08:57 -0400 | [diff] [blame] | 223 | } |
| 224 | |
Jon Mason | dd5c5d0 | 2016-11-04 01:11:01 -0400 | [diff] [blame] | 225 | regs = platform_get_resource_byname(pdev, IORESOURCE_MEM, "nicpm_base"); |
| 226 | if (regs) { |
| 227 | bgmac->plat.nicpm_base = devm_ioremap_resource(&pdev->dev, |
| 228 | regs); |
| 229 | if (IS_ERR(bgmac->plat.nicpm_base)) |
| 230 | return PTR_ERR(bgmac->plat.nicpm_base); |
| 231 | } |
| 232 | |
Jon Mason | f6a95a2 | 2016-07-07 19:08:57 -0400 | [diff] [blame] | 233 | bgmac->read = platform_bgmac_read; |
| 234 | bgmac->write = platform_bgmac_write; |
| 235 | bgmac->idm_read = platform_bgmac_idm_read; |
| 236 | bgmac->idm_write = platform_bgmac_idm_write; |
| 237 | bgmac->clk_enabled = platform_bgmac_clk_enabled; |
| 238 | bgmac->clk_enable = platform_bgmac_clk_enable; |
| 239 | bgmac->cco_ctl_maskset = platform_bgmac_cco_ctl_maskset; |
| 240 | bgmac->get_bus_clock = platform_bgmac_get_bus_clock; |
| 241 | bgmac->cmn_maskset32 = platform_bgmac_cmn_maskset32; |
Jon Mason | 1676aba5ef | 2016-11-04 01:11:00 -0400 | [diff] [blame] | 242 | if (of_parse_phandle(np, "phy-handle", 0)) { |
| 243 | bgmac->phy_connect = platform_phy_connect; |
| 244 | } else { |
| 245 | bgmac->phy_connect = bgmac_phy_connect_direct; |
| 246 | bgmac->feature_flags |= BGMAC_FEAT_FORCE_SPEED_2500; |
| 247 | } |
Jon Mason | f6a95a2 | 2016-07-07 19:08:57 -0400 | [diff] [blame] | 248 | |
| 249 | return bgmac_enet_probe(bgmac); |
| 250 | } |
| 251 | |
| 252 | static int bgmac_remove(struct platform_device *pdev) |
| 253 | { |
| 254 | struct bgmac *bgmac = platform_get_drvdata(pdev); |
| 255 | |
| 256 | bgmac_enet_remove(bgmac); |
| 257 | |
| 258 | return 0; |
| 259 | } |
| 260 | |
Joey Zhong | f3537b3 | 2017-02-28 13:51:01 -0500 | [diff] [blame] | 261 | #ifdef CONFIG_PM |
| 262 | static int bgmac_suspend(struct device *dev) |
| 263 | { |
| 264 | struct bgmac *bgmac = dev_get_drvdata(dev); |
| 265 | |
| 266 | return bgmac_enet_suspend(bgmac); |
| 267 | } |
| 268 | |
| 269 | static int bgmac_resume(struct device *dev) |
| 270 | { |
| 271 | struct bgmac *bgmac = dev_get_drvdata(dev); |
| 272 | |
| 273 | return bgmac_enet_resume(bgmac); |
| 274 | } |
| 275 | |
| 276 | static const struct dev_pm_ops bgmac_pm_ops = { |
| 277 | .suspend = bgmac_suspend, |
| 278 | .resume = bgmac_resume |
| 279 | }; |
| 280 | |
| 281 | #define BGMAC_PM_OPS (&bgmac_pm_ops) |
| 282 | #else |
| 283 | #define BGMAC_PM_OPS NULL |
| 284 | #endif /* CONFIG_PM */ |
| 285 | |
Jon Mason | f6a95a2 | 2016-07-07 19:08:57 -0400 | [diff] [blame] | 286 | static const struct of_device_id bgmac_of_enet_match[] = { |
| 287 | {.compatible = "brcm,amac",}, |
| 288 | {.compatible = "brcm,nsp-amac",}, |
Jon Mason | dd5c5d0 | 2016-11-04 01:11:01 -0400 | [diff] [blame] | 289 | {.compatible = "brcm,ns2-amac",}, |
Jon Mason | f6a95a2 | 2016-07-07 19:08:57 -0400 | [diff] [blame] | 290 | {}, |
| 291 | }; |
| 292 | |
| 293 | MODULE_DEVICE_TABLE(of, bgmac_of_enet_match); |
| 294 | |
| 295 | static struct platform_driver bgmac_enet_driver = { |
| 296 | .driver = { |
| 297 | .name = "bgmac-enet", |
| 298 | .of_match_table = bgmac_of_enet_match, |
Joey Zhong | f3537b3 | 2017-02-28 13:51:01 -0500 | [diff] [blame] | 299 | .pm = BGMAC_PM_OPS |
Jon Mason | f6a95a2 | 2016-07-07 19:08:57 -0400 | [diff] [blame] | 300 | }, |
| 301 | .probe = bgmac_probe, |
| 302 | .remove = bgmac_remove, |
| 303 | }; |
| 304 | |
| 305 | module_platform_driver(bgmac_enet_driver); |
| 306 | MODULE_LICENSE("GPL"); |