Linux Audio

Check our new training course

Loading...
v6.13.7
  1// SPDX-License-Identifier: GPL-2.0-only
  2/*
  3 * Copyright (C) 2008-2009 ST-Ericsson SA
  4 *
  5 * Author: Srinidhi KASAGAR <srinidhi.kasagar@stericsson.com>
 
 
 
 
 
  6 */
  7#include <linux/types.h>
  8#include <linux/init.h>
  9#include <linux/device.h>
 10#include <linux/amba/bus.h>
 11#include <linux/interrupt.h>
 12#include <linux/irq.h>
 13#include <linux/irqchip.h>
 14#include <linux/irqchip/arm-gic.h>
 15#include <linux/mfd/dbx500-prcmu.h>
 16#include <linux/platform_data/arm-ux500-pm.h>
 17#include <linux/platform_device.h>
 18#include <linux/io.h>
 19#include <linux/of.h>
 20#include <linux/of_address.h>
 21#include <linux/of_platform.h>
 22#include <linux/regulator/machine.h>
 23
 24#include <asm/outercache.h>
 25#include <asm/hardware/cache-l2x0.h>
 26#include <asm/mach/map.h>
 27#include <asm/mach/arch.h>
 
 
 
 
 
 
 
 
 
 
 
 
 
 28
 29static int __init ux500_l2x0_unlock(void)
 30{
 31	int i;
 32	struct device_node *np;
 33	void __iomem *l2x0_base;
 34
 35	np = of_find_compatible_node(NULL, NULL, "arm,pl310-cache");
 36	l2x0_base = of_iomap(np, 0);
 37	of_node_put(np);
 38	if (!l2x0_base)
 39		return -ENODEV;
 
 
 
 
 
 
 
 
 
 
 40
 41	/*
 42	 * Unlock Data and Instruction Lock if locked. Ux500 U-Boot versions
 43	 * apparently locks both caches before jumping to the kernel. The
 44	 * l2x0 core will not touch the unlock registers if the l2x0 is
 45	 * already enabled, so we do it right here instead. The PL310 has
 46	 * 8 sets of registers, one per possible CPU.
 47	 */
 48	for (i = 0; i < 8; i++) {
 49		writel_relaxed(0x0, l2x0_base + L2X0_LOCKDOWN_WAY_D_BASE +
 50			       i * L2X0_LOCKDOWN_STRIDE);
 51		writel_relaxed(0x0, l2x0_base + L2X0_LOCKDOWN_WAY_I_BASE +
 52			       i * L2X0_LOCKDOWN_STRIDE);
 53	}
 54	iounmap(l2x0_base);
 55	return 0;
 56}
 57
 58static void ux500_l2c310_write_sec(unsigned long val, unsigned reg)
 
 
 
 
 59{
 60	/*
 61	 * We can't write to secure registers as we are in non-secure
 62	 * mode, until we have some SMI service available.
 63	 */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 64}
 65
 
 
 
 
 
 
 
 
 66/*
 67 * FIXME: Should we set up the GPIO domain here?
 68 *
 69 * The problem is that we cannot put the interrupt resources into the platform
 70 * device until the irqdomain has been added. Right now, we set the GIC interrupt
 71 * domain from init_irq(), then load the gpio driver from
 72 * core_initcall(nmk_gpio_init) and add the platform devices from
 73 * arch_initcall(customize_machine).
 74 *
 75 * This feels fragile because it depends on the gpio device getting probed
 76 * _before_ any device uses the gpio interrupts.
 77*/
 78static void __init ux500_init_irq(void)
 79{
 80	struct device_node *np;
 81	struct resource r;
 82
 83	irqchip_init();
 84	prcmu_early_init();
 85	np = of_find_compatible_node(NULL, NULL, "stericsson,db8500-prcmu");
 86	of_address_to_resource(np, 0, &r);
 87	of_node_put(np);
 88	if (!r.start) {
 89		pr_err("could not find PRCMU base resource\n");
 90		return;
 91	}
 92	ux500_pm_init(r.start, r.end-r.start);
 93
 94	/* Unlock before init */
 95	ux500_l2x0_unlock();
 96	outer_cache.write_sec = ux500_l2c310_write_sec;
 97}
 98
 99static void ux500_restart(enum reboot_mode mode, const char *cmd)
100{
101	local_irq_disable();
102	local_fiq_disable();
103
104	prcmu_system_reset(0);
105}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
106
107static const struct of_device_id u8500_local_bus_nodes[] = {
108	/* only create devices below soc node */
109	{ .compatible = "stericsson,db8500", },
110	{ .compatible = "simple-bus"},
111	{ },
 
 
 
 
 
112};
113
114static void __init u8500_init_machine(void)
115{
116	of_platform_populate(NULL, u8500_local_bus_nodes,
117			     NULL, NULL);
 
 
 
 
 
 
 
118}
119
120static const char * stericsson_dt_platform_compat[] = {
121	"st-ericsson,u8500",
122	"st-ericsson,u9500",
123	NULL,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
124};
125
126DT_MACHINE_START(U8500_DT, "ST-Ericsson Ux5x0 platform (Device Tree Support)")
127	.l2c_aux_val    = 0,
128	.l2c_aux_mask	= ~0,
129	.init_irq	= ux500_init_irq,
130	.init_machine	= u8500_init_machine,
131	.dt_compat      = stericsson_dt_platform_compat,
132	.restart        = ux500_restart,
133MACHINE_END
 
 
 
 
 
 
 
 
 
