]> git.karo-electronics.de Git - karo-tx-linux.git/commit
MIPS: Synchronize MIPS count one CPU at a time
authorJayachandran C <jchandra@broadcom.com>
Tue, 14 Aug 2012 13:26:13 +0000 (18:56 +0530)
committerRalf Baechle <ralf@linux-mips.org>
Wed, 15 Aug 2012 10:41:05 +0000 (12:41 +0200)
commit38a3af1de1a7e9ca71f4005a80545127817d1574
tree3d842d82a8c13cd0047341969365e144c73463bc
parentd486fc08076c7143673f464f232e39e254aaa4ed
MIPS: Synchronize MIPS count one CPU at a time

The current implementation of synchronise_count_{master,slave} blocks
slave CPUs in early boot until all of them come up. This no longer
works because blocking a CPU with interrupts off after notifying the
CPU to be online causes problems with the current kernel.

Specifically, after the workqueue changes
(commit a08489c569dc1 "Pull workqueue changes from Tejun Heo")
the CPU_ONLINE notification callback workqueue_cpu_up_callback()
will hang on wait_for_completion(&idle_rebind.done), if the slave
CPUs are blocked for synchronize_count_slave().

The changes are to update synchronize_count_{master,slave}() to handle
one CPU at a time and to call synchronise_count_master() in __cpu_up()
so that the CPU_ONLINE notification goes out only after the COP0 COUNT
register is synchronized.

[ralf@linux-mips.org: This matter only to those few platforms which are
using the cp0 counter as their clocksource which are XLP, XLR and MIPS'
CMP solution.]

Signed-off-by: Jayachandran C <jchandra@broadcom.com>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/4216/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/include/asm/r4k-timer.h
arch/mips/kernel/smp.c
arch/mips/kernel/sync-r4k.c