]>
Commit | Line | Data |
---|---|---|
8cb310e1 AG |
1 | /* |
2 | * QEMU S390 virtio target | |
3 | * | |
4 | * Copyright (c) 2009 Alexander Graf <[email protected]> | |
5 | * | |
6 | * This library is free software; you can redistribute it and/or | |
7 | * modify it under the terms of the GNU Lesser General Public | |
8 | * License as published by the Free Software Foundation; either | |
9 | * version 2 of the License, or (at your option) any later version. | |
10 | * | |
11 | * This library is distributed in the hope that it will be useful, | |
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
14 | * Lesser General Public License for more details. | |
15 | * | |
16 | * You should have received a copy of the GNU Lesser General Public | |
17 | * License along with this library; if not, see <http://www.gnu.org/licenses/>. | |
18 | */ | |
19 | ||
20 | #include "hw.h" | |
21 | #include "block.h" | |
6c33286a | 22 | #include "blockdev.h" |
8cb310e1 AG |
23 | #include "sysemu.h" |
24 | #include "net.h" | |
25 | #include "boards.h" | |
26 | #include "monitor.h" | |
27 | #include "loader.h" | |
28 | #include "elf.h" | |
29 | #include "hw/virtio.h" | |
8cb310e1 AG |
30 | #include "hw/sysbus.h" |
31 | #include "kvm.h" | |
ca3dbc27 | 32 | #include "exec-memory.h" |
8cb310e1 AG |
33 | |
34 | #include "hw/s390-virtio-bus.h" | |
35 | ||
36 | //#define DEBUG_S390 | |
37 | ||
38 | #ifdef DEBUG_S390 | |
39 | #define dprintf(fmt, ...) \ | |
40 | do { fprintf(stderr, fmt, ## __VA_ARGS__); } while (0) | |
41 | #else | |
42 | #define dprintf(fmt, ...) \ | |
43 | do { } while (0) | |
44 | #endif | |
45 | ||
46 | #define KVM_S390_VIRTIO_NOTIFY 0 | |
47 | #define KVM_S390_VIRTIO_RESET 1 | |
48 | #define KVM_S390_VIRTIO_SET_STATUS 2 | |
49 | ||
50 | #define KERN_IMAGE_START 0x010000UL | |
51 | #define KERN_PARM_AREA 0x010480UL | |
52 | #define INITRD_START 0x800000UL | |
53 | #define INITRD_PARM_START 0x010408UL | |
54 | #define INITRD_PARM_SIZE 0x010410UL | |
55 | #define PARMFILE_START 0x001000UL | |
56 | ||
fe270d04 AG |
57 | #define ZIPL_START 0x009000UL |
58 | #define ZIPL_LOAD_ADDR 0x009000UL | |
59 | #define ZIPL_FILENAME "s390-zipl.rom" | |
60 | ||
8cb310e1 AG |
61 | #define MAX_BLK_DEVS 10 |
62 | ||
63 | static VirtIOS390Bus *s390_bus; | |
64 | static CPUState **ipi_states; | |
65 | ||
8cb310e1 AG |
66 | CPUState *s390_cpu_addr2state(uint16_t cpu_addr) |
67 | { | |
68 | if (cpu_addr >= smp_cpus) { | |
69 | return NULL; | |
70 | } | |
71 | ||
72 | return ipi_states[cpu_addr]; | |
73 | } | |
74 | ||
8d5192ee | 75 | int s390_virtio_hypercall(CPUState *env, uint64_t mem, uint64_t hypercall) |
8cb310e1 AG |
76 | { |
77 | int r = 0, i; | |
8cb310e1 | 78 | |
8d5192ee AG |
79 | dprintf("KVM hypercall: %ld\n", hypercall); |
80 | switch (hypercall) { | |
8cb310e1 AG |
81 | case KVM_S390_VIRTIO_NOTIFY: |
82 | if (mem > ram_size) { | |
83 | VirtIOS390Device *dev = s390_virtio_bus_find_vring(s390_bus, | |
84 | mem, &i); | |
85 | if (dev) { | |
86 | virtio_queue_notify(dev->vdev, i); | |
87 | } else { | |
88 | r = -EINVAL; | |
89 | } | |
90 | } else { | |
91 | /* Early printk */ | |
92 | } | |
93 | break; | |
94 | case KVM_S390_VIRTIO_RESET: | |
95 | { | |
baf0b55a AG |
96 | VirtIOS390Device *dev; |
97 | ||
98 | dev = s390_virtio_bus_find_mem(s390_bus, mem); | |
99 | virtio_reset(dev->vdev); | |
e9d86b76 | 100 | stb_phys(dev->dev_offs + VIRTIO_DEV_OFFS_STATUS, 0); |
baf0b55a | 101 | s390_virtio_device_sync(dev); |
8cb310e1 AG |
102 | break; |
103 | } | |
104 | case KVM_S390_VIRTIO_SET_STATUS: | |
105 | { | |
106 | VirtIOS390Device *dev; | |
107 | ||
108 | dev = s390_virtio_bus_find_mem(s390_bus, mem); | |
109 | if (dev) { | |
110 | s390_virtio_device_update_status(dev); | |
111 | } else { | |
112 | r = -EINVAL; | |
113 | } | |
114 | break; | |
115 | } | |
116 | default: | |
117 | r = -EINVAL; | |
118 | break; | |
119 | } | |
120 | ||
8d5192ee | 121 | return r; |
8cb310e1 AG |
122 | } |
123 | ||
854e42f3 CB |
124 | /* |
125 | * The number of running CPUs. On s390 a shutdown is the state of all CPUs | |
126 | * being either stopped or disabled (for interrupts) waiting. We have to | |
127 | * track this number to call the shutdown sequence accordingly. This | |
128 | * number is modified either on startup or while holding the big qemu lock. | |
129 | */ | |
130 | static unsigned s390_running_cpus; | |
131 | ||
132 | void s390_add_running_cpu(CPUState *env) | |
133 | { | |
134 | if (env->halted) { | |
135 | s390_running_cpus++; | |
136 | env->halted = 0; | |
137 | env->exception_index = -1; | |
138 | } | |
139 | } | |
140 | ||
141 | unsigned s390_del_running_cpu(CPUState *env) | |
142 | { | |
143 | if (env->halted == 0) { | |
144 | assert(s390_running_cpus >= 1); | |
145 | s390_running_cpus--; | |
146 | env->halted = 1; | |
147 | env->exception_index = EXCP_HLT; | |
148 | } | |
149 | return s390_running_cpus; | |
150 | } | |
151 | ||
8cb310e1 | 152 | /* PC hardware initialisation */ |
22486aa0 | 153 | static void s390_init(ram_addr_t my_ram_size, |
8cb310e1 AG |
154 | const char *boot_device, |
155 | const char *kernel_filename, | |
156 | const char *kernel_cmdline, | |
157 | const char *initrd_filename, | |
158 | const char *cpu_model) | |
159 | { | |
160 | CPUState *env = NULL; | |
ca3dbc27 AK |
161 | MemoryRegion *sysmem = get_system_memory(); |
162 | MemoryRegion *ram = g_new(MemoryRegion, 1); | |
8cb310e1 AG |
163 | ram_addr_t kernel_size = 0; |
164 | ram_addr_t initrd_offset; | |
165 | ram_addr_t initrd_size = 0; | |
22486aa0 | 166 | int shift = 0; |
8d5192ee | 167 | uint8_t *storage_keys; |
326384d5 AG |
168 | void *virtio_region; |
169 | target_phys_addr_t virtio_region_len; | |
170 | target_phys_addr_t virtio_region_start; | |
8cb310e1 AG |
171 | int i; |
172 | ||
22486aa0 CB |
173 | /* s390x ram size detection needs a 16bit multiplier + an increment. So |
174 | guests > 64GB can be specified in 2MB steps etc. */ | |
175 | while ((my_ram_size >> (20 + shift)) > 65535) { | |
176 | shift++; | |
177 | } | |
178 | my_ram_size = my_ram_size >> (20 + shift) << (20 + shift); | |
179 | ||
180 | /* lets propagate the changed ram size into the global variable. */ | |
181 | ram_size = my_ram_size; | |
e249651c | 182 | |
8cb310e1 | 183 | /* get a BUS */ |
22486aa0 | 184 | s390_bus = s390_virtio_bus_init(&my_ram_size); |
8cb310e1 AG |
185 | |
186 | /* allocate RAM */ | |
ca3dbc27 AK |
187 | memory_region_init_ram(ram, NULL, "s390.ram", my_ram_size); |
188 | memory_region_add_subregion(sysmem, 0, ram); | |
8cb310e1 | 189 | |
326384d5 AG |
190 | /* clear virtio region */ |
191 | virtio_region_len = my_ram_size - ram_size; | |
192 | virtio_region_start = ram_size; | |
193 | virtio_region = cpu_physical_memory_map(virtio_region_start, | |
194 | &virtio_region_len, true); | |
195 | memset(virtio_region, 0, virtio_region_len); | |
196 | cpu_physical_memory_unmap(virtio_region, virtio_region_len, 1, | |
197 | virtio_region_len); | |
198 | ||
8d5192ee | 199 | /* allocate storage keys */ |
7267c094 | 200 | storage_keys = g_malloc0(my_ram_size / TARGET_PAGE_SIZE); |
8d5192ee | 201 | |
8cb310e1 AG |
202 | /* init CPUs */ |
203 | if (cpu_model == NULL) { | |
204 | cpu_model = "host"; | |
205 | } | |
206 | ||
7267c094 | 207 | ipi_states = g_malloc(sizeof(CPUState *) * smp_cpus); |
8cb310e1 AG |
208 | |
209 | for (i = 0; i < smp_cpus; i++) { | |
210 | CPUState *tmp_env; | |
211 | ||
212 | tmp_env = cpu_init(cpu_model); | |
213 | if (!env) { | |
214 | env = tmp_env; | |
215 | } | |
216 | ipi_states[i] = tmp_env; | |
217 | tmp_env->halted = 1; | |
218 | tmp_env->exception_index = EXCP_HLT; | |
8d5192ee | 219 | tmp_env->storage_keys = storage_keys; |
8cb310e1 AG |
220 | } |
221 | ||
854e42f3 CB |
222 | /* One CPU has to run */ |
223 | s390_add_running_cpu(env); | |
8cb310e1 AG |
224 | |
225 | if (kernel_filename) { | |
226 | kernel_size = load_image(kernel_filename, qemu_get_ram_ptr(0)); | |
227 | ||
04bc74ed | 228 | if (lduw_be_phys(KERN_IMAGE_START) != 0x0dd0) { |
8cb310e1 AG |
229 | fprintf(stderr, "Specified image is not an s390 boot image\n"); |
230 | exit(1); | |
231 | } | |
232 | ||
8cb310e1 | 233 | env->psw.addr = KERN_IMAGE_START; |
0435d393 | 234 | env->psw.mask = 0x0000000180000000ULL; |
fe270d04 AG |
235 | } else { |
236 | ram_addr_t bios_size = 0; | |
237 | char *bios_filename; | |
238 | ||
239 | /* Load zipl bootloader */ | |
240 | if (bios_name == NULL) { | |
241 | bios_name = ZIPL_FILENAME; | |
242 | } | |
243 | ||
244 | bios_filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, bios_name); | |
245 | bios_size = load_image(bios_filename, qemu_get_ram_ptr(ZIPL_LOAD_ADDR)); | |
7267c094 | 246 | g_free(bios_filename); |
fe270d04 AG |
247 | |
248 | if ((long)bios_size < 0) { | |
249 | hw_error("could not load bootloader '%s'\n", bios_name); | |
250 | } | |
251 | ||
252 | if (bios_size > 4096) { | |
253 | hw_error("stage1 bootloader is > 4k\n"); | |
254 | } | |
255 | ||
256 | env->psw.addr = ZIPL_START; | |
257 | env->psw.mask = 0x0000000180000000ULL; | |
8cb310e1 AG |
258 | } |
259 | ||
260 | if (initrd_filename) { | |
261 | initrd_offset = INITRD_START; | |
262 | while (kernel_size + 0x100000 > initrd_offset) { | |
263 | initrd_offset += 0x100000; | |
264 | } | |
265 | initrd_size = load_image(initrd_filename, qemu_get_ram_ptr(initrd_offset)); | |
266 | ||
04bc74ed AG |
267 | stq_be_phys(INITRD_PARM_START, initrd_offset); |
268 | stq_be_phys(INITRD_PARM_SIZE, initrd_size); | |
8cb310e1 AG |
269 | } |
270 | ||
271 | if (kernel_cmdline) { | |
54f7b4a3 | 272 | cpu_physical_memory_write(KERN_PARM_AREA, kernel_cmdline, |
13449a6e | 273 | strlen(kernel_cmdline) + 1); |
8cb310e1 AG |
274 | } |
275 | ||
8cb310e1 AG |
276 | /* Create VirtIO network adapters */ |
277 | for(i = 0; i < nb_nics; i++) { | |
278 | NICInfo *nd = &nd_table[i]; | |
279 | DeviceState *dev; | |
280 | ||
281 | if (!nd->model) { | |
7267c094 | 282 | nd->model = g_strdup("virtio"); |
8cb310e1 AG |
283 | } |
284 | ||
285 | if (strcmp(nd->model, "virtio")) { | |
286 | fprintf(stderr, "S390 only supports VirtIO nics\n"); | |
287 | exit(1); | |
288 | } | |
289 | ||
290 | dev = qdev_create((BusState *)s390_bus, "virtio-net-s390"); | |
291 | qdev_set_nic_properties(dev, nd); | |
292 | qdev_init_nofail(dev); | |
293 | } | |
294 | ||
295 | /* Create VirtIO disk drives */ | |
296 | for(i = 0; i < MAX_BLK_DEVS; i++) { | |
297 | DriveInfo *dinfo; | |
298 | DeviceState *dev; | |
299 | ||
300 | dinfo = drive_get(IF_IDE, 0, i); | |
301 | if (!dinfo) { | |
302 | continue; | |
303 | } | |
304 | ||
305 | dev = qdev_create((BusState *)s390_bus, "virtio-blk-s390"); | |
18846dee | 306 | qdev_prop_set_drive_nofail(dev, "drive", dinfo->bdrv); |
8cb310e1 AG |
307 | qdev_init_nofail(dev); |
308 | } | |
309 | } | |
310 | ||
311 | static QEMUMachine s390_machine = { | |
312 | .name = "s390-virtio", | |
313 | .alias = "s390", | |
314 | .desc = "VirtIO based S390 machine", | |
315 | .init = s390_init, | |
986c5f78 GH |
316 | .no_serial = 1, |
317 | .no_parallel = 1, | |
cf708987 | 318 | .use_virtcon = 1, |
986c5f78 | 319 | .no_vga = 1, |
8cb310e1 AG |
320 | .max_cpus = 255, |
321 | .is_default = 1, | |
322 | }; | |
323 | ||
324 | static void s390_machine_init(void) | |
325 | { | |
326 | qemu_register_machine(&s390_machine); | |
327 | } | |
328 | ||
329 | machine_init(s390_machine_init); |