diff options
author | Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com> | 2012-07-20 09:29:19 +0900 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2012-10-03 02:04:22 +0200 |
commit | b045a23773f0b10071fb06e3364c7f21495f66b0 (patch) | |
tree | 095a43593af6dc84176e5d3230d837d55ff24fc2 /arch/arm/include | |
parent | 1cdf2482d11f30ad65b64cfcb02c194a5a440f75 (diff) | |
download | u-boot-imx-b045a23773f0b10071fb06e3364c7f21495f66b0.zip u-boot-imx-b045a23773f0b10071fb06e3364c7f21495f66b0.tar.gz u-boot-imx-b045a23773f0b10071fb06e3364c7f21495f66b0.tar.bz2 |
arm: rmobile: Add support PFC of Renesas SH73A0
Renesas SH73A0 has GPIO based PFC. This privode framework of PFC.
The code included in this base from linux kernel.
Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Diffstat (limited to 'arch/arm/include')
-rw-r--r-- | arch/arm/include/asm/arch-rmobile/gpio.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/arm/include/asm/arch-rmobile/gpio.h b/arch/arm/include/asm/arch-rmobile/gpio.h new file mode 100644 index 0000000..8d3f10e --- /dev/null +++ b/arch/arm/include/asm/arch-rmobile/gpio.h @@ -0,0 +1,9 @@ +#ifndef __ASM_ARCH_GPIO_H +#define __ASM_ARCH_GPIO_H + +#if defined(CONFIG_SH73A0) +#include "sh73a0-gpio.h" +void sh73a0_pinmux_init(void); +#endif + +#endif /* __ASM_ARCH_GPIO_H */ |