Skip to content

Commit

Permalink
sh: sh-rtc support for SH7709.
Browse files Browse the repository at this point in the history
Signed-off-by: Kristoffer Ericson <kristoffer.ericson@gmail.com>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
  • Loading branch information
Kristoffer Ericson authored and Paul Mundt committed Jul 16, 2007
1 parent 075fc19 commit e509ac4
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions arch/sh/kernel/cpu/sh3/setup-sh7709.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,26 @@
#include <linux/serial.h>
#include <asm/sci.h>

static struct resource rtc_resources[] = {
[0] = {
.start = 0xfffffec0,
.end = 0xfffffec0 + 0x1e,
.flags = IORESOURCE_IO,
},
[1] = {
.start = 20,
.flags = IORESOURCE_IRQ,
},
[2] = {
.start = 21,
.flags = IORESOURCE_IRQ,
},
[3] = {
.start = 22,
.flags = IORESOURCE_IRQ,
},
};

static struct plat_sci_port sci_platform_data[] = {
{
.mapbase = 0xfffffe80,
Expand Down Expand Up @@ -41,8 +61,16 @@ static struct platform_device sci_device = {
},
};

static struct platform_device rtc_device = {
.name = "sh-rtc",
.id = -1,
.num_resources = ARRAY_SIZE(rtc_resources),
.resource = rtc_resources,
};

static struct platform_device *sh7709_devices[] __initdata = {
&sci_device,
&rtc_device,
};

static int __init sh7709_devices_setup(void)
Expand Down

0 comments on commit e509ac4

Please sign in to comment.