diff options
author | Jon Medhurst <tixy@linaro.org> | 2013-05-21 09:40:51 -0400 |
---|---|---|
committer | Stefano Stabellini <stefano.stabellini@eu.citrix.com> | 2013-05-21 09:40:51 -0400 |
commit | b382b940f821784107ca22de3455bb90e4512557 (patch) | |
tree | 4d4aa0747a13a27dcb7502b54e60ada6cc6d4b08 | |
parent | 05774088391c7430f6a4c1d5d18196ef17bb3ba9 (diff) |
ARM: Enable selection of SMP operations at boot time
Add a new 'smp_init' hook to machine_desc so platforms can specify a
function to be used to setup smp ops instead of having a statically
defined value. The hook must return true when smp_ops are initialized.
If false the static mdesc->smp_ops will be used by default.
Add the definition of "bool" by including the linux/types.h file to
asm/mach/arch.h and make it self-contained.
Signed-off-by: Jon Medhurst <tixy@linaro.org>
Signed-off-by: Nicolas Pitre <nicolas.pitre@linaro.org>
Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Reviewed-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
-rw-r--r-- | arch/arm/include/asm/mach/arch.h | 5 | ||||
-rw-r--r-- | arch/arm/kernel/setup.c | 10 |
2 files changed, 11 insertions, 4 deletions
diff --git a/arch/arm/include/asm/mach/arch.h b/arch/arm/include/asm/mach/arch.h index 308ad7d6f98b..75bf07910b81 100644 --- a/arch/arm/include/asm/mach/arch.h +++ b/arch/arm/include/asm/mach/arch.h | |||
@@ -8,6 +8,8 @@ | |||
8 | * published by the Free Software Foundation. | 8 | * published by the Free Software Foundation. |
9 | */ | 9 | */ |
10 | 10 | ||
11 | #include <linux/types.h> | ||
12 | |||
11 | #ifndef __ASSEMBLY__ | 13 | #ifndef __ASSEMBLY__ |
12 | 14 | ||
13 | struct tag; | 15 | struct tag; |
@@ -16,8 +18,10 @@ struct pt_regs; | |||
16 | struct smp_operations; | 18 | struct smp_operations; |
17 | #ifdef CONFIG_SMP | 19 | #ifdef CONFIG_SMP |
18 | #define smp_ops(ops) (&(ops)) | 20 | #define smp_ops(ops) (&(ops)) |
21 | #define smp_init_ops(ops) (&(ops)) | ||
19 | #else | 22 | #else |
20 | #define smp_ops(ops) (struct smp_operations *)NULL | 23 | #define smp_ops(ops) (struct smp_operations *)NULL |
24 | #define smp_init_ops(ops) (bool (*)(void))NULL | ||
21 | #endif | 25 | #endif |
22 | 26 | ||
23 | struct machine_desc { | 27 | struct machine_desc { |
@@ -41,6 +45,7 @@ struct machine_desc { | |||
41 | unsigned char reserve_lp2 :1; /* never has lp2 */ | 45 | unsigned char reserve_lp2 :1; /* never has lp2 */ |
42 | char restart_mode; /* default restart mode */ | 46 | char restart_mode; /* default restart mode */ |
43 | struct smp_operations *smp; /* SMP operations */ | 47 | struct smp_operations *smp; /* SMP operations */ |
48 | bool (*smp_init)(void); | ||
44 | void (*fixup)(struct tag *, char **, | 49 | void (*fixup)(struct tag *, char **, |
45 | struct meminfo *); | 50 | struct meminfo *); |
46 | void (*reserve)(void);/* reserve mem blocks */ | 51 | void (*reserve)(void);/* reserve mem blocks */ |
diff --git a/arch/arm/kernel/setup.c b/arch/arm/kernel/setup.c index 8f7a6e9926a8..2b3ba15408bd 100644 --- a/arch/arm/kernel/setup.c +++ b/arch/arm/kernel/setup.c | |||
@@ -800,10 +800,12 @@ void __init setup_arch(char **cmdline_p) | |||
800 | psci_init(); | 800 | psci_init(); |
801 | #ifdef CONFIG_SMP | 801 | #ifdef CONFIG_SMP |
802 | if (is_smp()) { | 802 | if (is_smp()) { |
803 | if (psci_smp_available()) | 803 | if (!mdesc->smp_init || !mdesc->smp_init()) { |
804 | smp_set_ops(&psci_smp_ops); | 804 | if (psci_smp_available()) |
805 | else if (mdesc->smp) | 805 | smp_set_ops(&psci_smp_ops); |
806 | smp_set_ops(mdesc->smp); | 806 | else if (mdesc->smp) |
807 | smp_set_ops(mdesc->smp); | ||
808 | } | ||
807 | smp_init_cpus(); | 809 | smp_init_cpus(); |
808 | } | 810 | } |
809 | #endif | 811 | #endif |