blob: ba843e35a4081e0de199b568aea2462eca8a013e [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Bin Menga65b25d2015-05-07 21:34:08 +08002/*
3 * Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
Bin Menga65b25d2015-05-07 21:34:08 +08004 */
5
6/*
7 * board/config.h - configuration options, board specific
8 */
9
10#ifndef __CONFIG_H
11#define __CONFIG_H
12
Joshua Watt00f237e2019-07-03 12:45:32 -050013#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>
Bin Menga65b25d2015-05-07 21:34:08 +080023#include <configs/x86-common.h>
24
25#define CONFIG_SYS_MONITOR_LEN (1 << 20)
26
Bin Mengb6ff6ce2015-11-12 05:33:06 -080027#define CONFIG_STD_DEVICES_SETTINGS "stdin=serial,i8042-kbd\0" \
Bin Mengfcda8c32016-10-09 04:14:13 -070028 "stdout=serial,vidconsole\0" \
29 "stderr=serial,vidconsole\0"
Bin Menga65b25d2015-05-07 21:34:08 +080030
Bin Meng2aa3a7f2015-05-16 09:33:19 +080031/*
32 * ATA/SATA support for QEMU x86 targets
33 * - Only legacy IDE controller is supported for QEMU '-M pc' target
34 * - AHCI controller is supported for QEMU '-M q35' target
Bin Meng2aa3a7f2015-05-16 09:33:19 +080035 */
Bin Meng2aa3a7f2015-05-16 09:33:19 +080036
Bin Menga65b25d2015-05-07 21:34:08 +080037#endif /* __CONFIG_H */