blob: 09d345a701dc307fe4ed7e02728d734b1aa79622 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * include/asm-s390/timex.h
3 *
4 * S390 version
5 * Copyright (C) 1999 IBM Deutschland Entwicklung GmbH, IBM Corporation
6 *
7 * Derived from "include/asm-i386/timex.h"
8 * Copyright (C) 1992, Linus Torvalds
9 */
10
11#ifndef _ASM_S390_TIMEX_H
12#define _ASM_S390_TIMEX_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
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#define CLOCK_TICK_RATE 1193180 /* Underlying HZ */
53
54typedef unsigned long long cycles_t;
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056static inline unsigned long long get_clock (void)
57{
58 unsigned long long clk;
59
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +020060 asm volatile("stck %0" : "=Q" (clk) : : "cc");
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 return clk;
62}
63
Michael Holzheu57b28f62010-05-17 10:00:20 +020064static inline void get_clock_ext(char *clk)
65{
66 asm volatile("stcke %0" : "=Q" (*clk) : : "cc");
67}
68
Jan Glauberc0015f92008-04-17 07:46:16 +020069static inline unsigned long long get_clock_xt(void)
Jan Glauber1b278292007-02-05 21:18:22 +010070{
Jan Glauberc0015f92008-04-17 07:46:16 +020071 unsigned char clk[16];
Michael Holzheu57b28f62010-05-17 10:00:20 +020072 get_clock_ext(clk);
Jan Glauberc0015f92008-04-17 07:46:16 +020073 return *((unsigned long long *)&clk[1]);
Jan Glauber1b278292007-02-05 21:18:22 +010074}
75
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +020076static inline cycles_t get_cycles(void)
77{
78 return (cycles_t) get_clock() >> 2;
79}
80
Martin Schwidefskyd54853e2007-02-05 21:18:19 +010081int get_sync_clock(unsigned long long *clock);
Heiko Carstens2b67fc42007-02-05 21:16:47 +010082void init_cpu_timer(void);
Heiko Carstensa8061702008-04-17 07:46:26 +020083unsigned long long monotonic_clock(void);
Heiko Carstens2b67fc42007-02-05 21:16:47 +010084
Christof Schmittb592e892009-08-18 15:43:31 +020085void tod_to_timeval(__u64, struct timespec *);
86
87static inline
88void stck_to_timespec(unsigned long long stck, struct timespec *ts)
89{
90 tod_to_timeval(stck - TOD_UNIX_EPOCH, ts);
91}
92
Martin Schwidefskyb6112cc2009-04-14 15:36:28 +020093extern u64 sched_clock_base_cc;
94
Heiko Carstens05e7ff72009-09-11 10:28:31 +020095/**
96 * get_clock_monotonic - returns current time in clock rate units
97 *
98 * The caller must ensure that preemption is disabled.
99 * The clock and sched_clock_base get changed via stop_machine.
100 * Therefore preemption must be disabled when calling this
101 * function, otherwise the returned value is not guaranteed to
102 * be monotonic.
103 */
104static inline unsigned long long get_clock_monotonic(void)
105{
106 return get_clock_xt() - sched_clock_base_cc;
107}
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109#endif