powerpc: Merge smp-tbsync.c (the generic timebase sync routine)

Signed-off-by: Paul Mackerras <paulus@samba.org>
This commit is contained in:
Paul Mackerras 2005-11-04 13:28:58 +11:00
parent d3ab57ebdc
commit 8ad200d7b7
5 changed files with 64 additions and 64 deletions

View File

@ -300,6 +300,7 @@ config PPC_PMAC64
bool bool
depends on PPC_PMAC && POWER4 depends on PPC_PMAC && POWER4
select U3_DART select U3_DART
select GENERIC_TBSYNC
default y default y
config PPC_PREP config PPC_PREP
@ -314,6 +315,7 @@ config PPC_MAPLE
bool " Maple 970FX Evaluation Board" bool " Maple 970FX Evaluation Board"
select U3_DART select U3_DART
select MPIC_BROKEN_U3 select MPIC_BROKEN_U3
select GENERIC_TBSYNC
default n default n
help help
This option enables support for the Maple 970FX Evaluation Board. This option enables support for the Maple 970FX Evaluation Board.
@ -386,6 +388,11 @@ config PPC_MPC106
bool bool
default n default n
config GENERIC_TBSYNC
bool
default y if CONFIG_PPC32 && CONFIG_SMP
default n
source "drivers/cpufreq/Kconfig" source "drivers/cpufreq/Kconfig"
config CPU_FREQ_PMAC config CPU_FREQ_PMAC

View File

@ -21,6 +21,7 @@ obj-$(CONFIG_PPC_RTAS) += rtas.o
obj-$(CONFIG_RTAS_FLASH) += rtas_flash.o obj-$(CONFIG_RTAS_FLASH) += rtas_flash.o
obj-$(CONFIG_RTAS_PROC) += rtas-proc.o obj-$(CONFIG_RTAS_PROC) += rtas-proc.o
obj-$(CONFIG_IBMVIO) += vio.o obj-$(CONFIG_IBMVIO) += vio.o
obj-$(CONFIG_GENERIC_TBSYNC) += smp-tbsync.o
ifeq ($(CONFIG_PPC_MERGE),y) ifeq ($(CONFIG_PPC_MERGE),y)

View File

