1*83d290c5STom Rini /* SPDX-License-Identifier: GPL-2.0+ */
26b086793SStefan Roese /*
36b086793SStefan Roese  * Copyright (C) 2016 Stefan Roese <sr@denx.de>
46b086793SStefan Roese  */
56b086793SStefan Roese 
66b086793SStefan Roese /*
76b086793SStefan Roese  * board/config.h - configuration options, board specific
86b086793SStefan Roese  */
96b086793SStefan Roese 
106b086793SStefan Roese #ifndef __CONFIG_H
116b086793SStefan Roese #define __CONFIG_H
126b086793SStefan Roese 
136b086793SStefan Roese #include <configs/x86-common.h>
146b086793SStefan Roese 
156b086793SStefan Roese /* Use BayTrail internal HS UART which is memory-mapped */
166b086793SStefan Roese #undef  CONFIG_SYS_NS16550_PORT_MAPPED
176b086793SStefan Roese 
18489b51daSStefan Roese /* Set the board specific parameters */
19489b51daSStefan Roese #define DEF_ENV_TFTPDIR		"theadorable-x86-dfi"
20489b51daSStefan Roese #define DEF_ENV_ETH_INIT	"usb reset"
21489b51daSStefan Roese #define DEF_ENV_UBUNTU_PART	1
22489b51daSStefan Roese #define DEF_ENV_UBUNTU_TTY	4	/* Use ttyS4 */
23489b51daSStefan Roese #define DEF_ENV_YOCTO_PART	2
24489b51daSStefan Roese #define DEF_ENV_YOCTO_TTY	1	/* Use ttyS1 */
256b086793SStefan Roese 
26489b51daSStefan Roese /*
27489b51daSStefan Roese  * Include the theadorable-x86 common options, macros and default
28489b51daSStefan Roese  * environment
29489b51daSStefan Roese  */
30489b51daSStefan Roese #include <configs/theadorable-x86-common.h>
316b086793SStefan Roese 
326b086793SStefan Roese #endif	/* __CONFIG_H */
33