diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2013-09-17 15:13:38 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2013-09-17 15:14:07 +0100 |
commit | 7f63037c8fb204f666367c6469f5a9b9d6888877 (patch) | |
tree | a026c999c7166aa1004e111b2e9afd7b663acdce /arch/arm/include | |
parent | 272b98c6455f00884f0350f775c5342358ebb73f (diff) | |
parent | b22537c682671de97c932d5addb6b7d087352aa1 (diff) | |
download | talos-op-linux-7f63037c8fb204f666367c6469f5a9b9d6888877.tar.gz talos-op-linux-7f63037c8fb204f666367c6469f5a9b9d6888877.zip |
Merge branch 'iks_for_rmk' of git://git.linaro.org/people/nico/linux into devel-stable
Nicolas Pitre writes:
This is the first part of the patch series adding IKS (In-Kernel
Switcher) support for big.LITTLE system architectures. This consists of
the core patches only. Extra patches to come later will introduce
various optimizations and tracing support.
Those patches were posted on the list a while ago here:
http://news.gmane.org/group/gmane.linux.ports.arm.kernel/thread=253942
Diffstat (limited to 'arch/arm/include')
-rw-r--r-- | arch/arm/include/asm/bL_switcher.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/arch/arm/include/asm/bL_switcher.h b/arch/arm/include/asm/bL_switcher.h new file mode 100644 index 000000000000..e0c0bba70bbf --- /dev/null +++ b/arch/arm/include/asm/bL_switcher.h @@ -0,0 +1,17 @@ +/* + * arch/arm/include/asm/bL_switcher.h + * + * Created by: Nicolas Pitre, April 2012 + * Copyright: (C) 2012-2013 Linaro Limited + * + * 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. + */ + +#ifndef ASM_BL_SWITCHER_H +#define ASM_BL_SWITCHER_H + +int bL_switch_request(unsigned int cpu, unsigned int new_cluster_id); + +#endif |