mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-13 23:02:59 +00:00
387d4275ab
The Renesas RZ/G2L family includes the following ARM SoCs: * RZ/G2L (r9a07g044l) * RZ/G2LC (r9a07g044c) * RZ/G2UL (r9a07g043u) * RZ/V2L (r9a07g054l) Support for individual SoCs and evaluation boards will be added in separate patches. Signed-off-by: Paul Barker <paul.barker.ct@bp.renesas.com> Reviewed-by: Biju Das <biju.das.jz@bp.renesas.com> Reviewed-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com> Reviewed-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
13 lines
278 B
C
13 lines
278 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* RZ/G2L SoC Family support.
|
|
* Copyright (C) 2023 Renesas Electronics Corporation
|
|
*/
|
|
|
|
#ifndef __ASM_ARCH_RZG2L_H
|
|
#define __ASM_ARCH_RZG2L_H
|
|
|
|
#define GICD_BASE 0x11900000
|
|
#define GICR_BASE 0x11960000
|
|
|
|
#endif /* __ASM_ARCH_RZG2L_H */
|