@ -22,11 +22,11 @@ enum {
}; };
static struct { static struct {
volatile long tb; volatile u64 tb;
volatile long mark; volatile u64 mark;
volatile int cmd; volatile int cmd;
volatile int handshake; volatile int handshake;
int filler[3]; int filler[2];
volatile int ack; volatile int ack;
int filler2[7]; int filler2[7];
@ -36,61 +36,55 @@ static struct {
static volatile int running; static volatile int running;
static void __devinit static void __devinit enter_contest(u64 mark, long add)
enter_contest( long mark, long add )
{ {
while( (long)(mftb() - mark) < 0 ) while (get_tb() < mark)
tbsync->race_result = add; tbsync->race_result = add;
} }
void __devinit void __devinit smp_generic_take_timebase(void)
smp_generic_take_timebase( void )
{ {
int cmd; int cmd;
long tb; u64 tb;
local_irq_disable(); local_irq_disable();
while (!running) while (!running)
; barrier();
rmb(); rmb();
for (;;) { for (;;) {
tbsync->ack = 1; tbsync->ack = 1;
while (!tbsync->handshake) while (!tbsync->handshake)
; barrier();
rmb(); rmb();
cmd = tbsync->cmd; cmd = tbsync->cmd;
tb = tbsync->tb; tb = tbsync->tb;
mb();
tbsync->ack = 0; tbsync->ack = 0;
if (cmd == kExit) if (cmd == kExit)
return; break;
if( cmd == kSetAndTest ) {
while (tbsync->handshake) while (tbsync->handshake)
; barrier();
asm volatile ("mttbl %0" :: "r" (tb & 0xfffffffful) ); if (cmd == kSetAndTest)
asm volatile ("mttbu %0" :: "r" (tb >> 32) ); set_tb(tb >> 32, tb & 0xfffffffful);
} else {
while( tbsync->handshake )
;
}
enter_contest(tbsync->mark, -1); enter_contest(tbsync->mark, -1);
} }
local_irq_enable(); local_irq_enable();
} }
static int __devinit static int __devinit start_contest(int cmd, long offset, int num)
start_contest( int cmd, long offset, long num )
{ {
int i, score=0; int i, score=0;
long tb, mark; u64 tb;
long mark;
tbsync->cmd = cmd; tbsync->cmd = cmd;
local_irq_disable(); local_irq_disable();
for (i = -3; i < num; ) { for (i = -3; i < num; ) {
tb = (long)mftb() + 400; tb = get_tb() + 400;
tbsync->tb = tb + offset; tbsync->tb = tb + offset;
tbsync->mark = mark = tb + 400; tbsync->mark = mark = tb + 400;
@ -98,18 +92,16 @@ start_contest( int cmd, long offset, long num )
tbsync->handshake = 1; tbsync->handshake = 1;
while (tbsync->ack) while (tbsync->ack)
; barrier();
while( (long)(mftb() - tb) <= 0 ) while (get_tb() <= tb)
; barrier();
tbsync->handshake = 0; tbsync->handshake = 0;
enter_contest(mark, 1); enter_contest(mark, 1);
while (!tbsync->ack) while (!tbsync->ack)
; barrier();
if ((tbsync->tb ^ (long)mftb()) & 0x8000000000000000ul)
continue;
if (i++ > 0) if (i++ > 0)
score += tbsync->race_result; score += tbsync->race_result;
} }
@ -117,8 +109,7 @@ start_contest( int cmd, long offset, long num )
return score; return score;
} }
void __devinit void __devinit smp_generic_give_timebase(void)
smp_generic_give_timebase( void )
{ {
int i, score, score2, old, min=0, max=5000, offset=1000; int i, score, score2, old, min=0, max=5000, offset=1000;
@ -131,7 +122,7 @@ smp_generic_give_timebase( void )
running = 1; running = 1;
while (!tbsync->ack) while (!tbsync->ack)
; barrier();
printk("Got ack\n"); printk("Got ack\n");
@ -150,7 +141,8 @@ smp_generic_give_timebase( void )
score = start_contest(kSetAndTest, min, NUM_ITER); score = start_contest(kSetAndTest, min, NUM_ITER);
score2 = start_contest(kSetAndTest, max, NUM_ITER); score2 = start_contest(kSetAndTest, max, NUM_ITER);
printk( "Min %d (score %d), Max %d (score %d)\n", min, score, max, score2 ); printk("Min %d (score %d), Max %d (score %d)\n",
min, score, max, score2);
score = abs(score); score = abs(score);
score2 = abs(score2); score2 = abs(score2);
offset = (score < score2) ? min : max; offset = (score < score2) ? min : max;
@ -171,7 +163,7 @@ smp_generic_give_timebase( void )
wmb(); wmb();
tbsync->handshake = 1; tbsync->handshake = 1;
while (tbsync->ack) while (tbsync->ack)
; barrier();
tbsync->handshake = 0; tbsync->handshake = 0;
kfree(tbsync); kfree(tbsync);
tbsync = NULL; tbsync = NULL;

View File

@ -89,12 +89,14 @@ config PPC_PMAC
bool " Apple G5 based machines" bool " Apple G5 based machines"
default y default y
select U3_DART select U3_DART
select GENERIC_TBSYNC
config PPC_MAPLE config PPC_MAPLE
depends on PPC_MULTIPLATFORM depends on PPC_MULTIPLATFORM
bool " Maple 970FX Evaluation Board" bool " Maple 970FX Evaluation Board"
select U3_DART select U3_DART
select MPIC_BROKEN_U3 select MPIC_BROKEN_U3
select GENERIC_TBSYNC
default n default n
help help
This option enables support for the Maple 970FX Evaluation Board. This option enables support for the Maple 970FX Evaluation Board.
@ -182,6 +184,9 @@ config MPIC_BROKEN_U3
depends on PPC_MAPLE depends on PPC_MAPLE
default y default y
config GENERIC_TBSYNC
def_bool n
config PPC_PMAC64 config PPC_PMAC64
bool bool
depends on PPC_PMAC depends on PPC_PMAC

View File

@ -51,11 +51,6 @@ obj-$(CONFIG_PPC_PMAC) += udbg_scc.o
obj-$(CONFIG_PPC_MAPLE) += udbg_16550.o obj-$(CONFIG_PPC_MAPLE) += udbg_16550.o
ifdef CONFIG_SMP
obj-$(CONFIG_PPC_PMAC) += smp-tbsync.o
obj-$(CONFIG_PPC_MAPLE) += smp-tbsync.o
endif
obj-$(CONFIG_KPROBES) += kprobes.o obj-$(CONFIG_KPROBES) += kprobes.o
CFLAGS_ioctl32.o += -Ifs/ CFLAGS_ioctl32.o += -Ifs/