1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2005 Jens Arnold
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
30 /* Portalplayer chips use a microsecond timer. */
31 #define TIMER_FREQ 1000000
32 #elif defined(CPU_COLDFIRE)
33 /* timer is based on busclk == cpuclk/2 */
34 #define TIMER_FREQ (CPU_FREQ/2)
35 #elif CONFIG_CPU == PNX0101
36 #define TIMER_FREQ 3000000
38 #define TIMER_FREQ CPU_FREQ
41 bool timer_register(int reg_prio
, void (*unregister_callback
)(void),
42 long cycles
, int int_prio
, void (*timer_callback
)(void));
43 bool timer_set_period(long cycles
);
45 void timers_adjust_prescale(int multiplier
, bool enable_irq
);
47 void timer_unregister(void);
49 #endif /* !SIMULATOR */
50 #endif /* __TIMER_H__ */