summaryrefslogtreecommitdiffstats
path: root/include/hw/timer/tmu012.h
blob: 808ed8de1d73bedc14ff0ecff66dc3352d1c0e44 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * SuperH Timer
 *
 * Copyright (c) 2007 Magnus Damm
 *
 * This code is licensed under the GPL.
 */

#ifndef HW_TIMER_TMU012_H
#define HW_TIMER_TMU012_H

#include "exec/hwaddr.h"

#define TMU012_FEAT_TOCR   (1 << 0)
#define TMU012_FEAT_3CHAN  (1 << 1)
#define TMU012_FEAT_EXTCLK (1 << 2)

void tmu012_init(MemoryRegion *sysmem, hwaddr base,
                 int feat, uint32_t freq,
                 qemu_irq ch0_irq, qemu_irq ch1_irq,
                 qemu_irq ch2_irq0, qemu_irq ch2_irq1);

#endif