mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 08:42:12 +02:00
Convert CONFIG_ENV_SPI_* to Kconfig
This converts the following to Kconfig: CONFIG_ENV_SPI_BUS CONFIG_ENV_SPI_CS CONFIG_ENV_SPI_MAX_HZ CONFIG_ENV_SPI_MODE Most of time these value are not needed, CONFIG_SF_DEFAULT with same value is used, so I introduced CONFIG_USE_ENV_SPI_* to force the associated value for the environment. Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
This commit is contained in:
committed by
Tom Rini
parent
c95e632de4
commit
abe66b1b5d
@@ -13,6 +13,20 @@
|
||||
#include <linux/types.h>
|
||||
#include <linux/mtd/spi-nor.h>
|
||||
|
||||
/* by default ENV use the same parameters than SF command */
|
||||
#ifndef CONFIG_ENV_SPI_BUS
|
||||
# define CONFIG_ENV_SPI_BUS CONFIG_SF_DEFAULT_BUS
|
||||
#endif
|
||||
#ifndef CONFIG_ENV_SPI_CS
|
||||
# define CONFIG_ENV_SPI_CS CONFIG_SF_DEFAULT_CS
|
||||
#endif
|
||||
#ifndef CONFIG_ENV_SPI_MAX_HZ
|
||||
# define CONFIG_ENV_SPI_MAX_HZ CONFIG_SF_DEFAULT_SPEED
|
||||
#endif
|
||||
#ifndef CONFIG_ENV_SPI_MODE
|
||||
# define CONFIG_ENV_SPI_MODE CONFIG_SF_DEFAULT_MODE
|
||||
#endif
|
||||
|
||||
struct spi_slave;
|
||||
|
||||
struct dm_spi_flash_ops {
|
||||
|
Reference in New Issue
Block a user