mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-20 18:54:09 +08:00
4b27aa4140
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>
59 lines
1.3 KiB
C
59 lines
1.3 KiB
C
/*
|
|
* Copyright (C) ST-Ericsson SA 2010
|
|
*
|
|
* Author: Rabin Vincent <rabin.vincent@stericsson.com> for ST-Ericsson
|
|
* License terms: GNU General Public License (GPL) version 2
|
|
*/
|
|
|
|
#include <linux/kernel.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/interrupt.h>
|
|
#include <linux/io.h>
|
|
#include <linux/amba/bus.h>
|
|
|
|
#include <mach/hardware.h>
|
|
#include <mach/setup.h>
|
|
|
|
#define __MEM_4K_RESOURCE(x) \
|
|
.res = {.start = (x), .end = (x) + SZ_4K - 1, .flags = IORESOURCE_MEM}
|
|
|
|
struct amba_device ux500_pl031_device = {
|
|
.dev = {
|
|
.init_name = "pl031",
|
|
},
|
|
.res = {
|
|
.start = UX500_RTC_BASE,
|
|
.end = UX500_RTC_BASE + SZ_4K - 1,
|
|
.flags = IORESOURCE_MEM,
|
|
},
|
|
.irq = {IRQ_RTC_RTT, NO_IRQ},
|
|
};
|
|
|
|
struct amba_device ux500_uart0_device = {
|
|
.dev = { .init_name = "uart0" },
|
|
__MEM_4K_RESOURCE(UX500_UART0_BASE),
|
|
.irq = {IRQ_UART0, NO_IRQ},
|
|
};
|
|
|
|
struct amba_device ux500_uart1_device = {
|
|
.dev = { .init_name = "uart1" },
|
|
__MEM_4K_RESOURCE(UX500_UART1_BASE),
|
|
.irq = {IRQ_UART1, NO_IRQ},
|
|
};
|
|
|
|
struct amba_device ux500_uart2_device = {
|
|
.dev = { .init_name = "uart2" },
|
|
__MEM_4K_RESOURCE(UX500_UART2_BASE),
|
|
.irq = {IRQ_UART2, NO_IRQ},
|
|
};
|
|
|
|
void __init amba_add_devices(struct amba_device *devs[], int num)
|
|
{
|
|
int i;
|
|
|
|
for (i = 0; i < num; i++) {
|
|
struct amba_device *d = devs[i];
|
|
amba_device_register(d, &iomem_resource);
|
|
}
|
|
}
|