blob: 05b49bb5d677d2a64501276d5ab76a5c586362ea [file] [log] [blame]
Shawn Guo13eed982011-09-06 15:05:25 +08001/*
2 * Copyright 2011 Freescale Semiconductor, Inc.
3 * Copyright 2011 Linaro Ltd.
4 *
5 * The code contained herein is licensed under the GNU General Public
6 * License. You may obtain a copy of the GNU General Public License
7 * Version 2 or later at the following locations:
8 *
9 * http://www.opensource.org/licenses/gpl-license.html
10 * http://www.gnu.org/copyleft/gpl.html
11 */
12
Shawn Guo0575fb72011-12-09 00:51:26 +010013#include <linux/delay.h>
Shawn Guo13eed982011-09-06 15:05:25 +080014#include <linux/init.h>
Shawn Guo0575fb72011-12-09 00:51:26 +010015#include <linux/io.h>
Shawn Guo13eed982011-09-06 15:05:25 +080016#include <linux/irq.h>
17#include <linux/irqdomain.h>
18#include <linux/of.h>
Shawn Guo0575fb72011-12-09 00:51:26 +010019#include <linux/of_address.h>
Shawn Guo13eed982011-09-06 15:05:25 +080020#include <linux/of_irq.h>
21#include <linux/of_platform.h>
22#include <asm/hardware/cache-l2x0.h>
23#include <asm/hardware/gic.h>
24#include <asm/mach/arch.h>
25#include <asm/mach/time.h>
26#include <mach/common.h>
27#include <mach/hardware.h>
28
Shawn Guo0575fb72011-12-09 00:51:26 +010029void imx6q_restart(char mode, const char *cmd)
30{
31 struct device_node *np;
32 void __iomem *wdog_base;
33
34 np = of_find_compatible_node(NULL, NULL, "fsl,imx6q-wdt");
35 wdog_base = of_iomap(np, 0);
36 if (!wdog_base)
37 goto soft;
38
39 imx_src_prepare_restart();
40
41 /* enable wdog */
42 writew_relaxed(1 << 2, wdog_base);
43 /* write twice to ensure the request will not get ignored */
44 writew_relaxed(1 << 2, wdog_base);
45
46 /* wait for reset to assert ... */
47 mdelay(500);
48
49 pr_err("Watchdog reset failed to assert reset\n");
50
51 /* delay to allow the serial port to show the message */
52 mdelay(50);
53
54soft:
55 /* we'll take a jump through zero as a poor second */
56 soft_restart(0);
57}
58
Shawn Guo13eed982011-09-06 15:05:25 +080059static void __init imx6q_init_machine(void)
60{
61 of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
62
63 imx6q_pm_init();
64}
65
66static void __init imx6q_map_io(void)
67{
68 imx_lluart_map_io();
69 imx_scu_map_io();
Richard Zhaof4750582011-11-17 18:54:29 +080070 imx6q_clock_map_io();
Shawn Guo13eed982011-09-06 15:05:25 +080071}
72
Shawn Guo2a3267a2011-12-01 14:35:29 +080073static int __init imx6q_gpio_add_irq_domain(struct device_node *np,
Shawn Guo13eed982011-09-06 15:05:25 +080074 struct device_node *interrupt_parent)
75{
Shawn Guo04aafd72011-12-01 14:49:29 +080076 static int gpio_irq_base = MXC_GPIO_IRQ_START + ARCH_NR_GPIOS;
Shawn Guo13eed982011-09-06 15:05:25 +080077
Shawn Guo04aafd72011-12-01 14:49:29 +080078 gpio_irq_base -= 32;
Shawn Guo13eed982011-09-06 15:05:25 +080079 irq_domain_add_simple(np, gpio_irq_base);
Shawn Guo2a3267a2011-12-01 14:35:29 +080080
81 return 0;
Shawn Guo13eed982011-09-06 15:05:25 +080082}
83
84static const struct of_device_id imx6q_irq_match[] __initconst = {
85 { .compatible = "arm,cortex-a9-gic", .data = gic_of_init, },
86 { .compatible = "fsl,imx6q-gpio", .data = imx6q_gpio_add_irq_domain, },
87 { /* sentinel */ }
88};
89
90static void __init imx6q_init_irq(void)
91{
92 l2x0_of_init(0, ~0UL);
93 imx_src_init();
94 imx_gpc_init();
95 of_irq_init(imx6q_irq_match);
96}
97
98static void __init imx6q_timer_init(void)
99{
100 mx6q_clocks_init();
101}
102
103static struct sys_timer imx6q_timer = {
104 .init = imx6q_timer_init,
105};
106
107static const char *imx6q_dt_compat[] __initdata = {
108 "fsl,imx6q-sabreauto",
109 NULL,
110};
111
112DT_MACHINE_START(IMX6Q, "Freescale i.MX6 Quad (Device Tree)")
113 .map_io = imx6q_map_io,
114 .init_irq = imx6q_init_irq,
115 .handle_irq = imx6q_handle_irq,
116 .timer = &imx6q_timer,
117 .init_machine = imx6q_init_machine,
118 .dt_compat = imx6q_dt_compat,
Shawn Guo0575fb72011-12-09 00:51:26 +0100119 .restart = imx6q_restart,
Shawn Guo13eed982011-09-06 15:05:25 +0800120MACHINE_END