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.
17 #include <linux/platform_device.h>
18 #include <linux/gpio.h>
19 #include <asm/mach-types.h>
20 #include <asm/mach/arch.h>
21 #include <asm/mach/time.h>
22 #include <asm/mach/map.h>
23 #include <mach/hardware.h>
24 #include <mach/common.h>
25 #include <mach/iomux-mx27.h>
27 #include "devices-imx27.h"
29 static const int mx27lite_pins
[] __initconst
= {
56 static const struct imxuart_platform_data uart_pdata __initconst
= {
57 .flags
= IMXUART_HAVE_RTSCTS
,
60 static void __init
mx27lite_init(void)
64 mxc_gpio_setup_multiple_pins(mx27lite_pins
, ARRAY_SIZE(mx27lite_pins
),
66 imx27_add_imx_uart0(&uart_pdata
);
70 static void __init
mx27lite_timer_init(void)
72 mx27_clocks_init(26000000);
75 static struct sys_timer mx27lite_timer
= {
76 .init
= mx27lite_timer_init
,
79 MACHINE_START(IMX27LITE
, "LogicPD i.MX27LITE")
81 .map_io
= mx27_map_io
,
82 .init_early
= imx27_init_early
,
83 .init_irq
= mx27_init_irq
,
84 .handle_irq
= imx27_handle_irq
,
85 .timer
= &mx27lite_timer
,
86 .init_machine
= mx27lite_init
,