blob: 8ad8af915032a32573e06548e90d89ea7563349c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * S390 version
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02003 * Copyright IBM Corp. 1999
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * Derived from "include/asm-i386/timex.h"
6 * Copyright (C) 1992, Linus Torvalds
7 */
8
9#ifndef _ASM_S390_TIMEX_H
10#define _ASM_S390_TIMEX_H
11
Heiko Carstens17eb7a52011-01-05 12:47:26 +010012#include <asm/lowcore.h>
13
Martin Schwidefskyb6112cc2009-04-14 15:36:28 +020014/* The value of the TOD clock for 1.1.1970. */
15#define TOD_UNIX_EPOCH 0x7d91048bca000000ULL
16
Martin Schwidefskyd54853e2007-02-05 21:18:19 +010017/* Inline functions for clock register access. */
Heiko Carstens1aae0562013-01-30 09:49:40 +010018static inline int set_tod_clock(__u64 time)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +010019{
20 int cc;
21
22 asm volatile(
Martin Schwidefsky987bcda2010-02-26 22:37:31 +010023 " sck %1\n"
Martin Schwidefskyd54853e2007-02-05 21:18:19 +010024 " ipm %0\n"
25 " srl %0,28\n"
Martin Schwidefsky987bcda2010-02-26 22:37:31 +010026 : "=d" (cc) : "Q" (time) : "cc");
Martin Schwidefskyd54853e2007-02-05 21:18:19 +010027 return cc;
28}
29
Heiko Carstens1aae0562013-01-30 09:49:40 +010030static inline int store_tod_clock(__u64 *time)
Martin Schwidefskyd54853e2007-02-05 21:18:19 +010031{
32 int cc;
33
34 asm volatile(
Martin Schwidefsky987bcda2010-02-26 22:37:31 +010035 " stck %1\n"
Martin Schwidefskyd54853e2007-02-05 21:18:19 +010036 " ipm %0\n"
37 " srl %0,28\n"
Martin Schwidefsky987bcda2010-02-26 22:37:31 +010038 : "=d" (cc), "=Q" (*time) : : "cc");
Martin Schwidefskyd54853e2007-02-05 21:18:19 +010039 return cc;
40}
41
42static inline void set_clock_comparator(__u64 time)
43{
Martin Schwidefsky987bcda2010-02-26 22:37:31 +010044 asm volatile("sckc %0" : : "Q" (time));
Martin Schwidefskyd54853e2007-02-05 21:18:19 +010045}
46
47static inline void store_clock_comparator(__u64 *time)
48{
Martin Schwidefsky987bcda2010-02-26 22:37:31 +010049 asm volatile("stckc %0" : "=Q" (*time));
Martin Schwidefskyd54853e2007-02-05 21:18:19 +010050}
51
Heiko Carstens17eb7a52011-01-05 12:47:26 +010052void clock_comparator_work(void);
53
54static inline unsigned long long local_tick_disable(void)
55{
56 unsigned long long old;
57
58 old = S390_lowcore.clock_comparator;
59 S390_lowcore.clock_comparator = -1ULL;
Heiko Carstens545b2882011-01-05 12:47:27 +010060 set_clock_comparator(S390_lowcore.clock_comparator);
Heiko Carstens17eb7a52011-01-05 12:47:26 +010061 return old;
62}
63
64static inline void local_tick_enable(unsigned long long comp)
65{
66 S390_lowcore.clock_comparator = comp;
Heiko Carstens545b2882011-01-05 12:47:27 +010067 set_clock_comparator(S390_lowcore.clock_comparator);
Heiko Carstens17eb7a52011-01-05 12:47:26 +010068}
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070#define CLOCK_TICK_RATE 1193180 /* Underlying HZ */
71
72typedef unsigned long long cycles_t;
73
Heiko Carstens1aae0562013-01-30 09:49:40 +010074static inline unsigned long long get_tod_clock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075{
76 unsigned long long clk;
77
Heiko Carstensd652d592012-05-14 10:35:22 +020078#ifdef CONFIG_HAVE_MARCH_Z9_109_FEATURES
Heiko Carstens473e66b2012-05-09 16:27:39 +020079 asm volatile(".insn s,0xb27c0000,%0" : "=Q" (clk) : : "cc");
80#else
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +020081 asm volatile("stck %0" : "=Q" (clk) : : "cc");
Heiko Carstens473e66b2012-05-09 16:27:39 +020082#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 return clk;
84}
85
Heiko Carstens1aae0562013-01-30 09:49:40 +010086static inline void get_tod_clock_ext(char *clk)
Michael Holzheu57b28f62010-05-17 10:00:20 +020087{
88 asm volatile("stcke %0" : "=Q" (*clk) : : "cc");
89}
90
Heiko Carstens1aae0562013-01-30 09:49:40 +010091static inline unsigned long long get_tod_clock_xt(void)
Jan Glauber1b278292007-02-05 21:18:22 +010092{
Jan Glauberc0015f92008-04-17 07:46:16 +020093 unsigned char clk[16];
Heiko Carstens1aae0562013-01-30 09:49:40 +010094 get_tod_clock_ext(clk);
Jan Glauberc0015f92008-04-17 07:46:16 +020095 return *((unsigned long long *)&clk[1]);
Jan Glauber1b278292007-02-05 21:18:22 +010096}
97
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +020098static inline cycles_t get_cycles(void)
99{
Heiko Carstens1aae0562013-01-30 09:49:40 +0100100 return (cycles_t) get_tod_clock() >> 2;
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200101}
102
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100103int get_sync_clock(unsigned long long *clock);
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100104void init_cpu_timer(void);
Heiko Carstensa8061702008-04-17 07:46:26 +0200105unsigned long long monotonic_clock(void);
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100106
Christof Schmittb592e892009-08-18 15:43:31 +0200107void tod_to_timeval(__u64, struct timespec *);
108
109static inline
110void stck_to_timespec(unsigned long long stck, struct timespec *ts)
111{
112 tod_to_timeval(stck - TOD_UNIX_EPOCH, ts);
113}
114
Martin Schwidefskyb6112cc2009-04-14 15:36:28 +0200115extern u64 sched_clock_base_cc;
116
Heiko Carstens05e7ff72009-09-11 10:28:31 +0200117/**
118 * get_clock_monotonic - returns current time in clock rate units
119 *
120 * The caller must ensure that preemption is disabled.
121 * The clock and sched_clock_base get changed via stop_machine.
122 * Therefore preemption must be disabled when calling this
123 * function, otherwise the returned value is not guaranteed to
124 * be monotonic.
125 */
Heiko Carstens1aae0562013-01-30 09:49:40 +0100126static inline unsigned long long get_tod_clock_monotonic(void)
Heiko Carstens05e7ff72009-09-11 10:28:31 +0200127{
Heiko Carstens1aae0562013-01-30 09:49:40 +0100128 return get_tod_clock_xt() - sched_clock_base_cc;
Heiko Carstens05e7ff72009-09-11 10:28:31 +0200129}
130
Heiko Carstensed4f2092013-01-14 16:55:55 +0100131/**
132 * tod_to_ns - convert a TOD format value to nanoseconds
133 * @todval: to be converted TOD format value
134 * Returns: number of nanoseconds that correspond to the TOD format value
135 *
136 * Converting a 64 Bit TOD format value to nanoseconds means that the value
137 * must be divided by 4.096. In order to achieve that we multiply with 125
138 * and divide by 512:
139 *
140 * ns = (todval * 125) >> 9;
141 *
142 * In order to avoid an overflow with the multiplication we can rewrite this.
143 * With a split todval == 2^32 * th + tl (th upper 32 bits, tl lower 32 bits)
144 * we end up with
145 *
146 * ns = ((2^32 * th + tl) * 125 ) >> 9;
147 * -> ns = (2^23 * th * 125) + ((tl * 125) >> 9);
148 *
149 */
150static inline unsigned long long tod_to_ns(unsigned long long todval)
151{
152 unsigned long long ns;
153
154 ns = ((todval >> 32) << 23) * 125;
155 ns += ((todval & 0xffffffff) * 125) >> 9;
156 return ns;
157}
158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159#endif