hwinit.c 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. /*
  2. *
  3. * Common functions for OMAP4 based boards
  4. *
  5. * (C) Copyright 2010
  6. * Texas Instruments, <www.ti.com>
  7. *
  8. * Author :
  9. * Aneesh V <aneesh@ti.com>
  10. * Steve Sakoman <steve@sakoman.com>
  11. *
  12. * See file CREDITS for list of people who contributed to this
  13. * project.
  14. *
  15. * This program is free software; you can redistribute it and/or
  16. * modify it under the terms of the GNU General Public License as
  17. * published by the Free Software Foundation; either version 2 of
  18. * the License, or (at your option) any later version.
  19. *
  20. * This program is distributed in the hope that it will be useful,
  21. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  22. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  23. * GNU General Public License for more details.
  24. *
  25. * You should have received a copy of the GNU General Public License
  26. * along with this program; if not, write to the Free Software
  27. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  28. * MA 02111-1307 USA
  29. */
  30. #include <common.h>
  31. #include <asm/armv7.h>
  32. #include <asm/arch/cpu.h>
  33. #include <asm/arch/sys_proto.h>
  34. #include <asm/sizes.h>
  35. #include <asm/emif.h>
  36. #include <asm/arch/gpio.h>
  37. #include <asm/omap_common.h>
  38. DECLARE_GLOBAL_DATA_PTR;
  39. u32 *const omap_si_rev = (u32 *)OMAP_SRAM_SCRATCH_OMAP_REV;
  40. static const struct gpio_bank gpio_bank_44xx[6] = {
  41. { (void *)OMAP44XX_GPIO1_BASE, METHOD_GPIO_24XX },
  42. { (void *)OMAP44XX_GPIO2_BASE, METHOD_GPIO_24XX },
  43. { (void *)OMAP44XX_GPIO3_BASE, METHOD_GPIO_24XX },
  44. { (void *)OMAP44XX_GPIO4_BASE, METHOD_GPIO_24XX },
  45. { (void *)OMAP44XX_GPIO5_BASE, METHOD_GPIO_24XX },
  46. { (void *)OMAP44XX_GPIO6_BASE, METHOD_GPIO_24XX },
  47. };
  48. const struct gpio_bank *const omap_gpio_bank = gpio_bank_44xx;
  49. #ifdef CONFIG_SPL_BUILD
  50. /*
  51. * Some tuning of IOs for optimal power and performance
  52. */
  53. void do_io_settings(void)
  54. {
  55. u32 lpddr2io;
  56. u32 omap4_rev = omap_revision();
  57. if (omap4_rev == OMAP4430_ES1_0)
  58. lpddr2io = CONTROL_LPDDR2IO_SLEW_125PS_DRV8_PULL_DOWN;
  59. else if (omap4_rev == OMAP4430_ES2_0)
  60. lpddr2io = CONTROL_LPDDR2IO_SLEW_325PS_DRV8_GATE_KEEPER;
  61. else
  62. lpddr2io = CONTROL_LPDDR2IO_SLEW_315PS_DRV12_PULL_DOWN;
  63. /* EMIF1 */
  64. writel(lpddr2io, (*ctrl)->control_lpddr2io1_0);
  65. writel(lpddr2io, (*ctrl)->control_lpddr2io1_1);
  66. /* No pull for GR10 as per hw team's recommendation */
  67. writel(lpddr2io & ~LPDDR2IO_GR10_WD_MASK,
  68. (*ctrl)->control_lpddr2io1_2);
  69. writel(CONTROL_LPDDR2IO_3_VAL, (*ctrl)->control_lpddr2io1_3);
  70. /* EMIF2 */
  71. writel(lpddr2io, (*ctrl)->control_lpddr2io2_0);
  72. writel(lpddr2io, (*ctrl)->control_lpddr2io2_1);
  73. /* No pull for GR10 as per hw team's recommendation */
  74. writel(lpddr2io & ~LPDDR2IO_GR10_WD_MASK,
  75. (*ctrl)->control_lpddr2io2_2);
  76. writel(CONTROL_LPDDR2IO_3_VAL, (*ctrl)->control_lpddr2io2_3);
  77. /*
  78. * Some of these settings (TRIM values) come from eFuse and are
  79. * in turn programmed in the eFuse at manufacturing time after
  80. * calibration of the device. Do the software over-ride only if
  81. * the device is not correctly trimmed
  82. */
  83. if (!(readl((*ctrl)->control_std_fuse_opp_bgap) & 0xFFFF)) {
  84. writel(LDOSRAM_VOLT_CTRL_OVERRIDE,
  85. (*ctrl)->control_ldosram_iva_voltage_ctrl);
  86. writel(LDOSRAM_VOLT_CTRL_OVERRIDE,
  87. (*ctrl)->control_ldosram_mpu_voltage_ctrl);
  88. writel(LDOSRAM_VOLT_CTRL_OVERRIDE,
  89. (*ctrl)->control_ldosram_core_voltage_ctrl);
  90. }
  91. /*
  92. * Over-ride the register
  93. * i. unconditionally for all 4430
  94. * ii. only if un-trimmed for 4460
  95. */
  96. if (!readl((*ctrl)->control_efuse_1))
  97. writel(CONTROL_EFUSE_1_OVERRIDE, (*ctrl)->control_efuse_1);
  98. if ((omap4_rev < OMAP4460_ES1_0) || !readl((*ctrl)->control_efuse_2))
  99. writel(CONTROL_EFUSE_2_OVERRIDE, (*ctrl)->control_efuse_2);
  100. }
  101. #endif /* CONFIG_SPL_BUILD */
  102. /* dummy fuction for omap4 */
  103. void config_data_eye_leveling_samples(u32 emif_base)
  104. {
  105. }
  106. void init_omap_revision(void)
  107. {
  108. /*
  109. * For some of the ES2/ES1 boards ID_CODE is not reliable:
  110. * Also, ES1 and ES2 have different ARM revisions
  111. * So use ARM revision for identification
  112. */
  113. unsigned int arm_rev = cortex_rev();
  114. switch (arm_rev) {
  115. case MIDR_CORTEX_A9_R0P1:
  116. *omap_si_rev = OMAP4430_ES1_0;
  117. break;
  118. case MIDR_CORTEX_A9_R1P2:
  119. switch (readl(CONTROL_ID_CODE)) {
  120. case OMAP4_CONTROL_ID_CODE_ES2_0:
  121. *omap_si_rev = OMAP4430_ES2_0;
  122. break;
  123. case OMAP4_CONTROL_ID_CODE_ES2_1:
  124. *omap_si_rev = OMAP4430_ES2_1;
  125. break;
  126. case OMAP4_CONTROL_ID_CODE_ES2_2:
  127. *omap_si_rev = OMAP4430_ES2_2;
  128. break;
  129. default:
  130. *omap_si_rev = OMAP4430_ES2_0;
  131. break;
  132. }
  133. break;
  134. case MIDR_CORTEX_A9_R1P3:
  135. *omap_si_rev = OMAP4430_ES2_3;
  136. break;
  137. case MIDR_CORTEX_A9_R2P10:
  138. switch (readl(CONTROL_ID_CODE)) {
  139. case OMAP4460_CONTROL_ID_CODE_ES1_1:
  140. *omap_si_rev = OMAP4460_ES1_1;
  141. break;
  142. case OMAP4460_CONTROL_ID_CODE_ES1_0:
  143. default:
  144. *omap_si_rev = OMAP4460_ES1_0;
  145. break;
  146. }
  147. break;
  148. default:
  149. *omap_si_rev = OMAP4430_SILICON_ID_INVALID;
  150. break;
  151. }
  152. }
  153. #ifndef CONFIG_SYS_L2CACHE_OFF
  154. void v7_outer_cache_enable(void)
  155. {
  156. set_pl310_ctrl_reg(1);
  157. }
  158. void v7_outer_cache_disable(void)
  159. {
  160. set_pl310_ctrl_reg(0);
  161. }
  162. #endif /* !CONFIG_SYS_L2CACHE_OFF */