Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 | // SPDX-License-Identifier: GPL-2.0 /* * Mediatek "glue layer" * * Copyright (C) 2019-2021 by Mediatek * Based on the AllWinner SUNXI "glue layer" code. * Copyright (C) 2015 Hans de Goede <hdegoede@redhat.com> * Copyright (C) 2013 Jussi Kivilinna <jussi.kivilinna@iki.fi> * * This file is part of the Inventra Controller Driver for Linux. */ #include <clk.h> #include <dm.h> #include <dm/device_compat.h> #include <dm/lists.h> #include <dm/root.h> #include <linux/delay.h> #include <linux/printk.h> #include <linux/usb/musb.h> #include <usb.h> #include "linux-compat.h" #include "musb_core.h" #include "musb_uboot.h" #define DBG_I(fmt, ...) \ pr_info(fmt, ##__VA_ARGS__) struct mtk_musb_config { struct musb_hdrc_config *config; }; struct mtk_musb_glue { struct musb_host_data mdata; struct clk usbpllclk; struct clk usbmcuclk; struct clk usbclk; struct mtk_musb_config *cfg; struct device dev; }; #define to_mtk_musb_glue(d) container_of(d, struct mtk_musb_glue, dev) /****************************************************************************** * phy settings ******************************************************************************/ #define USB20_PHY_BASE 0x11110800 #define USBPHY_READ8(offset) \ readb((void *)(USB20_PHY_BASE + (offset))) #define USBPHY_WRITE8(offset, value) \ writeb(value, (void *)(USB20_PHY_BASE + (offset))) #define USBPHY_SET8(offset, mask) \ USBPHY_WRITE8(offset, (USBPHY_READ8(offset)) | (mask)) #define USBPHY_CLR8(offset, mask) \ USBPHY_WRITE8(offset, (USBPHY_READ8(offset)) & (~(mask))) static void mt_usb_phy_poweron(void) { /* * switch to USB function. * (system register, force ip into usb mode). */ USBPHY_CLR8(0x6b, 0x04); USBPHY_CLR8(0x6e, 0x01); USBPHY_CLR8(0x21, 0x03); /* RG_USB20_BC11_SW_EN = 1'b0 */ USBPHY_SET8(0x22, 0x04); USBPHY_CLR8(0x1a, 0x80); /* RG_USB20_DP_100K_EN = 1'b0 */ /* RG_USB20_DP_100K_EN = 1'b0 */ USBPHY_CLR8(0x22, 0x03); /*OTG enable*/ USBPHY_SET8(0x20, 0x10); /* release force suspendm */ USBPHY_CLR8(0x6a, 0x04); mdelay(800); /* force enter device mode */ USBPHY_CLR8(0x6c, 0x10); USBPHY_SET8(0x6c, 0x2E); USBPHY_SET8(0x6d, 0x3E); } static void mt_usb_phy_savecurrent(void) { /* * switch to USB function. * (system register, force ip into usb mode). */ USBPHY_CLR8(0x6b, 0x04); USBPHY_CLR8(0x6e, 0x01); USBPHY_CLR8(0x21, 0x03); /* release force suspendm */ USBPHY_CLR8(0x6a, 0x04); USBPHY_SET8(0x68, 0x04); /* RG_DPPULLDOWN./RG_DMPULLDOWN. */ USBPHY_SET8(0x68, 0xc0); /* RG_XCVRSEL[1:0] = 2'b01 */ USBPHY_CLR8(0x68, 0x30); USBPHY_SET8(0x68, 0x10); /* RG_TERMSEL = 1'b1 */ USBPHY_SET8(0x68, 0x04); /* RG_DATAIN[3:0] = 4'b0000 */ USBPHY_CLR8(0x69, 0x3c); /* * force_dp_pulldown, force_dm_pulldown, * force_xcversel, force_termsel. */ USBPHY_SET8(0x6a, 0xba); /* RG_USB20_BC11_SW_EN = 1'b0 */ USBPHY_CLR8(0x1a, 0x80); /* RG_USB20_OTG_VBUSSCMP_EN = 1'b0 */ USBPHY_CLR8(0x1a, 0x10); mdelay(800); USBPHY_CLR8(0x6a, 0x04); /* rg_usb20_pll_stable = 1 */ //USBPHY_SET8(0x63, 0x02); mdelay(1); /* force suspendm = 1 */ //USBPHY_SET8(0x6a, 0x04); } static void mt_usb_phy_recover(void) { /* clean PUPD_BIST_EN */ /* PUPD_BIST_EN = 1'b0 */ /* PMIC will use it to detect charger type */ USBPHY_CLR8(0x1d, 0x10); /* force_uart_en = 1'b0 */ USBPHY_CLR8(0x6b, 0x04); /* RG_UART_EN = 1'b0 */ USBPHY_CLR8(0x6e, 0x01); /* force_uart_en = 1'b0 */ USBPHY_CLR8(0x6a, 0x04); USBPHY_CLR8(0x21, 0x03); USBPHY_CLR8(0x68, 0xf4); /* RG_DATAIN[3:0] = 4'b0000 */ USBPHY_CLR8(0x69, 0x3c); USBPHY_CLR8(0x6a, 0xba); /* RG_USB20_BC11_SW_EN = 1'b0 */ USBPHY_CLR8(0x1a, 0x80); /* RG_USB20_OTG_VBUSSCMP_EN = 1'b1 */ USBPHY_SET8(0x1a, 0x10); //HQA adjustment USBPHY_CLR8(0x18, 0x08); USBPHY_SET8(0x18, 0x06); mdelay(800); /* force enter device mode */ //USBPHY_CLR8(0x6c, 0x10); //USBPHY_SET8(0x6c, 0x2E); //USBPHY_SET8(0x6d, 0x3E); /* enable VRT internal R architecture */ /* RG_USB20_INTR_EN = 1'b1 */ USBPHY_SET8(0x00, 0x20); } /****************************************************************************** * MUSB Glue code ******************************************************************************/ static irqreturn_t mtk_musb_interrupt(int irq, void *__hci) { struct musb *musb = __hci; irqreturn_t retval = IRQ_NONE; /* read and flush interrupts */ musb->int_usb = musb_readb(musb->mregs, MUSB_INTRUSB); // last_int_usb = musb->int_usb; if (musb->int_usb) musb_writeb(musb->mregs, MUSB_INTRUSB, musb->int_usb); musb->int_tx = musb_readw(musb->mregs, MUSB_INTRTX); if (musb->int_tx) musb_writew(musb->mregs, MUSB_INTRTX, musb->int_tx); musb->int_rx = musb_readw(musb->mregs, MUSB_INTRRX); if (musb->int_rx) musb_writew(musb->mregs, MUSB_INTRRX, musb->int_rx); if (musb->int_usb || musb->int_tx || musb->int_rx) retval |= musb_interrupt(musb); return retval; } /* musb_core does not call enable / disable in a balanced manner <sigh> */ static bool enabled; static int mtk_musb_enable(struct musb *musb) { struct mtk_musb_glue *glue = to_mtk_musb_glue(musb->controller); DBG_I("%s():\n", __func__); musb_ep_select(musb->mregs, 0); musb_writeb(musb->mregs, MUSB_FADDR, 0); if (enabled) return 0; mt_usb_phy_recover(); enabled = true; return 0; } static void mtk_musb_disable(struct musb *musb) { struct mtk_musb_glue *glue = to_mtk_musb_glue(musb->controller); int ret; DBG_I("%s():\n", __func__); if (!enabled) return; mt_usb_phy_savecurrent(); enabled = false; } static int mtk_musb_init(struct musb *musb) { struct mtk_musb_glue *glue = to_mtk_musb_glue(musb->controller); int ret; DBG_I("%s():\n", __func__); ret = clk_enable(&glue->usbpllclk); if (ret) { dev_err(musb->controller, "failed to enable usbpll clock\n"); return ret; } ret = clk_enable(&glue->usbmcuclk); if (ret) { dev_err(musb->controller, "failed to enable usbmcu clock\n"); return ret; } ret = clk_enable(&glue->usbclk); if (ret) { dev_err(musb->controller, "failed to enable usb clock\n"); return ret; } musb->isr = mtk_musb_interrupt; return 0; } static int mtk_musb_exit(struct musb *musb) { struct mtk_musb_glue *glue = to_mtk_musb_glue(musb->controller); clk_disable(&glue->usbclk); clk_disable(&glue->usbmcuclk); clk_disable(&glue->usbpllclk); return 0; } static const struct musb_platform_ops mtk_musb_ops = { .init = mtk_musb_init, .exit = mtk_musb_exit, .enable = mtk_musb_enable, .disable = mtk_musb_disable, }; /* MTK OTG supports up to 7 endpoints */ #define MTK_MUSB_MAX_EP_NUM 8 #define MTK_MUSB_RAM_BITS 16 static struct musb_fifo_cfg mtk_musb_mode_cfg[] = { MUSB_EP_FIFO_SINGLE(1, FIFO_TX, 512), MUSB_EP_FIFO_SINGLE(1, FIFO_RX, 512), MUSB_EP_FIFO_SINGLE(2, FIFO_TX, 512), MUSB_EP_FIFO_SINGLE(2, FIFO_RX, 512), MUSB_EP_FIFO_SINGLE(3, FIFO_TX, 512), MUSB_EP_FIFO_SINGLE(3, FIFO_RX, 512), MUSB_EP_FIFO_SINGLE(4, FIFO_TX, 512), MUSB_EP_FIFO_SINGLE(4, FIFO_RX, 512), MUSB_EP_FIFO_SINGLE(5, FIFO_TX, 512), MUSB_EP_FIFO_SINGLE(5, FIFO_RX, 512), MUSB_EP_FIFO_SINGLE(6, FIFO_TX, 512), MUSB_EP_FIFO_SINGLE(6, FIFO_RX, 512), MUSB_EP_FIFO_SINGLE(7, FIFO_TX, 512), MUSB_EP_FIFO_SINGLE(7, FIFO_RX, 512), }; static struct musb_hdrc_config musb_config = { .fifo_cfg = mtk_musb_mode_cfg, .fifo_cfg_size = ARRAY_SIZE(mtk_musb_mode_cfg), .multipoint = true, .dyn_fifo = true, .num_eps = MTK_MUSB_MAX_EP_NUM, .ram_bits = MTK_MUSB_RAM_BITS, }; static int musb_usb_probe(struct udevice *dev) { struct mtk_musb_glue *glue = dev_get_priv(dev); struct musb_host_data *host = &glue->mdata; struct musb_hdrc_platform_data pdata; void *base = dev_read_addr_ptr(dev); int ret; DBG_I("%s():\n", __func__); #ifdef CONFIG_USB_MUSB_HOST struct usb_bus_priv *priv = dev_get_uclass_priv(dev); #endif if (!base) return -EINVAL; glue->cfg = (struct mtk_musb_config *)dev_get_driver_data(dev); if (!glue->cfg) return -EINVAL; ret = clk_get_by_name(dev, "usbpll", &glue->usbpllclk); if (ret) { dev_err(dev, "failed to get usbpll clock\n"); return ret; } ret = clk_get_by_name(dev, "usbmcu", &glue->usbmcuclk); if (ret) { dev_err(dev, "failed to get usbmcu clock\n"); return ret; } ret = clk_get_by_name(dev, "usb", &glue->usbclk); if (ret) { dev_err(dev, "failed to get usb clock\n"); return ret; } memset(&pdata, 0, sizeof(pdata)); pdata.power = (u8)400; pdata.platform_ops = &mtk_musb_ops; pdata.config = glue->cfg->config; #ifdef CONFIG_USB_MUSB_HOST priv->desc_before_addr = true; pdata.mode = MUSB_HOST; host->host = musb_init_controller(&pdata, &glue->dev, base); if (!host->host) return -EIO; ret = musb_lowlevel_init(host); if (!ret) printf("MTK MUSB OTG (Host)\n"); #else pdata.mode = MUSB_PERIPHERAL; host->host = musb_register(&pdata, &glue->dev, base); if (!host->host) return -EIO; printf("MTK MUSB OTG (Peripheral)\n"); #endif mt_usb_phy_poweron(); return ret; } static int musb_usb_remove(struct udevice *dev) { struct mtk_musb_glue *glue = dev_get_priv(dev); struct musb_host_data *host = &glue->mdata; musb_stop(host->host); free(host->host); host->host = NULL; return 0; } static const struct mtk_musb_config mt8518_cfg = { .config = &musb_config, }; static const struct udevice_id mtk_musb_ids[] = { { .compatible = "mediatek,mt8518-musb", .data = (ulong)&mt8518_cfg }, { } }; U_BOOT_DRIVER(mtk_musb) = { .name = "mtk_musb", #ifdef CONFIG_USB_MUSB_HOST .id = UCLASS_USB, #else .id = UCLASS_USB_GADGET_GENERIC, #endif .of_match = mtk_musb_ids, .probe = musb_usb_probe, .remove = musb_usb_remove, #ifdef CONFIG_USB_MUSB_HOST .ops = &musb_usb_ops, #endif .plat_auto = sizeof(struct usb_plat), .priv_auto = sizeof(struct mtk_musb_glue), }; |