diff options
author | Hai Pham <hai.pham.ud@renesas.com> | 2023-02-28 22:34:46 +0100 |
---|---|---|
committer | Marek Vasut <marek.vasut+renesas@mailbox.org> | 2023-04-07 17:13:28 +0200 |
commit | 558d10620bfcf755a08d35eb6f43d37438ecc3ac (patch) | |
tree | 5ffc864adcbff096d1c58db50f1d499324d421db /include | |
parent | 8f098fd623c6e0064ca5b5273225f9381630a68d (diff) | |
download | u-boot-558d10620bfcf755a08d35eb6f43d37438ecc3ac.zip u-boot-558d10620bfcf755a08d35eb6f43d37438ecc3ac.tar.gz u-boot-558d10620bfcf755a08d35eb6f43d37438ecc3ac.tar.bz2 |
ARM: renesas: Add R8A779F0 S4 Spider board code
Add board code for R8A779F0 S4 Spider board.
Reviewed-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
Signed-off-by: Hai Pham <hai.pham.ud@renesas.com>
Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
[Marek: Synchronize configuration symbols which are now switched to Kconfig
Mallocate gd->bd->bi_boot_params, i.e. drop the assignment
Sort headers, use clrbits_le32(), use BIT macros where appropriate
Use CONFIG_SYS_CLK_FREQ for counter frequency instead of custom macro]
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/spider.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/include/configs/spider.h b/include/configs/spider.h new file mode 100644 index 0000000..e9b7d6b --- /dev/null +++ b/include/configs/spider.h @@ -0,0 +1,14 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ +/* + * include/configs/spider.h + * This file is Spider board configuration. + * + * Copyright (C) 2021 Renesas Electronics Corp. + */ + +#ifndef __SPIDER_H +#define __SPIDER_H + +#include "rcar-gen4-common.h" + +#endif /* __SPIDER_H */ |