1 #ifndef QEMU_QDEV_PROPERTIES_H
2 #define QEMU_QDEV_PROPERTIES_H
4 #include "hw/qdev-core.h"
6 /*** qdev-properties.c ***/
8 extern const PropertyInfo qdev_prop_bit
;
9 extern const PropertyInfo qdev_prop_bit64
;
10 extern const PropertyInfo qdev_prop_bool
;
11 extern const PropertyInfo qdev_prop_uint8
;
12 extern const PropertyInfo qdev_prop_uint16
;
13 extern const PropertyInfo qdev_prop_uint32
;
14 extern const PropertyInfo qdev_prop_int32
;
15 extern const PropertyInfo qdev_prop_uint64
;
16 extern const PropertyInfo qdev_prop_int64
;
17 extern const PropertyInfo qdev_prop_size
;
18 extern const PropertyInfo qdev_prop_string
;
19 extern const PropertyInfo qdev_prop_chr
;
20 extern const PropertyInfo qdev_prop_ptr
;
21 extern const PropertyInfo qdev_prop_macaddr
;
22 extern const PropertyInfo qdev_prop_on_off_auto
;
23 extern const PropertyInfo qdev_prop_losttickpolicy
;
24 extern const PropertyInfo qdev_prop_blockdev_on_error
;
25 extern const PropertyInfo qdev_prop_bios_chs_trans
;
26 extern const PropertyInfo qdev_prop_fdc_drive_type
;
27 extern const PropertyInfo qdev_prop_drive
;
28 extern const PropertyInfo qdev_prop_netdev
;
29 extern const PropertyInfo qdev_prop_vlan
;
30 extern const PropertyInfo qdev_prop_pci_devfn
;
31 extern const PropertyInfo qdev_prop_blocksize
;
32 extern const PropertyInfo qdev_prop_pci_host_devaddr
;
33 extern const PropertyInfo qdev_prop_arraylen
;
34 extern const PropertyInfo qdev_prop_link
;
36 #define DEFINE_PROP(_name, _state, _field, _prop, _type) { \
39 .offset = offsetof(_state, _field) \
40 + type_check(_type, typeof_field(_state, _field)), \
43 #define DEFINE_PROP_SIGNED(_name, _state, _field, _defval, _prop, _type) { \
46 .offset = offsetof(_state, _field) \
47 + type_check(_type,typeof_field(_state, _field)), \
48 .set_default = true, \
49 .defval.i = (_type)_defval, \
52 #define DEFINE_PROP_SIGNED_NODEFAULT(_name, _state, _field, _prop, _type) { \
55 .offset = offsetof(_state, _field) \
56 + type_check(_type, typeof_field(_state, _field)), \
59 #define DEFINE_PROP_BIT(_name, _state, _field, _bit, _defval) { \
61 .info = &(qdev_prop_bit), \
63 .offset = offsetof(_state, _field) \
64 + type_check(uint32_t,typeof_field(_state, _field)), \
65 .set_default = true, \
66 .defval.u = (bool)_defval, \
69 #define DEFINE_PROP_UNSIGNED(_name, _state, _field, _defval, _prop, _type) { \
72 .offset = offsetof(_state, _field) \
73 + type_check(_type, typeof_field(_state, _field)), \
74 .set_default = true, \
75 .defval.u = (_type)_defval, \
78 #define DEFINE_PROP_UNSIGNED_NODEFAULT(_name, _state, _field, _prop, _type) { \
81 .offset = offsetof(_state, _field) \
82 + type_check(_type, typeof_field(_state, _field)), \
85 #define DEFINE_PROP_BIT64(_name, _state, _field, _bit, _defval) { \
87 .info = &(qdev_prop_bit64), \
89 .offset = offsetof(_state, _field) \
90 + type_check(uint64_t, typeof_field(_state, _field)), \
91 .set_default = true, \
92 .defval.u = (bool)_defval, \
95 #define DEFINE_PROP_BOOL(_name, _state, _field, _defval) { \
97 .info = &(qdev_prop_bool), \
98 .offset = offsetof(_state, _field) \
99 + type_check(bool, typeof_field(_state, _field)), \
100 .set_default = true, \
101 .defval.u = (bool)_defval, \
104 #define PROP_ARRAY_LEN_PREFIX "len-"
108 * @_name: name of the array
109 * @_state: name of the device state structure type
110 * @_field: uint32_t field in @_state to hold the array length
111 * @_arrayfield: field in @_state (of type '@_arraytype *') which
112 * will point to the array
113 * @_arrayprop: PropertyInfo defining what property the array elements have
114 * @_arraytype: C type of the array elements
116 * Define device properties for a variable-length array _name. A
117 * static property "len-arrayname" is defined. When the device creator
118 * sets this property to the desired length of array, further dynamic
119 * properties "arrayname[0]", "arrayname[1]", ... are defined so the
120 * device creator can set the array element values. Setting the
121 * "len-arrayname" property more than once is an error.
123 * When the array length is set, the @_field member of the device
124 * struct is set to the array length, and @_arrayfield is set to point
125 * to (zero-initialised) memory allocated for the array. For a zero
126 * length array, @_field will be set to 0 and @_arrayfield to NULL.
127 * It is the responsibility of the device deinit code to free the
128 * @_arrayfield memory.
130 #define DEFINE_PROP_ARRAY(_name, _state, _field, \
131 _arrayfield, _arrayprop, _arraytype) { \
132 .name = (PROP_ARRAY_LEN_PREFIX _name), \
133 .info = &(qdev_prop_arraylen), \
134 .set_default = true, \
136 .offset = offsetof(_state, _field) \
137 + type_check(uint32_t, typeof_field(_state, _field)), \
138 .arrayinfo = &(_arrayprop), \
139 .arrayfieldsize = sizeof(_arraytype), \
140 .arrayoffset = offsetof(_state, _arrayfield), \
143 #define DEFINE_PROP_LINK(_name, _state, _field, _type, _ptr_type) { \
145 .info = &(qdev_prop_link), \
146 .offset = offsetof(_state, _field) \
147 + type_check(_ptr_type, typeof_field(_state, _field)), \
148 .link_type = _type, \
151 #define DEFINE_PROP_UINT8(_n, _s, _f, _d) \
152 DEFINE_PROP_UNSIGNED(_n, _s, _f, _d, qdev_prop_uint8, uint8_t)
153 #define DEFINE_PROP_UINT16(_n, _s, _f, _d) \
154 DEFINE_PROP_UNSIGNED(_n, _s, _f, _d, qdev_prop_uint16, uint16_t)
155 #define DEFINE_PROP_UINT32(_n, _s, _f, _d) \
156 DEFINE_PROP_UNSIGNED(_n, _s, _f, _d, qdev_prop_uint32, uint32_t)
157 #define DEFINE_PROP_INT32(_n, _s, _f, _d) \
158 DEFINE_PROP_SIGNED(_n, _s, _f, _d, qdev_prop_int32, int32_t)
159 #define DEFINE_PROP_UINT64(_n, _s, _f, _d) \
160 DEFINE_PROP_UNSIGNED(_n, _s, _f, _d, qdev_prop_uint64, uint64_t)
161 #define DEFINE_PROP_INT64(_n, _s, _f, _d) \
162 DEFINE_PROP_SIGNED(_n, _s, _f, _d, qdev_prop_int64, int64_t)
163 #define DEFINE_PROP_SIZE(_n, _s, _f, _d) \
164 DEFINE_PROP_UNSIGNED(_n, _s, _f, _d, qdev_prop_size, uint64_t)
165 #define DEFINE_PROP_PCI_DEVFN(_n, _s, _f, _d) \
166 DEFINE_PROP_SIGNED(_n, _s, _f, _d, qdev_prop_pci_devfn, int32_t)
169 * Please avoid pointer properties. If you must use them, you must
170 * cover them in their device's class init function as follows:
172 * - If the property must be set, the device cannot be used with
173 * device_add, so add code like this:
174 * |* Reason: pointer property "NAME-OF-YOUR-PROP" *|
175 * DeviceClass *dc = DEVICE_CLASS(class);
176 * dc->user_creatable = false;
178 * - If the property may safely remain null, document it like this:
180 * * Note: pointer property "interrupt_vector" may remain null, thus
181 * * no need for dc->user_creatable = false;
184 #define DEFINE_PROP_PTR(_n, _s, _f) \
185 DEFINE_PROP(_n, _s, _f, qdev_prop_ptr, void*)
187 #define DEFINE_PROP_CHR(_n, _s, _f) \
188 DEFINE_PROP(_n, _s, _f, qdev_prop_chr, CharBackend)
189 #define DEFINE_PROP_STRING(_n, _s, _f) \
190 DEFINE_PROP(_n, _s, _f, qdev_prop_string, char*)
191 #define DEFINE_PROP_NETDEV(_n, _s, _f) \
192 DEFINE_PROP(_n, _s, _f, qdev_prop_netdev, NICPeers)
193 #define DEFINE_PROP_VLAN(_n, _s, _f) \
194 DEFINE_PROP(_n, _s, _f, qdev_prop_vlan, NICPeers)
195 #define DEFINE_PROP_DRIVE(_n, _s, _f) \
196 DEFINE_PROP(_n, _s, _f, qdev_prop_drive, BlockBackend *)
197 #define DEFINE_PROP_MACADDR(_n, _s, _f) \
198 DEFINE_PROP(_n, _s, _f, qdev_prop_macaddr, MACAddr)
199 #define DEFINE_PROP_ON_OFF_AUTO(_n, _s, _f, _d) \
200 DEFINE_PROP_SIGNED(_n, _s, _f, _d, qdev_prop_on_off_auto, OnOffAuto)
201 #define DEFINE_PROP_LOSTTICKPOLICY(_n, _s, _f, _d) \
202 DEFINE_PROP_SIGNED(_n, _s, _f, _d, qdev_prop_losttickpolicy, \
204 #define DEFINE_PROP_BLOCKDEV_ON_ERROR(_n, _s, _f, _d) \
205 DEFINE_PROP_SIGNED(_n, _s, _f, _d, qdev_prop_blockdev_on_error, \
207 #define DEFINE_PROP_BIOS_CHS_TRANS(_n, _s, _f, _d) \
208 DEFINE_PROP_SIGNED(_n, _s, _f, _d, qdev_prop_bios_chs_trans, int)
209 #define DEFINE_PROP_BLOCKSIZE(_n, _s, _f) \
210 DEFINE_PROP_UNSIGNED(_n, _s, _f, 0, qdev_prop_blocksize, uint16_t)
211 #define DEFINE_PROP_PCI_HOST_DEVADDR(_n, _s, _f) \
212 DEFINE_PROP(_n, _s, _f, qdev_prop_pci_host_devaddr, PCIHostDeviceAddress)
213 #define DEFINE_PROP_MEMORY_REGION(_n, _s, _f) \
214 DEFINE_PROP(_n, _s, _f, qdev_prop_ptr, MemoryRegion *)
216 #define DEFINE_PROP_END_OF_LIST() \
219 /* Set properties between creation and init. */
220 void *qdev_get_prop_ptr(DeviceState
*dev
, Property
*prop
);
221 void qdev_prop_set_bit(DeviceState
*dev
, const char *name
, bool value
);
222 void qdev_prop_set_uint8(DeviceState
*dev
, const char *name
, uint8_t value
);
223 void qdev_prop_set_uint16(DeviceState
*dev
, const char *name
, uint16_t value
);
224 void qdev_prop_set_uint32(DeviceState
*dev
, const char *name
, uint32_t value
);
225 void qdev_prop_set_int32(DeviceState
*dev
, const char *name
, int32_t value
);
226 void qdev_prop_set_uint64(DeviceState
*dev
, const char *name
, uint64_t value
);
227 void qdev_prop_set_string(DeviceState
*dev
, const char *name
, const char *value
);
228 void qdev_prop_set_chr(DeviceState
*dev
, const char *name
, Chardev
*value
);
229 void qdev_prop_set_netdev(DeviceState
*dev
, const char *name
, NetClientState
*value
);
230 void qdev_prop_set_drive(DeviceState
*dev
, const char *name
,
231 BlockBackend
*value
, Error
**errp
);
232 void qdev_prop_set_macaddr(DeviceState
*dev
, const char *name
,
233 const uint8_t *value
);
234 void qdev_prop_set_enum(DeviceState
*dev
, const char *name
, int value
);
235 /* FIXME: Remove opaque pointer properties. */
236 void qdev_prop_set_ptr(DeviceState
*dev
, const char *name
, void *value
);
238 void qdev_prop_register_global(GlobalProperty
*prop
);
239 void qdev_prop_register_global_list(GlobalProperty
*props
);
240 int qdev_prop_check_globals(void);
241 void qdev_prop_set_globals(DeviceState
*dev
);
242 void error_set_from_qdev_prop_error(Error
**errp
, int ret
, DeviceState
*dev
,
243 Property
*prop
, const char *value
);
246 * register_compat_prop:
248 * Register internal (not user-provided) global property, changing the
249 * default value of a given property in a device type. This can be used
250 * for enabling machine-type compatibility or for enabling
251 * accelerator-specific defaults in devices.
253 * The property values set using this function must be always valid and
254 * never report setter errors, as the property will have
255 * GlobalProperty::errp set to &error_abort.
257 * User-provided global properties should override internal global
258 * properties, so callers of this function should ensure that it is
259 * called before user-provided global properties are registered.
261 * @driver: Device type to be affected
262 * @property: Property whose default value is going to be changed
263 * @value: New default value for the property
265 void register_compat_prop(const char *driver
, const char *property
,
268 * register_compat_props_array(): using register_compat_prop(), which
269 * only registers internal global properties (which has lower priority
270 * than user-provided global properties)
272 void register_compat_props_array(GlobalProperty
*prop
);
275 * qdev_property_add_static:
276 * @dev: Device to add the property to.
277 * @prop: The qdev property definition.
278 * @errp: location to store error information.
280 * Add a static QOM property to @dev for qdev property @prop.
281 * On error, store error in @errp. Static properties access data in a struct.
282 * The type of the QOM property is derived from prop->info.
284 void qdev_property_add_static(DeviceState
*dev
, Property
*prop
, Error
**errp
);
286 void qdev_alias_all_properties(DeviceState
*target
, Object
*source
);
289 * @qdev_prop_set_after_realize:
291 * @name: name of property
292 * @errp: indirect pointer to Error to be set
293 * Set the Error object to report that an attempt was made to set a property
294 * on a device after it has already been realized. This is a utility function
295 * which allows property-setter functions to easily report the error in
296 * a friendly format identifying both the device and the property.
298 void qdev_prop_set_after_realize(DeviceState
*dev
, const char *name
,
302 * qdev_prop_allow_set_link_before_realize:
304 * Set the #Error object if an attempt is made to set the link after realize.
305 * This function should be used as the check() argument to
306 * object_property_add_link().
308 void qdev_prop_allow_set_link_before_realize(const Object
*obj
,
310 Object
*val
, Error
**errp
);