David Howells | b920de1 | 2008-02-08 04:19:31 -0800 | [diff] [blame] | 1 | /* MN10300 Architecture time management specifications |
| 2 | * |
| 3 | * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved. |
| 4 | * Written by David Howells (dhowells@redhat.com) |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public Licence |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the Licence, or (at your option) any later version. |
| 10 | */ |
| 11 | #ifndef _ASM_TIMEX_H |
| 12 | #define _ASM_TIMEX_H |
| 13 | |
| 14 | #include <asm/hardirq.h> |
David Howells | 2f2a213 | 2009-04-10 14:33:48 +0100 | [diff] [blame] | 15 | #include <unit/timex.h> |
David Howells | b920de1 | 2008-02-08 04:19:31 -0800 | [diff] [blame] | 16 | |
| 17 | #define TICK_SIZE (tick_nsec / 1000) |
| 18 | |
Akira Takeuchi | 368dd5a | 2010-10-27 17:28:55 +0100 | [diff] [blame] | 19 | #define CLOCK_TICK_RATE MN10300_JCCLK /* Underlying HZ */ |
David Howells | b920de1 | 2008-02-08 04:19:31 -0800 | [diff] [blame] | 20 | |
David Howells | b920de1 | 2008-02-08 04:19:31 -0800 | [diff] [blame] | 21 | #ifdef __KERNEL__ |
| 22 | |
Mark Salter | 730c1fa | 2010-10-27 17:28:57 +0100 | [diff] [blame] | 23 | extern cycles_t cacheflush_time; |
| 24 | |
David Howells | b920de1 | 2008-02-08 04:19:31 -0800 | [diff] [blame] | 25 | static inline cycles_t get_cycles(void) |
| 26 | { |
| 27 | return read_timestamp_counter(); |
| 28 | } |
| 29 | |
Mark Salter | 730c1fa | 2010-10-27 17:28:57 +0100 | [diff] [blame] | 30 | extern int init_clockevents(void); |
| 31 | extern int init_clocksource(void); |
| 32 | |
| 33 | static inline void setup_jiffies_interrupt(int irq, |
| 34 | struct irqaction *action) |
| 35 | { |
| 36 | u16 tmp; |
| 37 | setup_irq(irq, action); |
| 38 | set_intr_level(irq, NUM2GxICR_LEVEL(CONFIG_TIMER_IRQ_LEVEL)); |
| 39 | GxICR(irq) |= GxICR_ENABLE | GxICR_DETECT | GxICR_REQUEST; |
| 40 | tmp = GxICR(irq); |
| 41 | } |
| 42 | |
David Howells | b920de1 | 2008-02-08 04:19:31 -0800 | [diff] [blame] | 43 | #endif /* __KERNEL__ */ |
| 44 | |
| 45 | #endif /* _ASM_TIMEX_H */ |