Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Simon Glass | 3a1a18f | 2015-01-27 22:13:47 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2015 Google, Inc |
Simon Glass | 3a1a18f | 2015-01-27 22:13:47 -0700 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | /* |
| 7 | * board/config.h - configuration options, board specific |
| 8 | */ |
| 9 | |
| 10 | #ifndef __CONFIG_H |
| 11 | #define __CONFIG_H |
| 12 | |
| 13 | #include <configs/x86-common.h> |
| 14 | |
| 15 | #define CONFIG_SYS_MONITOR_LEN (1 << 20) |
Simon Glass | 3a1a18f | 2015-01-27 22:13:47 -0700 | [diff] [blame] | 16 | |
Bin Meng | fcda8c3 | 2016-10-09 04:14:13 -0700 | [diff] [blame] | 17 | #define CONFIG_STD_DEVICES_SETTINGS "stdin=usbkbd,serial\0" \ |
| 18 | "stdout=vidconsole,serial\0" \ |
Bin Meng | 6e4d039 | 2017-07-19 21:50:09 +0800 | [diff] [blame] | 19 | "stderr=vidconsole,serial\0" \ |
| 20 | "usb_pgood_delay=40\0" |
Simon Glass | 3a1a18f | 2015-01-27 22:13:47 -0700 | [diff] [blame] | 21 | |
Simon Glass | 3a1a18f | 2015-01-27 22:13:47 -0700 | [diff] [blame] | 22 | #define VIDEO_IO_OFFSET 0 |
| 23 | #define CONFIG_X86EMU_RAW_IO |
Simon Glass | 3a1a18f | 2015-01-27 22:13:47 -0700 | [diff] [blame] | 24 | |
Simon Glass | d5359f2 | 2015-07-03 18:28:23 -0600 | [diff] [blame] | 25 | #define CONFIG_ENV_SECT_SIZE 0x1000 |
Bin Meng | 91fc5bf | 2016-05-11 07:44:55 -0700 | [diff] [blame] | 26 | #define CONFIG_ENV_OFFSET 0x006ef000 |
Bin Meng | d21d05f | 2015-03-31 11:51:04 +0800 | [diff] [blame] | 27 | |
Simon Glass | 3a1a18f | 2015-01-27 22:13:47 -0700 | [diff] [blame] | 28 | #endif /* __CONFIG_H */ |