From: suzuki.poulose@arm.com (Suzuki K Poulose)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v5 1/3] arm64: mm: Support Common Not Private translations
Date: Mon, 30 Jul 2018 17:24:38 +0100 [thread overview]
Message-ID: <3c59c004-9014-a888-a7ef-3904970121ba@arm.com> (raw)
In-Reply-To: <1529403502-2843-2-git-send-email-vladimir.murzin@arm.com>
On 06/19/2018 11:18 AM, Vladimir Murzin wrote:
> Common Not Private (CNP) is a feature of ARMv8.2 extension which
> allows translation table entries to be shared between different PEs in
> the same inner shareable domain, so the hardware can use this fact to
> optimise the caching of such entries in the TLB.
>
> CNP occupies one bit in TTBRx_ELy and VTTBR_EL2, which advertises to
> the hardware that the translation table entries pointed to by this
> TTBR are the same as every PE in the same inner shareable domain for
> which the equivalent TTBR also has CNP bit set. In case CNP bit is set
> but TTBR does not point at the same translation table entries for a
> given ASID and VMID, then the system is mis-configured, so the results
> of translations are UNPREDICTABLE.
>
> For kernel we postpone setting CNP till all cpus are up and rely on
> cpufeature framework to 1) patch the code which is sensitive to CNP
> and 2) update TTBR1_EL1 with CNP bit set. TTBR1_EL1 can be
> reprogrammed as result of hibernation or cpuidle (via __enable_mmu).
> For these two cases we restore CNP bit via __cpu_suspend_exit().
>
> There are a few cases we need to care of changes in TTBR0_EL1:
> - a switch to idmap
> - software emulated PAN
>
> we rule out latter via Kconfig options and for the former we make
> sure that CNP is set for non-zero ASIDs only.
>
> Reviewed-by: James Morse <james.morse@arm.com>
> Signed-off-by: Vladimir Murzin <vladimir.murzin@arm.com>
> ---
> arch/arm64/Kconfig | 13 +++++++++++++
> arch/arm64/include/asm/cpucaps.h | 3 ++-
> arch/arm64/include/asm/cpufeature.h | 6 ++++++
> arch/arm64/include/asm/mmu_context.h | 12 ++++++++++++
> arch/arm64/include/asm/pgtable-hwdef.h | 2 ++
> arch/arm64/kernel/cpufeature.c | 35 ++++++++++++++++++++++++++++++++++
> arch/arm64/kernel/suspend.c | 4 ++++
> arch/arm64/mm/context.c | 3 +++
> arch/arm64/mm/proc.S | 6 ++++++
> 9 files changed, 83 insertions(+), 1 deletion(-)
>
> diff --git a/arch/arm64/Kconfig b/arch/arm64/Kconfig
> index 42c090c..70a4ad3 100644
> --- a/arch/arm64/Kconfig
> +++ b/arch/arm64/Kconfig
> @@ -1124,6 +1124,19 @@ config ARM64_RAS_EXTN
> and access the new registers if the system supports the extension.
> Platform RAS features may additionally depend on firmware support.
>
> +config ARM64_CNP
> + bool "Enable support for Common Not Private (CNP) translations"
> + depends on ARM64_PAN || !ARM64_SW_TTBR0_PAN
> + help
> + Common Not Private (CNP) allows translation table entries to
> + be shared between different PEs in the same inner shareable
> + domain, so the hardware can use this fact to optimise the
> + caching of such entries in the TLB.
> +
> + Selecting this option allows the CNP feature to be detected
> + at runtime, and does not affect PEs that do not implement
> + this feature.
> +
> endmenu
>
> config ARM64_SVE
> diff --git a/arch/arm64/include/asm/cpucaps.h b/arch/arm64/include/asm/cpucaps.h
> index 8a699c7..7219654 100644
> --- a/arch/arm64/include/asm/cpucaps.h
> +++ b/arch/arm64/include/asm/cpucaps.h
> @@ -49,7 +49,8 @@
> #define ARM64_HAS_CACHE_DIC 28
> #define ARM64_HW_DBM 29
> #define ARM64_SSBD 30
> +#define ARM64_HAS_CNP 31
>
> -#define ARM64_NCAPS 31
> +#define ARM64_NCAPS 32
>
> #endif /* __ASM_CPUCAPS_H */
> diff --git a/arch/arm64/include/asm/cpufeature.h b/arch/arm64/include/asm/cpufeature.h
> index 1717ba1..b5e2440 100644
> --- a/arch/arm64/include/asm/cpufeature.h
> +++ b/arch/arm64/include/asm/cpufeature.h
> @@ -508,6 +508,12 @@ static inline bool system_supports_sve(void)
> cpus_have_const_cap(ARM64_SVE);
> }
>
> +static inline bool system_supports_cnp(void)
> +{
> + return IS_ENABLED(CONFIG_ARM64_CNP) &&
> + cpus_have_const_cap(ARM64_HAS_CNP);
> +}
> +
> #define ARM64_SSBD_UNKNOWN -1
> #define ARM64_SSBD_FORCE_DISABLE 0
> #define ARM64_SSBD_KERNEL 1
> diff --git a/arch/arm64/include/asm/mmu_context.h b/arch/arm64/include/asm/mmu_context.h
> index 39ec0b8..c506fb7 100644
> --- a/arch/arm64/include/asm/mmu_context.h
> +++ b/arch/arm64/include/asm/mmu_context.h
> @@ -149,6 +149,18 @@ static inline void cpu_replace_ttbr1(pgd_t *pgdp)
>
> phys_addr_t pgd_phys = virt_to_phys(pgdp);
>
> + if (system_supports_cnp() && !WARN_ON(pgdp != lm_alias(swapper_pg_dir))) {
> + /*
> + * cpu_replace_ttbr1() is used when there's a boot CPU
> + * up (i.e. cpufeature framework is not up yet) and
> + * latter only when we enable CNP via cpufeature's
> + * enable() callback.
> + * Also we rely on the cpu_hwcap bit being set before
> + * calling the enable() function.
> + */
> + pgd_phys |= TTBR_CNP_BIT;
> + }
> +
> replace_phys = (void *)__pa_symbol(idmap_cpu_replace_ttbr1);
>
> cpu_install_idmap();
> diff --git a/arch/arm64/include/asm/pgtable-hwdef.h b/arch/arm64/include/asm/pgtable-hwdef.h
> index fd208ea..1d7d8da 100644
> --- a/arch/arm64/include/asm/pgtable-hwdef.h
> +++ b/arch/arm64/include/asm/pgtable-hwdef.h
> @@ -211,6 +211,8 @@
> #define PHYS_MASK_SHIFT (CONFIG_ARM64_PA_BITS)
> #define PHYS_MASK ((UL(1) << PHYS_MASK_SHIFT) - 1)
>
> +#define TTBR_CNP_BIT (UL(1) << 0)
> +
> /*
> * TCR flags.
> */
> diff --git a/arch/arm64/kernel/cpufeature.c b/arch/arm64/kernel/cpufeature.c
> index d2856b1..e0129f2 100644
> --- a/arch/arm64/kernel/cpufeature.c
> +++ b/arch/arm64/kernel/cpufeature.c
> @@ -20,6 +20,7 @@
>
> #include <linux/bsearch.h>
> #include <linux/cpumask.h>
> +#include <linux/crash_dump.h>
> #include <linux/sort.h>
> #include <linux/stop_machine.h>
> #include <linux/types.h>
> @@ -117,6 +118,7 @@ EXPORT_SYMBOL(cpu_hwcap_keys);
> static bool __maybe_unused
> cpufeature_pan_not_uao(const struct arm64_cpu_capabilities *entry, int __unused);
>
> +static void cpu_enable_cnp(struct arm64_cpu_capabilities const *cap);
>
> /*
> * NOTE: Any changes to the visibility of features should be kept in
> @@ -858,6 +860,21 @@ static bool has_cache_dic(const struct arm64_cpu_capabilities *entry,
> return read_sanitised_ftr_reg(SYS_CTR_EL0) & BIT(CTR_DIC_SHIFT);
> }
>
> +static bool __maybe_unused
> +has_useable_cnp(const struct arm64_cpu_capabilities *entry, int scope)
> +{
> +#ifdef CONFIG_CRASH_DUMP
> + /*
> + * Kdump isn't guaranteed to power-off all secondary CPUs, CNP
> + * may share TLB entries with a CPU stuck in the crashed
> + * kernel.
> + */
> + if (elfcorehdr_size)
> + return false;
> +#endif
Vladimir,
If you are respinning with the changes mentioned by Catalin, could we
use is_kdump_kernel() instead of relying on the variable ?
Reviewed-by: Suzuki K Poulose <suzuki.poulose@arm.com>
Suzuki
next prev parent reply other threads:[~2018-07-30 16:24 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-06-19 10:18 [PATCH v5 0/3] Support Common Not Private translations Vladimir Murzin
2018-06-19 10:18 ` [PATCH v5 1/3] arm64: mm: " Vladimir Murzin
2018-07-27 11:35 ` Catalin Marinas
2018-07-30 10:08 ` Vladimir Murzin
2018-07-30 15:42 ` Catalin Marinas
2018-07-30 16:29 ` Robin Murphy
2018-07-30 17:03 ` Catalin Marinas
2018-07-31 10:17 ` Vladimir Murzin
2018-07-31 11:29 ` Catalin Marinas
2018-07-30 16:24 ` Suzuki K Poulose [this message]
2018-07-31 10:18 ` Vladimir Murzin
2018-06-19 10:18 ` [PATCH v5 2/3] arm64: KVM: Enable " Vladimir Murzin
2018-07-27 11:41 ` Catalin Marinas
2018-07-27 12:02 ` Marc Zyngier
2018-06-19 10:18 ` [PATCH v5 3/3] arm64: Introduce command line parameter to disable CNP Vladimir Murzin
2018-07-27 11:43 ` Catalin Marinas
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=3c59c004-9014-a888-a7ef-3904970121ba@arm.com \
--to=suzuki.poulose@arm.com \
--cc=linux-arm-kernel@lists.infradead.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox