blob: 07f60986dc2c278e314fe8bb309a8bf4153a3bc6 [file] [log] [blame]
Rob Herring220e6cf2011-06-07 10:02:55 -05001/*
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>
Rob Herring0583fe42013-04-10 18:27:51 -050018#include <linux/clocksource.h>
Rob Herring1dc737c2012-08-21 12:31:06 +020019#include <linux/dma-mapping.h>
Rob Herring38431142013-12-04 11:05:17 -060020#include <linux/input.h>
Rob Herring220e6cf2011-06-07 10:02:55 -050021#include <linux/io.h>
Rob Herring0529e3152012-11-05 16:18:28 -060022#include <linux/irqchip.h>
Suman Annaf2fc42b2014-06-12 22:30:34 +053023#include <linux/pl320-ipc.h>
Rob Herring220e6cf2011-06-07 10:02:55 -050024#include <linux/of.h>
25#include <linux/of_irq.h>
Rob Herring220e6cf2011-06-07 10:02:55 -050026#include <linux/of_address.h>
Rob Herring38431142013-12-04 11:05:17 -060027#include <linux/reboot.h>
Rob Herring1dc737c2012-08-21 12:31:06 +020028#include <linux/amba/bus.h>
Daniel Lezcano60a66e32013-09-27 12:47:45 +020029#include <linux/platform_device.h>
Mark Rutlandbe120392015-07-31 15:46:19 +010030#include <linux/psci.h>
Rob Herring220e6cf2011-06-07 10:02:55 -050031
Rob Herring220e6cf2011-06-07 10:02:55 -050032#include <asm/hardware/cache-l2x0.h>
33#include <asm/mach/arch.h>
Rob Herring52530342012-10-27 15:38:22 -050034#include <asm/mach/map.h>
Rob Herring220e6cf2011-06-07 10:02:55 -050035
36#include "core.h"
37#include "sysregs.h"
38
39void __iomem *sregs_base;
Rob Herring7a2848d2012-10-25 12:13:47 -050040void __iomem *scu_base_addr;
Rob Herring220e6cf2011-06-07 10:02:55 -050041
42static void __init highbank_scu_map_io(void)
43{
44 unsigned long base;
45
46 /* Get SCU base */
47 asm("mrc p15, 4, %0, c15, c0, 0" : "=r" (base));
48
Rob Herring7a2848d2012-10-25 12:13:47 -050049 scu_base_addr = ioremap(base, SZ_4K);
Rob Herring220e6cf2011-06-07 10:02:55 -050050}
51
Rob Herring220e6cf2011-06-07 10:02:55 -050052
Russell King0074fb22014-03-16 17:53:23 +000053static void highbank_l2c310_write_sec(unsigned long val, unsigned reg)
Rob Herring8e561302012-06-06 17:20:10 -050054{
Russell King0074fb22014-03-16 17:53:23 +000055 if (reg == L2X0_CTRL)
56 highbank_smc1(0x102, val);
57 else
58 WARN_ONCE(1, "Highbank L2C310: ignoring write to reg 0x%x\n",
59 reg);
Rob Herring8e561302012-06-06 17:20:10 -050060}
Rob Herring8e561302012-06-06 17:20:10 -050061
Rob Herring220e6cf2011-06-07 10:02:55 -050062static void __init highbank_init_irq(void)
63{
Rob Herring0529e3152012-11-05 16:18:28 -060064 irqchip_init();
Rob Herring8e561302012-06-06 17:20:10 -050065
Rob Herring7a2848d2012-10-25 12:13:47 -050066 if (of_find_compatible_node(NULL, NULL, "arm,cortex-a9"))
67 highbank_scu_map_io();
Rob Herring220e6cf2011-06-07 10:02:55 -050068}
69
Rob Herring220e6cf2011-06-07 10:02:55 -050070static void highbank_power_off(void)
71{
Rob Herringc05ee882012-12-30 10:15:04 -060072 highbank_set_pwr_shutdown();
Rob Herring220e6cf2011-06-07 10:02:55 -050073
74 while (1)
75 cpu_do_idle();
76}
77
Rob Herring1dc737c2012-08-21 12:31:06 +020078static int highbank_platform_notifier(struct notifier_block *nb,
79 unsigned long event, void *__dev)
80{
81 struct resource *res;
82 int reg = -1;
Rob Herringe64bf952013-07-21 14:53:37 -050083 u32 val;
Rob Herring1dc737c2012-08-21 12:31:06 +020084 struct device *dev = __dev;
85
86 if (event != BUS_NOTIFY_ADD_DEVICE)
87 return NOTIFY_DONE;
88
89 if (of_device_is_compatible(dev->of_node, "calxeda,hb-ahci"))
90 reg = 0xc;
91 else if (of_device_is_compatible(dev->of_node, "calxeda,hb-sdhci"))
92 reg = 0x18;
93 else if (of_device_is_compatible(dev->of_node, "arm,pl330"))
94 reg = 0x20;
95 else if (of_device_is_compatible(dev->of_node, "calxeda,hb-xgmac")) {
96 res = platform_get_resource(to_platform_device(dev),
97 IORESOURCE_MEM, 0);
98 if (res) {
99 if (res->start == 0xfff50000)
100 reg = 0;
101 else if (res->start == 0xfff51000)
102 reg = 4;
103 }
104 }
105
106 if (reg < 0)
107 return NOTIFY_DONE;
108
109 if (of_property_read_bool(dev->of_node, "dma-coherent")) {
Rob Herringe64bf952013-07-21 14:53:37 -0500110 val = readl(sregs_base + reg);
111 writel(val | 0xff01, sregs_base + reg);
Rob Herring1dc737c2012-08-21 12:31:06 +0200112 set_dma_ops(dev, &arm_coherent_dma_ops);
Rob Herringe64bf952013-07-21 14:53:37 -0500113 }
Rob Herring1dc737c2012-08-21 12:31:06 +0200114
115 return NOTIFY_OK;
116}
117
118static struct notifier_block highbank_amba_nb = {
119 .notifier_call = highbank_platform_notifier,
120};
121
122static struct notifier_block highbank_platform_nb = {
123 .notifier_call = highbank_platform_notifier,
124};
125
Daniel Lezcano60a66e32013-09-27 12:47:45 +0200126static struct platform_device highbank_cpuidle_device = {
127 .name = "cpuidle-calxeda",
128};
129
Rob Herring38431142013-12-04 11:05:17 -0600130static int hb_keys_notifier(struct notifier_block *nb, unsigned long event, void *data)
131{
132 u32 key = *(u32 *)data;
133
134 if (event != 0x1000)
135 return 0;
136
137 if (key == KEY_POWER)
138 orderly_poweroff(false);
139 else if (key == 0xffff)
140 ctrl_alt_del();
141
142 return 0;
143}
144static struct notifier_block hb_keys_nb = {
145 .notifier_call = hb_keys_notifier,
146};
147
Rob Herring220e6cf2011-06-07 10:02:55 -0500148static void __init highbank_init(void)
149{
Sebastian Hesselbarth26cae162013-08-27 14:42:06 +0200150 struct device_node *np;
151
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);
156
Rob Herring220e6cf2011-06-07 10:02:55 -0500157 pm_power_off = highbank_power_off;
Rob Herringa2835802012-09-17 09:55:12 -0500158 highbank_pm_init();
Rob Herring220e6cf2011-06-07 10:02:55 -0500159
Rob Herring1dc737c2012-08-21 12:31:06 +0200160 bus_register_notifier(&platform_bus_type, &highbank_platform_nb);
161 bus_register_notifier(&amba_bustype, &highbank_amba_nb);
162
Rob Herring38431142013-12-04 11:05:17 -0600163 pl320_ipc_register_notifier(&hb_keys_nb);
164
Rob Herringa4101462013-02-26 16:05:46 -0600165 if (psci_ops.cpu_suspend)
Daniel Lezcano60a66e32013-09-27 12:47:45 +0200166 platform_device_register(&highbank_cpuidle_device);
Rob Herring220e6cf2011-06-07 10:02:55 -0500167}
168
Uwe Kleine-König543c5042015-02-18 21:01:45 +0100169static const char *const highbank_match[] __initconst = {
Rob Herring220e6cf2011-06-07 10:02:55 -0500170 "calxeda,highbank",
Rob Herringe095c0d2012-10-25 12:19:52 -0500171 "calxeda,ecx-2000",
Rob Herring220e6cf2011-06-07 10:02:55 -0500172 NULL,
173};
174
175DT_MACHINE_START(HIGHBANK, "Highbank")
Rob Herringa6a39832013-08-01 15:50:55 -0500176#if defined(CONFIG_ZONE_DMA) && defined(CONFIG_ARM_LPAE)
177 .dma_zone_size = (4ULL * SZ_1G),
178#endif
Russell King513b9a02014-04-28 15:34:11 +0100179 .l2c_aux_val = 0,
180 .l2c_aux_mask = ~0,
181 .l2c_write_sec = highbank_l2c310_write_sec,
Rob Herring220e6cf2011-06-07 10:02:55 -0500182 .init_irq = highbank_init_irq,
Rob Herring220e6cf2011-06-07 10:02:55 -0500183 .init_machine = highbank_init,
184 .dt_compat = highbank_match,
Russell King00e99672011-11-05 11:16:05 +0000185 .restart = highbank_restart,
Rob Herring220e6cf2011-06-07 10:02:55 -0500186MACHINE_END