2 * Copyright 2007 Robert Schwebel <r.schwebel@pengutronix.de>, Pengutronix
3 * Copyright (C) 2008 Juergen Beisert (kernel@pengutronix.de)
4 * Copyright 2009 Daniel Schaeffer (daniel.schaeffer@timesys.com)
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include <linux/platform_device.h>
22 #include <linux/gpio.h>
23 #include <asm/mach-types.h>
24 #include <asm/mach/arch.h>
25 #include <asm/mach/time.h>
26 #include <asm/mach/map.h>
27 #include <mach/hardware.h>
28 #include <mach/common.h>
29 #include <mach/imx-uart.h>
30 #include <mach/iomux.h>
31 #include <mach/board-mx27lite.h>
35 static unsigned int mx27lite_pins
[] = {
62 static struct imxuart_platform_data uart_pdata
= {
63 .flags
= IMXUART_HAVE_RTSCTS
,
66 static struct platform_device
*platform_devices
[] __initdata
= {
70 static void __init
mx27lite_init(void)
72 mxc_gpio_setup_multiple_pins(mx27lite_pins
, ARRAY_SIZE(mx27lite_pins
),
74 mxc_register_device(&mxc_uart_device0
, &uart_pdata
);
75 platform_add_devices(platform_devices
, ARRAY_SIZE(platform_devices
));
78 static void __init
mx27lite_timer_init(void)
80 mx27_clocks_init(26000000);
83 static struct sys_timer mx27lite_timer
= {
84 .init
= mx27lite_timer_init
,
87 MACHINE_START(IMX27LITE
, "LogicPD i.MX27LITE")
88 .phys_io
= AIPI_BASE_ADDR
,
89 .io_pg_offst
= ((AIPI_BASE_ADDR_VIRT
) >> 18) & 0xfffc,
90 .boot_params
= PHYS_OFFSET
+ 0x100,
91 .map_io
= mx27_map_io
,
92 .init_irq
= mx27_init_irq
,
93 .init_machine
= mx27lite_init
,
94 .timer
= &mx27lite_timer
,