aboutsummaryrefslogtreecommitdiff
path: root/default-configs/devices
diff options
context:
space:
mode:
Diffstat (limited to 'default-configs/devices')
-rw-r--r--default-configs/devices/aarch64-softmmu.mak8
-rw-r--r--default-configs/devices/alpha-softmmu.mak10
-rw-r--r--default-configs/devices/arm-softmmu.mak46
-rw-r--r--default-configs/devices/avr-softmmu.mak5
-rw-r--r--default-configs/devices/cris-softmmu.mak5
-rw-r--r--default-configs/devices/hppa-softmmu.mak9
-rw-r--r--default-configs/devices/i386-softmmu.mak31
-rw-r--r--default-configs/devices/lm32-softmmu.mak12
-rw-r--r--default-configs/devices/m68k-softmmu.mak10
-rw-r--r--default-configs/devices/microblaze-softmmu.mak7
-rw-r--r--default-configs/devices/microblazeel-softmmu.mak3
-rw-r--r--default-configs/devices/mips-softmmu-common.mak42
-rw-r--r--default-configs/devices/mips-softmmu.mak3
-rw-r--r--default-configs/devices/mips64-softmmu.mak4
-rw-r--r--default-configs/devices/mips64el-softmmu.mak14
-rw-r--r--default-configs/devices/mipsel-softmmu.mak3
-rw-r--r--default-configs/devices/moxie-softmmu.mak5
-rw-r--r--default-configs/devices/nios2-softmmu.mak8
-rw-r--r--default-configs/devices/or1k-softmmu.mak5
-rw-r--r--default-configs/devices/ppc-softmmu.mak18
-rw-r--r--default-configs/devices/ppc64-softmmu.mak11
-rw-r--r--default-configs/devices/riscv32-softmmu.mak13
-rw-r--r--default-configs/devices/riscv64-softmmu.mak13
-rw-r--r--default-configs/devices/rx-softmmu.mak3
-rw-r--r--default-configs/devices/s390x-softmmu.mak13
-rw-r--r--default-configs/devices/sh4-softmmu.mak11
-rw-r--r--default-configs/devices/sh4eb-softmmu.mak3
-rw-r--r--default-configs/devices/sparc-softmmu.mak11
-rw-r--r--default-configs/devices/sparc64-softmmu.mak12
-rw-r--r--default-configs/devices/tricore-softmmu.mak1
-rw-r--r--default-configs/devices/unicore32-softmmu.mak6
-rw-r--r--default-configs/devices/x86_64-softmmu.mak3
-rw-r--r--default-configs/devices/xtensa-softmmu.mak9
-rw-r--r--default-configs/devices/xtensaeb-softmmu.mak3
34 files changed, 360 insertions, 0 deletions
diff --git a/default-configs/devices/aarch64-softmmu.mak b/default-configs/devices/aarch64-softmmu.mak
new file mode 100644
index 0000000000..958b1e08e4
--- /dev/null
+++ b/default-configs/devices/aarch64-softmmu.mak
@@ -0,0 +1,8 @@
+# Default configuration for aarch64-softmmu
+
+# We support all the 32 bit boards so need all their config
+include arm-softmmu.mak
+
+CONFIG_XLNX_ZYNQMP_ARM=y
+CONFIG_XLNX_VERSAL=y
+CONFIG_SBSA_REF=y
diff --git a/default-configs/devices/alpha-softmmu.mak b/default-configs/devices/alpha-softmmu.mak
new file mode 100644
index 0000000000..d186fe8e9b
--- /dev/null
+++ b/default-configs/devices/alpha-softmmu.mak
@@ -0,0 +1,10 @@
+# Default configuration for alpha-softmmu
+
+# Uncomment the following lines to disable these optional devices:
+#
+#CONFIG_PCI_DEVICES=n
+#CONFIG_TEST_DEVICES=n
+
+# Boards:
+#
+CONFIG_DP264=y
diff --git a/default-configs/devices/arm-softmmu.mak b/default-configs/devices/arm-softmmu.mak
new file mode 100644
index 0000000000..9a94ebd0be
--- /dev/null
+++ b/default-configs/devices/arm-softmmu.mak
@@ -0,0 +1,46 @@
+# Default configuration for arm-softmmu
+
+# TODO: ARM_V7M is currently always required - make this more flexible!
+CONFIG_ARM_V7M=y
+
+# CONFIG_PCI_DEVICES=n
+# CONFIG_TEST_DEVICES=n
+
+CONFIG_ARM_VIRT=y
+CONFIG_CUBIEBOARD=y
+CONFIG_EXYNOS4=y
+CONFIG_HIGHBANK=y
+CONFIG_INTEGRATOR=y
+CONFIG_FSL_IMX31=y
+CONFIG_MUSICPAL=y
+CONFIG_MUSCA=y
+CONFIG_CHEETAH=y
+CONFIG_SX1=y
+CONFIG_NSERIES=y
+CONFIG_STELLARIS=y
+CONFIG_REALVIEW=y
+CONFIG_VERSATILE=y
+CONFIG_VEXPRESS=y
+CONFIG_ZYNQ=y
+CONFIG_MAINSTONE=y
+CONFIG_GUMSTIX=y
+CONFIG_SPITZ=y
+CONFIG_TOSA=y
+CONFIG_Z2=y
+CONFIG_NPCM7XX=y
+CONFIG_COLLIE=y
+CONFIG_ASPEED_SOC=y
+CONFIG_NETDUINO2=y
+CONFIG_NETDUINOPLUS2=y
+CONFIG_MPS2=y
+CONFIG_RASPI=y
+CONFIG_DIGIC=y
+CONFIG_SABRELITE=y
+CONFIG_EMCRAFT_SF2=y
+CONFIG_MICROBIT=y
+CONFIG_FSL_IMX25=y
+CONFIG_FSL_IMX7=y
+CONFIG_FSL_IMX6UL=y
+CONFIG_SEMIHOSTING=y
+CONFIG_ALLWINNER_H3=y
+CONFIG_ACPI_APEI=y
diff --git a/default-configs/devices/avr-softmmu.mak b/default-configs/devices/avr-softmmu.mak
new file mode 100644
index 0000000000..80218add98
--- /dev/null
+++ b/default-configs/devices/avr-softmmu.mak
@@ -0,0 +1,5 @@
+# Default configuration for avr-softmmu
+
+# Boards:
+#
+CONFIG_ARDUINO=y
diff --git a/default-configs/devices/cris-softmmu.mak b/default-configs/devices/cris-softmmu.mak
new file mode 100644
index 0000000000..5932cf4d06
--- /dev/null
+++ b/default-configs/devices/cris-softmmu.mak
@@ -0,0 +1,5 @@
+# Default configuration for cris-softmmu
+
+# Boards:
+#
+CONFIG_AXIS=y
diff --git a/default-configs/devices/hppa-softmmu.mak b/default-configs/devices/hppa-softmmu.mak
new file mode 100644
index 0000000000..b64c5eb3ff
--- /dev/null
+++ b/default-configs/devices/hppa-softmmu.mak
@@ -0,0 +1,9 @@
+# Default configuration for hppa-softmmu
+
+# Uncomment the following lines to disable these optional devices:
+#
+#CONFIG_PCI_DEVICES=n
+
+# Boards:
+#
+CONFIG_DINO=y
diff --git a/default-configs/devices/i386-softmmu.mak b/default-configs/devices/i386-softmmu.mak
new file mode 100644
index 0000000000..84d1a2487c
--- /dev/null
+++ b/default-configs/devices/i386-softmmu.mak
@@ -0,0 +1,31 @@
+# Default configuration for i386-softmmu
+
+# Uncomment the following lines to disable these optional devices:
+#
+#CONFIG_AMD_IOMMU=n
+#CONFIG_APPLESMC=n
+#CONFIG_FDC=n
+#CONFIG_HPET=n
+#CONFIG_HYPERV=n
+#CONFIG_ISA_DEBUG=n
+#CONFIG_ISA_IPMI_BT=n
+#CONFIG_ISA_IPMI_KCS=n
+#CONFIG_PCI_IPMI_KCS=n
+#CONFIG_PCI_IPMI_BT=n
+#CONFIG_IPMI_SSIF=n
+#CONFIG_PCI_DEVICES=n
+#CONFIG_PVPANIC=n
+#CONFIG_QXL=n
+#CONFIG_SEV=n
+#CONFIG_SGA=n
+#CONFIG_TEST_DEVICES=n
+#CONFIG_TPM_CRB=n
+#CONFIG_TPM_TIS_ISA=n
+#CONFIG_VTD=n
+
+# Boards:
+#
+CONFIG_ISAPC=y
+CONFIG_I440FX=y
+CONFIG_Q35=y
+CONFIG_MICROVM=y
diff --git a/default-configs/devices/lm32-softmmu.mak b/default-configs/devices/lm32-softmmu.mak
new file mode 100644
index 0000000000..115b3e34c9
--- /dev/null
+++ b/default-configs/devices/lm32-softmmu.mak
@@ -0,0 +1,12 @@
+# Default configuration for lm32-softmmu
+
+# Uncomment the following lines to disable these optional devices:
+#
+#CONFIG_MILKYMIST_TMU2=n # disabling it actually causes compile-time failures
+
+CONFIG_SEMIHOSTING=y
+
+# Boards:
+#
+CONFIG_LM32=y
+CONFIG_MILKYMIST=y
diff --git a/default-configs/devices/m68k-softmmu.mak b/default-configs/devices/m68k-softmmu.mak
new file mode 100644
index 0000000000..6629fd2aa3
--- /dev/null
+++ b/default-configs/devices/m68k-softmmu.mak
@@ -0,0 +1,10 @@
+# Default configuration for m68k-softmmu
+
+CONFIG_SEMIHOSTING=y
+
+# Boards:
+#
+CONFIG_AN5206=y
+CONFIG_MCF5208=y
+CONFIG_NEXTCUBE=y
+CONFIG_Q800=y
diff --git a/default-configs/devices/microblaze-softmmu.mak b/default-configs/devices/microblaze-softmmu.mak
new file mode 100644
index 0000000000..db8c6e4bba
--- /dev/null
+++ b/default-configs/devices/microblaze-softmmu.mak
@@ -0,0 +1,7 @@
+# Default configuration for microblaze-softmmu
+
+# Boards:
+#
+CONFIG_PETALOGIX_S3ADSP1800=y
+CONFIG_PETALOGIX_ML605=y
+CONFIG_XLNX_ZYNQMP_PMU=y
diff --git a/default-configs/devices/microblazeel-softmmu.mak b/default-configs/devices/microblazeel-softmmu.mak
new file mode 100644
index 0000000000..2fcf442fc7
--- /dev/null
+++ b/default-configs/devices/microblazeel-softmmu.mak
@@ -0,0 +1,3 @@
+# Default configuration for microblazeel-softmmu
+
+include microblaze-softmmu.mak
diff --git a/default-configs/devices/mips-softmmu-common.mak b/default-configs/devices/mips-softmmu-common.mak
new file mode 100644
index 0000000000..da29c6c0b2
--- /dev/null
+++ b/default-configs/devices/mips-softmmu-common.mak
@@ -0,0 +1,42 @@
+# Common mips*-softmmu CONFIG defines
+
+# CONFIG_SEMIHOSTING is always required on this architecture
+CONFIG_SEMIHOSTING=y
+
+CONFIG_ISA_BUS=y
+CONFIG_PCI=y
+CONFIG_PCI_DEVICES=y
+CONFIG_VGA_ISA=y
+CONFIG_VGA_ISA_MM=y
+CONFIG_VGA_CIRRUS=y
+CONFIG_VMWARE_VGA=y
+CONFIG_SERIAL=y
+CONFIG_SERIAL_ISA=y
+CONFIG_PARALLEL=y
+CONFIG_I8254=y
+CONFIG_PCSPK=y
+CONFIG_PCKBD=y
+CONFIG_FDC=y
+CONFIG_ACPI=y
+CONFIG_ACPI_X86=y
+CONFIG_ACPI_MEMORY_HOTPLUG=y
+CONFIG_ACPI_NVDIMM=y
+CONFIG_ACPI_CPU_HOTPLUG=y
+CONFIG_APM=y
+CONFIG_I8257=y
+CONFIG_PIIX4=y
+CONFIG_IDE_ISA=y
+CONFIG_IDE_PIIX=y
+CONFIG_PFLASH_CFI01=y
+CONFIG_I8259=y
+CONFIG_MC146818RTC=y
+CONFIG_EMPTY_SLOT=y
+CONFIG_MIPS_CPS=y
+CONFIG_MIPS_ITU=y
+CONFIG_R4K=y
+CONFIG_MALTA=y
+CONFIG_PCNET_PCI=y
+CONFIG_MIPSSIM=y
+CONFIG_ACPI_SMBUS=y
+CONFIG_SMBUS_EEPROM=y
+CONFIG_TEST_DEVICES=y
diff --git a/default-configs/devices/mips-softmmu.mak b/default-configs/devices/mips-softmmu.mak
new file mode 100644
index 0000000000..9fede6e00f
--- /dev/null
+++ b/default-configs/devices/mips-softmmu.mak
@@ -0,0 +1,3 @@
+# Default configuration for mips-softmmu
+
+include mips-softmmu-common.mak
diff --git a/default-configs/devices/mips64-softmmu.mak b/default-configs/devices/mips64-softmmu.mak
new file mode 100644
index 0000000000..a169738635
--- /dev/null
+++ b/default-configs/devices/mips64-softmmu.mak
@@ -0,0 +1,4 @@
+# Default configuration for mips64-softmmu
+
+include mips-softmmu-common.mak
+CONFIG_JAZZ=y
diff --git a/default-configs/devices/mips64el-softmmu.mak b/default-configs/devices/mips64el-softmmu.mak
new file mode 100644
index 0000000000..9f8a3ef156
--- /dev/null
+++ b/default-configs/devices/mips64el-softmmu.mak
@@ -0,0 +1,14 @@
+# Default configuration for mips64el-softmmu
+
+include mips-softmmu-common.mak
+CONFIG_IDE_VIA=y
+CONFIG_FULOONG=y
+CONFIG_ATI_VGA=y
+CONFIG_RTL8139_PCI=y
+CONFIG_JAZZ=y
+CONFIG_VT82C686=y
+CONFIG_AHCI=y
+CONFIG_MIPS_BOSTON=y
+CONFIG_FITLOADER=y
+CONFIG_PCI_EXPRESS=y
+CONFIG_PCI_EXPRESS_XILINX=y
diff --git a/default-configs/devices/mipsel-softmmu.mak b/default-configs/devices/mipsel-softmmu.mak
new file mode 100644
index 0000000000..a7f6059484
--- /dev/null
+++ b/default-configs/devices/mipsel-softmmu.mak
@@ -0,0 +1,3 @@
+# Default configuration for mipsel-softmmu
+
+include mips-softmmu-common.mak
diff --git a/default-configs/devices/moxie-softmmu.mak b/default-configs/devices/moxie-softmmu.mak
new file mode 100644
index 0000000000..bd50da3c58
--- /dev/null
+++ b/default-configs/devices/moxie-softmmu.mak
@@ -0,0 +1,5 @@
+# Default configuration for moxie-softmmu
+
+# Boards:
+#
+CONFIG_MOXIESIM=y
diff --git a/default-configs/devices/nios2-softmmu.mak b/default-configs/devices/nios2-softmmu.mak
new file mode 100644
index 0000000000..1bc4082ea9
--- /dev/null
+++ b/default-configs/devices/nios2-softmmu.mak
@@ -0,0 +1,8 @@
+# Default configuration for nios2-softmmu
+
+CONFIG_SEMIHOSTING=y
+
+# Boards:
+#
+CONFIG_NIOS2_10M50=y
+CONFIG_NIOS2_GENERIC_NOMMU=y
diff --git a/default-configs/devices/or1k-softmmu.mak b/default-configs/devices/or1k-softmmu.mak
new file mode 100644
index 0000000000..168101c39a
--- /dev/null
+++ b/default-configs/devices/or1k-softmmu.mak
@@ -0,0 +1,5 @@
+# Default configuration for or1k-softmmu
+
+# Boards:
+#
+CONFIG_OR1K_SIM=y
diff --git a/default-configs/devices/ppc-softmmu.mak b/default-configs/devices/ppc-softmmu.mak
new file mode 100644
index 0000000000..61b78b844d
--- /dev/null
+++ b/default-configs/devices/ppc-softmmu.mak
@@ -0,0 +1,18 @@
+# Default configuration for ppc-softmmu
+
+# For embedded PPCs:
+CONFIG_DS1338=y
+CONFIG_E500=y
+CONFIG_PPC405=y
+CONFIG_PPC440=y
+CONFIG_VIRTEX=y
+
+# For Sam460ex
+CONFIG_SAM460EX=y
+
+# For Macs
+CONFIG_MAC_OLDWORLD=y
+CONFIG_MAC_NEWWORLD=y
+
+# For PReP
+CONFIG_PREP=y
diff --git a/default-configs/devices/ppc64-softmmu.mak b/default-configs/devices/ppc64-softmmu.mak
new file mode 100644
index 0000000000..ae0841fa3a
--- /dev/null
+++ b/default-configs/devices/ppc64-softmmu.mak
@@ -0,0 +1,11 @@
+# Default configuration for ppc64-softmmu
+
+# Include all 32-bit boards
+include ppc-softmmu.mak
+
+# For PowerNV
+CONFIG_POWERNV=y
+
+# For pSeries
+CONFIG_PSERIES=y
+CONFIG_NVDIMM=y
diff --git a/default-configs/devices/riscv32-softmmu.mak b/default-configs/devices/riscv32-softmmu.mak
new file mode 100644
index 0000000000..94a236c9c2
--- /dev/null
+++ b/default-configs/devices/riscv32-softmmu.mak
@@ -0,0 +1,13 @@
+# Default configuration for riscv32-softmmu
+
+# Uncomment the following lines to disable these optional devices:
+#
+#CONFIG_PCI_DEVICES=n
+
+# Boards:
+#
+CONFIG_SPIKE=y
+CONFIG_SIFIVE_E=y
+CONFIG_SIFIVE_U=y
+CONFIG_RISCV_VIRT=y
+CONFIG_OPENTITAN=y
diff --git a/default-configs/devices/riscv64-softmmu.mak b/default-configs/devices/riscv64-softmmu.mak
new file mode 100644
index 0000000000..76b6195648
--- /dev/null
+++ b/default-configs/devices/riscv64-softmmu.mak
@@ -0,0 +1,13 @@
+# Default configuration for riscv64-softmmu
+
+# Uncomment the following lines to disable these optional devices:
+#
+#CONFIG_PCI_DEVICES=n
+
+# Boards:
+#
+CONFIG_SPIKE=y
+CONFIG_SIFIVE_E=y
+CONFIG_SIFIVE_U=y
+CONFIG_RISCV_VIRT=y
+CONFIG_MICROCHIP_PFSOC=y
diff --git a/default-configs/devices/rx-softmmu.mak b/default-configs/devices/rx-softmmu.mak
new file mode 100644
index 0000000000..df2b4e4f42
--- /dev/null
+++ b/default-configs/devices/rx-softmmu.mak
@@ -0,0 +1,3 @@
+# Default configuration for rx-softmmu
+
+CONFIG_RX_GDBSIM=y
diff --git a/default-configs/devices/s390x-softmmu.mak b/default-configs/devices/s390x-softmmu.mak
new file mode 100644
index 0000000000..f2287a133f
--- /dev/null
+++ b/default-configs/devices/s390x-softmmu.mak
@@ -0,0 +1,13 @@
+# Default configuration for s390x-softmmu
+
+# Uncomment the following lines to disable these optional devices:
+#
+#CONFIG_TERMINAL3270=n
+#CONFIG_VFIO_AP=n
+#CONFIG_VFIO_CCW=n
+#CONFIG_VIRTIO_PCI=n
+#CONFIG_WDT_DIAG288=n
+
+# Boards:
+#
+CONFIG_S390_CCW_VIRTIO=y
diff --git a/default-configs/devices/sh4-softmmu.mak b/default-configs/devices/sh4-softmmu.mak
new file mode 100644
index 0000000000..565e8b0b5d
--- /dev/null
+++ b/default-configs/devices/sh4-softmmu.mak
@@ -0,0 +1,11 @@
+# Default configuration for sh4eb-softmmu
+
+# Uncomment the following lines to disable these optional devices:
+#
+#CONFIG_PCI_DEVICES=n
+#CONFIG_TEST_DEVICES=n
+
+# Boards:
+#
+CONFIG_R2D=y
+CONFIG_SHIX=y
diff --git a/default-configs/devices/sh4eb-softmmu.mak b/default-configs/devices/sh4eb-softmmu.mak
new file mode 100644
index 0000000000..522a7a50fa
--- /dev/null
+++ b/default-configs/devices/sh4eb-softmmu.mak
@@ -0,0 +1,3 @@
+# Default configuration for sh4eb-softmmu
+
+include sh4-softmmu.mak
diff --git a/default-configs/devices/sparc-softmmu.mak b/default-configs/devices/sparc-softmmu.mak
new file mode 100644
index 0000000000..ee85218115
--- /dev/null
+++ b/default-configs/devices/sparc-softmmu.mak
@@ -0,0 +1,11 @@
+# Default configuration for sparc-softmmu
+
+# Uncomment the following lines to disable these optional devices:
+#
+#CONFIG_TCX=n
+#CONFIG_CG3=n
+
+# Boards:
+#
+CONFIG_SUN4M=y
+CONFIG_LEON3=y
diff --git a/default-configs/devices/sparc64-softmmu.mak b/default-configs/devices/sparc64-softmmu.mak
new file mode 100644
index 0000000000..e50030a229
--- /dev/null
+++ b/default-configs/devices/sparc64-softmmu.mak
@@ -0,0 +1,12 @@
+# Default configuration for sparc64-softmmu
+
+# Uncomment the following lines to disable these optional devices:
+#
+#CONFIG_PCI_DEVICES=n
+#CONFIG_SUNHME=n
+#CONFIG_TEST_DEVICES=n
+
+# Boards:
+#
+CONFIG_SUN4U=y
+CONFIG_NIAGARA=y
diff --git a/default-configs/devices/tricore-softmmu.mak b/default-configs/devices/tricore-softmmu.mak
new file mode 100644
index 0000000000..c397cff38a
--- /dev/null
+++ b/default-configs/devices/tricore-softmmu.mak
@@ -0,0 +1 @@
+CONFIG_TRICORE=y
diff --git a/default-configs/devices/unicore32-softmmu.mak b/default-configs/devices/unicore32-softmmu.mak
new file mode 100644
index 0000000000..899288e3d7
--- /dev/null
+++ b/default-configs/devices/unicore32-softmmu.mak
@@ -0,0 +1,6 @@
+# Default configuration for unicore32-softmmu
+
+# Boards:
+#
+CONFIG_PUV3=y
+CONFIG_SEMIHOSTING=y
diff --git a/default-configs/devices/x86_64-softmmu.mak b/default-configs/devices/x86_64-softmmu.mak
new file mode 100644
index 0000000000..64b2ee2960
--- /dev/null
+++ b/default-configs/devices/x86_64-softmmu.mak
@@ -0,0 +1,3 @@
+# Default configuration for x86_64-softmmu
+
+include i386-softmmu.mak
diff --git a/default-configs/devices/xtensa-softmmu.mak b/default-configs/devices/xtensa-softmmu.mak
new file mode 100644
index 0000000000..4fe1bf00c9
--- /dev/null
+++ b/default-configs/devices/xtensa-softmmu.mak
@@ -0,0 +1,9 @@
+# Default configuration for Xtensa
+
+CONFIG_SEMIHOSTING=y
+
+# Boards:
+#
+CONFIG_XTENSA_SIM=y
+CONFIG_XTENSA_VIRT=y
+CONFIG_XTENSA_XTFPGA=y
diff --git a/default-configs/devices/xtensaeb-softmmu.mak b/default-configs/devices/xtensaeb-softmmu.mak
new file mode 100644
index 0000000000..f7e48c750c
--- /dev/null
+++ b/default-configs/devices/xtensaeb-softmmu.mak
@@ -0,0 +1,3 @@
+# Default configuration for Xtensa
+
+include xtensa-softmmu.mak