rcar3.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * Renesas USB driver R-Car Gen. 3 initialization and power control
  4. *
  5. * Copyright (C) 2016 Renesas Electronics Corporation
  6. */
  7. #include <linux/delay.h>
  8. #include <linux/io.h>
  9. #include "common.h"
  10. #include "rcar3.h"
  11. #define LPSTS 0x102
  12. #define UGCTRL 0x180 /* 32-bit register */
  13. #define UGCTRL2 0x184 /* 32-bit register */
  14. #define UGSTS 0x188 /* 32-bit register */
  15. /* Low Power Status register (LPSTS) */
  16. #define LPSTS_SUSPM 0x4000
  17. /* R-Car D3 only: USB General control register (UGCTRL) */
  18. #define UGCTRL_PLLRESET 0x00000001
  19. #define UGCTRL_CONNECT 0x00000004
  20. /*
  21. * USB General control register 2 (UGCTRL2)
  22. * Remarks: bit[31:11] and bit[9:6] should be 0
  23. */
  24. #define UGCTRL2_RESERVED_3 0x00000001 /* bit[3:0] should be B'0001 */
  25. #define UGCTRL2_USB0SEL_EHCI 0x00000010
  26. #define UGCTRL2_USB0SEL_HSUSB 0x00000020
  27. #define UGCTRL2_USB0SEL_OTG 0x00000030
  28. #define UGCTRL2_VBUSSEL 0x00000400
  29. /* R-Car D3 only: USB General status register (UGSTS) */
  30. #define UGSTS_LOCK 0x00000100
  31. static void usbhs_write32(struct usbhs_priv *priv, u32 reg, u32 data)
  32. {
  33. iowrite32(data, priv->base + reg);
  34. }
  35. static u32 usbhs_read32(struct usbhs_priv *priv, u32 reg)
  36. {
  37. return ioread32(priv->base + reg);
  38. }
  39. static void usbhs_rcar3_set_ugctrl2(struct usbhs_priv *priv, u32 val)
  40. {
  41. usbhs_write32(priv, UGCTRL2, val | UGCTRL2_RESERVED_3);
  42. }
  43. static void usbhs_rcar3_set_usbsel(struct usbhs_priv *priv, bool ehci)
  44. {
  45. if (ehci)
  46. usbhs_rcar3_set_ugctrl2(priv, UGCTRL2_USB0SEL_EHCI);
  47. else
  48. usbhs_rcar3_set_ugctrl2(priv, UGCTRL2_USB0SEL_HSUSB);
  49. }
  50. static int usbhs_rcar3_power_ctrl(struct platform_device *pdev,
  51. void __iomem *base, int enable)
  52. {
  53. struct usbhs_priv *priv = usbhs_pdev_to_priv(pdev);
  54. usbhs_rcar3_set_ugctrl2(priv, UGCTRL2_USB0SEL_OTG | UGCTRL2_VBUSSEL);
  55. if (enable) {
  56. usbhs_bset(priv, LPSTS, LPSTS_SUSPM, LPSTS_SUSPM);
  57. /* The controller on R-Car Gen3 needs to wait up to 45 usec */
  58. udelay(45);
  59. } else {
  60. usbhs_bset(priv, LPSTS, LPSTS_SUSPM, 0);
  61. }
  62. return 0;
  63. }
  64. /* R-Car D3 needs to release UGCTRL.PLLRESET */
  65. static int usbhs_rcar3_power_and_pll_ctrl(struct platform_device *pdev,
  66. void __iomem *base, int enable)
  67. {
  68. struct usbhs_priv *priv = usbhs_pdev_to_priv(pdev);
  69. u32 val;
  70. int timeout = 1000;
  71. bool is_host = false;
  72. if (enable) {
  73. usbhs_write32(priv, UGCTRL, 0); /* release PLLRESET */
  74. if (priv->edev)
  75. is_host = extcon_get_state(priv->edev, EXTCON_USB_HOST);
  76. usbhs_rcar3_set_usbsel(priv, is_host);
  77. usbhs_bset(priv, LPSTS, LPSTS_SUSPM, LPSTS_SUSPM);
  78. do {
  79. val = usbhs_read32(priv, UGSTS);
  80. udelay(1);
  81. } while (!(val & UGSTS_LOCK) && timeout--);
  82. usbhs_write32(priv, UGCTRL, UGCTRL_CONNECT);
  83. } else {
  84. usbhs_write32(priv, UGCTRL, 0);
  85. usbhs_bset(priv, LPSTS, LPSTS_SUSPM, 0);
  86. usbhs_write32(priv, UGCTRL, UGCTRL_PLLRESET);
  87. }
  88. return 0;
  89. }
  90. static int usbhs_rcar3_get_id(struct platform_device *pdev)
  91. {
  92. return USBHS_GADGET;
  93. }
  94. static int usbhs_rcar3_notifier(struct notifier_block *nb, unsigned long event,
  95. void *data)
  96. {
  97. struct usbhs_priv *priv = container_of(nb, struct usbhs_priv, nb);
  98. usbhs_rcar3_set_usbsel(priv, !!event);
  99. return NOTIFY_DONE;
  100. }
  101. const struct renesas_usbhs_platform_callback usbhs_rcar3_ops = {
  102. .power_ctrl = usbhs_rcar3_power_ctrl,
  103. .get_id = usbhs_rcar3_get_id,
  104. };
  105. const struct renesas_usbhs_platform_callback usbhs_rcar3_with_pll_ops = {
  106. .power_ctrl = usbhs_rcar3_power_and_pll_ctrl,
  107. .get_id = usbhs_rcar3_get_id,
  108. .notifier = usbhs_rcar3_notifier,
  109. };