1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright 2010-2011 Calxeda, Inc.
6 #include <linux/clkdev.h>
7 #include <linux/clocksource.h>
8 #include <linux/dma-map-ops.h>
9 #include <linux/input.h>
11 #include <linux/irqchip.h>
12 #include <linux/pl320-ipc.h>
14 #include <linux/of_irq.h>
15 #include <linux/of_address.h>
16 #include <linux/reboot.h>
17 #include <linux/amba/bus.h>
18 #include <linux/platform_device.h>
19 #include <linux/psci.h>
21 #include <asm/hardware/cache-l2x0.h>
22 #include <asm/mach/arch.h>
23 #include <asm/mach/map.h>
28 void __iomem
*sregs_base
;
29 void __iomem
*scu_base_addr
;
31 static void __init
highbank_scu_map_io(void)
36 asm("mrc p15, 4, %0, c15, c0, 0" : "=r" (base
));
38 scu_base_addr
= ioremap(base
, SZ_4K
);
42 static void highbank_l2c310_write_sec(unsigned long val
, unsigned reg
)
45 highbank_smc1(0x102, val
);
47 WARN_ONCE(1, "Highbank L2C310: ignoring write to reg 0x%x\n",
51 static void __init
highbank_init_irq(void)
55 if (of_find_compatible_node(NULL
, NULL
, "arm,cortex-a9"))
56 highbank_scu_map_io();
59 static void highbank_power_off(void)
61 highbank_set_pwr_shutdown();
67 static int highbank_platform_notifier(struct notifier_block
*nb
,
68 unsigned long event
, void *__dev
)
73 struct device
*dev
= __dev
;
75 if (event
!= BUS_NOTIFY_ADD_DEVICE
)
78 if (of_device_is_compatible(dev
->of_node
, "calxeda,hb-ahci"))
80 else if (of_device_is_compatible(dev
->of_node
, "calxeda,hb-sdhci"))
82 else if (of_device_is_compatible(dev
->of_node
, "arm,pl330"))
84 else if (of_device_is_compatible(dev
->of_node
, "calxeda,hb-xgmac")) {
85 res
= platform_get_resource(to_platform_device(dev
),
88 if (res
->start
== 0xfff50000)
90 else if (res
->start
== 0xfff51000)
98 if (of_property_read_bool(dev
->of_node
, "dma-coherent")) {
99 val
= readl(sregs_base
+ reg
);
100 writel(val
| 0xff01, sregs_base
+ reg
);
101 set_dma_ops(dev
, &arm_coherent_dma_ops
);
107 static struct notifier_block highbank_amba_nb
= {
108 .notifier_call
= highbank_platform_notifier
,
111 static struct notifier_block highbank_platform_nb
= {
112 .notifier_call
= highbank_platform_notifier
,
115 static struct platform_device highbank_cpuidle_device
= {
116 .name
= "cpuidle-calxeda",
119 static int hb_keys_notifier(struct notifier_block
*nb
, unsigned long event
, void *data
)
121 u32 key
= *(u32
*)data
;
126 if (key
== KEY_POWER
)
127 orderly_poweroff(false);
128 else if (key
== 0xffff)
133 static struct notifier_block hb_keys_nb
= {
134 .notifier_call
= hb_keys_notifier
,
137 static void __init
highbank_init(void)
139 struct device_node
*np
;
141 /* Map system registers */
142 np
= of_find_compatible_node(NULL
, NULL
, "calxeda,hb-sregs");
143 sregs_base
= of_iomap(np
, 0);
144 WARN_ON(!sregs_base
);
146 pm_power_off
= highbank_power_off
;
149 bus_register_notifier(&platform_bus_type
, &highbank_platform_nb
);
150 bus_register_notifier(&amba_bustype
, &highbank_amba_nb
);
152 pl320_ipc_register_notifier(&hb_keys_nb
);
154 if (psci_ops
.cpu_suspend
)
155 platform_device_register(&highbank_cpuidle_device
);
158 static const char *const highbank_match
[] __initconst
= {
164 DT_MACHINE_START(HIGHBANK
, "Highbank")
165 #if defined(CONFIG_ZONE_DMA) && defined(CONFIG_ARM_LPAE)
166 .dma_zone_size
= (4ULL * SZ_1G
),
170 .l2c_write_sec
= highbank_l2c310_write_sec
,
171 .init_irq
= highbank_init_irq
,
172 .init_machine
= highbank_init
,
173 .dt_compat
= highbank_match
,
174 .restart
= highbank_restart
,