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"
43 static Property spapr_vio_props
[] = {
44 DEFINE_PROP_UINT32("irq", VIOsPAPRDevice
, irq
, 0), \
45 DEFINE_PROP_END_OF_LIST(),
48 static char *spapr_vio_get_dev_name(DeviceState
*qdev
)
50 VIOsPAPRDevice
*dev
= VIO_SPAPR_DEVICE(qdev
);
51 VIOsPAPRDeviceClass
*pc
= VIO_SPAPR_DEVICE_GET_CLASS(dev
);
53 /* Device tree style name device@reg */
54 return g_strdup_printf("%s@%x", pc
->dt_name
, dev
->reg
);
57 static void spapr_vio_bus_class_init(ObjectClass
*klass
, void *data
)
59 BusClass
*k
= BUS_CLASS(klass
);
61 k
->get_dev_path
= spapr_vio_get_dev_name
;
62 k
->get_fw_dev_path
= spapr_vio_get_dev_name
;
65 static const TypeInfo spapr_vio_bus_info
= {
66 .name
= TYPE_SPAPR_VIO_BUS
,
68 .class_init
= spapr_vio_bus_class_init
,
69 .instance_size
= sizeof(VIOsPAPRBus
),
72 VIOsPAPRDevice
*spapr_vio_find_by_reg(VIOsPAPRBus
*bus
, uint32_t reg
)
75 VIOsPAPRDevice
*dev
= NULL
;
77 QTAILQ_FOREACH(kid
, &bus
->bus
.children
, sibling
) {
78 dev
= (VIOsPAPRDevice
*)kid
->child
;
79 if (dev
->reg
== reg
) {
87 static int vio_make_devnode(VIOsPAPRDevice
*dev
,
90 VIOsPAPRDeviceClass
*pc
= VIO_SPAPR_DEVICE_GET_CLASS(dev
);
91 int vdevice_off
, node_off
, ret
;
94 vdevice_off
= fdt_path_offset(fdt
, "/vdevice");
95 if (vdevice_off
< 0) {
99 dt_name
= spapr_vio_get_dev_name(DEVICE(dev
));
100 node_off
= fdt_add_subnode(fdt
, vdevice_off
, dt_name
);
106 ret
= fdt_setprop_cell(fdt
, node_off
, "reg", dev
->reg
);
112 ret
= fdt_setprop_string(fdt
, node_off
, "device_type",
119 if (pc
->dt_compatible
) {
120 ret
= fdt_setprop_string(fdt
, node_off
, "compatible",
128 uint32_t ints_prop
[] = {cpu_to_be32(dev
->irq
), 0};
130 ret
= fdt_setprop(fdt
, node_off
, "interrupts", ints_prop
,
137 ret
= spapr_tcet_dma_dt(fdt
, node_off
, "ibm,my-dma-window", dev
->tcet
);
143 ret
= (pc
->devnode
)(dev
, fdt
, node_off
);
155 static target_ulong
h_reg_crq(PowerPCCPU
*cpu
, sPAPRMachineState
*spapr
,
156 target_ulong opcode
, target_ulong
*args
)
158 target_ulong reg
= args
[0];
159 target_ulong queue_addr
= args
[1];
160 target_ulong queue_len
= args
[2];
161 VIOsPAPRDevice
*dev
= spapr_vio_find_by_reg(spapr
->vio_bus
, reg
);
164 hcall_dprintf("Unit 0x" TARGET_FMT_lx
" does not exist\n", reg
);
168 /* We can't grok a queue size bigger than 256M for now */
169 if (queue_len
< 0x1000 || queue_len
> 0x10000000) {
170 hcall_dprintf("Queue size too small or too big (0x" TARGET_FMT_lx
175 /* Check queue alignment */
176 if (queue_addr
& 0xfff) {
177 hcall_dprintf("Queue not aligned (0x" TARGET_FMT_lx
")\n", queue_addr
);
181 /* Check if device supports CRQs */
182 if (!dev
->crq
.SendFunc
) {
183 hcall_dprintf("Device does not support CRQ\n");
187 /* Already a queue ? */
188 if (dev
->crq
.qsize
) {
189 hcall_dprintf("CRQ already registered\n");
192 dev
->crq
.qladdr
= queue_addr
;
193 dev
->crq
.qsize
= queue_len
;
196 trace_spapr_vio_h_reg_crq(reg
, queue_addr
, queue_len
);
200 static target_ulong
free_crq(VIOsPAPRDevice
*dev
)
206 trace_spapr_vio_free_crq(dev
->reg
);
211 static target_ulong
h_free_crq(PowerPCCPU
*cpu
, sPAPRMachineState
*spapr
,
212 target_ulong opcode
, target_ulong
*args
)
214 target_ulong reg
= args
[0];
215 VIOsPAPRDevice
*dev
= spapr_vio_find_by_reg(spapr
->vio_bus
, reg
);
218 hcall_dprintf("Unit 0x" TARGET_FMT_lx
" does not exist\n", reg
);
222 return free_crq(dev
);
225 static target_ulong
h_send_crq(PowerPCCPU
*cpu
, sPAPRMachineState
*spapr
,
226 target_ulong opcode
, target_ulong
*args
)
228 target_ulong reg
= args
[0];
229 target_ulong msg_hi
= args
[1];
230 target_ulong msg_lo
= args
[2];
231 VIOsPAPRDevice
*dev
= spapr_vio_find_by_reg(spapr
->vio_bus
, reg
);
232 uint64_t crq_mangle
[2];
235 hcall_dprintf("Unit 0x" TARGET_FMT_lx
" does not exist\n", reg
);
238 crq_mangle
[0] = cpu_to_be64(msg_hi
);
239 crq_mangle
[1] = cpu_to_be64(msg_lo
);
241 if (dev
->crq
.SendFunc
) {
242 return dev
->crq
.SendFunc(dev
, (uint8_t *)crq_mangle
);
248 static target_ulong
h_enable_crq(PowerPCCPU
*cpu
, sPAPRMachineState
*spapr
,
249 target_ulong opcode
, target_ulong
*args
)
251 target_ulong reg
= args
[0];
252 VIOsPAPRDevice
*dev
= spapr_vio_find_by_reg(spapr
->vio_bus
, reg
);
255 hcall_dprintf("Unit 0x" TARGET_FMT_lx
" does not exist\n", reg
);
262 /* Returns negative error, 0 success, or positive: queue full */
263 int spapr_vio_send_crq(VIOsPAPRDevice
*dev
, uint8_t *crq
)
268 if (!dev
->crq
.qsize
) {
269 error_report("spapr_vio_send_creq on uninitialized queue");
273 /* Maybe do a fast path for KVM just writing to the pages */
274 rc
= spapr_vio_dma_read(dev
, dev
->crq
.qladdr
+ dev
->crq
.qnext
, &byte
, 1);
282 rc
= spapr_vio_dma_write(dev
, dev
->crq
.qladdr
+ dev
->crq
.qnext
+ 8,
290 rc
= spapr_vio_dma_write(dev
, dev
->crq
.qladdr
+ dev
->crq
.qnext
, crq
, 8);
295 dev
->crq
.qnext
= (dev
->crq
.qnext
+ 16) % dev
->crq
.qsize
;
297 if (dev
->signal_state
& 1) {
298 qemu_irq_pulse(spapr_vio_qirq(dev
));
304 /* "quiesce" handling */
306 static void spapr_vio_quiesce_one(VIOsPAPRDevice
*dev
)
309 device_reset(DEVICE(dev
->tcet
));
314 void spapr_vio_set_bypass(VIOsPAPRDevice
*dev
, bool bypass
)
320 memory_region_set_enabled(&dev
->mrbypass
, bypass
);
321 memory_region_set_enabled(spapr_tce_get_iommu(dev
->tcet
), !bypass
);
323 dev
->tcet
->bypass
= bypass
;
326 static void rtas_set_tce_bypass(PowerPCCPU
*cpu
, sPAPRMachineState
*spapr
,
328 uint32_t nargs
, target_ulong args
,
329 uint32_t nret
, target_ulong rets
)
331 VIOsPAPRBus
*bus
= spapr
->vio_bus
;
333 uint32_t unit
, enable
;
336 rtas_st(rets
, 0, RTAS_OUT_PARAM_ERROR
);
339 unit
= rtas_ld(args
, 0);
340 enable
= rtas_ld(args
, 1);
341 dev
= spapr_vio_find_by_reg(bus
, unit
);
343 rtas_st(rets
, 0, RTAS_OUT_PARAM_ERROR
);
348 rtas_st(rets
, 0, RTAS_OUT_PARAM_ERROR
);
352 spapr_vio_set_bypass(dev
, !!enable
);
354 rtas_st(rets
, 0, RTAS_OUT_SUCCESS
);
357 static void rtas_quiesce(PowerPCCPU
*cpu
, sPAPRMachineState
*spapr
,
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, RTAS_OUT_PARAM_ERROR
);
371 QTAILQ_FOREACH(kid
, &bus
->bus
.children
, sibling
) {
372 dev
= (VIOsPAPRDevice
*)kid
->child
;
373 spapr_vio_quiesce_one(dev
);
376 rtas_st(rets
, 0, RTAS_OUT_SUCCESS
);
379 static VIOsPAPRDevice
*reg_conflict(VIOsPAPRDevice
*dev
)
381 VIOsPAPRBus
*bus
= SPAPR_VIO_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;
411 spapr_vio_set_bypass(dev
, false);
417 static void spapr_vio_busdev_realize(DeviceState
*qdev
, Error
**errp
)
419 sPAPRMachineState
*spapr
= SPAPR_MACHINE(qdev_get_machine());
420 VIOsPAPRDevice
*dev
= (VIOsPAPRDevice
*)qdev
;
421 VIOsPAPRDeviceClass
*pc
= VIO_SPAPR_DEVICE_GET_CLASS(dev
);
423 Error
*local_err
= NULL
;
425 if (dev
->reg
!= -1) {
427 * Explicitly assigned address, just verify that no-one else
428 * is using it. other mechanism). We have to open code this
429 * rather than using spapr_vio_find_by_reg() because sdev
430 * itself is already in the list.
432 VIOsPAPRDevice
*other
= reg_conflict(dev
);
435 error_setg(errp
, "%s and %s devices conflict at address %#x",
436 object_get_typename(OBJECT(qdev
)),
437 object_get_typename(OBJECT(&other
->qdev
)),
442 /* Need to assign an address */
443 VIOsPAPRBus
*bus
= SPAPR_VIO_BUS(dev
->qdev
.parent_bus
);
446 dev
->reg
= bus
->next_reg
++;
447 } while (reg_conflict(dev
));
450 /* Don't overwrite ids assigned on the command line */
452 id
= spapr_vio_get_dev_name(DEVICE(dev
));
456 dev
->irq
= xics_spapr_alloc(spapr
->xics
, 0, dev
->irq
, false, &local_err
);
458 error_propagate(errp
, local_err
);
462 if (pc
->rtce_window_size
) {
463 uint32_t liobn
= SPAPR_VIO_LIOBN(dev
->reg
);
465 memory_region_init(&dev
->mrroot
, OBJECT(dev
), "iommu-spapr-root",
467 memory_region_init_alias(&dev
->mrbypass
, OBJECT(dev
),
468 "iommu-spapr-bypass", get_system_memory(),
470 memory_region_add_subregion_overlap(&dev
->mrroot
, 0, &dev
->mrbypass
, 1);
471 address_space_init(&dev
->as
, &dev
->mrroot
, qdev
->id
);
473 dev
->tcet
= spapr_tce_new_table(qdev
, liobn
);
474 spapr_tce_table_enable(dev
->tcet
, SPAPR_TCE_PAGE_SHIFT
, 0,
475 pc
->rtce_window_size
>> SPAPR_TCE_PAGE_SHIFT
);
476 dev
->tcet
->vdev
= dev
;
477 memory_region_add_subregion_overlap(&dev
->mrroot
, 0,
478 spapr_tce_get_iommu(dev
->tcet
), 2);
481 pc
->realize(dev
, errp
);
484 static target_ulong
h_vio_signal(PowerPCCPU
*cpu
, sPAPRMachineState
*spapr
,
488 target_ulong reg
= args
[0];
489 target_ulong mode
= args
[1];
490 VIOsPAPRDevice
*dev
= spapr_vio_find_by_reg(spapr
->vio_bus
, reg
);
491 VIOsPAPRDeviceClass
*pc
;
497 pc
= VIO_SPAPR_DEVICE_GET_CLASS(dev
);
499 if (mode
& ~pc
->signal_mask
) {
503 dev
->signal_state
= mode
;
508 VIOsPAPRBus
*spapr_vio_bus_init(void)
514 /* Create bridge device */
515 dev
= qdev_create(NULL
, TYPE_SPAPR_VIO_BRIDGE
);
516 qdev_init_nofail(dev
);
518 /* Create bus on bridge device */
519 qbus
= qbus_create(TYPE_SPAPR_VIO_BUS
, dev
, "spapr-vio");
520 bus
= SPAPR_VIO_BUS(qbus
);
521 bus
->next_reg
= 0x71000000;
524 spapr_register_hypercall(H_VIO_SIGNAL
, h_vio_signal
);
527 spapr_register_hypercall(H_REG_CRQ
, h_reg_crq
);
528 spapr_register_hypercall(H_FREE_CRQ
, h_free_crq
);
529 spapr_register_hypercall(H_SEND_CRQ
, h_send_crq
);
530 spapr_register_hypercall(H_ENABLE_CRQ
, h_enable_crq
);
533 spapr_rtas_register(RTAS_IBM_SET_TCE_BYPASS
, "ibm,set-tce-bypass",
534 rtas_set_tce_bypass
);
535 spapr_rtas_register(RTAS_QUIESCE
, "quiesce", rtas_quiesce
);
540 /* Represents sPAPR hcall VIO devices */
542 static int spapr_vio_bridge_init(SysBusDevice
*dev
)
548 static void spapr_vio_bridge_class_init(ObjectClass
*klass
, void *data
)
550 SysBusDeviceClass
*k
= SYS_BUS_DEVICE_CLASS(klass
);
551 DeviceClass
*dc
= DEVICE_CLASS(klass
);
553 dc
->fw_name
= "vdevice";
554 k
->init
= spapr_vio_bridge_init
;
557 static const TypeInfo spapr_vio_bridge_info
= {
558 .name
= TYPE_SPAPR_VIO_BRIDGE
,
559 .parent
= TYPE_SYS_BUS_DEVICE
,
560 .class_init
= spapr_vio_bridge_class_init
,
563 const VMStateDescription vmstate_spapr_vio
= {
566 .minimum_version_id
= 1,
567 .fields
= (VMStateField
[]) {
569 VMSTATE_UINT32_EQUAL(reg
, VIOsPAPRDevice
),
570 VMSTATE_UINT32_EQUAL(irq
, VIOsPAPRDevice
),
572 /* General VIO device state */
573 VMSTATE_UINT64(signal_state
, VIOsPAPRDevice
),
574 VMSTATE_UINT64(crq
.qladdr
, VIOsPAPRDevice
),
575 VMSTATE_UINT32(crq
.qsize
, VIOsPAPRDevice
),
576 VMSTATE_UINT32(crq
.qnext
, VIOsPAPRDevice
),
578 VMSTATE_END_OF_LIST()
582 static void vio_spapr_device_class_init(ObjectClass
*klass
, void *data
)
584 DeviceClass
*k
= DEVICE_CLASS(klass
);
585 k
->realize
= spapr_vio_busdev_realize
;
586 k
->reset
= spapr_vio_busdev_reset
;
587 k
->bus_type
= TYPE_SPAPR_VIO_BUS
;
588 k
->props
= spapr_vio_props
;
591 static const TypeInfo spapr_vio_type_info
= {
592 .name
= TYPE_VIO_SPAPR_DEVICE
,
593 .parent
= TYPE_DEVICE
,
594 .instance_size
= sizeof(VIOsPAPRDevice
),
596 .class_size
= sizeof(VIOsPAPRDeviceClass
),
597 .class_init
= vio_spapr_device_class_init
,
600 static void spapr_vio_register_types(void)
602 type_register_static(&spapr_vio_bus_info
);
603 type_register_static(&spapr_vio_bridge_info
);
604 type_register_static(&spapr_vio_type_info
);
607 type_init(spapr_vio_register_types
)
609 static int compare_reg(const void *p1
, const void *p2
)
611 VIOsPAPRDevice
const *dev1
, *dev2
;
613 dev1
= (VIOsPAPRDevice
*)*(DeviceState
**)p1
;
614 dev2
= (VIOsPAPRDevice
*)*(DeviceState
**)p2
;
616 if (dev1
->reg
< dev2
->reg
) {
619 if (dev1
->reg
== dev2
->reg
) {
623 /* dev1->reg > dev2->reg */
627 int spapr_populate_vdevice(VIOsPAPRBus
*bus
, void *fdt
)
629 DeviceState
*qdev
, **qdevs
;
633 /* Count qdevs on the bus list */
635 QTAILQ_FOREACH(kid
, &bus
->bus
.children
, sibling
) {
639 /* Copy out into an array of pointers */
640 qdevs
= g_malloc(sizeof(qdev
) * num
);
642 QTAILQ_FOREACH(kid
, &bus
->bus
.children
, sibling
) {
643 qdevs
[num
++] = kid
->child
;
647 qsort(qdevs
, num
, sizeof(qdev
), compare_reg
);
649 /* Hack alert. Give the devices to libfdt in reverse order, we happen
650 * to know that will mean they are in forward order in the tree. */
651 for (i
= num
- 1; i
>= 0; i
--) {
652 VIOsPAPRDevice
*dev
= (VIOsPAPRDevice
*)(qdevs
[i
]);
654 ret
= vio_make_devnode(dev
, fdt
);
668 int spapr_populate_chosen_stdout(void *fdt
, VIOsPAPRBus
*bus
)
674 dev
= spapr_vty_get_default(bus
);
678 offset
= fdt_path_offset(fdt
, "/chosen");
683 name
= spapr_vio_get_dev_name(DEVICE(dev
));
684 path
= g_strdup_printf("/vdevice/%s", name
);
686 ret
= fdt_setprop_string(fdt
, offset
, "linux,stdout-path", path
);