ARM: mvebu: add a common function for the boot address work around
[deliverable/linux.git] / arch / arm / mach-mvebu / system-controller.c
CommitLineData
31af49db 1/*
df863de1 2 * System controller support for Armada 370, 375 and XP platforms.
31af49db
GC
3 *
4 * Copyright (C) 2012 Marvell
5 *
6 * Lior Amsalem <alior@marvell.com>
7 * Gregory CLEMENT <gregory.clement@free-electrons.com>
8 * Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
9 *
10 * This file is licensed under the terms of the GNU General Public
11 * License version 2. This program is licensed "as is" without any
12 * warranty of any kind, whether express or implied.
13 *
df863de1 14 * The Armada 370, 375 and Armada XP SoCs have a range of
31af49db
GC
15 * miscellaneous registers, that do not belong to a particular device,
16 * but rather provide system-level features. This basic
17 * system-controller driver provides a device tree binding for those
18 * registers, and implements utility functions offering various
19 * features related to those registers.
20 *
21 * For now, the feature set is limited to restarting the platform by a
22 * soft-reset, but it might be extended in the future.
23 */
24
25#include <linux/kernel.h>
26#include <linux/init.h>
27#include <linux/of_address.h>
28#include <linux/io.h>
7b6d864b 29#include <linux/reboot.h>
b12634e3 30#include "common.h"
31af49db
GC
31
32static void __iomem *system_controller_base;
33
34struct mvebu_system_controller {
35 u32 rstoutn_mask_offset;
36 u32 system_soft_reset_offset;
37
38 u32 rstoutn_mask_reset_out_en;
39 u32 system_soft_reset;
00504be4
GC
40
41 u32 resume_boot_addr;
9674d4a3
GC
42
43 u32 dev_id;
44 u32 rev_id;
31af49db
GC
45};
46static struct mvebu_system_controller *mvebu_sc;
47
b12634e3 48static const struct mvebu_system_controller armada_370_xp_system_controller = {
31af49db
GC
49 .rstoutn_mask_offset = 0x60,
50 .system_soft_reset_offset = 0x64,
51 .rstoutn_mask_reset_out_en = 0x1,
52 .system_soft_reset = 0x1,
9674d4a3
GC
53 .dev_id = 0x38,
54 .rev_id = 0x3c,
31af49db
GC
55};
56
df863de1
TP
57static const struct mvebu_system_controller armada_375_system_controller = {
58 .rstoutn_mask_offset = 0x54,
59 .system_soft_reset_offset = 0x58,
60 .rstoutn_mask_reset_out_en = 0x1,
61 .system_soft_reset = 0x1,
00504be4 62 .resume_boot_addr = 0xd4,
9674d4a3
GC
63 .dev_id = 0x38,
64 .rev_id = 0x3c,
df863de1
TP
65};
66
b12634e3 67static const struct mvebu_system_controller orion_system_controller = {
31af49db
GC
68 .rstoutn_mask_offset = 0x108,
69 .system_soft_reset_offset = 0x10c,
70 .rstoutn_mask_reset_out_en = 0x4,
71 .system_soft_reset = 0x1,
72};
73
a8cacc0a 74static const struct of_device_id of_system_controller_table[] = {
31af49db
GC
75 {
76 .compatible = "marvell,orion-system-controller",
77 .data = (void *) &orion_system_controller,
78 }, {
79 .compatible = "marvell,armada-370-xp-system-controller",
80 .data = (void *) &armada_370_xp_system_controller,
df863de1
TP
81 }, {
82 .compatible = "marvell,armada-375-system-controller",
83 .data = (void *) &armada_375_system_controller,
31af49db
GC
84 },
85 { /* end of list */ },
86};
87
7b6d864b 88void mvebu_restart(enum reboot_mode mode, const char *cmd)
31af49db
GC
89{
90 if (!system_controller_base) {
91 pr_err("Cannot restart, system-controller not available: check the device tree\n");
92 } else {
93 /*
94 * Enable soft reset to assert RSTOUTn.
95 */
96 writel(mvebu_sc->rstoutn_mask_reset_out_en,
97 system_controller_base +
98 mvebu_sc->rstoutn_mask_offset);
99 /*
100 * Assert soft reset.
101 */
102 writel(mvebu_sc->system_soft_reset,
103 system_controller_base +
104 mvebu_sc->system_soft_reset_offset);
105 }
106
107 while (1)
108 ;
109}
110
9674d4a3
GC
111int mvebu_system_controller_get_soc_id(u32 *dev, u32 *rev)
112{
113 if (of_machine_is_compatible("marvell,armada380") &&
114 system_controller_base) {
115 *dev = readl(system_controller_base + mvebu_sc->dev_id) >> 16;
116 *rev = (readl(system_controller_base + mvebu_sc->rev_id) >> 8)
117 & 0xF;
118 return 0;
119 } else
120 return -ENODEV;
121}
122
00504be4
GC
123#ifdef CONFIG_SMP
124void mvebu_system_controller_set_cpu_boot_addr(void *boot_addr)
125{
126 BUG_ON(system_controller_base == NULL);
127 BUG_ON(mvebu_sc->resume_boot_addr == 0);
128 writel(virt_to_phys(boot_addr), system_controller_base +
129 mvebu_sc->resume_boot_addr);
130}
131#endif
132
31af49db
GC
133static int __init mvebu_system_controller_init(void)
134{
a8cacc0a 135 const struct of_device_id *match;
31af49db
GC
136 struct device_node *np;
137
a8cacc0a
JC
138 np = of_find_matching_node_and_match(NULL, of_system_controller_table,
139 &match);
31af49db 140 if (np) {
31af49db
GC
141 system_controller_base = of_iomap(np, 0);
142 mvebu_sc = (struct mvebu_system_controller *)match->data;
abe511ac 143 of_node_put(np);
31af49db
GC
144 }
145
146 return 0;
147}
148
00504be4 149early_initcall(mvebu_system_controller_init);
This page took 0.122398 seconds and 5 git commands to generate.