xref: /openbmc/linux/arch/arm/mach-ux500/cpu-db8500.c (revision 0d01ab3a)
1cb165c52SRabin Vincent /*
2c15def1cSLinus Walleij  * Copyright (C) 2008-2009 ST-Ericsson SA
3cb165c52SRabin Vincent  *
4cb165c52SRabin Vincent  * Author: Srinidhi KASAGAR <srinidhi.kasagar@stericsson.com>
5cb165c52SRabin Vincent  *
6cb165c52SRabin Vincent  * This program is free software; you can redistribute it and/or modify
7cb165c52SRabin Vincent  * it under the terms of the GNU General Public License version 2, as
8cb165c52SRabin Vincent  * published by the Free Software Foundation.
9cb165c52SRabin Vincent  *
10cb165c52SRabin Vincent  */
11cb165c52SRabin Vincent #include <linux/types.h>
12cb165c52SRabin Vincent #include <linux/init.h>
13cb165c52SRabin Vincent #include <linux/device.h>
14cb165c52SRabin Vincent #include <linux/amba/bus.h>
15aa90eb9dSRabin Vincent #include <linux/interrupt.h>
16cb165c52SRabin Vincent #include <linux/irq.h>
17cb165c52SRabin Vincent #include <linux/platform_device.h>
18cb165c52SRabin Vincent #include <linux/io.h>
193a8e39c9SLee Jones #include <linux/mfd/abx500/ab8500.h>
20661c6af0SLee Jones #include <linux/mfd/dbx500-prcmu.h>
21fa86a764SLee Jones #include <linux/of.h>
22fa86a764SLee Jones #include <linux/of_platform.h>
23fa86a764SLee Jones #include <linux/regulator/machine.h>
244040d10aSLinus Walleij #include <linux/random.h>
25cb165c52SRabin Vincent 
265caecb44SAxel Lin #include <asm/pmu.h>
27cb165c52SRabin Vincent #include <asm/mach/map.h>
28b8edf848SLinus Torvalds 
29e657bcf6SArnd Bergmann #include "setup.h"
30cb165c52SRabin Vincent 
316f6d6433SLee Jones #include "board-mop500-regulators.h"
32fa86a764SLee Jones #include "board-mop500.h"
336f6d6433SLee Jones #include "db8500-regs.h"
347a4f2609SLinus Walleij #include "id.h"
35fbf1eadfSRabin Vincent 
360d01ab3aSSachin Kamat static struct ab8500_platform_data ab8500_platdata = {
376f6d6433SLee Jones 	.regulator	= &ab8500_regulator_plat_data,
386f6d6433SLee Jones };
396f6d6433SLee Jones 
400d01ab3aSSachin Kamat static struct prcmu_pdata db8500_prcmu_pdata = {
416f6d6433SLee Jones 	.ab_platdata	= &ab8500_platdata,
426f6d6433SLee Jones 	.version_offset	= DB8500_PRCMU_FW_VERSION_OFFSET,
436f6d6433SLee Jones 	.legacy_offset	= DB8500_PRCMU_LEGACY_OFFSET,
446f6d6433SLee Jones };
456f6d6433SLee Jones 
46cb165c52SRabin Vincent /* minimum static i/o mapping required to boot U8500 platforms */
47abf12d71SRabin Vincent static struct map_desc u8500_uart_io_desc[] __initdata = {
4892389ca8SRabin Vincent 	__IO_DEV_DESC(U8500_UART0_BASE, SZ_4K),
4992389ca8SRabin Vincent 	__IO_DEV_DESC(U8500_UART2_BASE, SZ_4K),
50abf12d71SRabin Vincent };
51bc71c096SLinus Walleij /*  U8500 and U9540 common io_desc */
52bc71c096SLinus Walleij static struct map_desc u8500_common_io_desc[] __initdata = {
53215e83d9SLinus Walleij 	/* SCU base also covers GIC CPU BASE and TWD with its 4K page */
54215e83d9SLinus Walleij 	__IO_DEV_DESC(U8500_SCU_BASE, SZ_4K),
5592389ca8SRabin Vincent 	__IO_DEV_DESC(U8500_GIC_DIST_BASE, SZ_4K),
5692389ca8SRabin Vincent 	__IO_DEV_DESC(U8500_L2CC_BASE, SZ_4K),
5792389ca8SRabin Vincent 	__IO_DEV_DESC(U8500_MTU0_BASE, SZ_4K),
5892389ca8SRabin Vincent 	__IO_DEV_DESC(U8500_BACKUPRAM0_BASE, SZ_8K),
5992389ca8SRabin Vincent 
6092389ca8SRabin Vincent 	__IO_DEV_DESC(U8500_CLKRST1_BASE, SZ_4K),
6192389ca8SRabin Vincent 	__IO_DEV_DESC(U8500_CLKRST2_BASE, SZ_4K),
6292389ca8SRabin Vincent 	__IO_DEV_DESC(U8500_CLKRST3_BASE, SZ_4K),
6392389ca8SRabin Vincent 	__IO_DEV_DESC(U8500_CLKRST5_BASE, SZ_4K),
6492389ca8SRabin Vincent 	__IO_DEV_DESC(U8500_CLKRST6_BASE, SZ_4K),
6592389ca8SRabin Vincent 
66cb165c52SRabin Vincent 	__IO_DEV_DESC(U8500_GPIO0_BASE, SZ_4K),
67cb165c52SRabin Vincent 	__IO_DEV_DESC(U8500_GPIO1_BASE, SZ_4K),
68cb165c52SRabin Vincent 	__IO_DEV_DESC(U8500_GPIO2_BASE, SZ_4K),
69cb165c52SRabin Vincent 	__IO_DEV_DESC(U8500_GPIO3_BASE, SZ_4K),
70ee9581d7SMichel Jaouen };
71ee9581d7SMichel Jaouen 
72ee9581d7SMichel Jaouen /* U8500 IO map specific description */
73ee9581d7SMichel Jaouen static struct map_desc u8500_io_desc[] __initdata = {
74ee9581d7SMichel Jaouen 	__IO_DEV_DESC(U8500_PRCMU_BASE, SZ_4K),
75fcbd458eSMattias Wallin 	__IO_DEV_DESC(U8500_PRCMU_TCDM_BASE, SZ_4K),
76ee9581d7SMichel Jaouen 
77ee9581d7SMichel Jaouen };
78ee9581d7SMichel Jaouen 
79ee9581d7SMichel Jaouen /* U9540 IO map specific description */
80ee9581d7SMichel Jaouen static struct map_desc u9540_io_desc[] __initdata = {
81ee9581d7SMichel Jaouen 	__IO_DEV_DESC(U8500_PRCMU_BASE, SZ_4K + SZ_8K),
82ee9581d7SMichel Jaouen 	__IO_DEV_DESC(U8500_PRCMU_TCDM_BASE, SZ_4K + SZ_8K),
83cb165c52SRabin Vincent };
84cb165c52SRabin Vincent 
850d01ab3aSSachin Kamat static void __init u8500_map_io(void)
86cb165c52SRabin Vincent {
87abf12d71SRabin Vincent 	/*
88abf12d71SRabin Vincent 	 * Map the UARTs early so that the DEBUG_LL stuff continues to work.
89abf12d71SRabin Vincent 	 */
90abf12d71SRabin Vincent 	iotable_init(u8500_uart_io_desc, ARRAY_SIZE(u8500_uart_io_desc));
91abf12d71SRabin Vincent 
92abf12d71SRabin Vincent 	ux500_map_io();
93abf12d71SRabin Vincent 
94bc71c096SLinus Walleij 	iotable_init(u8500_common_io_desc, ARRAY_SIZE(u8500_common_io_desc));
95cb165c52SRabin Vincent 
96e1bbb55dSLinus Walleij 	if (cpu_is_ux540_family())
97ee9581d7SMichel Jaouen 		iotable_init(u9540_io_desc, ARRAY_SIZE(u9540_io_desc));
98ee9581d7SMichel Jaouen 	else
99cb165c52SRabin Vincent 		iotable_init(u8500_io_desc, ARRAY_SIZE(u8500_io_desc));
100cb165c52SRabin Vincent }
101cb165c52SRabin Vincent 
102aa90eb9dSRabin Vincent /*
103aa90eb9dSRabin Vincent  * The PMU IRQ lines of two cores are wired together into a single interrupt.
104aa90eb9dSRabin Vincent  * Bounce the interrupt to the other core if it's not ours.
105aa90eb9dSRabin Vincent  */
106aa90eb9dSRabin Vincent static irqreturn_t db8500_pmu_handler(int irq, void *dev, irq_handler_t handler)
107aa90eb9dSRabin Vincent {
108aa90eb9dSRabin Vincent 	irqreturn_t ret = handler(irq, dev);
109aa90eb9dSRabin Vincent 	int other = !smp_processor_id();
110aa90eb9dSRabin Vincent 
111aa90eb9dSRabin Vincent 	if (ret == IRQ_NONE && cpu_online(other))
112aa90eb9dSRabin Vincent 		irq_set_affinity(irq, cpumask_of(other));
113aa90eb9dSRabin Vincent 
114aa90eb9dSRabin Vincent 	/*
115aa90eb9dSRabin Vincent 	 * We should be able to get away with the amount of IRQ_NONEs we give,
116aa90eb9dSRabin Vincent 	 * while still having the spurious IRQ detection code kick in if the
117aa90eb9dSRabin Vincent 	 * interrupt really starts hitting spuriously.
118aa90eb9dSRabin Vincent 	 */
119aa90eb9dSRabin Vincent 	return ret;
120aa90eb9dSRabin Vincent }
121aa90eb9dSRabin Vincent 
1220d01ab3aSSachin Kamat static struct arm_pmu_platdata db8500_pmu_platdata = {
123aa90eb9dSRabin Vincent 	.handle_irq		= db8500_pmu_handler,
124aa90eb9dSRabin Vincent };
125aa90eb9dSRabin Vincent 
126eda413c2SLee Jones static const char *db8500_read_soc_id(void)
127eda413c2SLee Jones {
128eda413c2SLee Jones 	void __iomem *uid = __io_address(U8500_BB_UID_BASE);
129eda413c2SLee Jones 
1304040d10aSLinus Walleij 	/* Throw these device-specific numbers into the entropy pool */
1314040d10aSLinus Walleij 	add_device_randomness(uid, 0x14);
132eda413c2SLee Jones 	return kasprintf(GFP_KERNEL, "%08x%08x%08x%08x%08x",
13333c8abceSFabio Baltieri 			 readl((u32 *)uid+0),
134eda413c2SLee Jones 			 readl((u32 *)uid+1), readl((u32 *)uid+2),
135eda413c2SLee Jones 			 readl((u32 *)uid+3), readl((u32 *)uid+4));
136eda413c2SLee Jones }
137eda413c2SLee Jones 
138eda413c2SLee Jones static struct device * __init db8500_soc_device_init(void)
139eda413c2SLee Jones {
140eda413c2SLee Jones 	const char *soc_id = db8500_read_soc_id();
141eda413c2SLee Jones 
142eda413c2SLee Jones 	return ux500_soc_device_init(soc_id);
143eda413c2SLee Jones }
144eda413c2SLee Jones 
145fa86a764SLee Jones static struct of_dev_auxdata u8500_auxdata_lookup[] __initdata = {
146fa86a764SLee Jones 	/* Requires call-back bindings. */
147fa86a764SLee Jones 	OF_DEV_AUXDATA("arm,cortex-a9-pmu", 0, "arm-pmu", &db8500_pmu_platdata),
148cece5c40SLee Jones 	/* Requires DMA bindings. */
149acab2f6fSLee Jones 	OF_DEV_AUXDATA("stericsson,ux500-msp-i2s", 0x80123000,
150acab2f6fSLee Jones 		       "ux500-msp-i2s.0", &msp0_platform_data),
151acab2f6fSLee Jones 	OF_DEV_AUXDATA("stericsson,ux500-msp-i2s", 0x80124000,
152acab2f6fSLee Jones 		       "ux500-msp-i2s.1", &msp1_platform_data),
153acab2f6fSLee Jones 	OF_DEV_AUXDATA("stericsson,ux500-msp-i2s", 0x80117000,
154acab2f6fSLee Jones 		       "ux500-msp-i2s.2", &msp2_platform_data),
155acab2f6fSLee Jones 	OF_DEV_AUXDATA("stericsson,ux500-msp-i2s", 0x80125000,
156acab2f6fSLee Jones 		       "ux500-msp-i2s.3", &msp3_platform_data),
1571b1d2e83SLee Jones 	/* Requires non-DT:able platform data. */
15805ec260eSLinus Walleij 	OF_DEV_AUXDATA("stericsson,db8500-prcmu", 0x80157000, "db8500-prcmu",
15905ec260eSLinus Walleij 			&db8500_prcmu_pdata),
160946cc7ddSLee Jones 	OF_DEV_AUXDATA("stericsson,ux500-cryp", 0xa03cb000, "cryp1", NULL),
161f016d440SLee Jones 	OF_DEV_AUXDATA("stericsson,ux500-hash", 0xa03c2000, "hash1", NULL),
162ef95f7ffSFabio Baltieri 	OF_DEV_AUXDATA("stericsson,snd-soc-mop500", 0, "snd-soc-mop500.0",
163ef95f7ffSFabio Baltieri 			NULL),
164fa86a764SLee Jones 	{},
165fa86a764SLee Jones };
166fa86a764SLee Jones 
167c21a43b7SLee Jones static struct of_dev_auxdata u8540_auxdata_lookup[] __initdata = {
168c21a43b7SLee Jones 	OF_DEV_AUXDATA("stericsson,db8500-prcmu", 0x80157000, "db8500-prcmu",
169c21a43b7SLee Jones 			&db8500_prcmu_pdata),
170c21a43b7SLee Jones 	{},
171c21a43b7SLee Jones };
172c21a43b7SLee Jones 
173fa86a764SLee Jones static const struct of_device_id u8500_local_bus_nodes[] = {
174fa86a764SLee Jones 	/* only create devices below soc node */
175fa86a764SLee Jones 	{ .compatible = "stericsson,db8500", },
176fa86a764SLee Jones 	{ .compatible = "stericsson,db8500-prcmu", },
177fa86a764SLee Jones 	{ .compatible = "simple-bus"},
178fa86a764SLee Jones 	{ },
179fa86a764SLee Jones };
180fa86a764SLee Jones 
181fa86a764SLee Jones static void __init u8500_init_machine(void)
182fa86a764SLee Jones {
1831e74043aSLee Jones 	struct device *parent = db8500_soc_device_init();
184fa86a764SLee Jones 
185c21a43b7SLee Jones 	/* automatically probe child nodes of dbx5x0 devices */
186c21a43b7SLee Jones 	if (of_machine_is_compatible("st-ericsson,u8540"))
187c21a43b7SLee Jones 		of_platform_populate(NULL, u8500_local_bus_nodes,
188c21a43b7SLee Jones 				     u8540_auxdata_lookup, parent);
189c21a43b7SLee Jones 	else
190c21a43b7SLee Jones 		of_platform_populate(NULL, u8500_local_bus_nodes,
191c21a43b7SLee Jones 				     u8500_auxdata_lookup, parent);
192fa86a764SLee Jones }
193fa86a764SLee Jones 
19479b40753SLee Jones static const char * stericsson_dt_platform_compat[] = {
19579b40753SLee Jones 	"st-ericsson,u8500",
19679b40753SLee Jones 	"st-ericsson,u8540",
19779b40753SLee Jones 	"st-ericsson,u9500",
19879b40753SLee Jones 	"st-ericsson,u9540",
199fa86a764SLee Jones 	NULL,
200fa86a764SLee Jones };
201fa86a764SLee Jones 
20246c1bf81SLee Jones DT_MACHINE_START(U8500_DT, "ST-Ericsson Ux5x0 platform (Device Tree Support)")
203f44c5fd1SLee Jones 	.smp            = smp_ops(ux500_smp_ops),
204fa86a764SLee Jones 	.map_io		= u8500_map_io,
205fa86a764SLee Jones 	.init_irq	= ux500_init_irq,
206fa86a764SLee Jones 	/* we re-use nomadik timer here */
2076bb27d73SStephen Warren 	.init_time	= ux500_timer_init,
208fa86a764SLee Jones 	.init_machine	= u8500_init_machine,
20974a1c9abSLee Jones 	.init_late	= NULL,
21079b40753SLee Jones 	.dt_compat      = stericsson_dt_platform_compat,
211bd93ec50SFabio Baltieri 	.restart        = ux500_restart,
212fa86a764SLee Jones MACHINE_END
213