2 * QEMU SPAPR Dynamic Reconfiguration Connector Implementation
4 * Copyright IBM Corp. 2014
7 * Michael Roth <mdroth@linux.vnet.ibm.com>
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
13 #include "qemu/osdep.h"
14 #include "qapi/error.h"
16 #include "qemu/cutils.h"
17 #include "hw/ppc/spapr_drc.h"
18 #include "qom/object.h"
20 #include "qapi/visitor.h"
21 #include "qemu/error-report.h"
22 #include "hw/ppc/spapr.h" /* for RTAS return codes */
24 /* #define DEBUG_SPAPR_DRC */
26 #ifdef DEBUG_SPAPR_DRC
27 #define DPRINTF(fmt, ...) \
28 do { fprintf(stderr, fmt, ## __VA_ARGS__); } while (0)
29 #define DPRINTFN(fmt, ...) \
30 do { DPRINTF(fmt, ## __VA_ARGS__); fprintf(stderr, "\n"); } while (0)
32 #define DPRINTF(fmt, ...) \
34 #define DPRINTFN(fmt, ...) \
38 #define DRC_CONTAINER_PATH "/dr-connector"
39 #define DRC_INDEX_TYPE_SHIFT 28
40 #define DRC_INDEX_ID_MASK ((1ULL << DRC_INDEX_TYPE_SHIFT) - 1)
42 static sPAPRDRConnectorTypeShift
get_type_shift(sPAPRDRConnectorType type
)
46 /* make sure this isn't SPAPR_DR_CONNECTOR_TYPE_ANY, or some
49 g_assert(is_power_of_2(type
));
51 while (type
!= (1 << shift
)) {
57 static uint32_t get_index(sPAPRDRConnector
*drc
)
59 /* no set format for a drc index: it only needs to be globally
60 * unique. this is how we encode the DRC type on bare-metal
61 * however, so might as well do that here
63 return (get_type_shift(drc
->type
) << DRC_INDEX_TYPE_SHIFT
) |
64 (drc
->id
& DRC_INDEX_ID_MASK
);
67 static uint32_t set_isolation_state(sPAPRDRConnector
*drc
,
68 sPAPRDRIsolationState state
)
70 sPAPRDRConnectorClass
*drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
72 DPRINTFN("drc: %x, set_isolation_state: %x", get_index(drc
), state
);
74 if (state
== SPAPR_DR_ISOLATION_STATE_UNISOLATED
) {
75 /* cannot unisolate a non-existant resource, and, or resources
76 * which are in an 'UNUSABLE' allocation state. (PAPR 2.7, 13.5.3.5)
79 drc
->allocation_state
== SPAPR_DR_ALLOCATION_STATE_UNUSABLE
) {
80 return RTAS_OUT_NO_SUCH_INDICATOR
;
84 drc
->isolation_state
= state
;
86 if (drc
->isolation_state
== SPAPR_DR_ISOLATION_STATE_ISOLATED
) {
87 /* if we're awaiting release, but still in an unconfigured state,
88 * it's likely the guest is still in the process of configuring
89 * the device and is transitioning the devices to an ISOLATED
90 * state as a part of that process. so we only complete the
91 * removal when this transition happens for a device in a
92 * configured state, as suggested by the state diagram from
95 if (drc
->awaiting_release
) {
96 if (drc
->configured
) {
97 DPRINTFN("finalizing device removal");
98 drck
->detach(drc
, DEVICE(drc
->dev
), drc
->detach_cb
,
99 drc
->detach_cb_opaque
, NULL
);
101 DPRINTFN("deferring device removal on unconfigured device\n");
104 drc
->configured
= false;
107 return RTAS_OUT_SUCCESS
;
110 static uint32_t set_indicator_state(sPAPRDRConnector
*drc
,
111 sPAPRDRIndicatorState state
)
113 DPRINTFN("drc: %x, set_indicator_state: %x", get_index(drc
), state
);
114 drc
->indicator_state
= state
;
115 return RTAS_OUT_SUCCESS
;
118 static uint32_t set_allocation_state(sPAPRDRConnector
*drc
,
119 sPAPRDRAllocationState state
)
121 sPAPRDRConnectorClass
*drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
123 DPRINTFN("drc: %x, set_allocation_state: %x", get_index(drc
), state
);
125 if (state
== SPAPR_DR_ALLOCATION_STATE_USABLE
) {
126 /* if there's no resource/device associated with the DRC, there's
127 * no way for us to put it in an allocation state consistent with
128 * being 'USABLE'. PAPR 2.7, 13.5.3.4 documents that this should
129 * result in an RTAS return code of -3 / "no such indicator"
132 return RTAS_OUT_NO_SUCH_INDICATOR
;
136 if (drc
->type
!= SPAPR_DR_CONNECTOR_TYPE_PCI
) {
137 drc
->allocation_state
= state
;
138 if (drc
->awaiting_release
&&
139 drc
->allocation_state
== SPAPR_DR_ALLOCATION_STATE_UNUSABLE
) {
140 DPRINTFN("finalizing device removal");
141 drck
->detach(drc
, DEVICE(drc
->dev
), drc
->detach_cb
,
142 drc
->detach_cb_opaque
, NULL
);
145 return RTAS_OUT_SUCCESS
;
148 static uint32_t get_type(sPAPRDRConnector
*drc
)
153 static const char *get_name(sPAPRDRConnector
*drc
)
158 static const void *get_fdt(sPAPRDRConnector
*drc
, int *fdt_start_offset
)
160 if (fdt_start_offset
) {
161 *fdt_start_offset
= drc
->fdt_start_offset
;
166 static void set_configured(sPAPRDRConnector
*drc
)
168 DPRINTFN("drc: %x, set_configured", get_index(drc
));
170 if (drc
->isolation_state
!= SPAPR_DR_ISOLATION_STATE_UNISOLATED
) {
171 /* guest should be not configuring an isolated device */
172 DPRINTFN("drc: %x, set_configured: skipping isolated device",
176 drc
->configured
= true;
179 /* has the guest been notified of device attachment? */
180 static void set_signalled(sPAPRDRConnector
*drc
)
182 drc
->signalled
= true;
186 * dr-entity-sense sensor value
187 * returned via get-sensor-state RTAS calls
188 * as expected by state diagram in PAPR+ 2.7, 13.4
189 * based on the current allocation/indicator/power states
190 * for the DR connector.
192 static uint32_t entity_sense(sPAPRDRConnector
*drc
, sPAPRDREntitySense
*state
)
195 if (drc
->type
!= SPAPR_DR_CONNECTOR_TYPE_PCI
&&
196 drc
->allocation_state
== SPAPR_DR_ALLOCATION_STATE_UNUSABLE
) {
197 /* for logical DR, we return a state of UNUSABLE
198 * iff the allocation state UNUSABLE.
199 * Otherwise, report the state as USABLE/PRESENT,
200 * as we would for PCI.
202 *state
= SPAPR_DR_ENTITY_SENSE_UNUSABLE
;
204 /* this assumes all PCI devices are assigned to
205 * a 'live insertion' power domain, where QEMU
206 * manages power state automatically as opposed
207 * to the guest. present, non-PCI resources are
208 * unaffected by power state.
210 *state
= SPAPR_DR_ENTITY_SENSE_PRESENT
;
213 if (drc
->type
== SPAPR_DR_CONNECTOR_TYPE_PCI
) {
214 /* PCI devices, and only PCI devices, use EMPTY
215 * in cases where we'd otherwise use UNUSABLE
217 *state
= SPAPR_DR_ENTITY_SENSE_EMPTY
;
219 *state
= SPAPR_DR_ENTITY_SENSE_UNUSABLE
;
223 DPRINTFN("drc: %x, entity_sense: %x", get_index(drc
), state
);
224 return RTAS_OUT_SUCCESS
;
227 static void prop_get_index(Object
*obj
, Visitor
*v
, const char *name
,
228 void *opaque
, Error
**errp
)
230 sPAPRDRConnector
*drc
= SPAPR_DR_CONNECTOR(obj
);
231 sPAPRDRConnectorClass
*drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
232 uint32_t value
= (uint32_t)drck
->get_index(drc
);
233 visit_type_uint32(v
, name
, &value
, errp
);
236 static void prop_get_type(Object
*obj
, Visitor
*v
, const char *name
,
237 void *opaque
, Error
**errp
)
239 sPAPRDRConnector
*drc
= SPAPR_DR_CONNECTOR(obj
);
240 sPAPRDRConnectorClass
*drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
241 uint32_t value
= (uint32_t)drck
->get_type(drc
);
242 visit_type_uint32(v
, name
, &value
, errp
);
245 static char *prop_get_name(Object
*obj
, Error
**errp
)
247 sPAPRDRConnector
*drc
= SPAPR_DR_CONNECTOR(obj
);
248 sPAPRDRConnectorClass
*drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
249 return g_strdup(drck
->get_name(drc
));
252 static void prop_get_entity_sense(Object
*obj
, Visitor
*v
, const char *name
,
253 void *opaque
, Error
**errp
)
255 sPAPRDRConnector
*drc
= SPAPR_DR_CONNECTOR(obj
);
256 sPAPRDRConnectorClass
*drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
259 drck
->entity_sense(drc
, &value
);
260 visit_type_uint32(v
, name
, &value
, errp
);
263 static void prop_get_fdt(Object
*obj
, Visitor
*v
, const char *name
,
264 void *opaque
, Error
**errp
)
266 sPAPRDRConnector
*drc
= SPAPR_DR_CONNECTOR(obj
);
268 int fdt_offset_next
, fdt_offset
, fdt_depth
;
272 visit_type_null(v
, NULL
, errp
);
277 fdt_offset
= drc
->fdt_start_offset
;
281 const char *name
= NULL
;
282 const struct fdt_property
*prop
= NULL
;
283 int prop_len
= 0, name_len
= 0;
286 tag
= fdt_next_tag(fdt
, fdt_offset
, &fdt_offset_next
);
290 name
= fdt_get_name(fdt
, fdt_offset
, &name_len
);
291 visit_start_struct(v
, name
, NULL
, 0, &err
);
293 error_propagate(errp
, err
);
298 /* shouldn't ever see an FDT_END_NODE before FDT_BEGIN_NODE */
299 g_assert(fdt_depth
> 0);
300 visit_check_struct(v
, &err
);
303 error_propagate(errp
, err
);
310 prop
= fdt_get_property_by_offset(fdt
, fdt_offset
, &prop_len
);
311 name
= fdt_string(fdt
, fdt32_to_cpu(prop
->nameoff
));
312 visit_start_list(v
, name
, NULL
, 0, &err
);
314 error_propagate(errp
, err
);
317 for (i
= 0; i
< prop_len
; i
++) {
318 visit_type_uint8(v
, NULL
, (uint8_t *)&prop
->data
[i
], &err
);
320 error_propagate(errp
, err
);
328 error_setg(&error_abort
, "device FDT in unexpected state: %d", tag
);
330 fdt_offset
= fdt_offset_next
;
331 } while (fdt_depth
!= 0);
334 static void attach(sPAPRDRConnector
*drc
, DeviceState
*d
, void *fdt
,
335 int fdt_start_offset
, bool coldplug
, Error
**errp
)
337 DPRINTFN("drc: %x, attach", get_index(drc
));
339 if (drc
->isolation_state
!= SPAPR_DR_ISOLATION_STATE_ISOLATED
) {
340 error_setg(errp
, "an attached device is still awaiting release");
343 if (drc
->type
== SPAPR_DR_CONNECTOR_TYPE_PCI
) {
344 g_assert(drc
->allocation_state
== SPAPR_DR_ALLOCATION_STATE_USABLE
);
346 g_assert(fdt
|| coldplug
);
348 /* NOTE: setting initial isolation state to UNISOLATED means we can't
349 * detach unless guest has a userspace/kernel that moves this state
350 * back to ISOLATED in response to an unplug event, or this is done
351 * manually by the admin prior. if we force things while the guest
352 * may be accessing the device, we can easily crash the guest, so we
353 * we defer completion of removal in such cases to the reset() hook.
355 if (drc
->type
== SPAPR_DR_CONNECTOR_TYPE_PCI
) {
356 drc
->isolation_state
= SPAPR_DR_ISOLATION_STATE_UNISOLATED
;
358 drc
->indicator_state
= SPAPR_DR_INDICATOR_STATE_ACTIVE
;
362 drc
->fdt_start_offset
= fdt_start_offset
;
363 drc
->configured
= coldplug
;
364 /* 'logical' DR resources such as memory/cpus are in some cases treated
365 * as a pool of resources from which the guest is free to choose from
366 * based on only a count. for resources that can be assigned in this
367 * fashion, we must assume the resource is signalled immediately
368 * since a single hotplug request might make an arbitrary number of
369 * such attached resources available to the guest, as opposed to
370 * 'physical' DR resources such as PCI where each device/resource is
371 * signalled individually.
373 drc
->signalled
= (drc
->type
!= SPAPR_DR_CONNECTOR_TYPE_PCI
)
376 object_property_add_link(OBJECT(drc
), "device",
377 object_get_typename(OBJECT(drc
->dev
)),
378 (Object
**)(&drc
->dev
),
382 static void detach(sPAPRDRConnector
*drc
, DeviceState
*d
,
383 spapr_drc_detach_cb
*detach_cb
,
384 void *detach_cb_opaque
, Error
**errp
)
386 DPRINTFN("drc: %x, detach", get_index(drc
));
388 drc
->detach_cb
= detach_cb
;
389 drc
->detach_cb_opaque
= detach_cb_opaque
;
391 /* if we've signalled device presence to the guest, or if the guest
392 * has gone ahead and configured the device (via manually-executed
393 * device add via drmgr in guest, namely), we need to wait
394 * for the guest to quiesce the device before completing detach.
395 * Otherwise, we can assume the guest hasn't seen it and complete the
396 * detach immediately. Note that there is a small race window
397 * just before, or during, configuration, which is this context
398 * refers mainly to fetching the device tree via RTAS.
399 * During this window the device access will be arbitrated by
400 * associated DRC, which will simply fail the RTAS calls as invalid.
401 * This is recoverable within guest and current implementations of
402 * drmgr should be able to cope.
404 if (!drc
->signalled
&& !drc
->configured
) {
405 /* if the guest hasn't seen the device we can't rely on it to
406 * set it back to an isolated state via RTAS, so do it here manually
408 drc
->isolation_state
= SPAPR_DR_ISOLATION_STATE_ISOLATED
;
411 if (drc
->isolation_state
!= SPAPR_DR_ISOLATION_STATE_ISOLATED
) {
412 DPRINTFN("awaiting transition to isolated state before removal");
413 drc
->awaiting_release
= true;
417 if (drc
->type
!= SPAPR_DR_CONNECTOR_TYPE_PCI
&&
418 drc
->allocation_state
!= SPAPR_DR_ALLOCATION_STATE_UNUSABLE
) {
419 DPRINTFN("awaiting transition to unusable state before removal");
420 drc
->awaiting_release
= true;
424 drc
->indicator_state
= SPAPR_DR_INDICATOR_STATE_INACTIVE
;
426 if (drc
->detach_cb
) {
427 drc
->detach_cb(drc
->dev
, drc
->detach_cb_opaque
);
430 drc
->awaiting_release
= false;
433 drc
->fdt_start_offset
= 0;
434 object_property_del(OBJECT(drc
), "device", NULL
);
436 drc
->detach_cb
= NULL
;
437 drc
->detach_cb_opaque
= NULL
;
440 static bool release_pending(sPAPRDRConnector
*drc
)
442 return drc
->awaiting_release
;
445 static void reset(DeviceState
*d
)
447 sPAPRDRConnector
*drc
= SPAPR_DR_CONNECTOR(d
);
448 sPAPRDRConnectorClass
*drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
449 sPAPRDREntitySense state
;
451 DPRINTFN("drc reset: %x", drck
->get_index(drc
));
452 /* immediately upon reset we can safely assume DRCs whose devices
453 * are pending removal can be safely removed, and that they will
454 * subsequently be left in an ISOLATED state. move the DRC to this
455 * state in these cases (which will in turn complete any pending
458 if (drc
->awaiting_release
) {
459 drck
->set_isolation_state(drc
, SPAPR_DR_ISOLATION_STATE_ISOLATED
);
460 /* generally this should also finalize the removal, but if the device
461 * hasn't yet been configured we normally defer removal under the
462 * assumption that this transition is taking place as part of device
463 * configuration. so check if we're still waiting after this, and
464 * force removal if we are
466 if (drc
->awaiting_release
) {
467 drck
->detach(drc
, DEVICE(drc
->dev
), drc
->detach_cb
,
468 drc
->detach_cb_opaque
, NULL
);
471 /* non-PCI devices may be awaiting a transition to UNUSABLE */
472 if (drc
->type
!= SPAPR_DR_CONNECTOR_TYPE_PCI
&&
473 drc
->awaiting_release
) {
474 drck
->set_allocation_state(drc
, SPAPR_DR_ALLOCATION_STATE_UNUSABLE
);
478 drck
->entity_sense(drc
, &state
);
479 if (state
== SPAPR_DR_ENTITY_SENSE_PRESENT
) {
480 drck
->set_signalled(drc
);
484 static void realize(DeviceState
*d
, Error
**errp
)
486 sPAPRDRConnector
*drc
= SPAPR_DR_CONNECTOR(d
);
487 sPAPRDRConnectorClass
*drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
488 Object
*root_container
;
493 DPRINTFN("drc realize: %x", drck
->get_index(drc
));
494 /* NOTE: we do this as part of realize/unrealize due to the fact
495 * that the guest will communicate with the DRC via RTAS calls
496 * referencing the global DRC index. By unlinking the DRC
497 * from DRC_CONTAINER_PATH/<drc_index> we effectively make it
498 * inaccessible by the guest, since lookups rely on this path
499 * existing in the composition tree
501 root_container
= container_get(object_get_root(), DRC_CONTAINER_PATH
);
502 snprintf(link_name
, sizeof(link_name
), "%x", drck
->get_index(drc
));
503 child_name
= object_get_canonical_path_component(OBJECT(drc
));
504 DPRINTFN("drc child name: %s", child_name
);
505 object_property_add_alias(root_container
, link_name
,
506 drc
->owner
, child_name
, &err
);
508 error_report_err(err
);
509 object_unref(OBJECT(drc
));
512 DPRINTFN("drc realize complete");
515 static void unrealize(DeviceState
*d
, Error
**errp
)
517 sPAPRDRConnector
*drc
= SPAPR_DR_CONNECTOR(d
);
518 sPAPRDRConnectorClass
*drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
519 Object
*root_container
;
523 DPRINTFN("drc unrealize: %x", drck
->get_index(drc
));
524 root_container
= container_get(object_get_root(), DRC_CONTAINER_PATH
);
525 snprintf(name
, sizeof(name
), "%x", drck
->get_index(drc
));
526 object_property_del(root_container
, name
, &err
);
528 error_report_err(err
);
529 object_unref(OBJECT(drc
));
533 sPAPRDRConnector
*spapr_dr_connector_new(Object
*owner
,
534 sPAPRDRConnectorType type
,
537 sPAPRDRConnector
*drc
=
538 SPAPR_DR_CONNECTOR(object_new(TYPE_SPAPR_DR_CONNECTOR
));
546 prop_name
= g_strdup_printf("dr-connector[%"PRIu32
"]", get_index(drc
));
547 object_property_add_child(owner
, prop_name
, OBJECT(drc
), NULL
);
548 object_property_set_bool(OBJECT(drc
), true, "realized", NULL
);
551 /* human-readable name for a DRC to encode into the DT
552 * description. this is mainly only used within a guest in place
553 * of the unique DRC index.
555 * in the case of VIO/PCI devices, it corresponds to a
556 * "location code" that maps a logical device/function (DRC index)
557 * to a physical (or virtual in the case of VIO) location in the
558 * system by chaining together the "location label" for each
559 * encapsulating component.
561 * since this is more to do with diagnosing physical hardware
562 * issues than guest compatibility, we choose location codes/DRC
563 * names that adhere to the documented format, but avoid encoding
564 * the entire topology information into the label/code, instead
565 * just using the location codes based on the labels for the
566 * endpoints (VIO/PCI adaptor connectors), which is basically
567 * just "C" followed by an integer ID.
569 * DRC names as documented by PAPR+ v2.7, 13.5.2.4
570 * location codes as documented by PAPR+ v2.7, 12.3.1.5
573 case SPAPR_DR_CONNECTOR_TYPE_CPU
:
574 drc
->name
= g_strdup_printf("CPU %d", id
);
576 case SPAPR_DR_CONNECTOR_TYPE_PHB
:
577 drc
->name
= g_strdup_printf("PHB %d", id
);
579 case SPAPR_DR_CONNECTOR_TYPE_VIO
:
580 case SPAPR_DR_CONNECTOR_TYPE_PCI
:
581 drc
->name
= g_strdup_printf("C%d", id
);
583 case SPAPR_DR_CONNECTOR_TYPE_LMB
:
584 drc
->name
= g_strdup_printf("LMB %d", id
);
590 /* PCI slot always start in a USABLE state, and stay there */
591 if (drc
->type
== SPAPR_DR_CONNECTOR_TYPE_PCI
) {
592 drc
->allocation_state
= SPAPR_DR_ALLOCATION_STATE_USABLE
;
598 static void spapr_dr_connector_instance_init(Object
*obj
)
600 sPAPRDRConnector
*drc
= SPAPR_DR_CONNECTOR(obj
);
602 object_property_add_uint32_ptr(obj
, "isolation-state",
603 &drc
->isolation_state
, NULL
);
604 object_property_add_uint32_ptr(obj
, "indicator-state",
605 &drc
->indicator_state
, NULL
);
606 object_property_add_uint32_ptr(obj
, "allocation-state",
607 &drc
->allocation_state
, NULL
);
608 object_property_add_uint32_ptr(obj
, "id", &drc
->id
, NULL
);
609 object_property_add(obj
, "index", "uint32", prop_get_index
,
610 NULL
, NULL
, NULL
, NULL
);
611 object_property_add(obj
, "connector_type", "uint32", prop_get_type
,
612 NULL
, NULL
, NULL
, NULL
);
613 object_property_add_str(obj
, "name", prop_get_name
, NULL
, NULL
);
614 object_property_add(obj
, "entity-sense", "uint32", prop_get_entity_sense
,
615 NULL
, NULL
, NULL
, NULL
);
616 object_property_add(obj
, "fdt", "struct", prop_get_fdt
,
617 NULL
, NULL
, NULL
, NULL
);
620 static void spapr_dr_connector_class_init(ObjectClass
*k
, void *data
)
622 DeviceClass
*dk
= DEVICE_CLASS(k
);
623 sPAPRDRConnectorClass
*drck
= SPAPR_DR_CONNECTOR_CLASS(k
);
626 dk
->realize
= realize
;
627 dk
->unrealize
= unrealize
;
628 drck
->set_isolation_state
= set_isolation_state
;
629 drck
->set_indicator_state
= set_indicator_state
;
630 drck
->set_allocation_state
= set_allocation_state
;
631 drck
->get_index
= get_index
;
632 drck
->get_type
= get_type
;
633 drck
->get_name
= get_name
;
634 drck
->get_fdt
= get_fdt
;
635 drck
->set_configured
= set_configured
;
636 drck
->entity_sense
= entity_sense
;
637 drck
->attach
= attach
;
638 drck
->detach
= detach
;
639 drck
->release_pending
= release_pending
;
640 drck
->set_signalled
= set_signalled
;
642 * Reason: it crashes FIXME find and document the real reason
644 dk
->cannot_instantiate_with_device_add_yet
= true;
647 static const TypeInfo spapr_dr_connector_info
= {
648 .name
= TYPE_SPAPR_DR_CONNECTOR
,
649 .parent
= TYPE_DEVICE
,
650 .instance_size
= sizeof(sPAPRDRConnector
),
651 .instance_init
= spapr_dr_connector_instance_init
,
652 .class_size
= sizeof(sPAPRDRConnectorClass
),
653 .class_init
= spapr_dr_connector_class_init
,
656 static void spapr_drc_register_types(void)
658 type_register_static(&spapr_dr_connector_info
);
661 type_init(spapr_drc_register_types
)
663 /* helper functions for external users */
665 sPAPRDRConnector
*spapr_dr_connector_by_index(uint32_t index
)
670 snprintf(name
, sizeof(name
), "%s/%x", DRC_CONTAINER_PATH
, index
);
671 obj
= object_resolve_path(name
, NULL
);
673 return !obj
? NULL
: SPAPR_DR_CONNECTOR(obj
);
676 sPAPRDRConnector
*spapr_dr_connector_by_id(sPAPRDRConnectorType type
,
679 return spapr_dr_connector_by_index(
680 (get_type_shift(type
) << DRC_INDEX_TYPE_SHIFT
) |
681 (id
& DRC_INDEX_ID_MASK
));
684 /* generate a string the describes the DRC to encode into the
687 * as documented by PAPR+ v2.7, 13.5.2.6 and C.6.1
689 static const char *spapr_drc_get_type_str(sPAPRDRConnectorType type
)
692 case SPAPR_DR_CONNECTOR_TYPE_CPU
:
694 case SPAPR_DR_CONNECTOR_TYPE_PHB
:
696 case SPAPR_DR_CONNECTOR_TYPE_VIO
:
698 case SPAPR_DR_CONNECTOR_TYPE_PCI
:
700 case SPAPR_DR_CONNECTOR_TYPE_LMB
:
710 * spapr_drc_populate_dt
712 * @fdt: libfdt device tree
713 * @path: path in the DT to generate properties
714 * @owner: parent Object/DeviceState for which to generate DRC
716 * @drc_type_mask: mask of sPAPRDRConnectorType values corresponding
717 * to the types of DRCs to generate entries for
719 * generate OF properties to describe DRC topology/indices to guests
721 * as documented in PAPR+ v2.1, 13.5.2
723 int spapr_drc_populate_dt(void *fdt
, int fdt_offset
, Object
*owner
,
724 uint32_t drc_type_mask
)
726 Object
*root_container
;
727 ObjectProperty
*prop
;
728 ObjectPropertyIterator iter
;
729 uint32_t drc_count
= 0;
730 GArray
*drc_indexes
, *drc_power_domains
;
731 GString
*drc_names
, *drc_types
;
734 /* the first entry of each properties is a 32-bit integer encoding
735 * the number of elements in the array. we won't know this until
736 * we complete the iteration through all the matching DRCs, but
737 * reserve the space now and set the offsets accordingly so we
738 * can fill them in later.
740 drc_indexes
= g_array_new(false, true, sizeof(uint32_t));
741 drc_indexes
= g_array_set_size(drc_indexes
, 1);
742 drc_power_domains
= g_array_new(false, true, sizeof(uint32_t));
743 drc_power_domains
= g_array_set_size(drc_power_domains
, 1);
744 drc_names
= g_string_set_size(g_string_new(NULL
), sizeof(uint32_t));
745 drc_types
= g_string_set_size(g_string_new(NULL
), sizeof(uint32_t));
747 /* aliases for all DRConnector objects will be rooted in QOM
748 * composition tree at DRC_CONTAINER_PATH
750 root_container
= container_get(object_get_root(), DRC_CONTAINER_PATH
);
752 object_property_iter_init(&iter
, root_container
);
753 while ((prop
= object_property_iter_next(&iter
))) {
755 sPAPRDRConnector
*drc
;
756 sPAPRDRConnectorClass
*drck
;
757 uint32_t drc_index
, drc_power_domain
;
759 if (!strstart(prop
->type
, "link<", NULL
)) {
763 obj
= object_property_get_link(root_container
, prop
->name
, NULL
);
764 drc
= SPAPR_DR_CONNECTOR(obj
);
765 drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
767 if (owner
&& (drc
->owner
!= owner
)) {
771 if ((drc
->type
& drc_type_mask
) == 0) {
777 /* ibm,drc-indexes */
778 drc_index
= cpu_to_be32(drck
->get_index(drc
));
779 g_array_append_val(drc_indexes
, drc_index
);
781 /* ibm,drc-power-domains */
782 drc_power_domain
= cpu_to_be32(-1);
783 g_array_append_val(drc_power_domains
, drc_power_domain
);
786 drc_names
= g_string_append(drc_names
, drck
->get_name(drc
));
787 drc_names
= g_string_insert_len(drc_names
, -1, "\0", 1);
790 drc_types
= g_string_append(drc_types
,
791 spapr_drc_get_type_str(drc
->type
));
792 drc_types
= g_string_insert_len(drc_types
, -1, "\0", 1);
795 /* now write the drc count into the space we reserved at the
796 * beginning of the arrays previously
798 *(uint32_t *)drc_indexes
->data
= cpu_to_be32(drc_count
);
799 *(uint32_t *)drc_power_domains
->data
= cpu_to_be32(drc_count
);
800 *(uint32_t *)drc_names
->str
= cpu_to_be32(drc_count
);
801 *(uint32_t *)drc_types
->str
= cpu_to_be32(drc_count
);
803 ret
= fdt_setprop(fdt
, fdt_offset
, "ibm,drc-indexes",
805 drc_indexes
->len
* sizeof(uint32_t));
807 fprintf(stderr
, "Couldn't create ibm,drc-indexes property\n");
811 ret
= fdt_setprop(fdt
, fdt_offset
, "ibm,drc-power-domains",
812 drc_power_domains
->data
,
813 drc_power_domains
->len
* sizeof(uint32_t));
815 fprintf(stderr
, "Couldn't finalize ibm,drc-power-domains property\n");
819 ret
= fdt_setprop(fdt
, fdt_offset
, "ibm,drc-names",
820 drc_names
->str
, drc_names
->len
);
822 fprintf(stderr
, "Couldn't finalize ibm,drc-names property\n");
826 ret
= fdt_setprop(fdt
, fdt_offset
, "ibm,drc-types",
827 drc_types
->str
, drc_types
->len
);
829 fprintf(stderr
, "Couldn't finalize ibm,drc-types property\n");
834 g_array_free(drc_indexes
, true);
835 g_array_free(drc_power_domains
, true);
836 g_string_free(drc_names
, true);
837 g_string_free(drc_types
, true);