reset.c 3.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
/*
 *  This program is free software; you can redistribute it and/or modify it
 *  under the terms of the GNU General Public License version 2 as published
 *  by the Free Software Foundation.
 *
 *  Copyright (C) 2010 John Crispin <blogic@openwrt.org>
 */

#include <linux/init.h>
#include <linux/io.h>
#include <linux/ioport.h>
#include <linux/pm.h>
13
#include <linux/export.h>
J
John Crispin 已提交
14 15 16 17
#include <linux/delay.h>
#include <linux/of_address.h>
#include <linux/of_platform.h>

18 19 20 21
#include <asm/reboot.h>

#include <lantiq_soc.h>

J
John Crispin 已提交
22 23
#include "../prom.h"

24 25 26
#define ltq_rcu_w32(x, y)	ltq_w32((x), ltq_rcu_membase + (y))
#define ltq_rcu_r32(x)		ltq_r32(ltq_rcu_membase + (x))

J
John Crispin 已提交
27 28 29 30
/* reset request register */
#define RCU_RST_REQ		0x0010
/* reset status register */
#define RCU_RST_STAT		0x0014
31 32 33
/* vr9 gphy registers */
#define RCU_GFS_ADD0_XRX200	0x0020
#define RCU_GFS_ADD1_XRX200	0x0068
34

J
John Crispin 已提交
35
/* reboot bit */
36
#define RCU_RD_GPHY0_XRX200	BIT(31)
J
John Crispin 已提交
37
#define RCU_RD_SRST		BIT(30)
38 39
#define RCU_RD_GPHY1_XRX200	BIT(29)

J
John Crispin 已提交
40 41 42
/* reset cause */
#define RCU_STAT_SHIFT		26
/* boot selection */
43 44
#define RCU_BOOT_SEL(x)		((x >> 18) & 0x7)
#define RCU_BOOT_SEL_XRX200(x)	(((x >> 17) & 0xf) | ((x >> 8) & 0x10))
45 46 47

/* remapped base addr of the reset control unit */
static void __iomem *ltq_rcu_membase;
48
static struct device_node *ltq_rcu_np;
49 50 51 52

/* This function is used by the watchdog driver */
int ltq_reset_cause(void)
{
J
John Crispin 已提交
53 54
	u32 val = ltq_rcu_r32(RCU_RST_STAT);
	return val >> RCU_STAT_SHIFT;
55 56 57
}
EXPORT_SYMBOL_GPL(ltq_reset_cause);

J
John Crispin 已提交
58 59 60 61
/* allow platform code to find out what source we booted from */
unsigned char ltq_boot_select(void)
{
	u32 val = ltq_rcu_r32(RCU_RST_STAT);
62 63 64 65 66

	if (of_device_is_compatible(ltq_rcu_np, "lantiq,rcu-xrx200"))
		return RCU_BOOT_SEL_XRX200(val);

	return RCU_BOOT_SEL(val);
J
John Crispin 已提交
67 68
}

69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
/* reset / boot a gphy */
static struct ltq_xrx200_gphy_reset {
	u32 rd;
	u32 addr;
} xrx200_gphy[] = {
	{RCU_RD_GPHY0_XRX200, RCU_GFS_ADD0_XRX200},
	{RCU_RD_GPHY1_XRX200, RCU_GFS_ADD1_XRX200},
};

/* reset and boot a gphy. these phys only exist on xrx200 SoC */
int xrx200_gphy_boot(struct device *dev, unsigned int id, dma_addr_t dev_addr)
{
	if (!of_device_is_compatible(ltq_rcu_np, "lantiq,rcu-xrx200")) {
		dev_err(dev, "this SoC has no GPHY\n");
		return -EINVAL;
	}
	if (id > 1) {
		dev_err(dev, "%u is an invalid gphy id\n", id);
		return -EINVAL;
	}
	dev_info(dev, "booting GPHY%u firmware at %X\n", id, dev_addr);

	ltq_rcu_w32(ltq_rcu_r32(RCU_RST_REQ) | xrx200_gphy[id].rd,
			RCU_RST_REQ);
	ltq_rcu_w32(dev_addr, xrx200_gphy[id].addr);
	ltq_rcu_w32(ltq_rcu_r32(RCU_RST_REQ) & ~xrx200_gphy[id].rd,
			RCU_RST_REQ);
	return 0;
}

J
John Crispin 已提交
99 100 101 102 103 104 105 106
/* reset a io domain for u micro seconds */
void ltq_reset_once(unsigned int module, ulong u)
{
	ltq_rcu_w32(ltq_rcu_r32(RCU_RST_REQ) | module, RCU_RST_REQ);
	udelay(u);
	ltq_rcu_w32(ltq_rcu_r32(RCU_RST_REQ) & ~module, RCU_RST_REQ);
}

107 108 109
static void ltq_machine_restart(char *command)
{
	local_irq_disable();
J
John Crispin 已提交
110
	ltq_rcu_w32(ltq_rcu_r32(RCU_RST_REQ) | RCU_RD_SRST, RCU_RST_REQ);
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
	unreachable();
}

static void ltq_machine_halt(void)
{
	local_irq_disable();
	unreachable();
}

static void ltq_machine_power_off(void)
{
	local_irq_disable();
	unreachable();
}

static int __init mips_reboot_setup(void)
{
128
	struct resource res;
129 130 131 132 133

	ltq_rcu_np = of_find_compatible_node(NULL, NULL, "lantiq,rcu-xway");
	if (!ltq_rcu_np)
		ltq_rcu_np = of_find_compatible_node(NULL, NULL,
							"lantiq,rcu-xrx200");
134 135

	/* check if all the reset register range is available */
136
	if (!ltq_rcu_np)
137 138
		panic("Failed to load reset resources from devicetree");

139
	if (of_address_to_resource(ltq_rcu_np, 0, &res))
140
		panic("Failed to get rcu memory range");
141

142 143
	if (request_mem_region(res.start, resource_size(&res), res.name) < 0)
		pr_err("Failed to request rcu memory");
144

145
	ltq_rcu_membase = ioremap_nocache(res.start, resource_size(&res));
146
	if (!ltq_rcu_membase)
J
John Crispin 已提交
147
		panic("Failed to remap core memory");
148 149 150 151 152 153 154 155 156

	_machine_restart = ltq_machine_restart;
	_machine_halt = ltq_machine_halt;
	pm_power_off = ltq_machine_power_off;

	return 0;
}

arch_initcall(mips_reboot_setup);