Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Bin Meng | a2e3b05 | 2016-02-17 00:16:25 -0800 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2016, Bin Meng <bmeng.cn@gmail.com> |
Bin Meng | a2e3b05 | 2016-02-17 00:16:25 -0800 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #ifndef __CONFIG_H |
| 7 | #define __CONFIG_H |
| 8 | |
| 9 | #include <configs/x86-common.h> |
| 10 | |
| 11 | #define CONFIG_SYS_MONITOR_LEN (2 << 20) |
Bin Meng | a2e3b05 | 2016-02-17 00:16:25 -0800 | [diff] [blame] | 12 | |
| 13 | #define CONFIG_SMSC_SIO1007 |
| 14 | |
Bin Meng | a2e3b05 | 2016-02-17 00:16:25 -0800 | [diff] [blame] | 15 | #define CONFIG_STD_DEVICES_SETTINGS "stdin=serial,i8042-kbd,usbkbd\0" \ |
| 16 | "stdout=serial,vga\0" \ |
| 17 | "stderr=serial,vga\0" |
| 18 | |
Bin Meng | a2e3b05 | 2016-02-17 00:16:25 -0800 | [diff] [blame] | 19 | /* Environment configuration */ |
| 20 | #define CONFIG_ENV_SECT_SIZE 0x1000 |
| 21 | #define CONFIG_ENV_OFFSET 0x5ff000 |
| 22 | |
Bin Meng | a2e3b05 | 2016-02-17 00:16:25 -0800 | [diff] [blame] | 23 | #endif /* __CONFIG_H */ |