prm2xxx.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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. int omap2xxx_clkdm_sleep(struct clockdomain *clkdm)
  64. {
  65. omap2_prm_set_mod_reg_bits(OMAP24XX_FORCESTATE_MASK,
  66. clkdm->pwrdm.ptr->prcm_offs,
  67. OMAP2_PM_PWSTCTRL);
  68. return 0;
  69. }
  70. int omap2xxx_clkdm_wakeup(struct clockdomain *clkdm)
  71. {
  72. omap2_prm_clear_mod_reg_bits(OMAP24XX_FORCESTATE_MASK,
  73. clkdm->pwrdm.ptr->prcm_offs,
  74. OMAP2_PM_PWSTCTRL);
  75. return 0;
  76. }
  77. struct pwrdm_ops omap2_pwrdm_operations = {
  78. .pwrdm_set_next_pwrst = omap2_pwrdm_set_next_pwrst,
  79. .pwrdm_read_next_pwrst = omap2_pwrdm_read_next_pwrst,
  80. .pwrdm_read_pwrst = omap2_pwrdm_read_pwrst,
  81. .pwrdm_set_logic_retst = omap2_pwrdm_set_logic_retst,
  82. .pwrdm_set_mem_onst = omap2_pwrdm_set_mem_onst,
  83. .pwrdm_set_mem_retst = omap2_pwrdm_set_mem_retst,
  84. .pwrdm_read_mem_pwrst = omap2_pwrdm_read_mem_pwrst,
  85. .pwrdm_read_mem_retst = omap2_pwrdm_read_mem_retst,
  86. .pwrdm_wait_transition = omap2_pwrdm_wait_transition,
  87. };
  88. /*
  89. *
  90. */
  91. static struct prm_ll_data omap2xxx_prm_ll_data = {
  92. .read_reset_sources = &omap2xxx_prm_read_reset_sources,
  93. };
  94. static int __init omap2xxx_prm_init(void)
  95. {
  96. if (!cpu_is_omap24xx())
  97. return 0;
  98. return prm_register(&omap2xxx_prm_ll_data);
  99. }
  100. subsys_initcall(omap2xxx_prm_init);
  101. static void __exit omap2xxx_prm_exit(void)
  102. {
  103. if (!cpu_is_omap24xx())
  104. return;
  105. /* Should never happen */
  106. WARN(prm_unregister(&omap2xxx_prm_ll_data),
  107. "%s: prm_ll_data function pointer mismatch\n", __func__);
  108. }
  109. __exitcall(omap2xxx_prm_exit);