v3.1
 
  1/*
  2 * Copyright (C) 2008-2009 ST-Ericsson
  3 *
  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>
 15#include <linux/interrupt.h>
 16#include <linux/irq.h>
 17#include <linux/gpio.h>
 
 
 
 18#include <linux/platform_device.h>
 19#include <linux/io.h>
 
 
 
 
 20
 
 
 21#include <asm/mach/map.h>
 22#include <asm/pmu.h>
 23#include <mach/hardware.h>
 24#include <mach/setup.h>
 25#include <mach/devices.h>
 26#include <mach/usb.h>
 27
 28#include "devices-db8500.h"
 29#include "ste-dma40-db8500.h"
 30
 31/* minimum static i/o mapping required to boot U8500 platforms */
 32static struct map_desc u8500_uart_io_desc[] __initdata = {
 33	__IO_DEV_DESC(U8500_UART0_BASE, SZ_4K),
 34	__IO_DEV_DESC(U8500_UART2_BASE, SZ_4K),
 35};
 36
 37static struct map_desc u8500_io_desc[] __initdata = {
 38	__IO_DEV_DESC(U8500_GIC_CPU_BASE, SZ_4K),
 39	__IO_DEV_DESC(U8500_GIC_DIST_BASE, SZ_4K),
 40	__IO_DEV_DESC(U8500_L2CC_BASE, SZ_4K),
 41	__IO_DEV_DESC(U8500_TWD_BASE, SZ_4K),
 42	__IO_DEV_DESC(U8500_MTU0_BASE, SZ_4K),
 43	__IO_DEV_DESC(U8500_SCU_BASE, SZ_4K),
 44	__IO_DEV_DESC(U8500_BACKUPRAM0_BASE, SZ_8K),
 45
 46	__IO_DEV_DESC(U8500_CLKRST1_BASE, SZ_4K),
 47	__IO_DEV_DESC(U8500_CLKRST2_BASE, SZ_4K),
 48	__IO_DEV_DESC(U8500_CLKRST3_BASE, SZ_4K),
 49	__IO_DEV_DESC(U8500_CLKRST5_BASE, SZ_4K),
 50	__IO_DEV_DESC(U8500_CLKRST6_BASE, SZ_4K),
 51
 52	__IO_DEV_DESC(U8500_PRCMU_BASE, SZ_4K),
 53	__IO_DEV_DESC(U8500_GPIO0_BASE, SZ_4K),
 54	__IO_DEV_DESC(U8500_GPIO1_BASE, SZ_4K),
 55	__IO_DEV_DESC(U8500_GPIO2_BASE, SZ_4K),
 56	__IO_DEV_DESC(U8500_GPIO3_BASE, SZ_4K),
 57};
 58
 59static struct map_desc u8500_ed_io_desc[] __initdata = {
 60	__IO_DEV_DESC(U8500_MTU0_BASE_ED, SZ_4K),
 61	__IO_DEV_DESC(U8500_CLKRST7_BASE_ED, SZ_8K),
 62};
 63
 64static struct map_desc u8500_v1_io_desc[] __initdata = {
 65	__IO_DEV_DESC(U8500_MTU0_BASE, SZ_4K),
 66	__IO_DEV_DESC(U8500_PRCMU_TCDM_BASE_V1, SZ_4K),
 67};
 
 
 
 
 
 
 
 68
 69static struct map_desc u8500_v2_io_desc[] __initdata = {
 70	__IO_DEV_DESC(U8500_PRCMU_TCDM_BASE, SZ_4K),
 71};
 72
 73void __init u8500_map_io(void)
 74{
 75	/*
 76	 * Map the UARTs early so that the DEBUG_LL stuff continues to work.
 
 77	 */
 78	iotable_init(u8500_uart_io_desc, ARRAY_SIZE(u8500_uart_io_desc));
 79
 80	ux500_map_io();
 81
 82	iotable_init(u8500_io_desc, ARRAY_SIZE(u8500_io_desc));
 83
 84	if (cpu_is_u8500ed())
 85		iotable_init(u8500_ed_io_desc, ARRAY_SIZE(u8500_ed_io_desc));
 86	else if (cpu_is_u8500v1())
 87		iotable_init(u8500_v1_io_desc, ARRAY_SIZE(u8500_v1_io_desc));
 88	else if (cpu_is_u8500v2())
 89		iotable_init(u8500_v2_io_desc, ARRAY_SIZE(u8500_v2_io_desc));
 90
 91	_PRCMU_BASE = __io_address(U8500_PRCMU_BASE);
 92}
 93
 94static struct resource db8500_pmu_resources[] = {
 95	[0] = {
 96		.start		= IRQ_DB8500_PMU,
 97		.end		= IRQ_DB8500_PMU,
 98		.flags		= IORESOURCE_IRQ,
 99	},
100};
101
102/*
103 * The PMU IRQ lines of two cores are wired together into a single interrupt.
104 * Bounce the interrupt to the other core if it's not ours.
105 */
106static irqreturn_t db8500_pmu_handler(int irq, void *dev, irq_handler_t handler)
 
 
 
 
 
 
 
 
107{
108	irqreturn_t ret = handler(irq, dev);
109	int other = !smp_processor_id();
110
111	if (ret == IRQ_NONE && cpu_online(other))
112		irq_set_affinity(irq, cpumask_of(other));
113
114	/*
115	 * We should be able to get away with the amount of IRQ_NONEs we give,
116	 * while still having the spurious IRQ detection code kick in if the
117	 * interrupt really starts hitting spuriously.
118	 */
119	return ret;
 
 
 
 
 
120}
121
122static struct arm_pmu_platdata db8500_pmu_platdata = {
123	.handle_irq		= db8500_pmu_handler,
124};
 
