1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * Configuration settings for the SOM-6896 4 * 5 * Copyright (C) 2015 NovaTech LLC 6 * George McCollister <george.mccollister (at) gmail.com> 7 */ 8 9 #ifndef __CONFIG_H 10 #define __CONFIG_H 11 12 #include <configs/x86-common.h> 13 14 #define CONFIG_SYS_MONITOR_LEN (1 << 20) 15 16 #define CONFIG_MISC_INIT_R 17 18 #define VIDEO_IO_OFFSET 0 19 #define CONFIG_X86EMU_RAW_IO 20 21 #define CONFIG_STD_DEVICES_SETTINGS "stdin=serial,usbkbd\0" \ 22 "stdout=serial,vidconsole\0" \ 23 "stderr=serial,vidconsole\0" 24 25 #define CONFIG_ENV_SECT_SIZE 0x1000 26 #define CONFIG_ENV_OFFSET 0x00ff0000 27 28 #endif /* __CONFIG_H */ 29