prm2xxx_3xxx.c 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. /*
  2. * OMAP2/3 PRM module functions
  3. *
  4. * Copyright (C) 2010 Texas Instruments, Inc.
  5. * Copyright (C) 2010 Nokia Corporation
  6. * Benoît Cousson
  7. * Paul Walmsley
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License version 2 as
  11. * published by the Free Software Foundation.
  12. */
  13. #include <linux/kernel.h>
  14. #include <linux/errno.h>
  15. #include <linux/err.h>
  16. #include <linux/io.h>
  17. #include <plat/common.h>
  18. #include <plat/cpu.h>
  19. #include <plat/prcm.h>
  20. #include "prm2xxx_3xxx.h"
  21. #include "cm2xxx_3xxx.h"
  22. #include "prm-regbits-24xx.h"
  23. #include "prm-regbits-34xx.h"
  24. u32 omap2_prm_read_mod_reg(s16 module, u16 idx)
  25. {
  26. return __raw_readl(prm_base + module + idx);
  27. }
  28. void omap2_prm_write_mod_reg(u32 val, s16 module, u16 idx)
  29. {
  30. __raw_writel(val, prm_base + module + idx);
  31. }
  32. /* Read-modify-write a register in a PRM module. Caller must lock */
  33. u32 omap2_prm_rmw_mod_reg_bits(u32 mask, u32 bits, s16 module, s16 idx)
  34. {
  35. u32 v;
  36. v = omap2_prm_read_mod_reg(module, idx);
  37. v &= ~mask;
  38. v |= bits;
  39. omap2_prm_write_mod_reg(v, module, idx);
  40. return v;
  41. }
  42. /* Read a PRM register, AND it, and shift the result down to bit 0 */
  43. u32 omap2_prm_read_mod_bits_shift(s16 domain, s16 idx, u32 mask)
  44. {
  45. u32 v;
  46. v = omap2_prm_read_mod_reg(domain, idx);
  47. v &= mask;
  48. v >>= __ffs(mask);
  49. return v;
  50. }
  51. u32 omap2_prm_set_mod_reg_bits(u32 bits, s16 module, s16 idx)
  52. {
  53. return omap2_prm_rmw_mod_reg_bits(bits, bits, module, idx);
  54. }
  55. u32 omap2_prm_clear_mod_reg_bits(u32 bits, s16 module, s16 idx)
  56. {
  57. return omap2_prm_rmw_mod_reg_bits(bits, 0x0, module, idx);
  58. }
  59. /**
  60. * omap2_prm_is_hardreset_asserted - read the HW reset line state of
  61. * submodules contained in the hwmod module
  62. * @prm_mod: PRM submodule base (e.g. CORE_MOD)
  63. * @shift: register bit shift corresponding to the reset line to check
  64. *
  65. * Returns 1 if the (sub)module hardreset line is currently asserted,
  66. * 0 if the (sub)module hardreset line is not currently asserted, or
  67. * -EINVAL if called while running on a non-OMAP2/3 chip.
  68. */
  69. int omap2_prm_is_hardreset_asserted(s16 prm_mod, u8 shift)
  70. {
  71. if (!(cpu_is_omap24xx() || cpu_is_omap34xx()))
  72. return -EINVAL;
  73. return omap2_prm_read_mod_bits_shift(prm_mod, OMAP2_RM_RSTCTRL,
  74. (1 << shift));
  75. }
  76. /**
  77. * omap2_prm_assert_hardreset - assert the HW reset line of a submodule
  78. * @prm_mod: PRM submodule base (e.g. CORE_MOD)
  79. * @shift: register bit shift corresponding to the reset line to assert
  80. *
  81. * Some IPs like dsp or iva contain processors that require an HW
  82. * reset line to be asserted / deasserted in order to fully enable the
  83. * IP. These modules may have multiple hard-reset lines that reset
  84. * different 'submodules' inside the IP block. This function will
  85. * place the submodule into reset. Returns 0 upon success or -EINVAL
  86. * upon an argument error.
  87. */
  88. int omap2_prm_assert_hardreset(s16 prm_mod, u8 shift)
  89. {
  90. u32 mask;
  91. if (!(cpu_is_omap24xx() || cpu_is_omap34xx()))
  92. return -EINVAL;
  93. mask = 1 << shift;
  94. omap2_prm_rmw_mod_reg_bits(mask, mask, prm_mod, OMAP2_RM_RSTCTRL);
  95. return 0;
  96. }
  97. /**
  98. * omap2_prm_deassert_hardreset - deassert a submodule hardreset line and wait
  99. * @prm_mod: PRM submodule base (e.g. CORE_MOD)
  100. * @rst_shift: register bit shift corresponding to the reset line to deassert
  101. * @st_shift: register bit shift for the status of the deasserted submodule
  102. *
  103. * Some IPs like dsp or iva contain processors that require an HW
  104. * reset line to be asserted / deasserted in order to fully enable the
  105. * IP. These modules may have multiple hard-reset lines that reset
  106. * different 'submodules' inside the IP block. This function will
  107. * take the submodule out of reset and wait until the PRCM indicates
  108. * that the reset has completed before returning. Returns 0 upon success or
  109. * -EINVAL upon an argument error, -EEXIST if the submodule was already out
  110. * of reset, or -EBUSY if the submodule did not exit reset promptly.
  111. */
  112. int omap2_prm_deassert_hardreset(s16 prm_mod, u8 rst_shift, u8 st_shift)
  113. {
  114. u32 rst, st;
  115. int c;
  116. if (!(cpu_is_omap24xx() || cpu_is_omap34xx()))
  117. return -EINVAL;
  118. rst = 1 << rst_shift;
  119. st = 1 << st_shift;
  120. /* Check the current status to avoid de-asserting the line twice */
  121. if (omap2_prm_read_mod_bits_shift(prm_mod, OMAP2_RM_RSTCTRL, rst) == 0)
  122. return -EEXIST;
  123. /* Clear the reset status by writing 1 to the status bit */
  124. omap2_prm_rmw_mod_reg_bits(0xffffffff, st, prm_mod, OMAP2_RM_RSTST);
  125. /* de-assert the reset control line */
  126. omap2_prm_rmw_mod_reg_bits(rst, 0, prm_mod, OMAP2_RM_RSTCTRL);
  127. /* wait the status to be set */
  128. omap_test_timeout(omap2_prm_read_mod_bits_shift(prm_mod, OMAP2_RM_RSTST,
  129. st),
  130. MAX_MODULE_HARDRESET_WAIT, c);
  131. return (c == MAX_MODULE_HARDRESET_WAIT) ? -EBUSY : 0;
  132. }