2 * Precise Delay Loops for S390
4 * Copyright IBM Corp. 1999,2008
5 * Author(s): Martin Schwidefsky <schwidefsky@de.ibm.com>,
6 * Heiko Carstens <heiko.carstens@de.ibm.com>,
9 #include <linux/sched.h>
10 #include <linux/delay.h>
11 #include <linux/timex.h>
12 #include <linux/module.h>
13 #include <linux/irqflags.h>
14 #include <linux/interrupt.h>
16 void __delay(unsigned long loops
)
19 * To end the bloody studid and useless discussion about the
20 * BogoMips number I took the liberty to define the __delay
21 * function in a way that that resulting BogoMips number will
22 * yield the megahertz number of the cpu. The important function
23 * is udelay and that is done using the tod clock. -- martin.
25 asm volatile("0: brct %0,0b" : : "d" ((loops
/2) + 1));
28 static void __udelay_disabled(unsigned long usecs
)
30 unsigned long mask
, cr0
, cr0_saved
;
33 clock_saved
= local_tick_disable();
34 set_clock_comparator(get_clock() + ((u64
) usecs
<< 12));
35 __ctl_store(cr0_saved
, 0, 0);
36 cr0
= (cr0_saved
& 0xffff00e0) | 0x00000800;
37 __ctl_load(cr0
, 0, 0);
38 mask
= psw_kernel_bits
| PSW_MASK_WAIT
| PSW_MASK_EXT
;
40 __load_psw_mask(mask
);
42 __ctl_load(cr0_saved
, 0, 0);
43 local_tick_enable(clock_saved
);
44 set_clock_comparator(S390_lowcore
.clock_comparator
);
47 static void __udelay_enabled(unsigned long usecs
)
52 mask
= psw_kernel_bits
| PSW_MASK_WAIT
| PSW_MASK_EXT
| PSW_MASK_IO
;
53 end
= get_clock() + ((u64
) usecs
<< 12);
55 time
= end
< S390_lowcore
.clock_comparator
?
56 end
: S390_lowcore
.clock_comparator
;
57 set_clock_comparator(time
);
59 __load_psw_mask(mask
);
61 } while (get_clock() < end
);
62 set_clock_comparator(S390_lowcore
.clock_comparator
);
66 * Waits for 'usecs' microseconds using the TOD clock comparator.
68 void __udelay(unsigned long usecs
)
73 local_irq_save(flags
);
75 __udelay_disabled(usecs
);
79 if (raw_irqs_disabled_flags(flags
))
80 __udelay_disabled(usecs
);
82 __udelay_enabled(usecs
);
85 if (raw_irqs_disabled_flags(flags
)) {
87 __udelay_disabled(usecs
);
91 __udelay_enabled(usecs
);
93 local_irq_restore(flags
);
96 EXPORT_SYMBOL(__udelay
);
99 * Simple udelay variant. To be used on startup and reboot
100 * when the interrupt handler isn't working.
102 void udelay_simple(unsigned long usecs
)
106 end
= get_clock() + ((u64
) usecs
<< 12);
107 while (get_clock() < end
)