pl031.c 6.3 KB
Newer Older
P
pbrook 已提交
1 2 3 4 5 6 7 8 9
/*
 * ARM AMBA PrimeCell PL031 RTC
 *
 * Copyright (c) 2007 CodeSourcery
 *
 * This file is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 *
10 11
 * Contributions after 2012-01-13 are licensed under the terms of the
 * GNU GPL, version 2 or (at your option) any later version.
P
pbrook 已提交
12 13
 */

P
Paul Brook 已提交
14
#include "sysbus.h"
P
pbrook 已提交
15
#include "qemu-timer.h"
P
pbrook 已提交
16 17 18 19

//#define DEBUG_PL031

#ifdef DEBUG_PL031
20 21
#define DPRINTF(fmt, ...) \
do { printf("pl031: " fmt , ## __VA_ARGS__); } while (0)
P
pbrook 已提交
22
#else
23
#define DPRINTF(fmt, ...) do {} while(0)
P
pbrook 已提交
24 25 26 27 28 29 30 31 32 33 34 35
#endif

#define RTC_DR      0x00    /* Data read register */
#define RTC_MR      0x04    /* Match register */
#define RTC_LR      0x08    /* Data load register */
#define RTC_CR      0x0c    /* Control register */
#define RTC_IMSC    0x10    /* Interrupt mask and set register */
#define RTC_RIS     0x14    /* Raw interrupt status register */
#define RTC_MIS     0x18    /* Masked interrupt status register */
#define RTC_ICR     0x1c    /* Interrupt clear register */

typedef struct {
P
Paul Brook 已提交
36
    SysBusDevice busdev;
A
Avi Kivity 已提交
37
    MemoryRegion iomem;
P
pbrook 已提交
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
    QEMUTimer *timer;
    qemu_irq irq;

    uint32_t tick_offset;

    uint32_t mr;
    uint32_t lr;
    uint32_t cr;
    uint32_t im;
    uint32_t is;
} pl031_state;

static const unsigned char pl031_id[] = {
    0x31, 0x10, 0x14, 0x00,         /* Device ID        */
    0x0d, 0xf0, 0x05, 0xb1          /* Cell ID      */
};

static void pl031_update(pl031_state *s)
{
    qemu_set_irq(s->irq, s->is & s->im);
}

static void pl031_interrupt(void * opaque)
{
    pl031_state *s = (pl031_state *)opaque;

64
    s->is = 1;
P
pbrook 已提交
65 66 67 68 69 70
    DPRINTF("Alarm raised\n");
    pl031_update(s);
}

static uint32_t pl031_get_count(pl031_state *s)
{
71
    /* This assumes qemu_get_clock_ns returns the time since the machine was
P
pbrook 已提交
72
       created.  */
73
    return s->tick_offset + qemu_get_clock_ns(vm_clock) / get_ticks_per_sec();
P
pbrook 已提交
74 75 76 77 78 79 80
}

static void pl031_set_alarm(pl031_state *s)
{
    int64_t now;
    uint32_t ticks;

81
    now = qemu_get_clock_ns(vm_clock);
82
    ticks = s->tick_offset + now / get_ticks_per_sec();
P
pbrook 已提交
83 84 85 86 87 88 89 90 91

    /* The timer wraps around.  This subtraction also wraps in the same way,
       and gives correct results when alarm < now_ticks.  */
    ticks = s->mr - ticks;
    DPRINTF("Alarm set in %ud ticks\n", ticks);
    if (ticks == 0) {
        qemu_del_timer(s->timer);
        pl031_interrupt(s);
    } else {
92
        qemu_mod_timer(s->timer, now + (int64_t)ticks * get_ticks_per_sec());
P
pbrook 已提交
93 94 95
    }
}

A
Avi Kivity 已提交
96 97
static uint64_t pl031_read(void *opaque, target_phys_addr_t offset,
                           unsigned size)
P
pbrook 已提交
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
{
    pl031_state *s = (pl031_state *)opaque;

    if (offset >= 0xfe0  &&  offset < 0x1000)
        return pl031_id[(offset - 0xfe0) >> 2];

    switch (offset) {
    case RTC_DR:
        return pl031_get_count(s);
    case RTC_MR:
        return s->mr;
    case RTC_IMSC:
        return s->im;
    case RTC_RIS:
        return s->is;
    case RTC_LR:
        return s->lr;
    case RTC_CR:
        /* RTC is permanently enabled.  */
        return 1;
    case RTC_MIS:
        return s->is & s->im;
    case RTC_ICR:
        fprintf(stderr, "qemu: pl031_read: Unexpected offset 0x%x\n",
                (int)offset);
        break;
    default:
P
Paul Brook 已提交
125
        hw_error("pl031_read: Bad offset 0x%x\n", (int)offset);
P
pbrook 已提交
126 127 128 129 130 131
        break;
    }

    return 0;
}

A
Anthony Liguori 已提交
132
static void pl031_write(void * opaque, target_phys_addr_t offset,
A
Avi Kivity 已提交
133
                        uint64_t value, unsigned size)
P
pbrook 已提交
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
{
    pl031_state *s = (pl031_state *)opaque;


    switch (offset) {
    case RTC_LR:
        s->tick_offset += value - pl031_get_count(s);
        pl031_set_alarm(s);
        break;
    case RTC_MR:
        s->mr = value;
        pl031_set_alarm(s);
        break;
    case RTC_IMSC:
        s->im = value & 1;
        DPRINTF("Interrupt mask %d\n", s->im);
        pl031_update(s);
        break;
    case RTC_ICR:
153
        /* The PL031 documentation (DDI0224B) states that the interrupt is
P
pbrook 已提交
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
           cleared when bit 0 of the written value is set.  However the
           arm926e documentation (DDI0287B) states that the interrupt is
           cleared when any value is written.  */
        DPRINTF("Interrupt cleared");
        s->is = 0;
        pl031_update(s);
        break;
    case RTC_CR:
        /* Written value is ignored.  */
        break;

    case RTC_DR:
    case RTC_MIS:
    case RTC_RIS:
        fprintf(stderr, "qemu: pl031_write: Unexpected offset 0x%x\n",
                (int)offset);
        break;

    default:
P
Paul Brook 已提交
173
        hw_error("pl031_write: Bad offset 0x%x\n", (int)offset);
P
pbrook 已提交
174 175 176 177
        break;
    }
}

A
Avi Kivity 已提交
178 179 180 181
static const MemoryRegionOps pl031_ops = {
    .read = pl031_read,
    .write = pl031_write,
    .endianness = DEVICE_NATIVE_ENDIAN,
P
pbrook 已提交
182 183
};

184
static int pl031_init(SysBusDevice *dev)
P
pbrook 已提交
185
{
P
Paul Brook 已提交
186
    pl031_state *s = FROM_SYSBUS(pl031_state, dev);
187
    struct tm tm;
P
pbrook 已提交
188

A
Avi Kivity 已提交
189
    memory_region_init_io(&s->iomem, &pl031_ops, s, "pl031", 0x1000);
190
    sysbus_init_mmio(dev, &s->iomem);
P
pbrook 已提交
191

P
Paul Brook 已提交
192
    sysbus_init_irq(dev, &s->irq);
P
pbrook 已提交
193
    /* ??? We assume vm_clock is zero at this point.  */
194
    qemu_get_timedate(&tm, 0);
A
aurel32 已提交
195
    s->tick_offset = mktimegm(&tm);
P
pbrook 已提交
196

197
    s->timer = qemu_new_timer_ns(vm_clock, pl031_interrupt, s);
198
    return 0;
P
pbrook 已提交
199
}
P
Paul Brook 已提交
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
static int pl031_post_load(void *opaque, int version_id)
{
    pl031_state *s = opaque;

    pl031_set_alarm(s);
    return 0;
}

static const VMStateDescription vmstate_pl031 = {
    .name = "pl031",
    .version_id = 1,
    .minimum_version_id = 1,
    .post_load = pl031_post_load,
    .fields = (VMStateField[]) {
        VMSTATE_UINT32(tick_offset, pl031_state),
        VMSTATE_UINT32(mr, pl031_state),
        VMSTATE_UINT32(lr, pl031_state),
        VMSTATE_UINT32(cr, pl031_state),
        VMSTATE_UINT32(im, pl031_state),
        VMSTATE_UINT32(is, pl031_state),
        VMSTATE_END_OF_LIST()
    }
};

225 226
static void pl031_class_init(ObjectClass *klass, void *data)
{
227
    DeviceClass *dc = DEVICE_CLASS(klass);
228 229 230
    SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass);

    k->init = pl031_init;
231 232
    dc->no_user = 1;
    dc->vmsd = &vmstate_pl031;
233 234
}

235 236 237 238 239
static TypeInfo pl031_info = {
    .name          = "pl031",
    .parent        = TYPE_SYS_BUS_DEVICE,
    .instance_size = sizeof(pl031_state),
    .class_init    = pl031_class_init,
P
Peter Maydell 已提交
240 241
};

A
Andreas Färber 已提交
242
static void pl031_register_types(void)
P
Paul Brook 已提交
243
{
244
    type_register_static(&pl031_info);
P
Paul Brook 已提交
245 246
}

A
Andreas Färber 已提交
247
type_init(pl031_register_types)