ARM: MX3: basic support for lilly-1131 board
[safe/jmp/linux-2.6] / arch / arm / mach-mx3 / mx31lilly.c
1 /*
2  *  LILLY-1131 module support
3  *
4  *    Copyright (c) 2009 Daniel Mack <daniel@caiaq.de>
5  *
6  *  based on code for other MX31 boards,
7  *
8  *    Copyright 2005-2007 Freescale Semiconductor
9  *    Copyright (c) 2009 Alberto Panizzo <maramaopercheseimorto@gmail.com>
10  *    Copyright (C) 2009 Valentin Longchamp, EPFL Mobots group
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
25  */
26
27 #include <linux/types.h>
28 #include <linux/init.h>
29 #include <linux/clk.h>
30
31 #include <asm/mach-types.h>
32 #include <asm/mach/arch.h>
33 #include <asm/mach/time.h>
34 #include <asm/mach/map.h>
35
36 #include <mach/hardware.h>
37 #include <mach/common.h>
38 #include <mach/iomux-mx3.h>
39 #include <mach/board-mx31lilly.h>
40
41 #include "devices.h"
42
43 /*
44  * This file contains module-specific initialization routines for LILLY-1131.
45  * Initialization of peripherals found on the baseboard is implemented in the
46  * appropriate baseboard support code.
47  */
48
49 static int mx31lilly_baseboard;
50 core_param(mx31lilly_baseboard, mx31lilly_baseboard, int, 0444);
51
52 static void __init mx31lilly_board_init(void)
53 {
54         switch (mx31lilly_baseboard) {
55         case MX31LILLY_NOBOARD:
56                 break;
57         default:
58                 printk(KERN_ERR "Illegal mx31lilly_baseboard type %d\n",
59                         mx31lilly_baseboard);
60         }
61 }
62
63 static void __init mx31lilly_timer_init(void)
64 {
65         mx31_clocks_init(26000000);
66 }
67
68 static struct sys_timer mx31lilly_timer = {
69         .init   = mx31lilly_timer_init,
70 };
71
72 MACHINE_START(LILLY1131, "INCO startec LILLY-1131")
73         .phys_io        = AIPS1_BASE_ADDR,
74         .io_pg_offst    = ((AIPS1_BASE_ADDR_VIRT) >> 18) & 0xfffc,
75         .boot_params    = PHYS_OFFSET + 0x100,
76         .map_io         = mx31_map_io,
77         .init_irq       = mxc_init_irq,
78         .init_machine   = mx31lilly_board_init,
79         .timer          = &mx31lilly_timer,
80 MACHINE_END
81