Statistics
| Branch: | Revision:

root / hw / pl031.c @ 2ac71179

History | View | Annotate | Download (5.1 kB)

1
/*
2
 * ARM AMBA PrimeCell PL031 RTC
3
 *
4
 * Copyright (c) 2007 CodeSourcery
5
 *
6
 * This file is free software; you can redistribute it and/or modify
7
 * it under the terms of the GNU General Public License version 2 as
8
 * published by the Free Software Foundation.
9
 *
10
 */
11

    
12
#include "hw.h"
13
#include "primecell.h"
14
#include "qemu-timer.h"
15
#include "sysemu.h"
16

    
17
//#define DEBUG_PL031
18

    
19
#ifdef DEBUG_PL031
20
#define DPRINTF(fmt, args...) \
21
do { printf("pl031: " fmt , ##args); } while (0)
22
#else
23
#define DPRINTF(fmt, args...) do {} while(0)
24
#endif
25

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

    
35
typedef struct {
36
    QEMUTimer *timer;
37
    qemu_irq irq;
38

    
39
    uint32_t tick_offset;
40

    
41
    uint32_t mr;
42
    uint32_t lr;
43
    uint32_t cr;
44
    uint32_t im;
45
    uint32_t is;
46
} pl031_state;
47

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

    
53
static void pl031_update(pl031_state *s)
54
{
55
    qemu_set_irq(s->irq, s->is & s->im);
56
}
57

    
58
static void pl031_interrupt(void * opaque)
59
{
60
    pl031_state *s = (pl031_state *)opaque;
61

    
62
    s->im = 1;
63
    DPRINTF("Alarm raised\n");
64
    pl031_update(s);
65
}
66

    
67
static uint32_t pl031_get_count(pl031_state *s)
68
{
69
    /* This assumes qemu_get_clock returns the time since the machine was
70
       created.  */
71
    return s->tick_offset + qemu_get_clock(vm_clock) / ticks_per_sec;
72
}
73

    
74
static void pl031_set_alarm(pl031_state *s)
75
{
76
    int64_t now;
77
    uint32_t ticks;
78

    
79
    now = qemu_get_clock(vm_clock);
80
    ticks = s->tick_offset + now / ticks_per_sec;
81

    
82
    /* The timer wraps around.  This subtraction also wraps in the same way,
83
       and gives correct results when alarm < now_ticks.  */
84
    ticks = s->mr - ticks;
85
    DPRINTF("Alarm set in %ud ticks\n", ticks);
86
    if (ticks == 0) {
87
        qemu_del_timer(s->timer);
88
        pl031_interrupt(s);
89
    } else {
90
        qemu_mod_timer(s->timer, now + (int64_t)ticks * ticks_per_sec);
91
    }
92
}
93

    
94
static uint32_t pl031_read(void *opaque, target_phys_addr_t offset)
95
{
96
    pl031_state *s = (pl031_state *)opaque;
97

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

    
101
    switch (offset) {
102
    case RTC_DR:
103
        return pl031_get_count(s);
104
    case RTC_MR:
105
        return s->mr;
106
    case RTC_IMSC:
107
        return s->im;
108
    case RTC_RIS:
109
        return s->is;
110
    case RTC_LR:
111
        return s->lr;
112
    case RTC_CR:
113
        /* RTC is permanently enabled.  */
114
        return 1;
115
    case RTC_MIS:
116
        return s->is & s->im;
117
    case RTC_ICR:
118
        fprintf(stderr, "qemu: pl031_read: Unexpected offset 0x%x\n",
119
                (int)offset);
120
        break;
121
    default:
122
        hw_error("pl031_read: Bad offset 0x%x\n", (int)offset);
123
        break;
124
    }
125

    
126
    return 0;
127
}
128

    
129
static void pl031_write(void * opaque, target_phys_addr_t offset,
130
                        uint32_t value)
131
{
132
    pl031_state *s = (pl031_state *)opaque;
133

    
134

    
135
    switch (offset) {
136
    case RTC_LR:
137
        s->tick_offset += value - pl031_get_count(s);
138
        pl031_set_alarm(s);
139
        break;
140
    case RTC_MR:
141
        s->mr = value;
142
        pl031_set_alarm(s);
143
        break;
144
    case RTC_IMSC:
145
        s->im = value & 1;
146
        DPRINTF("Interrupt mask %d\n", s->im);
147
        pl031_update(s);
148
        break;
149
    case RTC_ICR:
150
        /* The PL031 documentation (DDI0224B) states that the interupt is
151
           cleared when bit 0 of the written value is set.  However the
152
           arm926e documentation (DDI0287B) states that the interrupt is
153
           cleared when any value is written.  */
154
        DPRINTF("Interrupt cleared");
155
        s->is = 0;
156
        pl031_update(s);
157
        break;
158
    case RTC_CR:
159
        /* Written value is ignored.  */
160
        break;
161

    
162
    case RTC_DR:
163
    case RTC_MIS:
164
    case RTC_RIS:
165
        fprintf(stderr, "qemu: pl031_write: Unexpected offset 0x%x\n",
166
                (int)offset);
167
        break;
168

    
169
    default:
170
        hw_error("pl031_write: Bad offset 0x%x\n", (int)offset);
171
        break;
172
    }
173
}
174

    
175
static CPUWriteMemoryFunc * pl031_writefn[] = {
176
    pl031_write,
177
    pl031_write,
178
    pl031_write
179
};
180

    
181
static CPUReadMemoryFunc * pl031_readfn[] = {
182
    pl031_read,
183
    pl031_read,
184
    pl031_read
185
};
186

    
187
void pl031_init(uint32_t base, qemu_irq irq)
188
{
189
    int iomemtype;
190
    pl031_state *s;
191
    struct tm tm;
192

    
193
    s = qemu_mallocz(sizeof(pl031_state));
194

    
195
    iomemtype = cpu_register_io_memory(0, pl031_readfn, pl031_writefn, s);
196
    if (iomemtype == -1) {
197
        hw_error("pl031_init: Can't register I/O memory\n");
198
    }
199

    
200
    cpu_register_physical_memory(base, 0x00001000, iomemtype);
201

    
202
    s->irq  = irq;
203
    /* ??? We assume vm_clock is zero at this point.  */
204
    qemu_get_timedate(&tm, 0);
205
    s->tick_offset = mktimegm(&tm);
206

    
207
    s->timer = qemu_new_timer(vm_clock, pl031_interrupt, s);
208
}