soc.c 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. /*
  2. * (C) Copyright 2007
  3. * Sascha Hauer, Pengutronix
  4. *
  5. * (C) Copyright 2009 Freescale Semiconductor, Inc.
  6. *
  7. * See file CREDITS for list of people who contributed to this
  8. * project.
  9. *
  10. * This program is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU General Public License as
  12. * published by the Free Software Foundation; either version 2 of
  13. * the License, or (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  23. * MA 02111-1307 USA
  24. */
  25. #include <common.h>
  26. #include <asm/errno.h>
  27. #include <asm/io.h>
  28. #include <asm/arch/imx-regs.h>
  29. #include <asm/arch/clock.h>
  30. #include <asm/arch/sys_proto.h>
  31. #include <asm/imx-common/boot_mode.h>
  32. #include <asm/imx-common/dma.h>
  33. #include <stdbool.h>
  34. struct scu_regs {
  35. u32 ctrl;
  36. u32 config;
  37. u32 status;
  38. u32 invalidate;
  39. u32 fpga_rev;
  40. };
  41. u32 get_cpu_rev(void)
  42. {
  43. struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
  44. u32 reg = readl(&anatop->digprog_sololite);
  45. u32 type = ((reg >> 16) & 0xff);
  46. if (type != MXC_CPU_MX6SL) {
  47. reg = readl(&anatop->digprog);
  48. type = ((reg >> 16) & 0xff);
  49. if (type == MXC_CPU_MX6DL) {
  50. struct scu_regs *scu = (struct scu_regs *)SCU_BASE_ADDR;
  51. u32 cfg = readl(&scu->config) & 3;
  52. if (!cfg)
  53. type = MXC_CPU_MX6SOLO;
  54. }
  55. }
  56. reg &= 0xff; /* mx6 silicon revision */
  57. return (type << 12) | (reg + 0x10);
  58. }
  59. #ifdef CONFIG_REVISION_TAG
  60. u32 __weak get_board_rev(void)
  61. {
  62. u32 cpurev = get_cpu_rev();
  63. u32 type = ((cpurev >> 12) & 0xff);
  64. if (type == MXC_CPU_MX6SOLO)
  65. cpurev = (MXC_CPU_MX6DL) << 12 | (cpurev & 0xFFF);
  66. return cpurev;
  67. }
  68. #endif
  69. void init_aips(void)
  70. {
  71. struct aipstz_regs *aips1, *aips2;
  72. aips1 = (struct aipstz_regs *)AIPS1_BASE_ADDR;
  73. aips2 = (struct aipstz_regs *)AIPS2_BASE_ADDR;
  74. /*
  75. * Set all MPROTx to be non-bufferable, trusted for R/W,
  76. * not forced to user-mode.
  77. */
  78. writel(0x77777777, &aips1->mprot0);
  79. writel(0x77777777, &aips1->mprot1);
  80. writel(0x77777777, &aips2->mprot0);
  81. writel(0x77777777, &aips2->mprot1);
  82. /*
  83. * Set all OPACRx to be non-bufferable, not require
  84. * supervisor privilege level for access,allow for
  85. * write access and untrusted master access.
  86. */
  87. writel(0x00000000, &aips1->opacr0);
  88. writel(0x00000000, &aips1->opacr1);
  89. writel(0x00000000, &aips1->opacr2);
  90. writel(0x00000000, &aips1->opacr3);
  91. writel(0x00000000, &aips1->opacr4);
  92. writel(0x00000000, &aips2->opacr0);
  93. writel(0x00000000, &aips2->opacr1);
  94. writel(0x00000000, &aips2->opacr2);
  95. writel(0x00000000, &aips2->opacr3);
  96. writel(0x00000000, &aips2->opacr4);
  97. }
  98. /*
  99. * Set the VDDSOC
  100. *
  101. * Mask out the REG_CORE[22:18] bits (REG2_TRIG) and set
  102. * them to the specified millivolt level.
  103. * Possible values are from 0.725V to 1.450V in steps of
  104. * 0.025V (25mV).
  105. */
  106. void set_vddsoc(u32 mv)
  107. {
  108. struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
  109. u32 val, reg = readl(&anatop->reg_core);
  110. if (mv < 725)
  111. val = 0x00; /* Power gated off */
  112. else if (mv > 1450)
  113. val = 0x1F; /* Power FET switched full on. No regulation */
  114. else
  115. val = (mv - 700) / 25;
  116. /*
  117. * Mask out the REG_CORE[22:18] bits (REG2_TRIG)
  118. * and set them to the calculated value (0.7V + val * 0.25V)
  119. */
  120. reg = (reg & ~(0x1F << 18)) | (val << 18);
  121. writel(reg, &anatop->reg_core);
  122. }
  123. static void imx_set_wdog_powerdown(bool enable)
  124. {
  125. struct wdog_regs *wdog1 = (struct wdog_regs *)WDOG1_BASE_ADDR;
  126. struct wdog_regs *wdog2 = (struct wdog_regs *)WDOG2_BASE_ADDR;
  127. /* Write to the PDE (Power Down Enable) bit */
  128. writew(enable, &wdog1->wmcr);
  129. writew(enable, &wdog2->wmcr);
  130. }
  131. int arch_cpu_init(void)
  132. {
  133. init_aips();
  134. set_vddsoc(1200); /* Set VDDSOC to 1.2V */
  135. imx_set_wdog_powerdown(false); /* Disable PDE bit of WMCR register */
  136. #ifdef CONFIG_APBH_DMA
  137. /* Start APBH DMA */
  138. mxs_dma_init();
  139. #endif
  140. return 0;
  141. }
  142. #ifndef CONFIG_SYS_DCACHE_OFF
  143. void enable_caches(void)
  144. {
  145. /* Enable D-cache. I-cache is already enabled in start.S */
  146. dcache_enable();
  147. }
  148. #endif
  149. #if defined(CONFIG_FEC_MXC)
  150. void imx_get_mac_from_fuse(int dev_id, unsigned char *mac)
  151. {
  152. struct ocotp_regs *ocotp = (struct ocotp_regs *)OCOTP_BASE_ADDR;
  153. struct fuse_bank *bank = &ocotp->bank[4];
  154. struct fuse_bank4_regs *fuse =
  155. (struct fuse_bank4_regs *)bank->fuse_regs;
  156. u32 value = readl(&fuse->mac_addr_high);
  157. mac[0] = (value >> 8);
  158. mac[1] = value ;
  159. value = readl(&fuse->mac_addr_low);
  160. mac[2] = value >> 24 ;
  161. mac[3] = value >> 16 ;
  162. mac[4] = value >> 8 ;
  163. mac[5] = value ;
  164. }
  165. #endif
  166. void boot_mode_apply(unsigned cfg_val)
  167. {
  168. unsigned reg;
  169. struct src *psrc = (struct src *)SRC_BASE_ADDR;
  170. writel(cfg_val, &psrc->gpr9);
  171. reg = readl(&psrc->gpr10);
  172. if (cfg_val)
  173. reg |= 1 << 28;
  174. else
  175. reg &= ~(1 << 28);
  176. writel(reg, &psrc->gpr10);
  177. }
  178. /*
  179. * cfg_val will be used for
  180. * Boot_cfg4[7:0]:Boot_cfg3[7:0]:Boot_cfg2[7:0]:Boot_cfg1[7:0]
  181. * After reset, if GPR10[28] is 1, ROM will copy GPR9[25:0]
  182. * to SBMR1, which will determine the boot device.
  183. */
  184. const struct boot_mode soc_boot_modes[] = {
  185. {"normal", MAKE_CFGVAL(0x00, 0x00, 0x00, 0x00)},
  186. /* reserved value should start rom usb */
  187. {"usb", MAKE_CFGVAL(0x01, 0x00, 0x00, 0x00)},
  188. {"sata", MAKE_CFGVAL(0x20, 0x00, 0x00, 0x00)},
  189. {"escpi1:0", MAKE_CFGVAL(0x30, 0x00, 0x00, 0x08)},
  190. {"escpi1:1", MAKE_CFGVAL(0x30, 0x00, 0x00, 0x18)},
  191. {"escpi1:2", MAKE_CFGVAL(0x30, 0x00, 0x00, 0x28)},
  192. {"escpi1:3", MAKE_CFGVAL(0x30, 0x00, 0x00, 0x38)},
  193. /* 4 bit bus width */
  194. {"esdhc1", MAKE_CFGVAL(0x40, 0x20, 0x00, 0x00)},
  195. {"esdhc2", MAKE_CFGVAL(0x40, 0x28, 0x00, 0x00)},
  196. {"esdhc3", MAKE_CFGVAL(0x40, 0x30, 0x00, 0x00)},
  197. {"esdhc4", MAKE_CFGVAL(0x40, 0x38, 0x00, 0x00)},
  198. {NULL, 0},
  199. };
  200. void s_init(void)
  201. {
  202. }