mm-imx3.c 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  1. /*
  2. * Copyright (C) 1999,2000 Arm Limited
  3. * Copyright (C) 2000 Deep Blue Solutions Ltd
  4. * Copyright (C) 2002 Shane Nay (shane@minirl.com)
  5. * Copyright 2005-2007 Freescale Semiconductor, Inc. All Rights Reserved.
  6. * - add MX31 specific definitions
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. */
  18. #include <linux/mm.h>
  19. #include <linux/init.h>
  20. #include <linux/err.h>
  21. #include <linux/io.h>
  22. #include <linux/pinctrl/machine.h>
  23. #include <asm/pgtable.h>
  24. #include <asm/system_misc.h>
  25. #include <asm/hardware/cache-l2x0.h>
  26. #include <asm/mach/map.h>
  27. #include "common.h"
  28. #include "crmregs-imx3.h"
  29. #include "devices/devices-common.h"
  30. #include "hardware.h"
  31. #include "iomux-v3.h"
  32. void __iomem *mx3_ccm_base;
  33. static void imx3_idle(void)
  34. {
  35. unsigned long reg = 0;
  36. __asm__ __volatile__(
  37. /* disable I and D cache */
  38. "mrc p15, 0, %0, c1, c0, 0\n"
  39. "bic %0, %0, #0x00001000\n"
  40. "bic %0, %0, #0x00000004\n"
  41. "mcr p15, 0, %0, c1, c0, 0\n"
  42. /* invalidate I cache */
  43. "mov %0, #0\n"
  44. "mcr p15, 0, %0, c7, c5, 0\n"
  45. /* clear and invalidate D cache */
  46. "mov %0, #0\n"
  47. "mcr p15, 0, %0, c7, c14, 0\n"
  48. /* WFI */
  49. "mov %0, #0\n"
  50. "mcr p15, 0, %0, c7, c0, 4\n"
  51. "nop\n" "nop\n" "nop\n" "nop\n"
  52. "nop\n" "nop\n" "nop\n"
  53. /* enable I and D cache */
  54. "mrc p15, 0, %0, c1, c0, 0\n"
  55. "orr %0, %0, #0x00001000\n"
  56. "orr %0, %0, #0x00000004\n"
  57. "mcr p15, 0, %0, c1, c0, 0\n"
  58. : "=r" (reg));
  59. }
  60. static void __iomem *imx3_ioremap_caller(phys_addr_t phys_addr, size_t size,
  61. unsigned int mtype, void *caller)
  62. {
  63. if (mtype == MT_DEVICE) {
  64. /*
  65. * Access all peripherals below 0x80000000 as nonshared device
  66. * on mx3, but leave l2cc alone. Otherwise cache corruptions
  67. * can occur.
  68. */
  69. if (phys_addr < 0x80000000 &&
  70. !addr_in_module(phys_addr, MX3x_L2CC))
  71. mtype = MT_DEVICE_NONSHARED;
  72. }
  73. return __arm_ioremap_caller(phys_addr, size, mtype, caller);
  74. }
  75. static void __init imx3_init_l2x0(void)
  76. {
  77. #ifdef CONFIG_CACHE_L2X0
  78. void __iomem *l2x0_base;
  79. void __iomem *clkctl_base;
  80. /*
  81. * First of all, we must repair broken chip settings. There are some
  82. * i.MX35 CPUs in the wild, comming with bogus L2 cache settings. These
  83. * misconfigured CPUs will run amok immediately when the L2 cache gets enabled.
  84. * Workaraound is to setup the correct register setting prior enabling the
  85. * L2 cache. This should not hurt already working CPUs, as they are using the
  86. * same value.
  87. */
  88. #define L2_MEM_VAL 0x10
  89. clkctl_base = ioremap(MX35_CLKCTL_BASE_ADDR, 4096);
  90. if (clkctl_base != NULL) {
  91. writel(0x00000515, clkctl_base + L2_MEM_VAL);
  92. iounmap(clkctl_base);
  93. } else {
  94. pr_err("L2 cache: Cannot fix timing. Trying to continue without\n");
  95. }
  96. l2x0_base = ioremap(MX3x_L2CC_BASE_ADDR, 4096);
  97. if (!l2x0_base) {
  98. printk(KERN_ERR "remapping L2 cache area failed\n");
  99. return;
  100. }
  101. l2x0_init(l2x0_base, 0x00030024, 0x00000000);
  102. #endif
  103. }
  104. #ifdef CONFIG_SOC_IMX31
  105. static struct map_desc mx31_io_desc[] __initdata = {
  106. imx_map_entry(MX31, X_MEMC, MT_DEVICE),
  107. imx_map_entry(MX31, AVIC, MT_DEVICE_NONSHARED),
  108. imx_map_entry(MX31, AIPS1, MT_DEVICE_NONSHARED),
  109. imx_map_entry(MX31, AIPS2, MT_DEVICE_NONSHARED),
  110. imx_map_entry(MX31, SPBA0, MT_DEVICE_NONSHARED),
  111. };
  112. /*
  113. * This function initializes the memory map. It is called during the
  114. * system startup to create static physical to virtual memory mappings
  115. * for the IO modules.
  116. */
  117. void __init mx31_map_io(void)
  118. {
  119. iotable_init(mx31_io_desc, ARRAY_SIZE(mx31_io_desc));
  120. }
  121. static void imx31_idle(void)
  122. {
  123. int reg = imx_readl(mx3_ccm_base + MXC_CCM_CCMR);
  124. reg &= ~MXC_CCM_CCMR_LPM_MASK;
  125. imx_writel(reg, mx3_ccm_base + MXC_CCM_CCMR);
  126. imx3_idle();
  127. }
  128. void __init imx31_init_early(void)
  129. {
  130. mxc_set_cpu_type(MXC_CPU_MX31);
  131. arch_ioremap_caller = imx3_ioremap_caller;
  132. arm_pm_idle = imx31_idle;
  133. mx3_ccm_base = MX31_IO_ADDRESS(MX31_CCM_BASE_ADDR);
  134. }
  135. void __init mx31_init_irq(void)
  136. {
  137. mxc_init_irq(MX31_IO_ADDRESS(MX31_AVIC_BASE_ADDR));
  138. }
  139. static struct sdma_script_start_addrs imx31_to1_sdma_script __initdata = {
  140. .per_2_per_addr = 1677,
  141. };
  142. static struct sdma_script_start_addrs imx31_to2_sdma_script __initdata = {
  143. .ap_2_ap_addr = 423,
  144. .ap_2_bp_addr = 829,
  145. .bp_2_ap_addr = 1029,
  146. };
  147. static struct sdma_platform_data imx31_sdma_pdata __initdata = {
  148. .fw_name = "/*(DEBLOBBED)*/",
  149. .script_addrs = &imx31_to2_sdma_script,
  150. };
  151. static const struct resource imx31_audmux_res[] __initconst = {
  152. DEFINE_RES_MEM(MX31_AUDMUX_BASE_ADDR, SZ_16K),
  153. };
  154. static const struct resource imx31_rnga_res[] __initconst = {
  155. DEFINE_RES_MEM(MX31_RNGA_BASE_ADDR, SZ_16K),
  156. };
  157. void __init imx31_soc_init(void)
  158. {
  159. int to_version = mx31_revision() >> 4;
  160. imx3_init_l2x0();
  161. mxc_arch_reset_init(MX31_IO_ADDRESS(MX31_WDOG_BASE_ADDR));
  162. mxc_device_init();
  163. mxc_register_gpio("imx31-gpio", 0, MX31_GPIO1_BASE_ADDR, SZ_16K, MX31_INT_GPIO1, 0);
  164. mxc_register_gpio("imx31-gpio", 1, MX31_GPIO2_BASE_ADDR, SZ_16K, MX31_INT_GPIO2, 0);
  165. mxc_register_gpio("imx31-gpio", 2, MX31_GPIO3_BASE_ADDR, SZ_16K, MX31_INT_GPIO3, 0);
  166. pinctrl_provide_dummies();
  167. if (to_version == 1) {
  168. strncpy(imx31_sdma_pdata.fw_name, "/*(DEBLOBBED)*/",
  169. strlen(imx31_sdma_pdata.fw_name));
  170. imx31_sdma_pdata.script_addrs = &imx31_to1_sdma_script;
  171. }
  172. imx_add_imx_sdma("imx31-sdma", MX31_SDMA_BASE_ADDR, MX31_INT_SDMA, &imx31_sdma_pdata);
  173. imx_set_aips(MX31_IO_ADDRESS(MX31_AIPS1_BASE_ADDR));
  174. imx_set_aips(MX31_IO_ADDRESS(MX31_AIPS2_BASE_ADDR));
  175. platform_device_register_simple("imx31-audmux", 0, imx31_audmux_res,
  176. ARRAY_SIZE(imx31_audmux_res));
  177. platform_device_register_simple("mxc_rnga", -1, imx31_rnga_res,
  178. ARRAY_SIZE(imx31_rnga_res));
  179. }
  180. #endif /* ifdef CONFIG_SOC_IMX31 */
  181. #ifdef CONFIG_SOC_IMX35
  182. static struct map_desc mx35_io_desc[] __initdata = {
  183. imx_map_entry(MX35, X_MEMC, MT_DEVICE),
  184. imx_map_entry(MX35, AVIC, MT_DEVICE_NONSHARED),
  185. imx_map_entry(MX35, AIPS1, MT_DEVICE_NONSHARED),
  186. imx_map_entry(MX35, AIPS2, MT_DEVICE_NONSHARED),
  187. imx_map_entry(MX35, SPBA0, MT_DEVICE_NONSHARED),
  188. };
  189. void __init mx35_map_io(void)
  190. {
  191. iotable_init(mx35_io_desc, ARRAY_SIZE(mx35_io_desc));
  192. }
  193. static void imx35_idle(void)
  194. {
  195. int reg = imx_readl(mx3_ccm_base + MXC_CCM_CCMR);
  196. reg &= ~MXC_CCM_CCMR_LPM_MASK;
  197. reg |= MXC_CCM_CCMR_LPM_WAIT_MX35;
  198. imx_writel(reg, mx3_ccm_base + MXC_CCM_CCMR);
  199. imx3_idle();
  200. }
  201. void __init imx35_init_early(void)
  202. {
  203. mxc_set_cpu_type(MXC_CPU_MX35);
  204. mxc_iomux_v3_init(MX35_IO_ADDRESS(MX35_IOMUXC_BASE_ADDR));
  205. arm_pm_idle = imx35_idle;
  206. arch_ioremap_caller = imx3_ioremap_caller;
  207. mx3_ccm_base = MX35_IO_ADDRESS(MX35_CCM_BASE_ADDR);
  208. }
  209. void __init mx35_init_irq(void)
  210. {
  211. mxc_init_irq(MX35_IO_ADDRESS(MX35_AVIC_BASE_ADDR));
  212. }
  213. static struct sdma_script_start_addrs imx35_to1_sdma_script __initdata = {
  214. .ap_2_ap_addr = 642,
  215. .uart_2_mcu_addr = 817,
  216. .mcu_2_app_addr = 747,
  217. .uartsh_2_mcu_addr = 1183,
  218. .per_2_shp_addr = 1033,
  219. .mcu_2_shp_addr = 961,
  220. .ata_2_mcu_addr = 1333,
  221. .mcu_2_ata_addr = 1252,
  222. .app_2_mcu_addr = 683,
  223. .shp_2_per_addr = 1111,
  224. .shp_2_mcu_addr = 892,
  225. };
  226. static struct sdma_script_start_addrs imx35_to2_sdma_script __initdata = {
  227. .ap_2_ap_addr = 729,
  228. .uart_2_mcu_addr = 904,
  229. .per_2_app_addr = 1597,
  230. .mcu_2_app_addr = 834,
  231. .uartsh_2_mcu_addr = 1270,
  232. .per_2_shp_addr = 1120,
  233. .mcu_2_shp_addr = 1048,
  234. .ata_2_mcu_addr = 1429,
  235. .mcu_2_ata_addr = 1339,
  236. .app_2_per_addr = 1531,
  237. .app_2_mcu_addr = 770,
  238. .shp_2_per_addr = 1198,
  239. .shp_2_mcu_addr = 979,
  240. };
  241. static struct sdma_platform_data imx35_sdma_pdata __initdata = {
  242. .fw_name = "/*(DEBLOBBED)*/",
  243. .script_addrs = &imx35_to2_sdma_script,
  244. };
  245. static const struct resource imx35_audmux_res[] __initconst = {
  246. DEFINE_RES_MEM(MX35_AUDMUX_BASE_ADDR, SZ_16K),
  247. };
  248. void __init imx35_soc_init(void)
  249. {
  250. int to_version = mx35_revision() >> 4;
  251. imx3_init_l2x0();
  252. mxc_arch_reset_init(MX35_IO_ADDRESS(MX35_WDOG_BASE_ADDR));
  253. mxc_device_init();
  254. mxc_register_gpio("imx35-gpio", 0, MX35_GPIO1_BASE_ADDR, SZ_16K, MX35_INT_GPIO1, 0);
  255. mxc_register_gpio("imx35-gpio", 1, MX35_GPIO2_BASE_ADDR, SZ_16K, MX35_INT_GPIO2, 0);
  256. mxc_register_gpio("imx35-gpio", 2, MX35_GPIO3_BASE_ADDR, SZ_16K, MX35_INT_GPIO3, 0);
  257. pinctrl_provide_dummies();
  258. if (to_version == 1) {
  259. strncpy(imx35_sdma_pdata.fw_name, "/*(DEBLOBBED)*/",
  260. strlen(imx35_sdma_pdata.fw_name));
  261. imx35_sdma_pdata.script_addrs = &imx35_to1_sdma_script;
  262. }
  263. imx_add_imx_sdma("imx35-sdma", MX35_SDMA_BASE_ADDR, MX35_INT_SDMA, &imx35_sdma_pdata);
  264. /* Setup AIPS registers */
  265. imx_set_aips(MX35_IO_ADDRESS(MX35_AIPS1_BASE_ADDR));
  266. imx_set_aips(MX35_IO_ADDRESS(MX35_AIPS2_BASE_ADDR));
  267. /* i.mx35 has the i.mx31 type audmux */
  268. platform_device_register_simple("imx31-audmux", 0, imx35_audmux_res,
  269. ARRAY_SIZE(imx35_audmux_res));
  270. }
  271. #endif /* ifdef CONFIG_SOC_IMX35 */