@@ -193,7 +193,7 @@ M: David Gibson <david@gibson.dropbear.id.au>
M: Alexander Graf <agraf@suse.de>
L: qemu-ppc@nongnu.org
S: Maintained
-F: target-ppc/
+F: target/ppc/
F: hw/ppc/
F: include/hw/ppc/
F: disas/ppc.c
@@ -279,7 +279,7 @@ F: target-mips/kvm.c
PPC
M: Alexander Graf <agraf@suse.de>
S: Maintained
-F: target-ppc/kvm.c
+F: target/ppc/kvm.c
S390
M: Christian Borntraeger <borntraeger@de.ibm.com>
@@ -159,7 +159,7 @@ trace-events-y += target/arm/trace-events
trace-events-y += target-i386/trace-events
trace-events-y += target-sparc/trace-events
trace-events-y += target-s390x/trace-events
-trace-events-y += target-ppc/trace-events
+trace-events-y += target/ppc/trace-events
trace-events-y += qom/trace-events
trace-events-y += linux-user/trace-events
trace-events-y += qapi/trace-events
@@ -9,7 +9,7 @@
#include "qemu/osdep.h"
#include "qapi/error.h"
-#include "target-ppc/cpu.h"
+#include "target/ppc/cpu.h"
#include "hw/ppc/fdt.h"
@@ -22,7 +22,7 @@
#include "sysemu/sysemu.h"
#include "sysemu/numa.h"
#include "hw/hw.h"
-#include "target-ppc/cpu.h"
+#include "target/ppc/cpu.h"
#include "qemu/log.h"
#include "hw/ppc/fdt.h"
#include "hw/ppc/ppc.h"
@@ -20,7 +20,7 @@
#include "sysemu/sysemu.h"
#include "qapi/error.h"
#include "qemu/log.h"
-#include "target-ppc/cpu.h"
+#include "target/ppc/cpu.h"
#include "hw/ppc/ppc.h"
#include "hw/ppc/pnv.h"
#include "hw/ppc/pnv_core.h"
@@ -19,7 +19,7 @@
#include "qemu/osdep.h"
#include "sysemu/sysemu.h"
-#include "target-ppc/cpu.h"
+#include "target/ppc/cpu.h"
#include "qapi/error.h"
#include "qemu/log.h"
@@ -21,7 +21,7 @@
#include "hw/hw.h"
#include "qemu/log.h"
#include "sysemu/kvm.h"
-#include "target-ppc/cpu.h"
+#include "target/ppc/cpu.h"
#include "hw/sysbus.h"
#include "hw/ppc/fdt.h"
@@ -8,14 +8,14 @@
*/
#include "hw/cpu/core.h"
#include "hw/ppc/spapr_cpu_core.h"
-#include "target-ppc/cpu.h"
+#include "target/ppc/cpu.h"
#include "hw/ppc/spapr.h"
#include "hw/boards.h"
#include "qapi/error.h"
#include "sysemu/cpus.h"
-#include "target-ppc/kvm_ppc.h"
+#include "kvm_ppc.h"
#include "hw/ppc/ppc.h"
-#include "target-ppc/mmu-hash64.h"
+#include "mmu-hash64.h"
#include "sysemu/numa.h"
static void spapr_cpu_reset(void *opaque)
@@ -11,7 +11,7 @@
#define PPC_FDT_H
#include "qemu/error-report.h"
-#include "target-ppc/cpu-qom.h"
+#include "cpu-qom.h"
#define _FDT(exp) \
do { \
@@ -1,7 +1,7 @@
#ifndef HW_PPC_H
#define HW_PPC_H
-#include "target-ppc/cpu-qom.h"
+#include "cpu-qom.h"
void ppc_set_irq(PowerPCCPU *cpu, int n_IRQ, int level);
@@ -11,7 +11,7 @@
#include "hw/qdev.h"
#include "hw/cpu/core.h"
-#include "target-ppc/cpu-qom.h"
+#include "cpu-qom.h"
#define TYPE_SPAPR_CPU_CORE "spapr-cpu-core"
#define SPAPR_CPU_CORE(obj) \
similarity index 100%
rename from target-ppc/Makefile.objs
rename to target/ppc/Makefile.objs
similarity index 100%
rename from target-ppc/STATUS
rename to target/ppc/STATUS
similarity index 100%
rename from target-ppc/arch_dump.c
rename to target/ppc/arch_dump.c
similarity index 100%
rename from target-ppc/cpu-models.c
rename to target/ppc/cpu-models.c
similarity index 100%
rename from target-ppc/cpu-models.h
rename to target/ppc/cpu-models.h
similarity index 100%
rename from target-ppc/cpu-qom.h
rename to target/ppc/cpu-qom.h
similarity index 100%
rename from target-ppc/cpu.h
rename to target/ppc/cpu.h
similarity index 100%
rename from target-ppc/dfp_helper.c
rename to target/ppc/dfp_helper.c
similarity index 100%
rename from target-ppc/excp_helper.c
rename to target/ppc/excp_helper.c
similarity index 100%
rename from target-ppc/fpu_helper.c
rename to target/ppc/fpu_helper.c
similarity index 100%
rename from target-ppc/gdbstub.c
rename to target/ppc/gdbstub.c
similarity index 100%
rename from target-ppc/helper.h
rename to target/ppc/helper.h
similarity index 100%
rename from target-ppc/helper_regs.h
rename to target/ppc/helper_regs.h
similarity index 100%
rename from target-ppc/int_helper.c
rename to target/ppc/int_helper.c
similarity index 100%
rename from target-ppc/internal.h
rename to target/ppc/internal.h
similarity index 100%
rename from target-ppc/kvm-stub.c
rename to target/ppc/kvm-stub.c
similarity index 100%
rename from target-ppc/kvm.c
rename to target/ppc/kvm.c
similarity index 100%
rename from target-ppc/kvm_ppc.h
rename to target/ppc/kvm_ppc.h
similarity index 100%
rename from target-ppc/machine.c
rename to target/ppc/machine.c
similarity index 100%
rename from target-ppc/mem_helper.c
rename to target/ppc/mem_helper.c
similarity index 100%
rename from target-ppc/mfrom_table.c
rename to target/ppc/mfrom_table.c
similarity index 100%
rename from target-ppc/mfrom_table_gen.c
rename to target/ppc/mfrom_table_gen.c
similarity index 100%
rename from target-ppc/misc_helper.c
rename to target/ppc/misc_helper.c
similarity index 100%
rename from target-ppc/mmu-hash32.c
rename to target/ppc/mmu-hash32.c
similarity index 100%
rename from target-ppc/mmu-hash32.h
rename to target/ppc/mmu-hash32.h
similarity index 100%
rename from target-ppc/mmu-hash64.c
rename to target/ppc/mmu-hash64.c
similarity index 100%
rename from target-ppc/mmu-hash64.h
rename to target/ppc/mmu-hash64.h
similarity index 100%
rename from target-ppc/mmu_helper.c
rename to target/ppc/mmu_helper.c
similarity index 100%
rename from target-ppc/monitor.c
rename to target/ppc/monitor.c
similarity index 100%
rename from target-ppc/timebase_helper.c
rename to target/ppc/timebase_helper.c
similarity index 92%
rename from target-ppc/trace-events
rename to target/ppc/trace-events
@@ -1,5 +1,5 @@
# See docs/tracing.txt for syntax documentation.
-# target-ppc/kvm.c
+# target/ppc/kvm.c
kvm_failed_spr_set(int str, const char *msg) "Warning: Unable to set SPR %d to KVM: %s"
kvm_failed_spr_get(int str, const char *msg) "Warning: Unable to retrieve SPR %d from KVM: %s"
similarity index 100%
rename from target-ppc/translate.c
rename to target/ppc/translate.c
similarity index 100%
rename from target-ppc/translate/dfp-impl.inc.c
rename to target/ppc/translate/dfp-impl.inc.c
similarity index 100%
rename from target-ppc/translate/dfp-ops.inc.c
rename to target/ppc/translate/dfp-ops.inc.c
similarity index 100%
rename from target-ppc/translate/fp-impl.inc.c
rename to target/ppc/translate/fp-impl.inc.c
similarity index 100%
rename from target-ppc/translate/fp-ops.inc.c
rename to target/ppc/translate/fp-ops.inc.c
similarity index 100%
rename from target-ppc/translate/spe-impl.inc.c
rename to target/ppc/translate/spe-impl.inc.c
similarity index 100%
rename from target-ppc/translate/spe-ops.inc.c
rename to target/ppc/translate/spe-ops.inc.c
similarity index 100%
rename from target-ppc/translate/vmx-impl.inc.c
rename to target/ppc/translate/vmx-impl.inc.c
similarity index 100%
rename from target-ppc/translate/vmx-ops.inc.c
rename to target/ppc/translate/vmx-ops.inc.c
similarity index 100%
rename from target-ppc/translate/vsx-impl.inc.c
rename to target/ppc/translate/vsx-impl.inc.c
similarity index 100%
rename from target-ppc/translate/vsx-ops.inc.c
rename to target/ppc/translate/vsx-ops.inc.c
similarity index 100%
rename from target-ppc/translate_init.c
rename to target/ppc/translate_init.c
similarity index 100%
rename from target-ppc/user_only_helper.c
rename to target/ppc/user_only_helper.c
Signed-off-by: Thomas Huth <thuth@redhat.com> --- MAINTAINERS | 4 ++-- Makefile.objs | 2 +- hw/ppc/fdt.c | 2 +- hw/ppc/pnv.c | 2 +- hw/ppc/pnv_core.c | 2 +- hw/ppc/pnv_lpc.c | 2 +- hw/ppc/pnv_xscom.c | 2 +- hw/ppc/spapr_cpu_core.c | 6 +++--- include/hw/ppc/fdt.h | 2 +- include/hw/ppc/ppc.h | 2 +- include/hw/ppc/spapr_cpu_core.h | 2 +- {target-ppc => target/ppc}/Makefile.objs | 0 {target-ppc => target/ppc}/STATUS | 0 {target-ppc => target/ppc}/arch_dump.c | 0 {target-ppc => target/ppc}/cpu-models.c | 0 {target-ppc => target/ppc}/cpu-models.h | 0 {target-ppc => target/ppc}/cpu-qom.h | 0 {target-ppc => target/ppc}/cpu.h | 0 {target-ppc => target/ppc}/dfp_helper.c | 0 {target-ppc => target/ppc}/excp_helper.c | 0 {target-ppc => target/ppc}/fpu_helper.c | 0 {target-ppc => target/ppc}/gdbstub.c | 0 {target-ppc => target/ppc}/helper.h | 0 {target-ppc => target/ppc}/helper_regs.h | 0 {target-ppc => target/ppc}/int_helper.c | 0 {target-ppc => target/ppc}/internal.h | 0 {target-ppc => target/ppc}/kvm-stub.c | 0 {target-ppc => target/ppc}/kvm.c | 0 {target-ppc => target/ppc}/kvm_ppc.h | 0 {target-ppc => target/ppc}/machine.c | 0 {target-ppc => target/ppc}/mem_helper.c | 0 {target-ppc => target/ppc}/mfrom_table.c | 0 {target-ppc => target/ppc}/mfrom_table_gen.c | 0 {target-ppc => target/ppc}/misc_helper.c | 0 {target-ppc => target/ppc}/mmu-hash32.c | 0 {target-ppc => target/ppc}/mmu-hash32.h | 0 {target-ppc => target/ppc}/mmu-hash64.c | 0 {target-ppc => target/ppc}/mmu-hash64.h | 0 {target-ppc => target/ppc}/mmu_helper.c | 0 {target-ppc => target/ppc}/monitor.c | 0 {target-ppc => target/ppc}/timebase_helper.c | 0 {target-ppc => target/ppc}/trace-events | 2 +- {target-ppc => target/ppc}/translate.c | 0 {target-ppc => target/ppc}/translate/dfp-impl.inc.c | 0 {target-ppc => target/ppc}/translate/dfp-ops.inc.c | 0 {target-ppc => target/ppc}/translate/fp-impl.inc.c | 0 {target-ppc => target/ppc}/translate/fp-ops.inc.c | 0 {target-ppc => target/ppc}/translate/spe-impl.inc.c | 0 {target-ppc => target/ppc}/translate/spe-ops.inc.c | 0 {target-ppc => target/ppc}/translate/vmx-impl.inc.c | 0 {target-ppc => target/ppc}/translate/vmx-ops.inc.c | 0 {target-ppc => target/ppc}/translate/vsx-impl.inc.c | 0 {target-ppc => target/ppc}/translate/vsx-ops.inc.c | 0 {target-ppc => target/ppc}/translate_init.c | 0 {target-ppc => target/ppc}/user_only_helper.c | 0 55 files changed, 15 insertions(+), 15 deletions(-) rename {target-ppc => target/ppc}/Makefile.objs (100%) rename {target-ppc => target/ppc}/STATUS (100%) rename {target-ppc => target/ppc}/arch_dump.c (100%) rename {target-ppc => target/ppc}/cpu-models.c (100%) rename {target-ppc => target/ppc}/cpu-models.h (100%) rename {target-ppc => target/ppc}/cpu-qom.h (100%) rename {target-ppc => target/ppc}/cpu.h (100%) rename {target-ppc => target/ppc}/dfp_helper.c (100%) rename {target-ppc => target/ppc}/excp_helper.c (100%) rename {target-ppc => target/ppc}/fpu_helper.c (100%) rename {target-ppc => target/ppc}/gdbstub.c (100%) rename {target-ppc => target/ppc}/helper.h (100%) rename {target-ppc => target/ppc}/helper_regs.h (100%) rename {target-ppc => target/ppc}/int_helper.c (100%) rename {target-ppc => target/ppc}/internal.h (100%) rename {target-ppc => target/ppc}/kvm-stub.c (100%) rename {target-ppc => target/ppc}/kvm.c (100%) rename {target-ppc => target/ppc}/kvm_ppc.h (100%) rename {target-ppc => target/ppc}/machine.c (100%) rename {target-ppc => target/ppc}/mem_helper.c (100%) rename {target-ppc => target/ppc}/mfrom_table.c (100%) rename {target-ppc => target/ppc}/mfrom_table_gen.c (100%) rename {target-ppc => target/ppc}/misc_helper.c (100%) rename {target-ppc => target/ppc}/mmu-hash32.c (100%) rename {target-ppc => target/ppc}/mmu-hash32.h (100%) rename {target-ppc => target/ppc}/mmu-hash64.c (100%) rename {target-ppc => target/ppc}/mmu-hash64.h (100%) rename {target-ppc => target/ppc}/mmu_helper.c (100%) rename {target-ppc => target/ppc}/monitor.c (100%) rename {target-ppc => target/ppc}/timebase_helper.c (100%) rename {target-ppc => target/ppc}/trace-events (92%) rename {target-ppc => target/ppc}/translate.c (100%) rename {target-ppc => target/ppc}/translate/dfp-impl.inc.c (100%) rename {target-ppc => target/ppc}/translate/dfp-ops.inc.c (100%) rename {target-ppc => target/ppc}/translate/fp-impl.inc.c (100%) rename {target-ppc => target/ppc}/translate/fp-ops.inc.c (100%) rename {target-ppc => target/ppc}/translate/spe-impl.inc.c (100%) rename {target-ppc => target/ppc}/translate/spe-ops.inc.c (100%) rename {target-ppc => target/ppc}/translate/vmx-impl.inc.c (100%) rename {target-ppc => target/ppc}/translate/vmx-ops.inc.c (100%) rename {target-ppc => target/ppc}/translate/vsx-impl.inc.c (100%) rename {target-ppc => target/ppc}/translate/vsx-ops.inc.c (100%) rename {target-ppc => target/ppc}/translate_init.c (100%) rename {target-ppc => target/ppc}/user_only_helper.c (100%)