Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Bin Meng | afee3fb | 2015-02-02 22:35:28 +0800 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com> |
Bin Meng | afee3fb | 2015-02-02 22:35:28 +0800 | [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) |
Bin Meng | afee3fb | 2015-02-02 22:35:28 +0800 | [diff] [blame] | 16 | |
Bin Meng | afee3fb | 2015-02-02 22:35:28 +0800 | [diff] [blame] | 17 | /* ns16550 UART is memory-mapped in Quark SoC */ |
| 18 | #undef CONFIG_SYS_NS16550_PORT_MAPPED |
| 19 | |
Bin Meng | afee3fb | 2015-02-02 22:35:28 +0800 | [diff] [blame] | 20 | #define CONFIG_STD_DEVICES_SETTINGS "stdin=serial\0" \ |
| 21 | "stdout=serial\0" \ |
| 22 | "stderr=serial\0" |
| 23 | |
Bin Meng | e4ad603 | 2015-03-11 11:25:56 +0800 | [diff] [blame] | 24 | /* 10/100M Ethernet support */ |
| 25 | #define CONFIG_DESIGNWARE_ETH |
| 26 | #define CONFIG_DW_ALTDESCRIPTOR |
Bin Meng | e4ad603 | 2015-03-11 11:25:56 +0800 | [diff] [blame] | 27 | |
Bin Meng | bea5939 | 2015-03-11 17:22:29 +0800 | [diff] [blame] | 28 | /* Environment configuration */ |
Bin Meng | bea5939 | 2015-03-11 17:22:29 +0800 | [diff] [blame] | 29 | |
Bin Meng | afee3fb | 2015-02-02 22:35:28 +0800 | [diff] [blame] | 30 | #endif /* __CONFIG_H */ |