mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-06-13 15:03:58 +03:00
Add support for the Geist board based on the Renesas R8A779MD (M3Le) SoC, a register-compatible variant of the R8A77965 (M3N) with reduced peripherals. The Geist board design references the Renesas Salvator-X/XS boards, adapting their configuration for the R8A779MD SoC. The board will be switched to OF_UPSTREAM once the DTs land in upstream. Signed-off-by: Huy Bui <huy.bui.pz@bp.renesas.com> Signed-off-by: Nguyen Tran <nguyen.tran.pz@bp.renesas.com> Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
19 lines
392 B
C
19 lines
392 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* This file is Geist board configuration.
|
|
*
|
|
* Copyright (C) 2025-2026 Renesas Electronics Corporation
|
|
*/
|
|
|
|
#ifndef __GEIST_H
|
|
#define __GEIST_H
|
|
|
|
#include "rcar-gen3-common.h"
|
|
|
|
/* Environment in eMMC, at the end of 2nd "boot sector" */
|
|
|
|
#define CFG_SYS_FLASH_BANKS_LIST { 0x08000000 }
|
|
#define CFG_SYS_WRITE_SWAPPED_DATA
|
|
|
|
#endif /* __GEIST_H */
|