blob: 94aa2736abddeb98c174eb2bbf4d88569264a4d5 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Stefan Roese82ceba22016-03-16 08:48:21 +01002/*
3 * Copyright (C) 2016 Stefan Roese <sr@denx.de>
Stefan Roese82ceba22016-03-16 08:48:21 +01004 */
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)
Stefan Roese82ceba22016-03-16 08:48:21 +010016
Stefan Roese82ceba22016-03-16 08:48:21 +010017#define CONFIG_STD_DEVICES_SETTINGS "stdin=serial\0" \
18 "stdout=serial\0" \
19 "stderr=serial\0"
20
Stefan Roese82ceba22016-03-16 08:48:21 +010021#define VIDEO_IO_OFFSET 0
22#define CONFIG_X86EMU_RAW_IO
Stefan Roese82ceba22016-03-16 08:48:21 +010023
24#define CONFIG_ENV_SECT_SIZE 0x1000
Stefan Roese303dfc22016-06-28 15:45:13 +020025#define CONFIG_ENV_OFFSET 0x006ef000
Stefan Roese82ceba22016-03-16 08:48:21 +010026
Stefan Roese82ceba22016-03-16 08:48:21 +010027#undef CONFIG_BOOTCOMMAND
Stefan Roese82ceba22016-03-16 08:48:21 +010028#define CONFIG_BOOTCOMMAND \
Stefan Roese303dfc22016-06-28 15:45:13 +020029 "load scsi 0:2 03000000 /boot/vmlinuz-${kernel-ver}-generic;" \
30 "load scsi 0:2 04000000 /boot/initrd.img-${kernel-ver}-generic;" \
Stefan Roese82ceba22016-03-16 08:48:21 +010031 "run boot"
32
33#undef CONFIG_EXTRA_ENV_SETTINGS
34#define CONFIG_EXTRA_ENV_SETTINGS \
Stefan Roese303dfc22016-06-28 15:45:13 +020035 "kernel-ver=4.4.0-22\0" \
Stefan Roese82ceba22016-03-16 08:48:21 +010036 "boot=zboot 03000000 0 04000000 ${filesize}\0" \
37 "upd_uboot=tftp 100000 conga/u-boot.rom;" \
Stefan Roese303dfc22016-06-28 15:45:13 +020038 "sf probe;sf update 100000 0 800000;saveenv\0"
Stefan Roese82ceba22016-03-16 08:48:21 +010039
40#define CONFIG_PREBOOT
41
42#endif /* __CONFIG_H */