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 | |
Bin Meng | 70b95de | 2017-06-16 06:31:46 -0700 | [diff] [blame] | 18 | #define CONFIG_MISC_INIT_R |
Simon Glass | 3a1a18f | 2015-01-27 22:13:47 -0700 | [diff] [blame] | 19 | |
Bin Meng | fcda8c3 | 2016-10-09 04:14:13 -0700 | [diff] [blame] | 20 | #define CONFIG_STD_DEVICES_SETTINGS "stdin=usbkbd,serial\0" \ |
| 21 | "stdout=vidconsole,serial\0" \ |
Bin Meng | 6e4d039 | 2017-07-19 21:50:09 +0800 | [diff] [blame] | 22 | "stderr=vidconsole,serial\0" \ |
| 23 | "usb_pgood_delay=40\0" |
Simon Glass | 3a1a18f | 2015-01-27 22:13:47 -0700 | [diff] [blame] | 24 | |
Simon Glass | 3a1a18f | 2015-01-27 22:13:47 -0700 | [diff] [blame] | 25 | #define VIDEO_IO_OFFSET 0 |
| 26 | #define CONFIG_X86EMU_RAW_IO |
Simon Glass | 3a1a18f | 2015-01-27 22:13:47 -0700 | [diff] [blame] | 27 | |
Simon Glass | d5359f2 | 2015-07-03 18:28:23 -0600 | [diff] [blame] | 28 | #define CONFIG_ENV_SECT_SIZE 0x1000 |
Bin Meng | 91fc5bf | 2016-05-11 07:44:55 -0700 | [diff] [blame] | 29 | #define CONFIG_ENV_OFFSET 0x006ef000 |
Bin Meng | d21d05f | 2015-03-31 11:51:04 +0800 | [diff] [blame] | 30 | |
Simon Glass | 3a1a18f | 2015-01-27 22:13:47 -0700 | [diff] [blame] | 31 | #endif /* __CONFIG_H */ |