Stefan Roese | 82ceba2 | 2016-03-16 08:48:21 +0100 | [diff] [blame] | 1 | /* |
| 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 Roese | 82ceba2 | 2016-03-16 08:48:21 +0100 | [diff] [blame] | 17 | |
Stefan Roese | 82ceba2 | 2016-03-16 08:48:21 +0100 | [diff] [blame] | 18 | #define CONFIG_STD_DEVICES_SETTINGS "stdin=serial\0" \ |
| 19 | "stdout=serial\0" \ |
| 20 | "stderr=serial\0" |
| 21 | |
| 22 | #define CONFIG_SCSI_DEV_LIST \ |
| 23 | {PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_VALLEYVIEW_SATA}, \ |
| 24 | {PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_VALLEYVIEW_SATA_ALT} |
| 25 | |
Stefan Roese | 82ceba2 | 2016-03-16 08:48:21 +0100 | [diff] [blame] | 26 | #undef CONFIG_USB_MAX_CONTROLLER_COUNT |
| 27 | #define CONFIG_USB_MAX_CONTROLLER_COUNT 1 |
| 28 | |
| 29 | #define VIDEO_IO_OFFSET 0 |
| 30 | #define CONFIG_X86EMU_RAW_IO |
Stefan Roese | 82ceba2 | 2016-03-16 08:48:21 +0100 | [diff] [blame] | 31 | |
| 32 | #define CONFIG_ENV_SECT_SIZE 0x1000 |
Stefan Roese | 303dfc2 | 2016-06-28 15:45:13 +0200 | [diff] [blame] | 33 | #define CONFIG_ENV_OFFSET 0x006ef000 |
Stefan Roese | 82ceba2 | 2016-03-16 08:48:21 +0100 | [diff] [blame] | 34 | |
| 35 | #undef CONFIG_BOOTARGS |
| 36 | #undef CONFIG_BOOTCOMMAND |
| 37 | |
| 38 | #define CONFIG_BOOTARGS \ |
Stefan Roese | 303dfc2 | 2016-06-28 15:45:13 +0200 | [diff] [blame] | 39 | "root=/dev/sda2 ro quiet" |
Stefan Roese | 82ceba2 | 2016-03-16 08:48:21 +0100 | [diff] [blame] | 40 | #define CONFIG_BOOTCOMMAND \ |
Stefan Roese | 303dfc2 | 2016-06-28 15:45:13 +0200 | [diff] [blame] | 41 | "load scsi 0:2 03000000 /boot/vmlinuz-${kernel-ver}-generic;" \ |
| 42 | "load scsi 0:2 04000000 /boot/initrd.img-${kernel-ver}-generic;" \ |
Stefan Roese | 82ceba2 | 2016-03-16 08:48:21 +0100 | [diff] [blame] | 43 | "run boot" |
| 44 | |
| 45 | #undef CONFIG_EXTRA_ENV_SETTINGS |
| 46 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
Stefan Roese | 303dfc2 | 2016-06-28 15:45:13 +0200 | [diff] [blame] | 47 | "kernel-ver=4.4.0-22\0" \ |
Stefan Roese | 82ceba2 | 2016-03-16 08:48:21 +0100 | [diff] [blame] | 48 | "boot=zboot 03000000 0 04000000 ${filesize}\0" \ |
| 49 | "upd_uboot=tftp 100000 conga/u-boot.rom;" \ |
Stefan Roese | 303dfc2 | 2016-06-28 15:45:13 +0200 | [diff] [blame] | 50 | "sf probe;sf update 100000 0 800000;saveenv\0" |
Stefan Roese | 82ceba2 | 2016-03-16 08:48:21 +0100 | [diff] [blame] | 51 | |
| 52 | #define CONFIG_PREBOOT |
| 53 | |
| 54 | #endif /* __CONFIG_H */ |