diff options
author | Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com> | 2014-12-02 16:52:20 +0900 |
---|---|---|
committer | Nobuhiro Iwamatsu <iwamatsu@nigauri.org> | 2014-12-05 11:04:52 +0900 |
commit | 72fd3838c6cc861e5061d99316c35eed62a3fb85 (patch) | |
tree | 85dcf36fe07d4afa87d51842117ca096a072ad98 /board/renesas/gose/gose.c | |
parent | 44e1eebf86efc917010b8fd482951b10c3b06453 (diff) | |
download | u-boot-imx-72fd3838c6cc861e5061d99316c35eed62a3fb85.zip u-boot-imx-72fd3838c6cc861e5061d99316c35eed62a3fb85.tar.gz u-boot-imx-72fd3838c6cc861e5061d99316c35eed62a3fb85.tar.bz2 |
arm: rmobile: rcar: Move arch_preboot_os function to rcar-gen2-common/common.c
The arch_preboot_os function used in boards using R-Car ARM SoC (r8a7790,
r8a7791, r8a7793 and r8a7794) is common.
This makes rcar-gen2-common/common.c file providing common function for
R-Car ARM SoC, and moves this function to this file.
Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Diffstat (limited to 'board/renesas/gose/gose.c')
-rw-r--r-- | board/renesas/gose/gose.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/board/renesas/gose/gose.c b/board/renesas/gose/gose.c index 0b2d904..677b976 100644 --- a/board/renesas/gose/gose.c +++ b/board/renesas/gose/gose.c @@ -60,16 +60,6 @@ int board_early_init_f(void) return 0; } -#define TSTR0 0x04 -#define TSTR0_STR0 0x01 -void arch_preboot_os(void) -{ - /* stop TMU0 */ - mstp_clrbits_le32(TMU_BASE + TSTR0, TMU_BASE + TSTR0, TSTR0_STR0); - /* Disable TMU0 */ - mstp_setbits_le32(MSTPSR1, SMSTPCR1, TMU0_MSTP125); -} - #define PUPR5 0xE6060114 #define PUPR5_ETH 0x3FFC0000 #define PUPR5_ETH_MAGIC (1 << 27) |