Simon Glass | 3a1a18f | 2015-01-27 22:13:47 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2015 Google, Inc |
| 3 | * |
| 4 | * SPDX-License-Identifier: GPL-2.0+ |
| 5 | */ |
| 6 | |
| 7 | /* |
| 8 | * board/config.h - configuration options, board specific |
| 9 | */ |
| 10 | |
| 11 | #ifndef __CONFIG_H |
| 12 | #define __CONFIG_H |
| 13 | |
| 14 | #include <configs/x86-common.h> |
| 15 | |
| 16 | #define CONFIG_SYS_MONITOR_LEN (1 << 20) |
Simon Glass | 3a1a18f | 2015-01-27 22:13:47 -0700 | [diff] [blame] | 17 | |
Simon Glass | dcfe4a5 | 2015-07-27 15:47:23 -0600 | [diff] [blame] | 18 | #define CONFIG_SMSC_LPC47M |
Bin Meng | 70b95de | 2017-06-16 06:31:46 -0700 | [diff] [blame] | 19 | #define CONFIG_MISC_INIT_R |
Simon Glass | 3a1a18f | 2015-01-27 22:13:47 -0700 | [diff] [blame] | 20 | |
Bin Meng | fcda8c3 | 2016-10-09 04:14:13 -0700 | [diff] [blame] | 21 | #define CONFIG_STD_DEVICES_SETTINGS "stdin=usbkbd,serial\0" \ |
| 22 | "stdout=vidconsole,serial\0" \ |
| 23 | "stderr=vidconsole,serial\0" |
Simon Glass | 3a1a18f | 2015-01-27 22:13:47 -0700 | [diff] [blame] | 24 | |
Bin Meng | 44a8b96 | 2015-08-06 02:36:01 -0700 | [diff] [blame] | 25 | #define CONFIG_SCSI_DEV_LIST \ |
| 26 | {PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_VALLEYVIEW_SATA}, \ |
| 27 | {PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_VALLEYVIEW_SATA_ALT} |
| 28 | |
Simon Glass | 3a1a18f | 2015-01-27 22:13:47 -0700 | [diff] [blame] | 29 | #define VIDEO_IO_OFFSET 0 |
| 30 | #define CONFIG_X86EMU_RAW_IO |
Simon Glass | 3a1a18f | 2015-01-27 22:13:47 -0700 | [diff] [blame] | 31 | |
Simon Glass | d5359f2 | 2015-07-03 18:28:23 -0600 | [diff] [blame] | 32 | #define CONFIG_ENV_SECT_SIZE 0x1000 |
Bin Meng | 91fc5bf | 2016-05-11 07:44:55 -0700 | [diff] [blame] | 33 | #define CONFIG_ENV_OFFSET 0x006ef000 |
Bin Meng | d21d05f | 2015-03-31 11:51:04 +0800 | [diff] [blame] | 34 | |
Simon Glass | 3a1a18f | 2015-01-27 22:13:47 -0700 | [diff] [blame] | 35 | #endif /* __CONFIG_H */ |