From: David Gibson <david@gibson.dropbear.id.au> To: "Bruno Larsen (billionai)" <bruno.larsen@eldorado.org.br> Cc: qemu-devel@nongnu.org, andre.silva@eldorado.org.br, lucas.araujo@eldorado.org.br, fernando.valle@eldorado.org.br, qemu-ppc@nongnu.org, lagarcia@br.ibm.com, matheus.ferst@eldorado.org.br, luis.pires@eldorado.org.br Subject: Re: [PATCH 3/4] target/ppc: Add stubs for tcg functions, so it builds Date: Mon, 19 Apr 2021 15:28:17 +1000 [thread overview] Message-ID: <YH0U8c+BiNdVwMm1@yekko.fritz.box> (raw) In-Reply-To: <20210409151916.97326-4-bruno.larsen@eldorado.org.br> [-- Attachment #1: Type: text/plain, Size: 5559 bytes --] On Fri, Apr 09, 2021 at 12:19:15PM -0300, Bruno Larsen (billionai) wrote: > This file basically adds all stubs required to build the project > with disable-tcg. most of these are not going to remain stubs by the > end, but this part is where it got complicated, and I wanted to get > an RFC ASAP. Most of these have to do with mmu emulation, so they'll > probably be replaced by a KVM implementation in the final product, > but I'm not sure which ones have to be replace, which can remain > stubs, and which should not be called at all. Input in general is > very much welcome. > > Signed-off-by: Bruno Larsen (billionai) <bruno.larsen@eldorado.org.br> > --- > target/ppc/tcg-stub.c | 139 ++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 139 insertions(+) > create mode 100644 target/ppc/tcg-stub.c > > diff --git a/target/ppc/tcg-stub.c b/target/ppc/tcg-stub.c > new file mode 100644 > index 0000000000..5dc8cf8911 > --- /dev/null > +++ b/target/ppc/tcg-stub.c > @@ -0,0 +1,139 @@ > +#include "qemu/osdep.h" > +#include "cpu.h" > +#include "mmu-hash64.h" > + > +/* STUFF FOR FIRST LINKER ERROR */ > +/* This stuff happens in target/ppc files */ > + > +#if !defined(CONFIG_USER_ONLY) > + > +void ppc_store_sdr1(CPUPPCState *env, target_ulong value) { In general stubbing ppc_store_*() functions doesn't look seem like a good idea. At the very least the KVM code will need to update the register in env so that it gets synced with KVM later. I think you're going to be better off moving those ppc_store_*() functions used from KVM code into somewhere common, then #ifdefing to remove any TCG specific operations from them (or else providing KVM stubs for the TCG things they call). > + /* stub to make things compile */ > + return; > +} > + > +void ppc_store_ptcr(CPUPPCState *env, target_ulong value) { > + /* stub to make things compile */ > + return; > +} > + > +#endif /* !defined(CONFIG_USER_ONLY) */ > +void ppc_store_msr(CPUPPCState *env, target_ulong value) { > + /* stub to make things compile */ > + return; > +} > + > +void dump_mmu(CPUPPCState *env){ > + /* stub to make things compile */ > + return; > +} > + > +void store_fpscr(CPUPPCState *env, uint64_t arg, uint32_t mask) { > + /* stub to make things compile */ > + return; > +} > + > +void ppc_cpu_do_interrupt(CPUState *cpu) { > + /* stub to make things compile */ > + return; > +} > + > +/* STUFF FOR SECOND LINKER ERROR*/ > +/* these errors happen mostly in hw/ppc */ > + > +#ifdef TARGET_PPC64 > +int ppc_store_slb(PowerPCCPU *cpu, target_ulong slot, > + target_ulong esid, target_ulong vsid) { > + /* rquired by kvm.c and machine.c */ > + return 0; > +} > + > +void ppc_hash64_filter_pagesizes(PowerPCCPU *cpu, > + bool (*cb)(void *, uint32_t, uint32_t), > + void *opaque) { > + /* required by spapr_caps.c */ > + return; > +} > + > +void ppc_store_lpcr(PowerPCCPU *cpu, target_ulong val) { > + /* required by spapr_* */ > + return; > +} > + > +const ppc_hash_pte64_t *ppc_hash64_map_hptes(PowerPCCPU *cpu, > + hwaddr ptex, int n) { > + /* used by spapr_hcall a bunch */ > + return NULL; > +} > + > +void ppc_hash64_unmap_hptes(PowerPCCPU *cpu, const ppc_hash_pte64_t *hptes, > + hwaddr ptex, int n) { > + /* used a bunch by spapr_hcall */ > + return; > +} > + > +void ppc_hash64_tlb_flush_hpte(PowerPCCPU *cpu, > + target_ulong pte_index, > + target_ulong pte0, target_ulong pte1){ > + return; > +} > + > +unsigned ppc_hash64_hpte_page_shift_noslb(PowerPCCPU *cpu, > + uint64_t pte0, uint64_t pte1) { > + return 0; > +} > +#endif > + > +void ppc_cpu_do_fwnmi_machine_check(CPUState *cs, target_ulong vector) { > + /* required by spapr_events spapr_mce_dispatch_elog */ > + return; > +} > +#ifndef CONFIG_USER_ONLY > +void ppc_cpu_do_system_reset(CPUState *cs){ > + /* required by pnv and spapr */ > + return; > +} > +#endif > + > +bool ppc64_v3_get_pate(PowerPCCPU *cpu, target_ulong lpid, > + ppc_v3_pate_t *entry); > + > +bool ppc64_v3_get_pate(PowerPCCPU *cpu, target_ulong lpid, > + ppc_v3_pate_t *entry) { > + /* used by spapr_hcall: ppc_hash64_hpt_mask */ > + return true; > +} > + > +/* THIRD BATCH OF ERRORS, AFTER MOVING STUFF FROM TRANSLATE TO CPU.C */ > + > +/* they are all coming from cpu.c, probably */ > + > +void create_ppc_opcodes(PowerPCCPU *cpu, Error **errp) { > + return; > +} > + > +void init_ppc_proc(PowerPCCPU *cpu) { > + return; > +} > + > +void destroy_ppc_opcodes(PowerPCCPU *cpu) { > + return; > +} > + > +void ppc_tlb_invalidate_all(CPUPPCState *env) { > + return; > +} > + > +void ppc_cpu_dump_state(CPUState *cpu, FILE *f, int flags) { > + return; > +} > + > +void ppc_cpu_dump_statistics(CPUState *cpu, int flags) { > + return; > +} > + > +#include "exec/hwaddr.h" > + > +hwaddr ppc_cpu_get_phys_page_debug(CPUState *cpu, vaddr addr) { > + return 0; > +} -- David Gibson | I'll have my music baroque, and my code david AT gibson.dropbear.id.au | minimalist, thank you. NOT _the_ _other_ | _way_ _around_! http://www.ozlabs.org/~dgibson [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 833 bytes --]
next prev parent reply other threads:[~2021-04-19 5:29 UTC|newest] Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-04-09 15:19 [RFC PATCH 0/4] target/ppc: add disable-tcg option Bruno Larsen (billionai) 2021-04-09 15:19 ` [PATCH 1/4] target/ppc: Code motion required to build disabling tcg Bruno Larsen (billionai) 2021-04-09 19:48 ` Fabiano Rosas 2021-04-12 4:34 ` David Gibson 2021-04-09 15:19 ` [PATCH 2/4] target/ppc: added solutions for building with disable-tcg Bruno Larsen (billionai) 2021-04-09 20:40 ` Fabiano Rosas 2021-04-12 5:08 ` David Gibson 2021-04-12 15:40 ` Richard Henderson 2021-04-13 6:42 ` David Gibson 2021-04-09 15:19 ` [PATCH 3/4] target/ppc: Add stubs for tcg functions, so it builds Bruno Larsen (billionai) 2021-04-19 5:28 ` David Gibson [this message] 2021-04-09 15:19 ` [PATCH 4/4] target/ppc: updated build rules for disable-tcg option Bruno Larsen (billionai) 2021-04-09 15:57 ` [RFC PATCH 0/4] target/ppc: add " no-reply 2021-04-12 5:13 ` David Gibson 2021-04-12 4:32 ` David Gibson
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=YH0U8c+BiNdVwMm1@yekko.fritz.box \ --to=david@gibson.dropbear.id.au \ --cc=andre.silva@eldorado.org.br \ --cc=bruno.larsen@eldorado.org.br \ --cc=fernando.valle@eldorado.org.br \ --cc=lagarcia@br.ibm.com \ --cc=lucas.araujo@eldorado.org.br \ --cc=luis.pires@eldorado.org.br \ --cc=matheus.ferst@eldorado.org.br \ --cc=qemu-devel@nongnu.org \ --cc=qemu-ppc@nongnu.org \ --subject='Re: [PATCH 3/4] target/ppc: Add stubs for tcg functions, so it builds' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).