2 * Copyright (C) ST-Ericsson SA 2010
4 * Author: Rabin Vincent <rabin.vincent@stericsson.com> for ST-Ericsson
5 * License terms: GNU General Public License (GPL) version 2
8 #include <linux/platform_device.h>
9 #include <linux/amba/bus.h>
11 #include <linux/irq.h>
13 #include <asm/mach/map.h>
16 #include <plat/gpio.h>
18 #include <mach/hardware.h>
19 #include <mach/devices.h>
20 #include <mach/setup.h>
21 #include <mach/irqs.h>
24 #include "devices-db5500.h"
25 #include "ste-dma40-db5500.h"
27 static struct map_desc u5500_uart_io_desc
[] __initdata
= {
28 __IO_DEV_DESC(U5500_UART0_BASE
, SZ_4K
),
29 __IO_DEV_DESC(U5500_UART2_BASE
, SZ_4K
),
32 static struct map_desc u5500_io_desc
[] __initdata
= {
33 __IO_DEV_DESC(U5500_GIC_CPU_BASE
, SZ_4K
),
34 __IO_DEV_DESC(U5500_GIC_DIST_BASE
, SZ_4K
),
35 __IO_DEV_DESC(U5500_L2CC_BASE
, SZ_4K
),
36 __IO_DEV_DESC(U5500_TWD_BASE
, SZ_4K
),
37 __IO_DEV_DESC(U5500_MTU0_BASE
, SZ_4K
),
38 __IO_DEV_DESC(U5500_SCU_BASE
, SZ_4K
),
39 __IO_DEV_DESC(U5500_BACKUPRAM0_BASE
, SZ_8K
),
41 __IO_DEV_DESC(U5500_GPIO0_BASE
, SZ_4K
),
42 __IO_DEV_DESC(U5500_GPIO1_BASE
, SZ_4K
),
43 __IO_DEV_DESC(U5500_GPIO2_BASE
, SZ_4K
),
44 __IO_DEV_DESC(U5500_GPIO3_BASE
, SZ_4K
),
45 __IO_DEV_DESC(U5500_GPIO4_BASE
, SZ_4K
),
46 __IO_DEV_DESC(U5500_PRCMU_BASE
, SZ_4K
),
49 static struct resource db5500_pmu_resources
[] = {
51 .start
= IRQ_DB5500_PMU0
,
52 .end
= IRQ_DB5500_PMU0
,
53 .flags
= IORESOURCE_IRQ
,
56 .start
= IRQ_DB5500_PMU1
,
57 .end
= IRQ_DB5500_PMU1
,
58 .flags
= IORESOURCE_IRQ
,
62 static struct platform_device db5500_pmu_device
= {
64 .id
= ARM_PMU_DEVICE_CPU
,
65 .num_resources
= ARRAY_SIZE(db5500_pmu_resources
),
66 .resource
= db5500_pmu_resources
,
69 static struct resource mbox0_resources
[] = {
72 .start
= U5500_MBOX0_PEER_START
,
73 .end
= U5500_MBOX0_PEER_END
,
74 .flags
= IORESOURCE_MEM
,
78 .start
= U5500_MBOX0_LOCAL_START
,
79 .end
= U5500_MBOX0_LOCAL_END
,
80 .flags
= IORESOURCE_MEM
,
84 .start
= MBOX_PAIR0_VIRT_IRQ
,
85 .end
= MBOX_PAIR0_VIRT_IRQ
,
86 .flags
= IORESOURCE_IRQ
,
90 static struct resource mbox1_resources
[] = {
93 .start
= U5500_MBOX1_PEER_START
,
94 .end
= U5500_MBOX1_PEER_END
,
95 .flags
= IORESOURCE_MEM
,
99 .start
= U5500_MBOX1_LOCAL_START
,
100 .end
= U5500_MBOX1_LOCAL_END
,
101 .flags
= IORESOURCE_MEM
,
105 .start
= MBOX_PAIR1_VIRT_IRQ
,
106 .end
= MBOX_PAIR1_VIRT_IRQ
,
107 .flags
= IORESOURCE_IRQ
,
111 static struct resource mbox2_resources
[] = {
114 .start
= U5500_MBOX2_PEER_START
,
115 .end
= U5500_MBOX2_PEER_END
,
116 .flags
= IORESOURCE_MEM
,
119 .name
= "mbox_local",
120 .start
= U5500_MBOX2_LOCAL_START
,
121 .end
= U5500_MBOX2_LOCAL_END
,
122 .flags
= IORESOURCE_MEM
,
126 .start
= MBOX_PAIR2_VIRT_IRQ
,
127 .end
= MBOX_PAIR2_VIRT_IRQ
,
128 .flags
= IORESOURCE_IRQ
,
132 static struct platform_device mbox0_device
= {
135 .resource
= mbox0_resources
,
136 .num_resources
= ARRAY_SIZE(mbox0_resources
),
139 static struct platform_device mbox1_device
= {
142 .resource
= mbox1_resources
,
143 .num_resources
= ARRAY_SIZE(mbox1_resources
),
146 static struct platform_device mbox2_device
= {
149 .resource
= mbox2_resources
,
150 .num_resources
= ARRAY_SIZE(mbox2_resources
),
153 static struct platform_device
*db5500_platform_devs
[] __initdata
= {
160 static resource_size_t __initdata db5500_gpio_base
[] = {
161 U5500_GPIOBANK0_BASE
,
162 U5500_GPIOBANK1_BASE
,
163 U5500_GPIOBANK2_BASE
,
164 U5500_GPIOBANK3_BASE
,
165 U5500_GPIOBANK4_BASE
,
166 U5500_GPIOBANK5_BASE
,
167 U5500_GPIOBANK6_BASE
,
168 U5500_GPIOBANK7_BASE
,
171 static void __init
db5500_add_gpios(void)
173 struct nmk_gpio_platform_data pdata
= {
174 /* No custom data yet */
177 dbx500_add_gpios(ARRAY_AND_SIZE(db5500_gpio_base
),
178 IRQ_DB5500_GPIO0
, &pdata
);
181 void __init
u5500_map_io(void)
184 * Map the UARTs early so that the DEBUG_LL stuff continues to work.
186 iotable_init(u5500_uart_io_desc
, ARRAY_SIZE(u5500_uart_io_desc
));
190 iotable_init(u5500_io_desc
, ARRAY_SIZE(u5500_io_desc
));
192 _PRCMU_BASE
= __io_address(U5500_PRCMU_BASE
);
195 static int usb_db5500_rx_dma_cfg
[] = {
196 DB5500_DMA_DEV4_USB_OTG_IEP_1_9
,
197 DB5500_DMA_DEV5_USB_OTG_IEP_2_10
,
198 DB5500_DMA_DEV6_USB_OTG_IEP_3_11
,
199 DB5500_DMA_DEV20_USB_OTG_IEP_4_12
,
200 DB5500_DMA_DEV21_USB_OTG_IEP_5_13
,
201 DB5500_DMA_DEV22_USB_OTG_IEP_6_14
,
202 DB5500_DMA_DEV23_USB_OTG_IEP_7_15
,
203 DB5500_DMA_DEV38_USB_OTG_IEP_8
206 static int usb_db5500_tx_dma_cfg
[] = {
207 DB5500_DMA_DEV4_USB_OTG_OEP_1_9
,
208 DB5500_DMA_DEV5_USB_OTG_OEP_2_10
,
209 DB5500_DMA_DEV6_USB_OTG_OEP_3_11
,
210 DB5500_DMA_DEV20_USB_OTG_OEP_4_12
,
211 DB5500_DMA_DEV21_USB_OTG_OEP_5_13
,
212 DB5500_DMA_DEV22_USB_OTG_OEP_6_14
,
213 DB5500_DMA_DEV23_USB_OTG_OEP_7_15
,
214 DB5500_DMA_DEV38_USB_OTG_OEP_8
217 void __init
u5500_init_devices(void)
222 db5500_add_usb(usb_db5500_rx_dma_cfg
, usb_db5500_tx_dma_cfg
);
224 platform_add_devices(db5500_platform_devs
,
225 ARRAY_SIZE(db5500_platform_devs
));