blob: 07a09570175d8b034082a3639ddfa01999bf59d3 [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>
26#include <linux/of_platform.h>
27#include <linux/of_address.h>
Rob Herring38431142013-12-04 11:05:17 -060028#include <linux/reboot.h>
Rob Herring1dc737c2012-08-21 12:31:06 +020029#include <linux/amba/bus.h>
Daniel Lezcano60a66e32013-09-27 12:47:45 +020030#include <linux/platform_device.h>
Rob Herring220e6cf2011-06-07 10:02:55 -050031
Rob Herringdd68eb02013-09-26 20:02:51 -050032#include <asm/psci.h>
Rob Herring220e6cf2011-06-07 10:02:55 -050033#include <asm/hardware/cache-l2x0.h>
34#include <asm/mach/arch.h>
Rob Herring52530342012-10-27 15:38:22 -050035#include <asm/mach/map.h>
Rob Herring220e6cf2011-06-07 10:02:55 -050036
37#include "core.h"
38#include "sysregs.h"
39
40void __iomem *sregs_base;
Rob Herring7a2848d2012-10-25 12:13:47 -050041void __iomem *scu_base_addr;
Rob Herring220e6cf2011-06-07 10:02:55 -050042
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
Rob Herring7a2848d2012-10-25 12:13:47 -050050 scu_base_addr = ioremap(base, SZ_4K);
Rob Herring220e6cf2011-06-07 10:02:55 -050051}
52
Rob Herring220e6cf2011-06-07 10:02:55 -050053
Russell King0074fb22014-03-16 17:53:23 +000054static void highbank_l2c310_write_sec(unsigned long val, unsigned reg)
Rob Herring8e561302012-06-06 17:20:10 -050055{
Russell King0074fb22014-03-16 17:53:23 +000056 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);
Rob Herring8e561302012-06-06 17:20:10 -050061}
Rob Herring8e561302012-06-06 17:20:10 -050062
Rob Herring220e6cf2011-06-07 10:02:55 -050063static void __init highbank_init_irq(void)
64{
Rob Herring0529e3152012-11-05 16:18:28 -060065 irqchip_init();
Rob Herring8e561302012-06-06 17:20:10 -050066
Rob Herring7a2848d2012-10-25 12:13:47 -050067 if (of_find_compatible_node(NULL, NULL, "arm,cortex-a9"))
68 highbank_scu_map_io();
Rob Herring220e6cf2011-06-07 10:02:55 -050069}
70
Rob Herring220e6cf2011-06-07 10:02:55 -050071static void highbank_power_off(void)
72{
Rob Herringc05ee882012-12-30 10:15:04 -060073 highbank_set_pwr_shutdown();
Rob Herring220e6cf2011-06-07 10:02:55 -050074
75 while (1)
76 cpu_do_idle();
77}
78
Rob Herring1dc737c2012-08-21 12:31:06 +020079static int highbank_platform_notifier(struct notifier_block *nb,
80 unsigned long event, void *__dev)
81{
82 struct resource *res;
83 int reg = -1;
Rob Herringe64bf952013-07-21 14:53:37 -050084 u32 val;
Rob Herring1dc737c2012-08-21 12:31:06 +020085 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")) {
Rob Herringe64bf952013-07-21 14:53:37 -0500111 val = readl(sregs_base + reg);
112 writel(val | 0xff01, sregs_base + reg);
Rob Herring1dc737c2012-08-21 12:31:06 +0200113 set_dma_ops(dev, &arm_coherent_dma_ops);
Rob Herringe64bf952013-07-21 14:53:37 -0500114 }
Rob Herring1dc737c2012-08-21 12:31:06 +0200115
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
Daniel Lezcano60a66e32013-09-27 12:47:45 +0200127static struct platform_device highbank_cpuidle_device = {
128 .name = "cpuidle-calxeda",
129};
130
Rob Herring38431142013-12-04 11:05:17 -0600131static 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
Rob Herring220e6cf2011-06-07 10:02:55 -0500149static void __init highbank_init(void)
150{
Sebastian Hesselbarth26cae162013-08-27 14:42:06 +0200151 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
Rob Herring220e6cf2011-06-07 10:02:55 -0500158 pm_power_off = highbank_power_off;
Rob Herringa2835802012-09-17 09:55:12 -0500159 highbank_pm_init();
Rob Herring220e6cf2011-06-07 10:02:55 -0500160
Rob Herring1dc737c2012-08-21 12:31:06 +0200161 bus_register_notifier(&platform_bus_type, &highbank_platform_nb);
162 bus_register_notifier(&amba_bustype, &highbank_amba_nb);
163
Rob Herring38431142013-12-04 11:05:17 -0600164 pl320_ipc_register_notifier(&hb_keys_nb);
165
Rob Herring220e6cf2011-06-07 10:02:55 -0500166 of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
Daniel Lezcano60a66e32013-09-27 12:47:45 +0200167
Rob Herringa4101462013-02-26 16:05:46 -0600168 if (psci_ops.cpu_suspend)
Daniel Lezcano60a66e32013-09-27 12:47:45 +0200169 platform_device_register(&highbank_cpuidle_device);
Rob Herring220e6cf2011-06-07 10:02:55 -0500170}
171
172static const char *highbank_match[] __initconst = {
173 "calxeda,highbank",
Rob Herringe095c0d2012-10-25 12:19:52 -0500174 "calxeda,ecx-2000",
Rob Herring220e6cf2011-06-07 10:02:55 -0500175 NULL,
176};
177
178DT_MACHINE_START(HIGHBANK, "Highbank")
Rob Herringa6a39832013-08-01 15:50:55 -0500179#if defined(CONFIG_ZONE_DMA) && defined(CONFIG_ARM_LPAE)
180 .dma_zone_size = (4ULL * SZ_1G),
181#endif
Russell King513b9a02014-04-28 15:34:11 +0100182 .l2c_aux_val = 0,
183 .l2c_aux_mask = ~0,
184 .l2c_write_sec = highbank_l2c310_write_sec,
Rob Herring220e6cf2011-06-07 10:02:55 -0500185 .init_irq = highbank_init_irq,
Rob Herring220e6cf2011-06-07 10:02:55 -0500186 .init_machine = highbank_init,
187 .dt_compat = highbank_match,
Russell King00e99672011-11-05 11:16:05 +0000188 .restart = highbank_restart,
Rob Herring220e6cf2011-06-07 10:02:55 -0500189MACHINE_END