Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

[POWERPC] pasemi: SMP timebase sync

Timebase update is simple on PA6T, since global updates can be done from
one core by writing to an SPR.

Signed-off-by: Olof Johansson <olof@lixom.net>
Signed-off-by: Paul Mackerras <paulus@samba.org>

authored by

Olof Johansson and committed by
Paul Mackerras
c388cfeb f620be99

+31 -2
+25 -2
arch/powerpc/platforms/pasemi/setup.c
··· 48 48 } 49 49 50 50 #ifdef CONFIG_SMP 51 + static DEFINE_SPINLOCK(timebase_lock); 52 + 53 + static void __devinit pas_give_timebase(void) 54 + { 55 + unsigned long tb; 56 + 57 + spin_lock(&timebase_lock); 58 + mtspr(SPRN_TBCTL, TBCTL_FREEZE); 59 + tb = mftb(); 60 + mtspr(SPRN_TBCTL, TBCTL_UPDATE_LOWER | (tb & 0xffffffff)); 61 + mtspr(SPRN_TBCTL, TBCTL_UPDATE_UPPER | (tb >> 32)); 62 + mtspr(SPRN_TBCTL, TBCTL_RESTART); 63 + spin_unlock(&timebase_lock); 64 + pr_debug("pas_give_timebase: cpu %d gave tb %lx\n", 65 + smp_processor_id(), tb); 66 + } 67 + 68 + static void __devinit pas_take_timebase(void) 69 + { 70 + pr_debug("pas_take_timebase: cpu %d has tb %lx\n", 71 + smp_processor_id(), mftb()); 72 + } 73 + 51 74 struct smp_ops_t pas_smp_ops = { 52 75 .probe = smp_mpic_probe, 53 76 .message_pass = smp_mpic_message_pass, 54 77 .kick_cpu = smp_generic_kick_cpu, 55 78 .setup_cpu = smp_mpic_setup_cpu, 56 - .give_timebase = smp_generic_give_timebase, 57 - .take_timebase = smp_generic_take_timebase, 79 + .give_timebase = pas_give_timebase, 80 + .take_timebase = pas_take_timebase, 58 81 }; 59 82 #endif /* CONFIG_SMP */ 60 83
+6
include/asm-powerpc/reg.h
··· 392 392 #define SPRN_HSRR0 0x13A /* Save/Restore Register 0 */ 393 393 #define SPRN_HSRR1 0x13B /* Save/Restore Register 1 */ 394 394 395 + #define SPRN_TBCTL 0x35f /* PA6T Timebase control register */ 396 + #define TBCTL_FREEZE 0x0000000000000000ull /* Freeze all tbs */ 397 + #define TBCTL_RESTART 0x0000000100000000ull /* Restart all tbs */ 398 + #define TBCTL_UPDATE_UPPER 0x0000000200000000ull /* Set upper 32 bits */ 399 + #define TBCTL_UPDATE_LOWER 0x0000000300000000ull /* Set lower 32 bits */ 400 + 395 401 #ifndef SPRN_SVR 396 402 #define SPRN_SVR 0x11E /* System Version Register */ 397 403 #endif