2 * Status and system control registers for ARM RealView/Versatile boards.
4 * Copyright (c) 2006-2007 CodeSourcery.
5 * Written by Paul Brook
7 * This code is licenced under the GPL.
11 #include "qemu-timer.h"
13 #include "primecell.h"
16 #define LOCK_VALUE 0xa05f
30 static uint32_t arm_sysctl_read(void *opaque
, target_phys_addr_t offset
)
32 arm_sysctl_state
*s
= (arm_sysctl_state
*)opaque
;
38 /* General purpose hardware switches.
39 We don't have a useful way of exposing these to the user. */
50 case 0x24: /* 100HZ */
51 /* ??? Implement these. */
53 case 0x28: /* CFGDATA1 */
55 case 0x2c: /* CFGDATA2 */
57 case 0x30: /* FLAGS */
59 case 0x38: /* NVFLAGS */
61 case 0x40: /* RESETCTL */
63 case 0x44: /* PCICTL */
67 case 0x4c: /* FLASH */
71 case 0x54: /* CLCDSER */
73 case 0x58: /* BOOTCS */
75 case 0x5c: /* 24MHz */
76 return muldiv64(qemu_get_clock(vm_clock
), 24000000, get_ticks_per_sec());
79 case 0x84: /* PROCID0 */
80 /* ??? Don't know what the proper value for the core tile ID is. */
82 case 0x88: /* PROCID1 */
84 case 0x64: /* DMAPSR0 */
85 case 0x68: /* DMAPSR1 */
86 case 0x6c: /* DMAPSR2 */
87 case 0x70: /* IOSEL */
88 case 0x74: /* PLDCTL */
89 case 0x80: /* BUSID */
90 case 0x8c: /* OSCRESET0 */
91 case 0x90: /* OSCRESET1 */
92 case 0x94: /* OSCRESET2 */
93 case 0x98: /* OSCRESET3 */
94 case 0x9c: /* OSCRESET4 */
95 case 0xc0: /* SYS_TEST_OSC0 */
96 case 0xc4: /* SYS_TEST_OSC1 */
97 case 0xc8: /* SYS_TEST_OSC2 */
98 case 0xcc: /* SYS_TEST_OSC3 */
99 case 0xd0: /* SYS_TEST_OSC4 */
102 printf ("arm_sysctl_read: Bad register offset 0x%x\n", (int)offset
);
107 static void arm_sysctl_write(void *opaque
, target_phys_addr_t offset
,
110 arm_sysctl_state
*s
= (arm_sysctl_state
*)opaque
;
115 case 0x0c: /* OSC0 */
116 case 0x10: /* OSC1 */
117 case 0x14: /* OSC2 */
118 case 0x18: /* OSC3 */
119 case 0x1c: /* OSC4 */
122 case 0x20: /* LOCK */
123 if (val
== LOCK_VALUE
)
126 s
->lockval
= val
& 0x7fff;
128 case 0x28: /* CFGDATA1 */
129 /* ??? Need to implement this. */
132 case 0x2c: /* CFGDATA2 */
133 /* ??? Need to implement this. */
136 case 0x30: /* FLAGSSET */
139 case 0x34: /* FLAGSCLR */
142 case 0x38: /* NVFLAGSSET */
145 case 0x3c: /* NVFLAGSCLR */
148 case 0x40: /* RESETCTL */
149 if (s
->lockval
== LOCK_VALUE
) {
152 qemu_system_reset_request ();
155 case 0x44: /* PCICTL */
158 case 0x4c: /* FLASH */
159 case 0x50: /* CLCD */
160 case 0x54: /* CLCDSER */
161 case 0x64: /* DMAPSR0 */
162 case 0x68: /* DMAPSR1 */
163 case 0x6c: /* DMAPSR2 */
164 case 0x70: /* IOSEL */
165 case 0x74: /* PLDCTL */
166 case 0x80: /* BUSID */
167 case 0x84: /* PROCID0 */
168 case 0x88: /* PROCID1 */
169 case 0x8c: /* OSCRESET0 */
170 case 0x90: /* OSCRESET1 */
171 case 0x94: /* OSCRESET2 */
172 case 0x98: /* OSCRESET3 */
173 case 0x9c: /* OSCRESET4 */
176 printf ("arm_sysctl_write: Bad register offset 0x%x\n", (int)offset
);
181 static CPUReadMemoryFunc
* const arm_sysctl_readfn
[] = {
187 static CPUWriteMemoryFunc
* const arm_sysctl_writefn
[] = {
193 static int arm_sysctl_init1(SysBusDevice
*dev
)
195 arm_sysctl_state
*s
= FROM_SYSBUS(arm_sysctl_state
, dev
);
198 /* The MPcore bootloader uses these flags to start secondary CPUs.
199 We don't use a bootloader, so do this here. */
201 iomemtype
= cpu_register_io_memory(arm_sysctl_readfn
,
202 arm_sysctl_writefn
, s
);
203 sysbus_init_mmio(dev
, 0x1000, iomemtype
);
204 /* ??? Save/restore. */
208 /* Legacy helper function. */
209 void arm_sysctl_init(uint32_t base
, uint32_t sys_id
)
213 dev
= qdev_create(NULL
, "realview_sysctl");
214 qdev_prop_set_uint32(dev
, "sys_id", sys_id
);
215 qdev_init_nofail(dev
);
216 sysbus_mmio_map(sysbus_from_qdev(dev
), 0, base
);
219 static SysBusDeviceInfo arm_sysctl_info
= {
220 .init
= arm_sysctl_init1
,
221 .qdev
.name
= "realview_sysctl",
222 .qdev
.size
= sizeof(arm_sysctl_state
),
223 .qdev
.props
= (Property
[]) {
224 DEFINE_PROP_UINT32("sys_id", arm_sysctl_state
, sys_id
, 0),
225 DEFINE_PROP_END_OF_LIST(),
229 static void arm_sysctl_register_devices(void)
231 sysbus_register_withprop(&arm_sysctl_info
);
234 device_init(arm_sysctl_register_devices
)