x86: qemu: Fix non-working ramboot and nfsboot environment variables
[oweals/u-boot.git] / include / configs / qemu-x86.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
4  */
5
6 /*
7  * board/config.h - configuration options, board specific
8  */
9
10 #ifndef __CONFIG_H
11 #define __CONFIG_H
12
13 #include <linux/sizes.h>
14
15 #define BOOT_TARGET_DEVICES(func) \
16         func(USB, usb, 0) \
17         func(SCSI, scsi, 0) \
18         func(VIRTIO, virtio, 0) \
19         func(IDE, ide, 0) \
20         func(DHCP, dhcp, na)
21
22 #include <config_distro_bootcmd.h>
23 #include <configs/x86-common.h>
24
25 #undef CONFIG_ENV_SIZE
26 #define CONFIG_ENV_SIZE                 SZ_256K
27
28 #define CONFIG_PREBOOT "pci enum"
29
30 #define CONFIG_SYS_MONITOR_LEN          (1 << 20)
31
32 #define CONFIG_STD_DEVICES_SETTINGS     "stdin=serial,i8042-kbd\0" \
33                                         "stdout=serial,vidconsole\0" \
34                                         "stderr=serial,vidconsole\0"
35
36 /*
37  * ATA/SATA support for QEMU x86 targets
38  *   - Only legacy IDE controller is supported for QEMU '-M pc' target
39  *   - AHCI controller is supported for QEMU '-M q35' target
40  */
41 #define CONFIG_SYS_IDE_MAXBUS           2
42 #define CONFIG_SYS_IDE_MAXDEVICE        4
43 #define CONFIG_SYS_ATA_BASE_ADDR        0
44 #define CONFIG_SYS_ATA_DATA_OFFSET      0
45 #define CONFIG_SYS_ATA_REG_OFFSET       0
46 #define CONFIG_SYS_ATA_ALT_OFFSET       0
47 #define CONFIG_SYS_ATA_IDE0_OFFSET      0x1f0
48 #define CONFIG_SYS_ATA_IDE1_OFFSET      0x170
49 #define CONFIG_ATAPI
50
51 #define CONFIG_SPL_BOARD_LOAD_IMAGE
52
53 #endif  /* __CONFIG_H */