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 "primecell.h"
14 #define LOCK_VALUE 0xa05f
28 static uint32_t arm_sysctl_read(void *opaque
, target_phys_addr_t offset
)
30 arm_sysctl_state
*s
= (arm_sysctl_state
*)opaque
;
37 /* General purpose hardware switches.
38 We don't have a useful way of exposing these to the user. */
49 case 0x24: /* 100HZ */
50 /* ??? Implement these. */
52 case 0x28: /* CFGDATA1 */
54 case 0x2c: /* CFGDATA2 */
56 case 0x30: /* FLAGS */
58 case 0x38: /* NVFLAGS */
60 case 0x40: /* RESETCTL */
62 case 0x44: /* PCICTL */
66 case 0x4c: /* FLASH */
70 case 0x54: /* CLCDSER */
72 case 0x58: /* BOOTCS */
74 case 0x5c: /* 24MHz */
75 /* ??? not implemented. */
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
;
116 case 0x0c: /* OSC0 */
117 case 0x10: /* OSC1 */
118 case 0x14: /* OSC2 */
119 case 0x18: /* OSC3 */
120 case 0x1c: /* OSC4 */
123 case 0x20: /* LOCK */
124 if (val
== LOCK_VALUE
)
127 s
->lockval
= val
& 0x7fff;
129 case 0x28: /* CFGDATA1 */
130 /* ??? Need to implement this. */
133 case 0x2c: /* CFGDATA2 */
134 /* ??? Need to implement this. */
137 case 0x30: /* FLAGSSET */
140 case 0x34: /* FLAGSCLR */
143 case 0x38: /* NVFLAGSSET */
146 case 0x3c: /* NVFLAGSCLR */
149 case 0x40: /* RESETCTL */
150 if (s
->lockval
== LOCK_VALUE
) {
153 qemu_system_reset_request ();
156 case 0x44: /* PCICTL */
159 case 0x4c: /* FLASH */
160 case 0x50: /* CLCD */
161 case 0x54: /* CLCDSER */
162 case 0x64: /* DMAPSR0 */
163 case 0x68: /* DMAPSR1 */
164 case 0x6c: /* DMAPSR2 */
165 case 0x70: /* IOSEL */
166 case 0x74: /* PLDCTL */
167 case 0x80: /* BUSID */
168 case 0x84: /* PROCID0 */
169 case 0x88: /* PROCID1 */
170 case 0x8c: /* OSCRESET0 */
171 case 0x90: /* OSCRESET1 */
172 case 0x94: /* OSCRESET2 */
173 case 0x98: /* OSCRESET3 */
174 case 0x9c: /* OSCRESET4 */
177 printf ("arm_sysctl_write: Bad register offset 0x%x\n", (int)offset
);
182 static CPUReadMemoryFunc
*arm_sysctl_readfn
[] = {
188 static CPUWriteMemoryFunc
*arm_sysctl_writefn
[] = {
194 void arm_sysctl_init(uint32_t base
, uint32_t sys_id
)
199 s
= (arm_sysctl_state
*)qemu_mallocz(sizeof(arm_sysctl_state
));
204 /* The MPcore bootloader uses these flags to start secondary CPUs.
205 We don't use a bootloader, so do this here. */
207 iomemtype
= cpu_register_io_memory(0, arm_sysctl_readfn
,
208 arm_sysctl_writefn
, s
);
209 cpu_register_physical_memory(base
, 0x00001000, iomemtype
);
210 /* ??? Save/restore. */