prm2xxx.c 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. /*
  2. * OMAP2xxx PRM module functions
  3. *
  4. * Copyright (C) 2010-2012 Texas Instruments, Inc.
  5. * Copyright (C) 2010 Nokia Corporation
  6. * Benoît Cousson
  7. * Paul Walmsley
  8. * Rajendra Nayak <rnayak@ti.com>
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License version 2 as
  12. * published by the Free Software Foundation.
  13. */
  14. #include <linux/kernel.h>
  15. #include <linux/errno.h>
  16. #include <linux/err.h>
  17. #include <linux/io.h>
  18. #include <linux/irq.h>
  19. #include "common.h"
  20. #include <plat/cpu.h>
  21. #include <plat/prcm.h>
  22. #include "vp.h"
  23. #include "powerdomain.h"
  24. #include "clockdomain.h"
  25. #include "prm2xxx.h"
  26. #include "cm2xxx_3xxx.h"
  27. #include "prm-regbits-24xx.h"
  28. /*
  29. * omap2xxx_prm_reset_src_map - map from bits in the PRM_RSTST_WKUP
  30. * hardware register (which are specific to the OMAP2xxx SoCs) to
  31. * reset source ID bit shifts (which is an OMAP SoC-independent
  32. * enumeration)
  33. */
  34. static struct prm_reset_src_map omap2xxx_prm_reset_src_map[] = {
  35. { OMAP_GLOBALCOLD_RST_SHIFT, OMAP_GLOBAL_COLD_RST_SRC_ID_SHIFT },
  36. { OMAP_GLOBALWARM_RST_SHIFT, OMAP_GLOBAL_WARM_RST_SRC_ID_SHIFT },
  37. { OMAP24XX_SECU_VIOL_RST_SHIFT, OMAP_SECU_VIOL_RST_SRC_ID_SHIFT },
  38. { OMAP24XX_MPU_WD_RST_SHIFT, OMAP_MPU_WD_RST_SRC_ID_SHIFT },
  39. { OMAP24XX_SECU_WD_RST_SHIFT, OMAP_SECU_WD_RST_SRC_ID_SHIFT },
  40. { OMAP24XX_EXTWMPU_RST_SHIFT, OMAP_EXTWARM_RST_SRC_ID_SHIFT },
  41. { -1, -1 },
  42. };
  43. /**
  44. * omap2xxx_prm_read_reset_sources - return the last SoC reset source
  45. *
  46. * Return a u32 representing the last reset sources of the SoC. The
  47. * returned reset source bits are standardized across OMAP SoCs.
  48. */
  49. static u32 omap2xxx_prm_read_reset_sources(void)
  50. {
  51. struct prm_reset_src_map *p;
  52. u32 r = 0;
  53. u32 v;
  54. v = omap2_prm_read_mod_reg(WKUP_MOD, OMAP2_RM_RSTST);
  55. p = omap2xxx_prm_reset_src_map;
  56. while (p->reg_shift >= 0 && p->std_shift >= 0) {
  57. if (v & (1 << p->reg_shift))
  58. r |= 1 << p->std_shift;
  59. p++;
  60. }
  61. return r;
  62. }
  63. /**
  64. * omap2xxx_prm_dpll_reset - use DPLL reset to reboot the OMAP SoC
  65. *
  66. * Set the DPLL reset bit, which should reboot the SoC. This is the
  67. * recommended way to restart the SoC. No return value.
  68. */
  69. void omap2xxx_prm_dpll_reset(void)
  70. {
  71. omap2_prm_set_mod_reg_bits(OMAP_RST_DPLL3_MASK, WKUP_MOD,
  72. OMAP2_RM_RSTCTRL);
  73. /* OCP barrier */
  74. omap2_prm_read_mod_reg(WKUP_MOD, OMAP2_RM_RSTCTRL);
  75. }
  76. int omap2xxx_clkdm_sleep(struct clockdomain *clkdm)
  77. {
  78. omap2_prm_set_mod_reg_bits(OMAP24XX_FORCESTATE_MASK,
  79. clkdm->pwrdm.ptr->prcm_offs,
  80. OMAP2_PM_PWSTCTRL);
  81. return 0;
  82. }
  83. int omap2xxx_clkdm_wakeup(struct clockdomain *clkdm)
  84. {
  85. omap2_prm_clear_mod_reg_bits(OMAP24XX_FORCESTATE_MASK,
  86. clkdm->pwrdm.ptr->prcm_offs,
  87. OMAP2_PM_PWSTCTRL);
  88. return 0;
  89. }
  90. struct pwrdm_ops omap2_pwrdm_operations = {
  91. .pwrdm_set_next_pwrst = omap2_pwrdm_set_next_pwrst,
  92. .pwrdm_read_next_pwrst = omap2_pwrdm_read_next_pwrst,
  93. .pwrdm_read_pwrst = omap2_pwrdm_read_pwrst,
  94. .pwrdm_set_logic_retst = omap2_pwrdm_set_logic_retst,
  95. .pwrdm_set_mem_onst = omap2_pwrdm_set_mem_onst,
  96. .pwrdm_set_mem_retst = omap2_pwrdm_set_mem_retst,
  97. .pwrdm_read_mem_pwrst = omap2_pwrdm_read_mem_pwrst,
  98. .pwrdm_read_mem_retst = omap2_pwrdm_read_mem_retst,
  99. .pwrdm_wait_transition = omap2_pwrdm_wait_transition,
  100. };
  101. /*
  102. *
  103. */
  104. static struct prm_ll_data omap2xxx_prm_ll_data = {
  105. .read_reset_sources = &omap2xxx_prm_read_reset_sources,
  106. };
  107. static int __init omap2xxx_prm_init(void)
  108. {
  109. if (!cpu_is_omap24xx())
  110. return 0;
  111. return prm_register(&omap2xxx_prm_ll_data);
  112. }
  113. subsys_initcall(omap2xxx_prm_init);
  114. static void __exit omap2xxx_prm_exit(void)
  115. {
  116. if (!cpu_is_omap24xx())
  117. return;
  118. /* Should never happen */
  119. WARN(prm_unregister(&omap2xxx_prm_ll_data),
  120. "%s: prm_ll_data function pointer mismatch\n", __func__);
  121. }
  122. __exitcall(omap2xxx_prm_exit);