diff options
author | Olof Johansson <olof@lixom.net> | 2018-05-25 13:59:28 -0700 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2018-05-25 13:59:28 -0700 |
commit | 977d29f89c743c187b8c2cba58f60e798a3e2164 (patch) | |
tree | c9d435eef4b0a1dcd45b789a944d819b29dff96a /arch/arm/include/asm | |
parent | 68fc6c839af7da9009bf3fa9da4468c67f3ee5de (diff) | |
parent | 6961275e72a8c15cc4ebf108a81eee758480a6a2 (diff) | |
download | blackbird-op-linux-977d29f89c743c187b8c2cba58f60e798a3e2164.tar.gz blackbird-op-linux-977d29f89c743c187b8c2cba58f60e798a3e2164.zip |
Merge tag 'sunxi-core-for-4.18' of https://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux into next/soc
Allwinner core changes for 4.18
The A83t, unlike the other Allwinner SoCs, cannot use PSCI because of a
silicon bug. As such, we needed to have some smp_ops in order to bringup
the various cores (and clusters) found on this SoC.
* tag 'sunxi-core-for-4.18' of https://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux:
ARM: sun8i: smp: Add support for A83T
ARM: sun9i: smp: Add is_a83t field
ARM: sun9i: smp: Rename clusters's power-off
ARM: shmobile: Convert file to use cntvoff
ARM: sunxi: Add initialization of CNTVOFF
ARM: smp: Add initialization of CNTVOFF
ARM: sunxi: smp: Move assembly code into a file
ARM: Allow this header to be included by assembly files
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'arch/arm/include/asm')
-rw-r--r-- | arch/arm/include/asm/secure_cntvoff.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/arm/include/asm/secure_cntvoff.h b/arch/arm/include/asm/secure_cntvoff.h new file mode 100644 index 000000000000..1f93aee1f630 --- /dev/null +++ b/arch/arm/include/asm/secure_cntvoff.h @@ -0,0 +1,8 @@ +/* SPDX-License-Identifier: GPL-2.0 */ + +#ifndef __ASMARM_ARCH_CNTVOFF_H +#define __ASMARM_ARCH_CNTVOFF_H + +extern void secure_cntvoff_init(void); + +#endif |