All of lore.kernel.org
 help / color / mirror / Atom feed
From: David Gibson <david@gibson.dropbear.id.au>
To: peter.maydell@linaro.org, agraf@suse.de
Cc: aik@ozlabs.ru, mdroth@linux.vnet.ibm.com, qemu-devel@nongnu.org,
	qemu-ppc@nongnu.org, David Gibson <david@gibson.dropbear.id.au>,
	Greg Kurz <gkurz@linux.vnet.ibm.com>
Subject: [Qemu-devel] [PULL 23/39] target-ppc: gdbstub: fix altivec registers for little-endian guests
Date: Fri, 29 Jan 2016 16:06:55 +1100	[thread overview]
Message-ID: <1454044031-5930-25-git-send-email-david@gibson.dropbear.id.au> (raw)
In-Reply-To: <1454044031-5930-1-git-send-email-david@gibson.dropbear.id.au>

From: Greg Kurz <gkurz@linux.vnet.ibm.com>

Altivec registers are 128-bit wide. They are stored in memory as two
64-bit values that must be byteswapped when the guest is little-endian.
Let's reuse the ppc_maybe_bswap_register() helper for this.

We also need to fix the ordering of the 64-bit elements according to
the target endianness, for both system and user mode.

Signed-off-by: Greg Kurz <gkurz@linux.vnet.ibm.com>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
---
 target-ppc/translate_init.c | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/target-ppc/translate_init.c b/target-ppc/translate_init.c
index 41308c3..02734a2 100644
--- a/target-ppc/translate_init.c
+++ b/target-ppc/translate_init.c
@@ -8754,9 +8754,9 @@ static void dump_ppc_insns (CPUPPCState *env)
 static bool avr_need_swap(CPUPPCState *env)
 {
 #ifdef HOST_WORDS_BIGENDIAN
-    return false;
+    return msr_le;
 #else
-    return true;
+    return !msr_le;
 #endif
 }
 
@@ -8800,14 +8800,18 @@ static int gdb_get_avr_reg(CPUPPCState *env, uint8_t *mem_buf, int n)
             stq_p(mem_buf, env->avr[n].u64[1]);
             stq_p(mem_buf+8, env->avr[n].u64[0]);
         }
+        ppc_maybe_bswap_register(env, mem_buf, 8);
+        ppc_maybe_bswap_register(env, mem_buf + 8, 8);
         return 16;
     }
     if (n == 32) {
         stl_p(mem_buf, env->vscr);
+        ppc_maybe_bswap_register(env, mem_buf, 4);
         return 4;
     }
     if (n == 33) {
         stl_p(mem_buf, (uint32_t)env->spr[SPR_VRSAVE]);
+        ppc_maybe_bswap_register(env, mem_buf, 4);
         return 4;
     }
     return 0;
