blob: 3327211746acf4ef4747909c367dff32edf71614 [file] [log] [blame]
John Crispin8ec6d932011-03-30 09:27:48 +02001/*
2 * This program is free software; you can redistribute it and/or modify it
3 * under the terms of the GNU General Public License version 2 as published
4 * by the Free Software Foundation.
5 *
6 * Copyright (C) 2010 John Crispin <blogic@openwrt.org>
7 */
8
9#include <linux/init.h>
10#include <linux/io.h>
11#include <linux/ioport.h>
12#include <linux/pm.h>
John Crispin4af92e72011-11-10 21:33:07 +010013#include <linux/export.h>
John Crispin6697c692012-04-30 11:33:09 +020014#include <linux/delay.h>
15#include <linux/of_address.h>
16#include <linux/of_platform.h>
17
John Crispin8ec6d932011-03-30 09:27:48 +020018#include <asm/reboot.h>
19
20#include <lantiq_soc.h>
21
John Crispin6697c692012-04-30 11:33:09 +020022#include "../prom.h"
23
John Crispin8ec6d932011-03-30 09:27:48 +020024#define ltq_rcu_w32(x, y) ltq_w32((x), ltq_rcu_membase + (y))
25#define ltq_rcu_r32(x) ltq_r32(ltq_rcu_membase + (x))
26
John Crispin6697c692012-04-30 11:33:09 +020027/* reset request register */
28#define RCU_RST_REQ 0x0010
29/* reset status register */
30#define RCU_RST_STAT 0x0014
John Crispin8ec6d932011-03-30 09:27:48 +020031
John Crispin6697c692012-04-30 11:33:09 +020032/* reboot bit */
33#define RCU_RD_SRST BIT(30)
34/* reset cause */
35#define RCU_STAT_SHIFT 26
36/* boot selection */
37#define RCU_BOOT_SEL_SHIFT 26
38#define RCU_BOOT_SEL_MASK 0x7
John Crispin8ec6d932011-03-30 09:27:48 +020039
40static struct resource ltq_rcu_resource = {
41 .name = "rcu",
42 .start = LTQ_RCU_BASE_ADDR,
43 .end = LTQ_RCU_BASE_ADDR + LTQ_RCU_SIZE - 1,
44 .flags = IORESOURCE_MEM,
45};
46
47/* remapped base addr of the reset control unit */
48static void __iomem *ltq_rcu_membase;
49
50/* This function is used by the watchdog driver */
51int ltq_reset_cause(void)
52{
John Crispin6697c692012-04-30 11:33:09 +020053 u32 val = ltq_rcu_r32(RCU_RST_STAT);
54 return val >> RCU_STAT_SHIFT;
John Crispin8ec6d932011-03-30 09:27:48 +020055}
56EXPORT_SYMBOL_GPL(ltq_reset_cause);
57
John Crispin6697c692012-04-30 11:33:09 +020058/* allow platform code to find out what source we booted from */
59unsigned char ltq_boot_select(void)
60{
61 u32 val = ltq_rcu_r32(RCU_RST_STAT);
62 return (val >> RCU_BOOT_SEL_SHIFT) & RCU_BOOT_SEL_MASK;
63}
64
65/* reset a io domain for u micro seconds */
66void ltq_reset_once(unsigned int module, ulong u)
67{
68 ltq_rcu_w32(ltq_rcu_r32(RCU_RST_REQ) | module, RCU_RST_REQ);
69 udelay(u);
70 ltq_rcu_w32(ltq_rcu_r32(RCU_RST_REQ) & ~module, RCU_RST_REQ);
71}
72
John Crispin8ec6d932011-03-30 09:27:48 +020073static void ltq_machine_restart(char *command)
74{
John Crispin8ec6d932011-03-30 09:27:48 +020075 local_irq_disable();
John Crispin6697c692012-04-30 11:33:09 +020076 ltq_rcu_w32(ltq_rcu_r32(RCU_RST_REQ) | RCU_RD_SRST, RCU_RST_REQ);
John Crispin8ec6d932011-03-30 09:27:48 +020077 unreachable();
78}
79
80static void ltq_machine_halt(void)
81{
John Crispin8ec6d932011-03-30 09:27:48 +020082 local_irq_disable();
83 unreachable();
84}
85
86static void ltq_machine_power_off(void)
87{
John Crispin8ec6d932011-03-30 09:27:48 +020088 local_irq_disable();
89 unreachable();
90}
91
92static int __init mips_reboot_setup(void)
93{
94 /* insert and request the memory region */
95 if (insert_resource(&iomem_resource, &ltq_rcu_resource) < 0)
Ralf Baechleab75dc02011-11-17 15:07:31 +000096 panic("Failed to insert rcu memory");
John Crispin8ec6d932011-03-30 09:27:48 +020097
98 if (request_mem_region(ltq_rcu_resource.start,
99 resource_size(&ltq_rcu_resource), "rcu") < 0)
Ralf Baechleab75dc02011-11-17 15:07:31 +0000100 panic("Failed to request rcu memory");
John Crispin8ec6d932011-03-30 09:27:48 +0200101
102 /* remap rcu register range */
103 ltq_rcu_membase = ioremap_nocache(ltq_rcu_resource.start,
104 resource_size(&ltq_rcu_resource));
105 if (!ltq_rcu_membase)
John Crispin6697c692012-04-30 11:33:09 +0200106 panic("Failed to remap core memory");
John Crispin8ec6d932011-03-30 09:27:48 +0200107
108 _machine_restart = ltq_machine_restart;
109 _machine_halt = ltq_machine_halt;
110 pm_power_off = ltq_machine_power_off;
111
112 return 0;
113}
114
115arch_initcall(mips_reboot_setup);