2 * Samsung exynos4210 Pulse Width Modulation Timer
4 * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd.
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the
11 * Free Software Foundation; either version 2 of the License, or (at your
12 * option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
17 * See the GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, see <http://www.gnu.org/licenses/>.
23 #include "qemu/osdep.h"
25 #include "hw/sysbus.h"
26 #include "qemu/timer.h"
27 #include "qemu-common.h"
28 #include "qemu/main-loop.h"
29 #include "hw/ptimer.h"
31 #include "hw/arm/exynos4210.h"
36 #define DPRINTF(fmt, ...) \
37 do { fprintf(stdout, "PWM: [%24s:%5d] " fmt, __func__, __LINE__, \
38 ## __VA_ARGS__); } while (0)
40 #define DPRINTF(fmt, ...) do {} while (0)
43 #define EXYNOS4210_PWM_TIMERS_NUM 5
44 #define EXYNOS4210_PWM_REG_MEM_SIZE 0x50
63 #define TINT_CSTAT 0x0044
65 #define TCNTB(x) (0xC * (x))
66 #define TCMPB(x) (0xC * (x) + 1)
67 #define TCNTO(x) (0xC * (x) + 2)
69 #define GET_PRESCALER(reg, x) (((reg) & (0xFF << (8 * (x)))) >> 8 * (x))
70 #define GET_DIVIDER(reg, x) (1 << (((reg) & (0xF << (4 * (x)))) >> (4 * (x))))
73 * Attention! Timer4 doesn't have OUTPUT_INVERTER,
74 * so Auto Reload bit is not accessible by macros!
76 #define TCON_TIMER_BASE(x) (((x) ? 1 : 0) * 4 + 4 * (x))
77 #define TCON_TIMER_START(x) (1 << (TCON_TIMER_BASE(x) + 0))
78 #define TCON_TIMER_MANUAL_UPD(x) (1 << (TCON_TIMER_BASE(x) + 1))
79 #define TCON_TIMER_OUTPUT_INV(x) (1 << (TCON_TIMER_BASE(x) + 2))
80 #define TCON_TIMER_AUTO_RELOAD(x) (1 << (TCON_TIMER_BASE(x) + 3))
81 #define TCON_TIMER4_AUTO_RELOAD (1 << 22)
83 #define TINT_CSTAT_STATUS(x) (1 << (5 + (x)))
84 #define TINT_CSTAT_ENABLE(x) (1 << (x))
88 uint32_t id; /* timer id */
89 qemu_irq irq; /* local timer irq */
90 uint32_t freq; /* timer frequency */
92 /* use ptimer.c to represent count down timer */
93 ptimer_state *ptimer; /* timer */
96 uint32_t reg_tcntb; /* counter register buffer */
97 uint32_t reg_tcmpb; /* compare register buffer */
99 struct Exynos4210PWMState *parent;
103 #define TYPE_EXYNOS4210_PWM "exynos4210.pwm"
104 #define EXYNOS4210_PWM(obj) \
105 OBJECT_CHECK(Exynos4210PWMState, (obj), TYPE_EXYNOS4210_PWM)
107 typedef struct Exynos4210PWMState {
108 SysBusDevice parent_obj;
112 uint32_t reg_tcfg[2];
114 uint32_t reg_tint_cstat;
116 Exynos4210PWM timer[EXYNOS4210_PWM_TIMERS_NUM];
118 } Exynos4210PWMState;
121 static const VMStateDescription vmstate_exynos4210_pwm = {
122 .name = "exynos4210.pwm.pwm",
124 .minimum_version_id = 1,
125 .fields = (VMStateField[]) {
126 VMSTATE_UINT32(id, Exynos4210PWM),
127 VMSTATE_UINT32(freq, Exynos4210PWM),
128 VMSTATE_PTIMER(ptimer, Exynos4210PWM),
129 VMSTATE_UINT32(reg_tcntb, Exynos4210PWM),
130 VMSTATE_UINT32(reg_tcmpb, Exynos4210PWM),
131 VMSTATE_END_OF_LIST()
135 static const VMStateDescription vmstate_exynos4210_pwm_state = {
136 .name = "exynos4210.pwm",
138 .minimum_version_id = 1,
139 .fields = (VMStateField[]) {
140 VMSTATE_UINT32_ARRAY(reg_tcfg, Exynos4210PWMState, 2),
141 VMSTATE_UINT32(reg_tcon, Exynos4210PWMState),
142 VMSTATE_UINT32(reg_tint_cstat, Exynos4210PWMState),
143 VMSTATE_STRUCT_ARRAY(timer, Exynos4210PWMState,
144 EXYNOS4210_PWM_TIMERS_NUM, 0,
145 vmstate_exynos4210_pwm, Exynos4210PWM),
146 VMSTATE_END_OF_LIST()
151 * PWM update frequency
153 static void exynos4210_pwm_update_freq(Exynos4210PWMState *s, uint32_t id)
156 freq = s->timer[id].freq;
158 s->timer[id].freq = 24000000 /
159 ((GET_PRESCALER(s->reg_tcfg[0], 1) + 1) *
160 (GET_DIVIDER(s->reg_tcfg[1], id)));
162 s->timer[id].freq = 24000000 /
163 ((GET_PRESCALER(s->reg_tcfg[0], 0) + 1) *
164 (GET_DIVIDER(s->reg_tcfg[1], id)));
167 if (freq != s->timer[id].freq) {
168 ptimer_set_freq(s->timer[id].ptimer, s->timer[id].freq);
169 DPRINTF("freq=%dHz\n", s->timer[id].freq);
174 * Counter tick handler
176 static void exynos4210_pwm_tick(void *opaque)
178 Exynos4210PWM *s = (Exynos4210PWM *)opaque;
179 Exynos4210PWMState *p = (Exynos4210PWMState *)s->parent;
183 DPRINTF("timer %d tick\n", id);
186 p->reg_tint_cstat |= TINT_CSTAT_STATUS(id);
189 if (p->reg_tint_cstat & TINT_CSTAT_ENABLE(id)) {
190 DPRINTF("timer %d IRQ\n", id);
191 qemu_irq_raise(p->timer[id].irq);
196 cmp = p->reg_tcon & TCON_TIMER_AUTO_RELOAD(id);
198 cmp = p->reg_tcon & TCON_TIMER4_AUTO_RELOAD;
202 DPRINTF("auto reload timer %d count to %x\n", id,
203 p->timer[id].reg_tcntb);
204 ptimer_set_count(p->timer[id].ptimer, p->timer[id].reg_tcntb);
205 ptimer_run(p->timer[id].ptimer, 1);
207 /* stop timer, set status to STOP, see Basic Timer Operation */
208 p->reg_tcon &= ~TCON_TIMER_START(id);
209 ptimer_stop(p->timer[id].ptimer);
216 static uint64_t exynos4210_pwm_read(void *opaque, hwaddr offset,
219 Exynos4210PWMState *s = (Exynos4210PWMState *)opaque;
224 case TCFG0: case TCFG1:
225 index = (offset - TCFG0) >> 2;
226 value = s->reg_tcfg[index];
233 case TCNTB0: case TCNTB1:
234 case TCNTB2: case TCNTB3: case TCNTB4:
235 index = (offset - TCNTB0) / 0xC;
236 value = s->timer[index].reg_tcntb;
239 case TCMPB0: case TCMPB1:
240 case TCMPB2: case TCMPB3:
241 index = (offset - TCMPB0) / 0xC;
242 value = s->timer[index].reg_tcmpb;
245 case TCNTO0: case TCNTO1:
246 case TCNTO2: case TCNTO3: case TCNTO4:
247 index = (offset == TCNTO4) ? 4 : (offset - TCNTO0) / 0xC;
248 value = ptimer_get_count(s->timer[index].ptimer);
252 value = s->reg_tint_cstat;
256 qemu_log_mask(LOG_GUEST_ERROR,
257 "exynos4210.pwm: bad read offset " TARGET_FMT_plx,
267 static void exynos4210_pwm_write(void *opaque, hwaddr offset,
268 uint64_t value, unsigned size)
270 Exynos4210PWMState *s = (Exynos4210PWMState *)opaque;
276 case TCFG0: case TCFG1:
277 index = (offset - TCFG0) >> 2;
278 s->reg_tcfg[index] = value;
280 /* update timers frequencies */
281 for (i = 0; i < EXYNOS4210_PWM_TIMERS_NUM; i++) {
282 exynos4210_pwm_update_freq(s, s->timer[i].id);
287 for (i = 0; i < EXYNOS4210_PWM_TIMERS_NUM; i++) {
288 if ((value & TCON_TIMER_MANUAL_UPD(i)) >
289 (s->reg_tcon & TCON_TIMER_MANUAL_UPD(i))) {
291 * TCNTB and TCMPB are loaded into TCNT and TCMP.
295 /* this will start timer to run, this ok, because
296 * during processing start bit timer will be stopped
298 ptimer_set_count(s->timer[i].ptimer, s->timer[i].reg_tcntb);
299 DPRINTF("set timer %d count to %x\n", i,
300 s->timer[i].reg_tcntb);
303 if ((value & TCON_TIMER_START(i)) >
304 (s->reg_tcon & TCON_TIMER_START(i))) {
305 /* changed to start */
306 ptimer_run(s->timer[i].ptimer, 1);
307 DPRINTF("run timer %d\n", i);
310 if ((value & TCON_TIMER_START(i)) <
311 (s->reg_tcon & TCON_TIMER_START(i))) {
312 /* changed to stop */
313 ptimer_stop(s->timer[i].ptimer);
314 DPRINTF("stop timer %d\n", i);
320 case TCNTB0: case TCNTB1:
321 case TCNTB2: case TCNTB3: case TCNTB4:
322 index = (offset - TCNTB0) / 0xC;
323 s->timer[index].reg_tcntb = value;
326 case TCMPB0: case TCMPB1:
327 case TCMPB2: case TCMPB3:
328 index = (offset - TCMPB0) / 0xC;
329 s->timer[index].reg_tcmpb = value;
333 new_val = (s->reg_tint_cstat & 0x3E0) + (0x1F & value);
334 new_val &= ~(0x3E0 & value);
336 for (i = 0; i < EXYNOS4210_PWM_TIMERS_NUM; i++) {
337 if ((new_val & TINT_CSTAT_STATUS(i)) <
338 (s->reg_tint_cstat & TINT_CSTAT_STATUS(i))) {
339 qemu_irq_lower(s->timer[i].irq);
343 s->reg_tint_cstat = new_val;
347 qemu_log_mask(LOG_GUEST_ERROR,
348 "exynos4210.pwm: bad write offset " TARGET_FMT_plx,
356 * Set default values to timer fields and registers
358 static void exynos4210_pwm_reset(DeviceState *d)
360 Exynos4210PWMState *s = EXYNOS4210_PWM(d);
362 s->reg_tcfg[0] = 0x0101;
363 s->reg_tcfg[1] = 0x0;
365 s->reg_tint_cstat = 0;
366 for (i = 0; i < EXYNOS4210_PWM_TIMERS_NUM; i++) {
367 s->timer[i].reg_tcmpb = 0;
368 s->timer[i].reg_tcntb = 0;
370 exynos4210_pwm_update_freq(s, s->timer[i].id);
371 ptimer_stop(s->timer[i].ptimer);
375 static const MemoryRegionOps exynos4210_pwm_ops = {
376 .read = exynos4210_pwm_read,
377 .write = exynos4210_pwm_write,
378 .endianness = DEVICE_NATIVE_ENDIAN,
382 * PWM timer initialization
384 static void exynos4210_pwm_init(Object *obj)
386 Exynos4210PWMState *s = EXYNOS4210_PWM(obj);
387 SysBusDevice *dev = SYS_BUS_DEVICE(obj);
391 for (i = 0; i < EXYNOS4210_PWM_TIMERS_NUM; i++) {
392 bh = qemu_bh_new(exynos4210_pwm_tick, &s->timer[i]);
393 sysbus_init_irq(dev, &s->timer[i].irq);
394 s->timer[i].ptimer = ptimer_init(bh, PTIMER_POLICY_DEFAULT);
396 s->timer[i].parent = s;
399 memory_region_init_io(&s->iomem, obj, &exynos4210_pwm_ops, s,
400 "exynos4210-pwm", EXYNOS4210_PWM_REG_MEM_SIZE);
401 sysbus_init_mmio(dev, &s->iomem);
404 static void exynos4210_pwm_class_init(ObjectClass *klass, void *data)
406 DeviceClass *dc = DEVICE_CLASS(klass);
408 dc->reset = exynos4210_pwm_reset;
409 dc->vmsd = &vmstate_exynos4210_pwm_state;
412 static const TypeInfo exynos4210_pwm_info = {
413 .name = TYPE_EXYNOS4210_PWM,
414 .parent = TYPE_SYS_BUS_DEVICE,
415 .instance_size = sizeof(Exynos4210PWMState),
416 .instance_init = exynos4210_pwm_init,
417 .class_init = exynos4210_pwm_class_init,
420 static void exynos4210_pwm_register_types(void)
422 type_register_static(&exynos4210_pwm_info);
425 type_init(exynos4210_pwm_register_types)