mirror of
https://github.com/smaeul/u-boot.git
synced 2025-09-11 12:36:03 +01:00
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>
16 lines
277 B
C
16 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
|