From nobody Tue Oct 28 01:57:57 2025 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) client-ip=208.118.235.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; dkim=fail; spf=pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org Return-Path: Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) by mx.zohomail.com with SMTPS id 1522125840645350.56214393716175; Mon, 26 Mar 2018 21:44:00 -0700 (PDT) Received: from localhost ([::1]:60319 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f0gSl-00075w-NH for importer@patchew.org; Tue, 27 Mar 2018 00:43:59 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50748) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f0gNC-000205-4m for qemu-devel@nongnu.org; Tue, 27 Mar 2018 00:38:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1f0gNB-0002r7-35 for qemu-devel@nongnu.org; Tue, 27 Mar 2018 00:38:14 -0400 Received: from ozlabs.org ([2401:3900:2:1::2]:36761) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1f0gNA-0002mR-Ln; Tue, 27 Mar 2018 00:38:13 -0400 Received: by ozlabs.org (Postfix, from userid 1007) id 409JCr0VsPz9s25; Tue, 27 Mar 2018 15:37:57 +1100 (AEDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gibson.dropbear.id.au; s=201602; t=1522125480; bh=FCcamdST6qOP3OA5WyhP3i9QDvrPBiof7atfjpwx5xU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=bqCMohz95Fgl8Zth9pJUu267lukAEOuHQQ25DIvOlyYsDtzw2G8YRKcEJEaAKrbrp weAAMwLhSVcnRV52nuoprCXQ9MtavfpVOLaUPD2MXXYmMIRDmCd6rpsutMGTTnw7rG GoIfR5PRIHd/caZKcH6zAi1O8y9Z1UooyNgPi634= From: David Gibson To: qemu-ppc@nongnu.org, groug@kaod.org Date: Tue, 27 Mar 2018 15:37:39 +1100 Message-Id: <20180327043741.7705-11-david@gibson.dropbear.id.au> X-Mailer: git-send-email 2.14.3 In-Reply-To: <20180327043741.7705-1-david@gibson.dropbear.id.au> References: <20180327043741.7705-1-david@gibson.dropbear.id.au> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 2401:3900:2:1::2 Subject: [Qemu-devel] [RFC for-2.13 10/12] target/ppc: Fold ci_large_pages flag into PPCHash64Options X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: agraf@suse.de, qemu-devel@nongnu.org, clg@kaod.org, bharata@linux.vnet.ibm.com, David Gibson Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail-DKIM: fail (Header signature does not verify) X-ZohoMail: RDKM_2 RSF_0 Z_629925259 SPT_0 Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" The ci_large_pages boolean in CPUPPCState is only relevant to 64-bit hash MMU machines, indicating whether it's possible to map large (> 4kiB) pages as cache-inhibitied (i.e. for IO, rather than memory). Fold it as another flag into the PPCHash64Options structure. Signed-off-by: David Gibson Reviewed-by: C=C3=A9dric Le Goater Reviewed-by: Greg Kurz --- hw/ppc/spapr.c | 3 +-- target/ppc/cpu.h | 1 - target/ppc/kvm.c | 6 +++++- target/ppc/mmu-hash64.c | 2 +- target/ppc/mmu-hash64.h | 1 + target/ppc/translate_init.c | 3 --- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c index 436ed39f7f..95063df54d 100644 --- a/hw/ppc/spapr.c +++ b/hw/ppc/spapr.c @@ -263,7 +263,6 @@ static void spapr_populate_pa_features(sPAPRMachineStat= e *spapr, void *fdt, int offset, bool legacy_guest) { - CPUPPCState *env =3D &cpu->env; uint8_t pa_features_206[] =3D { 6, 0, 0xf6, 0x1f, 0xc7, 0x00, 0x80, 0xc0 }; uint8_t pa_features_207[] =3D { 24, 0, @@ -315,7 +314,7 @@ static void spapr_populate_pa_features(sPAPRMachineStat= e *spapr, return; } =20 - if (env->ci_large_pages) { + if (cpu->hash64_opts->flags & PPC_HASH64_CI_LARGEPAGE) { /* * Note: we keep CI large pages off by default because a 64K capab= le * guest provisioned with large pages might otherwise try to map a= qemu diff --git a/target/ppc/cpu.h b/target/ppc/cpu.h index fb6c578eb5..76ce67e9de 100644 --- a/target/ppc/cpu.h +++ b/target/ppc/cpu.h @@ -1088,7 +1088,6 @@ struct CPUPPCState { #if defined(TARGET_PPC64) ppc_slb_t vrma_slb; target_ulong rmls; - bool ci_large_pages; #endif =20 #if defined(TARGET_PPC64) && !defined(CONFIG_USER_ONLY) diff --git a/target/ppc/kvm.c b/target/ppc/kvm.c index 3424917381..6c45815ee6 100644 --- a/target/ppc/kvm.c +++ b/target/ppc/kvm.c @@ -448,7 +448,11 @@ static void kvm_fixup_page_sizes(PowerPCCPU *cpu) * host page size is smaller than 64K. */ if (smmu_info.flags & KVM_PPC_PAGE_SIZES_REAL) { - env->ci_large_pages =3D getpagesize() >=3D 0x10000; + if (getpagesize() >=3D 0x10000) { + cpu->hash64_opts->flags |=3D PPC_HASH64_CI_LARGEPAGE; + } else { + cpu->hash64_opts->flags &=3D ~PPC_HASH64_CI_LARGEPAGE; + } } =20 /* diff --git a/target/ppc/mmu-hash64.c b/target/ppc/mmu-hash64.c index 1d785f50d7..3b00bdee91 100644 --- a/target/ppc/mmu-hash64.c +++ b/target/ppc/mmu-hash64.c @@ -1128,7 +1128,7 @@ const PPCHash64Options ppc_hash64_opts_basic =3D { }; =20 const PPCHash64Options ppc_hash64_opts_POWER7 =3D { - .flags =3D PPC_HASH64_1TSEG | PPC_HASH64_AMR, + .flags =3D PPC_HASH64_1TSEG | PPC_HASH64_AMR | PPC_HASH64_CI_LARGEPAGE, .sps =3D { { .page_shift =3D 12, /* 4K */ diff --git a/target/ppc/mmu-hash64.h b/target/ppc/mmu-hash64.h index 6cfca97a60..cddfe06a8b 100644 --- a/target/ppc/mmu-hash64.h +++ b/target/ppc/mmu-hash64.h @@ -154,6 +154,7 @@ struct ppc_one_seg_page_size { struct PPCHash64Options { #define PPC_HASH64_1TSEG 0x00001 #define PPC_HASH64_AMR 0x00002 +#define PPC_HASH64_CI_LARGEPAGE 0x00004 unsigned flags; struct ppc_one_seg_page_size sps[PPC_PAGE_SIZES_MAX_SZ]; }; diff --git a/target/ppc/translate_init.c b/target/ppc/translate_init.c index ae005b2a54..a925cf5cd3 100644 --- a/target/ppc/translate_init.c +++ b/target/ppc/translate_init.c @@ -8392,7 +8392,6 @@ static void init_proc_POWER7(CPUPPCState *env) #if !defined(CONFIG_USER_ONLY) env->slb_nr =3D 32; #endif - env->ci_large_pages =3D true; env->dcache_line_size =3D 128; env->icache_line_size =3D 128; =20 @@ -8547,7 +8546,6 @@ static void init_proc_POWER8(CPUPPCState *env) #if !defined(CONFIG_USER_ONLY) env->slb_nr =3D 32; #endif - env->ci_large_pages =3D true; env->dcache_line_size =3D 128; env->icache_line_size =3D 128; =20 @@ -8748,7 +8746,6 @@ static void init_proc_POWER9(CPUPPCState *env) #if !defined(CONFIG_USER_ONLY) env->slb_nr =3D 32; #endif - env->ci_large_pages =3D true; env->dcache_line_size =3D 128; env->icache_line_size =3D 128; =20 --=20 2.14.3