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