]> git.proxmox.com Git - mirror_qemu.git/commit - target/lm32/cpu.h
qom/cpu: move tlb_flush to cpu_common_reset
authorAlex Bennée <alex.bennee@linaro.org>
Mon, 14 Nov 2016 14:19:17 +0000 (14:19 +0000)
committerAlex Bennée <alex.bennee@linaro.org>
Fri, 13 Jan 2017 14:24:31 +0000 (14:24 +0000)
commit1f5c00cfdb8114c1e3a13426588ceb64f82c9ddb
treea2cdd1a75d613b7509e7968cd973c30d383c1186
parentb6c08970bc989bfddcf830684ea7a96b7a4d62a7
qom/cpu: move tlb_flush to cpu_common_reset

It is a common thing amongst the various cpu reset functions want to
flush the SoftMMU's TLB entries. This is done either by calling
tlb_flush directly or by way of a general memset of the CPU
structure (sometimes both).

This moves the tlb_flush call to the common reset function and
additionally ensures it is only done for the CONFIG_SOFTMMU case and
when tcg is enabled.

In some target cases we add an empty end_of_reset_fields structure to the
target vCPU structure so have a clear end point for any memset which
is resetting value in the structure before CPU_COMMON (where the TLB
structures are).

While this is a nice clean-up in general it is also a precursor for
changes coming to cputlb for MTTCG where the clearing of entries
can't be done arbitrarily across vCPUs. Currently the cpu_reset
function is usually called from the context of another vCPU as the
architectural power up sequence is run. By using the cputlb API
functions we can ensure the right behaviour in the future.

Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Richard Henderson <rth@twiddle.net>
Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
29 files changed:
qom/cpu.c
target/arm/cpu.c
target/arm/cpu.h
target/cris/cpu.c
target/cris/cpu.h
target/i386/cpu.c
target/i386/cpu.h
target/lm32/cpu.c
target/lm32/cpu.h
target/m68k/cpu.c
target/m68k/cpu.h
target/microblaze/cpu.c
target/microblaze/cpu.h
target/mips/cpu.c
target/mips/cpu.h
target/moxie/cpu.c
target/moxie/cpu.h
target/openrisc/cpu.c
target/openrisc/cpu.h
target/ppc/translate_init.c
target/s390x/cpu.c
target/s390x/cpu.h
target/sh4/cpu.c
target/sh4/cpu.h
target/sparc/cpu.c
target/sparc/cpu.h
target/tilegx/cpu.c
target/tilegx/cpu.h
target/tricore/cpu.c