mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-07 05:34:28 +00:00
6bbecba833
Enable the nand support (driver and command) in the configuration of the board bcm96838gerg. Signed-off-by: Philippe Reynes <philippe.reynes@softathome.com>
16 lines
423 B
C
16 lines
423 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (C) 2018 Philippe Reynes <philippe.reynes@softathome.com>
|
|
*/
|
|
|
|
#include <configs/bmips_common.h>
|
|
#include <configs/bmips_bcm6838.h>
|
|
|
|
#define CONFIG_ENV_SIZE (8 * 1024)
|
|
|
|
#ifdef CONFIG_NAND
|
|
#define CONFIG_SYS_MAX_NAND_DEVICE 1
|
|
#define CONFIG_SYS_NAND_SELF_INIT
|
|
#define CONFIG_SYS_NAND_ONFI_DETECTION
|
|
#define CONFIG_SYS_NAND_DRIVER_ECC_LAYOUT
|
|
#endif /* CONFIG_NAND */
|