GNU Linux-libre 4.9.333-gnu1
[releases.git] / arch / xtensa / include / asm / timex.h
1 /*
2  * This file is subject to the terms and conditions of the GNU General Public
3  * License.  See the file "COPYING" in the main directory of this archive
4  * for more details.
5  *
6  * Copyright (C) 2001 - 2013 Tensilica Inc.
7  */
8
9 #ifndef _XTENSA_TIMEX_H
10 #define _XTENSA_TIMEX_H
11
12 #include <asm/processor.h>
13 #include <linux/stringify.h>
14
15 #if XCHAL_NUM_TIMERS > 0 && \
16         XTENSA_INT_LEVEL(XCHAL_TIMER0_INTERRUPT) <= XCHAL_EXCM_LEVEL
17 # define LINUX_TIMER     0
18 # define LINUX_TIMER_INT XCHAL_TIMER0_INTERRUPT
19 #elif XCHAL_NUM_TIMERS > 1 && \
20         XTENSA_INT_LEVEL(XCHAL_TIMER1_INTERRUPT) <= XCHAL_EXCM_LEVEL
21 # define LINUX_TIMER     1
22 # define LINUX_TIMER_INT XCHAL_TIMER1_INTERRUPT
23 #elif XCHAL_NUM_TIMERS > 2 && \
24         XTENSA_INT_LEVEL(XCHAL_TIMER2_INTERRUPT) <= XCHAL_EXCM_LEVEL
25 # define LINUX_TIMER     2
26 # define LINUX_TIMER_INT XCHAL_TIMER2_INTERRUPT
27 #else
28 # error "Bad timer number for Linux configurations!"
29 #endif
30
31 extern unsigned long ccount_freq;
32
33 void local_timer_setup(unsigned cpu);
34
35 /*
36  * Register access.
37  */
38
39 #define WSR_CCOUNT(r)     asm volatile ("wsr %0, ccount" :: "a" (r))
40 #define RSR_CCOUNT(r)     asm volatile ("rsr %0, ccount" : "=a" (r))
41 #define WSR_CCOMPARE(x,r) asm volatile ("wsr %0,"__stringify(SREG_CCOMPARE)"+"__stringify(x) :: "a"(r))
42 #define RSR_CCOMPARE(x,r) asm volatile ("rsr %0,"__stringify(SREG_CCOMPARE)"+"__stringify(x) : "=a"(r))
43
44 static inline unsigned long get_ccount (void)
45 {
46         unsigned long ccount;
47         RSR_CCOUNT(ccount);
48         return ccount;
49 }
50
51 static inline void set_ccount (unsigned long ccount)
52 {
53         WSR_CCOUNT(ccount);
54 }
55
56 static inline unsigned long get_linux_timer (void)
57 {
58         unsigned ccompare;
59         RSR_CCOMPARE(LINUX_TIMER, ccompare);
60         return ccompare;
61 }
62
63 static inline void set_linux_timer (unsigned long ccompare)
64 {
65         WSR_CCOMPARE(LINUX_TIMER, ccompare);
66 }
67
68 #include <asm-generic/timex.h>
69
70 #endif  /* _XTENSA_TIMEX_H */