summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2024-01-31 08:49:35 -0500
committerTom Rini <[email protected]>2024-01-31 08:49:35 -0500
commit625e68ef65ef375e60b86984289d99c673fda30e (patch)
tree3ee7d98c10ca1f11d45b4954881e32bef7d18c37 /include
parent28760ce8640ff6266bd1c1c568a4a231576f3919 (diff)
parent6882255ac3107c58e1153311df8a8270087f8cb3 (diff)
Merge https://source.denx.de/u-boot/custodians/u-boot-riscv
* Add RISC-V falcon mode documentation * Add Clang build support * Add cmd to detect Debug Trigger Extension support * Add PWM setting for Unmatched board * Add Milk-V Duo board support * Add new device node and enable new config option for VisionFive2 board * Add second virtio device for RISC-V QEMU
Diffstat (limited to 'include')
-rw-r--r--include/configs/milkv_duo.h12
-rw-r--r--include/configs/qemu-riscv.h1
2 files changed, 13 insertions, 0 deletions
diff --git a/include/configs/milkv_duo.h b/include/configs/milkv_duo.h
new file mode 100644
index 00000000000..0b4109dc1f7
--- /dev/null
+++ b/include/configs/milkv_duo.h
@@ -0,0 +1,12 @@
+/* SPDX-License-Identifier: GPL-2.0+ */
+/*
+ * Copyright (c) 2024, Kongyang Liu <[email protected]>
+ *
+ */
+
+#ifndef __CONFIG_H
+#define __CONFIG_H
+
+#define CFG_SYS_SDRAM_BASE 0x80000000
+
+#endif /* __CONFIG_H */
diff --git a/include/configs/qemu-riscv.h b/include/configs/qemu-riscv.h
index 584559cfa32..2f594bfcfd6 100644
--- a/include/configs/qemu-riscv.h
+++ b/include/configs/qemu-riscv.h
@@ -23,6 +23,7 @@
#define BOOT_TARGET_DEVICES(func) \
func(VIRTIO, virtio, 0) \
+ func(VIRTIO, virtio, 1) \
func(SCSI, scsi, 0) \
func(DHCP, dhcp, na)