Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 1 | /* |
| 2 | * phy-ti-pipe3 - PIPE3 PHY driver. |
| 3 | * |
| 4 | * Copyright (C) 2013 Texas Instruments Incorporated - http://www.ti.com |
| 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License as published by |
| 7 | * the Free Software Foundation; either version 2 of the License, or |
| 8 | * (at your option) any later version. |
| 9 | * |
| 10 | * Author: Kishon Vijay Abraham I <kishon@ti.com> |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
| 16 | * |
| 17 | */ |
| 18 | |
| 19 | #include <linux/module.h> |
| 20 | #include <linux/platform_device.h> |
| 21 | #include <linux/slab.h> |
| 22 | #include <linux/phy/phy.h> |
| 23 | #include <linux/of.h> |
| 24 | #include <linux/clk.h> |
| 25 | #include <linux/err.h> |
| 26 | #include <linux/io.h> |
| 27 | #include <linux/pm_runtime.h> |
| 28 | #include <linux/delay.h> |
Kishon Vijay Abraham I | 14da699 | 2014-03-06 16:38:37 +0200 | [diff] [blame] | 29 | #include <linux/phy/omap_control_phy.h> |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 30 | #include <linux/of_platform.h> |
Roger Quadros | 6e73843 | 2015-01-13 14:23:19 +0200 | [diff] [blame] | 31 | #include <linux/spinlock.h> |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 32 | |
| 33 | #define PLL_STATUS 0x00000004 |
| 34 | #define PLL_GO 0x00000008 |
| 35 | #define PLL_CONFIGURATION1 0x0000000C |
| 36 | #define PLL_CONFIGURATION2 0x00000010 |
| 37 | #define PLL_CONFIGURATION3 0x00000014 |
| 38 | #define PLL_CONFIGURATION4 0x00000020 |
| 39 | |
| 40 | #define PLL_REGM_MASK 0x001FFE00 |
| 41 | #define PLL_REGM_SHIFT 0x9 |
| 42 | #define PLL_REGM_F_MASK 0x0003FFFF |
| 43 | #define PLL_REGM_F_SHIFT 0x0 |
| 44 | #define PLL_REGN_MASK 0x000001FE |
| 45 | #define PLL_REGN_SHIFT 0x1 |
| 46 | #define PLL_SELFREQDCO_MASK 0x0000000E |
| 47 | #define PLL_SELFREQDCO_SHIFT 0x1 |
| 48 | #define PLL_SD_MASK 0x0003FC00 |
Roger Quadros | 1562864f | 2014-03-07 11:27:09 +0530 | [diff] [blame] | 49 | #define PLL_SD_SHIFT 10 |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 50 | #define SET_PLL_GO 0x1 |
Roger Quadros | 629138d | 2014-03-06 16:38:43 +0200 | [diff] [blame] | 51 | #define PLL_LDOPWDN BIT(15) |
| 52 | #define PLL_TICOPWDN BIT(16) |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 53 | #define PLL_LOCK 0x2 |
| 54 | #define PLL_IDLE 0x1 |
| 55 | |
| 56 | /* |
| 57 | * This is an Empirical value that works, need to confirm the actual |
| 58 | * value required for the PIPE3PHY_PLL_CONFIGURATION2.PLL_IDLE status |
| 59 | * to be correctly reflected in the PIPE3PHY_PLL_STATUS register. |
| 60 | */ |
Roger Quadros | 629138d | 2014-03-06 16:38:43 +0200 | [diff] [blame] | 61 | #define PLL_IDLE_TIME 100 /* in milliseconds */ |
| 62 | #define PLL_LOCK_TIME 100 /* in milliseconds */ |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 63 | |
| 64 | struct pipe3_dpll_params { |
| 65 | u16 m; |
| 66 | u8 n; |
| 67 | u8 freq:3; |
| 68 | u8 sd; |
| 69 | u32 mf; |
| 70 | }; |
| 71 | |
Roger Quadros | 61f5467 | 2014-03-07 11:43:39 +0530 | [diff] [blame] | 72 | struct pipe3_dpll_map { |
| 73 | unsigned long rate; |
| 74 | struct pipe3_dpll_params params; |
| 75 | }; |
| 76 | |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 77 | struct ti_pipe3 { |
| 78 | void __iomem *pll_ctrl_base; |
| 79 | struct device *dev; |
| 80 | struct device *control_dev; |
| 81 | struct clk *wkupclk; |
| 82 | struct clk *sys_clk; |
Roger Quadros | 1562864f | 2014-03-07 11:27:09 +0530 | [diff] [blame] | 83 | struct clk *refclk; |
Kishon Vijay Abraham I | 99bbd48 | 2014-06-25 23:22:56 +0530 | [diff] [blame] | 84 | struct clk *div_clk; |
Roger Quadros | 61f5467 | 2014-03-07 11:43:39 +0530 | [diff] [blame] | 85 | struct pipe3_dpll_map *dpll_map; |
Roger Quadros | 6e73843 | 2015-01-13 14:23:19 +0200 | [diff] [blame] | 86 | bool enabled; |
| 87 | spinlock_t lock; /* serialize clock enable/disable */ |
Roger Quadros | 7f33912 | 2015-01-13 14:23:20 +0200 | [diff] [blame] | 88 | /* the below flag is needed specifically for SATA */ |
| 89 | bool refclk_enabled; |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 90 | }; |
| 91 | |
Roger Quadros | 61f5467 | 2014-03-07 11:43:39 +0530 | [diff] [blame] | 92 | static struct pipe3_dpll_map dpll_map_usb[] = { |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 93 | {12000000, {1250, 5, 4, 20, 0} }, /* 12 MHz */ |
| 94 | {16800000, {3125, 20, 4, 20, 0} }, /* 16.8 MHz */ |
| 95 | {19200000, {1172, 8, 4, 20, 65537} }, /* 19.2 MHz */ |
| 96 | {20000000, {1000, 7, 4, 10, 0} }, /* 20 MHz */ |
| 97 | {26000000, {1250, 12, 4, 20, 0} }, /* 26 MHz */ |
| 98 | {38400000, {3125, 47, 4, 20, 92843} }, /* 38.4 MHz */ |
Roger Quadros | 61f5467 | 2014-03-07 11:43:39 +0530 | [diff] [blame] | 99 | { }, /* Terminator */ |
| 100 | }; |
| 101 | |
| 102 | static struct pipe3_dpll_map dpll_map_sata[] = { |
| 103 | {12000000, {1000, 7, 4, 6, 0} }, /* 12 MHz */ |
| 104 | {16800000, {714, 7, 4, 6, 0} }, /* 16.8 MHz */ |
| 105 | {19200000, {625, 7, 4, 6, 0} }, /* 19.2 MHz */ |
| 106 | {20000000, {600, 7, 4, 6, 0} }, /* 20 MHz */ |
| 107 | {26000000, {461, 7, 4, 6, 0} }, /* 26 MHz */ |
| 108 | {38400000, {312, 7, 4, 6, 0} }, /* 38.4 MHz */ |
| 109 | { }, /* Terminator */ |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 110 | }; |
| 111 | |
| 112 | static inline u32 ti_pipe3_readl(void __iomem *addr, unsigned offset) |
| 113 | { |
| 114 | return __raw_readl(addr + offset); |
| 115 | } |
| 116 | |
| 117 | static inline void ti_pipe3_writel(void __iomem *addr, unsigned offset, |
| 118 | u32 data) |
| 119 | { |
| 120 | __raw_writel(data, addr + offset); |
| 121 | } |
| 122 | |
Roger Quadros | 61f5467 | 2014-03-07 11:43:39 +0530 | [diff] [blame] | 123 | static struct pipe3_dpll_params *ti_pipe3_get_dpll_params(struct ti_pipe3 *phy) |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 124 | { |
Roger Quadros | 61f5467 | 2014-03-07 11:43:39 +0530 | [diff] [blame] | 125 | unsigned long rate; |
| 126 | struct pipe3_dpll_map *dpll_map = phy->dpll_map; |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 127 | |
Roger Quadros | 61f5467 | 2014-03-07 11:43:39 +0530 | [diff] [blame] | 128 | rate = clk_get_rate(phy->sys_clk); |
| 129 | |
| 130 | for (; dpll_map->rate; dpll_map++) { |
| 131 | if (rate == dpll_map->rate) |
| 132 | return &dpll_map->params; |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 133 | } |
| 134 | |
Roger Quadros | 61f5467 | 2014-03-07 11:43:39 +0530 | [diff] [blame] | 135 | dev_err(phy->dev, "No DPLL configuration for %lu Hz SYS CLK\n", rate); |
| 136 | |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 137 | return NULL; |
| 138 | } |
| 139 | |
| 140 | static int ti_pipe3_power_off(struct phy *x) |
| 141 | { |
| 142 | struct ti_pipe3 *phy = phy_get_drvdata(x); |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 143 | |
Kishon Vijay Abraham I | 14da699 | 2014-03-06 16:38:37 +0200 | [diff] [blame] | 144 | omap_control_phy_power(phy->control_dev, 0); |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 145 | |
| 146 | return 0; |
| 147 | } |
| 148 | |
| 149 | static int ti_pipe3_power_on(struct phy *x) |
| 150 | { |
| 151 | struct ti_pipe3 *phy = phy_get_drvdata(x); |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 152 | |
Roger Quadros | 629138d | 2014-03-06 16:38:43 +0200 | [diff] [blame] | 153 | omap_control_phy_power(phy->control_dev, 1); |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 154 | |
Roger Quadros | 629138d | 2014-03-06 16:38:43 +0200 | [diff] [blame] | 155 | return 0; |
| 156 | } |
| 157 | |
| 158 | static int ti_pipe3_dpll_wait_lock(struct ti_pipe3 *phy) |
| 159 | { |
| 160 | u32 val; |
| 161 | unsigned long timeout; |
| 162 | |
| 163 | timeout = jiffies + msecs_to_jiffies(PLL_LOCK_TIME); |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 164 | do { |
Roger Quadros | 629138d | 2014-03-06 16:38:43 +0200 | [diff] [blame] | 165 | cpu_relax(); |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 166 | val = ti_pipe3_readl(phy->pll_ctrl_base, PLL_STATUS); |
Roger Quadros | 629138d | 2014-03-06 16:38:43 +0200 | [diff] [blame] | 167 | if (val & PLL_LOCK) |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 168 | break; |
Roger Quadros | 629138d | 2014-03-06 16:38:43 +0200 | [diff] [blame] | 169 | } while (!time_after(jiffies, timeout)); |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 170 | |
Roger Quadros | 629138d | 2014-03-06 16:38:43 +0200 | [diff] [blame] | 171 | if (!(val & PLL_LOCK)) { |
| 172 | dev_err(phy->dev, "DPLL failed to lock\n"); |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 173 | return -EBUSY; |
| 174 | } |
| 175 | |
| 176 | return 0; |
| 177 | } |
| 178 | |
Roger Quadros | 629138d | 2014-03-06 16:38:43 +0200 | [diff] [blame] | 179 | static int ti_pipe3_dpll_program(struct ti_pipe3 *phy) |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 180 | { |
| 181 | u32 val; |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 182 | struct pipe3_dpll_params *dpll_params; |
| 183 | |
Roger Quadros | 61f5467 | 2014-03-07 11:43:39 +0530 | [diff] [blame] | 184 | dpll_params = ti_pipe3_get_dpll_params(phy); |
| 185 | if (!dpll_params) |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 186 | return -EINVAL; |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 187 | |
| 188 | val = ti_pipe3_readl(phy->pll_ctrl_base, PLL_CONFIGURATION1); |
| 189 | val &= ~PLL_REGN_MASK; |
| 190 | val |= dpll_params->n << PLL_REGN_SHIFT; |
| 191 | ti_pipe3_writel(phy->pll_ctrl_base, PLL_CONFIGURATION1, val); |
| 192 | |
| 193 | val = ti_pipe3_readl(phy->pll_ctrl_base, PLL_CONFIGURATION2); |
| 194 | val &= ~PLL_SELFREQDCO_MASK; |
| 195 | val |= dpll_params->freq << PLL_SELFREQDCO_SHIFT; |
| 196 | ti_pipe3_writel(phy->pll_ctrl_base, PLL_CONFIGURATION2, val); |
| 197 | |
| 198 | val = ti_pipe3_readl(phy->pll_ctrl_base, PLL_CONFIGURATION1); |
| 199 | val &= ~PLL_REGM_MASK; |
| 200 | val |= dpll_params->m << PLL_REGM_SHIFT; |
| 201 | ti_pipe3_writel(phy->pll_ctrl_base, PLL_CONFIGURATION1, val); |
| 202 | |
| 203 | val = ti_pipe3_readl(phy->pll_ctrl_base, PLL_CONFIGURATION4); |
| 204 | val &= ~PLL_REGM_F_MASK; |
| 205 | val |= dpll_params->mf << PLL_REGM_F_SHIFT; |
| 206 | ti_pipe3_writel(phy->pll_ctrl_base, PLL_CONFIGURATION4, val); |
| 207 | |
| 208 | val = ti_pipe3_readl(phy->pll_ctrl_base, PLL_CONFIGURATION3); |
| 209 | val &= ~PLL_SD_MASK; |
| 210 | val |= dpll_params->sd << PLL_SD_SHIFT; |
| 211 | ti_pipe3_writel(phy->pll_ctrl_base, PLL_CONFIGURATION3, val); |
| 212 | |
Roger Quadros | 629138d | 2014-03-06 16:38:43 +0200 | [diff] [blame] | 213 | ti_pipe3_writel(phy->pll_ctrl_base, PLL_GO, SET_PLL_GO); |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 214 | |
Roger Quadros | 629138d | 2014-03-06 16:38:43 +0200 | [diff] [blame] | 215 | return ti_pipe3_dpll_wait_lock(phy); |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 216 | } |
| 217 | |
| 218 | static int ti_pipe3_init(struct phy *x) |
| 219 | { |
| 220 | struct ti_pipe3 *phy = phy_get_drvdata(x); |
Roger Quadros | 629138d | 2014-03-06 16:38:43 +0200 | [diff] [blame] | 221 | u32 val; |
| 222 | int ret = 0; |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 223 | |
Vignesh R | 0bc09f9 | 2014-12-16 14:52:50 +0530 | [diff] [blame] | 224 | /* |
| 225 | * Set pcie_pcs register to 0x96 for proper functioning of phy |
| 226 | * as recommended in AM572x TRM SPRUHZ6, section 18.5.2.2, table |
| 227 | * 18-1804. |
| 228 | */ |
Kishon Vijay Abraham I | f0e2cf7 | 2014-06-25 23:22:57 +0530 | [diff] [blame] | 229 | if (of_device_is_compatible(phy->dev->of_node, "ti,phy-pipe3-pcie")) { |
Vignesh R | 0bc09f9 | 2014-12-16 14:52:50 +0530 | [diff] [blame] | 230 | omap_control_pcie_pcs(phy->control_dev, 0x96); |
Kishon Vijay Abraham I | 99bbd48 | 2014-06-25 23:22:56 +0530 | [diff] [blame] | 231 | return 0; |
Kishon Vijay Abraham I | f0e2cf7 | 2014-06-25 23:22:57 +0530 | [diff] [blame] | 232 | } |
Kishon Vijay Abraham I | 99bbd48 | 2014-06-25 23:22:56 +0530 | [diff] [blame] | 233 | |
Roger Quadros | 629138d | 2014-03-06 16:38:43 +0200 | [diff] [blame] | 234 | /* Bring it out of IDLE if it is IDLE */ |
| 235 | val = ti_pipe3_readl(phy->pll_ctrl_base, PLL_CONFIGURATION2); |
| 236 | if (val & PLL_IDLE) { |
| 237 | val &= ~PLL_IDLE; |
| 238 | ti_pipe3_writel(phy->pll_ctrl_base, PLL_CONFIGURATION2, val); |
| 239 | ret = ti_pipe3_dpll_wait_lock(phy); |
| 240 | } |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 241 | |
Roger Quadros | 629138d | 2014-03-06 16:38:43 +0200 | [diff] [blame] | 242 | /* Program the DPLL only if not locked */ |
| 243 | val = ti_pipe3_readl(phy->pll_ctrl_base, PLL_STATUS); |
| 244 | if (!(val & PLL_LOCK)) |
| 245 | if (ti_pipe3_dpll_program(phy)) |
| 246 | return -EINVAL; |
| 247 | |
| 248 | return ret; |
| 249 | } |
| 250 | |
| 251 | static int ti_pipe3_exit(struct phy *x) |
| 252 | { |
| 253 | struct ti_pipe3 *phy = phy_get_drvdata(x); |
| 254 | u32 val; |
| 255 | unsigned long timeout; |
| 256 | |
Kishon Vijay Abraham I | 99bbd48 | 2014-06-25 23:22:56 +0530 | [diff] [blame] | 257 | /* SATA DPLL can't be powered down due to Errata i783 and PCIe |
| 258 | * does not have internal DPLL |
| 259 | */ |
| 260 | if (of_device_is_compatible(phy->dev->of_node, "ti,phy-pipe3-sata") || |
| 261 | of_device_is_compatible(phy->dev->of_node, "ti,phy-pipe3-pcie")) |
Roger Quadros | 56042e4 | 2014-03-06 16:38:44 +0200 | [diff] [blame] | 262 | return 0; |
| 263 | |
Roger Quadros | 629138d | 2014-03-06 16:38:43 +0200 | [diff] [blame] | 264 | /* Put DPLL in IDLE mode */ |
| 265 | val = ti_pipe3_readl(phy->pll_ctrl_base, PLL_CONFIGURATION2); |
| 266 | val |= PLL_IDLE; |
| 267 | ti_pipe3_writel(phy->pll_ctrl_base, PLL_CONFIGURATION2, val); |
| 268 | |
| 269 | /* wait for LDO and Oscillator to power down */ |
| 270 | timeout = jiffies + msecs_to_jiffies(PLL_IDLE_TIME); |
| 271 | do { |
| 272 | cpu_relax(); |
| 273 | val = ti_pipe3_readl(phy->pll_ctrl_base, PLL_STATUS); |
| 274 | if ((val & PLL_TICOPWDN) && (val & PLL_LDOPWDN)) |
| 275 | break; |
| 276 | } while (!time_after(jiffies, timeout)); |
| 277 | |
| 278 | if (!(val & PLL_TICOPWDN) || !(val & PLL_LDOPWDN)) { |
| 279 | dev_err(phy->dev, "Failed to power down: PLL_STATUS 0x%x\n", |
| 280 | val); |
| 281 | return -EBUSY; |
| 282 | } |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 283 | |
| 284 | return 0; |
| 285 | } |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 286 | static struct phy_ops ops = { |
| 287 | .init = ti_pipe3_init, |
Roger Quadros | 629138d | 2014-03-06 16:38:43 +0200 | [diff] [blame] | 288 | .exit = ti_pipe3_exit, |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 289 | .power_on = ti_pipe3_power_on, |
| 290 | .power_off = ti_pipe3_power_off, |
| 291 | .owner = THIS_MODULE, |
| 292 | }; |
| 293 | |
Roger Quadros | 61f5467 | 2014-03-07 11:43:39 +0530 | [diff] [blame] | 294 | static const struct of_device_id ti_pipe3_id_table[]; |
Roger Quadros | 61f5467 | 2014-03-07 11:43:39 +0530 | [diff] [blame] | 295 | |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 296 | static int ti_pipe3_probe(struct platform_device *pdev) |
| 297 | { |
| 298 | struct ti_pipe3 *phy; |
| 299 | struct phy *generic_phy; |
| 300 | struct phy_provider *phy_provider; |
| 301 | struct resource *res; |
| 302 | struct device_node *node = pdev->dev.of_node; |
| 303 | struct device_node *control_node; |
| 304 | struct platform_device *control_pdev; |
Roger Quadros | 61f5467 | 2014-03-07 11:43:39 +0530 | [diff] [blame] | 305 | const struct of_device_id *match; |
Kishon Vijay Abraham I | 99bbd48 | 2014-06-25 23:22:56 +0530 | [diff] [blame] | 306 | struct clk *clk; |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 307 | |
| 308 | phy = devm_kzalloc(&pdev->dev, sizeof(*phy), GFP_KERNEL); |
Peter Griffin | 3a4cfcb | 2014-08-15 13:40:11 +0100 | [diff] [blame] | 309 | if (!phy) |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 310 | return -ENOMEM; |
Peter Griffin | 3a4cfcb | 2014-08-15 13:40:11 +0100 | [diff] [blame] | 311 | |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 312 | phy->dev = &pdev->dev; |
Roger Quadros | 6e73843 | 2015-01-13 14:23:19 +0200 | [diff] [blame] | 313 | spin_lock_init(&phy->lock); |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 314 | |
Kishon Vijay Abraham I | 99bbd48 | 2014-06-25 23:22:56 +0530 | [diff] [blame] | 315 | if (!of_device_is_compatible(node, "ti,phy-pipe3-pcie")) { |
Axel Lin | 298fe56 | 2015-03-05 18:20:53 +0800 | [diff] [blame^] | 316 | match = of_match_device(ti_pipe3_id_table, &pdev->dev); |
Kishon Vijay Abraham I | 99bbd48 | 2014-06-25 23:22:56 +0530 | [diff] [blame] | 317 | if (!match) |
| 318 | return -EINVAL; |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 319 | |
Kishon Vijay Abraham I | 99bbd48 | 2014-06-25 23:22:56 +0530 | [diff] [blame] | 320 | phy->dpll_map = (struct pipe3_dpll_map *)match->data; |
| 321 | if (!phy->dpll_map) { |
| 322 | dev_err(&pdev->dev, "no DPLL data\n"); |
| 323 | return -EINVAL; |
| 324 | } |
| 325 | |
| 326 | res = platform_get_resource_byname(pdev, IORESOURCE_MEM, |
| 327 | "pll_ctrl"); |
| 328 | phy->pll_ctrl_base = devm_ioremap_resource(&pdev->dev, res); |
| 329 | if (IS_ERR(phy->pll_ctrl_base)) |
| 330 | return PTR_ERR(phy->pll_ctrl_base); |
| 331 | |
| 332 | phy->sys_clk = devm_clk_get(phy->dev, "sysclk"); |
| 333 | if (IS_ERR(phy->sys_clk)) { |
| 334 | dev_err(&pdev->dev, "unable to get sysclk\n"); |
| 335 | return -EINVAL; |
| 336 | } |
| 337 | } |
| 338 | |
Roger Quadros | 7f33912 | 2015-01-13 14:23:20 +0200 | [diff] [blame] | 339 | phy->refclk = devm_clk_get(phy->dev, "refclk"); |
| 340 | if (IS_ERR(phy->refclk)) { |
| 341 | dev_err(&pdev->dev, "unable to get refclk\n"); |
| 342 | /* older DTBs have missing refclk in SATA PHY |
| 343 | * so don't bail out in case of SATA PHY. |
| 344 | */ |
| 345 | if (!of_device_is_compatible(node, "ti,phy-pipe3-sata")) |
| 346 | return PTR_ERR(phy->refclk); |
| 347 | } |
| 348 | |
Kishon Vijay Abraham I | 99bbd48 | 2014-06-25 23:22:56 +0530 | [diff] [blame] | 349 | if (!of_device_is_compatible(node, "ti,phy-pipe3-sata")) { |
Roger Quadros | 9c7f044 | 2014-03-06 16:38:42 +0200 | [diff] [blame] | 350 | phy->wkupclk = devm_clk_get(phy->dev, "wkupclk"); |
| 351 | if (IS_ERR(phy->wkupclk)) { |
| 352 | dev_err(&pdev->dev, "unable to get wkupclk\n"); |
| 353 | return PTR_ERR(phy->wkupclk); |
| 354 | } |
Roger Quadros | 9c7f044 | 2014-03-06 16:38:42 +0200 | [diff] [blame] | 355 | } else { |
| 356 | phy->wkupclk = ERR_PTR(-ENODEV); |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 357 | } |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 358 | |
Kishon Vijay Abraham I | 99bbd48 | 2014-06-25 23:22:56 +0530 | [diff] [blame] | 359 | if (of_device_is_compatible(node, "ti,phy-pipe3-pcie")) { |
Kishon Vijay Abraham I | 99bbd48 | 2014-06-25 23:22:56 +0530 | [diff] [blame] | 360 | |
| 361 | clk = devm_clk_get(phy->dev, "dpll_ref"); |
| 362 | if (IS_ERR(clk)) { |
| 363 | dev_err(&pdev->dev, "unable to get dpll ref clk\n"); |
| 364 | return PTR_ERR(clk); |
| 365 | } |
| 366 | clk_set_rate(clk, 1500000000); |
| 367 | |
| 368 | clk = devm_clk_get(phy->dev, "dpll_ref_m2"); |
| 369 | if (IS_ERR(clk)) { |
| 370 | dev_err(&pdev->dev, "unable to get dpll ref m2 clk\n"); |
| 371 | return PTR_ERR(clk); |
| 372 | } |
| 373 | clk_set_rate(clk, 100000000); |
| 374 | |
| 375 | clk = devm_clk_get(phy->dev, "phy-div"); |
| 376 | if (IS_ERR(clk)) { |
| 377 | dev_err(&pdev->dev, "unable to get phy-div clk\n"); |
| 378 | return PTR_ERR(clk); |
| 379 | } |
| 380 | clk_set_rate(clk, 100000000); |
| 381 | |
| 382 | phy->div_clk = devm_clk_get(phy->dev, "div-clk"); |
| 383 | if (IS_ERR(phy->div_clk)) { |
| 384 | dev_err(&pdev->dev, "unable to get div-clk\n"); |
| 385 | return PTR_ERR(phy->div_clk); |
| 386 | } |
| 387 | } else { |
| 388 | phy->div_clk = ERR_PTR(-ENODEV); |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 389 | } |
| 390 | |
| 391 | control_node = of_parse_phandle(node, "ctrl-module", 0); |
| 392 | if (!control_node) { |
| 393 | dev_err(&pdev->dev, "Failed to get control device phandle\n"); |
| 394 | return -EINVAL; |
| 395 | } |
| 396 | |
| 397 | control_pdev = of_find_device_by_node(control_node); |
| 398 | if (!control_pdev) { |
| 399 | dev_err(&pdev->dev, "Failed to get control device\n"); |
| 400 | return -EINVAL; |
| 401 | } |
| 402 | |
| 403 | phy->control_dev = &control_pdev->dev; |
| 404 | |
Kishon Vijay Abraham I | 14da699 | 2014-03-06 16:38:37 +0200 | [diff] [blame] | 405 | omap_control_phy_power(phy->control_dev, 0); |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 406 | |
| 407 | platform_set_drvdata(pdev, phy); |
| 408 | pm_runtime_enable(phy->dev); |
| 409 | |
Heikki Krogerus | dbc9863 | 2014-11-19 17:28:21 +0200 | [diff] [blame] | 410 | generic_phy = devm_phy_create(phy->dev, NULL, &ops); |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 411 | if (IS_ERR(generic_phy)) |
| 412 | return PTR_ERR(generic_phy); |
| 413 | |
| 414 | phy_set_drvdata(generic_phy, phy); |
| 415 | phy_provider = devm_of_phy_provider_register(phy->dev, |
| 416 | of_phy_simple_xlate); |
| 417 | if (IS_ERR(phy_provider)) |
| 418 | return PTR_ERR(phy_provider); |
| 419 | |
| 420 | pm_runtime_get(&pdev->dev); |
| 421 | |
| 422 | return 0; |
| 423 | } |
| 424 | |
| 425 | static int ti_pipe3_remove(struct platform_device *pdev) |
| 426 | { |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 427 | if (!pm_runtime_suspended(&pdev->dev)) |
| 428 | pm_runtime_put(&pdev->dev); |
| 429 | pm_runtime_disable(&pdev->dev); |
| 430 | |
| 431 | return 0; |
| 432 | } |
| 433 | |
Rafael J. Wysocki | 7ba3705 | 2014-12-13 00:42:12 +0100 | [diff] [blame] | 434 | #ifdef CONFIG_PM |
Roger Quadros | 7f33912 | 2015-01-13 14:23:20 +0200 | [diff] [blame] | 435 | static int ti_pipe3_enable_refclk(struct ti_pipe3 *phy) |
| 436 | { |
| 437 | if (!IS_ERR(phy->refclk) && !phy->refclk_enabled) { |
| 438 | int ret; |
| 439 | |
| 440 | ret = clk_prepare_enable(phy->refclk); |
| 441 | if (ret) { |
| 442 | dev_err(phy->dev, "Failed to enable refclk %d\n", ret); |
| 443 | return ret; |
| 444 | } |
| 445 | phy->refclk_enabled = true; |
| 446 | } |
| 447 | |
| 448 | return 0; |
| 449 | } |
| 450 | |
| 451 | static void ti_pipe3_disable_refclk(struct ti_pipe3 *phy) |
| 452 | { |
| 453 | if (!IS_ERR(phy->refclk)) |
| 454 | clk_disable_unprepare(phy->refclk); |
| 455 | |
| 456 | phy->refclk_enabled = false; |
| 457 | } |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 458 | |
Roger Quadros | 6e73843 | 2015-01-13 14:23:19 +0200 | [diff] [blame] | 459 | static int ti_pipe3_enable_clocks(struct ti_pipe3 *phy) |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 460 | { |
Roger Quadros | 6e73843 | 2015-01-13 14:23:19 +0200 | [diff] [blame] | 461 | int ret = 0; |
| 462 | unsigned long flags; |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 463 | |
Roger Quadros | 6e73843 | 2015-01-13 14:23:19 +0200 | [diff] [blame] | 464 | spin_lock_irqsave(&phy->lock, flags); |
| 465 | if (phy->enabled) |
| 466 | goto err1; |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 467 | |
Roger Quadros | 7f33912 | 2015-01-13 14:23:20 +0200 | [diff] [blame] | 468 | ret = ti_pipe3_enable_refclk(phy); |
| 469 | if (ret) |
| 470 | goto err1; |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 471 | |
Roger Quadros | 1562864f | 2014-03-07 11:27:09 +0530 | [diff] [blame] | 472 | if (!IS_ERR(phy->wkupclk)) { |
| 473 | ret = clk_prepare_enable(phy->wkupclk); |
| 474 | if (ret) { |
| 475 | dev_err(phy->dev, "Failed to enable wkupclk %d\n", ret); |
| 476 | goto err2; |
| 477 | } |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 478 | } |
| 479 | |
Kishon Vijay Abraham I | 99bbd48 | 2014-06-25 23:22:56 +0530 | [diff] [blame] | 480 | if (!IS_ERR(phy->div_clk)) { |
| 481 | ret = clk_prepare_enable(phy->div_clk); |
| 482 | if (ret) { |
| 483 | dev_err(phy->dev, "Failed to enable div_clk %d\n", ret); |
| 484 | goto err3; |
| 485 | } |
| 486 | } |
Roger Quadros | 6e73843 | 2015-01-13 14:23:19 +0200 | [diff] [blame] | 487 | |
| 488 | phy->enabled = true; |
| 489 | spin_unlock_irqrestore(&phy->lock, flags); |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 490 | return 0; |
| 491 | |
Kishon Vijay Abraham I | 99bbd48 | 2014-06-25 23:22:56 +0530 | [diff] [blame] | 492 | err3: |
| 493 | if (!IS_ERR(phy->wkupclk)) |
| 494 | clk_disable_unprepare(phy->wkupclk); |
| 495 | |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 496 | err2: |
Roger Quadros | 1562864f | 2014-03-07 11:27:09 +0530 | [diff] [blame] | 497 | if (!IS_ERR(phy->refclk)) |
| 498 | clk_disable_unprepare(phy->refclk); |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 499 | |
Roger Quadros | 7f33912 | 2015-01-13 14:23:20 +0200 | [diff] [blame] | 500 | ti_pipe3_disable_refclk(phy); |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 501 | err1: |
Roger Quadros | 6e73843 | 2015-01-13 14:23:19 +0200 | [diff] [blame] | 502 | spin_unlock_irqrestore(&phy->lock, flags); |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 503 | return ret; |
| 504 | } |
| 505 | |
Roger Quadros | 6e73843 | 2015-01-13 14:23:19 +0200 | [diff] [blame] | 506 | static void ti_pipe3_disable_clocks(struct ti_pipe3 *phy) |
| 507 | { |
| 508 | unsigned long flags; |
| 509 | |
| 510 | spin_lock_irqsave(&phy->lock, flags); |
| 511 | if (!phy->enabled) { |
| 512 | spin_unlock_irqrestore(&phy->lock, flags); |
| 513 | return; |
| 514 | } |
| 515 | |
| 516 | if (!IS_ERR(phy->wkupclk)) |
| 517 | clk_disable_unprepare(phy->wkupclk); |
Roger Quadros | 7f33912 | 2015-01-13 14:23:20 +0200 | [diff] [blame] | 518 | /* Don't disable refclk for SATA PHY due to Errata i783 */ |
| 519 | if (!of_device_is_compatible(phy->dev->of_node, "ti,phy-pipe3-sata")) |
| 520 | ti_pipe3_disable_refclk(phy); |
Roger Quadros | 6e73843 | 2015-01-13 14:23:19 +0200 | [diff] [blame] | 521 | if (!IS_ERR(phy->div_clk)) |
| 522 | clk_disable_unprepare(phy->div_clk); |
| 523 | phy->enabled = false; |
| 524 | spin_unlock_irqrestore(&phy->lock, flags); |
| 525 | } |
| 526 | |
| 527 | static int ti_pipe3_runtime_suspend(struct device *dev) |
| 528 | { |
| 529 | struct ti_pipe3 *phy = dev_get_drvdata(dev); |
| 530 | |
| 531 | ti_pipe3_disable_clocks(phy); |
| 532 | return 0; |
| 533 | } |
| 534 | |
| 535 | static int ti_pipe3_runtime_resume(struct device *dev) |
| 536 | { |
| 537 | struct ti_pipe3 *phy = dev_get_drvdata(dev); |
| 538 | int ret = 0; |
| 539 | |
| 540 | ret = ti_pipe3_enable_clocks(phy); |
| 541 | return ret; |
| 542 | } |
| 543 | |
| 544 | static int ti_pipe3_suspend(struct device *dev) |
| 545 | { |
| 546 | struct ti_pipe3 *phy = dev_get_drvdata(dev); |
| 547 | |
| 548 | ti_pipe3_disable_clocks(phy); |
| 549 | return 0; |
| 550 | } |
| 551 | |
| 552 | static int ti_pipe3_resume(struct device *dev) |
| 553 | { |
| 554 | struct ti_pipe3 *phy = dev_get_drvdata(dev); |
| 555 | int ret; |
| 556 | |
| 557 | ret = ti_pipe3_enable_clocks(phy); |
| 558 | if (ret) |
| 559 | return ret; |
| 560 | |
| 561 | pm_runtime_disable(dev); |
| 562 | pm_runtime_set_active(dev); |
| 563 | pm_runtime_enable(dev); |
| 564 | return 0; |
| 565 | } |
| 566 | #endif |
| 567 | |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 568 | static const struct dev_pm_ops ti_pipe3_pm_ops = { |
| 569 | SET_RUNTIME_PM_OPS(ti_pipe3_runtime_suspend, |
| 570 | ti_pipe3_runtime_resume, NULL) |
Roger Quadros | 6e73843 | 2015-01-13 14:23:19 +0200 | [diff] [blame] | 571 | SET_SYSTEM_SLEEP_PM_OPS(ti_pipe3_suspend, ti_pipe3_resume) |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 572 | }; |
| 573 | |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 574 | static const struct of_device_id ti_pipe3_id_table[] = { |
Roger Quadros | 61f5467 | 2014-03-07 11:43:39 +0530 | [diff] [blame] | 575 | { |
| 576 | .compatible = "ti,phy-usb3", |
| 577 | .data = dpll_map_usb, |
| 578 | }, |
| 579 | { |
| 580 | .compatible = "ti,omap-usb3", |
| 581 | .data = dpll_map_usb, |
| 582 | }, |
| 583 | { |
| 584 | .compatible = "ti,phy-pipe3-sata", |
| 585 | .data = dpll_map_sata, |
| 586 | }, |
Kishon Vijay Abraham I | 99bbd48 | 2014-06-25 23:22:56 +0530 | [diff] [blame] | 587 | { |
| 588 | .compatible = "ti,phy-pipe3-pcie", |
| 589 | }, |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 590 | {} |
| 591 | }; |
| 592 | MODULE_DEVICE_TABLE(of, ti_pipe3_id_table); |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 593 | |
| 594 | static struct platform_driver ti_pipe3_driver = { |
| 595 | .probe = ti_pipe3_probe, |
| 596 | .remove = ti_pipe3_remove, |
| 597 | .driver = { |
| 598 | .name = "ti-pipe3", |
Roger Quadros | 6e73843 | 2015-01-13 14:23:19 +0200 | [diff] [blame] | 599 | .pm = &ti_pipe3_pm_ops, |
Axel Lin | 298fe56 | 2015-03-05 18:20:53 +0800 | [diff] [blame^] | 600 | .of_match_table = ti_pipe3_id_table, |
Kishon Vijay Abraham I | a70143b | 2014-03-03 17:08:12 +0530 | [diff] [blame] | 601 | }, |
| 602 | }; |
| 603 | |
| 604 | module_platform_driver(ti_pipe3_driver); |
| 605 | |
| 606 | MODULE_ALIAS("platform: ti_pipe3"); |
| 607 | MODULE_AUTHOR("Texas Instruments Inc."); |
| 608 | MODULE_DESCRIPTION("TI PIPE3 phy driver"); |
| 609 | MODULE_LICENSE("GPL v2"); |