blob: 4bf3dc5c4c474083535bec5dd19b09c7436704a8 [file] [log] [blame]
Stefan Roese82ceba22016-03-16 08:48:21 +01001/*
2 * Copyright (C) 2016 Stefan Roese <sr@denx.de>
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7/*
8 * board/config.h - configuration options, board specific
9 */
10
11#ifndef __CONFIG_H
12#define __CONFIG_H
13
14#include <configs/x86-common.h>
15
16#define CONFIG_SYS_MONITOR_LEN (1 << 20)
Stefan Roese82ceba22016-03-16 08:48:21 +010017
Stefan Roese82ceba22016-03-16 08:48:21 +010018#define CONFIG_STD_DEVICES_SETTINGS "stdin=serial\0" \
19 "stdout=serial\0" \
20 "stderr=serial\0"
21
Stefan Roese82ceba22016-03-16 08:48:21 +010022#define VIDEO_IO_OFFSET 0
23#define CONFIG_X86EMU_RAW_IO
Stefan Roese82ceba22016-03-16 08:48:21 +010024
25#define CONFIG_ENV_SECT_SIZE 0x1000
Stefan Roese303dfc22016-06-28 15:45:13 +020026#define CONFIG_ENV_OFFSET 0x006ef000
Stefan Roese82ceba22016-03-16 08:48:21 +010027
Stefan Roese82ceba22016-03-16 08:48:21 +010028#undef CONFIG_BOOTCOMMAND
Stefan Roese82ceba22016-03-16 08:48:21 +010029#define CONFIG_BOOTCOMMAND \
Stefan Roese303dfc22016-06-28 15:45:13 +020030 "load scsi 0:2 03000000 /boot/vmlinuz-${kernel-ver}-generic;" \
31 "load scsi 0:2 04000000 /boot/initrd.img-${kernel-ver}-generic;" \
Stefan Roese82ceba22016-03-16 08:48:21 +010032 "run boot"
33
34#undef CONFIG_EXTRA_ENV_SETTINGS
35#define CONFIG_EXTRA_ENV_SETTINGS \
Stefan Roese303dfc22016-06-28 15:45:13 +020036 "kernel-ver=4.4.0-22\0" \
Stefan Roese82ceba22016-03-16 08:48:21 +010037 "boot=zboot 03000000 0 04000000 ${filesize}\0" \
38 "upd_uboot=tftp 100000 conga/u-boot.rom;" \
Stefan Roese303dfc22016-06-28 15:45:13 +020039 "sf probe;sf update 100000 0 800000;saveenv\0"
Stefan Roese82ceba22016-03-16 08:48:21 +010040
41#define CONFIG_PREBOOT
42
43#endif /* __CONFIG_H */