1 /* 2 * Copyright (C) 2016, Bin Meng <bmeng.cn@gmail.com> 3 * 4 * SPDX-License-Identifier: GPL-2.0+ 5 */ 6 7 #ifndef __CONFIG_H 8 #define __CONFIG_H 9 10 #include <configs/x86-common.h> 11 12 #define CONFIG_SYS_MONITOR_LEN (2 << 20) 13 #define CONFIG_BOARD_EARLY_INIT_F 14 15 #define CONFIG_SMSC_SIO1007 16 17 #define CONFIG_PCI_PNP 18 19 #define CONFIG_STD_DEVICES_SETTINGS "stdin=serial,i8042-kbd,usbkbd\0" \ 20 "stdout=serial,vga\0" \ 21 "stderr=serial,vga\0" 22 23 #define CONFIG_SCSI_DEV_LIST \ 24 {PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PANTHERPOINT_AHCI_MOBILE} 25 26 /* Environment configuration */ 27 #define CONFIG_ENV_SECT_SIZE 0x1000 28 #define CONFIG_ENV_OFFSET 0x5ff000 29 30 /* Video is not supported for now */ 31 #undef CONFIG_VIDEO 32 #undef CONFIG_CFB_CONSOLE 33 34 #endif /* __CONFIG_H */ 35