1*83d290c5STom Rini /* SPDX-License-Identifier: GPL-2.0+ */
2215099a5SGeorge McCollister /*
3215099a5SGeorge McCollister  * Copyright (C) 2015 Google, Inc
4215099a5SGeorge McCollister  */
5215099a5SGeorge McCollister 
6215099a5SGeorge McCollister /*
7215099a5SGeorge McCollister  * board/config.h - configuration options, board specific
8215099a5SGeorge McCollister  */
9215099a5SGeorge McCollister 
10215099a5SGeorge McCollister #ifndef __CONFIG_H
11215099a5SGeorge McCollister #define __CONFIG_H
12215099a5SGeorge McCollister 
13215099a5SGeorge McCollister #include <configs/x86-common.h>
14215099a5SGeorge McCollister 
15215099a5SGeorge McCollister #define CONFIG_SYS_MONITOR_LEN		(1 << 20)
16215099a5SGeorge McCollister 
17fcda8c38SBin Meng #define CONFIG_STD_DEVICES_SETTINGS	"stdin=serial,usbkbd\0" \
18fcda8c38SBin Meng 					"stdout=serial,vidconsole\0" \
19fcda8c38SBin Meng 					"stderr=serial,vidconsole\0"
20215099a5SGeorge McCollister 
21215099a5SGeorge McCollister #define VIDEO_IO_OFFSET				0
22215099a5SGeorge McCollister #define CONFIG_X86EMU_RAW_IO
23215099a5SGeorge McCollister 
24215099a5SGeorge McCollister #define CONFIG_ENV_SECT_SIZE		0x1000
25215099a5SGeorge McCollister #define CONFIG_ENV_OFFSET		0x006ef000
26215099a5SGeorge McCollister 
27215099a5SGeorge McCollister #endif	/* __CONFIG_H */
28