root / hw / spapr.c @ 9fdf0c29
History | View | Annotate | Download (9.9 kB)
1 |
/*
|
---|---|
2 |
* QEMU PowerPC pSeries Logical Partition (aka sPAPR) hardware System Emulator
|
3 |
*
|
4 |
* Copyright (c) 2004-2007 Fabrice Bellard
|
5 |
* Copyright (c) 2007 Jocelyn Mayer
|
6 |
* Copyright (c) 2010 David Gibson, IBM Corporation.
|
7 |
*
|
8 |
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
9 |
* of this software and associated documentation files (the "Software"), to deal
|
10 |
* in the Software without restriction, including without limitation the rights
|
11 |
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
12 |
* copies of the Software, and to permit persons to whom the Software is
|
13 |
* furnished to do so, subject to the following conditions:
|
14 |
*
|
15 |
* The above copyright notice and this permission notice shall be included in
|
16 |
* all copies or substantial portions of the Software.
|
17 |
*
|
18 |
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
19 |
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
20 |
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
21 |
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
22 |
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
23 |
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
24 |
* THE SOFTWARE.
|
25 |
*
|
26 |
*/
|
27 |
#include "sysemu.h" |
28 |
#include "qemu-char.h" |
29 |
#include "hw.h" |
30 |
#include "elf.h" |
31 |
|
32 |
#include "hw/boards.h" |
33 |
#include "hw/ppc.h" |
34 |
#include "hw/loader.h" |
35 |
|
36 |
#include "hw/spapr.h" |
37 |
|
38 |
#include <libfdt.h> |
39 |
|
40 |
#define KERNEL_LOAD_ADDR 0x00000000 |
41 |
#define INITRD_LOAD_ADDR 0x02800000 |
42 |
#define FDT_MAX_SIZE 0x10000 |
43 |
|
44 |
#define TIMEBASE_FREQ 512000000ULL |
45 |
|
46 |
#define MAX_CPUS 32 |
47 |
|
48 |
sPAPREnvironment *spapr; |
49 |
|
50 |
static void *spapr_create_fdt(int *fdt_size, ram_addr_t ramsize, |
51 |
const char *cpu_model, CPUState *envs[], |
52 |
sPAPREnvironment *spapr, |
53 |
target_phys_addr_t initrd_base, |
54 |
target_phys_addr_t initrd_size, |
55 |
const char *kernel_cmdline) |
56 |
{ |
57 |
void *fdt;
|
58 |
uint64_t mem_reg_property[] = { 0, cpu_to_be64(ramsize) };
|
59 |
uint32_t start_prop = cpu_to_be32(initrd_base); |
60 |
uint32_t end_prop = cpu_to_be32(initrd_base + initrd_size); |
61 |
int i;
|
62 |
char *modelname;
|
63 |
|
64 |
#define _FDT(exp) \
|
65 |
do { \
|
66 |
int ret = (exp); \
|
67 |
if (ret < 0) { \ |
68 |
fprintf(stderr, "qemu: error creating device tree: %s: %s\n", \
|
69 |
#exp, fdt_strerror(ret)); \
|
70 |
exit(1); \
|
71 |
} \ |
72 |
} while (0) |
73 |
|
74 |
fdt = qemu_mallocz(FDT_MAX_SIZE); |
75 |
_FDT((fdt_create(fdt, FDT_MAX_SIZE))); |
76 |
|
77 |
_FDT((fdt_finish_reservemap(fdt))); |
78 |
|
79 |
/* Root node */
|
80 |
_FDT((fdt_begin_node(fdt, "")));
|
81 |
_FDT((fdt_property_string(fdt, "device_type", "chrp"))); |
82 |
_FDT((fdt_property_string(fdt, "model", "qemu,emulated-pSeries-LPAR"))); |
83 |
|
84 |
_FDT((fdt_property_cell(fdt, "#address-cells", 0x2))); |
85 |
_FDT((fdt_property_cell(fdt, "#size-cells", 0x2))); |
86 |
|
87 |
/* /chosen */
|
88 |
_FDT((fdt_begin_node(fdt, "chosen")));
|
89 |
|
90 |
_FDT((fdt_property_string(fdt, "bootargs", kernel_cmdline)));
|
91 |
_FDT((fdt_property(fdt, "linux,initrd-start",
|
92 |
&start_prop, sizeof(start_prop))));
|
93 |
_FDT((fdt_property(fdt, "linux,initrd-end",
|
94 |
&end_prop, sizeof(end_prop))));
|
95 |
|
96 |
_FDT((fdt_end_node(fdt))); |
97 |
|
98 |
/* memory node */
|
99 |
_FDT((fdt_begin_node(fdt, "memory@0")));
|
100 |
|
101 |
_FDT((fdt_property_string(fdt, "device_type", "memory"))); |
102 |
_FDT((fdt_property(fdt, "reg",
|
103 |
mem_reg_property, sizeof(mem_reg_property))));
|
104 |
|
105 |
_FDT((fdt_end_node(fdt))); |
106 |
|
107 |
/* cpus */
|
108 |
_FDT((fdt_begin_node(fdt, "cpus")));
|
109 |
|
110 |
_FDT((fdt_property_cell(fdt, "#address-cells", 0x1))); |
111 |
_FDT((fdt_property_cell(fdt, "#size-cells", 0x0))); |
112 |
|
113 |
modelname = qemu_strdup(cpu_model); |
114 |
|
115 |
for (i = 0; i < strlen(modelname); i++) { |
116 |
modelname[i] = toupper(modelname[i]); |
117 |
} |
118 |
|
119 |
for (i = 0; i < smp_cpus; i++) { |
120 |
CPUState *env = envs[i]; |
121 |
char *nodename;
|
122 |
uint32_t segs[] = {cpu_to_be32(28), cpu_to_be32(40), |
123 |
0xffffffff, 0xffffffff}; |
124 |
|
125 |
if (asprintf(&nodename, "%s@%x", modelname, i) < 0) { |
126 |
fprintf(stderr, "Allocation failure\n");
|
127 |
exit(1);
|
128 |
} |
129 |
|
130 |
_FDT((fdt_begin_node(fdt, nodename))); |
131 |
|
132 |
free(nodename); |
133 |
|
134 |
_FDT((fdt_property_cell(fdt, "reg", i)));
|
135 |
_FDT((fdt_property_string(fdt, "device_type", "cpu"))); |
136 |
|
137 |
_FDT((fdt_property_cell(fdt, "cpu-version", env->spr[SPR_PVR])));
|
138 |
_FDT((fdt_property_cell(fdt, "dcache-block-size",
|
139 |
env->dcache_line_size))); |
140 |
_FDT((fdt_property_cell(fdt, "icache-block-size",
|
141 |
env->icache_line_size))); |
142 |
_FDT((fdt_property_cell(fdt, "timebase-frequency", TIMEBASE_FREQ)));
|
143 |
/* Hardcode CPU frequency for now. It's kind of arbitrary on
|
144 |
* full emu, for kvm we should copy it from the host */
|
145 |
_FDT((fdt_property_cell(fdt, "clock-frequency", 1000000000))); |
146 |
_FDT((fdt_property_cell(fdt, "ibm,slb-size", env->slb_nr)));
|
147 |
_FDT((fdt_property_string(fdt, "status", "okay"))); |
148 |
_FDT((fdt_property(fdt, "64-bit", NULL, 0))); |
149 |
|
150 |
if (envs[i]->mmu_model & POWERPC_MMU_1TSEG) {
|
151 |
_FDT((fdt_property(fdt, "ibm,processor-segment-sizes",
|
152 |
segs, sizeof(segs))));
|
153 |
} |
154 |
|
155 |
_FDT((fdt_end_node(fdt))); |
156 |
} |
157 |
|
158 |
qemu_free(modelname); |
159 |
|
160 |
_FDT((fdt_end_node(fdt))); |
161 |
|
162 |
_FDT((fdt_end_node(fdt))); /* close root node */
|
163 |
_FDT((fdt_finish(fdt))); |
164 |
|
165 |
*fdt_size = fdt_totalsize(fdt); |
166 |
|
167 |
return fdt;
|
168 |
} |
169 |
|
170 |
static uint64_t translate_kernel_address(void *opaque, uint64_t addr) |
171 |
{ |
172 |
return (addr & 0x0fffffff) + KERNEL_LOAD_ADDR; |
173 |
} |
174 |
|
175 |
static void emulate_spapr_hypercall(CPUState *env) |
176 |
{ |
177 |
env->gpr[3] = spapr_hypercall(env, env->gpr[3], &env->gpr[4]); |
178 |
} |
179 |
|
180 |
/* FIXME: hack until we implement the proper VIO console */
|
181 |
static target_ulong h_put_term_char(CPUState *env, sPAPREnvironment *spapr,
|
182 |
target_ulong opcode, target_ulong *args) |
183 |
{ |
184 |
uint8_t buf[16];
|
185 |
|
186 |
stq_p(buf, args[2]);
|
187 |
stq_p(buf + 8, args[3]); |
188 |
|
189 |
qemu_chr_write(serial_hds[0], buf, args[1]); |
190 |
|
191 |
return 0; |
192 |
} |
193 |
|
194 |
|
195 |
/* pSeries LPAR / sPAPR hardware init */
|
196 |
static void ppc_spapr_init(ram_addr_t ram_size, |
197 |
const char *boot_device, |
198 |
const char *kernel_filename, |
199 |
const char *kernel_cmdline, |
200 |
const char *initrd_filename, |
201 |
const char *cpu_model) |
202 |
{ |
203 |
CPUState *envs[MAX_CPUS]; |
204 |
void *fdt;
|
205 |
int i;
|
206 |
ram_addr_t ram_offset; |
207 |
target_phys_addr_t fdt_addr; |
208 |
uint32_t kernel_base, initrd_base; |
209 |
long kernel_size, initrd_size;
|
210 |
int fdt_size;
|
211 |
|
212 |
spapr = qemu_malloc(sizeof(*spapr));
|
213 |
cpu_ppc_hypercall = emulate_spapr_hypercall; |
214 |
|
215 |
/* We place the device tree just below either the top of RAM, or
|
216 |
* 2GB, so that it can be processed with 32-bit code if
|
217 |
* necessary */
|
218 |
fdt_addr = MIN(ram_size, 0x80000000) - FDT_MAX_SIZE;
|
219 |
|
220 |
/* init CPUs */
|
221 |
if (cpu_model == NULL) { |
222 |
cpu_model = "POWER7";
|
223 |
} |
224 |
for (i = 0; i < smp_cpus; i++) { |
225 |
CPUState *env = cpu_init(cpu_model); |
226 |
|
227 |
if (!env) {
|
228 |
fprintf(stderr, "Unable to find PowerPC CPU definition\n");
|
229 |
exit(1);
|
230 |
} |
231 |
/* Set time-base frequency to 512 MHz */
|
232 |
cpu_ppc_tb_init(env, TIMEBASE_FREQ); |
233 |
qemu_register_reset((QEMUResetHandler *)&cpu_reset, env); |
234 |
|
235 |
env->hreset_vector = 0x60;
|
236 |
env->hreset_excp_prefix = 0;
|
237 |
env->gpr[3] = i;
|
238 |
|
239 |
envs[i] = env; |
240 |
} |
241 |
|
242 |
/* allocate RAM */
|
243 |
ram_offset = qemu_ram_alloc(NULL, "ppc_spapr.ram", ram_size); |
244 |
cpu_register_physical_memory(0, ram_size, ram_offset);
|
245 |
|
246 |
spapr_register_hypercall(H_PUT_TERM_CHAR, h_put_term_char); |
247 |
|
248 |
if (kernel_filename) {
|
249 |
uint64_t lowaddr = 0;
|
250 |
|
251 |
kernel_base = KERNEL_LOAD_ADDR; |
252 |
|
253 |
kernel_size = load_elf(kernel_filename, translate_kernel_address, NULL,
|
254 |
NULL, &lowaddr, NULL, 1, ELF_MACHINE, 0); |
255 |
if (kernel_size < 0) { |
256 |
kernel_size = load_image_targphys(kernel_filename, kernel_base, |
257 |
ram_size - kernel_base); |
258 |
} |
259 |
if (kernel_size < 0) { |
260 |
fprintf(stderr, "qemu: could not load kernel '%s'\n",
|
261 |
kernel_filename); |
262 |
exit(1);
|
263 |
} |
264 |
|
265 |
/* load initrd */
|
266 |
if (initrd_filename) {
|
267 |
initrd_base = INITRD_LOAD_ADDR; |
268 |
initrd_size = load_image_targphys(initrd_filename, initrd_base, |
269 |
ram_size - initrd_base); |
270 |
if (initrd_size < 0) { |
271 |
fprintf(stderr, "qemu: could not load initial ram disk '%s'\n",
|
272 |
initrd_filename); |
273 |
exit(1);
|
274 |
} |
275 |
} else {
|
276 |
initrd_base = 0;
|
277 |
initrd_size = 0;
|
278 |
} |
279 |
|
280 |
} else {
|
281 |
fprintf(stderr, "pSeries machine needs -kernel for now");
|
282 |
exit(1);
|
283 |
} |
284 |
|
285 |
/* Prepare the device tree */
|
286 |
fdt = spapr_create_fdt(&fdt_size, ram_size, cpu_model, envs, spapr, |
287 |
initrd_base, initrd_size, kernel_cmdline); |
288 |
assert(fdt != NULL);
|
289 |
|
290 |
cpu_physical_memory_write(fdt_addr, fdt, fdt_size); |
291 |
|
292 |
qemu_free(fdt); |
293 |
|
294 |
envs[0]->gpr[3] = fdt_addr; |
295 |
envs[0]->gpr[5] = 0; |
296 |
envs[0]->hreset_vector = kernel_base;
|
297 |
} |
298 |
|
299 |
static QEMUMachine spapr_machine = {
|
300 |
.name = "pseries",
|
301 |
.desc = "pSeries Logical Partition (PAPR compliant)",
|
302 |
.init = ppc_spapr_init, |
303 |
.max_cpus = MAX_CPUS, |
304 |
.no_vga = 1,
|
305 |
.no_parallel = 1,
|
306 |
}; |
307 |
|
308 |
static void spapr_machine_init(void) |
309 |
{ |
310 |
qemu_register_machine(&spapr_machine); |
311 |
} |
312 |
|
313 |
machine_init(spapr_machine_init); |