diff options
author | Marek Vasut | 2023-05-31 20:24:34 +0200 |
---|---|---|
committer | Marek Vasut | 2023-06-08 22:26:51 +0200 |
commit | b0866db2dcecad88ffe1d0e8195d4c5f3d615cc6 (patch) | |
tree | 4e04c05d1ca1538e2b61ca62a62538f7624e5c65 /board | |
parent | ad1616f0e8762f6ca017e69af15be1ce42bdf62f (diff) |
ARM: rmobile: Factor out common R-Car V3M/V3H board code
Pull common board initialization code from V3M Eagle board
into rcar-common/v3-common.c so it can be re-used by other
V3M/V3H boards.
Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
Diffstat (limited to 'board')
-rw-r--r-- | board/renesas/eagle/Makefile | 2 | ||||
-rw-r--r-- | board/renesas/rcar-common/v3-common.c (renamed from board/renesas/eagle/eagle.c) | 26 |
2 files changed, 2 insertions, 26 deletions
diff --git a/board/renesas/eagle/Makefile b/board/renesas/eagle/Makefile index 062c46ba24f..9fb6a7c0f0a 100644 --- a/board/renesas/eagle/Makefile +++ b/board/renesas/eagle/Makefile @@ -9,5 +9,5 @@ ifdef CONFIG_SPL_BUILD obj-y := ../rcar-common/gen3-spl.o else -obj-y := eagle.o ../rcar-common/common.o +obj-y := ../rcar-common/v3-common.o ../rcar-common/common.o endif diff --git a/board/renesas/eagle/eagle.c b/board/renesas/rcar-common/v3-common.c index e9e8059ef6d..be8be0cb16d 100644 --- a/board/renesas/eagle/eagle.c +++ b/board/renesas/rcar-common/v3-common.c @@ -1,35 +1,11 @@ // SPDX-License-Identifier: GPL-2.0+ /* - * board/renesas/eagle/eagle.c - * This file is Eagle board support. - * - * Copyright (C) 2017 Marek Vasut <marek.vasut+renesas@gmail.com> + * Copyright (C) 2017-2023 Marek Vasut <marek.vasut+renesas@mailbox.org> */ #include <common.h> #include <clock_legacy.h> -#include <cpu_func.h> -#include <hang.h> -#include <init.h> -#include <malloc.h> -#include <netdev.h> -#include <dm.h> -#include <asm/global_data.h> -#include <dm/platform_data/serial_sh.h> -#include <asm/processor.h> -#include <asm/mach-types.h> #include <asm/io.h> -#include <linux/errno.h> -#include <asm/arch/sys_proto.h> -#include <asm/gpio.h> -#include <asm/arch/gpio.h> -#include <asm/arch/rmobile.h> -#include <asm/arch/rcar-mstp.h> -#include <asm/arch/sh_sdhi.h> -#include <i2c.h> -#include <mmc.h> - -DECLARE_GLOBAL_DATA_PTR; #define CPGWPR 0xE6150900 #define CPGWPCR 0xE6150904 |