]> git.proxmox.com Git - mirror_qemu.git/blame - hw/misc/meson.build
hw/misc: Introduce the Xilinx CFI interface
[mirror_qemu.git] / hw / misc / meson.build
CommitLineData
de6cd759
PMD
1system_ss.add(when: 'CONFIG_APPLESMC', if_true: files('applesmc.c'))
2system_ss.add(when: 'CONFIG_EDU', if_true: files('edu.c'))
3system_ss.add(when: 'CONFIG_FW_CFG_DMA', if_true: files('vmcoreinfo.c'))
4system_ss.add(when: 'CONFIG_ISA_DEBUG', if_true: files('debugexit.c'))
5system_ss.add(when: 'CONFIG_ISA_TESTDEV', if_true: files('pc-testdev.c'))
6system_ss.add(when: 'CONFIG_PCA9552', if_true: files('pca9552.c'))
7system_ss.add(when: 'CONFIG_PCI_TESTDEV', if_true: files('pci-testdev.c'))
8system_ss.add(when: 'CONFIG_UNIMP', if_true: files('unimp.c'))
9system_ss.add(when: 'CONFIG_EMPTY_SLOT', if_true: files('empty_slot.c'))
10system_ss.add(when: 'CONFIG_LED', if_true: files('led.c'))
11system_ss.add(when: 'CONFIG_PVPANIC_COMMON', if_true: files('pvpanic.c'))
721cdcae
MAL
12
13# ARM devices
de6cd759
PMD
14system_ss.add(when: 'CONFIG_PL310', if_true: files('arm_l2x0.c'))
15system_ss.add(when: 'CONFIG_INTEGRATOR_DEBUG', if_true: files('arm_integrator_debug.c'))
16system_ss.add(when: 'CONFIG_A9SCU', if_true: files('a9scu.c'))
17system_ss.add(when: 'CONFIG_ARM11SCU', if_true: files('arm11scu.c'))
721cdcae 18
de6cd759 19system_ss.add(when: 'CONFIG_ARM_V7M', if_true: files('armv7m_ras.c'))
2f9db77e 20
721cdcae 21# Mac devices
de6cd759 22system_ss.add(when: 'CONFIG_MOS6522', if_true: files('mos6522.c'))
721cdcae 23
0791bc02 24# virt devices
de6cd759 25system_ss.add(when: 'CONFIG_VIRT_CTRL', if_true: files('virt_ctrl.c'))
0791bc02 26
89ece6f7 27# RISC-V devices
de6cd759
PMD
28system_ss.add(when: 'CONFIG_MCHP_PFSOC_DMC', if_true: files('mchp_pfsoc_dmc.c'))
29system_ss.add(when: 'CONFIG_MCHP_PFSOC_IOSCB', if_true: files('mchp_pfsoc_ioscb.c'))
30system_ss.add(when: 'CONFIG_MCHP_PFSOC_SYSREG', if_true: files('mchp_pfsoc_sysreg.c'))
31system_ss.add(when: 'CONFIG_SIFIVE_TEST', if_true: files('sifive_test.c'))
32system_ss.add(when: 'CONFIG_SIFIVE_E_PRCI', if_true: files('sifive_e_prci.c'))
bf01a04f 33system_ss.add(when: 'CONFIG_SIFIVE_E_AON', if_true: files('sifive_e_aon.c'))
de6cd759
PMD
34system_ss.add(when: 'CONFIG_SIFIVE_U_OTP', if_true: files('sifive_u_otp.c'))
35system_ss.add(when: 'CONFIG_SIFIVE_U_PRCI', if_true: files('sifive_u_prci.c'))
89ece6f7 36
721cdcae
MAL
37subdir('macio')
38
de6cd759 39system_ss.add(when: 'CONFIG_IVSHMEM_DEVICE', if_true: files('ivshmem.c'))
721cdcae 40
de6cd759
PMD
41system_ss.add(when: 'CONFIG_ALLWINNER_SRAMC', if_true: files('allwinner-sramc.c'))
42system_ss.add(when: 'CONFIG_ALLWINNER_A10_CCM', if_true: files('allwinner-a10-ccm.c'))
43system_ss.add(when: 'CONFIG_ALLWINNER_A10_DRAMC', if_true: files('allwinner-a10-dramc.c'))
44system_ss.add(when: 'CONFIG_ALLWINNER_H3', if_true: files('allwinner-h3-ccu.c'))
721cdcae 45specific_ss.add(when: 'CONFIG_ALLWINNER_H3', if_true: files('allwinner-cpucfg.c'))
de6cd759
PMD
46system_ss.add(when: 'CONFIG_ALLWINNER_H3', if_true: files('allwinner-h3-dramc.c'))
47system_ss.add(when: 'CONFIG_ALLWINNER_H3', if_true: files('allwinner-h3-sysctrl.c'))
48system_ss.add(when: 'CONFIG_ALLWINNER_H3', if_true: files('allwinner-sid.c'))
49system_ss.add(when: 'CONFIG_ALLWINNER_R40', if_true: files('allwinner-r40-ccu.c'))
50system_ss.add(when: 'CONFIG_ALLWINNER_R40', if_true: files('allwinner-r40-dramc.c'))
51system_ss.add(when: 'CONFIG_AXP2XX_PMU', if_true: files('axp2xx.c'))
52system_ss.add(when: 'CONFIG_REALVIEW', if_true: files('arm_sysctl.c'))
53system_ss.add(when: 'CONFIG_NSERIES', if_true: files('cbus.c'))
54system_ss.add(when: 'CONFIG_ECCMEMCTL', if_true: files('eccmemctl.c'))
55system_ss.add(when: 'CONFIG_EXYNOS4', if_true: files('exynos4210_pmu.c', 'exynos4210_clk.c', 'exynos4210_rng.c'))
56system_ss.add(when: 'CONFIG_IMX', if_true: files(
721cdcae
MAL
57 'imx25_ccm.c',
58 'imx31_ccm.c',
59 'imx6_ccm.c',
3d81e8cf 60 'imx6_src.c',
721cdcae
MAL
61 'imx6ul_ccm.c',
62 'imx7_ccm.c',
12517bc9 63 'imx7_src.c',
721cdcae
MAL
64 'imx7_gpr.c',
65 'imx7_snvs.c',
66 'imx_ccm.c',
67 'imx_rngc.c',
68))
de6cd759
PMD
69system_ss.add(when: 'CONFIG_MAINSTONE', if_true: files('mst_fpga.c'))
70system_ss.add(when: 'CONFIG_NPCM7XX', if_true: files(
e331f79e 71 'npcm7xx_clk.c',
e5a7ba87 72 'npcm7xx_gcr.c',
380a37e4 73 'npcm7xx_mft.c',
1e943c58 74 'npcm7xx_pwm.c',
326ccfe2 75 'npcm7xx_rng.c',
e5a7ba87 76))
de6cd759 77system_ss.add(when: 'CONFIG_OMAP', if_true: files(
721cdcae
MAL
78 'omap_clk.c',
79 'omap_gpmc.c',
80 'omap_l4.c',
81 'omap_sdrc.c',
82 'omap_tap.c',
83))
de6cd759 84system_ss.add(when: 'CONFIG_RASPI', if_true: files(
721cdcae
MAL
85 'bcm2835_mbox.c',
86 'bcm2835_mphi.c',
87 'bcm2835_property.c',
88 'bcm2835_rng.c',
89 'bcm2835_thermal.c',
fc14176b 90 'bcm2835_cprman.c',
38f2cfbb 91 'bcm2835_powermgt.c',
721cdcae 92))
de6cd759
PMD
93system_ss.add(when: 'CONFIG_SLAVIO', if_true: files('slavio_misc.c'))
94system_ss.add(when: 'CONFIG_ZYNQ', if_true: files('zynq_slcr.c'))
95system_ss.add(when: 'CONFIG_XLNX_ZYNQMP_ARM', if_true: files('xlnx-zynqmp-crf.c'))
96system_ss.add(when: 'CONFIG_XLNX_ZYNQMP_ARM', if_true: files('xlnx-zynqmp-apu-ctrl.c'))
369e5cb0 97specific_ss.add(when: 'CONFIG_XLNX_VERSAL', if_true: files('xlnx-versal-crl.c'))
de6cd759 98system_ss.add(when: 'CONFIG_XLNX_VERSAL', if_true: files(
8c1c0a1b
FI
99 'xlnx-versal-xramc.c',
100 'xlnx-versal-pmc-iou-slcr.c',
5a8559e2 101 'xlnx-cfi-if.c',
8c1c0a1b 102))
de6cd759
PMD
103system_ss.add(when: 'CONFIG_STM32F2XX_SYSCFG', if_true: files('stm32f2xx_syscfg.c'))
104system_ss.add(when: 'CONFIG_STM32F4XX_SYSCFG', if_true: files('stm32f4xx_syscfg.c'))
105system_ss.add(when: 'CONFIG_STM32F4XX_EXTI', if_true: files('stm32f4xx_exti.c'))
106system_ss.add(when: 'CONFIG_MPS2_FPGAIO', if_true: files('mps2-fpgaio.c'))
107system_ss.add(when: 'CONFIG_MPS2_SCC', if_true: files('mps2-scc.c'))
108
109system_ss.add(when: 'CONFIG_TZ_MPC', if_true: files('tz-mpc.c'))
110system_ss.add(when: 'CONFIG_TZ_MSC', if_true: files('tz-msc.c'))
111system_ss.add(when: 'CONFIG_TZ_PPC', if_true: files('tz-ppc.c'))
112system_ss.add(when: 'CONFIG_IOTKIT_SECCTL', if_true: files('iotkit-secctl.c'))
113system_ss.add(when: 'CONFIG_IOTKIT_SYSCTL', if_true: files('iotkit-sysctl.c'))
114system_ss.add(when: 'CONFIG_IOTKIT_SYSINFO', if_true: files('iotkit-sysinfo.c'))
115system_ss.add(when: 'CONFIG_ARMSSE_CPU_PWRCTRL', if_true: files('armsse-cpu-pwrctrl.c'))
116system_ss.add(when: 'CONFIG_ARMSSE_CPUID', if_true: files('armsse-cpuid.c'))
117system_ss.add(when: 'CONFIG_ARMSSE_MHU', if_true: files('armsse-mhu.c'))
118
119system_ss.add(when: 'CONFIG_PVPANIC_ISA', if_true: files('pvpanic-isa.c'))
120system_ss.add(when: 'CONFIG_PVPANIC_PCI', if_true: files('pvpanic-pci.c'))
121system_ss.add(when: 'CONFIG_AUX', if_true: files('auxbus.c'))
122system_ss.add(when: 'CONFIG_ASPEED_SOC', if_true: files(
c5475b3f 123 'aspeed_hace.c',
119df56b 124 'aspeed_i3c.c',
2ecf1726
CLG
125 'aspeed_lpc.c',
126 'aspeed_scu.c',
e1acf581 127 'aspeed_sbc.c',
2ecf1726 128 'aspeed_sdmc.c',
55c57023
PD
129 'aspeed_xdma.c',
130 'aspeed_peci.c'))
2ecf1726 131
de6cd759
PMD
132system_ss.add(when: 'CONFIG_MSF2', if_true: files('msf2-sysreg.c'))
133system_ss.add(when: 'CONFIG_NRF51_SOC', if_true: files('nrf51_rng.c'))
721cdcae 134
de6cd759 135system_ss.add(when: 'CONFIG_GRLIB', if_true: files('grlib_ahb_apb_pnp.c'))
721cdcae 136
de6cd759 137system_ss.add(when: 'CONFIG_I2C', if_true: files('i2c-echo.c'))
b14037f3 138
721cdcae
MAL
139specific_ss.add(when: 'CONFIG_AVR_POWER', if_true: files('avr_power.c'))
140
721cdcae
MAL
141specific_ss.add(when: 'CONFIG_MAC_VIA', if_true: files('mac_via.c'))
142
143specific_ss.add(when: 'CONFIG_MIPS_CPS', if_true: files('mips_cmgcr.c', 'mips_cpc.c'))
144specific_ss.add(when: 'CONFIG_MIPS_ITU', if_true: files('mips_itu.c'))
dccb92b5 145
de6cd759 146system_ss.add(when: 'CONFIG_SBSA_REF', if_true: files('sbsa_ec.c'))
45f569a1
MCA
147
148# HPPA devices
de6cd759 149system_ss.add(when: 'CONFIG_LASI', if_true: files('lasi.c'))