From: Russell King - ARM Linux <linux@armlinux.org.uk>
To: Sasha Levin <sashal@kernel.org>
Cc: stable@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH AUTOSEL 4.9 10/15] ARM: split out processor lookup
Date: Fri, 23 Nov 2018 00:04:42 +0000 [thread overview]
Message-ID: <20181123000442.GO30658@n2100.armlinux.org.uk> (raw)
In-Reply-To: <20181122195621.13776-10-sashal@kernel.org>
Sorry, I meant this patch, not patch 11.
On Thu, Nov 22, 2018 at 02:56:16PM -0500, Sasha Levin wrote:
> From: Russell King <rmk+kernel@armlinux.org.uk>
>
> [ Upstream commit 65987a8553061515b5851b472081aedb9837a391 ]
>
> Split out the lookup of the processor type and associated error handling
> from the rest of setup_processor() - we will need to use this in the
> secondary CPU bringup path for big.Little Spectre variant 2 mitigation.
>
> Reviewed-by: Julien Thierry <julien.thierry@arm.com>
> Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
> Signed-off-by: Sasha Levin <sashal@kernel.org>
> ---
> arch/arm/include/asm/cputype.h | 1 +
> arch/arm/kernel/setup.c | 31 +++++++++++++++++++------------
> 2 files changed, 20 insertions(+), 12 deletions(-)
>
> diff --git a/arch/arm/include/asm/cputype.h b/arch/arm/include/asm/cputype.h
> index b62eaeb147aa..65db1376f09a 100644
> --- a/arch/arm/include/asm/cputype.h
> +++ b/arch/arm/include/asm/cputype.h
> @@ -98,6 +98,7 @@
> #define ARM_CPU_PART_SCORPION 0x510002d0
>
> extern unsigned int processor_id;
> +struct proc_info_list *lookup_processor(u32 midr);
>
> #ifdef CONFIG_CPU_CP15
> #define read_cpuid(reg) \
> diff --git a/arch/arm/kernel/setup.c b/arch/arm/kernel/setup.c
> index f4e54503afa9..8d5c3a118abe 100644
> --- a/arch/arm/kernel/setup.c
> +++ b/arch/arm/kernel/setup.c
> @@ -667,22 +667,29 @@ static void __init smp_build_mpidr_hash(void)
> }
> #endif
>
> -static void __init setup_processor(void)
> +/*
> + * locate processor in the list of supported processor types. The linker
> + * builds this table for us from the entries in arch/arm/mm/proc-*.S
> + */
> +struct proc_info_list *lookup_processor(u32 midr)
> {
> - struct proc_info_list *list;
> + struct proc_info_list *list = lookup_processor_type(midr);
>
> - /*
> - * locate processor in the list of supported processor
> - * types. The linker builds this table for us from the
> - * entries in arch/arm/mm/proc-*.S
> - */
> - list = lookup_processor_type(read_cpuid_id());
> if (!list) {
> - pr_err("CPU configuration botched (ID %08x), unable to continue.\n",
> - read_cpuid_id());
> - while (1);
> + pr_err("CPU%u: configuration botched (ID %08x), CPU halted\n",
> + smp_processor_id(), midr);
> + while (1)
> + /* can't use cpu_relax() here as it may require MMU setup */;
> }
>
> + return list;
> +}
> +
> +static void __init setup_processor(void)
> +{
> + unsigned int midr = read_cpuid_id();
> + struct proc_info_list *list = lookup_processor(midr);
> +
> cpu_name = list->cpu_name;
> __cpu_architecture = __get_cpu_architecture();
>
> @@ -700,7 +707,7 @@ static void __init setup_processor(void)
> #endif
>
> pr_info("CPU: %s [%08x] revision %d (ARMv%s), cr=%08lx\n",
> - cpu_name, read_cpuid_id(), read_cpuid_id() & 15,
> + list->cpu_name, midr, midr & 15,
> proc_arch[cpu_architecture()], get_cr());
>
> snprintf(init_utsname()->machine, __NEW_UTS_LEN + 1, "%s%c",
> --
> 2.17.1
>
--
RMK's Patch system: http://www.armlinux.org.uk/developer/patches/
FTTC broadband for 0.8mile line in suburbia: sync at 12.1Mbps down 622kbps up
According to speedtest.net: 11.9Mbps down 500kbps up
next prev parent reply other threads:[~2018-11-23 0:04 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-11-22 19:56 [PATCH AUTOSEL 4.9 01/15] pinctrl: meson: fix pinconf bias disable Sasha Levin
2018-11-22 19:56 ` [PATCH AUTOSEL 4.9 02/15] scsi: NCR5380: Return false instead of NULL Sasha Levin
2018-11-22 19:56 ` [PATCH AUTOSEL 4.9 03/15] KVM: PPC: Move and undef TRACE_INCLUDE_PATH/FILE Sasha Levin
2018-11-22 19:56 ` [PATCH AUTOSEL 4.9 04/15] cpufreq: imx6q: add return value check for voltage scale Sasha Levin
2018-11-22 19:56 ` [PATCH AUTOSEL 4.9 05/15] rtc: pcf2127: fix a kmemleak caused in pcf2127_i2c_gather_write Sasha Levin
2018-11-22 19:56 ` [PATCH AUTOSEL 4.9 06/15] floppy: fix race condition in __floppy_read_block_0() Sasha Levin
2018-11-22 19:56 ` [PATCH AUTOSEL 4.9 07/15] powerpc/io: Fix the IO workarounds code to work with Radix Sasha Levin
2018-11-22 19:56 ` [PATCH AUTOSEL 4.9 08/15] perf/x86/intel/uncore: Add more IMC PCI IDs for KabyLake and CoffeeLake CPUs Sasha Levin
2018-11-22 19:56 ` [PATCH AUTOSEL 4.9 09/15] ARM: make lookup_processor_type() non-__init Sasha Levin
2018-11-23 0:04 ` Russell King - ARM Linux
2018-11-22 19:56 ` [PATCH AUTOSEL 4.9 10/15] ARM: split out processor lookup Sasha Levin
2018-11-23 0:04 ` Russell King - ARM Linux [this message]
2018-11-22 19:56 ` [PATCH AUTOSEL 4.9 11/15] SUNRPC: Fix a bogus get/put in generic_key_to_expire() Sasha Levin
2018-11-22 19:56 ` [PATCH AUTOSEL 4.9 12/15] kdb: Use strscpy with destination buffer size Sasha Levin
2018-11-22 19:56 ` [PATCH AUTOSEL 4.9 13/15] powerpc/numa: Suppress "VPHN is not supported" messages Sasha Levin
2018-11-22 19:56 ` [PATCH AUTOSEL 4.9 14/15] efi/arm: Revert deferred unmap of early memmap mapping Sasha Levin
2018-11-22 19:56 ` [PATCH AUTOSEL 4.9 15/15] tmpfs: make lseek(SEEK_DATA/SEK_HOLE) return ENXIO with a negative offset Sasha Levin
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=20181123000442.GO30658@n2100.armlinux.org.uk \
--to=linux@armlinux.org.uk \
--cc=linux-kernel@vger.kernel.org \
--cc=sashal@kernel.org \
--cc=stable@vger.kernel.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