1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Port on Texas Instruments TMS320C6x architecture
5 * Copyright (C) 2004, 2009, 2010, 2011 Texas Instruments Incorporated
6 * Author: Aurelien Jacquiot (aurelien.jacquiot@jaluna.com)
8 * Modified for 2.6.34: Mark Salter <msalter@redhat.com>
10 #ifndef _ASM_C6X_TIMEX_H
11 #define _ASM_C6X_TIMEX_H
13 #define CLOCK_TICK_RATE ((1000 * 1000000UL) / 6)
15 /* 64-bit timestamp */
16 typedef unsigned long long cycles_t
;
18 static inline cycles_t
get_cycles(void)
22 asm volatile (" dint\n"
27 return ((cycles_t
)h
<< 32) | l
;
30 #endif /* _ASM_C6X_TIMEX_H */