blob: 5b1660cb5b55a58331c48fe6d2ed318b8896942d [file] [log] [blame]
Simon Glass3a1a18f2015-01-27 22:13:47 -07001/*
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 Glass3a1a18f2015-01-27 22:13:47 -070017
Bin Meng70b95de2017-06-16 06:31:46 -070018#define CONFIG_MISC_INIT_R
Simon Glass3a1a18f2015-01-27 22:13:47 -070019
Bin Mengfcda8c32016-10-09 04:14:13 -070020#define CONFIG_STD_DEVICES_SETTINGS "stdin=usbkbd,serial\0" \
21 "stdout=vidconsole,serial\0" \
Bin Meng6e4d0392017-07-19 21:50:09 +080022 "stderr=vidconsole,serial\0" \
23 "usb_pgood_delay=40\0"
Simon Glass3a1a18f2015-01-27 22:13:47 -070024
Simon Glass3a1a18f2015-01-27 22:13:47 -070025#define VIDEO_IO_OFFSET 0
26#define CONFIG_X86EMU_RAW_IO
Simon Glass3a1a18f2015-01-27 22:13:47 -070027
Simon Glassd5359f22015-07-03 18:28:23 -060028#define CONFIG_ENV_SECT_SIZE 0x1000
Bin Meng91fc5bf2016-05-11 07:44:55 -070029#define CONFIG_ENV_OFFSET 0x006ef000
Bin Mengd21d05f2015-03-31 11:51:04 +080030
Simon Glass3a1a18f2015-01-27 22:13:47 -070031#endif /* __CONFIG_H */