Statistics
| Branch: | Revision:

root / hw / timer.c @ 546fa6ab

History | View | Annotate | Download (2.6 kB)

1
/*
2
 * QEMU Sparc timer controller emulation
3
 * 
4
 * Copyright (c) 2003-2004 Fabrice Bellard
5
 * 
6
 * Permission is hereby granted, free of charge, to any person obtaining a copy
7
 * of this software and associated documentation files (the "Software"), to deal
8
 * in the Software without restriction, including without limitation the rights
9
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
 * copies of the Software, and to permit persons to whom the Software is
11
 * furnished to do so, subject to the following conditions:
12
 *
13
 * The above copyright notice and this permission notice shall be included in
14
 * all copies or substantial portions of the Software.
15
 *
16
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22
 * THE SOFTWARE.
23
 */
24
#include "vl.h"
25

    
26
/*
27
 * Registers of hardware timer in sun4m.
28
 */
29
struct sun4m_timer_percpu {
30
        volatile unsigned int l14_timer_limit; /* Initial value is 0x009c4000 */
31
        volatile unsigned int l14_cur_count;
32
};
33

    
34
struct sun4m_timer_global {
35
        volatile unsigned int l10_timer_limit;
36
        volatile unsigned int l10_cur_count;
37
};
38

    
39
typedef struct TIMERState {
40
    uint32_t addr;
41
    uint32_t timer_regs[2];
42
    int irq;
43
} TIMERState;
44

    
45
static uint32_t timer_mem_readl(void *opaque, target_phys_addr_t addr)
46
{
47
    TIMERState *s = opaque;
48
    uint32_t saddr;
49

    
50
    saddr = (addr - s->addr) >> 2;
51
    switch (saddr) {
52
    default:
53
        return s->timer_regs[saddr];
54
        break;
55
    }
56
    return 0;
57
}
58

    
59
static void timer_mem_writel(void *opaque, target_phys_addr_t addr, uint32_t val)
60
{
61
    TIMERState *s = opaque;
62
    uint32_t saddr;
63

    
64
    saddr = (addr - s->addr) >> 2;
65
    switch (saddr) {
66
    default:
67
        s->timer_regs[saddr] = val;
68
        break;
69
    }
70
}
71

    
72
static CPUReadMemoryFunc *timer_mem_read[3] = {
73
    timer_mem_readl,
74
    timer_mem_readl,
75
    timer_mem_readl,
76
};
77

    
78
static CPUWriteMemoryFunc *timer_mem_write[3] = {
79
    timer_mem_writel,
80
    timer_mem_writel,
81
    timer_mem_writel,
82
};
83

    
84
void timer_init(uint32_t addr, int irq)
85
{
86
    int timer_io_memory;
87
    TIMERState *s;
88

    
89
    s = qemu_mallocz(sizeof(TIMERState));
90
    if (!s)
91
        return;
92
    s->addr = addr;
93
    s->irq = irq;
94

    
95
    timer_io_memory = cpu_register_io_memory(0, timer_mem_read, timer_mem_write, s);
96
    cpu_register_physical_memory(addr, 2, timer_io_memory);
97
}