Commit 897bd6a3 authored by wanzongshun's avatar wanzongshun Committed by Russell King

ARM: 5633/1: Add wdt resource for w90p910 platform

Add wdt resource for w90p910 platform.
Signed-off-by: default avatarWan ZongShun <mcuos.com@gmail.com>
Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent 3f3f1d9d
......@@ -340,6 +340,28 @@ static struct spi_board_info w90p910_spi_board_info[] __initdata = {
},
};
/* WDT Device */
static struct resource w90p910_wdt_resource[] = {
[0] = {
.start = W90X900_PA_TIMER,
.end = W90X900_PA_TIMER + W90X900_SZ_TIMER - 1,
.flags = IORESOURCE_MEM,
},
[1] = {
.start = IRQ_WDT,
.end = IRQ_WDT,
.flags = IORESOURCE_IRQ,
}
};
static struct platform_device w90p910_device_wdt = {
.name = "w90p910-wdt",
.id = -1,
.num_resources = ARRAY_SIZE(w90p910_wdt_resource),
.resource = w90p910_wdt_resource,
};
static struct map_desc w90p910_iodesc[] __initdata = {
};
......@@ -357,6 +379,7 @@ static struct platform_device *w90p910evb_dev[] __initdata = {
&w90p910_device_fmi,
&w90p910_device_emc,
&w90p910_device_spi,
&w90p910_device_wdt,
};
static void __init w90p910evb_map_io(void)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment