* [Qemu-devel] [PATCH] pseries: Allow TCG h_enter to work with hotplugged memory
@ 2016-01-21 1:41 David Gibson
2016-01-21 1:48 ` Alexey Kardashevskiy
0 siblings, 1 reply; 4+ messages in thread
From: David Gibson @ 2016-01-21 1:41 UTC (permalink / raw)
To: bharata, aik, pbonzini; +Cc: qemu-ppc, qemu-devel, David Gibson
The implementation of the H_ENTER hypercall for PAPR guests needs to
enforce correct access attributes on the inserted HPTE. This means
determining if the HPTE's real address is a regular RAM address (which
requires attributes for coherent access) or an IO address (which requires
attributes for cache-inhibited access).
At the moment this check is implemented with (raddr < machine->ram_size),
but that only handles addresses in the base RAM area, not any hotplugged
RAM.
This patch corrects the problem with a new helper.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
---
hw/ppc/spapr_hcall.c | 19 +++++++++++++++++--
1 file changed, 17 insertions(+), 2 deletions(-)
diff --git a/hw/ppc/spapr_hcall.c b/hw/ppc/spapr_hcall.c
index cebceea..ea33bc7 100644
--- a/hw/ppc/spapr_hcall.c
+++ b/hw/ppc/spapr_hcall.c
@@ -84,10 +84,25 @@ static inline bool valid_pte_index(CPUPPCState *env, target_ulong pte_index)
return true;
}
+static bool is_ram_address(sPAPRMachineState *spapr, hwaddr addr)
+{
+ MachineState *machine = MACHINE(spapr);
+ MemoryHotplugState *hpms = &spapr->hotplug_memory;
+
+ if (addr < machine->ram_size) {
+ return true;
+ }
+ if ((addr >= hpms->base)
+ && ((addr - hpms->base) < memory_region_size(&hpms->mr))) {
+ return true;
+ }
+
+ return false;
+}
+
static target_ulong h_enter(PowerPCCPU *cpu, sPAPRMachineState *spapr,
target_ulong opcode, target_ulong *args)
{
- MachineState *machine = MACHINE(spapr);
CPUPPCState *env = &cpu->env;
target_ulong flags = args[0];
target_ulong pte_index = args[1];
@@ -119,7 +134,7 @@ static target_ulong h_enter(PowerPCCPU *cpu, sPAPRMachineState *spapr,
raddr = (ptel & HPTE64_R_RPN) & ~((1ULL << page_shift) - 1);
- if (raddr < machine->ram_size) {
+ if (is_ram_address(spapr, raddr)) {
/* Regular RAM - should have WIMG=0010 */
if ((ptel & HPTE64_R_WIMG) != HPTE64_R_M) {
return H_PARAMETER;
--
2.5.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH] pseries: Allow TCG h_enter to work with hotplugged memory
2016-01-21 1:41 [Qemu-devel] [PATCH] pseries: Allow TCG h_enter to work with hotplugged memory David Gibson
@ 2016-01-21 1:48 ` Alexey Kardashevskiy
2016-01-21 3:50 ` David Gibson
0 siblings, 1 reply; 4+ messages in thread
From: Alexey Kardashevskiy @ 2016-01-21 1:48 UTC (permalink / raw)
To: David Gibson, bharata, pbonzini; +Cc: qemu-ppc, qemu-devel
On 01/21/2016 12:41 PM, David Gibson wrote:
> The implementation of the H_ENTER hypercall for PAPR guests needs to
> enforce correct access attributes on the inserted HPTE. This means
> determining if the HPTE's real address is a regular RAM address (which
> requires attributes for coherent access) or an IO address (which requires
> attributes for cache-inhibited access).
>
> At the moment this check is implemented with (raddr < machine->ram_size),
> but that only handles addresses in the base RAM area, not any hotplugged
> RAM.
>
> This patch corrects the problem with a new helper.
>
> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Reviewed-by: Alexey Kardashevskiy <aik@ozlabs.ru>
> ---
> hw/ppc/spapr_hcall.c | 19 +++++++++++++++++--
> 1 file changed, 17 insertions(+), 2 deletions(-)
>
> diff --git a/hw/ppc/spapr_hcall.c b/hw/ppc/spapr_hcall.c
> index cebceea..ea33bc7 100644
> --- a/hw/ppc/spapr_hcall.c
> +++ b/hw/ppc/spapr_hcall.c
> @@ -84,10 +84,25 @@ static inline bool valid_pte_index(CPUPPCState *env, target_ulong pte_index)
> return true;
> }
>
> +static bool is_ram_address(sPAPRMachineState *spapr, hwaddr addr)
> +{
> + MachineState *machine = MACHINE(spapr);
> + MemoryHotplugState *hpms = &spapr->hotplug_memory;
> +
> + if (addr < machine->ram_size) {
> + return true;
> + }
> + if ((addr >= hpms->base)
> + && ((addr - hpms->base) < memory_region_size(&hpms->mr))) {
> + return true;
> + }
> +
> + return false;
> +}
> +
> static target_ulong h_enter(PowerPCCPU *cpu, sPAPRMachineState *spapr,
> target_ulong opcode, target_ulong *args)
> {
> - MachineState *machine = MACHINE(spapr);
> CPUPPCState *env = &cpu->env;
> target_ulong flags = args[0];
> target_ulong pte_index = args[1];
> @@ -119,7 +134,7 @@ static target_ulong h_enter(PowerPCCPU *cpu, sPAPRMachineState *spapr,
>
> raddr = (ptel & HPTE64_R_RPN) & ~((1ULL << page_shift) - 1);
>
> - if (raddr < machine->ram_size) {
> + if (is_ram_address(spapr, raddr)) {
> /* Regular RAM - should have WIMG=0010 */
> if ((ptel & HPTE64_R_WIMG) != HPTE64_R_M) {
> return H_PARAMETER;
>
--
Alexey
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH] pseries: Allow TCG h_enter to work with hotplugged memory
2016-01-21 1:48 ` Alexey Kardashevskiy
@ 2016-01-21 3:50 ` David Gibson
2016-01-21 10:19 ` Paolo Bonzini
0 siblings, 1 reply; 4+ messages in thread
From: David Gibson @ 2016-01-21 3:50 UTC (permalink / raw)
To: Alexey Kardashevskiy; +Cc: pbonzini, qemu-ppc, qemu-devel, bharata
[-- Attachment #1: Type: text/plain, Size: 1047 bytes --]
On Thu, Jan 21, 2016 at 12:48:46PM +1100, Alexey Kardashevskiy wrote:
> On 01/21/2016 12:41 PM, David Gibson wrote:
> >The implementation of the H_ENTER hypercall for PAPR guests needs to
> >enforce correct access attributes on the inserted HPTE. This means
> >determining if the HPTE's real address is a regular RAM address (which
> >requires attributes for coherent access) or an IO address (which requires
> >attributes for cache-inhibited access).
> >
> >At the moment this check is implemented with (raddr < machine->ram_size),
> >but that only handles addresses in the base RAM area, not any hotplugged
> >RAM.
> >
> >This patch corrects the problem with a new helper.
> >
> >Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
>
>
> Reviewed-by: Alexey Kardashevskiy <aik@ozlabs.ru>
Thanks, merged to ppc-for-2.6.
--
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: 819 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH] pseries: Allow TCG h_enter to work with hotplugged memory
2016-01-21 3:50 ` David Gibson
@ 2016-01-21 10:19 ` Paolo Bonzini
0 siblings, 0 replies; 4+ messages in thread
From: Paolo Bonzini @ 2016-01-21 10:19 UTC (permalink / raw)
To: David Gibson, Alexey Kardashevskiy; +Cc: qemu-ppc, qemu-devel, bharata
On 21/01/2016 04:50, David Gibson wrote:
> On Thu, Jan 21, 2016 at 12:48:46PM +1100, Alexey Kardashevskiy
> wrote:
>> On 01/21/2016 12:41 PM, David Gibson wrote:
>>> The implementation of the H_ENTER hypercall for PAPR guests
>>> needs to enforce correct access attributes on the inserted
>>> HPTE. This means determining if the HPTE's real address is a
>>> regular RAM address (which requires attributes for coherent
>>> access) or an IO address (which requires attributes for
>>> cache-inhibited access).
>>>
>>> At the moment this check is implemented with (raddr <
>>> machine->ram_size), but that only handles addresses in the base
>>> RAM area, not any hotplugged RAM.
>>>
>>> This patch corrects the problem with a new helper.
>>>
>>> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
>>
>>
>> Reviewed-by: Alexey Kardashevskiy <aik@ozlabs.ru>
>
> Thanks, merged to ppc-for-2.6.
Can you still remove the Pascal parentheses? :)
Paolo
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-01-21 10:19 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-21 1:41 [Qemu-devel] [PATCH] pseries: Allow TCG h_enter to work with hotplugged memory David Gibson
2016-01-21 1:48 ` Alexey Kardashevskiy
2016-01-21 3:50 ` David Gibson
2016-01-21 10:19 ` Paolo Bonzini
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).