mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-16 17:58:23 +00:00
07f97bde54
Now that BCM63158 is supported under CONFIG_ARCH_BCMBCA and CONFIG_BCM63158, remove the original ARCH_BCM63158 support and migrate configuration settings. Signed-off-by: William Zhang <william.zhang@broadcom.com> Reviewed-by: Philippe Reynes <philippe.reynes@softathome.com>
15 lines
277 B
C
15 lines
277 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* (C) Copyright 2022 Broadcom Ltd.
|
|
*/
|
|
|
|
#ifndef __BCM963158_H
|
|
#define __BCM963158_H
|
|
|
|
#define CONFIG_SYS_SDRAM_BASE 0x00000000
|
|
|
|
#ifdef CONFIG_MTD_RAW_NAND
|
|
#define CONFIG_SYS_MAX_NAND_DEVICE 1
|
|
#endif /* CONFIG_MTD_RAW_NAND */
|
|
|
|
#endif
|