5 * QEMU sPAPR VIO bus definitions
7 * Copyright (c) 2010 David Gibson, IBM Corporation <david@gibson.dropbear.id.au>
8 * Based on the s390 virtio bus definitions:
9 * Copyright (c) 2009 Alexander Graf <agraf@suse.de>
11 * This library is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public
13 * License as published by the Free Software Foundation; either
14 * version 2.1 of the License, or (at your option) any later version.
16 * This library is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Lesser General Public License for more details.
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
25 #include "hw/ppc/spapr.h"
26 #include "sysemu/dma.h"
28 #include "qom/object.h"
30 #define TYPE_VIO_SPAPR_DEVICE "vio-spapr-device"
31 OBJECT_DECLARE_TYPE(SpaprVioDevice
, SpaprVioDeviceClass
,
34 #define TYPE_SPAPR_VIO_BUS "spapr-vio-bus"
35 OBJECT_DECLARE_SIMPLE_TYPE(SpaprVioBus
, SPAPR_VIO_BUS
)
37 #define TYPE_SPAPR_VIO_BRIDGE "spapr-vio-bridge"
39 typedef struct SpaprVioCrq
{
43 int(*SendFunc
)(struct SpaprVioDevice
*vdev
, uint8_t *crq
);
47 struct SpaprVioDeviceClass
{
48 DeviceClass parent_class
;
50 const char *dt_name
, *dt_type
, *dt_compatible
;
51 target_ulong signal_mask
;
52 uint32_t rtce_window_size
;
53 void (*realize
)(SpaprVioDevice
*dev
, Error
**errp
);
54 void (*reset
)(SpaprVioDevice
*dev
);
55 int (*devnode
)(SpaprVioDevice
*dev
, void *fdt
, int node_off
);
56 const char *(*get_dt_compatible
)(SpaprVioDevice
*dev
);
59 struct SpaprVioDevice
{
63 uint64_t signal_state
;
67 MemoryRegion mrbypass
;
71 #define DEFINE_SPAPR_PROPERTIES(type, field) \
72 DEFINE_PROP_UINT32("reg", type, field.reg, -1)
79 SpaprVioBus
*spapr_vio_bus_init(void);
80 SpaprVioDevice
*spapr_vio_find_by_reg(SpaprVioBus
*bus
, uint32_t reg
);
81 void spapr_dt_vdevice(SpaprVioBus
*bus
, void *fdt
);
82 gchar
*spapr_vio_stdout_path(SpaprVioBus
*bus
);
84 static inline void spapr_vio_irq_pulse(SpaprVioDevice
*dev
)
86 SpaprMachineState
*spapr
= SPAPR_MACHINE(qdev_get_machine());
88 qemu_irq_pulse(spapr_qirq(spapr
, dev
->irq
));
91 static inline bool spapr_vio_dma_valid(SpaprVioDevice
*dev
, uint64_t taddr
,
92 uint32_t size
, DMADirection dir
)
94 return dma_memory_valid(&dev
->as
, taddr
, size
, dir
, MEMTXATTRS_UNSPECIFIED
);
97 static inline int spapr_vio_dma_read(SpaprVioDevice
*dev
, uint64_t taddr
,
98 void *buf
, uint32_t size
)
100 return (dma_memory_read(&dev
->as
, taddr
,
101 buf
, size
, MEMTXATTRS_UNSPECIFIED
) != 0) ?
102 H_DEST_PARM
: H_SUCCESS
;
105 static inline int spapr_vio_dma_write(SpaprVioDevice
*dev
, uint64_t taddr
,
106 const void *buf
, uint32_t size
)
108 return (dma_memory_write(&dev
->as
, taddr
,
109 buf
, size
, MEMTXATTRS_UNSPECIFIED
) != 0) ?
110 H_DEST_PARM
: H_SUCCESS
;
113 static inline int spapr_vio_dma_set(SpaprVioDevice
*dev
, uint64_t taddr
,
114 uint8_t c
, uint32_t size
)
116 return (dma_memory_set(&dev
->as
, taddr
,
117 c
, size
, MEMTXATTRS_UNSPECIFIED
) != 0) ?
118 H_DEST_PARM
: H_SUCCESS
;
121 #define vio_stb(_dev, _addr, _val) \
122 (stb_dma(&(_dev)->as, (_addr), (_val), MEMTXATTRS_UNSPECIFIED))
123 #define vio_sth(_dev, _addr, _val) \
124 (stw_be_dma(&(_dev)->as, (_addr), (_val), MEMTXATTRS_UNSPECIFIED))
125 #define vio_stl(_dev, _addr, _val) \
126 (stl_be_dma(&(_dev)->as, (_addr), (_val), MEMTXATTRS_UNSPECIFIED))
127 #define vio_stq(_dev, _addr, _val) \
128 (stq_be_dma(&(_dev)->as, (_addr), (_val), MEMTXATTRS_UNSPECIFIED))
129 #define vio_ldq(_dev, _addr) \
132 ldq_be_dma(&(_dev)->as, (_addr), &_val, MEMTXATTRS_UNSPECIFIED); \
136 int spapr_vio_send_crq(SpaprVioDevice
*dev
, uint8_t *crq
);
138 SpaprVioDevice
*vty_lookup(SpaprMachineState
*spapr
, target_ulong reg
);
139 void vty_putchars(SpaprVioDevice
*sdev
, uint8_t *buf
, int len
);
140 void spapr_vty_create(SpaprVioBus
*bus
, Chardev
*chardev
);
141 void spapr_vlan_create(SpaprVioBus
*bus
, NICInfo
*nd
);
142 void spapr_vscsi_create(SpaprVioBus
*bus
);
144 SpaprVioDevice
*spapr_vty_get_default(SpaprVioBus
*bus
);
146 extern const VMStateDescription vmstate_spapr_vio
;
148 #define VMSTATE_SPAPR_VIO(_f, _s) \
149 VMSTATE_STRUCT(_f, _s, 0, vmstate_spapr_vio, SpaprVioDevice)
151 void spapr_vio_set_bypass(SpaprVioDevice
*dev
, bool bypass
);
153 #endif /* HW_SPAPR_VIO_H */