mm-imx3.c 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  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 <asm/pgtable.h>
  22. #include <asm/hardware/cache-l2x0.h>
  23. #include <asm/mach/map.h>
  24. #include <mach/common.h>
  25. #include <mach/devices-common.h>
  26. #include <mach/hardware.h>
  27. #include <mach/iomux-v3.h>
  28. #include <mach/irqs.h>
  29. static void imx3_idle(void)
  30. {
  31. unsigned long reg = 0;
  32. if (!need_resched())
  33. __asm__ __volatile__(
  34. /* disable I and D cache */
  35. "mrc p15, 0, %0, c1, c0, 0\n"
  36. "bic %0, %0, #0x00001000\n"
  37. "bic %0, %0, #0x00000004\n"
  38. "mcr p15, 0, %0, c1, c0, 0\n"
  39. /* invalidate I cache */
  40. "mov %0, #0\n"
  41. "mcr p15, 0, %0, c7, c5, 0\n"
  42. /* clear and invalidate D cache */
  43. "mov %0, #0\n"
  44. "mcr p15, 0, %0, c7, c14, 0\n"
  45. /* WFI */
  46. "mov %0, #0\n"
  47. "mcr p15, 0, %0, c7, c0, 4\n"
  48. "nop\n" "nop\n" "nop\n" "nop\n"
  49. "nop\n" "nop\n" "nop\n"
  50. /* enable I and D cache */
  51. "mrc p15, 0, %0, c1, c0, 0\n"
  52. "orr %0, %0, #0x00001000\n"
  53. "orr %0, %0, #0x00000004\n"
  54. "mcr p15, 0, %0, c1, c0, 0\n"
  55. : "=r" (reg));
  56. local_irq_enable();
  57. }
  58. static void __iomem *imx3_ioremap(unsigned long phys_addr, size_t size,
  59. unsigned int mtype)
  60. {
  61. if (mtype == MT_DEVICE) {
  62. /*
  63. * Access all peripherals below 0x80000000 as nonshared device
  64. * on mx3, but leave l2cc alone. Otherwise cache corruptions
  65. * can occur.
  66. */
  67. if (phys_addr < 0x80000000 &&
  68. !addr_in_module(phys_addr, MX3x_L2CC))
  69. mtype = MT_DEVICE_NONSHARED;
  70. }
  71. return __arm_ioremap(phys_addr, size, mtype);
  72. }
  73. void imx3_init_l2x0(void)
  74. {
  75. void __iomem *l2x0_base;
  76. void __iomem *clkctl_base;
  77. /*
  78. * First of all, we must repair broken chip settings. There are some
  79. * i.MX35 CPUs in the wild, comming with bogus L2 cache settings. These
  80. * misconfigured CPUs will run amok immediately when the L2 cache gets enabled.
  81. * Workaraound is to setup the correct register setting prior enabling the
  82. * L2 cache. This should not hurt already working CPUs, as they are using the
  83. * same value.
  84. */
  85. #define L2_MEM_VAL 0x10
  86. clkctl_base = ioremap(MX35_CLKCTL_BASE_ADDR, 4096);
  87. if (clkctl_base != NULL) {
  88. writel(0x00000515, clkctl_base + L2_MEM_VAL);
  89. iounmap(clkctl_base);
  90. } else {
  91. pr_err("L2 cache: Cannot fix timing. Trying to continue without\n");
  92. }
  93. l2x0_base = ioremap(MX3x_L2CC_BASE_ADDR, 4096);
  94. if (IS_ERR(l2x0_base)) {
  95. printk(KERN_ERR "remapping L2 cache area failed with %ld\n",
  96. PTR_ERR(l2x0_base));
  97. return;
  98. }
  99. l2x0_init(l2x0_base, 0x00030024, 0x00000000);
  100. }
  101. #ifdef CONFIG_SOC_IMX31
  102. static struct map_desc mx31_io_desc[] __initdata = {
  103. imx_map_entry(MX31, X_MEMC, MT_DEVICE),
  104. imx_map_entry(MX31, AVIC, MT_DEVICE_NONSHARED),
  105. imx_map_entry(MX31, AIPS1, MT_DEVICE_NONSHARED),
  106. imx_map_entry(MX31, AIPS2, MT_DEVICE_NONSHARED),
  107. imx_map_entry(MX31, SPBA0, MT_DEVICE_NONSHARED),
  108. };
  109. /*
  110. * This function initializes the memory map. It is called during the
  111. * system startup to create static physical to virtual memory mappings
  112. * for the IO modules.
  113. */
  114. void __init mx31_map_io(void)
  115. {
  116. iotable_init(mx31_io_desc, ARRAY_SIZE(mx31_io_desc));
  117. }
  118. void __init imx31_init_early(void)
  119. {
  120. mxc_set_cpu_type(MXC_CPU_MX31);
  121. mxc_arch_reset_init(MX31_IO_ADDRESS(MX31_WDOG_BASE_ADDR));
  122. pm_idle = imx3_idle;
  123. imx_ioremap = imx3_ioremap;
  124. }
  125. void __init mx31_init_irq(void)
  126. {
  127. mxc_init_irq(MX31_IO_ADDRESS(MX31_AVIC_BASE_ADDR));
  128. }
  129. static struct sdma_script_start_addrs imx31_to1_sdma_script __initdata = {
  130. .per_2_per_addr = 1677,
  131. };
  132. static struct sdma_script_start_addrs imx31_to2_sdma_script __initdata = {
  133. .ap_2_ap_addr = 423,
  134. .ap_2_bp_addr = 829,
  135. .bp_2_ap_addr = 1029,
  136. };
  137. static struct sdma_platform_data imx31_sdma_pdata __initdata = {
  138. .fw_name = "sdma-imx31-to2.bin",
  139. .script_addrs = &imx31_to2_sdma_script,
  140. };
  141. void __init imx31_soc_init(void)
  142. {
  143. int to_version = mx31_revision() >> 4;
  144. imx3_init_l2x0();
  145. mxc_register_gpio("imx31-gpio", 0, MX31_GPIO1_BASE_ADDR, SZ_16K, MX31_INT_GPIO1, 0);
  146. mxc_register_gpio("imx31-gpio", 1, MX31_GPIO2_BASE_ADDR, SZ_16K, MX31_INT_GPIO2, 0);
  147. mxc_register_gpio("imx31-gpio", 2, MX31_GPIO3_BASE_ADDR, SZ_16K, MX31_INT_GPIO3, 0);
  148. if (to_version == 1) {
  149. strncpy(imx31_sdma_pdata.fw_name, "sdma-imx31-to1.bin",
  150. strlen(imx31_sdma_pdata.fw_name));
  151. imx31_sdma_pdata.script_addrs = &imx31_to1_sdma_script;
  152. }
  153. imx_add_imx_sdma("imx31-sdma", MX31_SDMA_BASE_ADDR, MX31_INT_SDMA, &imx31_sdma_pdata);
  154. }
  155. #endif /* ifdef CONFIG_SOC_IMX31 */
  156. #ifdef CONFIG_SOC_IMX35
  157. static struct map_desc mx35_io_desc[] __initdata = {
  158. imx_map_entry(MX35, X_MEMC, MT_DEVICE),
  159. imx_map_entry(MX35, AVIC, MT_DEVICE_NONSHARED),
  160. imx_map_entry(MX35, AIPS1, MT_DEVICE_NONSHARED),
  161. imx_map_entry(MX35, AIPS2, MT_DEVICE_NONSHARED),
  162. imx_map_entry(MX35, SPBA0, MT_DEVICE_NONSHARED),
  163. };
  164. void __init mx35_map_io(void)
  165. {
  166. iotable_init(mx35_io_desc, ARRAY_SIZE(mx35_io_desc));
  167. }
  168. void __init imx35_init_early(void)
  169. {
  170. mxc_set_cpu_type(MXC_CPU_MX35);
  171. mxc_iomux_v3_init(MX35_IO_ADDRESS(MX35_IOMUXC_BASE_ADDR));
  172. mxc_arch_reset_init(MX35_IO_ADDRESS(MX35_WDOG_BASE_ADDR));
  173. pm_idle = imx3_idle;
  174. imx_ioremap = imx3_ioremap;
  175. }
  176. void __init mx35_init_irq(void)
  177. {
  178. mxc_init_irq(MX35_IO_ADDRESS(MX35_AVIC_BASE_ADDR));
  179. }
  180. static struct sdma_script_start_addrs imx35_to1_sdma_script __initdata = {
  181. .ap_2_ap_addr = 642,
  182. .uart_2_mcu_addr = 817,
  183. .mcu_2_app_addr = 747,
  184. .uartsh_2_mcu_addr = 1183,
  185. .per_2_shp_addr = 1033,
  186. .mcu_2_shp_addr = 961,
  187. .ata_2_mcu_addr = 1333,
  188. .mcu_2_ata_addr = 1252,
  189. .app_2_mcu_addr = 683,
  190. .shp_2_per_addr = 1111,
  191. .shp_2_mcu_addr = 892,
  192. };
  193. static struct sdma_script_start_addrs imx35_to2_sdma_script __initdata = {
  194. .ap_2_ap_addr = 729,
  195. .uart_2_mcu_addr = 904,
  196. .per_2_app_addr = 1597,
  197. .mcu_2_app_addr = 834,
  198. .uartsh_2_mcu_addr = 1270,
  199. .per_2_shp_addr = 1120,
  200. .mcu_2_shp_addr = 1048,
  201. .ata_2_mcu_addr = 1429,
  202. .mcu_2_ata_addr = 1339,
  203. .app_2_per_addr = 1531,
  204. .app_2_mcu_addr = 770,
  205. .shp_2_per_addr = 1198,
  206. .shp_2_mcu_addr = 979,
  207. };
  208. static struct sdma_platform_data imx35_sdma_pdata __initdata = {
  209. .fw_name = "sdma-imx35-to2.bin",
  210. .script_addrs = &imx35_to2_sdma_script,
  211. };
  212. void __init imx35_soc_init(void)
  213. {
  214. int to_version = mx35_revision() >> 4;
  215. imx3_init_l2x0();
  216. /* i.mx35 has the i.mx31 type gpio */
  217. mxc_register_gpio("imx31-gpio", 0, MX35_GPIO1_BASE_ADDR, SZ_16K, MX35_INT_GPIO1, 0);
  218. mxc_register_gpio("imx31-gpio", 1, MX35_GPIO2_BASE_ADDR, SZ_16K, MX35_INT_GPIO2, 0);
  219. mxc_register_gpio("imx31-gpio", 2, MX35_GPIO3_BASE_ADDR, SZ_16K, MX35_INT_GPIO3, 0);
  220. if (to_version == 1) {
  221. strncpy(imx35_sdma_pdata.fw_name, "sdma-imx35-to1.bin",
  222. strlen(imx35_sdma_pdata.fw_name));
  223. imx35_sdma_pdata.script_addrs = &imx35_to1_sdma_script;
  224. }
  225. imx_add_imx_sdma("imx35-sdma", MX35_SDMA_BASE_ADDR, MX35_INT_SDMA, &imx35_sdma_pdata);
  226. }
  227. #endif /* ifdef CONFIG_SOC_IMX35 */