@@ -8816,6 +8820,8 @@ static int gdb_get_avr_reg(CPUPPCState *env, uint8_t *mem_buf, int n)
 static int gdb_set_avr_reg(CPUPPCState *env, uint8_t *mem_buf, int n)
 {
     if (n < 32) {
+        ppc_maybe_bswap_register(env, mem_buf, 8);
+        ppc_maybe_bswap_register(env, mem_buf + 8, 8);
         if (!avr_need_swap(env)) {
             env->avr[n].u64[0] = ldq_p(mem_buf);
             env->avr[n].u64[1] = ldq_p(mem_buf+8);
@@ -8826,10 +8832,12 @@ static int gdb_set_avr_reg(CPUPPCState *env, uint8_t *mem_buf, int n)
         return 16;
     }
     if (n == 32) {
+        ppc_maybe_bswap_register(env, mem_buf, 4);
         env->vscr = ldl_p(mem_buf);
         return 4;
     }
     if (n == 33) {
+        ppc_maybe_bswap_register(env, mem_buf, 4);
         env->spr[SPR_VRSAVE] = (target_ulong)ldl_p(mem_buf);
         return 4;
     }
-- 
2.5.0

  parent reply	other threads:[~2016-01-29  5:06 UTC|newest]

Thread overview: 47+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-29  5:06 [Qemu-devel] [PULL 00/39] ppc-for-2.6 queue 20160129 David Gibson
2016-01-29  5:06 ` David Gibson
2016-01-29 14:48   ` Peter Maydell
2016-01-30 12:29     ` David Gibson
2016-01-31 23:57       ` David Gibson
2016-02-01 11:29         ` Peter Maydell
2016-01-29  5:06 ` [Qemu-devel] [PULL 01/39] target-ppc: Use sensible POWER8/POWER8E versions David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 02/39] target-ppc: use cpu_write_xer() helper in cpu_post_load David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 03/39] macio: use the existing IDEDMA aiocb to hold the active DMA aiocb David Gibson
2016-01-29  8:02   ` [Qemu-devel] [Qemu-ppc] " Aurelien Jarno
2016-01-30 12:36     ` David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 04/39] macio: add dma_active to VMStateDescription David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 05/39] mac_dbdma: add DBDMA controller state " David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 06/39] cuda: add missing fields " David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 07/39] spapr: Small fixes to rtas_ibm_get_system_parameter, remove rtas_st_buffer David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 08/39] spapr: Remove rtas_st_buffer_direct() David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 09/39] spapr: Remove abuse of rtas_ld() in h_client_architecture_support David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 10/39] spapr: Don't create ibm, dynamic-reconfiguration-memory w/o DR LMBs David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 11/39] ppc: Clean up error handling in ppc_set_compat() David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 12/39] pseries: Clean up error handling of spapr_cpu_init() David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 13/39] pseries: Clean up error handling in spapr_validate_node_memory() David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 14/39] pseries: Clean up error handling in spapr_vga_init() David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 15/39] pseries: Clean up error handling in spapr_rtas_register() David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 16/39] pseries: Clean up error handling in xics_system_init() David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 17/39] pseries: Clean up error reporting in ppc_spapr_init() David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 18/39] pseries: Clean up error reporting in htab migration functions David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 19/39] target-ppc: kvm: fix floating point registers sync on little-endian hosts David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 20/39] target-ppc: rename and export maybe_bswap_register() David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 21/39] target-ppc: gdbstub: fix float registers for little-endian guests David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 22/39] target-ppc: gdbstub: introduce avr_need_swap() David Gibson
2016-01-29  5:06 ` David Gibson [this message]
2016-01-29  5:06 ` [Qemu-devel] [PULL 24/39] target-ppc: gdbstub: fix spe registers for little-endian guests David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 25/39] target-ppc: gdbstub: Add VSX support David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 26/39] pseries: Allow TCG h_enter to work with hotplugged memory David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 27/39] cuda.c: return error for unknown commands David Gibson
2016-01-29  5:07 ` [Qemu-devel] [PULL 28/39] uninorth.c: add support for UniNorth kMacRISCPCIAddressSelect (0x48) register David Gibson
2016-01-29  5:07 ` [Qemu-devel] [PULL 29/39] target-ppc: Remove unused kvmppc_read_segment_page_sizes() stub David Gibson
2016-01-29  5:07 ` [Qemu-devel] [PULL 30/39] target-ppc: Convert mmu-hash{32, 64}.[ch] from CPUPPCState to PowerPCCPU David Gibson
2016-01-29  5:07 ` [Qemu-devel] [PULL 31/39] target-ppc: Rework ppc_store_slb David Gibson
2016-01-29  5:07 ` [Qemu-devel] [PULL 32/39] target-ppc: Rework SLB page size lookup David Gibson
2016-01-29  5:07 ` [Qemu-devel] [PULL 33/39] target-ppc: Use actual page size encodings from HPTE David Gibson
2016-01-29  5:07 ` [Qemu-devel] [PULL 34/39] target-ppc: Remove unused mmu models from ppc_tlb_invalidate_one David Gibson
2016-01-29  5:07 ` [Qemu-devel] [PULL 35/39] target-ppc: Split 44x tlbiva from ppc_tlb_invalidate_one() David Gibson
2016-01-29  5:07 ` [Qemu-devel] [PULL 36/39] target-ppc: Add new TLB invalidate by HPTE call for hash64 MMUs David Gibson
2016-01-29  5:07 ` [Qemu-devel] [PULL 37/39] target-ppc: Helper to determine page size information from hpte alone David Gibson
2016-01-29  5:07 ` [Qemu-devel] [PULL 38/39] target-ppc: Allow more page sizes for POWER7 & POWER8 in TCG David Gibson
2016-01-29  5:07 ` [Qemu-devel] [PULL 39/39] target-ppc: Make every FPSCR_ macro have a corresponding FP_ macro 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=1454044031-5930-25-git-send-email-david@gibson.dropbear.id.au \
    --to=david@gibson.dropbear.id.au \
    --cc=agraf@suse.de \
    --cc=aik@ozlabs.ru \
    --cc=gkurz@linux.vnet.ibm.com \
    --cc=mdroth@linux.vnet.ibm.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-ppc@nongnu.org \
    /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
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.