2 * Copyright 2009 Freescale Semiconductor, Inc. All Rights Reserved.
4 * Author: Fabio Estevam <fabio.estevam@freescale.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 <mach/hardware.h>
27 #include <mach/common.h>
28 #include <mach/imx-uart.h>
29 #include <mach/iomux.h>
30 #include <mach/board-mx27pdk.h>
34 static unsigned int mx27pdk_pins
[] = {
61 static struct imxuart_platform_data uart_pdata
= {
62 .flags
= IMXUART_HAVE_RTSCTS
,
65 static struct platform_device
*platform_devices
[] __initdata
= {
69 static void __init
mx27pdk_init(void)
71 mxc_gpio_setup_multiple_pins(mx27pdk_pins
, ARRAY_SIZE(mx27pdk_pins
),
73 mxc_register_device(&mxc_uart_device0
, &uart_pdata
);
74 platform_add_devices(platform_devices
, ARRAY_SIZE(platform_devices
));
77 static void __init
mx27pdk_timer_init(void)
79 mx27_clocks_init(26000000);
82 static struct sys_timer mx27pdk_timer
= {
83 .init
= mx27pdk_timer_init
,
86 MACHINE_START(MX27_3DS
, "Freescale MX27PDK")
87 /* maintainer: Freescale Semiconductor, Inc. */
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
= mx27pdk_init
,
94 .timer
= &mx27pdk_timer
,