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>
Subject: [Qemu-devel] [PULL 08/39] spapr: Remove rtas_st_buffer_direct()
Date: Fri, 29 Jan 2016 16:06:40 +1100	[thread overview]
Message-ID: <1454044031-5930-10-git-send-email-david@gibson.dropbear.id.au> (raw)
In-Reply-To: <1454044031-5930-1-git-send-email-david@gibson.dropbear.id.au>

rtas_st_buffer_direct() is a not particularly useful wrapper around
cpu_physical_memory_write().  All the callers are in
rtas_ibm_configure_connector, where it's better handled by local helper.

Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Reviewed-by: Alexey Kardashevskiy <aik@ozlabs.ru>
---
 hw/ppc/spapr_rtas.c    | 17 ++++++++++-------
 include/hw/ppc/spapr.h |  8 --------
 2 files changed, 10 insertions(+), 15 deletions(-)

diff --git a/hw/ppc/spapr_rtas.c b/hw/ppc/spapr_rtas.c
index 8b702b5..eac1556 100644
--- a/hw/ppc/spapr_rtas.c
+++ b/hw/ppc/spapr_rtas.c
@@ -505,6 +505,13 @@ out:
 #define CC_VAL_DATA_OFFSET ((CC_IDX_PROP_DATA_OFFSET + 1) * 4)
 #define CC_WA_LEN 4096
 
+static void configure_connector_st(target_ulong addr, target_ulong offset,
+                                   const void *buf, size_t len)
+{
+    cpu_physical_memory_write(ppc64_phys_to_real(addr + offset),
+                              buf, MIN(len, CC_WA_LEN - offset));
+}
+
 static void rtas_ibm_configure_connector(PowerPCCPU *cpu,
                                          sPAPRMachineState *spapr,
                                          uint32_t token, uint32_t nargs,
@@ -570,8 +577,7 @@ static void rtas_ibm_configure_connector(PowerPCCPU *cpu,
             /* provide the name of the next OF node */
             wa_offset = CC_VAL_DATA_OFFSET;
             rtas_st(wa_addr, CC_IDX_NODE_NAME_OFFSET, wa_offset);
-            rtas_st_buffer_direct(wa_addr + wa_offset, CC_WA_LEN - wa_offset,
-                                  (uint8_t *)name, strlen(name) + 1);
+            configure_connector_st(wa_addr, wa_offset, name, strlen(name) + 1);
             resp = SPAPR_DR_CC_RESPONSE_NEXT_CHILD;
             break;
         case FDT_END_NODE:
@@ -596,8 +602,7 @@ static void rtas_ibm_configure_connector(PowerPCCPU *cpu,
             /* provide the name of the next OF property */
             wa_offset = CC_VAL_DATA_OFFSET;
             rtas_st(wa_addr, CC_IDX_PROP_NAME_OFFSET, wa_offset);
-            rtas_st_buffer_direct(wa_addr + wa_offset, CC_WA_LEN - wa_offset,
-                                  (uint8_t *)name, strlen(name) + 1);
+            configure_connector_st(wa_addr, wa_offset, name, strlen(name) + 1);
 
             /* provide the length and value of the OF property. data gets
              * placed immediately after NULL terminator of the OF property's
@@ -606,9 +611,7 @@ static void rtas_ibm_configure_connector(PowerPCCPU *cpu,
             wa_offset += strlen(name) + 1,
             rtas_st(wa_addr, CC_IDX_PROP_LEN, prop_len);
             rtas_st(wa_addr, CC_IDX_PROP_DATA_OFFSET, wa_offset);
-            rtas_st_buffer_direct(wa_addr + wa_offset, CC_WA_LEN - wa_offset,
-                                  (uint8_t *)((struct fdt_property *)prop)->data,
-                                  prop_len);
+            configure_connector_st(wa_addr, wa_offset, prop->data, prop_len);
             resp = SPAPR_DR_CC_RESPONSE_NEXT_PROPERTY;
             break;
         case FDT_END:
diff --git a/include/hw/ppc/spapr.h b/include/hw/ppc/spapr.h
index 1e10fc9..1f9e722 100644
--- a/include/hw/ppc/spapr.h
+++ b/include/hw/ppc/spapr.h
@@ -506,14 +506,6 @@ static inline void rtas_st(target_ulong phys, int n, uint32_t val)
     stl_be_phys(&address_space_memory, ppc64_phys_to_real(phys + 4*n), val);
 }
 
-static inline void rtas_st_buffer_direct(target_ulong phys,
-                                         target_ulong phys_len,
-                                         uint8_t *buffer, uint16_t buffer_len)
-{
-    cpu_physical_memory_write(ppc64_phys_to_real(phys), buffer,
-                              MIN(buffer_len, phys_len));
-}
-
 typedef void (*spapr_rtas_fn)(PowerPCCPU *cpu, sPAPRMachineState *sm,
                               uint32_t token,
                               uint32_t nargs, target_ulong args,
-- 
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 ` David Gibson [this message]
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 ` [Qemu-devel] [PULL 23/39] target-ppc: gdbstub: fix altivec registers for little-endian guests David Gibson
2016-01-29  5:06 ` [Qemu-devel] [PULL 24/39] target-ppc: gdbstub: fix spe " 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-10-git-send-email-david@gibson.dropbear.id.au \
    --to=david@gibson.dropbear.id.au \
    --cc=agraf@suse.de \
    --cc=aik@ozlabs.ru \
    --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.