|
@@ -48,7 +48,7 @@ extern int smp_ipi_irq_setup(int cpu, int irq);
|
|
* @init_early_smp: A SMP specific h/w block can init itself
|
|
* @init_early_smp: A SMP specific h/w block can init itself
|
|
* Could be common across platforms so not covered by
|
|
* Could be common across platforms so not covered by
|
|
* mach_desc->init_early()
|
|
* mach_desc->init_early()
|
|
- * @init_irq_cpu: Called for each core so SMP h/w block driver can do
|
|
|
|
|
|
+ * @init_per_cpu: Called for each core so SMP h/w block driver can do
|
|
* any needed setup per cpu (e.g. IPI request)
|
|
* any needed setup per cpu (e.g. IPI request)
|
|
* @cpu_kick: For Master to kickstart a cpu (optionally at a PC)
|
|
* @cpu_kick: For Master to kickstart a cpu (optionally at a PC)
|
|
* @ipi_send: To send IPI to a @cpu
|
|
* @ipi_send: To send IPI to a @cpu
|
|
@@ -57,7 +57,7 @@ extern int smp_ipi_irq_setup(int cpu, int irq);
|
|
struct plat_smp_ops {
|
|
struct plat_smp_ops {
|
|
const char *info;
|
|
const char *info;
|
|
void (*init_early_smp)(void);
|
|
void (*init_early_smp)(void);
|
|
- void (*init_irq_cpu)(int cpu);
|
|
|
|
|
|
+ void (*init_per_cpu)(int cpu);
|
|
void (*cpu_kick)(int cpu, unsigned long pc);
|
|
void (*cpu_kick)(int cpu, unsigned long pc);
|
|
void (*ipi_send)(int cpu);
|
|
void (*ipi_send)(int cpu);
|
|
void (*ipi_clear)(int irq);
|
|
void (*ipi_clear)(int irq);
|