arm_timer.c 9.2 KB
Newer Older
1
/*
2 3 4 5 6 7 8 9
 * ARM PrimeCell Timer modules.
 *
 * Copyright (c) 2005-2006 CodeSourcery.
 * Written by Paul Brook
 *
 * This code is licenced under the GPL.
 */

P
Paul Brook 已提交
10
#include "sysbus.h"
P
pbrook 已提交
11
#include "qemu-timer.h"
12 13 14 15 16 17 18 19 20 21 22 23 24

/* Common timer implementation.  */

#define TIMER_CTRL_ONESHOT      (1 << 0)
#define TIMER_CTRL_32BIT        (1 << 1)
#define TIMER_CTRL_DIV1         (0 << 2)
#define TIMER_CTRL_DIV16        (1 << 2)
#define TIMER_CTRL_DIV256       (2 << 2)
#define TIMER_CTRL_IE           (1 << 5)
#define TIMER_CTRL_PERIODIC     (1 << 6)
#define TIMER_CTRL_ENABLE       (1 << 7)

typedef struct {
P
pbrook 已提交
25
    ptimer_state *timer;
26 27 28 29
    uint32_t control;
    uint32_t limit;
    int freq;
    int int_level;
P
pbrook 已提交
30
    qemu_irq irq;
31 32 33 34
} arm_timer_state;

/* Check all active timers, and schedule the next timer interrupt.  */

P
pbrook 已提交
35
static void arm_timer_update(arm_timer_state *s)
36 37 38
{
    /* Update interrupts.  */
    if (s->int_level && (s->control & TIMER_CTRL_IE)) {
P
pbrook 已提交
39
        qemu_irq_raise(s->irq);
40
    } else {
P
pbrook 已提交
41
        qemu_irq_lower(s->irq);
42 43 44
    }
}

45
static uint32_t arm_timer_read(void *opaque, target_phys_addr_t offset)
46 47 48 49 50 51 52 53
{
    arm_timer_state *s = (arm_timer_state *)opaque;

    switch (offset >> 2) {
    case 0: /* TimerLoad */
    case 6: /* TimerBGLoad */
        return s->limit;
    case 1: /* TimerValue */
P
pbrook 已提交
54
        return ptimer_get_count(s->timer);
55 56 57 58 59 60 61 62 63
    case 2: /* TimerControl */
        return s->control;
    case 4: /* TimerRIS */
        return s->int_level;
    case 5: /* TimerMIS */
        if ((s->control & TIMER_CTRL_IE) == 0)
            return 0;
        return s->int_level;
    default:
P
Paul Brook 已提交
64
        hw_error("arm_timer_read: Bad offset %x\n", (int)offset);
65 66 67 68
        return 0;
    }
}

P
pbrook 已提交
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
/* Reset the timer limit after settings have changed.  */
static void arm_timer_recalibrate(arm_timer_state *s, int reload)
{
    uint32_t limit;

    if ((s->control & TIMER_CTRL_PERIODIC) == 0) {
        /* Free running.  */
        if (s->control & TIMER_CTRL_32BIT)
            limit = 0xffffffff;
        else
            limit = 0xffff;
    } else {
          /* Periodic.  */
          limit = s->limit;
    }
    ptimer_set_limit(s->timer, limit, reload);
}

87 88 89 90
static void arm_timer_write(void *opaque, target_phys_addr_t offset,
                            uint32_t value)
{
    arm_timer_state *s = (arm_timer_state *)opaque;
P
pbrook 已提交
91
    int freq;
92 93 94 95

    switch (offset >> 2) {
    case 0: /* TimerLoad */
        s->limit = value;
P
pbrook 已提交
96
        arm_timer_recalibrate(s, 1);
97 98 99 100 101 102 103 104 105 106
        break;
    case 1: /* TimerValue */
        /* ??? Linux seems to want to write to this readonly register.
           Ignore it.  */
        break;
    case 2: /* TimerControl */
        if (s->control & TIMER_CTRL_ENABLE) {
            /* Pause the timer if it is running.  This may cause some
               inaccuracy dure to rounding, but avoids a whole lot of other
               messyness.  */
P
pbrook 已提交
107
            ptimer_stop(s->timer);
108 109
        }
        s->control = value;
P
pbrook 已提交
110
        freq = s->freq;
111 112
        /* ??? Need to recalculate expiry time after changing divisor.  */
        switch ((value >> 2) & 3) {
P
pbrook 已提交
113 114
        case 1: freq >>= 4; break;
        case 2: freq >>= 8; break;
115
        }
P
pbrook 已提交
116 117
        arm_timer_recalibrate(s, 0);
        ptimer_set_freq(s->timer, freq);
118 119
        if (s->control & TIMER_CTRL_ENABLE) {
            /* Restart the timer if still enabled.  */
P
pbrook 已提交
120
            ptimer_run(s->timer, (s->control & TIMER_CTRL_ONESHOT) != 0);
121 122 123 124 125 126 127
        }
        break;
    case 3: /* TimerIntClr */
        s->int_level = 0;
        break;
    case 6: /* TimerBGLoad */
        s->limit = value;
P
pbrook 已提交
128
        arm_timer_recalibrate(s, 0);
129 130
        break;
    default:
P
Paul Brook 已提交
131
        hw_error("arm_timer_write: Bad offset %x\n", (int)offset);
132
    }
P
pbrook 已提交
133
    arm_timer_update(s);
134 135 136 137
}

