2 * OMAP4 SMP source file. It contains platform specific fucntions
3 * needed for the linux smp kernel.
5 * Copyright (C) 2009 Texas Instruments, Inc.
8 * Santosh Shilimkar <santosh.shilimkar@ti.com>
10 * Platform file needed for the OMAP4 SMP. This file is based on arm
11 * realview smp platform.
12 * * Copyright (c) 2002 ARM Limited.
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License version 2 as
16 * published by the Free Software Foundation.
18 #include <linux/init.h>
19 #include <linux/device.h>
20 #include <linux/jiffies.h>
21 #include <linux/smp.h>
24 #include <asm/localtimer.h>
25 #include <asm/smp_scu.h>
26 #include <mach/hardware.h>
28 /* Registers used for communicating startup information */
29 #define OMAP4_AUXCOREBOOT_REG0 (OMAP44XX_VA_WKUPGEN_BASE + 0x800)
30 #define OMAP4_AUXCOREBOOT_REG1 (OMAP44XX_VA_WKUPGEN_BASE + 0x804)
32 /* SCU base address */
33 static void __iomem
*scu_base
= OMAP44XX_VA_SCU_BASE
;
36 * Use SCU config register to count number of cores
38 static inline unsigned int get_core_count(void)
41 return scu_get_core_count(scu_base
);
45 static DEFINE_SPINLOCK(boot_lock
);
47 void __cpuinit
platform_secondary_init(unsigned int cpu
)
52 * If any interrupts are already enabled for the primary
53 * core (e.g. timer irq), then they will not have been enabled
57 gic_cpu_init(0, OMAP2_IO_ADDRESS(OMAP44XX_GIC_CPU_BASE
));
60 * Synchronise with the boot thread.
62 spin_lock(&boot_lock
);
63 spin_unlock(&boot_lock
);
66 int __cpuinit
boot_secondary(unsigned int cpu
, struct task_struct
*idle
)
68 unsigned long timeout
;
71 * Set synchronisation state between this boot processor
72 * and the secondary one
74 spin_lock(&boot_lock
);
77 * Update the AuxCoreBoot1 with boot state for secondary core.
78 * omap_secondary_startup() routine will hold the secondary core till
79 * the AuxCoreBoot1 register is updated with cpu state
80 * A barrier is added to ensure that write buffer is drained
82 __raw_writel(cpu
, OMAP4_AUXCOREBOOT_REG1
);
85 timeout
= jiffies
+ (1 * HZ
);
86 while (time_before(jiffies
, timeout
))
90 * Now the secondary core is starting up let it run its
91 * calibrations, then wait for it to finish
93 spin_unlock(&boot_lock
);
98 static void __init
wakeup_secondary(void)
101 * Write the address of secondary startup routine into the
102 * AuxCoreBoot0 where ROM code will jump and start executing
103 * on secondary core once out of WFE
104 * A barrier is added to ensure that write buffer is drained
106 __raw_writel(virt_to_phys(omap_secondary_startup
), \
107 OMAP4_AUXCOREBOOT_REG0
);
111 * Send a 'sev' to wake the secondary core from WFE.
118 * Initialise the CPU possible map early - this describes the CPUs
119 * which may be present or become present in the system.
121 void __init
smp_init_cpus(void)
123 unsigned int i
, ncores
= get_core_count();
125 for (i
= 0; i
< ncores
; i
++)
126 set_cpu_possible(i
, true);
129 void __init
smp_prepare_cpus(unsigned int max_cpus
)
131 unsigned int ncores
= get_core_count();
132 unsigned int cpu
= smp_processor_id();
138 "OMAP4: strange core count of 0? Default to 1\n");
142 if (ncores
> NR_CPUS
) {
144 "OMAP4: no. of cores (%d) greater than configured "
145 "maximum of %d - clipping\n",
149 smp_store_cpu_info(cpu
);
152 * are we trying to boot more cores than exist?
154 if (max_cpus
> ncores
)
158 * Initialise the present map, which describes the set of CPUs
159 * actually populated at the present time.
161 for (i
= 0; i
< max_cpus
; i
++)
162 set_cpu_present(i
, true);
166 * Enable the local timer or broadcast device for the
167 * boot CPU, but only if we have more than one CPU.
169 percpu_timer_setup();
172 * Initialise the SCU and wake up the secondary core using
173 * wakeup_secondary().
175 scu_enable(scu_base
);