]> xenbits.xensource.com Git - people/sstabellini/linux-pvhvm-deprecated.git/commitdiff
ARM: Enable selection of SMP operations at boot time
authorJon Medhurst <tixy@linaro.org>
Mon, 1 Apr 2013 15:00:40 +0000 (15:00 +0000)
committerStefano Stabellini <stefano.stabellini@eu.citrix.com>
Tue, 2 Apr 2013 16:04:10 +0000 (16:04 +0000)
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.

Signed-off-by: Jon Medhurst <tixy@linaro.org>
Signed-off-by: Nicolas Pitre <nicolas.pitre@linaro.org>
Reviewed-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
arch/arm/include/asm/mach/arch.h
arch/arm/kernel/setup.c

index 308ad7d6f98b77098dd3c831b8831f9731f49211..c01bf53b8589367f676429480e930fa16d577301 100644 (file)
@@ -16,8 +16,10 @@ struct pt_regs;
 struct smp_operations;
 #ifdef CONFIG_SMP
 #define smp_ops(ops) (&(ops))
+#define smp_init_ops(ops) (&(ops))
 #else
 #define smp_ops(ops) (struct smp_operations *)NULL
+#define smp_init_ops(ops) (void (*)(void))NULL
 #endif
 
 struct machine_desc {
@@ -41,6 +43,7 @@ struct machine_desc {
        unsigned char           reserve_lp2 :1; /* never has lp2        */
        char                    restart_mode;   /* default restart mode */
        struct smp_operations   *smp;           /* SMP operations       */
+       void                    (*smp_init)(void);
        void                    (*fixup)(struct tag *, char **,
                                         struct meminfo *);
        void                    (*reserve)(void);/* reserve mem blocks  */
index 341efaa7563119fd287cd9531a2b07ec82f01423..7e193df7a492d63cb3c9a29fc7e7f46e9f0f45d1 100644 (file)
@@ -770,7 +770,9 @@ void __init setup_arch(char **cmdline_p)
        psci_init();
 #ifdef CONFIG_SMP
        if (is_smp()) {
-               if (mdesc->smp)
+               if (mdesc->smp_init)
+                       (*mdesc->smp_init)();
+               else if (mdesc->smp)
                        smp_set_ops(mdesc->smp);
                else if (psci_smp_available())
                        smp_set_ops(&psci_smp_ops);