Merge commit 'v2.6.37-rc4' into imx-for-2.6.38
[deliverable/linux.git] / arch / arm / mach-mx5 / mm.c
CommitLineData
a329b48c 1/*
b66ff7a2 2 * Copyright 2008-2010 Freescale Semiconductor, Inc. All Rights Reserved.
a329b48c
AK
3 *
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>
21#include <mach/iomux-v3.h>
22
23/*
24 * Define the MX51 memory map.
25 */
08ff97b5
UKK
26static struct map_desc mx51_io_desc[] __initdata = {
27 imx_map_entry(MX51, IRAM, MT_DEVICE),
28 imx_map_entry(MX51, DEBUG, MT_DEVICE),
29 imx_map_entry(MX51, AIPS1, MT_DEVICE),
30 imx_map_entry(MX51, SPBA0, MT_DEVICE),
31 imx_map_entry(MX51, AIPS2, MT_DEVICE),
a329b48c
AK
32};
33
b66ff7a2
DN
34/*
35 * Define the MX53 memory map.
36 */
37static struct map_desc mx53_io_desc[] __initdata = {
38 imx_map_entry(MX53, AIPS1, MT_DEVICE),
39 imx_map_entry(MX53, SPBA0, MT_DEVICE),
40 imx_map_entry(MX53, AIPS2, MT_DEVICE),
41};
42
a329b48c
AK
43/*
44 * This function initializes the memory map. It is called during the
45 * system startup to create static physical to virtual memory mappings
46 * for the IO modules.
47 */
48void __init mx51_map_io(void)
49{
a329b48c
AK
50 mxc_set_cpu_type(MXC_CPU_MX51);
51 mxc_iomux_v3_init(MX51_IO_ADDRESS(MX51_IOMUXC_BASE_ADDR));
52 mxc_arch_reset_init(MX51_IO_ADDRESS(MX51_WDOG_BASE_ADDR));
08ff97b5 53 iotable_init(mx51_io_desc, ARRAY_SIZE(mx51_io_desc));
a329b48c
AK
54}
55
b66ff7a2
DN
56void __init mx53_map_io(void)
57{
58 mxc_set_cpu_type(MXC_CPU_MX53);
59 mxc_iomux_v3_init(MX53_IO_ADDRESS(MX53_IOMUXC_BASE_ADDR));
60 mxc_arch_reset_init(MX53_IO_ADDRESS(MX53_WDOG_BASE_ADDR));
61 iotable_init(mx53_io_desc, ARRAY_SIZE(mx53_io_desc));
62}
63
9a763bfb
UKK
64int imx51_register_gpios(void);
65
a329b48c
AK
66void __init mx51_init_irq(void)
67{
3d1bc862
SH
68 unsigned long tzic_addr;
69 void __iomem *tzic_virt;
70
9ab4650f 71 if (mx51_revision() < IMX_CHIP_REVISION_2_0)
3d1bc862
SH
72 tzic_addr = MX51_TZIC_BASE_ADDR_TO1;
73 else
74 tzic_addr = MX51_TZIC_BASE_ADDR;
75
76 tzic_virt = ioremap(tzic_addr, SZ_16K);
77 if (!tzic_virt)
78 panic("unable to map TZIC interrupt controller\n");
79
80 tzic_init_irq(tzic_virt);
84659ab5 81 imx51_register_gpios();
a329b48c 82}
c0abefd3
DN
83
84int imx53_register_gpios(void);
85
86void __init mx53_init_irq(void)
87{
88 unsigned long tzic_addr;
89 void __iomem *tzic_virt;
90
91 tzic_addr = MX53_TZIC_BASE_ADDR;
92
93 tzic_virt = ioremap(tzic_addr, SZ_16K);
94 if (!tzic_virt)
95 panic("unable to map TZIC interrupt controller\n");
96
97 tzic_init_irq(tzic_virt);
98 imx53_register_gpios();
99}
This page took 0.067559 seconds and 5 git commands to generate.