aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-ux500/board-mop500.c
diff options
context:
space:
mode:
authorRabin Vincent <rabin.vincent@stericsson.com>2010-05-03 03:18:38 -0400
committerRussell King <rmk+kernel@arm.linux.org.uk>2010-05-04 12:50:04 -0400
commit4b27aa4140c20380a67ecefaa48cf3714cc0b8ea (patch)
tree9c317e2f8d2374d5b02bfda53a6287a62944303d /arch/arm/mach-ux500/board-mop500.c
parent9e4e7fe1a97191e373257ab59e3d6bbcce9a9f1e (diff)
ARM: 6084/1: ux500: move UART devices to devices.c
The three PL011 UARTs are common among Ux500 SoCs, so move them to devices.c. Acked-by: Linus Walleij <linus.walleij@stericsson.com> Acked-by: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com> Signed-off-by: Rabin Vincent <rabin.vincent@stericsson.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-ux500/board-mop500.c')
-rw-r--r--arch/arm/mach-ux500/board-mop500.c28
1 files changed, 3 insertions, 25 deletions
diff --git a/arch/arm/mach-ux500/board-mop500.c b/arch/arm/mach-ux500/board-mop500.c
index 6bb9a3d3f51e..0e595bf3366e 100644
--- a/arch/arm/mach-ux500/board-mop500.c
+++ b/arch/arm/mach-ux500/board-mop500.c
@@ -26,28 +26,6 @@
26#include <mach/setup.h> 26#include <mach/setup.h>
27#include <mach/devices.h> 27#include <mach/devices.h>
28 28
29#define __MEM_4K_RESOURCE(x) \
30 .res = {.start = (x), .end = (x) + SZ_4K - 1, .flags = IORESOURCE_MEM}
31
32/* These are active devices on this board */
33static struct amba_device uart0_device = {
34 .dev = { .init_name = "uart0" },
35 __MEM_4K_RESOURCE(U8500_UART0_BASE),
36 .irq = {IRQ_UART0, NO_IRQ},
37};
38
39static struct amba_device uart1_device = {
40 .dev = { .init_name = "uart1" },
41 __MEM_4K_RESOURCE(U8500_UART1_BASE),
42 .irq = {IRQ_UART1, NO_IRQ},
43};
44
45static struct amba_device uart2_device = {
46 .dev = { .init_name = "uart2" },
47 __MEM_4K_RESOURCE(U8500_UART2_BASE),
48 .irq = {IRQ_UART2, NO_IRQ},
49};
50
51static void ab4500_spi_cs_control(u32 command) 29static void ab4500_spi_cs_control(u32 command)
52{ 30{
53 /* set the FRM signal, which is CS - TODO */ 31 /* set the FRM signal, which is CS - TODO */
@@ -157,9 +135,9 @@ U8500_I2C_PDEVICE(2);
157U8500_I2C_PDEVICE(3); 135U8500_I2C_PDEVICE(3);
158 136
159static struct amba_device *amba_devs[] __initdata = { 137static struct amba_device *amba_devs[] __initdata = {
160 &uart0_device, 138 &ux500_uart0_device,
161 &uart1_device, 139 &ux500_uart1_device,
162 &uart2_device, 140 &ux500_uart2_device,
163 &u8500_ssp0_device, 141 &u8500_ssp0_device,
164}; 142};
165 143