]> Git Repo - linux.git/blob - arch/arm/mach-imx/mm-imx3.c
ARM i.MX3: Make ccm base address a variable
[linux.git] / arch / arm / mach-imx / mm-imx3.c
1 /*
2  *  Copyright (C) 1999,2000 Arm Limited
3  *  Copyright (C) 2000 Deep Blue Solutions Ltd
4  *  Copyright (C) 2002 Shane Nay ([email protected])
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
19 #include <linux/mm.h>
20 #include <linux/init.h>
21 #include <linux/err.h>
22
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
28 #include <mach/common.h>
29 #include <mach/devices-common.h>
30 #include <mach/hardware.h>
31 #include <mach/iomux-v3.h>
32 #include <mach/irqs.h>
33
34 #include "crmregs-imx3.h"
35
36 void __iomem *mx3_ccm_base;
37
38 static void imx3_idle(void)
39 {
40         unsigned long reg = 0;
41
42         mx3_cpu_lp_set(MX3_WAIT);
43
44         __asm__ __volatile__(
45                 /* disable I and D cache */
46                 "mrc p15, 0, %0, c1, c0, 0\n"
47                 "bic %0, %0, #0x00001000\n"
48                 "bic %0, %0, #0x00000004\n"
49                 "mcr p15, 0, %0, c1, c0, 0\n"
50                 /* invalidate I cache */
51                 "mov %0, #0\n"
52                 "mcr p15, 0, %0, c7, c5, 0\n"
53                 /* clear and invalidate D cache */
54                 "mov %0, #0\n"
55                 "mcr p15, 0, %0, c7, c14, 0\n"
56                 /* WFI */
57                 "mov %0, #0\n"
58                 "mcr p15, 0, %0, c7, c0, 4\n"
59                 "nop\n" "nop\n" "nop\n" "nop\n"
60                 "nop\n" "nop\n" "nop\n"
61                 /* enable I and D cache */
62                 "mrc p15, 0, %0, c1, c0, 0\n"
63                 "orr %0, %0, #0x00001000\n"
64                 "orr %0, %0, #0x00000004\n"
65                 "mcr p15, 0, %0, c1, c0, 0\n"
66                 : "=r" (reg));
67 }
68
69 static void __iomem *imx3_ioremap_caller(unsigned long phys_addr, size_t size,
70                                          unsigned int mtype, void *caller)
71 {
72         if (mtype == MT_DEVICE) {
73                 /*
74                  * Access all peripherals below 0x80000000 as nonshared device
75                  * on mx3, but leave l2cc alone.  Otherwise cache corruptions
76                  * can occur.
77                  */
78                 if (phys_addr < 0x80000000 &&
79                                 !addr_in_module(phys_addr, MX3x_L2CC))
80                         mtype = MT_DEVICE_NONSHARED;
81         }
82
83         return __arm_ioremap_caller(phys_addr, size, mtype, caller);
84 }
85
86 void __init imx3_init_l2x0(void)
87 {
88         void __iomem *l2x0_base;
89         void __iomem *clkctl_base;
90
91 /*
92  * First of all, we must repair broken chip settings. There are some
93  * i.MX35 CPUs in the wild, comming with bogus L2 cache settings. These
94  * misconfigured CPUs will run amok immediately when the L2 cache gets enabled.
95  * Workaraound is to setup the correct register setting prior enabling the
96  * L2 cache. This should not hurt already working CPUs, as they are using the
97  * same value.
98  */
99 #define L2_MEM_VAL 0x10
100
101         clkctl_base = ioremap(MX35_CLKCTL_BASE_ADDR, 4096);
102         if (clkctl_base != NULL) {
103                 writel(0x00000515, clkctl_base + L2_MEM_VAL);
104                 iounmap(clkctl_base);
105         } else {
106                 pr_err("L2 cache: Cannot fix timing. Trying to continue without\n");
107         }
108
109         l2x0_base = ioremap(MX3x_L2CC_BASE_ADDR, 4096);
110         if (IS_ERR(l2x0_base)) {
111                 printk(KERN_ERR "remapping L2 cache area failed with %ld\n",
112                                 PTR_ERR(l2x0_base));
113                 return;
114         }
115
116         l2x0_init(l2x0_base, 0x00030024, 0x00000000);
117 }
118
119 #ifdef CONFIG_SOC_IMX31
120 static struct map_desc mx31_io_desc[] __initdata = {
121         imx_map_entry(MX31, X_MEMC, MT_DEVICE),
122         imx_map_entry(MX31, AVIC, MT_DEVICE_NONSHARED),
123         imx_map_entry(MX31, AIPS1, MT_DEVICE_NONSHARED),
124         imx_map_entry(MX31, AIPS2, MT_DEVICE_NONSHARED),
125         imx_map_entry(MX31, SPBA0, MT_DEVICE_NONSHARED),
126 };
127
128 /*
129  * This function initializes the memory map. It is called during the
130  * system startup to create static physical to virtual memory mappings
131  * for the IO modules.
132  */
133 void __init mx31_map_io(void)
134 {
135         iotable_init(mx31_io_desc, ARRAY_SIZE(mx31_io_desc));
136 }
137
138 void __init imx31_init_early(void)
139 {
140         mxc_set_cpu_type(MXC_CPU_MX31);
141         mxc_arch_reset_init(MX31_IO_ADDRESS(MX31_WDOG_BASE_ADDR));
142         arch_ioremap_caller = imx3_ioremap_caller;
143         arm_pm_idle = imx3_idle;
144         mx3_ccm_base = MX31_IO_ADDRESS(MX31_CCM_BASE_ADDR);
145 }
146
147 void __init mx31_init_irq(void)
148 {
149         mxc_init_irq(MX31_IO_ADDRESS(MX31_AVIC_BASE_ADDR));
150 }
151
152 static struct sdma_script_start_addrs imx31_to1_sdma_script __initdata = {
153         .per_2_per_addr = 1677,
154 };
155
156 static struct sdma_script_start_addrs imx31_to2_sdma_script __initdata = {
157         .ap_2_ap_addr = 423,
158         .ap_2_bp_addr = 829,
159         .bp_2_ap_addr = 1029,
160 };
161
162 static struct sdma_platform_data imx31_sdma_pdata __initdata = {
163         .fw_name = "sdma-imx31-to2.bin",
164         .script_addrs = &imx31_to2_sdma_script,
165 };
166
167 static const struct resource imx31_audmux_res[] __initconst = {
168         DEFINE_RES_MEM(MX31_AUDMUX_BASE_ADDR, SZ_16K),
169 };
170
171 void __init imx31_soc_init(void)
172 {
173         int to_version = mx31_revision() >> 4;
174
175         imx3_init_l2x0();
176
177         mxc_register_gpio("imx31-gpio", 0, MX31_GPIO1_BASE_ADDR, SZ_16K, MX31_INT_GPIO1, 0);
178         mxc_register_gpio("imx31-gpio", 1, MX31_GPIO2_BASE_ADDR, SZ_16K, MX31_INT_GPIO2, 0);
179         mxc_register_gpio("imx31-gpio", 2, MX31_GPIO3_BASE_ADDR, SZ_16K, MX31_INT_GPIO3, 0);
180
181         if (to_version == 1) {
182                 strncpy(imx31_sdma_pdata.fw_name, "sdma-imx31-to1.bin",
183                         strlen(imx31_sdma_pdata.fw_name));
184                 imx31_sdma_pdata.script_addrs = &imx31_to1_sdma_script;
185         }
186
187         imx_add_imx_sdma("imx31-sdma", MX31_SDMA_BASE_ADDR, MX31_INT_SDMA, &imx31_sdma_pdata);
188
189         imx_set_aips(MX31_IO_ADDRESS(MX31_AIPS1_BASE_ADDR));
190         imx_set_aips(MX31_IO_ADDRESS(MX31_AIPS2_BASE_ADDR));
191
192         platform_device_register_simple("imx31-audmux", 0, imx31_audmux_res,
193                                         ARRAY_SIZE(imx31_audmux_res));
194 }
195 #endif /* ifdef CONFIG_SOC_IMX31 */
196
197 #ifdef CONFIG_SOC_IMX35
198 static struct map_desc mx35_io_desc[] __initdata = {
199         imx_map_entry(MX35, X_MEMC, MT_DEVICE),
200         imx_map_entry(MX35, AVIC, MT_DEVICE_NONSHARED),
201         imx_map_entry(MX35, AIPS1, MT_DEVICE_NONSHARED),
202         imx_map_entry(MX35, AIPS2, MT_DEVICE_NONSHARED),
203         imx_map_entry(MX35, SPBA0, MT_DEVICE_NONSHARED),
204 };
205
206 void __init mx35_map_io(void)
207 {
208         iotable_init(mx35_io_desc, ARRAY_SIZE(mx35_io_desc));
209 }
210
211 void __init imx35_init_early(void)
212 {
213         mxc_set_cpu_type(MXC_CPU_MX35);
214         mxc_iomux_v3_init(MX35_IO_ADDRESS(MX35_IOMUXC_BASE_ADDR));
215         mxc_arch_reset_init(MX35_IO_ADDRESS(MX35_WDOG_BASE_ADDR));
216         arm_pm_idle = imx3_idle;
217         arch_ioremap_caller = imx3_ioremap_caller;
218         mx3_ccm_base = MX35_IO_ADDRESS(MX35_CCM_BASE_ADDR);
219 }
220
221 void __init mx35_init_irq(void)
222 {
223         mxc_init_irq(MX35_IO_ADDRESS(MX35_AVIC_BASE_ADDR));
224 }
225
226 static struct sdma_script_start_addrs imx35_to1_sdma_script __initdata = {
227         .ap_2_ap_addr = 642,
228         .uart_2_mcu_addr = 817,
229         .mcu_2_app_addr = 747,
230         .uartsh_2_mcu_addr = 1183,
231         .per_2_shp_addr = 1033,
232         .mcu_2_shp_addr = 961,
233         .ata_2_mcu_addr = 1333,
234         .mcu_2_ata_addr = 1252,
235         .app_2_mcu_addr = 683,
236         .shp_2_per_addr = 1111,
237         .shp_2_mcu_addr = 892,
238 };
239
240 static struct sdma_script_start_addrs imx35_to2_sdma_script __initdata = {
241         .ap_2_ap_addr = 729,
242         .uart_2_mcu_addr = 904,
243         .per_2_app_addr = 1597,
244         .mcu_2_app_addr = 834,
245         .uartsh_2_mcu_addr = 1270,
246         .per_2_shp_addr = 1120,
247         .mcu_2_shp_addr = 1048,
248         .ata_2_mcu_addr = 1429,
249         .mcu_2_ata_addr = 1339,
250         .app_2_per_addr = 1531,
251         .app_2_mcu_addr = 770,
252         .shp_2_per_addr = 1198,
253         .shp_2_mcu_addr = 979,
254 };
255
256 static struct sdma_platform_data imx35_sdma_pdata __initdata = {
257         .fw_name = "sdma-imx35-to2.bin",
258         .script_addrs = &imx35_to2_sdma_script,
259 };
260
261 static const struct resource imx35_audmux_res[] __initconst = {
262         DEFINE_RES_MEM(MX35_AUDMUX_BASE_ADDR, SZ_16K),
263 };
264
265 void __init imx35_soc_init(void)
266 {
267         int to_version = mx35_revision() >> 4;
268
269         imx3_init_l2x0();
270
271         /* i.mx35 has the i.mx31 type gpio */
272         mxc_register_gpio("imx31-gpio", 0, MX35_GPIO1_BASE_ADDR, SZ_16K, MX35_INT_GPIO1, 0);
273         mxc_register_gpio("imx31-gpio", 1, MX35_GPIO2_BASE_ADDR, SZ_16K, MX35_INT_GPIO2, 0);
274         mxc_register_gpio("imx31-gpio", 2, MX35_GPIO3_BASE_ADDR, SZ_16K, MX35_INT_GPIO3, 0);
275
276         if (to_version == 1) {
277                 strncpy(imx35_sdma_pdata.fw_name, "sdma-imx35-to1.bin",
278                         strlen(imx35_sdma_pdata.fw_name));
279                 imx35_sdma_pdata.script_addrs = &imx35_to1_sdma_script;
280         }
281
282         imx_add_imx_sdma("imx35-sdma", MX35_SDMA_BASE_ADDR, MX35_INT_SDMA, &imx35_sdma_pdata);
283
284         /* Setup AIPS registers */
285         imx_set_aips(MX35_IO_ADDRESS(MX35_AIPS1_BASE_ADDR));
286         imx_set_aips(MX35_IO_ADDRESS(MX35_AIPS2_BASE_ADDR));
287
288         /* i.mx35 has the i.mx31 type audmux */
289         platform_device_register_simple("imx31-audmux", 0, imx35_audmux_res,
290                                         ARRAY_SIZE(imx35_audmux_res));
291 }
292 #endif /* ifdef CONFIG_SOC_IMX35 */
This page took 0.052351 seconds and 4 git commands to generate.