Go to the documentation of this file. 1 #ifndef _IOP13XX_TIME_H_
2 #define _IOP13XX_TIME_H_
3 #define IRQ_IOP_TIMER0 IRQ_IOP13XX_TIMER0
5 #define IOP_TMR_EN 0x02
6 #define IOP_TMR_RELOAD 0x04
7 #define IOP_TMR_PRIVILEGED 0x08
8 #define IOP_TMR_RATIO_1_1 0x00
10 #define IOP13XX_XSI_FREQ_RATIO_MASK (3 << 19)
11 #define IOP13XX_XSI_FREQ_RATIO_2 (0 << 19)
12 #define IOP13XX_XSI_FREQ_RATIO_3 (1 << 19)
13 #define IOP13XX_XSI_FREQ_RATIO_4 (2 << 19)
14 #define IOP13XX_CORE_FREQ_MASK (7 << 16)
15 #define IOP13XX_CORE_FREQ_600 (0 << 16)
16 #define IOP13XX_CORE_FREQ_667 (1 << 16)
17 #define IOP13XX_CORE_FREQ_800 (2 << 16)
18 #define IOP13XX_CORE_FREQ_933 (3 << 16)
19 #define IOP13XX_CORE_FREQ_1000 (4 << 16)
20 #define IOP13XX_CORE_FREQ_1200 (5 << 16)
24 static inline unsigned long iop13xx_core_freq(
void)
42 printk(
"%s: warning unknown frequency, defaulting to 800Mhz\n",
49 static inline unsigned long iop13xx_xsi_bus_ratio(
void)
61 printk(
"%s: warning unknown ratio, defaulting to 2\n",
68 static inline u32 read_tmr0(
void)
71 asm volatile(
"mrc p6, 0, %0, c0, c9, 0" :
"=r" (
val));
75 static inline void write_tmr0(
u32 val)
77 asm volatile(
"mcr p6, 0, %0, c0, c9, 0" : :
"r" (
val));
80 static inline void write_tmr1(
u32 val)
82 asm volatile(
"mcr p6, 0, %0, c1, c9, 0" : :
"r" (
val));
85 static inline u32 read_tcr0(
void)
88 asm volatile(
"mrc p6, 0, %0, c2, c9, 0" :
"=r" (
val));
92 static inline void write_tcr0(
u32 val)
94 asm volatile(
"mcr p6, 0, %0, c2, c9, 0" : :
"r" (
val));
97 static inline u32 read_tcr1(
void)
100 asm volatile(
"mrc p6, 0, %0, c3, c9, 0" :
"=r" (
val));
104 static inline void write_tcr1(
u32 val)
106 asm volatile(
"mcr p6, 0, %0, c3, c9, 0" : :
"r" (
val));
109 static inline void write_trr0(
u32 val)
111 asm volatile(
"mcr p6, 0, %0, c4, c9, 0" : :
"r" (
val));
114 static inline void write_trr1(
u32 val)
116 asm volatile(
"mcr p6, 0, %0, c5, c9, 0" : :
"r" (
val));
119 static inline void write_tisr(
u32 val)
121 asm volatile(
"mcr p6, 0, %0, c6, c9, 0" : :
"r" (
val));