static void arm_timer_tick(void *opaque)
{
P
pbrook 已提交
138 139 140
    arm_timer_state *s = (arm_timer_state *)opaque;
    s->int_level = 1;
    arm_timer_update(s);
141 142
}

P
pbrook 已提交
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
static void arm_timer_save(QEMUFile *f, void *opaque)
{
    arm_timer_state *s = (arm_timer_state *)opaque;
    qemu_put_be32(f, s->control);
    qemu_put_be32(f, s->limit);
    qemu_put_be32(f, s->int_level);
    qemu_put_ptimer(f, s->timer);
}

static int arm_timer_load(QEMUFile *f, void *opaque, int version_id)
{
    arm_timer_state *s = (arm_timer_state *)opaque;

    if (version_id != 1)
        return -EINVAL;

    s->control = qemu_get_be32(f);
    s->limit = qemu_get_be32(f);
    s->int_level = qemu_get_be32(f);
    qemu_get_ptimer(f, s->timer);
    return 0;
}

P
Paul Brook 已提交
166
static arm_timer_state *arm_timer_init(uint32_t freq)
167 168
{
    arm_timer_state *s;
P
pbrook 已提交
169
    QEMUBH *bh;
170 171

    s = (arm_timer_state *)qemu_mallocz(sizeof(arm_timer_state));
P
pbrook 已提交
172
    s->freq = freq;
173 174
    s->control = TIMER_CTRL_IE;

P
pbrook 已提交
175 176
    bh = qemu_bh_new(arm_timer_tick, s);
    s->timer = ptimer_init(bh);
P
pbrook 已提交
177
    register_savevm("arm_timer", -1, 1, arm_timer_save, arm_timer_load, s);
178 179 180 181 182
    return s;
}

/* ARM PrimeCell SP804 dual timer module.
   Docs for this device don't seem to be publicly available.  This
P
pbrook 已提交
183
   implementation is based on guesswork, the linux kernel sources and the
184 185 186
   Integrator/CP timer modules.  */

typedef struct {
P
Paul Brook 已提交
187 188
    SysBusDevice busdev;
    arm_timer_state *timer[2];
189
    int level[2];
P
pbrook 已提交
190
    qemu_irq irq;
191 192
} sp804_state;

P
pbrook 已提交
193
/* Merge the IRQs from the two component devices.  */
194 195 196 197 198
static void sp804_set_irq(void *opaque, int irq, int level)
{
    sp804_state *s = (sp804_state *)opaque;

    s->level[irq] = level;
P
pbrook 已提交
199
    qemu_set_irq(s->irq, s->level[0] || s->level[1]);
200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
}

static uint32_t sp804_read(void *opaque, target_phys_addr_t offset)
{
    sp804_state *s = (sp804_state *)opaque;

    /* ??? Don't know the PrimeCell ID for this device.  */
    if (offset < 0x20) {
        return arm_timer_read(s->timer[0], offset);
    } else {
        return arm_timer_read(s->timer[1], offset - 0x20);
    }
}

static void sp804_write(void *opaque, target_phys_addr_t offset,
                        uint32_t value)
{
    sp804_state *s = (sp804_state *)opaque;

    if (offset < 0x20) {
        arm_timer_write(s->timer[0], offset, value);
    } else {
        arm_timer_write(s->timer[1], offset - 0x20, value);
    }
}

226
static CPUReadMemoryFunc * const sp804_readfn[] = {
227 228 229 230 231
   sp804_read,
   sp804_read,
   sp804_read
};

232
static CPUWriteMemoryFunc * const sp804_writefn[] = {
233 234 235 236 237
   sp804_write,
   sp804_write,
   sp804_write
};

P
pbrook 已提交
238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
static void sp804_save(QEMUFile *f, void *opaque)
{
    sp804_state *s = (sp804_state *)opaque;
    qemu_put_be32(f, s->level[0]);
    qemu_put_be32(f, s->level[1]);
}

