anatop.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. /*
  2. * Copyright (C) 2013 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 BM_ANADIG_REG_2P5_ENABLE_WEAK_LINREG 0x40000
  29. #define BM_ANADIG_REG_CORE_FET_ODRIVE 0x20000000
  30. #define BM_ANADIG_ANA_MISC0_STOP_MODE_CONFIG 0x1000
  31. #define BM_ANADIG_USB_CHRG_DETECT_CHK_CHRG_B 0x80000
  32. #define BM_ANADIG_USB_CHRG_DETECT_EN_B 0x100000
  33. static struct regmap *anatop;
  34. static void imx_anatop_enable_weak2p5(bool enable)
  35. {
  36. u32 reg, val;
  37. regmap_read(anatop, ANADIG_ANA_MISC0, &val);
  38. /* can only be enabled when stop_mode_config is clear. */
  39. reg = ANADIG_REG_2P5;
  40. reg += (enable && (val & BM_ANADIG_ANA_MISC0_STOP_MODE_CONFIG) == 0) ?
  41. REG_SET : REG_CLR;
  42. regmap_write(anatop, reg, BM_ANADIG_REG_2P5_ENABLE_WEAK_LINREG);
  43. }
  44. static void imx_anatop_enable_fet_odrive(bool enable)
  45. {
  46. regmap_write(anatop, ANADIG_REG_CORE + (enable ? REG_SET : REG_CLR),
  47. BM_ANADIG_REG_CORE_FET_ODRIVE);
  48. }
  49. void imx_anatop_pre_suspend(void)
  50. {
  51. imx_anatop_enable_weak2p5(true);
  52. imx_anatop_enable_fet_odrive(true);
  53. }
  54. void imx_anatop_post_resume(void)
  55. {
  56. imx_anatop_enable_fet_odrive(false);
  57. imx_anatop_enable_weak2p5(false);
  58. }
  59. static void imx_anatop_usb_chrg_detect_disable(void)
  60. {
  61. regmap_write(anatop, ANADIG_USB1_CHRG_DETECT,
  62. BM_ANADIG_USB_CHRG_DETECT_EN_B
  63. | BM_ANADIG_USB_CHRG_DETECT_CHK_CHRG_B);
  64. regmap_write(anatop, ANADIG_USB2_CHRG_DETECT,
  65. BM_ANADIG_USB_CHRG_DETECT_EN_B |
  66. BM_ANADIG_USB_CHRG_DETECT_CHK_CHRG_B);
  67. }
  68. void __init imx_init_revision_from_anatop(void)
  69. {
  70. struct device_node *np;
  71. void __iomem *anatop_base;
  72. unsigned int revision;
  73. u32 digprog;
  74. u16 offset = ANADIG_DIGPROG;
  75. np = of_find_compatible_node(NULL, NULL, "fsl,imx6q-anatop");
  76. anatop_base = of_iomap(np, 0);
  77. WARN_ON(!anatop_base);
  78. if (of_device_is_compatible(np, "fsl,imx6sl-anatop"))
  79. offset = ANADIG_DIGPROG_IMX6SL;
  80. digprog = readl_relaxed(anatop_base + offset);
  81. iounmap(anatop_base);
  82. switch (digprog & 0xff) {
  83. case 0:
  84. revision = IMX_CHIP_REVISION_1_0;
  85. break;
  86. case 1:
  87. revision = IMX_CHIP_REVISION_1_1;
  88. break;
  89. case 2:
  90. revision = IMX_CHIP_REVISION_1_2;
  91. break;
  92. default:
  93. revision = IMX_CHIP_REVISION_UNKNOWN;
  94. }
  95. mxc_set_cpu_type(digprog >> 16 & 0xff);
  96. imx_set_soc_revision(revision);
  97. }
  98. void __init imx_anatop_init(void)
  99. {
  100. anatop = syscon_regmap_lookup_by_compatible("fsl,imx6q-anatop");
  101. if (IS_ERR(anatop)) {
  102. pr_err("%s: failed to find imx6q-anatop regmap!\n", __func__);
  103. return;
  104. }
  105. imx_anatop_usb_chrg_detect_disable();
  106. }