blob: fba4d66788a247c94adfba5c13ae750e19929496 [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. */
18static inline int set_clock(__u64 time)
19{
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
30static inline int store_clock(__u64 *time)
31{
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 Carstens473e66b2012-05-09 16:27:39 +020074static inline unsigned long long get_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
Michael Holzheu57b28f62010-05-17 10:00:20 +020086static inline void get_clock_ext(char *clk)
87{
88 asm volatile("stcke %0" : "=Q" (*clk) : : "cc");
89}
90
Jan Glauberc0015f92008-04-17 07:46:16 +020091static inline unsigned long long get_clock_xt(void)
Jan Glauber1b278292007-02-05 21:18:22 +010092{
Jan Glauberc0015f92008-04-17 07:46:16 +020093 unsigned char clk[16];
Michael Holzheu57b28f62010-05-17 10:00:20 +020094 get_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{
100 return (cycles_t) get_clock() >> 2;
101}
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 */
126static inline unsigned long long get_clock_monotonic(void)
127{
128 return get_clock_xt() - sched_clock_base_cc;
129}
130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131#endif