Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
mm-imx1.c
Go to the documentation of this file.
1 /*
2  * author: Sascha Hauer
3  * Created: april 20th, 2004
4  * Copyright: Synertronixx GmbH
5  *
6  * Common code for i.MX1 machines
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 #include <linux/kernel.h>
19 #include <linux/init.h>
20 #include <linux/io.h>
21 #include <linux/pinctrl/machine.h>
22 
23 #include <asm/mach/map.h>
24 
25 #include <mach/common.h>
26 #include <mach/hardware.h>
27 #include <mach/iomux-v1.h>
28 
29 static struct map_desc imx_io_desc[] __initdata = {
30  imx_map_entry(MX1, IO, MT_DEVICE),
31 };
32 
33 void __init mx1_map_io(void)
34 {
35  iotable_init(imx_io_desc, ARRAY_SIZE(imx_io_desc));
36 }
37 
39 {
44 }
45 
46 void __init mx1_init_irq(void)
47 {
49 }
50 
52 {
62 }