Merge tag 'platform-drivers-x86-v4.4-2' of git://git.infradead.org/users/dvhart/linux...
[deliverable/linux.git] / arch / xtensa / include / asm / timex.h
CommitLineData
9a8fd558 1/*
9a8fd558
CZ
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 *
f615136c 6 * Copyright (C) 2001 - 2013 Tensilica Inc.
9a8fd558
CZ
7 */
8
9#ifndef _XTENSA_TIMEX_H
10#define _XTENSA_TIMEX_H
11
9a8fd558
CZ
12#include <asm/processor.h>
13#include <linux/stringify.h>
14
173d6681
CZ
15#define _INTLEVEL(x) XCHAL_INT ## x ## _LEVEL
16#define INTLEVEL(x) _INTLEVEL(x)
17
0f7f9310
MF
18#if XCHAL_NUM_TIMERS > 0 && \
19 INTLEVEL(XCHAL_TIMER0_INTERRUPT) <= XCHAL_EXCM_LEVEL
9a8fd558 20# define LINUX_TIMER 0
173d6681 21# define LINUX_TIMER_INT XCHAL_TIMER0_INTERRUPT
0f7f9310
MF
22#elif XCHAL_NUM_TIMERS > 1 && \
23 INTLEVEL(XCHAL_TIMER1_INTERRUPT) <= XCHAL_EXCM_LEVEL
9a8fd558 24# define LINUX_TIMER 1
173d6681 25# define LINUX_TIMER_INT XCHAL_TIMER1_INTERRUPT
0f7f9310
MF
26#elif XCHAL_NUM_TIMERS > 2 && \
27 INTLEVEL(XCHAL_TIMER2_INTERRUPT) <= XCHAL_EXCM_LEVEL
9a8fd558 28# define LINUX_TIMER 2
173d6681 29# define LINUX_TIMER_INT XCHAL_TIMER2_INTERRUPT
9a8fd558
CZ
30#else
31# error "Bad timer number for Linux configurations!"
32#endif
33
e504c4b6 34extern unsigned long ccount_freq;
9a8fd558
CZ
35
36typedef unsigned long long cycles_t;
37
9a8fd558
CZ
38#define get_cycles() (0)
39
f615136c 40void local_timer_setup(unsigned cpu);
9a8fd558
CZ
41
42/*
43 * Register access.
44 */
45
bc5378fc
MF
46#define WSR_CCOUNT(r) asm volatile ("wsr %0, ccount" :: "a" (r))
47#define RSR_CCOUNT(r) asm volatile ("rsr %0, ccount" : "=a" (r))
48#define WSR_CCOMPARE(x,r) asm volatile ("wsr %0,"__stringify(SREG_CCOMPARE)"+"__stringify(x) :: "a"(r))
49#define RSR_CCOMPARE(x,r) asm volatile ("rsr %0,"__stringify(SREG_CCOMPARE)"+"__stringify(x) : "=a"(r))
9a8fd558
CZ
50
51static inline unsigned long get_ccount (void)
52{
53 unsigned long ccount;
54 RSR_CCOUNT(ccount);
55 return ccount;
56}
57
58static inline void set_ccount (unsigned long ccount)
59{
60 WSR_CCOUNT(ccount);
61}
62
63static inline unsigned long get_linux_timer (void)
64{
65 unsigned ccompare;
66 RSR_CCOMPARE(LINUX_TIMER, ccompare);
67 return ccompare;
68}
69
70static inline void set_linux_timer (unsigned long ccompare)
71{
72 WSR_CCOMPARE(LINUX_TIMER, ccompare);
73}
74
9a8fd558 75#endif /* _XTENSA_TIMEX_H */
This page took 0.665672 seconds and 5 git commands to generate.