Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c413521e authored by Paul Mundt's avatar Paul Mundt
Browse files

ARM: mach-shmobile: update for SMP changes.



There have likewise been some API updates, so we refactor to use the
consolidated smp_prepare_cpus().

Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
parent c0312b33
Loading
Loading
Loading
Loading
+3 −18
Original line number Original line Diff line number Diff line
@@ -2,6 +2,7 @@
 * SMP support for R-Mobile / SH-Mobile
 * SMP support for R-Mobile / SH-Mobile
 *
 *
 * Copyright (C) 2010  Magnus Damm
 * Copyright (C) 2010  Magnus Damm
 * Copyright (C) 2011  Paul Mundt
 *
 *
 * Based on vexpress, Copyright (C) 2002 ARM Ltd, All Rights Reserved
 * Based on vexpress, Copyright (C) 2002 ARM Ltd, All Rights Reserved
 *
 *
@@ -33,7 +34,6 @@ static void __init shmobile_smp_prepare_cpus(void)
		sh73a0_smp_prepare_cpus();
		sh73a0_smp_prepare_cpus();
}
}



void __cpuinit platform_secondary_init(unsigned int cpu)
void __cpuinit platform_secondary_init(unsigned int cpu)
{
{
	trace_hardirqs_off();
	trace_hardirqs_off();
@@ -59,27 +59,12 @@ void __init smp_init_cpus(void)
		set_cpu_possible(i, true);
		set_cpu_possible(i, true);
}
}


void __init smp_prepare_cpus(unsigned int max_cpus)
void __init platform_smp_prepare_cpus(unsigned int max_cpus)
{
{
	unsigned int ncores = shmobile_smp_get_core_count();
	unsigned int cpu = smp_processor_id();
	int i;
	int i;


	smp_store_cpu_info(cpu);

	if (max_cpus > ncores)
		max_cpus = ncores;

	for (i = 0; i < max_cpus; i++)
	for (i = 0; i < max_cpus; i++)
		set_cpu_present(i, true);
		set_cpu_present(i, true);


	if (max_cpus > 1) {
	shmobile_smp_prepare_cpus();
	shmobile_smp_prepare_cpus();

		/*
		 * Enable the local timer or broadcast device for the
		 * boot CPU, but only if we have more than one CPU.
		 */
		percpu_timer_setup();
	}
}
}