Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
timer.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2010, Lars-Peter Clausen <[email protected]>
3  * JZ4740 platform timer support
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License as published by the
7  * Free Software Foundation; either version 2 of the License, or (at your
8  * option) any later version.
9  *
10  * You should have received a copy of the GNU General Public License along
11  * with this program; if not, write to the Free Software Foundation, Inc.,
12  * 675 Mass Ave, Cambridge, MA 02139, USA.
13  *
14  */
15 
16 #ifndef __ASM_MACH_JZ4740_TIMER
17 #define __ASM_MACH_JZ4740_TIMER
18 
19 #define JZ_REG_TIMER_STOP 0x0C
20 #define JZ_REG_TIMER_STOP_SET 0x1C
21 #define JZ_REG_TIMER_STOP_CLEAR 0x2C
22 #define JZ_REG_TIMER_ENABLE 0x00
23 #define JZ_REG_TIMER_ENABLE_SET 0x04
24 #define JZ_REG_TIMER_ENABLE_CLEAR 0x08
25 #define JZ_REG_TIMER_FLAG 0x10
26 #define JZ_REG_TIMER_FLAG_SET 0x14
27 #define JZ_REG_TIMER_FLAG_CLEAR 0x18
28 #define JZ_REG_TIMER_MASK 0x20
29 #define JZ_REG_TIMER_MASK_SET 0x24
30 #define JZ_REG_TIMER_MASK_CLEAR 0x28
31 
32 #define JZ_REG_TIMER_DFR(x) (((x) * 0x10) + 0x30)
33 #define JZ_REG_TIMER_DHR(x) (((x) * 0x10) + 0x34)
34 #define JZ_REG_TIMER_CNT(x) (((x) * 0x10) + 0x38)
35 #define JZ_REG_TIMER_CTRL(x) (((x) * 0x10) + 0x3C)
36 
37 #define JZ_TIMER_IRQ_HALF(x) BIT((x) + 0x10)
38 #define JZ_TIMER_IRQ_FULL(x) BIT(x)
39 
40 #define JZ_TIMER_CTRL_PWM_ABBRUPT_SHUTDOWN BIT(9)
41 #define JZ_TIMER_CTRL_PWM_ACTIVE_LOW BIT(8)
42 #define JZ_TIMER_CTRL_PWM_ENABLE BIT(7)
43 #define JZ_TIMER_CTRL_PRESCALE_MASK 0x1c
44 #define JZ_TIMER_CTRL_PRESCALE_OFFSET 0x3
45 #define JZ_TIMER_CTRL_PRESCALE_1 (0 << 3)
46 #define JZ_TIMER_CTRL_PRESCALE_4 (1 << 3)
47 #define JZ_TIMER_CTRL_PRESCALE_16 (2 << 3)
48 #define JZ_TIMER_CTRL_PRESCALE_64 (3 << 3)
49 #define JZ_TIMER_CTRL_PRESCALE_256 (4 << 3)
50 #define JZ_TIMER_CTRL_PRESCALE_1024 (5 << 3)
51 
52 #define JZ_TIMER_CTRL_PRESCALER(x) ((x) << JZ_TIMER_CTRL_PRESCALE_OFFSET)
53 
54 #define JZ_TIMER_CTRL_SRC_EXT BIT(2)
55 #define JZ_TIMER_CTRL_SRC_RTC BIT(1)
56 #define JZ_TIMER_CTRL_SRC_PCLK BIT(0)
57 
58 extern void __iomem *jz4740_timer_base;
59 void __init jz4740_timer_init(void);
60 
63 
64 static inline void jz4740_timer_stop(unsigned int timer)
65 {
67 }
68 
69 static inline void jz4740_timer_start(unsigned int timer)
70 {
72 }
73 
74 static inline bool jz4740_timer_is_enabled(unsigned int timer)
75 {
77 }
78 
79 static inline void jz4740_timer_enable(unsigned int timer)
80 {
82 }
83 
84 static inline void jz4740_timer_disable(unsigned int timer)
85 {
87 }
88 
89 static inline void jz4740_timer_set_period(unsigned int timer, uint16_t period)
90 {
91  writew(period, jz4740_timer_base + JZ_REG_TIMER_DFR(timer));
92 }
93 
94 static inline void jz4740_timer_set_duty(unsigned int timer, uint16_t duty)
95 {
97 }
98 
99 static inline void jz4740_timer_set_count(unsigned int timer, uint16_t count)
100 {
101  writew(count, jz4740_timer_base + JZ_REG_TIMER_CNT(timer));
102 }
103 
104 static inline uint16_t jz4740_timer_get_count(unsigned int timer)
105 {
106  return readw(jz4740_timer_base + JZ_REG_TIMER_CNT(timer));
107 }
108 
109 static inline void jz4740_timer_ack_full(unsigned int timer)
110 {
112 }
113 
114 static inline void jz4740_timer_irq_full_enable(unsigned int timer)
115 {
118 }
119 
120 static inline void jz4740_timer_irq_full_disable(unsigned int timer)
121 {
123 }
124 
125 static inline void jz4740_timer_set_ctrl(unsigned int timer, uint16_t ctrl)
126 {
128 }
129 
130 static inline uint16_t jz4740_timer_get_ctrl(unsigned int timer)
131 {
132  return readw(jz4740_timer_base + JZ_REG_TIMER_CTRL(timer));
133 }
134 
135 #endif