blob: 389ecf6faa00b383ce2d9ec13a11c223960ca89f [file] [log] [blame]
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +01001/*
Linus Walleijc15def12011-12-15 13:38:40 +01002 * Copyright (C) 2008-2009 ST-Ericsson SA
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +01003 *
4 * Author: Srinidhi KASAGAR <srinidhi.kasagar@stericsson.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2, as
8 * published by the Free Software Foundation.
9 *
10 */
11#include <linux/types.h>
12#include <linux/init.h>
13#include <linux/device.h>
14#include <linux/amba/bus.h>
Rabin Vincentaa90eb92011-02-08 09:24:37 +053015#include <linux/interrupt.h>
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +010016#include <linux/irq.h>
Arnd Bergmanna16729e2016-06-20 23:40:55 +020017#include <linux/irqchip.h>
18#include <linux/irqchip/arm-gic.h>
19#include <linux/mfd/dbx500-prcmu.h>
20#include <linux/platform_data/arm-ux500-pm.h>
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +010021#include <linux/platform_device.h>
Rabin Vincentcc2c1332010-03-01 05:03:31 +010022#include <linux/io.h>
Lee Jonesfa86a762012-09-27 10:17:36 +010023#include <linux/of.h>
Arnd Bergmanna16729e2016-06-20 23:40:55 +020024#include <linux/of_address.h>
Lee Jonesfa86a762012-09-27 10:17:36 +010025#include <linux/of_platform.h>
26#include <linux/regulator/machine.h>
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +010027
Arnd Bergmanna16729e2016-06-20 23:40:55 +020028#include <asm/outercache.h>
29#include <asm/hardware/cache-l2x0.h>
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +010030#include <asm/mach/map.h>
Arnd Bergmanna16729e2016-06-20 23:40:55 +020031#include <asm/mach/arch.h>
Linus Torvaldsb8edf842012-12-13 10:57:16 -080032
Lee Jones6f6d6432013-11-06 10:05:43 +000033#include "db8500-regs.h"
Ulf Hansson72ecd792017-10-06 06:20:25 +020034#include "pm_domains.h"
Srinidhi Kasagaraa44ef42009-11-28 08:17:18 +010035
Arnd Bergmanna16729e2016-06-20 23:40:55 +020036static int __init ux500_l2x0_unlock(void)
37{
38 int i;
39 struct device_node *np;
40 void __iomem *l2x0_base;
41
42 np = of_find_compatible_node(NULL, NULL, "arm,pl310-cache");
43 l2x0_base = of_iomap(np, 0);
44 of_node_put(np);
45 if (!l2x0_base)
46 return -ENODEV;
47
48 /*
49 * Unlock Data and Instruction Lock if locked. Ux500 U-Boot versions
50 * apparently locks both caches before jumping to the kernel. The
51 * l2x0 core will not touch the unlock registers if the l2x0 is
52 * already enabled, so we do it right here instead. The PL310 has
53 * 8 sets of registers, one per possible CPU.
54 */
55 for (i = 0; i < 8; i++) {
56 writel_relaxed(0x0, l2x0_base + L2X0_LOCKDOWN_WAY_D_BASE +
57 i * L2X0_LOCKDOWN_STRIDE);
58 writel_relaxed(0x0, l2x0_base + L2X0_LOCKDOWN_WAY_I_BASE +
59 i * L2X0_LOCKDOWN_STRIDE);
60 }
61 iounmap(l2x0_base);
62 return 0;
63}
64
65static void ux500_l2c310_write_sec(unsigned long val, unsigned reg)
66{
67 /*
68 * We can't write to secure registers as we are in non-secure
69 * mode, until we have some SMI service available.
70 */
71}
72
73/*
74 * FIXME: Should we set up the GPIO domain here?
75 *
76 * The problem is that we cannot put the interrupt resources into the platform
77 * device until the irqdomain has been added. Right now, we set the GIC interrupt
78 * domain from init_irq(), then load the gpio driver from
79 * core_initcall(nmk_gpio_init) and add the platform devices from
80 * arch_initcall(customize_machine).
81 *
82 * This feels fragile because it depends on the gpio device getting probed
83 * _before_ any device uses the gpio interrupts.
84*/
85static void __init ux500_init_irq(void)
86{
87 struct device_node *np;
88 struct resource r;
89
90 irqchip_init();
91 np = of_find_compatible_node(NULL, NULL, "stericsson,db8500-prcmu");
92 of_address_to_resource(np, 0, &r);
93 of_node_put(np);
94 if (!r.start) {
95 pr_err("could not find PRCMU base resource\n");
96 return;
97 }
98 prcmu_early_init(r.start, r.end-r.start);
99 ux500_pm_init(r.start, r.end-r.start);
100
101 /* Unlock before init */
102 ux500_l2x0_unlock();
103 outer_cache.write_sec = ux500_l2c310_write_sec;
104}
105
106static void ux500_restart(enum reboot_mode mode, const char *cmd)
107{
108 local_irq_disable();
109 local_fiq_disable();
110
111 prcmu_system_reset(0);
112}
113
Lee Jonesfa86a762012-09-27 10:17:36 +0100114static const struct of_device_id u8500_local_bus_nodes[] = {
115 /* only create devices below soc node */
116 { .compatible = "stericsson,db8500", },
117 { .compatible = "stericsson,db8500-prcmu", },
118 { .compatible = "simple-bus"},
119 { },
120};
121
122static void __init u8500_init_machine(void)
123{
Ulf Hansson72ecd792017-10-06 06:20:25 +0200124 /* Initialize ux500 power domains */
125 ux500_pm_domains_init();
126
Linus Walleij40a6c002018-03-07 14:29:23 +0100127 of_platform_populate(NULL, u8500_local_bus_nodes,
128 NULL, NULL);
Lee Jonesfa86a762012-09-27 10:17:36 +0100129}
130
Lee Jones79b407532012-10-15 10:07:55 +0100131static const char * stericsson_dt_platform_compat[] = {
132 "st-ericsson,u8500",
Lee Jones79b407532012-10-15 10:07:55 +0100133 "st-ericsson,u9500",
Lee Jonesfa86a762012-09-27 10:17:36 +0100134 NULL,
135};
136
Lee Jones46c1bf82012-10-15 08:55:17 +0100137DT_MACHINE_START(U8500_DT, "ST-Ericsson Ux5x0 platform (Device Tree Support)")
Arnd Bergmann1e6cbc02016-06-20 22:27:23 +0200138 .l2c_aux_val = 0,
139 .l2c_aux_mask = ~0,
Lee Jonesfa86a762012-09-27 10:17:36 +0100140 .init_irq = ux500_init_irq,
Lee Jonesfa86a762012-09-27 10:17:36 +0100141 .init_machine = u8500_init_machine,
Lee Jones79b407532012-10-15 10:07:55 +0100142 .dt_compat = stericsson_dt_platform_compat,
Fabio Baltieribd93ec52013-06-14 15:22:40 +0200143 .restart = ux500_restart,
Lee Jonesfa86a762012-09-27 10:17:36 +0100144MACHINE_END