Greg Kroah-Hartman | 5fd54ac | 2017-11-03 11:28:30 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-1.0+ |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 2 | /* |
| 3 | * Renesas USB driver |
| 4 | * |
| 5 | * Copyright (C) 2011 Renesas Solutions Corp. |
Yoshihiro Shimoda | 0966648 | 2019-06-25 14:38:46 +0900 | [diff] [blame] | 6 | * Copyright (C) 2019 Renesas Electronics Corporation |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 7 | * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 8 | */ |
Yoshihiro Shimoda | 3df0e24 | 2018-09-11 17:47:05 +0900 | [diff] [blame] | 9 | #include <linux/clk.h> |
Thierry Reding | 148e113 | 2013-01-21 11:09:22 +0100 | [diff] [blame] | 10 | #include <linux/err.h> |
Linus Walleij | 3b31ec1 | 2019-12-17 15:12:41 +0100 | [diff] [blame] | 11 | #include <linux/gpio/consumer.h> |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 12 | #include <linux/io.h> |
| 13 | #include <linux/module.h> |
Yoshihiro Shimoda | b854100 | 2014-09-03 14:25:56 +0900 | [diff] [blame] | 14 | #include <linux/of_device.h> |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 15 | #include <linux/pm_runtime.h> |
Yoshihiro Shimoda | f181dbb | 2018-09-11 17:47:03 +0900 | [diff] [blame] | 16 | #include <linux/reset.h> |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 17 | #include <linux/slab.h> |
| 18 | #include <linux/sysfs.h> |
Paul Bolle | cc502bb | 2012-06-03 18:39:13 +0200 | [diff] [blame] | 19 | #include "common.h" |
Ulrich Hecht | 8ecef00 | 2014-07-10 09:53:59 +0200 | [diff] [blame] | 20 | #include "rcar2.h" |
Yoshihiro Shimoda | de18757 | 2016-01-07 18:18:13 +0900 | [diff] [blame] | 21 | #include "rcar3.h" |
Chris Brandt | aec2927 | 2018-01-08 07:30:53 -0500 | [diff] [blame] | 22 | #include "rza.h" |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 23 | |
Kuninori Morimoto | 233f519 | 2011-07-07 00:23:24 -0700 | [diff] [blame] | 24 | /* |
| 25 | * image of renesas_usbhs |
| 26 | * |
| 27 | * ex) gadget case |
| 28 | |
| 29 | * mod.c |
| 30 | * mod_gadget.c |
| 31 | * mod_host.c pipe.c fifo.c |
| 32 | * |
| 33 | * +-------+ +-----------+ |
| 34 | * | pipe0 |------>| fifo pio | |
| 35 | * +------------+ +-------+ +-----------+ |
| 36 | * | mod_gadget |=====> | pipe1 |--+ |
| 37 | * +------------+ +-------+ | +-----------+ |
| 38 | * | pipe2 | | +-| fifo dma0 | |
| 39 | * +------------+ +-------+ | | +-----------+ |
| 40 | * | mod_host | | pipe3 |<-|--+ |
| 41 | * +------------+ +-------+ | +-----------+ |
| 42 | * | .... | +--->| fifo dma1 | |
| 43 | * | .... | +-----------+ |
| 44 | */ |
| 45 | |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 46 | /* |
| 47 | * platform call back |
| 48 | * |
| 49 | * renesas usb support platform callback function. |
| 50 | * Below macro call it. |
| 51 | * if platform doesn't have callback, it return 0 (no error) |
| 52 | */ |
| 53 | #define usbhs_platform_call(priv, func, args...)\ |
| 54 | (!(priv) ? -ENODEV : \ |
Yoshihiro Shimoda | 426d3ff | 2019-06-25 14:38:57 +0900 | [diff] [blame] | 55 | !((priv)->pfunc->func) ? 0 : \ |
| 56 | (priv)->pfunc->func(args)) |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 57 | |
| 58 | /* |
| 59 | * common functions |
| 60 | */ |
| 61 | u16 usbhs_read(struct usbhs_priv *priv, u32 reg) |
| 62 | { |
| 63 | return ioread16(priv->base + reg); |
| 64 | } |
| 65 | |
| 66 | void usbhs_write(struct usbhs_priv *priv, u32 reg, u16 data) |
| 67 | { |
| 68 | iowrite16(data, priv->base + reg); |
| 69 | } |
| 70 | |
| 71 | void usbhs_bset(struct usbhs_priv *priv, u32 reg, u16 mask, u16 data) |
| 72 | { |
| 73 | u16 val = usbhs_read(priv, reg); |
| 74 | |
| 75 | val &= ~mask; |
| 76 | val |= data & mask; |
| 77 | |
| 78 | usbhs_write(priv, reg, val); |
| 79 | } |
| 80 | |
Kuninori Morimoto | 206dcc2 | 2011-04-28 16:40:54 +0900 | [diff] [blame] | 81 | struct usbhs_priv *usbhs_pdev_to_priv(struct platform_device *pdev) |
| 82 | { |
| 83 | return dev_get_drvdata(&pdev->dev); |
| 84 | } |
| 85 | |
Yoshihiro Shimoda | be0a42a | 2019-06-25 14:38:55 +0900 | [diff] [blame] | 86 | int usbhs_get_id_as_gadget(struct platform_device *pdev) |
| 87 | { |
| 88 | return USBHS_GADGET; |
| 89 | } |
| 90 | |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 91 | /* |
| 92 | * syscfg functions |
| 93 | */ |
Kuninori Morimoto | 7619015 | 2011-10-23 19:56:41 -0700 | [diff] [blame] | 94 | static void usbhs_sys_clock_ctrl(struct usbhs_priv *priv, int enable) |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 95 | { |
| 96 | usbhs_bset(priv, SYSCFG, SCKE, enable ? SCKE : 0); |
| 97 | } |
| 98 | |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 99 | void usbhs_sys_host_ctrl(struct usbhs_priv *priv, int enable) |
| 100 | { |
Kuninori Morimoto | 3244a7b | 2011-10-23 19:56:30 -0700 | [diff] [blame] | 101 | u16 mask = DCFM | DRPD | DPRPU | HSE | USBE; |
| 102 | u16 val = DCFM | DRPD | HSE | USBE; |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 103 | |
| 104 | /* |
| 105 | * if enable |
| 106 | * |
| 107 | * - select Host mode |
| 108 | * - D+ Line/D- Line Pull-down |
| 109 | */ |
| 110 | usbhs_bset(priv, SYSCFG, mask, enable ? val : 0); |
| 111 | } |
| 112 | |
| 113 | void usbhs_sys_function_ctrl(struct usbhs_priv *priv, int enable) |
| 114 | { |
Kuninori Morimoto | 3244a7b | 2011-10-23 19:56:30 -0700 | [diff] [blame] | 115 | u16 mask = DCFM | DRPD | DPRPU | HSE | USBE; |
Takeshi Kihara | 04a5def | 2014-11-04 10:05:43 +0900 | [diff] [blame] | 116 | u16 val = HSE | USBE; |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 117 | |
Chris Brandt | 2195e3a | 2019-05-15 10:20:42 -0500 | [diff] [blame] | 118 | /* CNEN bit is required for function operation */ |
| 119 | if (usbhs_get_dparam(priv, has_cnen)) { |
| 120 | mask |= CNEN; |
| 121 | val |= CNEN; |
| 122 | } |
| 123 | |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 124 | /* |
| 125 | * if enable |
| 126 | * |
| 127 | * - select Function mode |
Takeshi Kihara | 04a5def | 2014-11-04 10:05:43 +0900 | [diff] [blame] | 128 | * - D+ Line Pull-up is disabled |
| 129 | * When D+ Line Pull-up is enabled, |
| 130 | * calling usbhs_sys_function_pullup(,1) |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 131 | */ |
| 132 | usbhs_bset(priv, SYSCFG, mask, enable ? val : 0); |
| 133 | } |
| 134 | |
kuninori.morimoto.gx@renesas.com | 4cd2f59 | 2012-10-15 23:24:19 -0700 | [diff] [blame] | 135 | void usbhs_sys_function_pullup(struct usbhs_priv *priv, int enable) |
| 136 | { |
| 137 | usbhs_bset(priv, SYSCFG, DPRPU, enable ? DPRPU : 0); |
| 138 | } |
| 139 | |
Kuninori Morimoto | dfbb7f4 | 2011-11-24 17:28:35 -0800 | [diff] [blame] | 140 | void usbhs_sys_set_test_mode(struct usbhs_priv *priv, u16 mode) |
| 141 | { |
| 142 | usbhs_write(priv, TESTMODE, mode); |
| 143 | } |
| 144 | |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 145 | /* |
| 146 | * frame functions |
| 147 | */ |
| 148 | int usbhs_frame_get_num(struct usbhs_priv *priv) |
| 149 | { |
| 150 | return usbhs_read(priv, FRMNUM) & FRNM_MASK; |
| 151 | } |
| 152 | |
| 153 | /* |
Kuninori Morimoto | ef8bedb | 2011-10-10 22:02:33 -0700 | [diff] [blame] | 154 | * usb request functions |
| 155 | */ |
| 156 | void usbhs_usbreq_get_val(struct usbhs_priv *priv, struct usb_ctrlrequest *req) |
| 157 | { |
| 158 | u16 val; |
| 159 | |
| 160 | val = usbhs_read(priv, USBREQ); |
| 161 | req->bRequest = (val >> 8) & 0xFF; |
| 162 | req->bRequestType = (val >> 0) & 0xFF; |
| 163 | |
Ben Dooks (Codethink) | 46f62f8 | 2019-10-15 16:50:44 +0100 | [diff] [blame] | 164 | req->wValue = cpu_to_le16(usbhs_read(priv, USBVAL)); |
| 165 | req->wIndex = cpu_to_le16(usbhs_read(priv, USBINDX)); |
| 166 | req->wLength = cpu_to_le16(usbhs_read(priv, USBLENG)); |
Kuninori Morimoto | ef8bedb | 2011-10-10 22:02:33 -0700 | [diff] [blame] | 167 | } |
| 168 | |
| 169 | void usbhs_usbreq_set_val(struct usbhs_priv *priv, struct usb_ctrlrequest *req) |
| 170 | { |
| 171 | usbhs_write(priv, USBREQ, (req->bRequest << 8) | req->bRequestType); |
Ben Dooks (Codethink) | 46f62f8 | 2019-10-15 16:50:44 +0100 | [diff] [blame] | 172 | usbhs_write(priv, USBVAL, le16_to_cpu(req->wValue)); |
| 173 | usbhs_write(priv, USBINDX, le16_to_cpu(req->wIndex)); |
| 174 | usbhs_write(priv, USBLENG, le16_to_cpu(req->wLength)); |
Kuninori Morimoto | ef8bedb | 2011-10-10 22:02:33 -0700 | [diff] [blame] | 175 | |
| 176 | usbhs_bset(priv, DCPCTR, SUREQ, SUREQ); |
| 177 | } |
| 178 | |
| 179 | /* |
Kuninori Morimoto | 258485d | 2011-10-10 22:01:40 -0700 | [diff] [blame] | 180 | * bus/vbus functions |
| 181 | */ |
| 182 | void usbhs_bus_send_sof_enable(struct usbhs_priv *priv) |
| 183 | { |
Kuninori Morimoto | a9be4a4 | 2011-10-10 22:06:35 -0700 | [diff] [blame] | 184 | u16 status = usbhs_read(priv, DVSTCTR) & (USBRST | UACT); |
| 185 | |
| 186 | if (status != USBRST) { |
| 187 | struct device *dev = usbhs_priv_to_dev(priv); |
| 188 | dev_err(dev, "usbhs should be reset\n"); |
| 189 | } |
| 190 | |
Kuninori Morimoto | 258485d | 2011-10-10 22:01:40 -0700 | [diff] [blame] | 191 | usbhs_bset(priv, DVSTCTR, (USBRST | UACT), UACT); |
| 192 | } |
| 193 | |
| 194 | void usbhs_bus_send_reset(struct usbhs_priv *priv) |
| 195 | { |
| 196 | usbhs_bset(priv, DVSTCTR, (USBRST | UACT), USBRST); |
| 197 | } |
| 198 | |
Kuninori Morimoto | 75587f5 | 2011-10-10 22:01:51 -0700 | [diff] [blame] | 199 | int usbhs_bus_get_speed(struct usbhs_priv *priv) |
| 200 | { |
| 201 | u16 dvstctr = usbhs_read(priv, DVSTCTR); |
| 202 | |
| 203 | switch (RHST & dvstctr) { |
| 204 | case RHST_LOW_SPEED: |
| 205 | return USB_SPEED_LOW; |
| 206 | case RHST_FULL_SPEED: |
| 207 | return USB_SPEED_FULL; |
| 208 | case RHST_HIGH_SPEED: |
| 209 | return USB_SPEED_HIGH; |
| 210 | } |
| 211 | |
| 212 | return USB_SPEED_UNKNOWN; |
| 213 | } |
| 214 | |
Kuninori Morimoto | 258485d | 2011-10-10 22:01:40 -0700 | [diff] [blame] | 215 | int usbhs_vbus_ctrl(struct usbhs_priv *priv, int enable) |
| 216 | { |
| 217 | struct platform_device *pdev = usbhs_priv_to_pdev(priv); |
| 218 | |
| 219 | return usbhs_platform_call(priv, set_vbus, pdev, enable); |
| 220 | } |
| 221 | |
| 222 | static void usbhsc_bus_init(struct usbhs_priv *priv) |
| 223 | { |
| 224 | usbhs_write(priv, DVSTCTR, 0); |
| 225 | |
| 226 | usbhs_vbus_ctrl(priv, 0); |
| 227 | } |
| 228 | |
| 229 | /* |
Kuninori Morimoto | eb05191 | 2011-10-10 22:06:46 -0700 | [diff] [blame] | 230 | * device configuration |
| 231 | */ |
Kuninori Morimoto | 3dd4926 | 2011-10-31 00:47:13 -0700 | [diff] [blame] | 232 | int usbhs_set_device_config(struct usbhs_priv *priv, int devnum, |
Kuninori Morimoto | eb05191 | 2011-10-10 22:06:46 -0700 | [diff] [blame] | 233 | u16 upphub, u16 hubport, u16 speed) |
| 234 | { |
| 235 | struct device *dev = usbhs_priv_to_dev(priv); |
| 236 | u16 usbspd = 0; |
| 237 | u32 reg = DEVADD0 + (2 * devnum); |
| 238 | |
| 239 | if (devnum > 10) { |
| 240 | dev_err(dev, "cannot set speed to unknown device %d\n", devnum); |
| 241 | return -EIO; |
| 242 | } |
| 243 | |
| 244 | if (upphub > 0xA) { |
| 245 | dev_err(dev, "unsupported hub number %d\n", upphub); |
| 246 | return -EIO; |
| 247 | } |
| 248 | |
| 249 | switch (speed) { |
| 250 | case USB_SPEED_LOW: |
| 251 | usbspd = USBSPD_SPEED_LOW; |
| 252 | break; |
| 253 | case USB_SPEED_FULL: |
| 254 | usbspd = USBSPD_SPEED_FULL; |
| 255 | break; |
| 256 | case USB_SPEED_HIGH: |
| 257 | usbspd = USBSPD_SPEED_HIGH; |
| 258 | break; |
| 259 | default: |
| 260 | dev_err(dev, "unsupported speed %d\n", speed); |
| 261 | return -EIO; |
| 262 | } |
| 263 | |
| 264 | usbhs_write(priv, reg, UPPHUB(upphub) | |
| 265 | HUBPORT(hubport)| |
| 266 | USBSPD(usbspd)); |
| 267 | |
| 268 | return 0; |
| 269 | } |
| 270 | |
| 271 | /* |
Yoshihiro Shimoda | ab330cf | 2015-03-12 15:35:20 +0900 | [diff] [blame] | 272 | * interrupt functions |
| 273 | */ |
| 274 | void usbhs_xxxsts_clear(struct usbhs_priv *priv, u16 sts_reg, u16 bit) |
| 275 | { |
| 276 | u16 pipe_mask = (u16)GENMASK(usbhs_get_dparam(priv, pipe_size), 0); |
| 277 | |
| 278 | usbhs_write(priv, sts_reg, ~(1 << bit) & pipe_mask); |
| 279 | } |
| 280 | |
| 281 | /* |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 282 | * local functions |
| 283 | */ |
Kuninori Morimoto | 11935de | 2011-10-10 22:01:28 -0700 | [diff] [blame] | 284 | static void usbhsc_set_buswait(struct usbhs_priv *priv) |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 285 | { |
| 286 | int wait = usbhs_get_dparam(priv, buswait_bwait); |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 287 | |
Kuninori Morimoto | 11935de | 2011-10-10 22:01:28 -0700 | [diff] [blame] | 288 | /* set bus wait if platform have */ |
| 289 | if (wait) |
| 290 | usbhs_bset(priv, BUSWAIT, 0x000F, wait); |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 291 | } |
| 292 | |
Yoshihiro Shimoda | 3df0e24 | 2018-09-11 17:47:05 +0900 | [diff] [blame] | 293 | static bool usbhsc_is_multi_clks(struct usbhs_priv *priv) |
| 294 | { |
Yoshihiro Shimoda | df9f2c2 | 2019-06-25 14:38:49 +0900 | [diff] [blame] | 295 | return priv->dparam.multi_clks; |
Yoshihiro Shimoda | 3df0e24 | 2018-09-11 17:47:05 +0900 | [diff] [blame] | 296 | } |
| 297 | |
| 298 | static int usbhsc_clk_get(struct device *dev, struct usbhs_priv *priv) |
| 299 | { |
| 300 | if (!usbhsc_is_multi_clks(priv)) |
| 301 | return 0; |
| 302 | |
| 303 | /* The first clock should exist */ |
Yoshihiro Shimoda | 31e795c | 2019-06-25 14:38:51 +0900 | [diff] [blame] | 304 | priv->clks[0] = of_clk_get(dev_of_node(dev), 0); |
Yoshihiro Shimoda | 3df0e24 | 2018-09-11 17:47:05 +0900 | [diff] [blame] | 305 | if (IS_ERR(priv->clks[0])) |
| 306 | return PTR_ERR(priv->clks[0]); |
| 307 | |
| 308 | /* |
| 309 | * To backward compatibility with old DT, this driver checks the return |
| 310 | * value if it's -ENOENT or not. |
| 311 | */ |
Yoshihiro Shimoda | 31e795c | 2019-06-25 14:38:51 +0900 | [diff] [blame] | 312 | priv->clks[1] = of_clk_get(dev_of_node(dev), 1); |
Yoshihiro Shimoda | 3df0e24 | 2018-09-11 17:47:05 +0900 | [diff] [blame] | 313 | if (PTR_ERR(priv->clks[1]) == -ENOENT) |
| 314 | priv->clks[1] = NULL; |
| 315 | else if (IS_ERR(priv->clks[1])) |
| 316 | return PTR_ERR(priv->clks[1]); |
| 317 | |
| 318 | return 0; |
| 319 | } |
| 320 | |
| 321 | static void usbhsc_clk_put(struct usbhs_priv *priv) |
| 322 | { |
| 323 | int i; |
| 324 | |
| 325 | if (!usbhsc_is_multi_clks(priv)) |
| 326 | return; |
| 327 | |
| 328 | for (i = 0; i < ARRAY_SIZE(priv->clks); i++) |
| 329 | clk_put(priv->clks[i]); |
| 330 | } |
| 331 | |
| 332 | static int usbhsc_clk_prepare_enable(struct usbhs_priv *priv) |
| 333 | { |
| 334 | int i, ret; |
| 335 | |
| 336 | if (!usbhsc_is_multi_clks(priv)) |
| 337 | return 0; |
| 338 | |
| 339 | for (i = 0; i < ARRAY_SIZE(priv->clks); i++) { |
| 340 | ret = clk_prepare_enable(priv->clks[i]); |
| 341 | if (ret) { |
| 342 | while (--i >= 0) |
| 343 | clk_disable_unprepare(priv->clks[i]); |
| 344 | return ret; |
| 345 | } |
| 346 | } |
| 347 | |
| 348 | return ret; |
| 349 | } |
| 350 | |
| 351 | static void usbhsc_clk_disable_unprepare(struct usbhs_priv *priv) |
| 352 | { |
| 353 | int i; |
| 354 | |
| 355 | if (!usbhsc_is_multi_clks(priv)) |
| 356 | return; |
| 357 | |
| 358 | for (i = 0; i < ARRAY_SIZE(priv->clks); i++) |
| 359 | clk_disable_unprepare(priv->clks[i]); |
| 360 | } |
| 361 | |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 362 | /* |
| 363 | * platform default param |
| 364 | */ |
Ulrich Hecht | 8ecef00 | 2014-07-10 09:53:59 +0200 | [diff] [blame] | 365 | |
| 366 | /* commonly used on old SH-Mobile SoCs */ |
Yoshihiro Shimoda | 51f141a | 2015-11-18 14:34:09 +0900 | [diff] [blame] | 367 | static struct renesas_usbhs_driver_pipe_config usbhsc_default_pipe[] = { |
| 368 | RENESAS_USBHS_PIPE(USB_ENDPOINT_XFER_CONTROL, 64, 0x00, false), |
| 369 | RENESAS_USBHS_PIPE(USB_ENDPOINT_XFER_ISOC, 1024, 0x08, false), |
| 370 | RENESAS_USBHS_PIPE(USB_ENDPOINT_XFER_ISOC, 1024, 0x18, false), |
| 371 | RENESAS_USBHS_PIPE(USB_ENDPOINT_XFER_BULK, 512, 0x28, true), |
| 372 | RENESAS_USBHS_PIPE(USB_ENDPOINT_XFER_BULK, 512, 0x38, true), |
| 373 | RENESAS_USBHS_PIPE(USB_ENDPOINT_XFER_BULK, 512, 0x48, true), |
| 374 | RENESAS_USBHS_PIPE(USB_ENDPOINT_XFER_INT, 64, 0x04, false), |
| 375 | RENESAS_USBHS_PIPE(USB_ENDPOINT_XFER_INT, 64, 0x05, false), |
| 376 | RENESAS_USBHS_PIPE(USB_ENDPOINT_XFER_INT, 64, 0x06, false), |
| 377 | RENESAS_USBHS_PIPE(USB_ENDPOINT_XFER_INT, 64, 0x07, false), |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 378 | }; |
| 379 | |
Ulrich Hecht | 8ecef00 | 2014-07-10 09:53:59 +0200 | [diff] [blame] | 380 | /* commonly used on newer SH-Mobile and R-Car SoCs */ |
Yoshihiro Shimoda | 51f141a | 2015-11-18 14:34:09 +0900 | [diff] [blame] | 381 | static struct renesas_usbhs_driver_pipe_config usbhsc_new_pipe[] = { |
| 382 | RENESAS_USBHS_PIPE(USB_ENDPOINT_XFER_CONTROL, 64, 0x00, false), |
| 383 | RENESAS_USBHS_PIPE(USB_ENDPOINT_XFER_ISOC, 1024, 0x08, true), |
| 384 | RENESAS_USBHS_PIPE(USB_ENDPOINT_XFER_ISOC, 1024, 0x28, true), |
| 385 | RENESAS_USBHS_PIPE(USB_ENDPOINT_XFER_BULK, 512, 0x48, true), |
| 386 | RENESAS_USBHS_PIPE(USB_ENDPOINT_XFER_BULK, 512, 0x58, true), |
| 387 | RENESAS_USBHS_PIPE(USB_ENDPOINT_XFER_BULK, 512, 0x68, true), |
| 388 | RENESAS_USBHS_PIPE(USB_ENDPOINT_XFER_INT, 64, 0x04, false), |
| 389 | RENESAS_USBHS_PIPE(USB_ENDPOINT_XFER_INT, 64, 0x05, false), |
| 390 | RENESAS_USBHS_PIPE(USB_ENDPOINT_XFER_INT, 64, 0x06, false), |
| 391 | RENESAS_USBHS_PIPE(USB_ENDPOINT_XFER_BULK, 512, 0x78, true), |
| 392 | RENESAS_USBHS_PIPE(USB_ENDPOINT_XFER_BULK, 512, 0x88, true), |
| 393 | RENESAS_USBHS_PIPE(USB_ENDPOINT_XFER_BULK, 512, 0x98, true), |
| 394 | RENESAS_USBHS_PIPE(USB_ENDPOINT_XFER_BULK, 512, 0xa8, true), |
| 395 | RENESAS_USBHS_PIPE(USB_ENDPOINT_XFER_BULK, 512, 0xb8, true), |
| 396 | RENESAS_USBHS_PIPE(USB_ENDPOINT_XFER_BULK, 512, 0xc8, true), |
| 397 | RENESAS_USBHS_PIPE(USB_ENDPOINT_XFER_BULK, 512, 0xd8, true), |
Ulrich Hecht | 8ecef00 | 2014-07-10 09:53:59 +0200 | [diff] [blame] | 398 | }; |
| 399 | |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 400 | /* |
Kuninori Morimoto | 6e267da | 2011-04-28 16:41:02 +0900 | [diff] [blame] | 401 | * power control |
| 402 | */ |
| 403 | static void usbhsc_power_ctrl(struct usbhs_priv *priv, int enable) |
| 404 | { |
Kuninori Morimoto | f1ee56a | 2011-10-23 19:57:10 -0700 | [diff] [blame] | 405 | struct platform_device *pdev = usbhs_priv_to_pdev(priv); |
Kuninori Morimoto | 6e267da | 2011-04-28 16:41:02 +0900 | [diff] [blame] | 406 | struct device *dev = usbhs_priv_to_dev(priv); |
| 407 | |
| 408 | if (enable) { |
| 409 | /* enable PM */ |
| 410 | pm_runtime_get_sync(dev); |
| 411 | |
Yoshihiro Shimoda | 3df0e24 | 2018-09-11 17:47:05 +0900 | [diff] [blame] | 412 | /* enable clks */ |
| 413 | if (usbhsc_clk_prepare_enable(priv)) |
| 414 | return; |
| 415 | |
Kuninori Morimoto | f1ee56a | 2011-10-23 19:57:10 -0700 | [diff] [blame] | 416 | /* enable platform power */ |
| 417 | usbhs_platform_call(priv, power_ctrl, pdev, priv->base, enable); |
| 418 | |
Kuninori Morimoto | 6e267da | 2011-04-28 16:41:02 +0900 | [diff] [blame] | 419 | /* USB on */ |
| 420 | usbhs_sys_clock_ctrl(priv, enable); |
Kuninori Morimoto | 6e267da | 2011-04-28 16:41:02 +0900 | [diff] [blame] | 421 | } else { |
| 422 | /* USB off */ |
Kuninori Morimoto | 6e267da | 2011-04-28 16:41:02 +0900 | [diff] [blame] | 423 | usbhs_sys_clock_ctrl(priv, enable); |
| 424 | |
Kuninori Morimoto | f1ee56a | 2011-10-23 19:57:10 -0700 | [diff] [blame] | 425 | /* disable platform power */ |
| 426 | usbhs_platform_call(priv, power_ctrl, pdev, priv->base, enable); |
| 427 | |
Yoshihiro Shimoda | 3df0e24 | 2018-09-11 17:47:05 +0900 | [diff] [blame] | 428 | /* disable clks */ |
| 429 | usbhsc_clk_disable_unprepare(priv); |
| 430 | |
Kuninori Morimoto | 6e267da | 2011-04-28 16:41:02 +0900 | [diff] [blame] | 431 | /* disable PM */ |
| 432 | pm_runtime_put_sync(dev); |
| 433 | } |
| 434 | } |
| 435 | |
| 436 | /* |
Kuninori Morimoto | ca8a282 | 2011-10-10 21:58:19 -0700 | [diff] [blame] | 437 | * hotplug |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 438 | */ |
Kuninori Morimoto | ca8a282 | 2011-10-10 21:58:19 -0700 | [diff] [blame] | 439 | static void usbhsc_hotplug(struct usbhs_priv *priv) |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 440 | { |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 441 | struct platform_device *pdev = usbhs_priv_to_pdev(priv); |
| 442 | struct usbhs_mod *mod = usbhs_mod_get_current(priv); |
| 443 | int id; |
| 444 | int enable; |
Sergei Shtylyov | d7b3968 | 2014-12-16 01:42:13 +0300 | [diff] [blame] | 445 | int cable; |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 446 | int ret; |
| 447 | |
| 448 | /* |
| 449 | * get vbus status from platform |
| 450 | */ |
Yoshihiro Shimoda | ccc3264 | 2019-06-25 14:38:48 +0900 | [diff] [blame] | 451 | enable = usbhs_mod_info_call(priv, get_vbus, pdev); |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 452 | |
| 453 | /* |
| 454 | * get id from platform |
| 455 | */ |
| 456 | id = usbhs_platform_call(priv, get_id, pdev); |
| 457 | |
| 458 | if (enable && !mod) { |
Sergei Shtylyov | d7b3968 | 2014-12-16 01:42:13 +0300 | [diff] [blame] | 459 | if (priv->edev) { |
Chanwoo Choi | ea07b8c | 2017-01-16 21:37:02 +0900 | [diff] [blame] | 460 | cable = extcon_get_state(priv->edev, EXTCON_USB_HOST); |
Sergei Shtylyov | d7b3968 | 2014-12-16 01:42:13 +0300 | [diff] [blame] | 461 | if ((cable > 0 && id != USBHS_HOST) || |
| 462 | (!cable && id != USBHS_GADGET)) { |
| 463 | dev_info(&pdev->dev, |
| 464 | "USB cable plugged in doesn't match the selected role!\n"); |
| 465 | return; |
| 466 | } |
| 467 | } |
| 468 | |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 469 | ret = usbhs_mod_change(priv, id); |
| 470 | if (ret < 0) |
| 471 | return; |
| 472 | |
| 473 | dev_dbg(&pdev->dev, "%s enable\n", __func__); |
| 474 | |
Kuninori Morimoto | 6e267da | 2011-04-28 16:41:02 +0900 | [diff] [blame] | 475 | /* power on */ |
Chris Brandt | 97a7968 | 2019-05-15 10:20:41 -0500 | [diff] [blame] | 476 | if (usbhs_get_dparam(priv, runtime_pwctrl)) |
Kuninori Morimoto | b002ff6 | 2011-04-28 16:41:20 +0900 | [diff] [blame] | 477 | usbhsc_power_ctrl(priv, enable); |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 478 | |
Kuninori Morimoto | 258485d | 2011-10-10 22:01:40 -0700 | [diff] [blame] | 479 | /* bus init */ |
| 480 | usbhsc_set_buswait(priv); |
| 481 | usbhsc_bus_init(priv); |
| 482 | |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 483 | /* module start */ |
| 484 | usbhs_mod_call(priv, start, priv); |
| 485 | |
| 486 | } else if (!enable && mod) { |
| 487 | dev_dbg(&pdev->dev, "%s disable\n", __func__); |
| 488 | |
| 489 | /* module stop */ |
| 490 | usbhs_mod_call(priv, stop, priv); |
| 491 | |
Kuninori Morimoto | 258485d | 2011-10-10 22:01:40 -0700 | [diff] [blame] | 492 | /* bus init */ |
| 493 | usbhsc_bus_init(priv); |
| 494 | |
Kuninori Morimoto | 6e267da | 2011-04-28 16:41:02 +0900 | [diff] [blame] | 495 | /* power off */ |
Chris Brandt | 97a7968 | 2019-05-15 10:20:41 -0500 | [diff] [blame] | 496 | if (usbhs_get_dparam(priv, runtime_pwctrl)) |
Kuninori Morimoto | b002ff6 | 2011-04-28 16:41:20 +0900 | [diff] [blame] | 497 | usbhsc_power_ctrl(priv, enable); |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 498 | |
| 499 | usbhs_mod_change(priv, -1); |
| 500 | |
| 501 | /* reset phy for next connection */ |
| 502 | usbhs_platform_call(priv, phy_reset, pdev); |
| 503 | } |
| 504 | } |
| 505 | |
Kuninori Morimoto | ca8a282 | 2011-10-10 21:58:19 -0700 | [diff] [blame] | 506 | /* |
| 507 | * notify hotplug |
| 508 | */ |
| 509 | static void usbhsc_notify_hotplug(struct work_struct *work) |
| 510 | { |
| 511 | struct usbhs_priv *priv = container_of(work, |
| 512 | struct usbhs_priv, |
| 513 | notify_hotplug_work.work); |
| 514 | usbhsc_hotplug(priv); |
| 515 | } |
| 516 | |
Yoshihiro Shimoda | 0966648 | 2019-06-25 14:38:46 +0900 | [diff] [blame] | 517 | int usbhsc_schedule_notify_hotplug(struct platform_device *pdev) |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 518 | { |
Kuninori Morimoto | 206dcc2 | 2011-04-28 16:40:54 +0900 | [diff] [blame] | 519 | struct usbhs_priv *priv = usbhs_pdev_to_priv(pdev); |
Kuninori Morimoto | bc57381 | 2011-04-28 16:41:14 +0900 | [diff] [blame] | 520 | int delay = usbhs_get_dparam(priv, detection_delay); |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 521 | |
| 522 | /* |
| 523 | * This functions will be called in interrupt. |
| 524 | * To make sure safety context, |
| 525 | * use workqueue for usbhs_notify_hotplug |
| 526 | */ |
Kuninori Morimoto | a49a88f | 2011-10-23 19:57:02 -0700 | [diff] [blame] | 527 | schedule_delayed_work(&priv->notify_hotplug_work, |
| 528 | msecs_to_jiffies(delay)); |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 529 | return 0; |
| 530 | } |
| 531 | |
| 532 | /* |
| 533 | * platform functions |
| 534 | */ |
Yoshihiro Shimoda | b854100 | 2014-09-03 14:25:56 +0900 | [diff] [blame] | 535 | static const struct of_device_id usbhs_of_match[] = { |
| 536 | { |
Fabrizio Castro | 1d6e81a | 2018-12-14 08:27:03 +0000 | [diff] [blame] | 537 | .compatible = "renesas,usbhs-r8a774c0", |
Yoshihiro Shimoda | 76eff17 | 2019-06-25 14:38:56 +0900 | [diff] [blame] | 538 | .data = &usbhs_rcar_gen3_with_pll_plat_info, |
Fabrizio Castro | 1d6e81a | 2018-12-14 08:27:03 +0000 | [diff] [blame] | 539 | }, |
| 540 | { |
Yoshihiro Shimoda | b854100 | 2014-09-03 14:25:56 +0900 | [diff] [blame] | 541 | .compatible = "renesas,usbhs-r8a7790", |
Yoshihiro Shimoda | 76eff17 | 2019-06-25 14:38:56 +0900 | [diff] [blame] | 542 | .data = &usbhs_rcar_gen2_plat_info, |
Yoshihiro Shimoda | b854100 | 2014-09-03 14:25:56 +0900 | [diff] [blame] | 543 | }, |
| 544 | { |
| 545 | .compatible = "renesas,usbhs-r8a7791", |
Yoshihiro Shimoda | 76eff17 | 2019-06-25 14:38:56 +0900 | [diff] [blame] | 546 | .data = &usbhs_rcar_gen2_plat_info, |
Yoshihiro Shimoda | b854100 | 2014-09-03 14:25:56 +0900 | [diff] [blame] | 547 | }, |
Yoshihiro Shimoda | af6e613 | 2015-05-18 20:04:15 +0900 | [diff] [blame] | 548 | { |
| 549 | .compatible = "renesas,usbhs-r8a7794", |
Yoshihiro Shimoda | 76eff17 | 2019-06-25 14:38:56 +0900 | [diff] [blame] | 550 | .data = &usbhs_rcar_gen2_plat_info, |
Yoshihiro Shimoda | af6e613 | 2015-05-18 20:04:15 +0900 | [diff] [blame] | 551 | }, |
Yoshihiro Shimoda | f5f6afa | 2015-09-29 18:21:19 +0900 | [diff] [blame] | 552 | { |
Yoshihiro Shimoda | f5f6afa | 2015-09-29 18:21:19 +0900 | [diff] [blame] | 553 | .compatible = "renesas,usbhs-r8a7795", |
Yoshihiro Shimoda | 76eff17 | 2019-06-25 14:38:56 +0900 | [diff] [blame] | 554 | .data = &usbhs_rcar_gen3_plat_info, |
Yoshihiro Shimoda | f5f6afa | 2015-09-29 18:21:19 +0900 | [diff] [blame] | 555 | }, |
Simon Horman | 2f1a993 | 2015-12-16 13:51:51 +0900 | [diff] [blame] | 556 | { |
Yoshihiro Shimoda | aae819e | 2016-08-24 16:39:53 +0900 | [diff] [blame] | 557 | .compatible = "renesas,usbhs-r8a7796", |
Yoshihiro Shimoda | 76eff17 | 2019-06-25 14:38:56 +0900 | [diff] [blame] | 558 | .data = &usbhs_rcar_gen3_plat_info, |
Yoshihiro Shimoda | aae819e | 2016-08-24 16:39:53 +0900 | [diff] [blame] | 559 | }, |
| 560 | { |
Yoshihiro Shimoda | 4d2a863 | 2018-09-21 21:26:32 +0900 | [diff] [blame] | 561 | .compatible = "renesas,usbhs-r8a77990", |
Yoshihiro Shimoda | 76eff17 | 2019-06-25 14:38:56 +0900 | [diff] [blame] | 562 | .data = &usbhs_rcar_gen3_with_pll_plat_info, |
Yoshihiro Shimoda | 4d2a863 | 2018-09-21 21:26:32 +0900 | [diff] [blame] | 563 | }, |
| 564 | { |
Yoshihiro Shimoda | 0f38672 | 2017-10-03 20:09:14 +0900 | [diff] [blame] | 565 | .compatible = "renesas,usbhs-r8a77995", |
Yoshihiro Shimoda | 76eff17 | 2019-06-25 14:38:56 +0900 | [diff] [blame] | 566 | .data = &usbhs_rcar_gen3_with_pll_plat_info, |
Yoshihiro Shimoda | 0f38672 | 2017-10-03 20:09:14 +0900 | [diff] [blame] | 567 | }, |
| 568 | { |
Simon Horman | 2f1a993 | 2015-12-16 13:51:51 +0900 | [diff] [blame] | 569 | .compatible = "renesas,rcar-gen2-usbhs", |
Yoshihiro Shimoda | 76eff17 | 2019-06-25 14:38:56 +0900 | [diff] [blame] | 570 | .data = &usbhs_rcar_gen2_plat_info, |
Simon Horman | 2f1a993 | 2015-12-16 13:51:51 +0900 | [diff] [blame] | 571 | }, |
| 572 | { |
Simon Horman | 2f1a993 | 2015-12-16 13:51:51 +0900 | [diff] [blame] | 573 | .compatible = "renesas,rcar-gen3-usbhs", |
Yoshihiro Shimoda | 76eff17 | 2019-06-25 14:38:56 +0900 | [diff] [blame] | 574 | .data = &usbhs_rcar_gen3_plat_info, |
Simon Horman | 2f1a993 | 2015-12-16 13:51:51 +0900 | [diff] [blame] | 575 | }, |
Chris Brandt | aec2927 | 2018-01-08 07:30:53 -0500 | [diff] [blame] | 576 | { |
| 577 | .compatible = "renesas,rza1-usbhs", |
Yoshihiro Shimoda | 76eff17 | 2019-06-25 14:38:56 +0900 | [diff] [blame] | 578 | .data = &usbhs_rza1_plat_info, |
Chris Brandt | aec2927 | 2018-01-08 07:30:53 -0500 | [diff] [blame] | 579 | }, |
Chris Brandt | b69dce6 | 2019-05-15 10:20:44 -0500 | [diff] [blame] | 580 | { |
| 581 | .compatible = "renesas,rza2-usbhs", |
Yoshihiro Shimoda | 76eff17 | 2019-06-25 14:38:56 +0900 | [diff] [blame] | 582 | .data = &usbhs_rza2_plat_info, |
Chris Brandt | b69dce6 | 2019-05-15 10:20:44 -0500 | [diff] [blame] | 583 | }, |
Yoshihiro Shimoda | b854100 | 2014-09-03 14:25:56 +0900 | [diff] [blame] | 584 | { }, |
| 585 | }; |
| 586 | MODULE_DEVICE_TABLE(of, usbhs_of_match); |
| 587 | |
Kuninori Morimoto | b7a8d17 | 2011-10-26 19:33:49 -0700 | [diff] [blame] | 588 | static int usbhs_probe(struct platform_device *pdev) |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 589 | { |
Yoshihiro Shimoda | 76eff17 | 2019-06-25 14:38:56 +0900 | [diff] [blame] | 590 | const struct renesas_usbhs_platform_info *info; |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 591 | struct usbhs_priv *priv; |
Yoshihiro Shimoda | f08acaf | 2019-06-25 14:38:53 +0900 | [diff] [blame] | 592 | struct device *dev = &pdev->dev; |
Linus Walleij | 3b31ec1 | 2019-12-17 15:12:41 +0100 | [diff] [blame] | 593 | struct gpio_desc *gpiod; |
| 594 | int ret; |
Yoshihiro Shimoda | b3103d0 | 2019-06-25 14:38:54 +0900 | [diff] [blame] | 595 | u32 tmp; |
Lad Prabhakar | 22ae641 | 2021-12-20 01:04:07 +0000 | [diff] [blame] | 596 | int irq; |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 597 | |
Yoshihiro Shimoda | b854100 | 2014-09-03 14:25:56 +0900 | [diff] [blame] | 598 | /* check device node */ |
Yoshihiro Shimoda | f08acaf | 2019-06-25 14:38:53 +0900 | [diff] [blame] | 599 | if (dev_of_node(dev)) |
Yoshihiro Shimoda | 76eff17 | 2019-06-25 14:38:56 +0900 | [diff] [blame] | 600 | info = of_device_get_match_data(dev); |
| 601 | else |
| 602 | info = renesas_usbhs_get_info(pdev); |
Yoshihiro Shimoda | b854100 | 2014-09-03 14:25:56 +0900 | [diff] [blame] | 603 | |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 604 | /* check platform information */ |
Ulrich Hecht | 8ecef00 | 2014-07-10 09:53:59 +0200 | [diff] [blame] | 605 | if (!info) { |
Yoshihiro Shimoda | f08acaf | 2019-06-25 14:38:53 +0900 | [diff] [blame] | 606 | dev_err(dev, "no platform information\n"); |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 607 | return -EINVAL; |
| 608 | } |
| 609 | |
| 610 | /* platform data */ |
Lad Prabhakar | 22ae641 | 2021-12-20 01:04:07 +0000 | [diff] [blame] | 611 | irq = platform_get_irq(pdev, 0); |
| 612 | if (irq < 0) |
| 613 | return irq; |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 614 | |
| 615 | /* usb private data */ |
Yoshihiro Shimoda | f08acaf | 2019-06-25 14:38:53 +0900 | [diff] [blame] | 616 | priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL); |
Peter Chen | b1cb07c | 2014-10-14 15:56:19 +0800 | [diff] [blame] | 617 | if (!priv) |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 618 | return -ENOMEM; |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 619 | |
YueHaibing | d706a95 | 2019-09-04 16:50:45 +0800 | [diff] [blame] | 620 | priv->base = devm_platform_ioremap_resource(pdev, 0); |
Thierry Reding | 148e113 | 2013-01-21 11:09:22 +0100 | [diff] [blame] | 621 | if (IS_ERR(priv->base)) |
| 622 | return PTR_ERR(priv->base); |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 623 | |
Yoshihiro Shimoda | f08acaf | 2019-06-25 14:38:53 +0900 | [diff] [blame] | 624 | if (of_property_read_bool(dev_of_node(dev), "extcon")) { |
| 625 | priv->edev = extcon_get_edev_by_phandle(dev, 0); |
Sergei Shtylyov | d7b3968 | 2014-12-16 01:42:13 +0300 | [diff] [blame] | 626 | if (IS_ERR(priv->edev)) |
| 627 | return PTR_ERR(priv->edev); |
| 628 | } |
| 629 | |
Yoshihiro Shimoda | f08acaf | 2019-06-25 14:38:53 +0900 | [diff] [blame] | 630 | priv->rsts = devm_reset_control_array_get_optional_shared(dev); |
Yoshihiro Shimoda | f181dbb | 2018-09-11 17:47:03 +0900 | [diff] [blame] | 631 | if (IS_ERR(priv->rsts)) |
| 632 | return PTR_ERR(priv->rsts); |
| 633 | |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 634 | /* |
| 635 | * care platform info |
| 636 | */ |
Ulrich Hecht | 8ecef00 | 2014-07-10 09:53:59 +0200 | [diff] [blame] | 637 | |
Yoshihiro Shimoda | 743344a9 | 2019-06-13 20:18:48 +0900 | [diff] [blame] | 638 | priv->dparam = info->driver_param; |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 639 | |
Yoshihiro Shimoda | be21a02 | 2019-05-13 11:40:29 +0900 | [diff] [blame] | 640 | if (!info->platform_callback.get_id) { |
Yoshihiro Shimoda | f08acaf | 2019-06-25 14:38:53 +0900 | [diff] [blame] | 641 | dev_err(dev, "no platform callbacks\n"); |
Yoshihiro Shimoda | be21a02 | 2019-05-13 11:40:29 +0900 | [diff] [blame] | 642 | return -EINVAL; |
Ulrich Hecht | 8ecef00 | 2014-07-10 09:53:59 +0200 | [diff] [blame] | 643 | } |
Yoshihiro Shimoda | 426d3ff | 2019-06-25 14:38:57 +0900 | [diff] [blame] | 644 | priv->pfunc = &info->platform_callback; |
Ulrich Hecht | 8ecef00 | 2014-07-10 09:53:59 +0200 | [diff] [blame] | 645 | |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 646 | /* set default param if platform doesn't have */ |
Yoshihiro Shimoda | 98e8650 | 2019-06-25 14:38:52 +0900 | [diff] [blame] | 647 | if (usbhs_get_dparam(priv, has_new_pipe_configs)) { |
| 648 | priv->dparam.pipe_configs = usbhsc_new_pipe; |
| 649 | priv->dparam.pipe_size = ARRAY_SIZE(usbhsc_new_pipe); |
| 650 | } else if (!priv->dparam.pipe_configs) { |
Yoshihiro Shimoda | 51f141a | 2015-11-18 14:34:09 +0900 | [diff] [blame] | 651 | priv->dparam.pipe_configs = usbhsc_default_pipe; |
| 652 | priv->dparam.pipe_size = ARRAY_SIZE(usbhsc_default_pipe); |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 653 | } |
Kuninori Morimoto | 4829820 | 2011-10-12 21:02:22 -0700 | [diff] [blame] | 654 | if (!priv->dparam.pio_dma_border) |
| 655 | priv->dparam.pio_dma_border = 64; /* 64byte */ |
Yoshihiro Shimoda | b3103d0 | 2019-06-25 14:38:54 +0900 | [diff] [blame] | 656 | if (!of_property_read_u32(dev_of_node(dev), "renesas,buswait", &tmp)) |
| 657 | priv->dparam.buswait_bwait = tmp; |
Linus Walleij | 3b31ec1 | 2019-12-17 15:12:41 +0100 | [diff] [blame] | 658 | gpiod = devm_gpiod_get_optional(dev, "renesas,enable", GPIOD_IN); |
| 659 | if (IS_ERR(gpiod)) |
| 660 | return PTR_ERR(gpiod); |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 661 | |
Kuninori Morimoto | b002ff6 | 2011-04-28 16:41:20 +0900 | [diff] [blame] | 662 | /* FIXME */ |
| 663 | /* runtime power control ? */ |
Yoshihiro Shimoda | 426d3ff | 2019-06-25 14:38:57 +0900 | [diff] [blame] | 664 | if (priv->pfunc->get_vbus) |
Chris Brandt | 97a7968 | 2019-05-15 10:20:41 -0500 | [diff] [blame] | 665 | usbhs_get_dparam(priv, runtime_pwctrl) = 1; |
Kuninori Morimoto | b002ff6 | 2011-04-28 16:41:20 +0900 | [diff] [blame] | 666 | |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 667 | /* |
| 668 | * priv settings |
| 669 | */ |
Lad Prabhakar | 22ae641 | 2021-12-20 01:04:07 +0000 | [diff] [blame] | 670 | priv->irq = irq; |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 671 | priv->pdev = pdev; |
Kuninori Morimoto | bc57381 | 2011-04-28 16:41:14 +0900 | [diff] [blame] | 672 | INIT_DELAYED_WORK(&priv->notify_hotplug_work, usbhsc_notify_hotplug); |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 673 | spin_lock_init(usbhs_priv_to_lock(priv)); |
| 674 | |
| 675 | /* call pipe and module init */ |
| 676 | ret = usbhs_pipe_probe(priv); |
| 677 | if (ret < 0) |
Kuninori Morimoto | 58efc77 | 2012-09-10 19:01:07 -0700 | [diff] [blame] | 678 | return ret; |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 679 | |
Kuninori Morimoto | d3af90a | 2011-06-06 14:18:44 +0900 | [diff] [blame] | 680 | ret = usbhs_fifo_probe(priv); |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 681 | if (ret < 0) |
Kuninori Morimoto | 97f9322 | 2011-05-11 16:00:15 +0900 | [diff] [blame] | 682 | goto probe_end_pipe_exit; |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 683 | |
Kuninori Morimoto | d3af90a | 2011-06-06 14:18:44 +0900 | [diff] [blame] | 684 | ret = usbhs_mod_probe(priv); |
| 685 | if (ret < 0) |
| 686 | goto probe_end_fifo_exit; |
| 687 | |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 688 | /* dev_set_drvdata should be called after usbhs_mod_init */ |
Libo Chen | c9a0552 | 2013-08-27 16:10:31 +0800 | [diff] [blame] | 689 | platform_set_drvdata(pdev, priv); |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 690 | |
Yoshihiro Shimoda | f181dbb | 2018-09-11 17:47:03 +0900 | [diff] [blame] | 691 | ret = reset_control_deassert(priv->rsts); |
| 692 | if (ret) |
| 693 | goto probe_fail_rst; |
| 694 | |
Yoshihiro Shimoda | f08acaf | 2019-06-25 14:38:53 +0900 | [diff] [blame] | 695 | ret = usbhsc_clk_get(dev, priv); |
Yoshihiro Shimoda | 3df0e24 | 2018-09-11 17:47:05 +0900 | [diff] [blame] | 696 | if (ret) |
| 697 | goto probe_fail_clks; |
| 698 | |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 699 | /* |
| 700 | * deviece reset here because |
| 701 | * USB device might be used in boot loader. |
| 702 | */ |
| 703 | usbhs_sys_clock_ctrl(priv, 0); |
| 704 | |
Ulrich Hecht | 8ecef00 | 2014-07-10 09:53:59 +0200 | [diff] [blame] | 705 | /* check GPIO determining if USB function should be enabled */ |
Linus Walleij | 3b31ec1 | 2019-12-17 15:12:41 +0100 | [diff] [blame] | 706 | if (gpiod) { |
| 707 | ret = !gpiod_get_value(gpiod); |
Ulrich Hecht | 8ecef00 | 2014-07-10 09:53:59 +0200 | [diff] [blame] | 708 | if (ret) { |
Linus Walleij | 3b31ec1 | 2019-12-17 15:12:41 +0100 | [diff] [blame] | 709 | dev_warn(dev, "USB function not selected (GPIO)\n"); |
Ulrich Hecht | 8ecef00 | 2014-07-10 09:53:59 +0200 | [diff] [blame] | 710 | ret = -ENOTSUPP; |
| 711 | goto probe_end_mod_exit; |
| 712 | } |
| 713 | } |
| 714 | |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 715 | /* |
| 716 | * platform call |
| 717 | * |
| 718 | * USB phy setup might depend on CPU/Board. |
| 719 | * If platform has its callback functions, |
| 720 | * call it here. |
| 721 | */ |
| 722 | ret = usbhs_platform_call(priv, hardware_init, pdev); |
| 723 | if (ret < 0) { |
Yoshihiro Shimoda | f08acaf | 2019-06-25 14:38:53 +0900 | [diff] [blame] | 724 | dev_err(dev, "platform init failed.\n"); |
Kuninori Morimoto | 97f9322 | 2011-05-11 16:00:15 +0900 | [diff] [blame] | 725 | goto probe_end_mod_exit; |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 726 | } |
| 727 | |
| 728 | /* reset phy for connection */ |
| 729 | usbhs_platform_call(priv, phy_reset, pdev); |
| 730 | |
Kuninori Morimoto | b002ff6 | 2011-04-28 16:41:20 +0900 | [diff] [blame] | 731 | /* power control */ |
Yoshihiro Shimoda | f08acaf | 2019-06-25 14:38:53 +0900 | [diff] [blame] | 732 | pm_runtime_enable(dev); |
Chris Brandt | 97a7968 | 2019-05-15 10:20:41 -0500 | [diff] [blame] | 733 | if (!usbhs_get_dparam(priv, runtime_pwctrl)) { |
Kuninori Morimoto | b002ff6 | 2011-04-28 16:41:20 +0900 | [diff] [blame] | 734 | usbhsc_power_ctrl(priv, 1); |
| 735 | usbhs_mod_autonomy_mode(priv); |
Yoshihiro Shimoda | ccc3264 | 2019-06-25 14:38:48 +0900 | [diff] [blame] | 736 | } else { |
| 737 | usbhs_mod_non_autonomy_mode(priv); |
Kuninori Morimoto | b002ff6 | 2011-04-28 16:41:20 +0900 | [diff] [blame] | 738 | } |
| 739 | |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 740 | /* |
| 741 | * manual call notify_hotplug for cold plug |
| 742 | */ |
Yoshihiro Shimoda | 0966648 | 2019-06-25 14:38:46 +0900 | [diff] [blame] | 743 | usbhsc_schedule_notify_hotplug(pdev); |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 744 | |
Yoshihiro Shimoda | f08acaf | 2019-06-25 14:38:53 +0900 | [diff] [blame] | 745 | dev_info(dev, "probed\n"); |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 746 | |
| 747 | return ret; |
| 748 | |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 749 | probe_end_mod_exit: |
Yoshihiro Shimoda | 3df0e24 | 2018-09-11 17:47:05 +0900 | [diff] [blame] | 750 | usbhsc_clk_put(priv); |
| 751 | probe_fail_clks: |
Yoshihiro Shimoda | f181dbb | 2018-09-11 17:47:03 +0900 | [diff] [blame] | 752 | reset_control_assert(priv->rsts); |
| 753 | probe_fail_rst: |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 754 | usbhs_mod_remove(priv); |
Kuninori Morimoto | d3af90a | 2011-06-06 14:18:44 +0900 | [diff] [blame] | 755 | probe_end_fifo_exit: |
| 756 | usbhs_fifo_remove(priv); |
Kuninori Morimoto | 97f9322 | 2011-05-11 16:00:15 +0900 | [diff] [blame] | 757 | probe_end_pipe_exit: |
| 758 | usbhs_pipe_remove(priv); |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 759 | |
Yoshihiro Shimoda | f08acaf | 2019-06-25 14:38:53 +0900 | [diff] [blame] | 760 | dev_info(dev, "probe failed (%d)\n", ret); |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 761 | |
| 762 | return ret; |
| 763 | } |
| 764 | |
Bill Pemberton | fb4e98a | 2012-11-19 13:26:20 -0500 | [diff] [blame] | 765 | static int usbhs_remove(struct platform_device *pdev) |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 766 | { |
Kuninori Morimoto | 206dcc2 | 2011-04-28 16:40:54 +0900 | [diff] [blame] | 767 | struct usbhs_priv *priv = usbhs_pdev_to_priv(pdev); |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 768 | |
| 769 | dev_dbg(&pdev->dev, "usb remove\n"); |
| 770 | |
Kuninori Morimoto | b002ff6 | 2011-04-28 16:41:20 +0900 | [diff] [blame] | 771 | /* power off */ |
Chris Brandt | 97a7968 | 2019-05-15 10:20:41 -0500 | [diff] [blame] | 772 | if (!usbhs_get_dparam(priv, runtime_pwctrl)) |
Kuninori Morimoto | b002ff6 | 2011-04-28 16:41:20 +0900 | [diff] [blame] | 773 | usbhsc_power_ctrl(priv, 0); |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 774 | |
Kuninori Morimoto | b002ff6 | 2011-04-28 16:41:20 +0900 | [diff] [blame] | 775 | pm_runtime_disable(&pdev->dev); |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 776 | |
| 777 | usbhs_platform_call(priv, hardware_exit, pdev); |
Yoshihiro Shimoda | 3df0e24 | 2018-09-11 17:47:05 +0900 | [diff] [blame] | 778 | usbhsc_clk_put(priv); |
Yoshihiro Shimoda | f181dbb | 2018-09-11 17:47:03 +0900 | [diff] [blame] | 779 | reset_control_assert(priv->rsts); |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 780 | usbhs_mod_remove(priv); |
Kuninori Morimoto | d3af90a | 2011-06-06 14:18:44 +0900 | [diff] [blame] | 781 | usbhs_fifo_remove(priv); |
Kuninori Morimoto | 97f9322 | 2011-05-11 16:00:15 +0900 | [diff] [blame] | 782 | usbhs_pipe_remove(priv); |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 783 | |
| 784 | return 0; |
| 785 | } |
| 786 | |
Arnd Bergmann | eaf3074 | 2018-12-11 11:06:25 +0100 | [diff] [blame] | 787 | static __maybe_unused int usbhsc_suspend(struct device *dev) |
Kuninori Morimoto | ca8a282 | 2011-10-10 21:58:19 -0700 | [diff] [blame] | 788 | { |
| 789 | struct usbhs_priv *priv = dev_get_drvdata(dev); |
| 790 | struct usbhs_mod *mod = usbhs_mod_get_current(priv); |
| 791 | |
| 792 | if (mod) { |
| 793 | usbhs_mod_call(priv, stop, priv); |
| 794 | usbhs_mod_change(priv, -1); |
| 795 | } |
| 796 | |
Chris Brandt | 97a7968 | 2019-05-15 10:20:41 -0500 | [diff] [blame] | 797 | if (mod || !usbhs_get_dparam(priv, runtime_pwctrl)) |
Kuninori Morimoto | ca8a282 | 2011-10-10 21:58:19 -0700 | [diff] [blame] | 798 | usbhsc_power_ctrl(priv, 0); |
| 799 | |
| 800 | return 0; |
| 801 | } |
| 802 | |
Arnd Bergmann | eaf3074 | 2018-12-11 11:06:25 +0100 | [diff] [blame] | 803 | static __maybe_unused int usbhsc_resume(struct device *dev) |
Kuninori Morimoto | ca8a282 | 2011-10-10 21:58:19 -0700 | [diff] [blame] | 804 | { |
| 805 | struct usbhs_priv *priv = dev_get_drvdata(dev); |
| 806 | struct platform_device *pdev = usbhs_priv_to_pdev(priv); |
| 807 | |
Chris Brandt | 97a7968 | 2019-05-15 10:20:41 -0500 | [diff] [blame] | 808 | if (!usbhs_get_dparam(priv, runtime_pwctrl)) { |
Kuninori Morimoto | ca8a282 | 2011-10-10 21:58:19 -0700 | [diff] [blame] | 809 | usbhsc_power_ctrl(priv, 1); |
Yoshihiro Shimoda | 59a0879 | 2017-07-19 16:16:54 +0900 | [diff] [blame] | 810 | usbhs_mod_autonomy_mode(priv); |
| 811 | } |
Kuninori Morimoto | ca8a282 | 2011-10-10 21:58:19 -0700 | [diff] [blame] | 812 | |
Kuninori Morimoto | 5b50d3b | 2012-08-05 22:44:43 -0700 | [diff] [blame] | 813 | usbhs_platform_call(priv, phy_reset, pdev); |
| 814 | |
Yoshihiro Shimoda | 0966648 | 2019-06-25 14:38:46 +0900 | [diff] [blame] | 815 | usbhsc_schedule_notify_hotplug(pdev); |
Kuninori Morimoto | ca8a282 | 2011-10-10 21:58:19 -0700 | [diff] [blame] | 816 | |
| 817 | return 0; |
| 818 | } |
| 819 | |
Yoshihiro Shimoda | d54d334 | 2018-11-21 06:31:23 +0000 | [diff] [blame] | 820 | static SIMPLE_DEV_PM_OPS(usbhsc_pm_ops, usbhsc_suspend, usbhsc_resume); |
Kuninori Morimoto | ca8a282 | 2011-10-10 21:58:19 -0700 | [diff] [blame] | 821 | |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 822 | static struct platform_driver renesas_usbhs_driver = { |
| 823 | .driver = { |
| 824 | .name = "renesas_usbhs", |
Kuninori Morimoto | ca8a282 | 2011-10-10 21:58:19 -0700 | [diff] [blame] | 825 | .pm = &usbhsc_pm_ops, |
Yoshihiro Shimoda | b854100 | 2014-09-03 14:25:56 +0900 | [diff] [blame] | 826 | .of_match_table = of_match_ptr(usbhs_of_match), |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 827 | }, |
| 828 | .probe = usbhs_probe, |
Bill Pemberton | 7690417 | 2012-11-19 13:21:08 -0500 | [diff] [blame] | 829 | .remove = usbhs_remove, |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 830 | }; |
| 831 | |
Axel Lin | cc27c96 | 2011-11-27 20:16:27 +0800 | [diff] [blame] | 832 | module_platform_driver(renesas_usbhs_driver); |
Kuninori Morimoto | f1407d5 | 2011-04-04 13:44:59 +0900 | [diff] [blame] | 833 | |
| 834 | MODULE_LICENSE("GPL"); |
| 835 | MODULE_DESCRIPTION("Renesas USB driver"); |
| 836 | MODULE_AUTHOR("Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>"); |