staging: fsl-mc: convert mc command build/parse to use C structs
[deliverable/linux.git] / arch / arm / mach-highbank / highbank.c
CommitLineData
220e6cf7
RH
1/*
2 * Copyright 2010-2011 Calxeda, Inc.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License along with
14 * this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16#include <linux/clk.h>
17#include <linux/clkdev.h>
0583fe47 18#include <linux/clocksource.h>
1dc737c4 19#include <linux/dma-mapping.h>
38431148 20#include <linux/input.h>
220e6cf7 21#include <linux/io.h>
0529e315 22#include <linux/irqchip.h>
f2fc42b6 23#include <linux/pl320-ipc.h>
220e6cf7
RH
24#include <linux/of.h>
25#include <linux/of_irq.h>
26#include <linux/of_platform.h>
27#include <linux/of_address.h>
38431148 28#include <linux/reboot.h>
1dc737c4 29#include <linux/amba/bus.h>
60a66e37 30#include <linux/platform_device.h>
be120397 31#include <linux/psci.h>
220e6cf7 32
220e6cf7
RH
33#include <asm/hardware/cache-l2x0.h>
34#include <asm/mach/arch.h>
52530343 35#include <asm/mach/map.h>
220e6cf7
RH
36
37#include "core.h"
38#include "sysregs.h"
39
40void __iomem *sregs_base;
7a2848d3 41void __iomem *scu_base_addr;
220e6cf7
RH
42
43static void __init highbank_scu_map_io(void)
44{
45 unsigned long base;
46
47 /* Get SCU base */
48 asm("mrc p15, 4, %0, c15, c0, 0" : "=r" (base));
49
7a2848d3 50 scu_base_addr = ioremap(base, SZ_4K);
220e6cf7
RH
51}
52
220e6cf7 53
0074fb2c 54static void highbank_l2c310_write_sec(unsigned long val, unsigned reg)
8e56130d 55{
0074fb2c
RK
56 if (reg == L2X0_CTRL)
57 highbank_smc1(0x102, val);
58 else
59 WARN_ONCE(1, "Highbank L2C310: ignoring write to reg 0x%x\n",
60 reg);
8e56130d 61}
8e56130d 62
220e6cf7
RH
63static void __init highbank_init_irq(void)
64{
0529e315 65 irqchip_init();
8e56130d 66
7a2848d3
RH
67 if (of_find_compatible_node(NULL, NULL, "arm,cortex-a9"))
68 highbank_scu_map_io();
220e6cf7
RH
69}
70
220e6cf7
RH
71static void highbank_power_off(void)
72{
c05ee88f 73 highbank_set_pwr_shutdown();
220e6cf7
RH
74
75 while (1)
76 cpu_do_idle();
77}
78
1dc737c4
RH
79static int highbank_platform_notifier(struct notifier_block *nb,
80 unsigned long event, void *__dev)
81{
82 struct resource *res;
83 int reg = -1;
e64bf95e 84 u32 val;
1dc737c4
RH
85 struct device *dev = __dev;
86
87 if (event != BUS_NOTIFY_ADD_DEVICE)
88 return NOTIFY_DONE;
89
90 if (of_device_is_compatible(dev->of_node, "calxeda,hb-ahci"))
91 reg = 0xc;
92 else if (of_device_is_compatible(dev->of_node, "calxeda,hb-sdhci"))
93 reg = 0x18;
94 else if (of_device_is_compatible(dev->of_node, "arm,pl330"))
95 reg = 0x20;
96 else if (of_device_is_compatible(dev->of_node, "calxeda,hb-xgmac")) {
97 res = platform_get_resource(to_platform_device(dev),
98 IORESOURCE_MEM, 0);
99 if (res) {
100 if (res->start == 0xfff50000)
101 reg = 0;
102 else if (res->start == 0xfff51000)
103 reg = 4;
104 }
105 }
106
107 if (reg < 0)
108 return NOTIFY_DONE;
109
110 if (of_property_read_bool(dev->of_node, "dma-coherent")) {
e64bf95e
RH
111 val = readl(sregs_base + reg);
112 writel(val | 0xff01, sregs_base + reg);
1dc737c4 113 set_dma_ops(dev, &arm_coherent_dma_ops);
e64bf95e 114 }
1dc737c4
RH
115
116 return NOTIFY_OK;
117}
118
119static struct notifier_block highbank_amba_nb = {
120 .notifier_call = highbank_platform_notifier,
121};
122
123static struct notifier_block highbank_platform_nb = {
124 .notifier_call = highbank_platform_notifier,
125};
126
60a66e37
DL
127static struct platform_device highbank_cpuidle_device = {
128 .name = "cpuidle-calxeda",
129};
130
38431148
RH
131static int hb_keys_notifier(struct notifier_block *nb, unsigned long event, void *data)
132{
133 u32 key = *(u32 *)data;
134
135 if (event != 0x1000)
136 return 0;
137
138 if (key == KEY_POWER)
139 orderly_poweroff(false);
140 else if (key == 0xffff)
141 ctrl_alt_del();
142
143 return 0;
144}
145static struct notifier_block hb_keys_nb = {
146 .notifier_call = hb_keys_notifier,
147};
148
220e6cf7
RH
149static void __init highbank_init(void)
150{
26cae166
SH
151 struct device_node *np;
152
153 /* Map system registers */
154 np = of_find_compatible_node(NULL, NULL, "calxeda,hb-sregs");
155 sregs_base = of_iomap(np, 0);
156 WARN_ON(!sregs_base);
157
220e6cf7 158 pm_power_off = highbank_power_off;
a283580c 159 highbank_pm_init();
220e6cf7 160
1dc737c4
RH
161 bus_register_notifier(&platform_bus_type, &highbank_platform_nb);
162 bus_register_notifier(&amba_bustype, &highbank_amba_nb);
163
38431148
RH
164 pl320_ipc_register_notifier(&hb_keys_nb);
165
220e6cf7 166 of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
60a66e37 167
a410146c 168 if (psci_ops.cpu_suspend)
60a66e37 169 platform_device_register(&highbank_cpuidle_device);
220e6cf7
RH
170}
171
543c5040 172static const char *const highbank_match[] __initconst = {
220e6cf7 173 "calxeda,highbank",
e095c0d1 174 "calxeda,ecx-2000",
220e6cf7
RH
175 NULL,
176};
177
178DT_MACHINE_START(HIGHBANK, "Highbank")
a6a39834
RH
179#if defined(CONFIG_ZONE_DMA) && defined(CONFIG_ARM_LPAE)
180 .dma_zone_size = (4ULL * SZ_1G),
181#endif
513b9a08
RK
182 .l2c_aux_val = 0,
183 .l2c_aux_mask = ~0,
184 .l2c_write_sec = highbank_l2c310_write_sec,
220e6cf7 185 .init_irq = highbank_init_irq,
220e6cf7
RH
186 .init_machine = highbank_init,
187 .dt_compat = highbank_match,
00e9967e 188 .restart = highbank_restart,
220e6cf7 189MACHINE_END
This page took 0.212003 seconds and 5 git commands to generate.