Merge tag 'v9.1.0'
[qemu/ar7.git] / hw / ppc / meson.build
blob7cd91898699e63468a5461010b7fe6b81bb1ac7e
1 ppc_ss = ss.source_set()
2 ppc_ss.add(files(
3   'ppc.c',
4   'ppc_booke.c',
5 ))
6 ppc_ss.add(when: 'CONFIG_FDT_PPC', if_true: files('fdt.c'))
7 ppc_ss.add(when: 'CONFIG_FW_CFG_PPC', if_true: files('fw_cfg.c'))
9 # IBM pSeries (sPAPR)
10 ppc_ss.add(when: 'CONFIG_PSERIES', if_true: files(
11   'spapr.c',
12   'spapr_caps.c',
13   'spapr_vio.c',
14   'spapr_events.c',
15   'spapr_hcall.c',
16   'spapr_nested.c',
17   'spapr_iommu.c',
18   'spapr_rtas.c',
19   'spapr_pci.c',
20   'spapr_rtc.c',
21   'spapr_drc.c',
22   'spapr_cpu_core.c',
23   'spapr_ovec.c',
24   'spapr_irq.c',
25   'spapr_tpm_proxy.c',
26   'spapr_nvdimm.c',
27   'spapr_rtas_ddw.c',
28   'spapr_numa.c',
29   'pef.c',
31 ppc_ss.add(when: ['CONFIG_PSERIES', 'CONFIG_TCG'], if_true: files(
32   'spapr_vhyp_mmu.c',
34 ppc_ss.add(when: 'CONFIG_SPAPR_RNG', if_true: files('spapr_rng.c'))
35 if host_os == 'linux'
36   ppc_ss.add(when: 'CONFIG_PSERIES', if_true: files(
37     'spapr_pci_vfio.c',
38   ))
39 endif
41 # IBM PowerNV
42 ppc_ss.add(when: 'CONFIG_POWERNV', if_true: files(
43   'pnv.c',
44   'pnv_xscom.c',
45   'pnv_adu.c',
46   'pnv_core.c',
47   'pnv_i2c.c',
48   'pnv_lpc.c',
49   'pnv_psi.c',
50   'pnv_chiptod.c',
51   'pnv_occ.c',
52   'pnv_sbe.c',
53   'pnv_bmc.c',
54   'pnv_homer.c',
55   'pnv_pnor.c',
56   'pnv_nest_pervasive.c',
57   'pnv_n1_chiplet.c',
59 # PowerPC 4xx boards
60 ppc_ss.add(when: 'CONFIG_PPC405', if_true: files(
61   'ppc405_boards.c',
62   'ppc405_uc.c'))
63 ppc_ss.add(when: 'CONFIG_PPC440', if_true: files(
64   'ppc440_bamboo.c',
65   'ppc440_uc.c'))
66 ppc_ss.add(when: 'CONFIG_PPC4XX', if_true: files(
67   'ppc4xx_devs.c',
68   'ppc4xx_sdram.c'))
69 ppc_ss.add(when: 'CONFIG_SAM460EX', if_true: files('sam460ex.c'))
70 # PReP
71 ppc_ss.add(when: 'CONFIG_PREP', if_true: files('prep.c'))
72 ppc_ss.add(when: 'CONFIG_PREP', if_true: files('prep_systemio.c'))
73 ppc_ss.add(when: 'CONFIG_RS6000_MC', if_true: files('rs6000_mc.c'))
74 # OldWorld PowerMac
75 ppc_ss.add(when: 'CONFIG_MAC_OLDWORLD', if_true: files('mac_oldworld.c'))
76 # NewWorld PowerMac
77 ppc_ss.add(when: 'CONFIG_MAC_NEWWORLD', if_true: files('mac_newworld.c'))
78 # e500
79 ppc_ss.add(when: 'CONFIG_E500PLAT', if_true: files('e500plat.c'))
80 ppc_ss.add(when: 'CONFIG_MPC8544DS', if_true: files('mpc8544ds.c'))
81 ppc_ss.add(when: 'CONFIG_E500', if_true: files(
82   'e500.c',
83   'mpc8544_guts.c',
84   'ppce500_spin.c'
86 # PowerPC 440 Xilinx ML507 reference board.
87 ppc_ss.add(when: 'CONFIG_VIRTEX', if_true: files('virtex_ml507.c'))
88 # AmigaOne
89 ppc_ss.add(when: 'CONFIG_AMIGAONE', if_true: files('amigaone.c'))
90 # Pegasos2
91 ppc_ss.add(when: 'CONFIG_PEGASOS2', if_true: files('pegasos2.c'))
93 ppc_ss.add(when: 'CONFIG_VOF', if_true: files('vof.c'))
94 ppc_ss.add(when: ['CONFIG_VOF', 'CONFIG_PSERIES'], if_true: files('spapr_vof.c'))
96 hw_arch += {'ppc': ppc_ss}