Skip to content

Commit

Permalink
ARM: shmobile: r8a7790 PFC support
Browse files Browse the repository at this point in the history
Add a platform device for the r8a7790 PFC.

Signed-off-by: Magnus Damm <damm@opensource.se>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
  • Loading branch information
Magnus Damm authored and Simon Horman committed Apr 2, 2013
1 parent 8f5ec0a commit 69e351d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions arch/arm/mach-shmobile/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ config ARCH_R8A7779

config ARCH_R8A7790
bool "R-Car H2 (R8A77900)"
select ARCH_WANT_OPTIONAL_GPIOLIB
select ARM_GIC
select CPU_V7
select ARM_ARCH_TIMER
Expand Down
1 change: 1 addition & 0 deletions arch/arm/mach-shmobile/include/mach/r8a7790.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@

void r8a7790_add_standard_devices(void);
void r8a7790_clock_init(void);
void r8a7790_pinmux_init(void);

#endif /* __ASM_R8A7790_H__ */
10 changes: 10 additions & 0 deletions arch/arm/mach-shmobile/setup-r8a7790.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,16 @@
#include <mach/r8a7790.h>
#include <asm/mach/arch.h>

static const struct resource pfc_resources[] = {
DEFINE_RES_MEM(0xe6060000, 0x250),
};

void __init r8a7790_pinmux_init(void)
{
platform_device_register_simple("pfc-r8a7790", -1, pfc_resources,
ARRAY_SIZE(pfc_resources));
}

#define SCIF_COMMON(scif_type, baseaddr, irq) \
.type = scif_type, \
.mapbase = baseaddr, \
Expand Down

0 comments on commit 69e351d

Please sign in to comment.