blob: 05389a435bee67a810ee5dc2cfc3a44c523142e7 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Stefan Roeseb1ad6c62016-08-15 13:50:49 +02002/*
3 * Copyright (C) 2016 Stefan Roese <sr@denx.de>
Stefan Roeseb1ad6c62016-08-15 13:50:49 +02004 */
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
Stefan Roeseb1ad6c62016-08-15 13:50:49 +020015#ifndef CONFIG_INTERNAL_UART
16/* Use BayTrail internal HS UART which is memory-mapped */
Stefan Roeseb1ad6c62016-08-15 13:50:49 +020017#endif
18
Tom Rinie02e5e52022-12-04 10:13:56 -050019#define CFG_STD_DEVICES_SETTINGS "stdin=serial\0" \
Stefan Roeseb1ad6c62016-08-15 13:50:49 +020020 "stdout=serial\0" \
21 "stderr=serial\0"
22
Stefan Roeseb1ad6c62016-08-15 13:50:49 +020023#define VIDEO_IO_OFFSET 0
Stefan Roeseb1ad6c62016-08-15 13:50:49 +020024
Tom Rini0613c362022-12-04 10:03:50 -050025#undef CFG_EXTRA_ENV_SETTINGS
26#define CFG_EXTRA_ENV_SETTINGS \
Stefan Roeseb1ad6c62016-08-15 13:50:49 +020027 "kernel-ver=4.4.0-24\0" \
28 "boot=zboot 03000000 0 04000000 ${filesize}\0" \
29 "upd_uboot=usb reset;tftp 100000 dfi/u-boot.rom;" \
30 "sf probe;sf update 100000 0 800000;saveenv\0"
31
Stefan Roeseb1ad6c62016-08-15 13:50:49 +020032#endif /* __CONFIG_H */