2 * Copyright 2012 Sascha Hauer, Pengutronix
4 * The code contained herein is licensed under the GNU General Public
5 * License. You may obtain a copy of the GNU General Public License
6 * Version 2 or later at the following locations:
8 * http://www.opensource.org/licenses/gpl-license.html
9 * http://www.gnu.org/copyleft/gpl.html
12 #include <linux/irq.h>
13 #include <linux/of_irq.h>
14 #include <linux/of_platform.h>
15 #include <asm/mach/arch.h>
16 #include <asm/mach/time.h>
21 static const struct of_dev_auxdata imx27_auxdata_lookup
[] __initconst
= {
22 OF_DEV_AUXDATA("fsl,imx27-uart", MX27_UART1_BASE_ADDR
, "imx21-uart.0", NULL
),
23 OF_DEV_AUXDATA("fsl,imx27-uart", MX27_UART2_BASE_ADDR
, "imx21-uart.1", NULL
),
24 OF_DEV_AUXDATA("fsl,imx27-uart", MX27_UART3_BASE_ADDR
, "imx21-uart.2", NULL
),
25 OF_DEV_AUXDATA("fsl,imx27-fec", MX27_FEC_BASE_ADDR
, "imx27-fec.0", NULL
),
26 OF_DEV_AUXDATA("fsl,imx27-i2c", MX27_I2C1_BASE_ADDR
, "imx21-i2c.0", NULL
),
27 OF_DEV_AUXDATA("fsl,imx27-i2c", MX27_I2C2_BASE_ADDR
, "imx21-i2c.1", NULL
),
28 OF_DEV_AUXDATA("fsl,imx27-cspi", MX27_CSPI1_BASE_ADDR
, "imx27-cspi.0", NULL
),
29 OF_DEV_AUXDATA("fsl,imx27-cspi", MX27_CSPI2_BASE_ADDR
, "imx27-cspi.1", NULL
),
30 OF_DEV_AUXDATA("fsl,imx27-cspi", MX27_CSPI3_BASE_ADDR
, "imx27-cspi.2", NULL
),
31 OF_DEV_AUXDATA("fsl,imx27-wdt", MX27_WDOG_BASE_ADDR
, "imx2-wdt.0", NULL
),
32 OF_DEV_AUXDATA("fsl,imx27-nand", MX27_NFC_BASE_ADDR
, "imx27-nand.0", NULL
),
36 static void __init
imx27_dt_init(void)
38 of_platform_populate(NULL
, of_default_bus_match_table
,
39 imx27_auxdata_lookup
, NULL
);
42 static void __init
imx27_timer_init(void)
44 mx27_clocks_init_dt();
47 static struct sys_timer imx27_timer
= {
48 .init
= imx27_timer_init
,
51 static const char * const imx27_dt_board_compat
[] __initconst
= {
56 DT_MACHINE_START(IMX27_DT
, "Freescale i.MX27 (Device Tree Support)")
57 .map_io
= mx27_map_io
,
58 .init_early
= imx27_init_early
,
59 .init_irq
= mx27_init_irq
,
60 .handle_irq
= imx27_handle_irq
,
61 .timer
= &imx27_timer
,
62 .init_machine
= imx27_dt_init
,
63 .dt_compat
= imx27_dt_board_compat
,
64 .restart
= mxc_restart
,