2 * Copyright 2010-2011 Calxeda, Inc.
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.
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
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/>.
16 #include <linux/clk.h>
17 #include <linux/clkdev.h>
18 #include <linux/clocksource.h>
19 #include <linux/dma-mapping.h>
20 #include <linux/input.h>
22 #include <linux/irqchip.h>
23 #include <linux/pl320-ipc.h>
25 #include <linux/of_irq.h>
26 #include <linux/of_address.h>
27 #include <linux/reboot.h>
28 #include <linux/amba/bus.h>
29 #include <linux/platform_device.h>
30 #include <linux/psci.h>
32 #include <asm/hardware/cache-l2x0.h>
33 #include <asm/mach/arch.h>
34 #include <asm/mach/map.h>
39 void __iomem
*sregs_base
;
40 void __iomem
*scu_base_addr
;
42 static void __init
highbank_scu_map_io(void)
47 asm("mrc p15, 4, %0, c15, c0, 0" : "=r" (base
));
49 scu_base_addr
= ioremap(base
, SZ_4K
);
53 static void highbank_l2c310_write_sec(unsigned long val
, unsigned reg
)
56 highbank_smc1(0x102, val
);
58 WARN_ONCE(1, "Highbank L2C310: ignoring write to reg 0x%x\n",
62 static void __init
highbank_init_irq(void)
66 if (of_find_compatible_node(NULL
, NULL
, "arm,cortex-a9"))
67 highbank_scu_map_io();
70 static void highbank_power_off(void)
72 highbank_set_pwr_shutdown();
78 static int highbank_platform_notifier(struct notifier_block
*nb
,
79 unsigned long event
, void *__dev
)
84 struct device
*dev
= __dev
;
86 if (event
!= BUS_NOTIFY_ADD_DEVICE
)
89 if (of_device_is_compatible(dev
->of_node
, "calxeda,hb-ahci"))
91 else if (of_device_is_compatible(dev
->of_node
, "calxeda,hb-sdhci"))
93 else if (of_device_is_compatible(dev
->of_node
, "arm,pl330"))
95 else if (of_device_is_compatible(dev
->of_node
, "calxeda,hb-xgmac")) {
96 res
= platform_get_resource(to_platform_device(dev
),
99 if (res
->start
== 0xfff50000)
101 else if (res
->start
== 0xfff51000)
109 if (of_property_read_bool(dev
->of_node
, "dma-coherent")) {
110 val
= readl(sregs_base
+ reg
);
111 writel(val
| 0xff01, sregs_base
+ reg
);
112 set_dma_ops(dev
, &arm_coherent_dma_ops
);
118 static struct notifier_block highbank_amba_nb
= {
119 .notifier_call
= highbank_platform_notifier
,
122 static struct notifier_block highbank_platform_nb
= {
123 .notifier_call
= highbank_platform_notifier
,
126 static struct platform_device highbank_cpuidle_device
= {
127 .name
= "cpuidle-calxeda",
130 static int hb_keys_notifier(struct notifier_block
*nb
, unsigned long event
, void *data
)
132 u32 key
= *(u32
*)data
;
137 if (key
== KEY_POWER
)
138 orderly_poweroff(false);
139 else if (key
== 0xffff)
144 static struct notifier_block hb_keys_nb
= {
145 .notifier_call
= hb_keys_notifier
,
148 static void __init
highbank_init(void)
150 struct device_node
*np
;
152 /* Map system registers */
153 np
= of_find_compatible_node(NULL
, NULL
, "calxeda,hb-sregs");
154 sregs_base
= of_iomap(np
, 0);
155 WARN_ON(!sregs_base
);
157 pm_power_off
= highbank_power_off
;
160 bus_register_notifier(&platform_bus_type
, &highbank_platform_nb
);
161 bus_register_notifier(&amba_bustype
, &highbank_amba_nb
);
163 pl320_ipc_register_notifier(&hb_keys_nb
);
165 if (psci_ops
.cpu_suspend
)
166 platform_device_register(&highbank_cpuidle_device
);
169 static const char *const highbank_match
[] __initconst
= {
175 DT_MACHINE_START(HIGHBANK
, "Highbank")
176 #if defined(CONFIG_ZONE_DMA) && defined(CONFIG_ARM_LPAE)
177 .dma_zone_size
= (4ULL * SZ_1G
),
181 .l2c_write_sec
= highbank_l2c310_write_sec
,
182 .init_irq
= highbank_init_irq
,
183 .init_machine
= highbank_init
,
184 .dt_compat
= highbank_match
,
185 .restart
= highbank_restart
,