prcm.c 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. /*
  2. * linux/arch/arm/mach-omap2/prcm.c
  3. *
  4. * OMAP 24xx Power Reset and Clock Management (PRCM) functions
  5. *
  6. * Copyright (C) 2005 Nokia Corporation
  7. *
  8. * Written by Tony Lindgren <tony.lindgren@nokia.com>
  9. *
  10. * Copyright (C) 2007 Texas Instruments, Inc.
  11. * Rajendra Nayak <rnayak@ti.com>
  12. *
  13. * Some pieces of code Copyright (C) 2005 Texas Instruments, Inc.
  14. * Upgraded with OMAP4 support by Abhijit Pagare <abhijitpagare@ti.com>
  15. *
  16. * This program is free software; you can redistribute it and/or modify
  17. * it under the terms of the GNU General Public License version 2 as
  18. * published by the Free Software Foundation.
  19. */
  20. #include <linux/kernel.h>
  21. #include <linux/init.h>
  22. #include <linux/clk.h>
  23. #include <linux/io.h>
  24. #include <linux/delay.h>
  25. #include <linux/export.h>
  26. #include "common.h"
  27. #include <plat/prcm.h>
  28. #include <plat/irqs.h>
  29. #include "clock.h"
  30. #include "clock2xxx.h"
  31. #include "cm2xxx_3xxx.h"
  32. #include "prm2xxx_3xxx.h"
  33. #include "prm44xx.h"
  34. #include "prminst44xx.h"
  35. #include "cminst44xx.h"
  36. #include "prm-regbits-24xx.h"
  37. #include "prm-regbits-44xx.h"
  38. #include "control.h"
  39. void __iomem *prm_base;
  40. void __iomem *cm_base;
  41. void __iomem *cm2_base;
  42. void __iomem *prcm_mpu_base;
  43. #define MAX_MODULE_ENABLE_WAIT 100000
  44. u32 omap_prcm_get_reset_sources(void)
  45. {
  46. /* XXX This presumably needs modification for 34XX */
  47. if (cpu_is_omap24xx() || cpu_is_omap34xx())
  48. return omap2_prm_read_mod_reg(WKUP_MOD, OMAP2_RM_RSTST) & 0x7f;
  49. if (cpu_is_omap44xx())
  50. return omap2_prm_read_mod_reg(WKUP_MOD, OMAP4_RM_RSTST) & 0x7f;
  51. return 0;
  52. }
  53. EXPORT_SYMBOL(omap_prcm_get_reset_sources);
  54. /* Resets clock rates and reboots the system. Only called from system.h */
  55. void omap_prcm_restart(char mode, const char *cmd)
  56. {
  57. s16 prcm_offs = 0;
  58. if (cpu_is_omap24xx()) {
  59. omap2xxx_clk_prepare_for_reboot();
  60. prcm_offs = WKUP_MOD;
  61. } else if (cpu_is_omap34xx()) {
  62. prcm_offs = OMAP3430_GR_MOD;
  63. omap3_ctrl_write_boot_mode((cmd ? (u8)*cmd : 0));
  64. } else if (cpu_is_omap44xx()) {
  65. omap4_prminst_global_warm_sw_reset(); /* never returns */
  66. } else {
  67. WARN_ON(1);
  68. }
  69. /*
  70. * As per Errata i520, in some cases, user will not be able to
  71. * access DDR memory after warm-reset.
  72. * This situation occurs while the warm-reset happens during a read
  73. * access to DDR memory. In that particular condition, DDR memory
  74. * does not respond to a corrupted read command due to the warm
  75. * reset occurrence but SDRC is waiting for read completion.
  76. * SDRC is not sensitive to the warm reset, but the interconnect is
  77. * reset on the fly, thus causing a misalignment between SDRC logic,
  78. * interconnect logic and DDR memory state.
  79. * WORKAROUND:
  80. * Steps to perform before a Warm reset is trigged:
  81. * 1. enable self-refresh on idle request
  82. * 2. put SDRC in idle
  83. * 3. wait until SDRC goes to idle
  84. * 4. generate SW reset (Global SW reset)
  85. *
  86. * Steps to be performed after warm reset occurs (in bootloader):
  87. * if HW warm reset is the source, apply below steps before any
  88. * accesses to SDRAM:
  89. * 1. Reset SMS and SDRC and wait till reset is complete
  90. * 2. Re-initialize SMS, SDRC and memory
  91. *
  92. * NOTE: Above work around is required only if arch reset is implemented
  93. * using Global SW reset(GLOBAL_SW_RST). DPLL3 reset does not need
  94. * the WA since it resets SDRC as well as part of cold reset.
  95. */
  96. /* XXX should be moved to some OMAP2/3 specific code */
  97. omap2_prm_set_mod_reg_bits(OMAP_RST_DPLL3_MASK, prcm_offs,
  98. OMAP2_RM_RSTCTRL);
  99. omap2_prm_read_mod_reg(prcm_offs, OMAP2_RM_RSTCTRL); /* OCP barrier */
  100. }
  101. /**
  102. * omap2_cm_wait_idlest - wait for IDLEST bit to indicate module readiness
  103. * @reg: physical address of module IDLEST register
  104. * @mask: value to mask against to determine if the module is active
  105. * @idlest: idle state indicator (0 or 1) for the clock
  106. * @name: name of the clock (for printk)
  107. *
  108. * Returns 1 if the module indicated readiness in time, or 0 if it
  109. * failed to enable in roughly MAX_MODULE_ENABLE_WAIT microseconds.
  110. *
  111. * XXX This function is deprecated. It should be removed once the
  112. * hwmod conversion is complete.
  113. */
  114. int omap2_cm_wait_idlest(void __iomem *reg, u32 mask, u8 idlest,
  115. const char *name)
  116. {
  117. int i = 0;
  118. int ena = 0;
  119. if (idlest)
  120. ena = 0;
  121. else
  122. ena = mask;
  123. /* Wait for lock */
  124. omap_test_timeout(((__raw_readl(reg) & mask) == ena),
  125. MAX_MODULE_ENABLE_WAIT, i);
  126. if (i < MAX_MODULE_ENABLE_WAIT)
  127. pr_debug("cm: Module associated with clock %s ready after %d "
  128. "loops\n", name, i);
  129. else
  130. pr_err("cm: Module associated with clock %s didn't enable in "
  131. "%d tries\n", name, MAX_MODULE_ENABLE_WAIT);
  132. return (i < MAX_MODULE_ENABLE_WAIT) ? 1 : 0;
  133. };
  134. void __init omap2_set_globals_prcm(struct omap_globals *omap2_globals)
  135. {
  136. if (omap2_globals->prm)
  137. prm_base = omap2_globals->prm;
  138. if (omap2_globals->cm)
  139. cm_base = omap2_globals->cm;
  140. if (omap2_globals->cm2)
  141. cm2_base = omap2_globals->cm2;
  142. if (omap2_globals->prcm_mpu)
  143. prcm_mpu_base = omap2_globals->prcm_mpu;
  144. if (cpu_is_omap44xx() || soc_is_omap54xx()) {
  145. omap_prm_base_init();
  146. omap_cm_base_init();
  147. }
  148. }
  149. /*
  150. * Stubbed functions so that common files continue to build when
  151. * custom builds are used
  152. * XXX These are temporary and should be removed at the earliest possible
  153. * opportunity
  154. */
  155. int __weak omap4_cminst_wait_module_idle(u8 part, u16 inst, s16 cdoffs,
  156. u16 clkctrl_offs)
  157. {
  158. return 0;
  159. }
  160. void __weak omap4_cminst_module_enable(u8 mode, u8 part, u16 inst,
  161. s16 cdoffs, u16 clkctrl_offs)
  162. {
  163. }
  164. void __weak omap4_cminst_module_disable(u8 part, u16 inst, s16 cdoffs,
  165. u16 clkctrl_offs)
  166. {
  167. }