2 * Status and system control registers for ARM RealView/Versatile boards.
4 * Copyright (c) 2006 CodeSourcery.
5 * Written by Paul Brook
7 * This code is licenced under the GPL.
13 #define LOCK_VALUE 0xa05f
27 static uint32_t arm_sysctl_read(void *opaque
, target_phys_addr_t offset
)
29 arm_sysctl_state
*s
= (arm_sysctl_state
*)opaque
;
36 /* General purpose hardware switches.
37 We don't have a useful way of exposing these to the user. */
48 case 0x24: /* 100HZ */
49 /* ??? Implement these. */
51 case 0x28: /* CFGDATA1 */
53 case 0x2c: /* CFGDATA2 */
55 case 0x30: /* FLAGS */
57 case 0x38: /* NVFLAGS */
59 case 0x40: /* RESETCTL */
61 case 0x44: /* PCICTL */
65 case 0x4c: /* FLASH */
69 case 0x54: /* CLCDSER */
71 case 0x58: /* BOOTCS */
73 case 0x5c: /* 24MHz */
74 /* ??? not implemented. */
78 case 0x84: /* PROCID0 */
79 /* ??? Don't know what the proper value for the core tile ID is. */
81 case 0x88: /* PROCID1 */
83 case 0x64: /* DMAPSR0 */
84 case 0x68: /* DMAPSR1 */
85 case 0x6c: /* DMAPSR2 */
86 case 0x70: /* IOSEL */
87 case 0x74: /* PLDCTL */
88 case 0x80: /* BUSID */
89 case 0x8c: /* OSCRESET0 */
90 case 0x90: /* OSCRESET1 */
91 case 0x94: /* OSCRESET2 */
92 case 0x98: /* OSCRESET3 */
93 case 0x9c: /* OSCRESET4 */
94 case 0xc0: /* SYS_TEST_OSC0 */
95 case 0xc4: /* SYS_TEST_OSC1 */
96 case 0xc8: /* SYS_TEST_OSC2 */
97 case 0xcc: /* SYS_TEST_OSC3 */
98 case 0xd0: /* SYS_TEST_OSC4 */
101 printf ("arm_sysctl_read: Bad register offset 0x%x\n", (int)offset
);
106 static void arm_sysctl_write(void *opaque
, target_phys_addr_t offset
,
109 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 cpu_abort(cpu_single_env
, "Board reset\n");
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
*arm_sysctl_readfn
[] = {
187 static CPUWriteMemoryFunc
*arm_sysctl_writefn
[] = {
193 void arm_sysctl_init(uint32_t base
, uint32_t sys_id
)
198 s
= (arm_sysctl_state
*)qemu_mallocz(sizeof(arm_sysctl_state
));
203 iomemtype
= cpu_register_io_memory(0, arm_sysctl_readfn
,
204 arm_sysctl_writefn
, s
);
205 cpu_register_physical_memory(base
, 0x00000fff, iomemtype
);
206 /* ??? Save/restore. */
210 * Status and system control registers for ARM RealView/Versatile boards.
212 * Copyright (c) 2006 CodeSourcery.
213 * Written by Paul Brook
215 * This code is licenced under the GPL.
221 #define LOCK_VALUE 0xa05f
235 static uint32_t arm_sysctl_read(void *opaque
, target_phys_addr_t offset
)
237 arm_sysctl_state
*s
= (arm_sysctl_state
*)opaque
;
244 /* General purpose hardware switches.
245 We don't have a useful way of exposing these to the user. */
249 case 0x20: /* LOCK */
251 case 0x0c: /* OSC0 */
252 case 0x10: /* OSC1 */
253 case 0x14: /* OSC2 */
254 case 0x18: /* OSC3 */
255 case 0x1c: /* OSC4 */
256 case 0x24: /* 100HZ */
257 /* ??? Implement these. */
259 case 0x28: /* CFGDATA1 */
261 case 0x2c: /* CFGDATA2 */
263 case 0x30: /* FLAGS */
265 case 0x38: /* NVFLAGS */
267 case 0x40: /* RESETCTL */
268 return s
->resetlevel
;
269 case 0x44: /* PCICTL */
273 case 0x4c: /* FLASH */
275 case 0x50: /* CLCD */
277 case 0x54: /* CLCDSER */
279 case 0x58: /* BOOTCS */
281 case 0x5c: /* 24MHz */
282 /* ??? not implemented. */
284 case 0x60: /* MISC */
286 case 0x84: /* PROCID0 */
287 /* ??? Don't know what the proper value for the core tile ID is. */
289 case 0x88: /* PROCID1 */
291 case 0x64: /* DMAPSR0 */
292 case 0x68: /* DMAPSR1 */
293 case 0x6c: /* DMAPSR2 */
294 case 0x70: /* IOSEL */
295 case 0x74: /* PLDCTL */
296 case 0x80: /* BUSID */
297 case 0x8c: /* OSCRESET0 */
298 case 0x90: /* OSCRESET1 */
299 case 0x94: /* OSCRESET2 */
300 case 0x98: /* OSCRESET3 */
301 case 0x9c: /* OSCRESET4 */
302 case 0xc0: /* SYS_TEST_OSC0 */
303 case 0xc4: /* SYS_TEST_OSC1 */
304 case 0xc8: /* SYS_TEST_OSC2 */
305 case 0xcc: /* SYS_TEST_OSC3 */
306 case 0xd0: /* SYS_TEST_OSC4 */
309 printf ("arm_sysctl_read: Bad register offset 0x%x\n", (int)offset
);
314 static void arm_sysctl_write(void *opaque
, target_phys_addr_t offset
,
317 arm_sysctl_state
*s
= (arm_sysctl_state
*)opaque
;
323 case 0x0c: /* OSC0 */
324 case 0x10: /* OSC1 */
325 case 0x14: /* OSC2 */
326 case 0x18: /* OSC3 */
327 case 0x1c: /* OSC4 */
330 case 0x20: /* LOCK */
331 if (val
== LOCK_VALUE
)
334 s
->lockval
= val
& 0x7fff;
336 case 0x28: /* CFGDATA1 */
337 /* ??? Need to implement this. */
340 case 0x2c: /* CFGDATA2 */
341 /* ??? Need to implement this. */
344 case 0x30: /* FLAGSSET */
347 case 0x34: /* FLAGSCLR */
350 case 0x38: /* NVFLAGSSET */
353 case 0x3c: /* NVFLAGSCLR */
356 case 0x40: /* RESETCTL */
357 if (s
->lockval
== LOCK_VALUE
) {
360 cpu_abort(cpu_single_env
, "Board reset\n");
363 case 0x44: /* PCICTL */
366 case 0x4c: /* FLASH */
367 case 0x50: /* CLCD */
368 case 0x54: /* CLCDSER */
369 case 0x64: /* DMAPSR0 */
370 case 0x68: /* DMAPSR1 */
371 case 0x6c: /* DMAPSR2 */
372 case 0x70: /* IOSEL */
373 case 0x74: /* PLDCTL */
374 case 0x80: /* BUSID */
375 case 0x84: /* PROCID0 */
376 case 0x88: /* PROCID1 */
377 case 0x8c: /* OSCRESET0 */
378 case 0x90: /* OSCRESET1 */
379 case 0x94: /* OSCRESET2 */
380 case 0x98: /* OSCRESET3 */
381 case 0x9c: /* OSCRESET4 */
384 printf ("arm_sysctl_write: Bad register offset 0x%x\n", (int)offset
);
389 static CPUReadMemoryFunc
*arm_sysctl_readfn
[] = {
395 static CPUWriteMemoryFunc
*arm_sysctl_writefn
[] = {
401 void arm_sysctl_init(uint32_t base
, uint32_t sys_id
)
406 s
= (arm_sysctl_state
*)qemu_mallocz(sizeof(arm_sysctl_state
));
411 iomemtype
= cpu_register_io_memory(0, arm_sysctl_readfn
,
412 arm_sysctl_writefn
, s
);
413 cpu_register_physical_memory(base
, 0x00000fff, iomemtype
);
414 /* ??? Save/restore. */