static int sp804_load(QEMUFile *f, void *opaque, int version_id)
{
    sp804_state *s = (sp804_state *)opaque;

    if (version_id != 1)
        return -EINVAL;

    s->level[0] = qemu_get_be32(f);
    s->level[1] = qemu_get_be32(f);
    return 0;
}

P
Paul Brook 已提交
257
static void sp804_init(SysBusDevice *dev)
258 259
{
    int iomemtype;
P
Paul Brook 已提交
260
    sp804_state *s = FROM_SYSBUS(sp804_state, dev);
P
pbrook 已提交
261
    qemu_irq *qi;
262

P
pbrook 已提交
263
    qi = qemu_allocate_irqs(sp804_set_irq, s, 2);
P
Paul Brook 已提交
264
    sysbus_init_irq(dev, &s->irq);
265 266
    /* ??? The timers are actually configurable between 32kHz and 1MHz, but
       we don't implement that.  */
P
Paul Brook 已提交
267 268 269 270
    s->timer[0] = arm_timer_init(1000000);
    s->timer[1] = arm_timer_init(1000000);
    s->timer[0]->irq = qi[0];
    s->timer[1]->irq = qi[1];
271
    iomemtype = cpu_register_io_memory(sp804_readfn,
272
                                       sp804_writefn, s);
P
Paul Brook 已提交
273
    sysbus_init_mmio(dev, 0x1000, iomemtype);
P
pbrook 已提交
274
    register_savevm("sp804", -1, 1, sp804_save, sp804_load, s);
275 276 277 278 279 280
}


/* Integrator/CP timer module.  */

typedef struct {
P
Paul Brook 已提交
281 282
    SysBusDevice busdev;
    arm_timer_state *timer[3];
283 284 285 286 287 288 289 290 291
} icp_pit_state;

static uint32_t icp_pit_read(void *opaque, target_phys_addr_t offset)
{
    icp_pit_state *s = (icp_pit_state *)opaque;
    int n;

    /* ??? Don't know the PrimeCell ID for this device.  */
    n = offset >> 8;
P
Paul Brook 已提交
292 293 294
    if (n > 3) {
        hw_error("sp804_read: Bad timer %d\n", n);
    }
295 296 297 298 299 300 301 302 303 304 305

    return arm_timer_read(s->timer[n], offset & 0xff);
}

static void icp_pit_write(void *opaque, target_phys_addr_t offset,
                          uint32_t value)
{
    icp_pit_state *s = (icp_pit_state *)opaque;
    int n;

    n = offset >> 8;
P
Paul Brook 已提交
306 307 308
    if (n > 3) {
        hw_error("sp804_write: Bad timer %d\n", n);
    }
309 310 311 312 313

    arm_timer_write(s->timer[n], offset & 0xff, value);
}


314
static CPUReadMemoryFunc * const icp_pit_readfn[] = {
315 316 317 318 319
   icp_pit_read,
   icp_pit_read,
   icp_pit_read
};

320
static CPUWriteMemoryFunc * const icp_pit_writefn[] = {
321 322 323 324 325
   icp_pit_write,
   icp_pit_write,
   icp_pit_write
};

P
Paul Brook 已提交
326
static void icp_pit_init(SysBusDevice *dev)
327 328
{
    int iomemtype;
P
Paul Brook 已提交
329
    icp_pit_state *s = FROM_SYSBUS(icp_pit_state, dev);
330 331

    /* Timer 0 runs at the system clock speed (40MHz).  */
P
Paul Brook 已提交
332
    s->timer[0] = arm_timer_init(40000000);
333
    /* The other two timers run at 1MHz.  */
P
Paul Brook 已提交
334 335 336 337 338 339
    s->timer[1] = arm_timer_init(1000000);
    s->timer[2] = arm_timer_init(1000000);

    sysbus_init_irq(dev, &s->timer[0]->irq);
    sysbus_init_irq(dev, &s->timer[1]->irq);
    sysbus_init_irq(dev, &s->timer[2]->irq);
340

341
    iomemtype = cpu_register_io_memory(icp_pit_readfn,
342
                                       icp_pit_writefn, s);
P
Paul Brook 已提交
343
    sysbus_init_mmio(dev, 0x1000, iomemtype);
P
pbrook 已提交
344 345
    /* This device has no state to save/restore.  The component timers will
       save themselves.  */
346
}
P
Paul Brook 已提交
347 348 349 350 351 352 353 354

static void arm_timer_register_devices(void)
{
    sysbus_register_dev("integrator_pit", sizeof(icp_pit_state), icp_pit_init);
    sysbus_register_dev("sp804", sizeof(sp804_state), sp804_init);
}

device_init(arm_timer_register_devices)