anatop.c 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. /*
  2. * Copyright (C) 2013-2015 Freescale Semiconductor, Inc.
  3. * Copyright 2017-2018 NXP.
  4. *
  5. * The code contained herein is licensed under the GNU General Public
  6. * License. You may obtain a copy of the GNU General Public License
  7. * Version 2 or later at the following locations:
  8. *
  9. * http://www.opensource.org/licenses/gpl-license.html
  10. * http://www.gnu.org/copyleft/gpl.html
  11. */
  12. #include <linux/err.h>
  13. #include <linux/io.h>
  14. #include <linux/of.h>
  15. #include <linux/of_address.h>
  16. #include <linux/mfd/syscon.h>
  17. #include <linux/regmap.h>
  18. #include "common.h"
  19. #include "hardware.h"
  20. #define REG_SET 0x4
  21. #define REG_CLR 0x8
  22. #define ANADIG_REG_2P5 0x130
  23. #define ANADIG_REG_CORE 0x140
  24. #define ANADIG_ANA_MISC0 0x150
  25. #define ANADIG_USB1_CHRG_DETECT 0x1b0
  26. #define ANADIG_USB2_CHRG_DETECT 0x210
  27. #define ANADIG_DIGPROG 0x260
  28. #define ANADIG_DIGPROG_IMX6SL 0x280
  29. #define ANADIG_DIGPROG_IMX7D 0x800
  30. #define SRC_SBMR2 0x1c
  31. #define BM_ANADIG_REG_2P5_ENABLE_WEAK_LINREG 0x40000
  32. #define BM_ANADIG_REG_2P5_ENABLE_PULLDOWN 0x8
  33. #define BM_ANADIG_REG_CORE_FET_ODRIVE 0x20000000
  34. #define BM_ANADIG_ANA_MISC0_STOP_MODE_CONFIG 0x1000
  35. /* Below MISC0_DISCON_HIGH_SNVS is only for i.MX6SL */
  36. #define BM_ANADIG_ANA_MISC0_DISCON_HIGH_SNVS 0x2000
  37. #define BM_ANADIG_USB_CHRG_DETECT_CHK_CHRG_B 0x80000
  38. #define BM_ANADIG_USB_CHRG_DETECT_EN_B 0x100000
  39. static struct regmap *anatop;
  40. static void imx_anatop_enable_weak2p5(bool enable)
  41. {
  42. u32 reg, val;
  43. regmap_read(anatop, ANADIG_ANA_MISC0, &val);
  44. /* can only be enabled when stop_mode_config is clear. */
  45. reg = ANADIG_REG_2P5;
  46. reg += (enable && (val & BM_ANADIG_ANA_MISC0_STOP_MODE_CONFIG) == 0) ?
  47. REG_SET : REG_CLR;
  48. regmap_write(anatop, reg, BM_ANADIG_REG_2P5_ENABLE_WEAK_LINREG);
  49. }
  50. static void imx_anatop_enable_fet_odrive(bool enable)
  51. {
  52. regmap_write(anatop, ANADIG_REG_CORE + (enable ? REG_SET : REG_CLR),
  53. BM_ANADIG_REG_CORE_FET_ODRIVE);
  54. }
  55. static inline void imx_anatop_enable_2p5_pulldown(bool enable)
  56. {
  57. regmap_write(anatop, ANADIG_REG_2P5 + (enable ? REG_SET : REG_CLR),
  58. BM_ANADIG_REG_2P5_ENABLE_PULLDOWN);
  59. }
  60. static inline void imx_anatop_disconnect_high_snvs(bool enable)
  61. {
  62. regmap_write(anatop, ANADIG_ANA_MISC0 + (enable ? REG_SET : REG_CLR),
  63. BM_ANADIG_ANA_MISC0_DISCON_HIGH_SNVS);
  64. }
  65. void imx_anatop_pre_suspend(void)
  66. {
  67. if (imx_mmdc_get_ddr_type() == IMX_DDR_TYPE_LPDDR2)
  68. imx_anatop_enable_2p5_pulldown(true);
  69. else
  70. imx_anatop_enable_weak2p5(true);
  71. imx_anatop_enable_fet_odrive(true);
  72. if (cpu_is_imx6sl())
  73. imx_anatop_disconnect_high_snvs(true);
  74. }
  75. void imx_anatop_post_resume(void)
  76. {
  77. if (imx_mmdc_get_ddr_type() == IMX_DDR_TYPE_LPDDR2)
  78. imx_anatop_enable_2p5_pulldown(false);
  79. else
  80. imx_anatop_enable_weak2p5(false);
  81. imx_anatop_enable_fet_odrive(false);
  82. if (cpu_is_imx6sl())
  83. imx_anatop_disconnect_high_snvs(false);
  84. }
  85. static void imx_anatop_usb_chrg_detect_disable(void)
  86. {
  87. regmap_write(anatop, ANADIG_USB1_CHRG_DETECT,
  88. BM_ANADIG_USB_CHRG_DETECT_EN_B
  89. | BM_ANADIG_USB_CHRG_DETECT_CHK_CHRG_B);
  90. regmap_write(anatop, ANADIG_USB2_CHRG_DETECT,
  91. BM_ANADIG_USB_CHRG_DETECT_EN_B |
  92. BM_ANADIG_USB_CHRG_DETECT_CHK_CHRG_B);
  93. }
  94. void __init imx_init_revision_from_anatop(void)
  95. {
  96. struct device_node *np;
  97. void __iomem *anatop_base;
  98. unsigned int revision;
  99. u32 digprog;
  100. u16 offset = ANADIG_DIGPROG;
  101. u8 major_part, minor_part;
  102. np = of_find_compatible_node(NULL, NULL, "fsl,imx6q-anatop");
  103. anatop_base = of_iomap(np, 0);
  104. WARN_ON(!anatop_base);
  105. if (of_device_is_compatible(np, "fsl,imx6sl-anatop"))
  106. offset = ANADIG_DIGPROG_IMX6SL;
  107. if (of_device_is_compatible(np, "fsl,imx7d-anatop"))
  108. offset = ANADIG_DIGPROG_IMX7D;
  109. digprog = readl_relaxed(anatop_base + offset);
  110. iounmap(anatop_base);
  111. /*
  112. * On i.MX7D digprog value match linux version format, so
  113. * it needn't map again and we can use register value directly.
  114. */
  115. if (of_device_is_compatible(np, "fsl,imx7d-anatop")) {
  116. revision = digprog & 0xff;
  117. } else {
  118. /*
  119. * MAJOR: [15:8], the major silicon revison;
  120. * MINOR: [7: 0], the minor silicon revison;
  121. *
  122. * please refer to the i.MX RM for the detailed
  123. * silicon revison bit define.
  124. * format the major part and minor part to match the
  125. * linux kernel soc version format.
  126. */
  127. major_part = (digprog >> 8) & 0xf;
  128. minor_part = digprog & 0xf;
  129. revision = ((major_part + 1) << 4) | minor_part;
  130. if ((digprog >> 16) == MXC_CPU_IMX6ULL) {
  131. void __iomem *src_base;
  132. u32 sbmr2;
  133. np = of_find_compatible_node(NULL, NULL,
  134. "fsl,imx6ul-src");
  135. src_base = of_iomap(np, 0);
  136. WARN_ON(!src_base);
  137. sbmr2 = readl_relaxed(src_base + SRC_SBMR2);
  138. iounmap(src_base);
  139. /* src_sbmr2 bit 6 is to identify if it is i.MX6ULZ */
  140. if (sbmr2 & (1 << 6)) {
  141. digprog &= ~(0xff << 16);
  142. digprog |= (MXC_CPU_IMX6ULZ << 16);
  143. }
  144. }
  145. }
  146. mxc_set_cpu_type(digprog >> 16 & 0xff);
  147. imx_set_soc_revision(revision);
  148. }
  149. void __init imx_anatop_init(void)
  150. {
  151. anatop = syscon_regmap_lookup_by_compatible("fsl,imx6q-anatop");
  152. if (IS_ERR(anatop)) {
  153. pr_err("%s: failed to find imx6q-anatop regmap!\n", __func__);
  154. return;
  155. }
  156. imx_anatop_usb_chrg_detect_disable();
  157. }