diff options
author | Magnus Damm <damm@opensource.se> | 2013-10-08 12:39:10 +0900 |
---|---|---|
committer | Simon Horman <horms+renesas@verge.net.au> | 2013-12-04 15:11:08 +0900 |
commit | 35040127be095487ce1e2f6a487a65b92d794b7f (patch) | |
tree | 38d2a5581966ed89bf03a550054f3b613e49c6eb /arch/arm/mach-shmobile/setup-r8a7791.c | |
parent | e08d287afb76b3b6925f7261918fa611a7e0b3ca (diff) |
ARM: shmobile: r8a7791 PFC platform device support
Add a platform device for the r8a7791 PFC device.
Signed-off-by: Magnus Damm <damm@opensource.se>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
Diffstat (limited to 'arch/arm/mach-shmobile/setup-r8a7791.c')
-rw-r--r-- | arch/arm/mach-shmobile/setup-r8a7791.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/arch/arm/mach-shmobile/setup-r8a7791.c b/arch/arm/mach-shmobile/setup-r8a7791.c index d9393d61ee2..84cad8cb6af 100644 --- a/arch/arm/mach-shmobile/setup-r8a7791.c +++ b/arch/arm/mach-shmobile/setup-r8a7791.c @@ -31,6 +31,19 @@ #include <mach/rcar-gen2.h> #include <asm/mach/arch.h> +static const struct resource pfc_resources[] __initconst = { + DEFINE_RES_MEM(0xe6060000, 0x250), +}; + +#define r8a7791_register_pfc() \ + platform_device_register_simple("pfc-r8a7791", -1, pfc_resources, \ + ARRAY_SIZE(pfc_resources)) + +void __init r8a7791_pinmux_init(void) +{ + r8a7791_register_pfc(); +} + #define SCIF_COMMON(scif_type, baseaddr, irq) \ .type = scif_type, \ .mapbase = baseaddr, \ |