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/>.
22 #include "qemu/osdep.h"
23 #include "qemu/error-report.h"
24 #include "qapi/error.h"
27 #include "sysemu/sysemu.h"
28 #include "hw/boards.h"
29 #include "hw/loader.h"
31 #include "hw/sysbus.h"
32 #include "sysemu/kvm.h"
33 #include "sysemu/device_tree.h"
36 #include "hw/ppc/spapr.h"
37 #include "hw/ppc/spapr_vio.h"
38 #include "hw/ppc/xics.h"
39 #include "hw/ppc/fdt.h"
44 static Property spapr_vio_props
[] = {
45 DEFINE_PROP_UINT32("irq", VIOsPAPRDevice
, irq
, 0), \
46 DEFINE_PROP_END_OF_LIST(),
49 static char *spapr_vio_get_dev_name(DeviceState
*qdev
)
51 VIOsPAPRDevice
*dev
= VIO_SPAPR_DEVICE(qdev
);
52 VIOsPAPRDeviceClass
*pc
= VIO_SPAPR_DEVICE_GET_CLASS(dev
);
54 /* Device tree style name device@reg */
55 return g_strdup_printf("%s@%x", pc
->dt_name
, dev
->reg
);
58 static void spapr_vio_bus_class_init(ObjectClass
*klass
, void *data
)
60 BusClass
*k
= BUS_CLASS(klass
);
62 k
->get_dev_path
= spapr_vio_get_dev_name
;
63 k
->get_fw_dev_path
= spapr_vio_get_dev_name
;
66 static const TypeInfo spapr_vio_bus_info
= {
67 .name
= TYPE_SPAPR_VIO_BUS
,
69 .class_init
= spapr_vio_bus_class_init
,
70 .instance_size
= sizeof(VIOsPAPRBus
),
73 VIOsPAPRDevice
*spapr_vio_find_by_reg(VIOsPAPRBus
*bus
, uint32_t reg
)
76 VIOsPAPRDevice
*dev
= NULL
;
78 QTAILQ_FOREACH(kid
, &bus
->bus
.children
, sibling
) {
79 dev
= (VIOsPAPRDevice
*)kid
->child
;
80 if (dev
->reg
== reg
) {
88 static int vio_make_devnode(VIOsPAPRDevice
*dev
,
91 VIOsPAPRDeviceClass
*pc
= VIO_SPAPR_DEVICE_GET_CLASS(dev
);
92 int vdevice_off
, node_off
, ret
;
95 vdevice_off
= fdt_path_offset(fdt
, "/vdevice");
96 if (vdevice_off
< 0) {
100 dt_name
= spapr_vio_get_dev_name(DEVICE(dev
));
101 node_off
= fdt_add_subnode(fdt
, vdevice_off
, dt_name
);
107 ret
= fdt_setprop_cell(fdt
, node_off
, "reg", dev
->reg
);
113 ret
= fdt_setprop_string(fdt
, node_off
, "device_type",
120 if (pc
->dt_compatible
) {
121 ret
= fdt_setprop_string(fdt
, node_off
, "compatible",
129 uint32_t ints_prop
[] = {cpu_to_be32(dev
->irq
), 0};
131 ret
= fdt_setprop(fdt
, node_off
, "interrupts", ints_prop
,
138 ret
= spapr_tcet_dma_dt(fdt
, node_off
, "ibm,my-dma-window", dev
->tcet
);
144 ret
= (pc
->devnode
)(dev
, fdt
, node_off
);
156 static target_ulong
h_reg_crq(PowerPCCPU
*cpu
, sPAPRMachineState
*spapr
,
157 target_ulong opcode
, target_ulong
*args
)
159 target_ulong reg
= args
[0];
160 target_ulong queue_addr
= args
[1];
161 target_ulong queue_len
= args
[2];
162 VIOsPAPRDevice
*dev
= spapr_vio_find_by_reg(spapr
->vio_bus
, reg
);
165 hcall_dprintf("Unit 0x" TARGET_FMT_lx
" does not exist\n", reg
);
169 /* We can't grok a queue size bigger than 256M for now */
170 if (queue_len
< 0x1000 || queue_len
> 0x10000000) {
171 hcall_dprintf("Queue size too small or too big (0x" TARGET_FMT_lx
176 /* Check queue alignment */
177 if (queue_addr
& 0xfff) {
178 hcall_dprintf("Queue not aligned (0x" TARGET_FMT_lx
")\n", queue_addr
);
182 /* Check if device supports CRQs */
183 if (!dev
->crq
.SendFunc
) {
184 hcall_dprintf("Device does not support CRQ\n");
188 /* Already a queue ? */
189 if (dev
->crq
.qsize
) {
190 hcall_dprintf("CRQ already registered\n");
193 dev
->crq
.qladdr
= queue_addr
;
194 dev
->crq
.qsize
= queue_len
;
197 trace_spapr_vio_h_reg_crq(reg
, queue_addr
, queue_len
);
201 static target_ulong
free_crq(VIOsPAPRDevice
*dev
)
207 trace_spapr_vio_free_crq(dev
->reg
);
212 static target_ulong
h_free_crq(PowerPCCPU
*cpu
, sPAPRMachineState
*spapr
,
213 target_ulong opcode
, target_ulong
*args
)
215 target_ulong reg
= args
[0];
216 VIOsPAPRDevice
*dev
= spapr_vio_find_by_reg(spapr
->vio_bus
, reg
);
219 hcall_dprintf("Unit 0x" TARGET_FMT_lx
" does not exist\n", reg
);
223 return free_crq(dev
);
226 static target_ulong
h_send_crq(PowerPCCPU
*cpu
, sPAPRMachineState
*spapr
,
227 target_ulong opcode
, target_ulong
*args
)
229 target_ulong reg
= args
[0];
230 target_ulong msg_hi
= args
[1];
231 target_ulong msg_lo
= args
[2];
232 VIOsPAPRDevice
*dev
= spapr_vio_find_by_reg(spapr
->vio_bus
, reg
);
233 uint64_t crq_mangle
[2];
236 hcall_dprintf("Unit 0x" TARGET_FMT_lx
" does not exist\n", reg
);
239 crq_mangle
[0] = cpu_to_be64(msg_hi
);
240 crq_mangle
[1] = cpu_to_be64(msg_lo
);
242 if (dev
->crq
.SendFunc
) {
243 return dev
->crq
.SendFunc(dev
, (uint8_t *)crq_mangle
);
249 static target_ulong
h_enable_crq(PowerPCCPU
*cpu
, sPAPRMachineState
*spapr
,
250 target_ulong opcode
, target_ulong
*args
)
252 target_ulong reg
= args
[0];
253 VIOsPAPRDevice
*dev
= spapr_vio_find_by_reg(spapr
->vio_bus
, reg
);
256 hcall_dprintf("Unit 0x" TARGET_FMT_lx
" does not exist\n", reg
);
263 /* Returns negative error, 0 success, or positive: queue full */
264 int spapr_vio_send_crq(VIOsPAPRDevice
*dev
, uint8_t *crq
)
269 if (!dev
->crq
.qsize
) {
270 error_report("spapr_vio_send_creq on uninitialized queue");
274 /* Maybe do a fast path for KVM just writing to the pages */
275 rc
= spapr_vio_dma_read(dev
, dev
->crq
.qladdr
+ dev
->crq
.qnext
, &byte
, 1);
283 rc
= spapr_vio_dma_write(dev
, dev
->crq
.qladdr
+ dev
->crq
.qnext
+ 8,
291 rc
= spapr_vio_dma_write(dev
, dev
->crq
.qladdr
+ dev
->crq
.qnext
, crq
, 8);
296 dev
->crq
.qnext
= (dev
->crq
.qnext
+ 16) % dev
->crq
.qsize
;
298 if (dev
->signal_state
& 1) {
299 qemu_irq_pulse(spapr_vio_qirq(dev
));
305 /* "quiesce" handling */
307 static void spapr_vio_quiesce_one(VIOsPAPRDevice
*dev
)
310 device_reset(DEVICE(dev
->tcet
));
315 void spapr_vio_set_bypass(VIOsPAPRDevice
*dev
, bool bypass
)
321 memory_region_set_enabled(&dev
->mrbypass
, bypass
);
322 memory_region_set_enabled(spapr_tce_get_iommu(dev
->tcet
), !bypass
);
324 dev
->tcet
->bypass
= bypass
;
327 static void rtas_set_tce_bypass(PowerPCCPU
*cpu
, sPAPRMachineState
*spapr
,
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, RTAS_OUT_PARAM_ERROR
);
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, RTAS_OUT_PARAM_ERROR
);
349 rtas_st(rets
, 0, RTAS_OUT_PARAM_ERROR
);
353 spapr_vio_set_bypass(dev
, !!enable
);
355 rtas_st(rets
, 0, RTAS_OUT_SUCCESS
);
358 static void rtas_quiesce(PowerPCCPU
*cpu
, sPAPRMachineState
*spapr
,
360 uint32_t nargs
, target_ulong args
,
361 uint32_t nret
, target_ulong rets
)
363 VIOsPAPRBus
*bus
= spapr
->vio_bus
;
365 VIOsPAPRDevice
*dev
= NULL
;
368 rtas_st(rets
, 0, RTAS_OUT_PARAM_ERROR
);
372 QTAILQ_FOREACH(kid
, &bus
->bus
.children
, sibling
) {
373 dev
= (VIOsPAPRDevice
*)kid
->child
;
374 spapr_vio_quiesce_one(dev
);
377 rtas_st(rets
, 0, RTAS_OUT_SUCCESS
);
380 static VIOsPAPRDevice
*reg_conflict(VIOsPAPRDevice
*dev
)
382 VIOsPAPRBus
*bus
= SPAPR_VIO_BUS(dev
->qdev
.parent_bus
);
384 VIOsPAPRDevice
*other
;
387 * Check for a device other than the given one which is already
388 * using the requested address. We have to open code this because
389 * the given dev might already be in the list.
391 QTAILQ_FOREACH(kid
, &bus
->bus
.children
, sibling
) {
392 other
= VIO_SPAPR_DEVICE(kid
->child
);
394 if (other
!= dev
&& other
->reg
== dev
->reg
) {
402 static void spapr_vio_busdev_reset(DeviceState
*qdev
)
404 VIOsPAPRDevice
*dev
= VIO_SPAPR_DEVICE(qdev
);
405 VIOsPAPRDeviceClass
*pc
= VIO_SPAPR_DEVICE_GET_CLASS(dev
);
407 /* Shut down the request queue and TCEs if necessary */
408 spapr_vio_quiesce_one(dev
);
410 dev
->signal_state
= 0;
412 spapr_vio_set_bypass(dev
, false);
418 static void spapr_vio_busdev_realize(DeviceState
*qdev
, Error
**errp
)
420 sPAPRMachineState
*spapr
= SPAPR_MACHINE(qdev_get_machine());
421 VIOsPAPRDevice
*dev
= (VIOsPAPRDevice
*)qdev
;
422 VIOsPAPRDeviceClass
*pc
= VIO_SPAPR_DEVICE_GET_CLASS(dev
);
424 Error
*local_err
= NULL
;
426 if (dev
->reg
!= -1) {
428 * Explicitly assigned address, just verify that no-one else
429 * is using it. other mechanism). We have to open code this
430 * rather than using spapr_vio_find_by_reg() because sdev
431 * itself is already in the list.
433 VIOsPAPRDevice
*other
= reg_conflict(dev
);
436 error_setg(errp
, "%s and %s devices conflict at address %#x",
437 object_get_typename(OBJECT(qdev
)),
438 object_get_typename(OBJECT(&other
->qdev
)),
443 /* Need to assign an address */
444 VIOsPAPRBus
*bus
= SPAPR_VIO_BUS(dev
->qdev
.parent_bus
);
447 dev
->reg
= bus
->next_reg
++;
448 } while (reg_conflict(dev
));
451 /* Don't overwrite ids assigned on the command line */
453 id
= spapr_vio_get_dev_name(DEVICE(dev
));
457 dev
->irq
= spapr_ics_alloc(spapr
->ics
, dev
->irq
, false, &local_err
);
459 error_propagate(errp
, local_err
);
463 if (pc
->rtce_window_size
) {
464 uint32_t liobn
= SPAPR_VIO_LIOBN(dev
->reg
);
466 memory_region_init(&dev
->mrroot
, OBJECT(dev
), "iommu-spapr-root",
468 memory_region_init_alias(&dev
->mrbypass
, OBJECT(dev
),
469 "iommu-spapr-bypass", get_system_memory(),
471 memory_region_add_subregion_overlap(&dev
->mrroot
, 0, &dev
->mrbypass
, 1);
472 address_space_init(&dev
->as
, &dev
->mrroot
, qdev
->id
);
474 dev
->tcet
= spapr_tce_new_table(qdev
, liobn
);
475 spapr_tce_table_enable(dev
->tcet
, SPAPR_TCE_PAGE_SHIFT
, 0,
476 pc
->rtce_window_size
>> SPAPR_TCE_PAGE_SHIFT
);
477 dev
->tcet
->vdev
= dev
;
478 memory_region_add_subregion_overlap(&dev
->mrroot
, 0,
479 spapr_tce_get_iommu(dev
->tcet
), 2);
482 pc
->realize(dev
, errp
);
485 static target_ulong
h_vio_signal(PowerPCCPU
*cpu
, sPAPRMachineState
*spapr
,
489 target_ulong reg
= args
[0];
490 target_ulong mode
= args
[1];
491 VIOsPAPRDevice
*dev
= spapr_vio_find_by_reg(spapr
->vio_bus
, reg
);
492 VIOsPAPRDeviceClass
*pc
;
498 pc
= VIO_SPAPR_DEVICE_GET_CLASS(dev
);
500 if (mode
& ~pc
->signal_mask
) {
504 dev
->signal_state
= mode
;
509 VIOsPAPRBus
*spapr_vio_bus_init(void)
515 /* Create bridge device */
516 dev
= qdev_create(NULL
, TYPE_SPAPR_VIO_BRIDGE
);
517 qdev_init_nofail(dev
);
519 /* Create bus on bridge device */
520 qbus
= qbus_create(TYPE_SPAPR_VIO_BUS
, dev
, "spapr-vio");
521 bus
= SPAPR_VIO_BUS(qbus
);
522 bus
->next_reg
= 0x71000000;
525 spapr_register_hypercall(H_VIO_SIGNAL
, h_vio_signal
);
528 spapr_register_hypercall(H_REG_CRQ
, h_reg_crq
);
529 spapr_register_hypercall(H_FREE_CRQ
, h_free_crq
);
530 spapr_register_hypercall(H_SEND_CRQ
, h_send_crq
);
531 spapr_register_hypercall(H_ENABLE_CRQ
, h_enable_crq
);
534 spapr_rtas_register(RTAS_IBM_SET_TCE_BYPASS
, "ibm,set-tce-bypass",
535 rtas_set_tce_bypass
);
536 spapr_rtas_register(RTAS_QUIESCE
, "quiesce", rtas_quiesce
);
541 static void spapr_vio_bridge_class_init(ObjectClass
*klass
, void *data
)
543 DeviceClass
*dc
= DEVICE_CLASS(klass
);
545 dc
->fw_name
= "vdevice";
548 static const TypeInfo spapr_vio_bridge_info
= {
549 .name
= TYPE_SPAPR_VIO_BRIDGE
,
550 .parent
= TYPE_SYS_BUS_DEVICE
,
551 .class_init
= spapr_vio_bridge_class_init
,
554 const VMStateDescription vmstate_spapr_vio
= {
557 .minimum_version_id
= 1,
558 .fields
= (VMStateField
[]) {
560 VMSTATE_UINT32_EQUAL(reg
, VIOsPAPRDevice
, NULL
),
561 VMSTATE_UINT32_EQUAL(irq
, VIOsPAPRDevice
, NULL
),
563 /* General VIO device state */
564 VMSTATE_UINT64(signal_state
, VIOsPAPRDevice
),
565 VMSTATE_UINT64(crq
.qladdr
, VIOsPAPRDevice
),
566 VMSTATE_UINT32(crq
.qsize
, VIOsPAPRDevice
),
567 VMSTATE_UINT32(crq
.qnext
, VIOsPAPRDevice
),
569 VMSTATE_END_OF_LIST()
573 static void vio_spapr_device_class_init(ObjectClass
*klass
, void *data
)
575 DeviceClass
*k
= DEVICE_CLASS(klass
);
576 k
->realize
= spapr_vio_busdev_realize
;
577 k
->reset
= spapr_vio_busdev_reset
;
578 k
->bus_type
= TYPE_SPAPR_VIO_BUS
;
579 k
->props
= spapr_vio_props
;
582 static const TypeInfo spapr_vio_type_info
= {
583 .name
= TYPE_VIO_SPAPR_DEVICE
,
584 .parent
= TYPE_DEVICE
,
585 .instance_size
= sizeof(VIOsPAPRDevice
),
587 .class_size
= sizeof(VIOsPAPRDeviceClass
),
588 .class_init
= vio_spapr_device_class_init
,
591 static void spapr_vio_register_types(void)
593 type_register_static(&spapr_vio_bus_info
);
594 type_register_static(&spapr_vio_bridge_info
);
595 type_register_static(&spapr_vio_type_info
);
598 type_init(spapr_vio_register_types
)
600 static int compare_reg(const void *p1
, const void *p2
)
602 VIOsPAPRDevice
const *dev1
, *dev2
;
604 dev1
= (VIOsPAPRDevice
*)*(DeviceState
**)p1
;
605 dev2
= (VIOsPAPRDevice
*)*(DeviceState
**)p2
;
607 if (dev1
->reg
< dev2
->reg
) {
610 if (dev1
->reg
== dev2
->reg
) {
614 /* dev1->reg > dev2->reg */
618 void spapr_dt_vdevice(VIOsPAPRBus
*bus
, void *fdt
)
620 DeviceState
*qdev
, **qdevs
;
625 _FDT(node
= fdt_add_subnode(fdt
, 0, "vdevice"));
627 _FDT(fdt_setprop_string(fdt
, node
, "device_type", "vdevice"));
628 _FDT(fdt_setprop_string(fdt
, node
, "compatible", "IBM,vdevice"));
629 _FDT(fdt_setprop_cell(fdt
, node
, "#address-cells", 1));
630 _FDT(fdt_setprop_cell(fdt
, node
, "#size-cells", 0));
631 _FDT(fdt_setprop_cell(fdt
, node
, "#interrupt-cells", 2));
632 _FDT(fdt_setprop(fdt
, node
, "interrupt-controller", NULL
, 0));
634 /* Count qdevs on the bus list */
636 QTAILQ_FOREACH(kid
, &bus
->bus
.children
, sibling
) {
640 /* Copy out into an array of pointers */
641 qdevs
= g_malloc(sizeof(qdev
) * num
);
643 QTAILQ_FOREACH(kid
, &bus
->bus
.children
, sibling
) {
644 qdevs
[num
++] = kid
->child
;
648 qsort(qdevs
, num
, sizeof(qdev
), compare_reg
);
650 /* Hack alert. Give the devices to libfdt in reverse order, we happen
651 * to know that will mean they are in forward order in the tree. */
652 for (i
= num
- 1; i
>= 0; i
--) {
653 VIOsPAPRDevice
*dev
= (VIOsPAPRDevice
*)(qdevs
[i
]);
654 VIOsPAPRDeviceClass
*vdc
= VIO_SPAPR_DEVICE_GET_CLASS(dev
);
656 ret
= vio_make_devnode(dev
, fdt
);
658 error_report("Couldn't create device node /vdevice/%s@%"PRIx32
,
659 vdc
->dt_name
, dev
->reg
);
667 gchar
*spapr_vio_stdout_path(VIOsPAPRBus
*bus
)
672 dev
= spapr_vty_get_default(bus
);
677 name
= spapr_vio_get_dev_name(DEVICE(dev
));
678 path
= g_strdup_printf("/vdevice/%s", name
);