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 */
23 #include "hw/pci-host/spapr.h" /* spapr_phb_remove_pci_device_cb callback */
26 #define DRC_CONTAINER_PATH "/dr-connector"
27 #define DRC_INDEX_TYPE_SHIFT 28
28 #define DRC_INDEX_ID_MASK ((1ULL << DRC_INDEX_TYPE_SHIFT) - 1)
30 static sPAPRDRConnectorTypeShift
get_type_shift(sPAPRDRConnectorType type
)
34 /* make sure this isn't SPAPR_DR_CONNECTOR_TYPE_ANY, or some
37 g_assert(is_power_of_2(type
));
39 while (type
!= (1 << shift
)) {
45 static uint32_t get_index(sPAPRDRConnector
*drc
)
47 /* no set format for a drc index: it only needs to be globally
48 * unique. this is how we encode the DRC type on bare-metal
49 * however, so might as well do that here
51 return (get_type_shift(drc
->type
) << DRC_INDEX_TYPE_SHIFT
) |
52 (drc
->id
& DRC_INDEX_ID_MASK
);
55 static uint32_t set_isolation_state(sPAPRDRConnector
*drc
,
56 sPAPRDRIsolationState state
)
58 sPAPRDRConnectorClass
*drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
60 trace_spapr_drc_set_isolation_state(get_index(drc
), state
);
62 if (state
== SPAPR_DR_ISOLATION_STATE_UNISOLATED
) {
63 /* cannot unisolate a non-existent resource, and, or resources
64 * which are in an 'UNUSABLE' allocation state. (PAPR 2.7, 13.5.3.5)
67 drc
->allocation_state
== SPAPR_DR_ALLOCATION_STATE_UNUSABLE
) {
68 return RTAS_OUT_NO_SUCH_INDICATOR
;
73 * Fail any requests to ISOLATE the LMB DRC if this LMB doesn't
74 * belong to a DIMM device that is marked for removal.
76 * Currently the guest userspace tool drmgr that drives the memory
77 * hotplug/unplug will just try to remove a set of 'removable' LMBs
78 * in response to a hot unplug request that is based on drc-count.
79 * If the LMB being removed doesn't belong to a DIMM device that is
80 * actually being unplugged, fail the isolation request here.
82 if (drc
->type
== SPAPR_DR_CONNECTOR_TYPE_LMB
) {
83 if ((state
== SPAPR_DR_ISOLATION_STATE_ISOLATED
) &&
84 !drc
->awaiting_release
) {
85 return RTAS_OUT_HW_ERROR
;
89 drc
->isolation_state
= state
;
91 if (drc
->isolation_state
== SPAPR_DR_ISOLATION_STATE_ISOLATED
) {
92 /* if we're awaiting release, but still in an unconfigured state,
93 * it's likely the guest is still in the process of configuring
94 * the device and is transitioning the devices to an ISOLATED
95 * state as a part of that process. so we only complete the
96 * removal when this transition happens for a device in a
97 * configured state, as suggested by the state diagram from
100 if (drc
->awaiting_release
) {
101 if (drc
->configured
) {
102 trace_spapr_drc_set_isolation_state_finalizing(get_index(drc
));
103 drck
->detach(drc
, DEVICE(drc
->dev
), NULL
);
105 trace_spapr_drc_set_isolation_state_deferring(get_index(drc
));
108 drc
->configured
= false;
111 return RTAS_OUT_SUCCESS
;
114 static uint32_t set_indicator_state(sPAPRDRConnector
*drc
,
115 sPAPRDRIndicatorState state
)
117 trace_spapr_drc_set_indicator_state(get_index(drc
), state
);
118 drc
->indicator_state
= state
;
119 return RTAS_OUT_SUCCESS
;
122 static uint32_t set_allocation_state(sPAPRDRConnector
*drc
,
123 sPAPRDRAllocationState state
)
125 sPAPRDRConnectorClass
*drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
127 trace_spapr_drc_set_allocation_state(get_index(drc
), state
);
129 if (state
== SPAPR_DR_ALLOCATION_STATE_USABLE
) {
130 /* if there's no resource/device associated with the DRC, there's
131 * no way for us to put it in an allocation state consistent with
132 * being 'USABLE'. PAPR 2.7, 13.5.3.4 documents that this should
133 * result in an RTAS return code of -3 / "no such indicator"
136 return RTAS_OUT_NO_SUCH_INDICATOR
;
138 if (drc
->awaiting_release
&& drc
->awaiting_allocation
) {
139 /* kernel is acknowledging a previous hotplug event
140 * while we are already removing it.
141 * it's safe to ignore awaiting_allocation here since we know the
142 * situation is predicated on the guest either already having done
143 * so (boot-time hotplug), or never being able to acquire in the
144 * first place (hotplug followed by immediate unplug).
146 drc
->awaiting_allocation_skippable
= true;
147 return RTAS_OUT_NO_SUCH_INDICATOR
;
151 if (drc
->type
!= SPAPR_DR_CONNECTOR_TYPE_PCI
) {
152 drc
->allocation_state
= state
;
153 if (drc
->awaiting_release
&&
154 drc
->allocation_state
== SPAPR_DR_ALLOCATION_STATE_UNUSABLE
) {
155 trace_spapr_drc_set_allocation_state_finalizing(get_index(drc
));
156 drck
->detach(drc
, DEVICE(drc
->dev
), NULL
);
157 } else if (drc
->allocation_state
== SPAPR_DR_ALLOCATION_STATE_USABLE
) {
158 drc
->awaiting_allocation
= false;
161 return RTAS_OUT_SUCCESS
;
164 static uint32_t get_type(sPAPRDRConnector
*drc
)
169 static const char *get_name(sPAPRDRConnector
*drc
)
174 static const void *get_fdt(sPAPRDRConnector
*drc
, int *fdt_start_offset
)
176 if (fdt_start_offset
) {
177 *fdt_start_offset
= drc
->fdt_start_offset
;
182 static void set_configured(sPAPRDRConnector
*drc
)
184 trace_spapr_drc_set_configured(get_index(drc
));
186 if (drc
->isolation_state
!= SPAPR_DR_ISOLATION_STATE_UNISOLATED
) {
187 /* guest should be not configuring an isolated device */
188 trace_spapr_drc_set_configured_skipping(get_index(drc
));
191 drc
->configured
= true;
194 /* has the guest been notified of device attachment? */
195 static void set_signalled(sPAPRDRConnector
*drc
)
197 drc
->signalled
= true;
201 * dr-entity-sense sensor value
202 * returned via get-sensor-state RTAS calls
203 * as expected by state diagram in PAPR+ 2.7, 13.4
204 * based on the current allocation/indicator/power states
205 * for the DR connector.
207 static uint32_t entity_sense(sPAPRDRConnector
*drc
, sPAPRDREntitySense
*state
)
210 if (drc
->type
!= SPAPR_DR_CONNECTOR_TYPE_PCI
&&
211 drc
->allocation_state
== SPAPR_DR_ALLOCATION_STATE_UNUSABLE
) {
212 /* for logical DR, we return a state of UNUSABLE
213 * iff the allocation state UNUSABLE.
214 * Otherwise, report the state as USABLE/PRESENT,
215 * as we would for PCI.
217 *state
= SPAPR_DR_ENTITY_SENSE_UNUSABLE
;
219 /* this assumes all PCI devices are assigned to
220 * a 'live insertion' power domain, where QEMU
221 * manages power state automatically as opposed
222 * to the guest. present, non-PCI resources are
223 * unaffected by power state.
225 *state
= SPAPR_DR_ENTITY_SENSE_PRESENT
;
228 if (drc
->type
== SPAPR_DR_CONNECTOR_TYPE_PCI
) {
229 /* PCI devices, and only PCI devices, use EMPTY
230 * in cases where we'd otherwise use UNUSABLE
232 *state
= SPAPR_DR_ENTITY_SENSE_EMPTY
;
234 *state
= SPAPR_DR_ENTITY_SENSE_UNUSABLE
;
238 trace_spapr_drc_entity_sense(get_index(drc
), *state
);
239 return RTAS_OUT_SUCCESS
;
242 static void prop_get_index(Object
*obj
, Visitor
*v
, const char *name
,
243 void *opaque
, Error
**errp
)
245 sPAPRDRConnector
*drc
= SPAPR_DR_CONNECTOR(obj
);
246 sPAPRDRConnectorClass
*drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
247 uint32_t value
= (uint32_t)drck
->get_index(drc
);
248 visit_type_uint32(v
, name
, &value
, errp
);
251 static void prop_get_type(Object
*obj
, Visitor
*v
, const char *name
,
252 void *opaque
, Error
**errp
)
254 sPAPRDRConnector
*drc
= SPAPR_DR_CONNECTOR(obj
);
255 sPAPRDRConnectorClass
*drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
256 uint32_t value
= (uint32_t)drck
->get_type(drc
);
257 visit_type_uint32(v
, name
, &value
, errp
);
260 static char *prop_get_name(Object
*obj
, Error
**errp
)
262 sPAPRDRConnector
*drc
= SPAPR_DR_CONNECTOR(obj
);
263 sPAPRDRConnectorClass
*drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
264 return g_strdup(drck
->get_name(drc
));
267 static void prop_get_entity_sense(Object
*obj
, Visitor
*v
, const char *name
,
268 void *opaque
, Error
**errp
)
270 sPAPRDRConnector
*drc
= SPAPR_DR_CONNECTOR(obj
);
271 sPAPRDRConnectorClass
*drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
274 drck
->entity_sense(drc
, &value
);
275 visit_type_uint32(v
, name
, &value
, errp
);
278 static void prop_get_fdt(Object
*obj
, Visitor
*v
, const char *name
,
279 void *opaque
, Error
**errp
)
281 sPAPRDRConnector
*drc
= SPAPR_DR_CONNECTOR(obj
);
283 int fdt_offset_next
, fdt_offset
, fdt_depth
;
287 visit_type_null(v
, NULL
, errp
);
292 fdt_offset
= drc
->fdt_start_offset
;
296 const char *name
= NULL
;
297 const struct fdt_property
*prop
= NULL
;
298 int prop_len
= 0, name_len
= 0;
301 tag
= fdt_next_tag(fdt
, fdt_offset
, &fdt_offset_next
);
305 name
= fdt_get_name(fdt
, fdt_offset
, &name_len
);
306 visit_start_struct(v
, name
, NULL
, 0, &err
);
308 error_propagate(errp
, err
);
313 /* shouldn't ever see an FDT_END_NODE before FDT_BEGIN_NODE */
314 g_assert(fdt_depth
> 0);
315 visit_check_struct(v
, &err
);
316 visit_end_struct(v
, NULL
);
318 error_propagate(errp
, err
);
325 prop
= fdt_get_property_by_offset(fdt
, fdt_offset
, &prop_len
);
326 name
= fdt_string(fdt
, fdt32_to_cpu(prop
->nameoff
));
327 visit_start_list(v
, name
, NULL
, 0, &err
);
329 error_propagate(errp
, err
);
332 for (i
= 0; i
< prop_len
; i
++) {
333 visit_type_uint8(v
, NULL
, (uint8_t *)&prop
->data
[i
], &err
);
335 error_propagate(errp
, err
);
339 visit_check_list(v
, &err
);
340 visit_end_list(v
, NULL
);
342 error_propagate(errp
, err
);
348 error_setg(&error_abort
, "device FDT in unexpected state: %d", tag
);
350 fdt_offset
= fdt_offset_next
;
351 } while (fdt_depth
!= 0);
354 static void attach(sPAPRDRConnector
*drc
, DeviceState
*d
, void *fdt
,
355 int fdt_start_offset
, bool coldplug
, Error
**errp
)
357 trace_spapr_drc_attach(get_index(drc
));
359 if (drc
->isolation_state
!= SPAPR_DR_ISOLATION_STATE_ISOLATED
) {
360 error_setg(errp
, "an attached device is still awaiting release");
363 if (drc
->type
== SPAPR_DR_CONNECTOR_TYPE_PCI
) {
364 g_assert(drc
->allocation_state
== SPAPR_DR_ALLOCATION_STATE_USABLE
);
366 g_assert(fdt
|| coldplug
);
368 /* NOTE: setting initial isolation state to UNISOLATED means we can't
369 * detach unless guest has a userspace/kernel that moves this state
370 * back to ISOLATED in response to an unplug event, or this is done
371 * manually by the admin prior. if we force things while the guest
372 * may be accessing the device, we can easily crash the guest, so we
373 * we defer completion of removal in such cases to the reset() hook.
375 if (drc
->type
== SPAPR_DR_CONNECTOR_TYPE_PCI
) {
376 drc
->isolation_state
= SPAPR_DR_ISOLATION_STATE_UNISOLATED
;
378 drc
->indicator_state
= SPAPR_DR_INDICATOR_STATE_ACTIVE
;
382 drc
->fdt_start_offset
= fdt_start_offset
;
383 drc
->configured
= coldplug
;
384 /* 'logical' DR resources such as memory/cpus are in some cases treated
385 * as a pool of resources from which the guest is free to choose from
386 * based on only a count. for resources that can be assigned in this
387 * fashion, we must assume the resource is signalled immediately
388 * since a single hotplug request might make an arbitrary number of
389 * such attached resources available to the guest, as opposed to
390 * 'physical' DR resources such as PCI where each device/resource is
391 * signalled individually.
393 drc
->signalled
= (drc
->type
!= SPAPR_DR_CONNECTOR_TYPE_PCI
)
396 if (drc
->type
!= SPAPR_DR_CONNECTOR_TYPE_PCI
) {
397 drc
->awaiting_allocation
= true;
400 object_property_add_link(OBJECT(drc
), "device",
401 object_get_typename(OBJECT(drc
->dev
)),
402 (Object
**)(&drc
->dev
),
406 static void detach(sPAPRDRConnector
*drc
, DeviceState
*d
, Error
**errp
)
408 trace_spapr_drc_detach(get_index(drc
));
410 /* if we've signalled device presence to the guest, or if the guest
411 * has gone ahead and configured the device (via manually-executed
412 * device add via drmgr in guest, namely), we need to wait
413 * for the guest to quiesce the device before completing detach.
414 * Otherwise, we can assume the guest hasn't seen it and complete the
415 * detach immediately. Note that there is a small race window
416 * just before, or during, configuration, which is this context
417 * refers mainly to fetching the device tree via RTAS.
418 * During this window the device access will be arbitrated by
419 * associated DRC, which will simply fail the RTAS calls as invalid.
420 * This is recoverable within guest and current implementations of
421 * drmgr should be able to cope.
423 if (!drc
->signalled
&& !drc
->configured
) {
424 /* if the guest hasn't seen the device we can't rely on it to
425 * set it back to an isolated state via RTAS, so do it here manually
427 drc
->isolation_state
= SPAPR_DR_ISOLATION_STATE_ISOLATED
;
430 if (drc
->isolation_state
!= SPAPR_DR_ISOLATION_STATE_ISOLATED
) {
431 trace_spapr_drc_awaiting_isolated(get_index(drc
));
432 drc
->awaiting_release
= true;
436 if (drc
->type
!= SPAPR_DR_CONNECTOR_TYPE_PCI
&&
437 drc
->allocation_state
!= SPAPR_DR_ALLOCATION_STATE_UNUSABLE
) {
438 trace_spapr_drc_awaiting_unusable(get_index(drc
));
439 drc
->awaiting_release
= true;
443 if (drc
->awaiting_allocation
) {
444 if (!drc
->awaiting_allocation_skippable
) {
445 drc
->awaiting_release
= true;
446 trace_spapr_drc_awaiting_allocation(get_index(drc
));
451 drc
->indicator_state
= SPAPR_DR_INDICATOR_STATE_INACTIVE
;
453 /* Calling release callbacks based on drc->type. */
455 case SPAPR_DR_CONNECTOR_TYPE_CPU
:
456 spapr_core_release(drc
->dev
);
458 case SPAPR_DR_CONNECTOR_TYPE_PCI
:
459 spapr_phb_remove_pci_device_cb(drc
->dev
);
461 case SPAPR_DR_CONNECTOR_TYPE_LMB
:
462 spapr_lmb_release(drc
->dev
);
464 case SPAPR_DR_CONNECTOR_TYPE_PHB
:
465 case SPAPR_DR_CONNECTOR_TYPE_VIO
:
470 drc
->awaiting_release
= false;
471 drc
->awaiting_allocation_skippable
= false;
474 drc
->fdt_start_offset
= 0;
475 object_property_del(OBJECT(drc
), "device", NULL
);
479 static bool release_pending(sPAPRDRConnector
*drc
)
481 return drc
->awaiting_release
;
484 static void reset(DeviceState
*d
)
486 sPAPRDRConnector
*drc
= SPAPR_DR_CONNECTOR(d
);
487 sPAPRDRConnectorClass
*drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
488 sPAPRDREntitySense state
;
490 trace_spapr_drc_reset(drck
->get_index(drc
));
491 /* immediately upon reset we can safely assume DRCs whose devices
492 * are pending removal can be safely removed, and that they will
493 * subsequently be left in an ISOLATED state. move the DRC to this
494 * state in these cases (which will in turn complete any pending
497 if (drc
->awaiting_release
) {
498 drck
->set_isolation_state(drc
, SPAPR_DR_ISOLATION_STATE_ISOLATED
);
499 /* generally this should also finalize the removal, but if the device
500 * hasn't yet been configured we normally defer removal under the
501 * assumption that this transition is taking place as part of device
502 * configuration. so check if we're still waiting after this, and
503 * force removal if we are
505 if (drc
->awaiting_release
) {
506 drck
->detach(drc
, DEVICE(drc
->dev
), NULL
);
509 /* non-PCI devices may be awaiting a transition to UNUSABLE */
510 if (drc
->type
!= SPAPR_DR_CONNECTOR_TYPE_PCI
&&
511 drc
->awaiting_release
) {
512 drck
->set_allocation_state(drc
, SPAPR_DR_ALLOCATION_STATE_UNUSABLE
);
516 drck
->entity_sense(drc
, &state
);
517 if (state
== SPAPR_DR_ENTITY_SENSE_PRESENT
) {
518 drck
->set_signalled(drc
);
522 static bool spapr_drc_needed(void *opaque
)
524 sPAPRDRConnector
*drc
= (sPAPRDRConnector
*)opaque
;
525 sPAPRDRConnectorClass
*drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
527 sPAPRDREntitySense value
;
528 drck
->entity_sense(drc
, &value
);
530 /* If no dev is plugged in there is no need to migrate the DRC state */
531 if (value
!= SPAPR_DR_ENTITY_SENSE_PRESENT
) {
536 * If there is dev plugged in, we need to migrate the DRC state when
537 * it is different from cold-plugged state
540 case SPAPR_DR_CONNECTOR_TYPE_PCI
:
541 rc
= !((drc
->isolation_state
== SPAPR_DR_ISOLATION_STATE_UNISOLATED
) &&
542 (drc
->allocation_state
== SPAPR_DR_ALLOCATION_STATE_USABLE
) &&
543 drc
->configured
&& drc
->signalled
&& !drc
->awaiting_release
);
545 case SPAPR_DR_CONNECTOR_TYPE_CPU
:
546 case SPAPR_DR_CONNECTOR_TYPE_LMB
:
547 rc
= !((drc
->isolation_state
== SPAPR_DR_ISOLATION_STATE_ISOLATED
) &&
548 (drc
->allocation_state
== SPAPR_DR_ALLOCATION_STATE_UNUSABLE
) &&
549 drc
->configured
&& drc
->signalled
&& !drc
->awaiting_release
);
551 case SPAPR_DR_CONNECTOR_TYPE_PHB
:
552 case SPAPR_DR_CONNECTOR_TYPE_VIO
:
559 static const VMStateDescription vmstate_spapr_drc
= {
562 .minimum_version_id
= 1,
563 .needed
= spapr_drc_needed
,
564 .fields
= (VMStateField
[]) {
565 VMSTATE_UINT32(isolation_state
, sPAPRDRConnector
),
566 VMSTATE_UINT32(allocation_state
, sPAPRDRConnector
),
567 VMSTATE_UINT32(indicator_state
, sPAPRDRConnector
),
568 VMSTATE_BOOL(configured
, sPAPRDRConnector
),
569 VMSTATE_BOOL(awaiting_release
, sPAPRDRConnector
),
570 VMSTATE_BOOL(awaiting_allocation
, sPAPRDRConnector
),
571 VMSTATE_BOOL(signalled
, sPAPRDRConnector
),
572 VMSTATE_END_OF_LIST()
576 static void realize(DeviceState
*d
, Error
**errp
)
578 sPAPRDRConnector
*drc
= SPAPR_DR_CONNECTOR(d
);
579 sPAPRDRConnectorClass
*drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
580 Object
*root_container
;
585 trace_spapr_drc_realize(drck
->get_index(drc
));
586 /* NOTE: we do this as part of realize/unrealize due to the fact
587 * that the guest will communicate with the DRC via RTAS calls
588 * referencing the global DRC index. By unlinking the DRC
589 * from DRC_CONTAINER_PATH/<drc_index> we effectively make it
590 * inaccessible by the guest, since lookups rely on this path
591 * existing in the composition tree
593 root_container
= container_get(object_get_root(), DRC_CONTAINER_PATH
);
594 snprintf(link_name
, sizeof(link_name
), "%x", drck
->get_index(drc
));
595 child_name
= object_get_canonical_path_component(OBJECT(drc
));
596 trace_spapr_drc_realize_child(drck
->get_index(drc
), child_name
);
597 object_property_add_alias(root_container
, link_name
,
598 drc
->owner
, child_name
, &err
);
600 error_report_err(err
);
601 object_unref(OBJECT(drc
));
604 vmstate_register(DEVICE(drc
), drck
->get_index(drc
), &vmstate_spapr_drc
,
606 trace_spapr_drc_realize_complete(drck
->get_index(drc
));
609 static void unrealize(DeviceState
*d
, Error
**errp
)
611 sPAPRDRConnector
*drc
= SPAPR_DR_CONNECTOR(d
);
612 sPAPRDRConnectorClass
*drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
613 Object
*root_container
;
617 trace_spapr_drc_unrealize(drck
->get_index(drc
));
618 root_container
= container_get(object_get_root(), DRC_CONTAINER_PATH
);
619 snprintf(name
, sizeof(name
), "%x", drck
->get_index(drc
));
620 object_property_del(root_container
, name
, &err
);
622 error_report_err(err
);
623 object_unref(OBJECT(drc
));
627 sPAPRDRConnector
*spapr_dr_connector_new(Object
*owner
,
628 sPAPRDRConnectorType type
,
631 sPAPRDRConnector
*drc
=
632 SPAPR_DR_CONNECTOR(object_new(TYPE_SPAPR_DR_CONNECTOR
));
640 prop_name
= g_strdup_printf("dr-connector[%"PRIu32
"]", get_index(drc
));
641 object_property_add_child(owner
, prop_name
, OBJECT(drc
), NULL
);
642 object_property_set_bool(OBJECT(drc
), true, "realized", NULL
);
645 /* human-readable name for a DRC to encode into the DT
646 * description. this is mainly only used within a guest in place
647 * of the unique DRC index.
649 * in the case of VIO/PCI devices, it corresponds to a
650 * "location code" that maps a logical device/function (DRC index)
651 * to a physical (or virtual in the case of VIO) location in the
652 * system by chaining together the "location label" for each
653 * encapsulating component.
655 * since this is more to do with diagnosing physical hardware
656 * issues than guest compatibility, we choose location codes/DRC
657 * names that adhere to the documented format, but avoid encoding
658 * the entire topology information into the label/code, instead
659 * just using the location codes based on the labels for the
660 * endpoints (VIO/PCI adaptor connectors), which is basically
661 * just "C" followed by an integer ID.
663 * DRC names as documented by PAPR+ v2.7, 13.5.2.4
664 * location codes as documented by PAPR+ v2.7, 12.3.1.5
667 case SPAPR_DR_CONNECTOR_TYPE_CPU
:
668 drc
->name
= g_strdup_printf("CPU %d", id
);
670 case SPAPR_DR_CONNECTOR_TYPE_PHB
:
671 drc
->name
= g_strdup_printf("PHB %d", id
);
673 case SPAPR_DR_CONNECTOR_TYPE_VIO
:
674 case SPAPR_DR_CONNECTOR_TYPE_PCI
:
675 drc
->name
= g_strdup_printf("C%d", id
);
677 case SPAPR_DR_CONNECTOR_TYPE_LMB
:
678 drc
->name
= g_strdup_printf("LMB %d", id
);
684 /* PCI slot always start in a USABLE state, and stay there */
685 if (drc
->type
== SPAPR_DR_CONNECTOR_TYPE_PCI
) {
686 drc
->allocation_state
= SPAPR_DR_ALLOCATION_STATE_USABLE
;
692 static void spapr_dr_connector_instance_init(Object
*obj
)
694 sPAPRDRConnector
*drc
= SPAPR_DR_CONNECTOR(obj
);
696 object_property_add_uint32_ptr(obj
, "isolation-state",
697 &drc
->isolation_state
, NULL
);
698 object_property_add_uint32_ptr(obj
, "indicator-state",
699 &drc
->indicator_state
, NULL
);
700 object_property_add_uint32_ptr(obj
, "allocation-state",
701 &drc
->allocation_state
, NULL
);
702 object_property_add_uint32_ptr(obj
, "id", &drc
->id
, NULL
);
703 object_property_add(obj
, "index", "uint32", prop_get_index
,
704 NULL
, NULL
, NULL
, NULL
);
705 object_property_add(obj
, "connector_type", "uint32", prop_get_type
,
706 NULL
, NULL
, NULL
, NULL
);
707 object_property_add_str(obj
, "name", prop_get_name
, NULL
, NULL
);
708 object_property_add(obj
, "entity-sense", "uint32", prop_get_entity_sense
,
709 NULL
, NULL
, NULL
, NULL
);
710 object_property_add(obj
, "fdt", "struct", prop_get_fdt
,
711 NULL
, NULL
, NULL
, NULL
);
714 static void spapr_dr_connector_class_init(ObjectClass
*k
, void *data
)
716 DeviceClass
*dk
= DEVICE_CLASS(k
);
717 sPAPRDRConnectorClass
*drck
= SPAPR_DR_CONNECTOR_CLASS(k
);
720 dk
->realize
= realize
;
721 dk
->unrealize
= unrealize
;
722 drck
->set_isolation_state
= set_isolation_state
;
723 drck
->set_indicator_state
= set_indicator_state
;
724 drck
->set_allocation_state
= set_allocation_state
;
725 drck
->get_index
= get_index
;
726 drck
->get_type
= get_type
;
727 drck
->get_name
= get_name
;
728 drck
->get_fdt
= get_fdt
;
729 drck
->set_configured
= set_configured
;
730 drck
->entity_sense
= entity_sense
;
731 drck
->attach
= attach
;
732 drck
->detach
= detach
;
733 drck
->release_pending
= release_pending
;
734 drck
->set_signalled
= set_signalled
;
736 * Reason: it crashes FIXME find and document the real reason
738 dk
->user_creatable
= false;
741 static const TypeInfo spapr_dr_connector_info
= {
742 .name
= TYPE_SPAPR_DR_CONNECTOR
,
743 .parent
= TYPE_DEVICE
,
744 .instance_size
= sizeof(sPAPRDRConnector
),
745 .instance_init
= spapr_dr_connector_instance_init
,
746 .class_size
= sizeof(sPAPRDRConnectorClass
),
747 .class_init
= spapr_dr_connector_class_init
,
750 static void spapr_drc_register_types(void)
752 type_register_static(&spapr_dr_connector_info
);
755 type_init(spapr_drc_register_types
)
757 /* helper functions for external users */
759 sPAPRDRConnector
*spapr_dr_connector_by_index(uint32_t index
)
764 snprintf(name
, sizeof(name
), "%s/%x", DRC_CONTAINER_PATH
, index
);
765 obj
= object_resolve_path(name
, NULL
);
767 return !obj
? NULL
: SPAPR_DR_CONNECTOR(obj
);
770 sPAPRDRConnector
*spapr_dr_connector_by_id(sPAPRDRConnectorType type
,
773 return spapr_dr_connector_by_index(
774 (get_type_shift(type
) << DRC_INDEX_TYPE_SHIFT
) |
775 (id
& DRC_INDEX_ID_MASK
));
778 /* generate a string the describes the DRC to encode into the
781 * as documented by PAPR+ v2.7, 13.5.2.6 and C.6.1
783 static const char *spapr_drc_get_type_str(sPAPRDRConnectorType type
)
786 case SPAPR_DR_CONNECTOR_TYPE_CPU
:
788 case SPAPR_DR_CONNECTOR_TYPE_PHB
:
790 case SPAPR_DR_CONNECTOR_TYPE_VIO
:
792 case SPAPR_DR_CONNECTOR_TYPE_PCI
:
794 case SPAPR_DR_CONNECTOR_TYPE_LMB
:
804 * spapr_drc_populate_dt
806 * @fdt: libfdt device tree
807 * @path: path in the DT to generate properties
808 * @owner: parent Object/DeviceState for which to generate DRC
810 * @drc_type_mask: mask of sPAPRDRConnectorType values corresponding
811 * to the types of DRCs to generate entries for
813 * generate OF properties to describe DRC topology/indices to guests
815 * as documented in PAPR+ v2.1, 13.5.2
817 int spapr_drc_populate_dt(void *fdt
, int fdt_offset
, Object
*owner
,
818 uint32_t drc_type_mask
)
820 Object
*root_container
;
821 ObjectProperty
*prop
;
822 ObjectPropertyIterator iter
;
823 uint32_t drc_count
= 0;
824 GArray
*drc_indexes
, *drc_power_domains
;
825 GString
*drc_names
, *drc_types
;
828 /* the first entry of each properties is a 32-bit integer encoding
829 * the number of elements in the array. we won't know this until
830 * we complete the iteration through all the matching DRCs, but
831 * reserve the space now and set the offsets accordingly so we
832 * can fill them in later.
834 drc_indexes
= g_array_new(false, true, sizeof(uint32_t));
835 drc_indexes
= g_array_set_size(drc_indexes
, 1);
836 drc_power_domains
= g_array_new(false, true, sizeof(uint32_t));
837 drc_power_domains
= g_array_set_size(drc_power_domains
, 1);
838 drc_names
= g_string_set_size(g_string_new(NULL
), sizeof(uint32_t));
839 drc_types
= g_string_set_size(g_string_new(NULL
), sizeof(uint32_t));
841 /* aliases for all DRConnector objects will be rooted in QOM
842 * composition tree at DRC_CONTAINER_PATH
844 root_container
= container_get(object_get_root(), DRC_CONTAINER_PATH
);
846 object_property_iter_init(&iter
, root_container
);
847 while ((prop
= object_property_iter_next(&iter
))) {
849 sPAPRDRConnector
*drc
;
850 sPAPRDRConnectorClass
*drck
;
851 uint32_t drc_index
, drc_power_domain
;
853 if (!strstart(prop
->type
, "link<", NULL
)) {
857 obj
= object_property_get_link(root_container
, prop
->name
, NULL
);
858 drc
= SPAPR_DR_CONNECTOR(obj
);
859 drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
861 if (owner
&& (drc
->owner
!= owner
)) {
865 if ((drc
->type
& drc_type_mask
) == 0) {
871 /* ibm,drc-indexes */
872 drc_index
= cpu_to_be32(drck
->get_index(drc
));
873 g_array_append_val(drc_indexes
, drc_index
);
875 /* ibm,drc-power-domains */
876 drc_power_domain
= cpu_to_be32(-1);
877 g_array_append_val(drc_power_domains
, drc_power_domain
);
880 drc_names
= g_string_append(drc_names
, drck
->get_name(drc
));
881 drc_names
= g_string_insert_len(drc_names
, -1, "\0", 1);
884 drc_types
= g_string_append(drc_types
,
885 spapr_drc_get_type_str(drc
->type
));
886 drc_types
= g_string_insert_len(drc_types
, -1, "\0", 1);
889 /* now write the drc count into the space we reserved at the
890 * beginning of the arrays previously
892 *(uint32_t *)drc_indexes
->data
= cpu_to_be32(drc_count
);
893 *(uint32_t *)drc_power_domains
->data
= cpu_to_be32(drc_count
);
894 *(uint32_t *)drc_names
->str
= cpu_to_be32(drc_count
);
895 *(uint32_t *)drc_types
->str
= cpu_to_be32(drc_count
);
897 ret
= fdt_setprop(fdt
, fdt_offset
, "ibm,drc-indexes",
899 drc_indexes
->len
* sizeof(uint32_t));
901 error_report("Couldn't create ibm,drc-indexes property");
905 ret
= fdt_setprop(fdt
, fdt_offset
, "ibm,drc-power-domains",
906 drc_power_domains
->data
,
907 drc_power_domains
->len
* sizeof(uint32_t));
909 error_report("Couldn't finalize ibm,drc-power-domains property");
913 ret
= fdt_setprop(fdt
, fdt_offset
, "ibm,drc-names",
914 drc_names
->str
, drc_names
->len
);
916 error_report("Couldn't finalize ibm,drc-names property");
920 ret
= fdt_setprop(fdt
, fdt_offset
, "ibm,drc-types",
921 drc_types
->str
, drc_types
->len
);
923 error_report("Couldn't finalize ibm,drc-types property");
928 g_array_free(drc_indexes
, true);
929 g_array_free(drc_power_domains
, true);
930 g_string_free(drc_names
, true);
931 g_string_free(drc_types
, true);