2020-08-07 13:10:23 +03:00
|
|
|
ppc_ss = ss.source_set()
|
|
|
|
ppc_ss.add(files(
|
|
|
|
'cpu-models.c',
|
|
|
|
'cpu.c',
|
2021-05-07 14:55:51 +03:00
|
|
|
'cpu_init.c',
|
2020-08-07 13:10:23 +03:00
|
|
|
'excp_helper.c',
|
|
|
|
'gdbstub.c',
|
2021-03-15 21:45:59 +03:00
|
|
|
'helper_regs.c',
|
2021-05-25 14:53:55 +03:00
|
|
|
))
|
|
|
|
|
|
|
|
ppc_ss.add(when: 'CONFIG_TCG', if_true: files(
|
|
|
|
'dfp_helper.c',
|
|
|
|
'fpu_helper.c',
|
2020-08-07 13:10:23 +03:00
|
|
|
'int_helper.c',
|
|
|
|
'mem_helper.c',
|
|
|
|
'misc_helper.c',
|
|
|
|
'timebase_helper.c',
|
|
|
|
'translate.c',
|
2022-03-02 08:51:36 +03:00
|
|
|
'power8-pmu.c',
|
2020-08-07 13:10:23 +03:00
|
|
|
))
|
|
|
|
|
|
|
|
ppc_ss.add(libdecnumber)
|
|
|
|
|
2021-06-01 22:35:17 +03:00
|
|
|
gen = [
|
|
|
|
decodetree.process('insn32.decode',
|
|
|
|
extra_args: '--static-decode=decode_insn32'),
|
|
|
|
decodetree.process('insn64.decode',
|
|
|
|
extra_args: ['--static-decode=decode_insn64',
|
|
|
|
'--insnwidth=64']),
|
|
|
|
]
|
2023-06-26 17:01:00 +03:00
|
|
|
ppc_ss.add(when: 'CONFIG_TCG', if_true: gen)
|
2021-06-01 22:35:17 +03:00
|
|
|
|
2020-08-07 13:10:23 +03:00
|
|
|
ppc_ss.add(when: 'CONFIG_USER_ONLY', if_true: files('user_only_helper.c'))
|
|
|
|
|
2023-06-13 16:33:47 +03:00
|
|
|
ppc_system_ss = ss.source_set()
|
|
|
|
ppc_system_ss.add(files(
|
2020-08-07 13:10:23 +03:00
|
|
|
'arch_dump.c',
|
|
|
|
'machine.c',
|
|
|
|
'mmu-hash32.c',
|
2024-05-13 02:28:08 +03:00
|
|
|
'mmu-booke.c',
|
2021-07-23 20:56:25 +03:00
|
|
|
'mmu_common.c',
|
2023-02-23 18:55:40 +03:00
|
|
|
'ppc-qmp-cmds.c',
|
2020-08-07 13:10:23 +03:00
|
|
|
))
|
2023-06-13 16:33:47 +03:00
|
|
|
ppc_system_ss.add(when: 'CONFIG_TCG', if_true: files(
|
2021-07-23 20:56:25 +03:00
|
|
|
'mmu_helper.c',
|
|
|
|
), if_false: files(
|
|
|
|
'tcg-stub.c',
|
2021-05-25 14:53:54 +03:00
|
|
|
))
|
2023-09-12 09:21:27 +03:00
|
|
|
ppc_system_ss.add(when: 'CONFIG_KVM', if_true: files('kvm.c'))
|
2021-05-25 14:53:54 +03:00
|
|
|
|
2023-06-13 16:33:47 +03:00
|
|
|
ppc_system_ss.add(when: 'TARGET_PPC64', if_true: files(
|
2020-08-07 13:10:23 +03:00
|
|
|
'compat.c',
|
|
|
|
'mmu-book3s-v3.c',
|
|
|
|
'mmu-hash64.c',
|
|
|
|
'mmu-radix64.c',
|
|
|
|
))
|
|
|
|
|
|
|
|
target_arch += {'ppc': ppc_ss}
|
2023-10-04 12:06:27 +03:00
|
|
|
target_system_arch += {'ppc': ppc_system_ss}
|