mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-17 17:24:17 +08:00
4505153954
Based on 1 normalized pattern(s): this program is free software you can redistribute it and or modify it under the terms of the gnu general public license version 2 as published by the free software foundation this program is distributed in the hope that it will be useful but without any warranty without even the implied warranty of merchantability or fitness for a particular purpose see the gnu general public license for more details you should have received a copy of the gnu general public license along with this program if not write to the free software foundation inc 59 temple place suite 330 boston ma 02111 1307 usa extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference in 136 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Alexios Zavras <alexios.zavras@intel.com> Reviewed-by: Allison Randal <allison@lohutok.net> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190530000436.384967451@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
71 lines
1.4 KiB
C
71 lines
1.4 KiB
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* arch/arm/kernel/thumbee.c
|
|
*
|
|
* Copyright (C) 2008 ARM Limited
|
|
*/
|
|
|
|
#include <linux/kernel.h>
|
|
#include <linux/init.h>
|
|
|
|
#include <asm/cputype.h>
|
|
#include <asm/system_info.h>
|
|
#include <asm/thread_notify.h>
|
|
|
|
/*
|
|
* Access to the ThumbEE Handler Base register
|
|
*/
|
|
static inline unsigned long teehbr_read(void)
|
|
{
|
|
unsigned long v;
|
|
asm("mrc p14, 6, %0, c1, c0, 0\n" : "=r" (v));
|
|
return v;
|
|
}
|
|
|
|
static inline void teehbr_write(unsigned long v)
|
|
{
|
|
asm("mcr p14, 6, %0, c1, c0, 0\n" : : "r" (v));
|
|
}
|
|
|
|
static int thumbee_notifier(struct notifier_block *self, unsigned long cmd, void *t)
|
|
{
|
|
struct thread_info *thread = t;
|
|
|
|
switch (cmd) {
|
|
case THREAD_NOTIFY_FLUSH:
|
|
teehbr_write(0);
|
|
break;
|
|
case THREAD_NOTIFY_SWITCH:
|
|
current_thread_info()->thumbee_state = teehbr_read();
|
|
teehbr_write(thread->thumbee_state);
|
|
break;
|
|
}
|
|
|
|
return NOTIFY_DONE;
|
|
}
|
|
|
|
static struct notifier_block thumbee_notifier_block = {
|
|
.notifier_call = thumbee_notifier,
|
|
};
|
|
|
|
static int __init thumbee_init(void)
|
|
{
|
|
unsigned long pfr0;
|
|
unsigned int cpu_arch = cpu_architecture();
|
|
|
|
if (cpu_arch < CPU_ARCH_ARMv7)
|
|
return 0;
|
|
|
|
pfr0 = read_cpuid_ext(CPUID_EXT_PFR0);
|
|
if ((pfr0 & 0x0000f000) != 0x00001000)
|
|
return 0;
|
|
|
|
pr_info("ThumbEE CPU extension supported.\n");
|
|
elf_hwcap |= HWCAP_THUMBEE;
|
|
thread_register_notifier(&thumbee_notifier_block);
|
|
|
|
return 0;
|
|
}
|
|
|
|
late_initcall(thumbee_init);
|