Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1295047
| From | "Suzuki K. Poulose" <Suzuki.Poulose@arm.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH v4] arm64: run-time detection for aarch32 support |
| Date | 2015-12-18 18:10 +0100 |
| Message-ID | <qH6Hx-8tp-33@gated-at.bofh.it> (permalink) |
| References | <qH5Ls-7Ro-3@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On 18/12/15 16:00, Yury Norov wrote:
> Kernel option COMPAT defines the ability of executing aarch32 binaries.
> Some platforms does not support aarch32 mode, and so cannot execute that
> binaries. But we cannot just disable COMPAT for them because the same
> kernel binary may be used by multiple platforms.
> diff --git a/arch/arm64/include/asm/cpufeature.h b/arch/arm64/include/asm/cpufeature.h
> index 8f271b8..781a2f7 100644
> --- a/arch/arm64/include/asm/cpufeature.h
> +++ b/arch/arm64/include/asm/cpufeature.h
> @@ -184,6 +184,13 @@ static inline bool system_supports_mixed_endian_el0(void)
> return id_aa64mmfr0_mixed_endian_el0(read_system_reg(SYS_ID_AA64MMFR0_EL1));
> }
>
> +static inline bool system_supports_aarch32_el0(void)
> +{
> + u64 pfr0 = read_system_reg(SYS_ID_AA64PFR0_EL1);
> + return ((pfr0 >> ID_AA64PFR0_EL0_SHIFT) & ID_AA64PFR0_ELx_MASK)
> + != ID_AA64PFR0_EL0_64BIT_ONLY;
Could you please use
cpuid_feature_extract_field(pfr0, ID_AA64PFR0_EL0_SHIFT) != ID_AA64PFR0_EL0_64BIT_ONLY
instead and
> --- a/arch/arm64/include/asm/sysreg.h
> +++ b/arch/arm64/include/asm/sysreg.h
> @@ -102,6 +102,7 @@
> #define ID_AA64PFR0_EL2_SHIFT 8
> #define ID_AA64PFR0_EL1_SHIFT 4
> #define ID_AA64PFR0_EL0_SHIFT 0
> +#define ID_AA64PFR0_ELx_MASK 0xf
get rid of ^ ?
As per ARM ARM, AArch32 only ID register values are unknown if AArch32 is
not implemented. So I think we need to skip accessing the AArch32 ID registers
everywhere (feature tracking), if the CPU doesn't supports it, to avoid
unnecessary SANITY failures and TAINTing the kernel.
Cheers
Suzuki
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH v4] arm64: run-time detection for aarch32 support Yury Norov <ynorov@caviumnetworks.com> - 2015-12-18 17:10 +0100
Re: [PATCH v4] arm64: run-time detection for aarch32 support "Suzuki K. Poulose" <Suzuki.Poulose@arm.com> - 2015-12-18 18:10 +0100
Re: [PATCH v4] arm64: run-time detection for aarch32 support Mark Rutland <mark.rutland@arm.com> - 2015-12-18 18:50 +0100
Re: [PATCH v4] arm64: run-time detection for aarch32 support "Suzuki K. Poulose" <Suzuki.Poulose@arm.com> - 2015-12-18 23:20 +0100
Re: [PATCH v4] arm64: run-time detection for aarch32 support Mark Rutland <mark.rutland@arm.com> - 2015-12-18 18:50 +0100
csiph-web