blob: d8b3b22aeba7c3115f8ab24558d0e4e593d70c0d [file] [log] [blame]
Denis 'GNUtoo' Cariklid2a37b32012-07-09 21:39:12 +02001/*
2 * Copyright 2012 Sascha Hauer, Pengutronix
3 *
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:
7 *
8 * http://www.opensource.org/licenses/gpl-license.html
9 * http://www.gnu.org/copyleft/gpl.html
10 */
11
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>
Denis 'GNUtoo' Cariklid2a37b32012-07-09 21:39:12 +020017
Shawn Guoe3372472012-09-13 21:01:00 +080018#include "common.h"
Shawn Guo18cb6802013-05-10 09:13:44 +080019#include "hardware.h"
Shawn Guo50f2de62012-09-14 14:14:45 +080020#include "mx31.h"
Shawn Guoe3372472012-09-13 21:01:00 +080021
Denis 'GNUtoo' Cariklid2a37b32012-07-09 21:39:12 +020022static void __init imx31_dt_init(void)
23{
Shawn Guo18cb6802013-05-10 09:13:44 +080024 mxc_arch_reset_init(MX31_IO_ADDRESS(MX31_WDOG_BASE_ADDR));
25
Fabio Estevamef0e4a62012-11-22 17:10:46 -020026 of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
Denis 'GNUtoo' Cariklid2a37b32012-07-09 21:39:12 +020027}
28
Denis 'GNUtoo' Cariklid2a37b32012-07-09 21:39:12 +020029static const char *imx31_dt_board_compat[] __initdata = {
30 "fsl,imx31",
31 NULL
32};
33
Stephen Warren80debae2013-01-29 20:56:17 -070034static void __init imx31_dt_timer_init(void)
35{
36 mx31_clocks_init_dt();
37}
38
Denis 'GNUtoo' Cariklid2a37b32012-07-09 21:39:12 +020039DT_MACHINE_START(IMX31_DT, "Freescale i.MX31 (Device Tree Support)")
40 .map_io = mx31_map_io,
41 .init_early = imx31_init_early,
42 .init_irq = mx31_init_irq,
43 .handle_irq = imx31_handle_irq,
Stephen Warren80debae2013-01-29 20:56:17 -070044 .init_time = imx31_dt_timer_init,
Denis 'GNUtoo' Cariklid2a37b32012-07-09 21:39:12 +020045 .init_machine = imx31_dt_init,
46 .dt_compat = imx31_dt_board_compat,
47 .restart = mxc_restart,
48MACHINE_END