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