blob: 66e8006c948346174d3861fa54b5b46746114015 [file] [log] [blame]
Bin Menga2e3b052016-02-17 00:16:25 -08001/*
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)
Bin Menga2e3b052016-02-17 00:16:25 -080013
14#define CONFIG_SMSC_SIO1007
15
Bin Menga2e3b052016-02-17 00:16:25 -080016#define CONFIG_STD_DEVICES_SETTINGS "stdin=serial,i8042-kbd,usbkbd\0" \
17 "stdout=serial,vga\0" \
18 "stderr=serial,vga\0"
19
Bin Menga2e3b052016-02-17 00:16:25 -080020/* Environment configuration */
21#define CONFIG_ENV_SECT_SIZE 0x1000
22#define CONFIG_ENV_OFFSET 0x5ff000
23
Bin Menga2e3b052016-02-17 00:16:25 -080024#endif /* __CONFIG_H */