2 * Copyright (C) 2010 Freescale Semiconductor, Inc. All Rights Reserved.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 * Create static mapping between physical to virtual memory.
22 #include <linux/init.h>
24 #include <asm/mach/map.h>
26 #include <mach/hardware.h>
27 #include <mach/common.h>
28 #include <mach/iomux-v3.h>
31 * Define the MX50 memory map.
33 static struct map_desc mx50_io_desc
[] __initdata
= {
34 imx_map_entry(MX50
, TZIC
, MT_DEVICE
),
35 imx_map_entry(MX50
, SPBA0
, MT_DEVICE
),
36 imx_map_entry(MX50
, AIPS1
, MT_DEVICE
),
37 imx_map_entry(MX50
, AIPS2
, MT_DEVICE
),
41 * This function initializes the memory map. It is called during the
42 * system startup to create static physical to virtual memory mappings
45 void __init
mx50_map_io(void)
47 mxc_set_cpu_type(MXC_CPU_MX50
);
48 mxc_iomux_v3_init(MX50_IO_ADDRESS(MX50_IOMUXC_BASE_ADDR
));
49 mxc_arch_reset_init(MX50_IO_ADDRESS(MX50_WDOG_BASE_ADDR
));
50 iotable_init(mx50_io_desc
, ARRAY_SIZE(mx50_io_desc
));
53 int imx50_register_gpios(void);
55 void __init
mx50_init_irq(void)
57 tzic_init_irq(MX50_IO_ADDRESS(MX50_TZIC_BASE_ADDR
));
58 imx50_register_gpios();