blob: a7d66cbbb2fe6abc75dba537f39788527565a818 [file] [log] [blame]
Daniel Mack65b1aa12009-05-20 19:54:33 +02001/*
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
49static int mx31lilly_baseboard;
50core_param(mx31lilly_baseboard, mx31lilly_baseboard, int, 0444);
51
52static void __init mx31lilly_board_init(void)
53{
54 switch (mx31lilly_baseboard) {
55 case MX31LILLY_NOBOARD:
56 break;
Daniel Mack1bc34f72009-05-20 19:54:34 +020057 case MX31LILLY_DB:
58 mx31lilly_db_init();
59 break;
Daniel Mack65b1aa12009-05-20 19:54:33 +020060 default:
61 printk(KERN_ERR "Illegal mx31lilly_baseboard type %d\n",
62 mx31lilly_baseboard);
63 }
64}
65
66static void __init mx31lilly_timer_init(void)
67{
68 mx31_clocks_init(26000000);
69}
70
71static struct sys_timer mx31lilly_timer = {
72 .init = mx31lilly_timer_init,
73};
74
75MACHINE_START(LILLY1131, "INCO startec LILLY-1131")
76 .phys_io = AIPS1_BASE_ADDR,
77 .io_pg_offst = ((AIPS1_BASE_ADDR_VIRT) >> 18) & 0xfffc,
78 .boot_params = PHYS_OFFSET + 0x100,
79 .map_io = mx31_map_io,
80 .init_irq = mxc_init_irq,
81 .init_machine = mx31lilly_board_init,
82 .timer = &mx31lilly_timer,
83MACHINE_END
84