16b086793SStefan Roese /*
26b086793SStefan Roese  * Copyright (C) 2016 Stefan Roese <sr@denx.de>
36b086793SStefan Roese  *
46b086793SStefan Roese  * SPDX-License-Identifier:	GPL-2.0+
56b086793SStefan Roese  */
66b086793SStefan Roese 
76b086793SStefan Roese /*
86b086793SStefan Roese  * board/config.h - configuration options, board specific
96b086793SStefan Roese  */
106b086793SStefan Roese 
116b086793SStefan Roese #ifndef __CONFIG_H
126b086793SStefan Roese #define __CONFIG_H
136b086793SStefan Roese 
146b086793SStefan Roese #include <configs/x86-common.h>
156b086793SStefan Roese 
166b086793SStefan Roese /* Use BayTrail internal HS UART which is memory-mapped */
176b086793SStefan Roese #undef  CONFIG_SYS_NS16550_PORT_MAPPED
186b086793SStefan Roese 
19*489b51daSStefan Roese /* Set the board specific parameters */
20*489b51daSStefan Roese #define DEF_ENV_TFTPDIR		"theadorable-x86-dfi"
21*489b51daSStefan Roese #define DEF_ENV_ETH_INIT	"usb reset"
22*489b51daSStefan Roese #define DEF_ENV_UBUNTU_PART	1
23*489b51daSStefan Roese #define DEF_ENV_UBUNTU_TTY	4	/* Use ttyS4 */
24*489b51daSStefan Roese #define DEF_ENV_YOCTO_PART	2
25*489b51daSStefan Roese #define DEF_ENV_YOCTO_TTY	1	/* Use ttyS1 */
266b086793SStefan Roese 
27*489b51daSStefan Roese /*
28*489b51daSStefan Roese  * Include the theadorable-x86 common options, macros and default
29*489b51daSStefan Roese  * environment
30*489b51daSStefan Roese  */
31*489b51daSStefan Roese #include <configs/theadorable-x86-common.h>
326b086793SStefan Roese 
336b086793SStefan Roese #endif	/* __CONFIG_H */
34