blob: 379593e19e3347c2746ade030272e23a644726ae [file] [log] [blame]
Amit Kucheriaa329b482010-02-04 12:21:53 -08001/*
Dinh Nguyenb66ff7a2010-11-15 11:30:00 -06002 * Copyright 2008-2010 Freescale Semiconductor, Inc. All Rights Reserved.
Amit Kucheriaa329b482010-02-04 12:21:53 -08003 *
4 * The code contained herein is licensed under the GNU General Public
5 * License. You may obtain a copy of the GNU General Public License
6 * Version 2 or later at the following locations:
7 *
8 * http://www.opensource.org/licenses/gpl-license.html
9 * http://www.gnu.org/copyleft/gpl.html
10 *
11 * Create static mapping between physical to virtual memory.
12 */
13
14#include <linux/mm.h>
15#include <linux/init.h>
16
17#include <asm/mach/map.h>
18
19#include <mach/hardware.h>
20#include <mach/common.h>
Shawn Guo36223602011-06-22 22:41:30 +080021#include <mach/devices-common.h>
Amit Kucheriaa329b482010-02-04 12:21:53 -080022#include <mach/iomux-v3.h>
23
Shawn Guo41e7daf2011-09-28 17:16:06 +080024static void imx5_idle(void)
25{
26 mx5_cpu_lp_set(WAIT_UNCLOCKED_POWER_OFF);
27}
28
Amit Kucheriaa329b482010-02-04 12:21:53 -080029/*
30 * Define the MX51 memory map.
31 */
Uwe Kleine-König08ff97b2010-10-25 15:38:09 +020032static struct map_desc mx51_io_desc[] __initdata = {
33 imx_map_entry(MX51, IRAM, MT_DEVICE),
34 imx_map_entry(MX51, DEBUG, MT_DEVICE),
35 imx_map_entry(MX51, AIPS1, MT_DEVICE),
36 imx_map_entry(MX51, SPBA0, MT_DEVICE),
37 imx_map_entry(MX51, AIPS2, MT_DEVICE),
Amit Kucheriaa329b482010-02-04 12:21:53 -080038};
39
40/*
Dinh Nguyenb66ff7a2010-11-15 11:30:00 -060041 * Define the MX53 memory map.
42 */
43static struct map_desc mx53_io_desc[] __initdata = {
44 imx_map_entry(MX53, AIPS1, MT_DEVICE),
45 imx_map_entry(MX53, SPBA0, MT_DEVICE),
46 imx_map_entry(MX53, AIPS2, MT_DEVICE),
47};
48
49/*
Amit Kucheriaa329b482010-02-04 12:21:53 -080050 * This function initializes the memory map. It is called during the
51 * system startup to create static physical to virtual memory mappings
52 * for the IO modules.
53 */
54void __init mx51_map_io(void)
55{
Uwe Kleine-Königab1304212011-02-07 16:35:21 +010056 iotable_init(mx51_io_desc, ARRAY_SIZE(mx51_io_desc));
57}
58
59void __init imx51_init_early(void)
60{
Amit Kucheriaa329b482010-02-04 12:21:53 -080061 mxc_set_cpu_type(MXC_CPU_MX51);
62 mxc_iomux_v3_init(MX51_IO_ADDRESS(MX51_IOMUXC_BASE_ADDR));
Fabio Estevam8c2efec2010-12-06 16:38:32 -020063 mxc_arch_reset_init(MX51_IO_ADDRESS(MX51_WDOG1_BASE_ADDR));
Shawn Guo41e7daf2011-09-28 17:16:06 +080064 imx_idle = imx5_idle;
Amit Kucheriaa329b482010-02-04 12:21:53 -080065}
66
Dinh Nguyenb66ff7a2010-11-15 11:30:00 -060067void __init mx53_map_io(void)
68{
Uwe Kleine-Königab1304212011-02-07 16:35:21 +010069 iotable_init(mx53_io_desc, ARRAY_SIZE(mx53_io_desc));
70}
71
72void __init imx53_init_early(void)
73{
Dinh Nguyenb66ff7a2010-11-15 11:30:00 -060074 mxc_set_cpu_type(MXC_CPU_MX53);
75 mxc_iomux_v3_init(MX53_IO_ADDRESS(MX53_IOMUXC_BASE_ADDR));
Fabio Estevam78c73592011-02-17 18:09:52 -020076 mxc_arch_reset_init(MX53_IO_ADDRESS(MX53_WDOG1_BASE_ADDR));
Dinh Nguyenb66ff7a2010-11-15 11:30:00 -060077}
78
Amit Kucheriaa329b482010-02-04 12:21:53 -080079void __init mx51_init_irq(void)
80{
Sascha Hauer3d1bc862010-03-18 16:56:30 +010081 unsigned long tzic_addr;
82 void __iomem *tzic_virt;
83
Dinh Nguyen9ab46502010-11-15 11:30:01 -060084 if (mx51_revision() < IMX_CHIP_REVISION_2_0)
Sascha Hauer3d1bc862010-03-18 16:56:30 +010085 tzic_addr = MX51_TZIC_BASE_ADDR_TO1;
86 else
87 tzic_addr = MX51_TZIC_BASE_ADDR;
88
89 tzic_virt = ioremap(tzic_addr, SZ_16K);
90 if (!tzic_virt)
91 panic("unable to map TZIC interrupt controller\n");
92
93 tzic_init_irq(tzic_virt);
Amit Kucheriaa329b482010-02-04 12:21:53 -080094}
Dinh Nguyenc0abefd2010-11-15 11:29:59 -060095
Dinh Nguyenc0abefd2010-11-15 11:29:59 -060096void __init mx53_init_irq(void)
97{
98 unsigned long tzic_addr;
99 void __iomem *tzic_virt;
100
101 tzic_addr = MX53_TZIC_BASE_ADDR;
102
103 tzic_virt = ioremap(tzic_addr, SZ_16K);
104 if (!tzic_virt)
105 panic("unable to map TZIC interrupt controller\n");
106
107 tzic_init_irq(tzic_virt);
Shawn Guob78d8e52011-06-06 00:07:55 +0800108}
109
Shawn Guo36223602011-06-22 22:41:30 +0800110static struct sdma_script_start_addrs imx51_sdma_script __initdata = {
111 .ap_2_ap_addr = 642,
112 .uart_2_mcu_addr = 817,
113 .mcu_2_app_addr = 747,
114 .mcu_2_shp_addr = 961,
115 .ata_2_mcu_addr = 1473,
116 .mcu_2_ata_addr = 1392,
117 .app_2_per_addr = 1033,
118 .app_2_mcu_addr = 683,
119 .shp_2_per_addr = 1251,
120 .shp_2_mcu_addr = 892,
121};
122
123static struct sdma_platform_data imx51_sdma_pdata __initdata = {
Shawn Guo2e534b22011-06-22 22:41:31 +0800124 .fw_name = "sdma-imx51.bin",
Shawn Guo36223602011-06-22 22:41:30 +0800125 .script_addrs = &imx51_sdma_script,
126};
127
128static struct sdma_script_start_addrs imx53_sdma_script __initdata = {
129 .ap_2_ap_addr = 642,
130 .app_2_mcu_addr = 683,
131 .mcu_2_app_addr = 747,
132 .uart_2_mcu_addr = 817,
133 .shp_2_mcu_addr = 891,
134 .mcu_2_shp_addr = 960,
135 .uartsh_2_mcu_addr = 1032,
136 .spdif_2_mcu_addr = 1100,
137 .mcu_2_spdif_addr = 1134,
138 .firi_2_mcu_addr = 1193,
139 .mcu_2_firi_addr = 1290,
140};
141
142static struct sdma_platform_data imx53_sdma_pdata __initdata = {
Shawn Guo2e534b22011-06-22 22:41:31 +0800143 .fw_name = "sdma-imx53.bin",
Shawn Guo36223602011-06-22 22:41:30 +0800144 .script_addrs = &imx53_sdma_script,
145};
146
Shawn Guob78d8e52011-06-06 00:07:55 +0800147void __init imx51_soc_init(void)
148{
Shawn Guoe7fc6ae2011-07-07 00:37:41 +0800149 /* i.mx51 has the i.mx31 type gpio */
150 mxc_register_gpio("imx31-gpio", 0, MX51_GPIO1_BASE_ADDR, SZ_16K, MX51_MXC_INT_GPIO1_LOW, MX51_MXC_INT_GPIO1_HIGH);
151 mxc_register_gpio("imx31-gpio", 1, MX51_GPIO2_BASE_ADDR, SZ_16K, MX51_MXC_INT_GPIO2_LOW, MX51_MXC_INT_GPIO2_HIGH);
152 mxc_register_gpio("imx31-gpio", 2, MX51_GPIO3_BASE_ADDR, SZ_16K, MX51_MXC_INT_GPIO3_LOW, MX51_MXC_INT_GPIO3_HIGH);
153 mxc_register_gpio("imx31-gpio", 3, MX51_GPIO4_BASE_ADDR, SZ_16K, MX51_MXC_INT_GPIO4_LOW, MX51_MXC_INT_GPIO4_HIGH);
Shawn Guo36223602011-06-22 22:41:30 +0800154
Shawn Guo62550cd2011-07-13 21:33:17 +0800155 /* i.mx51 has the i.mx35 type sdma */
156 imx_add_imx_sdma("imx35-sdma", MX51_SDMA_BASE_ADDR, MX51_INT_SDMA, &imx51_sdma_pdata);
Shawn Guob78d8e52011-06-06 00:07:55 +0800157}
158
159void __init imx53_soc_init(void)
160{
Shawn Guoe7fc6ae2011-07-07 00:37:41 +0800161 /* i.mx53 has the i.mx31 type gpio */
162 mxc_register_gpio("imx31-gpio", 0, MX53_GPIO1_BASE_ADDR, SZ_16K, MX53_INT_GPIO1_LOW, MX53_INT_GPIO1_HIGH);
163 mxc_register_gpio("imx31-gpio", 1, MX53_GPIO2_BASE_ADDR, SZ_16K, MX53_INT_GPIO2_LOW, MX53_INT_GPIO2_HIGH);
164 mxc_register_gpio("imx31-gpio", 2, MX53_GPIO3_BASE_ADDR, SZ_16K, MX53_INT_GPIO3_LOW, MX53_INT_GPIO3_HIGH);
165 mxc_register_gpio("imx31-gpio", 3, MX53_GPIO4_BASE_ADDR, SZ_16K, MX53_INT_GPIO4_LOW, MX53_INT_GPIO4_HIGH);
166 mxc_register_gpio("imx31-gpio", 4, MX53_GPIO5_BASE_ADDR, SZ_16K, MX53_INT_GPIO5_LOW, MX53_INT_GPIO5_HIGH);
167 mxc_register_gpio("imx31-gpio", 5, MX53_GPIO6_BASE_ADDR, SZ_16K, MX53_INT_GPIO6_LOW, MX53_INT_GPIO6_HIGH);
168 mxc_register_gpio("imx31-gpio", 6, MX53_GPIO7_BASE_ADDR, SZ_16K, MX53_INT_GPIO7_LOW, MX53_INT_GPIO7_HIGH);
Shawn Guo36223602011-06-22 22:41:30 +0800169
Shawn Guo62550cd2011-07-13 21:33:17 +0800170 /* i.mx53 has the i.mx35 type sdma */
171 imx_add_imx_sdma("imx35-sdma", MX53_SDMA_BASE_ADDR, MX53_INT_SDMA, &imx53_sdma_pdata);
Dinh Nguyenc0abefd2010-11-15 11:29:59 -0600172}