125
126static struct platform_device db8500_pmu_device = {
127	.name			= "arm-pmu",
128	.id			= ARM_PMU_DEVICE_CPU,
129	.num_resources		= ARRAY_SIZE(db8500_pmu_resources),
130	.resource		= db8500_pmu_resources,
131	.dev.platform_data	= &db8500_pmu_platdata,
132};
133
134static struct platform_device db8500_prcmu_device = {
135	.name			= "db8500-prcmu",
136};
137
138static struct platform_device *platform_devs[] __initdata = {
139	&u8500_dma40_device,
140	&db8500_pmu_device,
141	&db8500_prcmu_device,
142};
143
144static resource_size_t __initdata db8500_gpio_base[] = {
145	U8500_GPIOBANK0_BASE,
146	U8500_GPIOBANK1_BASE,
147	U8500_GPIOBANK2_BASE,
148	U8500_GPIOBANK3_BASE,
149	U8500_GPIOBANK4_BASE,
150	U8500_GPIOBANK5_BASE,
151	U8500_GPIOBANK6_BASE,
152	U8500_GPIOBANK7_BASE,
153	U8500_GPIOBANK8_BASE,
154};
155
156static void __init db8500_add_gpios(void)
157{
158	struct nmk_gpio_platform_data pdata = {
159		/* No custom data yet */
160	};
161
162	if (cpu_is_u8500v2())
163		pdata.supports_sleepmode = true;
164
165	dbx500_add_gpios(ARRAY_AND_SIZE(db8500_gpio_base),
166			 IRQ_DB8500_GPIO0, &pdata);
167}
168
169static int usb_db8500_rx_dma_cfg[] = {
170	DB8500_DMA_DEV38_USB_OTG_IEP_1_9,
171	DB8500_DMA_DEV37_USB_OTG_IEP_2_10,
172	DB8500_DMA_DEV36_USB_OTG_IEP_3_11,
173	DB8500_DMA_DEV19_USB_OTG_IEP_4_12,
174	DB8500_DMA_DEV18_USB_OTG_IEP_5_13,
175	DB8500_DMA_DEV17_USB_OTG_IEP_6_14,
176	DB8500_DMA_DEV16_USB_OTG_IEP_7_15,
177	DB8500_DMA_DEV39_USB_OTG_IEP_8
178};
179
180static int usb_db8500_tx_dma_cfg[] = {
181	DB8500_DMA_DEV38_USB_OTG_OEP_1_9,
182	DB8500_DMA_DEV37_USB_OTG_OEP_2_10,
183	DB8500_DMA_DEV36_USB_OTG_OEP_3_11,
184	DB8500_DMA_DEV19_USB_OTG_OEP_4_12,
185	DB8500_DMA_DEV18_USB_OTG_OEP_5_13,
186	DB8500_DMA_DEV17_USB_OTG_OEP_6_14,
187	DB8500_DMA_DEV16_USB_OTG_OEP_7_15,
188	DB8500_DMA_DEV39_USB_OTG_OEP_8
189};
190
191/*
192 * This function is called from the board init
193 */
194void __init u8500_init_devices(void)
195{
196	if (cpu_is_u8500ed())
197		dma40_u8500ed_fixup();
198
199	db8500_add_rtc();
200	db8500_add_gpios();
201	db8500_add_usb(usb_db8500_rx_dma_cfg, usb_db8500_tx_dma_cfg);
202
203	platform_device_register_simple("cpufreq-u8500", -1, NULL, 0);
204	platform_add_devices(platform_devs, ARRAY_SIZE(platform_devs));
205
206	return ;
207}