sandbox: Finish migration to Kconfig
Stop using CONFIG_SANDBOX_ARCH and use CONFIG_SANDBOX instead. For the SPI related defines, set them directly in Kconfig. This now empties arch/sandbox/include/asm/config.h. Cc: Simon Glass <sjg@chromium.org> Signed-off-by: Tom Rini <trini@konsulko.com> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
abbb4043c4
commit
c46597155e
@ -6,14 +6,4 @@
|
||||
#ifndef _ASM_CONFIG_H_
|
||||
#define _ASM_CONFIG_H_
|
||||
|
||||
#define CONFIG_SANDBOX_ARCH
|
||||
|
||||
/* Used by drivers/spi/sandbox_spi.c and arch/sandbox/include/asm/state.h */
|
||||
#ifndef CONFIG_SANDBOX_SPI_MAX_BUS
|
||||
#define CONFIG_SANDBOX_SPI_MAX_BUS 1
|
||||
#endif
|
||||
#ifndef CONFIG_SANDBOX_SPI_MAX_CS
|
||||
#define CONFIG_SANDBOX_SPI_MAX_CS 10
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
@ -22,7 +22,7 @@
|
||||
#define CHECK_MASK (!CHECK_NUMBER)
|
||||
|
||||
/* TODO: add support for timer uclass (for early calls) */
|
||||
#ifdef CONFIG_SANDBOX_ARCH
|
||||
#ifdef CONFIG_SANDBOX
|
||||
#define sdelay(x) udelay(x)
|
||||
#else
|
||||
extern void sdelay(unsigned long loops);
|
||||
|
@ -429,6 +429,16 @@ config SANDBOX_SPI
|
||||
};
|
||||
};
|
||||
|
||||
config SANDBOX_SPI_MAX_BUS
|
||||
int
|
||||
depends on SANDBOX
|
||||
default 1
|
||||
|
||||
config SANDBOX_SPI_MAX_CS
|
||||
int
|
||||
depends on SANDBOX
|
||||
default 10
|
||||
|
||||
config SPI_ASPEED_SMC
|
||||
bool "ASPEED SPI flash controller driver"
|
||||
depends on DM_SPI && SPI_MEM
|
||||
|
Loading…
Reference in New Issue
Block a user