1 /* 2 * Copyright (c) 2011 The Chromium OS Authors. 3 * 4 * SPDX-License-Identifier: GPL-2.0+ 5 */ 6 7 #ifndef _ASM_CONFIG_H_ 8 #define _ASM_CONFIG_H_ 9 10 #define CONFIG_SYS_GENERIC_GLOBAL_DATA 11 #define CONFIG_SANDBOX_ARCH 12 13 /* Used by drivers/spi/sandbox_spi.c and arch/sandbox/include/asm/state.h */ 14 #ifndef CONFIG_SANDBOX_SPI_MAX_BUS 15 #define CONFIG_SANDBOX_SPI_MAX_BUS 1 16 #endif 17 #ifndef CONFIG_SANDBOX_SPI_MAX_CS 18 #define CONFIG_SANDBOX_SPI_MAX_CS 10 19 #endif 20 21 #endif 22