anatop.c 4.8 KB

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