4 * Copyright (c) 2010 David Gibson, IBM Corporation <dwg@au1.ibm.com>
5 * Based on the s390 virtio bus code:
6 * Copyright (c) 2009 Alexander Graf <agraf@suse.de>
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
23 #include "sysemu/sysemu.h"
24 #include "hw/boards.h"
25 #include "monitor/monitor.h"
26 #include "hw/loader.h"
28 #include "hw/sysbus.h"
29 #include "sysemu/kvm.h"
30 #include "sysemu/device_tree.h"
33 #include "hw/ppc/spapr.h"
34 #include "hw/ppc/spapr_vio.h"
35 #include "hw/ppc/xics.h"
39 #endif /* CONFIG_FDT */
41 /* #define DEBUG_SPAPR */
44 #define dprintf(fmt, ...) \
45 do { fprintf(stderr, fmt, ## __VA_ARGS__); } while (0)
47 #define dprintf(fmt, ...) \
51 static Property spapr_vio_props
[] = {
52 DEFINE_PROP_UINT32("irq", VIOsPAPRDevice
, irq
, 0), \
53 DEFINE_PROP_END_OF_LIST(),
56 static char *spapr_vio_get_dev_name(DeviceState
*qdev
)
58 VIOsPAPRDevice
*dev
= VIO_SPAPR_DEVICE(qdev
);
59 VIOsPAPRDeviceClass
*pc
= VIO_SPAPR_DEVICE_GET_CLASS(dev
);
62 /* Device tree style name device@reg */
63 name
= g_strdup_printf("%s@%x", pc
->dt_name
, dev
->reg
);
68 static void spapr_vio_bus_class_init(ObjectClass
*klass
, void *data
)
70 BusClass
*k
= BUS_CLASS(klass
);
72 k
->get_dev_path
= spapr_vio_get_dev_name
;
75 static const TypeInfo spapr_vio_bus_info
= {
76 .name
= TYPE_SPAPR_VIO_BUS
,
78 .class_init
= spapr_vio_bus_class_init
,
79 .instance_size
= sizeof(VIOsPAPRBus
),
82 VIOsPAPRDevice
*spapr_vio_find_by_reg(VIOsPAPRBus
*bus
, uint32_t reg
)
85 VIOsPAPRDevice
*dev
= NULL
;
87 QTAILQ_FOREACH(kid
, &bus
->bus
.children
, sibling
) {
88 dev
= (VIOsPAPRDevice
*)kid
->child
;
89 if (dev
->reg
== reg
) {
98 static int vio_make_devnode(VIOsPAPRDevice
*dev
,
101 VIOsPAPRDeviceClass
*pc
= VIO_SPAPR_DEVICE_GET_CLASS(dev
);
102 int vdevice_off
, node_off
, ret
;
105 vdevice_off
= fdt_path_offset(fdt
, "/vdevice");
106 if (vdevice_off
< 0) {
110 dt_name
= spapr_vio_get_dev_name(DEVICE(dev
));
111 node_off
= fdt_add_subnode(fdt
, vdevice_off
, dt_name
);
117 ret
= fdt_setprop_cell(fdt
, node_off
, "reg", dev
->reg
);
123 ret
= fdt_setprop_string(fdt
, node_off
, "device_type",
130 if (pc
->dt_compatible
) {
131 ret
= fdt_setprop_string(fdt
, node_off
, "compatible",
139 uint32_t ints_prop
[] = {cpu_to_be32(dev
->irq
), 0};
141 ret
= fdt_setprop(fdt
, node_off
, "interrupts", ints_prop
,
148 ret
= spapr_tcet_dma_dt(fdt
, node_off
, "ibm,my-dma-window", dev
->dma
);
154 ret
= (pc
->devnode
)(dev
, fdt
, node_off
);
162 #endif /* CONFIG_FDT */
167 static target_ulong
h_reg_crq(PowerPCCPU
*cpu
, sPAPREnvironment
*spapr
,
168 target_ulong opcode
, target_ulong
*args
)
170 target_ulong reg
= args
[0];
171 target_ulong queue_addr
= args
[1];
172 target_ulong queue_len
= args
[2];
173 VIOsPAPRDevice
*dev
= spapr_vio_find_by_reg(spapr
->vio_bus
, reg
);
176 hcall_dprintf("Unit 0x" TARGET_FMT_lx
" does not exist\n", reg
);
180 /* We can't grok a queue size bigger than 256M for now */
181 if (queue_len
< 0x1000 || queue_len
> 0x10000000) {
182 hcall_dprintf("Queue size too small or too big (0x" TARGET_FMT_lx
187 /* Check queue alignment */
188 if (queue_addr
& 0xfff) {
189 hcall_dprintf("Queue not aligned (0x" TARGET_FMT_lx
")\n", queue_addr
);
193 /* Check if device supports CRQs */
194 if (!dev
->crq
.SendFunc
) {
195 hcall_dprintf("Device does not support CRQ\n");
199 /* Already a queue ? */
200 if (dev
->crq
.qsize
) {
201 hcall_dprintf("CRQ already registered\n");
204 dev
->crq
.qladdr
= queue_addr
;
205 dev
->crq
.qsize
= queue_len
;
208 dprintf("CRQ for dev 0x" TARGET_FMT_lx
" registered at 0x"
209 TARGET_FMT_lx
"/0x" TARGET_FMT_lx
"\n",
210 reg
, queue_addr
, queue_len
);
214 static target_ulong
free_crq(VIOsPAPRDevice
*dev
)
220 dprintf("CRQ for dev 0x%" PRIx32
" freed\n", dev
->reg
);
225 static target_ulong
h_free_crq(PowerPCCPU
*cpu
, sPAPREnvironment
*spapr
,
226 target_ulong opcode
, target_ulong
*args
)
228 target_ulong reg
= args
[0];
229 VIOsPAPRDevice
*dev
= spapr_vio_find_by_reg(spapr
->vio_bus
, reg
);
232 hcall_dprintf("Unit 0x" TARGET_FMT_lx
" does not exist\n", reg
);
236 return free_crq(dev
);
239 static target_ulong
h_send_crq(PowerPCCPU
*cpu
, sPAPREnvironment
*spapr
,
240 target_ulong opcode
, target_ulong
*args
)
242 target_ulong reg
= args
[0];
243 target_ulong msg_hi
= args
[1];
244 target_ulong msg_lo
= args
[2];
245 VIOsPAPRDevice
*dev
= spapr_vio_find_by_reg(spapr
->vio_bus
, reg
);
246 uint64_t crq_mangle
[2];
249 hcall_dprintf("Unit 0x" TARGET_FMT_lx
" does not exist\n", reg
);
252 crq_mangle
[0] = cpu_to_be64(msg_hi
);
253 crq_mangle
[1] = cpu_to_be64(msg_lo
);
255 if (dev
->crq
.SendFunc
) {
256 return dev
->crq
.SendFunc(dev
, (uint8_t *)crq_mangle
);
262 static target_ulong
h_enable_crq(PowerPCCPU
*cpu
, sPAPREnvironment
*spapr
,
263 target_ulong opcode
, target_ulong
*args
)
265 target_ulong reg
= args
[0];
266 VIOsPAPRDevice
*dev
= spapr_vio_find_by_reg(spapr
->vio_bus
, reg
);
269 hcall_dprintf("Unit 0x" TARGET_FMT_lx
" does not exist\n", reg
);
276 /* Returns negative error, 0 success, or positive: queue full */
277 int spapr_vio_send_crq(VIOsPAPRDevice
*dev
, uint8_t *crq
)
282 if (!dev
->crq
.qsize
) {
283 fprintf(stderr
, "spapr_vio_send_creq on uninitialized queue\n");
287 /* Maybe do a fast path for KVM just writing to the pages */
288 rc
= spapr_vio_dma_read(dev
, dev
->crq
.qladdr
+ dev
->crq
.qnext
, &byte
, 1);
296 rc
= spapr_vio_dma_write(dev
, dev
->crq
.qladdr
+ dev
->crq
.qnext
+ 8,
304 rc
= spapr_vio_dma_write(dev
, dev
->crq
.qladdr
+ dev
->crq
.qnext
, crq
, 8);
309 dev
->crq
.qnext
= (dev
->crq
.qnext
+ 16) % dev
->crq
.qsize
;
311 if (dev
->signal_state
& 1) {
312 qemu_irq_pulse(spapr_vio_qirq(dev
));
318 /* "quiesce" handling */
320 static void spapr_vio_quiesce_one(VIOsPAPRDevice
*dev
)
323 spapr_tce_reset(dev
->dma
);
328 static void rtas_set_tce_bypass(sPAPREnvironment
*spapr
, uint32_t token
,
329 uint32_t nargs
, target_ulong args
,
330 uint32_t nret
, target_ulong rets
)
332 VIOsPAPRBus
*bus
= spapr
->vio_bus
;
334 uint32_t unit
, enable
;
337 rtas_st(rets
, 0, -3);
340 unit
= rtas_ld(args
, 0);
341 enable
= rtas_ld(args
, 1);
342 dev
= spapr_vio_find_by_reg(bus
, unit
);
344 rtas_st(rets
, 0, -3);
349 rtas_st(rets
, 0, -3);
353 spapr_tce_set_bypass(dev
->dma
, !!enable
);
358 static void rtas_quiesce(sPAPREnvironment
*spapr
, uint32_t token
,
359 uint32_t nargs
, target_ulong args
,
360 uint32_t nret
, target_ulong rets
)
362 VIOsPAPRBus
*bus
= spapr
->vio_bus
;
364 VIOsPAPRDevice
*dev
= NULL
;
367 rtas_st(rets
, 0, -3);
371 QTAILQ_FOREACH(kid
, &bus
->bus
.children
, sibling
) {
372 dev
= (VIOsPAPRDevice
*)kid
->child
;
373 spapr_vio_quiesce_one(dev
);
379 static VIOsPAPRDevice
*reg_conflict(VIOsPAPRDevice
*dev
)
381 VIOsPAPRBus
*bus
= DO_UPCAST(VIOsPAPRBus
, bus
, dev
->qdev
.parent_bus
);
383 VIOsPAPRDevice
*other
;
386 * Check for a device other than the given one which is already
387 * using the requested address. We have to open code this because
388 * the given dev might already be in the list.
390 QTAILQ_FOREACH(kid
, &bus
->bus
.children
, sibling
) {
391 other
= VIO_SPAPR_DEVICE(kid
->child
);
393 if (other
!= dev
&& other
->reg
== dev
->reg
) {
401 static void spapr_vio_busdev_reset(DeviceState
*qdev
)
403 VIOsPAPRDevice
*dev
= VIO_SPAPR_DEVICE(qdev
);
404 VIOsPAPRDeviceClass
*pc
= VIO_SPAPR_DEVICE_GET_CLASS(dev
);
406 /* Shut down the request queue and TCEs if necessary */
407 spapr_vio_quiesce_one(dev
);
409 dev
->signal_state
= 0;
416 static int spapr_vio_busdev_init(DeviceState
*qdev
)
418 VIOsPAPRDevice
*dev
= (VIOsPAPRDevice
*)qdev
;
419 VIOsPAPRDeviceClass
*pc
= VIO_SPAPR_DEVICE_GET_CLASS(dev
);
422 if (dev
->reg
!= -1) {
424 * Explicitly assigned address, just verify that no-one else
425 * is using it. other mechanism). We have to open code this
426 * rather than using spapr_vio_find_by_reg() because sdev
427 * itself is already in the list.
429 VIOsPAPRDevice
*other
= reg_conflict(dev
);
432 fprintf(stderr
, "vio: %s and %s devices conflict at address %#x\n",
433 object_get_typename(OBJECT(qdev
)),
434 object_get_typename(OBJECT(&other
->qdev
)),
439 /* Need to assign an address */
440 VIOsPAPRBus
*bus
= DO_UPCAST(VIOsPAPRBus
, bus
, dev
->qdev
.parent_bus
);
443 dev
->reg
= bus
->next_reg
++;
444 } while (reg_conflict(dev
));
447 /* Don't overwrite ids assigned on the command line */
449 id
= spapr_vio_get_dev_name(DEVICE(dev
));
453 dev
->irq
= spapr_allocate_msi(dev
->irq
);
458 if (pc
->rtce_window_size
) {
459 uint32_t liobn
= SPAPR_VIO_BASE_LIOBN
| dev
->reg
;
460 dev
->dma
= spapr_tce_new_dma_context(liobn
, pc
->rtce_window_size
);
463 return pc
->init(dev
);
466 static target_ulong
h_vio_signal(PowerPCCPU
*cpu
, sPAPREnvironment
*spapr
,
470 target_ulong reg
= args
[0];
471 target_ulong mode
= args
[1];
472 VIOsPAPRDevice
*dev
= spapr_vio_find_by_reg(spapr
->vio_bus
, reg
);
473 VIOsPAPRDeviceClass
*pc
;
479 pc
= VIO_SPAPR_DEVICE_GET_CLASS(dev
);
481 if (mode
& ~pc
->signal_mask
) {
485 dev
->signal_state
= mode
;
490 VIOsPAPRBus
*spapr_vio_bus_init(void)
496 /* Create bridge device */
497 dev
= qdev_create(NULL
, "spapr-vio-bridge");
498 qdev_init_nofail(dev
);
500 /* Create bus on bridge device */
502 qbus
= qbus_create(TYPE_SPAPR_VIO_BUS
, dev
, "spapr-vio");
503 bus
= DO_UPCAST(VIOsPAPRBus
, bus
, qbus
);
504 bus
->next_reg
= 0x71000000;
507 spapr_register_hypercall(H_VIO_SIGNAL
, h_vio_signal
);
510 spapr_register_hypercall(H_REG_CRQ
, h_reg_crq
);
511 spapr_register_hypercall(H_FREE_CRQ
, h_free_crq
);
512 spapr_register_hypercall(H_SEND_CRQ
, h_send_crq
);
513 spapr_register_hypercall(H_ENABLE_CRQ
, h_enable_crq
);
516 spapr_rtas_register("ibm,set-tce-bypass", rtas_set_tce_bypass
);
517 spapr_rtas_register("quiesce", rtas_quiesce
);
522 /* Represents sPAPR hcall VIO devices */
524 static int spapr_vio_bridge_init(SysBusDevice
*dev
)
530 static void spapr_vio_bridge_class_init(ObjectClass
*klass
, void *data
)
532 DeviceClass
*dc
= DEVICE_CLASS(klass
);
533 SysBusDeviceClass
*k
= SYS_BUS_DEVICE_CLASS(klass
);
535 k
->init
= spapr_vio_bridge_init
;
539 static const TypeInfo spapr_vio_bridge_info
= {
540 .name
= "spapr-vio-bridge",
541 .parent
= TYPE_SYS_BUS_DEVICE
,
542 .instance_size
= sizeof(SysBusDevice
),
543 .class_init
= spapr_vio_bridge_class_init
,
546 static void vio_spapr_device_class_init(ObjectClass
*klass
, void *data
)
548 DeviceClass
*k
= DEVICE_CLASS(klass
);
549 k
->init
= spapr_vio_busdev_init
;
550 k
->reset
= spapr_vio_busdev_reset
;
551 k
->bus_type
= TYPE_SPAPR_VIO_BUS
;
552 k
->props
= spapr_vio_props
;
555 static const TypeInfo spapr_vio_type_info
= {
556 .name
= TYPE_VIO_SPAPR_DEVICE
,
557 .parent
= TYPE_DEVICE
,
558 .instance_size
= sizeof(VIOsPAPRDevice
),
560 .class_size
= sizeof(VIOsPAPRDeviceClass
),
561 .class_init
= vio_spapr_device_class_init
,
564 static void spapr_vio_register_types(void)
566 type_register_static(&spapr_vio_bus_info
);
567 type_register_static(&spapr_vio_bridge_info
);
568 type_register_static(&spapr_vio_type_info
);
571 type_init(spapr_vio_register_types
)
574 static int compare_reg(const void *p1
, const void *p2
)
576 VIOsPAPRDevice
const *dev1
, *dev2
;
578 dev1
= (VIOsPAPRDevice
*)*(DeviceState
**)p1
;
579 dev2
= (VIOsPAPRDevice
*)*(DeviceState
**)p2
;
581 if (dev1
->reg
< dev2
->reg
) {
584 if (dev1
->reg
== dev2
->reg
) {
588 /* dev1->reg > dev2->reg */
592 int spapr_populate_vdevice(VIOsPAPRBus
*bus
, void *fdt
)
594 DeviceState
*qdev
, **qdevs
;
598 /* Count qdevs on the bus list */
600 QTAILQ_FOREACH(kid
, &bus
->bus
.children
, sibling
) {
604 /* Copy out into an array of pointers */
605 qdevs
= g_malloc(sizeof(qdev
) * num
);
607 QTAILQ_FOREACH(kid
, &bus
->bus
.children
, sibling
) {
608 qdevs
[num
++] = kid
->child
;
612 qsort(qdevs
, num
, sizeof(qdev
), compare_reg
);
614 /* Hack alert. Give the devices to libfdt in reverse order, we happen
615 * to know that will mean they are in forward order in the tree. */
616 for (i
= num
- 1; i
>= 0; i
--) {
617 VIOsPAPRDevice
*dev
= (VIOsPAPRDevice
*)(qdevs
[i
]);
619 ret
= vio_make_devnode(dev
, fdt
);
633 int spapr_populate_chosen_stdout(void *fdt
, VIOsPAPRBus
*bus
)
639 dev
= spapr_vty_get_default(bus
);
643 offset
= fdt_path_offset(fdt
, "/chosen");
648 name
= spapr_vio_get_dev_name(DEVICE(dev
));
649 path
= g_strdup_printf("/vdevice/%s", name
);
651 ret
= fdt_setprop_string(fdt
, offset
, "linux,stdout-path", path
);
658 #endif /* CONFIG_FDT */