blob: ffa33b4dedde05a8ccc7db223cb8e415778773ae [file] [log] [blame]
Uwe Kleine-König27ad4bf2011-03-17 09:40:29 +01001/*
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
19#include <linux/mm.h>
20#include <linux/init.h>
21#include <linux/err.h>
22
23#include <asm/pgtable.h>
Shawn Guoddd5f512011-09-28 17:16:05 +080024#include <asm/hardware/cache-l2x0.h>
Uwe Kleine-König27ad4bf2011-03-17 09:40:29 +010025#include <asm/mach/map.h>
26
27#include <mach/common.h>
Shawn Guo36223602011-06-22 22:41:30 +080028#include <mach/devices-common.h>
Uwe Kleine-König27ad4bf2011-03-17 09:40:29 +010029#include <mach/hardware.h>
30#include <mach/iomux-v3.h>
Uwe Kleine-König27ad4bf2011-03-17 09:40:29 +010031#include <mach/irqs.h>
32
Shawn Guoddd5f512011-09-28 17:16:05 +080033void imx3_init_l2x0(void)
34{
35 void __iomem *l2x0_base;
36 void __iomem *clkctl_base;
37
38/*
39 * First of all, we must repair broken chip settings. There are some
40 * i.MX35 CPUs in the wild, comming with bogus L2 cache settings. These
41 * misconfigured CPUs will run amok immediately when the L2 cache gets enabled.
42 * Workaraound is to setup the correct register setting prior enabling the
43 * L2 cache. This should not hurt already working CPUs, as they are using the
44 * same value.
45 */
46#define L2_MEM_VAL 0x10
47
48 clkctl_base = ioremap(MX35_CLKCTL_BASE_ADDR, 4096);
49 if (clkctl_base != NULL) {
50 writel(0x00000515, clkctl_base + L2_MEM_VAL);
51 iounmap(clkctl_base);
52 } else {
53 pr_err("L2 cache: Cannot fix timing. Trying to continue without\n");
54 }
55
56 l2x0_base = ioremap(MX3x_L2CC_BASE_ADDR, 4096);
57 if (IS_ERR(l2x0_base)) {
58 printk(KERN_ERR "remapping L2 cache area failed with %ld\n",
59 PTR_ERR(l2x0_base));
60 return;
61 }
62
63 l2x0_init(l2x0_base, 0x00030024, 0x00000000);
64}
65
Uwe Kleine-König27ad4bf2011-03-17 09:40:29 +010066static struct map_desc mx31_io_desc[] __initdata = {
67 imx_map_entry(MX31, X_MEMC, MT_DEVICE),
68 imx_map_entry(MX31, AVIC, MT_DEVICE_NONSHARED),
69 imx_map_entry(MX31, AIPS1, MT_DEVICE_NONSHARED),
70 imx_map_entry(MX31, AIPS2, MT_DEVICE_NONSHARED),
71 imx_map_entry(MX31, SPBA0, MT_DEVICE_NONSHARED),
72};
73
74/*
75 * This function initializes the memory map. It is called during the
76 * system startup to create static physical to virtual memory mappings
77 * for the IO modules.
78 */
79void __init mx31_map_io(void)
80{
81 iotable_init(mx31_io_desc, ARRAY_SIZE(mx31_io_desc));
82}
83
Shawn Guof1263de2011-09-28 17:16:03 +080084static struct map_desc mx35_io_desc[] __initdata = {
85 imx_map_entry(MX35, X_MEMC, MT_DEVICE),
86 imx_map_entry(MX35, AVIC, MT_DEVICE_NONSHARED),
87 imx_map_entry(MX35, AIPS1, MT_DEVICE_NONSHARED),
88 imx_map_entry(MX35, AIPS2, MT_DEVICE_NONSHARED),
89 imx_map_entry(MX35, SPBA0, MT_DEVICE_NONSHARED),
90};
91
92void __init mx35_map_io(void)
93{
94 iotable_init(mx35_io_desc, ARRAY_SIZE(mx35_io_desc));
95}
96
Uwe Kleine-König27ad4bf2011-03-17 09:40:29 +010097void __init imx31_init_early(void)
98{
99 mxc_set_cpu_type(MXC_CPU_MX31);
100 mxc_arch_reset_init(MX31_IO_ADDRESS(MX31_WDOG_BASE_ADDR));
101}
102
Shawn Guof1263de2011-09-28 17:16:03 +0800103void __init imx35_init_early(void)
104{
105 mxc_set_cpu_type(MXC_CPU_MX35);
106 mxc_iomux_v3_init(MX35_IO_ADDRESS(MX35_IOMUXC_BASE_ADDR));
107 mxc_arch_reset_init(MX35_IO_ADDRESS(MX35_WDOG_BASE_ADDR));
108}
109
Uwe Kleine-König27ad4bf2011-03-17 09:40:29 +0100110void __init mx31_init_irq(void)
111{
112 mxc_init_irq(MX31_IO_ADDRESS(MX31_AVIC_BASE_ADDR));
Shawn Guob78d8e52011-06-06 00:07:55 +0800113}
114
Shawn Guof1263de2011-09-28 17:16:03 +0800115void __init mx35_init_irq(void)
116{
117 mxc_init_irq(MX35_IO_ADDRESS(MX35_AVIC_BASE_ADDR));
118}
119
Shawn Guo36223602011-06-22 22:41:30 +0800120static struct sdma_script_start_addrs imx31_to1_sdma_script __initdata = {
121 .per_2_per_addr = 1677,
122};
123
124static struct sdma_script_start_addrs imx31_to2_sdma_script __initdata = {
125 .ap_2_ap_addr = 423,
126 .ap_2_bp_addr = 829,
127 .bp_2_ap_addr = 1029,
128};
129
130static struct sdma_platform_data imx31_sdma_pdata __initdata = {
Shawn Guo2e534b22011-06-22 22:41:31 +0800131 .fw_name = "sdma-imx31-to2.bin",
Shawn Guo36223602011-06-22 22:41:30 +0800132 .script_addrs = &imx31_to2_sdma_script,
133};
134
Shawn Guob78d8e52011-06-06 00:07:55 +0800135void __init imx31_soc_init(void)
136{
Shawn Guo36223602011-06-22 22:41:30 +0800137 int to_version = mx31_revision() >> 4;
138
Shawn Guoddd5f512011-09-28 17:16:05 +0800139 imx3_init_l2x0();
140
Shawn Guoe7fc6ae2011-07-07 00:37:41 +0800141 mxc_register_gpio("imx31-gpio", 0, MX31_GPIO1_BASE_ADDR, SZ_16K, MX31_INT_GPIO1, 0);
142 mxc_register_gpio("imx31-gpio", 1, MX31_GPIO2_BASE_ADDR, SZ_16K, MX31_INT_GPIO2, 0);
143 mxc_register_gpio("imx31-gpio", 2, MX31_GPIO3_BASE_ADDR, SZ_16K, MX31_INT_GPIO3, 0);
Shawn Guo36223602011-06-22 22:41:30 +0800144
Shawn Guo2e534b22011-06-22 22:41:31 +0800145 if (to_version == 1) {
146 strncpy(imx31_sdma_pdata.fw_name, "sdma-imx31-to1.bin",
147 strlen(imx31_sdma_pdata.fw_name));
Shawn Guo36223602011-06-22 22:41:30 +0800148 imx31_sdma_pdata.script_addrs = &imx31_to1_sdma_script;
Shawn Guo2e534b22011-06-22 22:41:31 +0800149 }
150
Shawn Guo62550cd2011-07-13 21:33:17 +0800151 imx_add_imx_sdma("imx31-sdma", MX31_SDMA_BASE_ADDR, MX31_INT_SDMA, &imx31_sdma_pdata);
Uwe Kleine-König27ad4bf2011-03-17 09:40:29 +0100152}
Shawn Guof1263de2011-09-28 17:16:03 +0800153
154static struct sdma_script_start_addrs imx35_to1_sdma_script __initdata = {
155 .ap_2_ap_addr = 642,
156 .uart_2_mcu_addr = 817,
157 .mcu_2_app_addr = 747,
158 .uartsh_2_mcu_addr = 1183,
159 .per_2_shp_addr = 1033,
160 .mcu_2_shp_addr = 961,
161 .ata_2_mcu_addr = 1333,
162 .mcu_2_ata_addr = 1252,
163 .app_2_mcu_addr = 683,
164 .shp_2_per_addr = 1111,
165 .shp_2_mcu_addr = 892,
166};
167
168static struct sdma_script_start_addrs imx35_to2_sdma_script __initdata = {
169 .ap_2_ap_addr = 729,
170 .uart_2_mcu_addr = 904,
171 .per_2_app_addr = 1597,
172 .mcu_2_app_addr = 834,
173 .uartsh_2_mcu_addr = 1270,
174 .per_2_shp_addr = 1120,
175 .mcu_2_shp_addr = 1048,
176 .ata_2_mcu_addr = 1429,
177 .mcu_2_ata_addr = 1339,
178 .app_2_per_addr = 1531,
179 .app_2_mcu_addr = 770,
180 .shp_2_per_addr = 1198,
181 .shp_2_mcu_addr = 979,
182};
183
184static struct sdma_platform_data imx35_sdma_pdata __initdata = {
185 .fw_name = "sdma-imx35-to2.bin",
186 .script_addrs = &imx35_to2_sdma_script,
187};
188
189void __init imx35_soc_init(void)
190{
191 int to_version = mx35_revision() >> 4;
192
Shawn Guoddd5f512011-09-28 17:16:05 +0800193 imx3_init_l2x0();
194
Shawn Guof1263de2011-09-28 17:16:03 +0800195 /* i.mx35 has the i.mx31 type gpio */
196 mxc_register_gpio("imx31-gpio", 0, MX35_GPIO1_BASE_ADDR, SZ_16K, MX35_INT_GPIO1, 0);
197 mxc_register_gpio("imx31-gpio", 1, MX35_GPIO2_BASE_ADDR, SZ_16K, MX35_INT_GPIO2, 0);
198 mxc_register_gpio("imx31-gpio", 2, MX35_GPIO3_BASE_ADDR, SZ_16K, MX35_INT_GPIO3, 0);
199
200 if (to_version == 1) {
201 strncpy(imx35_sdma_pdata.fw_name, "sdma-imx35-to1.bin",
202 strlen(imx35_sdma_pdata.fw_name));
203 imx35_sdma_pdata.script_addrs = &imx35_to1_sdma_script;
204 }
205
206 imx_add_imx_sdma("imx35-sdma", MX35_SDMA_BASE_ADDR, MX35_INT_SDMA, &imx35_sdma_pdata);
207}