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"
15 #include "qapi/qmp/qnull.h"
16 #include "qemu/cutils.h"
17 #include "hw/ppc/spapr_drc.h"
18 #include "qom/object.h"
19 #include "migration/vmstate.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 */
24 #include "hw/ppc/spapr_nvdimm.h"
25 #include "sysemu/device_tree.h"
26 #include "sysemu/reset.h"
29 #define DRC_CONTAINER_PATH "/dr-connector"
30 #define DRC_INDEX_TYPE_SHIFT 28
31 #define DRC_INDEX_ID_MASK ((1ULL << DRC_INDEX_TYPE_SHIFT) - 1)
33 SpaprDrcType
spapr_drc_type(SpaprDrc
*drc
)
35 SpaprDrcClass
*drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
37 return 1 << drck
->typeshift
;
40 uint32_t spapr_drc_index(SpaprDrc
*drc
)
42 SpaprDrcClass
*drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
44 /* no set format for a drc index: it only needs to be globally
45 * unique. this is how we encode the DRC type on bare-metal
46 * however, so might as well do that here
48 return (drck
->typeshift
<< DRC_INDEX_TYPE_SHIFT
)
49 | (drc
->id
& DRC_INDEX_ID_MASK
);
52 static void spapr_drc_release(SpaprDrc
*drc
)
54 SpaprDrcClass
*drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
56 drck
->release(drc
->dev
);
58 drc
->unplug_requested
= false;
61 drc
->fdt_start_offset
= 0;
62 object_property_del(OBJECT(drc
), "device");
66 static uint32_t drc_isolate_physical(SpaprDrc
*drc
)
69 case SPAPR_DRC_STATE_PHYSICAL_POWERON
:
70 return RTAS_OUT_SUCCESS
; /* Nothing to do */
71 case SPAPR_DRC_STATE_PHYSICAL_CONFIGURED
:
72 break; /* see below */
73 case SPAPR_DRC_STATE_PHYSICAL_UNISOLATE
:
74 return RTAS_OUT_PARAM_ERROR
; /* not allowed */
76 g_assert_not_reached();
79 drc
->state
= SPAPR_DRC_STATE_PHYSICAL_POWERON
;
81 if (drc
->unplug_requested
) {
82 uint32_t drc_index
= spapr_drc_index(drc
);
83 trace_spapr_drc_set_isolation_state_finalizing(drc_index
);
84 spapr_drc_release(drc
);
87 return RTAS_OUT_SUCCESS
;
90 static uint32_t drc_unisolate_physical(SpaprDrc
*drc
)
93 case SPAPR_DRC_STATE_PHYSICAL_UNISOLATE
:
94 case SPAPR_DRC_STATE_PHYSICAL_CONFIGURED
:
95 return RTAS_OUT_SUCCESS
; /* Nothing to do */
96 case SPAPR_DRC_STATE_PHYSICAL_POWERON
:
97 break; /* see below */
99 g_assert_not_reached();
102 /* cannot unisolate a non-existent resource, and, or resources
103 * which are in an 'UNUSABLE' allocation state. (PAPR 2.7,
107 return RTAS_OUT_NO_SUCH_INDICATOR
;
110 drc
->state
= SPAPR_DRC_STATE_PHYSICAL_UNISOLATE
;
111 drc
->ccs_offset
= drc
->fdt_start_offset
;
114 return RTAS_OUT_SUCCESS
;
117 static uint32_t drc_isolate_logical(SpaprDrc
*drc
)
119 switch (drc
->state
) {
120 case SPAPR_DRC_STATE_LOGICAL_AVAILABLE
:
121 case SPAPR_DRC_STATE_LOGICAL_UNUSABLE
:
122 return RTAS_OUT_SUCCESS
; /* Nothing to do */
123 case SPAPR_DRC_STATE_LOGICAL_CONFIGURED
:
124 break; /* see below */
125 case SPAPR_DRC_STATE_LOGICAL_UNISOLATE
:
126 return RTAS_OUT_PARAM_ERROR
; /* not allowed */
128 g_assert_not_reached();
132 * Fail any requests to ISOLATE the LMB DRC if this LMB doesn't
133 * belong to a DIMM device that is marked for removal.
135 * Currently the guest userspace tool drmgr that drives the memory
136 * hotplug/unplug will just try to remove a set of 'removable' LMBs
137 * in response to a hot unplug request that is based on drc-count.
138 * If the LMB being removed doesn't belong to a DIMM device that is
139 * actually being unplugged, fail the isolation request here.
141 if (spapr_drc_type(drc
) == SPAPR_DR_CONNECTOR_TYPE_LMB
142 && !drc
->unplug_requested
) {
143 return RTAS_OUT_HW_ERROR
;
146 drc
->state
= SPAPR_DRC_STATE_LOGICAL_AVAILABLE
;
148 return RTAS_OUT_SUCCESS
;
151 static uint32_t drc_unisolate_logical(SpaprDrc
*drc
)
153 SpaprMachineState
*spapr
= NULL
;
155 switch (drc
->state
) {
156 case SPAPR_DRC_STATE_LOGICAL_UNISOLATE
:
157 case SPAPR_DRC_STATE_LOGICAL_CONFIGURED
:
159 * Unisolating a logical DRC that was marked for unplug
160 * means that the kernel is refusing the removal.
162 if (drc
->unplug_requested
&& drc
->dev
) {
163 if (spapr_drc_type(drc
) == SPAPR_DR_CONNECTOR_TYPE_LMB
) {
164 spapr
= SPAPR_MACHINE(qdev_get_machine());
166 spapr_memory_unplug_rollback(spapr
, drc
->dev
);
169 drc
->unplug_requested
= false;
170 error_report("Device hotunplug rejected by the guest "
171 "for device %s", drc
->dev
->id
);
174 * TODO: send a QAPI DEVICE_UNPLUG_ERROR event when
179 return RTAS_OUT_SUCCESS
; /* Nothing to do */
180 case SPAPR_DRC_STATE_LOGICAL_AVAILABLE
:
181 break; /* see below */
182 case SPAPR_DRC_STATE_LOGICAL_UNUSABLE
:
183 return RTAS_OUT_NO_SUCH_INDICATOR
; /* not allowed */
185 g_assert_not_reached();
188 /* Move to AVAILABLE state should have ensured device was present */
191 drc
->state
= SPAPR_DRC_STATE_LOGICAL_UNISOLATE
;
192 drc
->ccs_offset
= drc
->fdt_start_offset
;
195 return RTAS_OUT_SUCCESS
;
198 static uint32_t drc_set_usable(SpaprDrc
*drc
)
200 switch (drc
->state
) {
201 case SPAPR_DRC_STATE_LOGICAL_AVAILABLE
:
202 case SPAPR_DRC_STATE_LOGICAL_UNISOLATE
:
203 case SPAPR_DRC_STATE_LOGICAL_CONFIGURED
:
204 return RTAS_OUT_SUCCESS
; /* Nothing to do */
205 case SPAPR_DRC_STATE_LOGICAL_UNUSABLE
:
206 break; /* see below */
208 g_assert_not_reached();
211 /* if there's no resource/device associated with the DRC, there's
212 * no way for us to put it in an allocation state consistent with
213 * being 'USABLE'. PAPR 2.7, 13.5.3.4 documents that this should
214 * result in an RTAS return code of -3 / "no such indicator"
217 return RTAS_OUT_NO_SUCH_INDICATOR
;
219 if (drc
->unplug_requested
) {
220 /* Don't allow the guest to move a device away from UNUSABLE
221 * state when we want to unplug it */
222 return RTAS_OUT_NO_SUCH_INDICATOR
;
225 drc
->state
= SPAPR_DRC_STATE_LOGICAL_AVAILABLE
;
227 return RTAS_OUT_SUCCESS
;
230 static uint32_t drc_set_unusable(SpaprDrc
*drc
)
232 switch (drc
->state
) {
233 case SPAPR_DRC_STATE_LOGICAL_UNUSABLE
:
234 return RTAS_OUT_SUCCESS
; /* Nothing to do */
235 case SPAPR_DRC_STATE_LOGICAL_AVAILABLE
:
236 break; /* see below */
237 case SPAPR_DRC_STATE_LOGICAL_UNISOLATE
:
238 case SPAPR_DRC_STATE_LOGICAL_CONFIGURED
:
239 return RTAS_OUT_NO_SUCH_INDICATOR
; /* not allowed */
241 g_assert_not_reached();
244 drc
->state
= SPAPR_DRC_STATE_LOGICAL_UNUSABLE
;
245 if (drc
->unplug_requested
) {
246 uint32_t drc_index
= spapr_drc_index(drc
);
247 trace_spapr_drc_set_allocation_state_finalizing(drc_index
);
248 spapr_drc_release(drc
);
251 return RTAS_OUT_SUCCESS
;
254 static char *spapr_drc_name(SpaprDrc
*drc
)
256 SpaprDrcClass
*drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
258 /* human-readable name for a DRC to encode into the DT
259 * description. this is mainly only used within a guest in place
260 * of the unique DRC index.
262 * in the case of VIO/PCI devices, it corresponds to a "location
263 * code" that maps a logical device/function (DRC index) to a
264 * physical (or virtual in the case of VIO) location in the system
265 * by chaining together the "location label" for each
266 * encapsulating component.
268 * since this is more to do with diagnosing physical hardware
269 * issues than guest compatibility, we choose location codes/DRC
270 * names that adhere to the documented format, but avoid encoding
271 * the entire topology information into the label/code, instead
272 * just using the location codes based on the labels for the
273 * endpoints (VIO/PCI adaptor connectors), which is basically just
274 * "C" followed by an integer ID.
276 * DRC names as documented by PAPR+ v2.7, 13.5.2.4
277 * location codes as documented by PAPR+ v2.7, 12.3.1.5
279 return g_strdup_printf("%s%d", drck
->drc_name_prefix
, drc
->id
);
283 * dr-entity-sense sensor value
284 * returned via get-sensor-state RTAS calls
285 * as expected by state diagram in PAPR+ 2.7, 13.4
286 * based on the current allocation/indicator/power states
287 * for the DR connector.
289 static SpaprDREntitySense
physical_entity_sense(SpaprDrc
*drc
)
291 /* this assumes all PCI devices are assigned to a 'live insertion'
292 * power domain, where QEMU manages power state automatically as
293 * opposed to the guest. present, non-PCI resources are unaffected
296 return drc
->dev
? SPAPR_DR_ENTITY_SENSE_PRESENT
297 : SPAPR_DR_ENTITY_SENSE_EMPTY
;
300 static SpaprDREntitySense
logical_entity_sense(SpaprDrc
*drc
)
302 switch (drc
->state
) {
303 case SPAPR_DRC_STATE_LOGICAL_UNUSABLE
:
304 return SPAPR_DR_ENTITY_SENSE_UNUSABLE
;
305 case SPAPR_DRC_STATE_LOGICAL_AVAILABLE
:
306 case SPAPR_DRC_STATE_LOGICAL_UNISOLATE
:
307 case SPAPR_DRC_STATE_LOGICAL_CONFIGURED
:
309 return SPAPR_DR_ENTITY_SENSE_PRESENT
;
311 g_assert_not_reached();
315 static void prop_get_index(Object
*obj
, Visitor
*v
, const char *name
,
316 void *opaque
, Error
**errp
)
318 SpaprDrc
*drc
= SPAPR_DR_CONNECTOR(obj
);
319 uint32_t value
= spapr_drc_index(drc
);
320 visit_type_uint32(v
, name
, &value
, errp
);
323 static void prop_get_fdt(Object
*obj
, Visitor
*v
, const char *name
,
324 void *opaque
, Error
**errp
)
326 SpaprDrc
*drc
= SPAPR_DR_CONNECTOR(obj
);
328 int fdt_offset_next
, fdt_offset
, fdt_depth
;
332 visit_type_null(v
, NULL
, &null
, errp
);
338 fdt_offset
= drc
->fdt_start_offset
;
342 const char *name
= NULL
;
343 const struct fdt_property
*prop
= NULL
;
344 int prop_len
= 0, name_len
= 0;
348 tag
= fdt_next_tag(fdt
, fdt_offset
, &fdt_offset_next
);
352 name
= fdt_get_name(fdt
, fdt_offset
, &name_len
);
353 if (!visit_start_struct(v
, name
, NULL
, 0, errp
)) {
358 /* shouldn't ever see an FDT_END_NODE before FDT_BEGIN_NODE */
359 g_assert(fdt_depth
> 0);
360 ok
= visit_check_struct(v
, errp
);
361 visit_end_struct(v
, NULL
);
369 prop
= fdt_get_property_by_offset(fdt
, fdt_offset
, &prop_len
);
370 name
= fdt_string(fdt
, fdt32_to_cpu(prop
->nameoff
));
371 if (!visit_start_list(v
, name
, NULL
, 0, errp
)) {
374 for (i
= 0; i
< prop_len
; i
++) {
375 if (!visit_type_uint8(v
, NULL
, (uint8_t *)&prop
->data
[i
],
380 ok
= visit_check_list(v
, errp
);
381 visit_end_list(v
, NULL
);
388 error_report("device FDT in unexpected state: %d", tag
);
391 fdt_offset
= fdt_offset_next
;
392 } while (fdt_depth
!= 0);
395 void spapr_drc_attach(SpaprDrc
*drc
, DeviceState
*d
)
397 trace_spapr_drc_attach(spapr_drc_index(drc
));
400 g_assert((drc
->state
== SPAPR_DRC_STATE_LOGICAL_UNUSABLE
)
401 || (drc
->state
== SPAPR_DRC_STATE_PHYSICAL_POWERON
));
405 object_property_add_link(OBJECT(drc
), "device",
406 object_get_typename(OBJECT(drc
->dev
)),
407 (Object
**)(&drc
->dev
),
411 void spapr_drc_unplug_request(SpaprDrc
*drc
)
413 SpaprDrcClass
*drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
415 trace_spapr_drc_unplug_request(spapr_drc_index(drc
));
419 drc
->unplug_requested
= true;
421 if (drc
->state
!= drck
->empty_state
) {
422 trace_spapr_drc_awaiting_quiesce(spapr_drc_index(drc
));
426 spapr_drc_release(drc
);
429 bool spapr_drc_reset(SpaprDrc
*drc
)
431 SpaprDrcClass
*drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
432 bool unplug_completed
= false;
434 trace_spapr_drc_reset(spapr_drc_index(drc
));
436 /* immediately upon reset we can safely assume DRCs whose devices
437 * are pending removal can be safely removed.
439 if (drc
->unplug_requested
) {
440 spapr_drc_release(drc
);
441 unplug_completed
= true;
445 /* A device present at reset is ready to go, same as coldplugged */
446 drc
->state
= drck
->ready_state
;
448 * Ensure that we are able to send the FDT fragment again
449 * via configure-connector call if the guest requests.
451 drc
->ccs_offset
= drc
->fdt_start_offset
;
454 drc
->state
= drck
->empty_state
;
455 drc
->ccs_offset
= -1;
459 return unplug_completed
;
462 static bool spapr_drc_unplug_requested_needed(void *opaque
)
464 return spapr_drc_unplug_requested(opaque
);
467 static const VMStateDescription vmstate_spapr_drc_unplug_requested
= {
468 .name
= "spapr_drc/unplug_requested",
470 .minimum_version_id
= 1,
471 .needed
= spapr_drc_unplug_requested_needed
,
472 .fields
= (VMStateField
[]) {
473 VMSTATE_BOOL(unplug_requested
, SpaprDrc
),
474 VMSTATE_END_OF_LIST()
478 static bool spapr_drc_needed(void *opaque
)
480 SpaprDrc
*drc
= opaque
;
481 SpaprDrcClass
*drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
484 * If no dev is plugged in there is no need to migrate the DRC state
485 * nor to reset the DRC at CAS.
492 * We need to reset the DRC at CAS or to migrate the DRC state if it's
493 * not equal to the expected long-term state, which is the same as the
494 * coldplugged initial state, or if an unplug request is pending.
496 return drc
->state
!= drck
->ready_state
||
497 spapr_drc_unplug_requested(drc
);
500 static const VMStateDescription vmstate_spapr_drc
= {
503 .minimum_version_id
= 1,
504 .needed
= spapr_drc_needed
,
505 .fields
= (VMStateField
[]) {
506 VMSTATE_UINT32(state
, SpaprDrc
),
507 VMSTATE_END_OF_LIST()
509 .subsections
= (const VMStateDescription
* []) {
510 &vmstate_spapr_drc_unplug_requested
,
515 static void drc_realize(DeviceState
*d
, Error
**errp
)
517 SpaprDrc
*drc
= SPAPR_DR_CONNECTOR(d
);
518 Object
*root_container
;
520 const char *child_name
;
522 trace_spapr_drc_realize(spapr_drc_index(drc
));
523 /* NOTE: we do this as part of realize/unrealize due to the fact
524 * that the guest will communicate with the DRC via RTAS calls
525 * referencing the global DRC index. By unlinking the DRC
526 * from DRC_CONTAINER_PATH/<drc_index> we effectively make it
527 * inaccessible by the guest, since lookups rely on this path
528 * existing in the composition tree
530 root_container
= container_get(object_get_root(), DRC_CONTAINER_PATH
);
531 link_name
= g_strdup_printf("%x", spapr_drc_index(drc
));
532 child_name
= object_get_canonical_path_component(OBJECT(drc
));
533 trace_spapr_drc_realize_child(spapr_drc_index(drc
), child_name
);
534 object_property_add_alias(root_container
, link_name
,
535 drc
->owner
, child_name
);
537 vmstate_register(VMSTATE_IF(drc
), spapr_drc_index(drc
), &vmstate_spapr_drc
,
539 trace_spapr_drc_realize_complete(spapr_drc_index(drc
));
542 static void drc_unrealize(DeviceState
*d
)
544 SpaprDrc
*drc
= SPAPR_DR_CONNECTOR(d
);
545 Object
*root_container
;
548 trace_spapr_drc_unrealize(spapr_drc_index(drc
));
549 vmstate_unregister(VMSTATE_IF(drc
), &vmstate_spapr_drc
, drc
);
550 root_container
= container_get(object_get_root(), DRC_CONTAINER_PATH
);
551 name
= g_strdup_printf("%x", spapr_drc_index(drc
));
552 object_property_del(root_container
, name
);
556 SpaprDrc
*spapr_dr_connector_new(Object
*owner
, const char *type
,
559 SpaprDrc
*drc
= SPAPR_DR_CONNECTOR(object_new(type
));
564 prop_name
= g_strdup_printf("dr-connector[%"PRIu32
"]",
565 spapr_drc_index(drc
));
566 object_property_add_child(owner
, prop_name
, OBJECT(drc
));
567 object_unref(OBJECT(drc
));
568 qdev_realize(DEVICE(drc
), NULL
, NULL
);
574 static void spapr_dr_connector_instance_init(Object
*obj
)
576 SpaprDrc
*drc
= SPAPR_DR_CONNECTOR(obj
);
577 SpaprDrcClass
*drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
579 object_property_add_uint32_ptr(obj
, "id", &drc
->id
, OBJ_PROP_FLAG_READ
);
580 object_property_add(obj
, "index", "uint32", prop_get_index
,
582 object_property_add(obj
, "fdt", "struct", prop_get_fdt
,
584 drc
->state
= drck
->empty_state
;
587 static void spapr_dr_connector_class_init(ObjectClass
*k
, void *data
)
589 DeviceClass
*dk
= DEVICE_CLASS(k
);
591 dk
->realize
= drc_realize
;
592 dk
->unrealize
= drc_unrealize
;
594 * Reason: DR connector needs to be wired to either the machine or to a
595 * PHB in spapr_dr_connector_new().
597 dk
->user_creatable
= false;
600 static bool drc_physical_needed(void *opaque
)
602 SpaprDrcPhysical
*drcp
= (SpaprDrcPhysical
*)opaque
;
603 SpaprDrc
*drc
= SPAPR_DR_CONNECTOR(drcp
);
605 if ((drc
->dev
&& (drcp
->dr_indicator
== SPAPR_DR_INDICATOR_ACTIVE
))
606 || (!drc
->dev
&& (drcp
->dr_indicator
== SPAPR_DR_INDICATOR_INACTIVE
))) {
612 static const VMStateDescription vmstate_spapr_drc_physical
= {
613 .name
= "spapr_drc/physical",
615 .minimum_version_id
= 1,
616 .needed
= drc_physical_needed
,
617 .fields
= (VMStateField
[]) {
618 VMSTATE_UINT32(dr_indicator
, SpaprDrcPhysical
),
619 VMSTATE_END_OF_LIST()
623 static void drc_physical_reset(void *opaque
)
625 SpaprDrc
*drc
= SPAPR_DR_CONNECTOR(opaque
);
626 SpaprDrcPhysical
*drcp
= SPAPR_DRC_PHYSICAL(drc
);
629 drcp
->dr_indicator
= SPAPR_DR_INDICATOR_ACTIVE
;
631 drcp
->dr_indicator
= SPAPR_DR_INDICATOR_INACTIVE
;
635 static void realize_physical(DeviceState
*d
, Error
**errp
)
637 SpaprDrcPhysical
*drcp
= SPAPR_DRC_PHYSICAL(d
);
638 Error
*local_err
= NULL
;
640 drc_realize(d
, &local_err
);
642 error_propagate(errp
, local_err
);
646 vmstate_register(VMSTATE_IF(drcp
),
647 spapr_drc_index(SPAPR_DR_CONNECTOR(drcp
)),
648 &vmstate_spapr_drc_physical
, drcp
);
649 qemu_register_reset(drc_physical_reset
, drcp
);
652 static void unrealize_physical(DeviceState
*d
)
654 SpaprDrcPhysical
*drcp
= SPAPR_DRC_PHYSICAL(d
);
657 vmstate_unregister(VMSTATE_IF(drcp
), &vmstate_spapr_drc_physical
, drcp
);
658 qemu_unregister_reset(drc_physical_reset
, drcp
);
661 static void spapr_drc_physical_class_init(ObjectClass
*k
, void *data
)
663 DeviceClass
*dk
= DEVICE_CLASS(k
);
664 SpaprDrcClass
*drck
= SPAPR_DR_CONNECTOR_CLASS(k
);
666 dk
->realize
= realize_physical
;
667 dk
->unrealize
= unrealize_physical
;
668 drck
->dr_entity_sense
= physical_entity_sense
;
669 drck
->isolate
= drc_isolate_physical
;
670 drck
->unisolate
= drc_unisolate_physical
;
671 drck
->ready_state
= SPAPR_DRC_STATE_PHYSICAL_CONFIGURED
;
672 drck
->empty_state
= SPAPR_DRC_STATE_PHYSICAL_POWERON
;
675 static void spapr_drc_logical_class_init(ObjectClass
*k
, void *data
)
677 SpaprDrcClass
*drck
= SPAPR_DR_CONNECTOR_CLASS(k
);
679 drck
->dr_entity_sense
= logical_entity_sense
;
680 drck
->isolate
= drc_isolate_logical
;
681 drck
->unisolate
= drc_unisolate_logical
;
682 drck
->ready_state
= SPAPR_DRC_STATE_LOGICAL_CONFIGURED
;
683 drck
->empty_state
= SPAPR_DRC_STATE_LOGICAL_UNUSABLE
;
686 static void spapr_drc_cpu_class_init(ObjectClass
*k
, void *data
)
688 SpaprDrcClass
*drck
= SPAPR_DR_CONNECTOR_CLASS(k
);
690 drck
->typeshift
= SPAPR_DR_CONNECTOR_TYPE_SHIFT_CPU
;
691 drck
->typename
= "CPU";
692 drck
->drc_name_prefix
= "CPU ";
693 drck
->release
= spapr_core_release
;
694 drck
->dt_populate
= spapr_core_dt_populate
;
697 static void spapr_drc_pci_class_init(ObjectClass
*k
, void *data
)
699 SpaprDrcClass
*drck
= SPAPR_DR_CONNECTOR_CLASS(k
);
701 drck
->typeshift
= SPAPR_DR_CONNECTOR_TYPE_SHIFT_PCI
;
702 drck
->typename
= "28";
703 drck
->drc_name_prefix
= "C";
704 drck
->release
= spapr_phb_remove_pci_device_cb
;
705 drck
->dt_populate
= spapr_pci_dt_populate
;
708 static void spapr_drc_lmb_class_init(ObjectClass
*k
, void *data
)
710 SpaprDrcClass
*drck
= SPAPR_DR_CONNECTOR_CLASS(k
);
712 drck
->typeshift
= SPAPR_DR_CONNECTOR_TYPE_SHIFT_LMB
;
713 drck
->typename
= "MEM";
714 drck
->drc_name_prefix
= "LMB ";
715 drck
->release
= spapr_lmb_release
;
716 drck
->dt_populate
= spapr_lmb_dt_populate
;
719 static void spapr_drc_phb_class_init(ObjectClass
*k
, void *data
)
721 SpaprDrcClass
*drck
= SPAPR_DR_CONNECTOR_CLASS(k
);
723 drck
->typeshift
= SPAPR_DR_CONNECTOR_TYPE_SHIFT_PHB
;
724 drck
->typename
= "PHB";
725 drck
->drc_name_prefix
= "PHB ";
726 drck
->release
= spapr_phb_release
;
727 drck
->dt_populate
= spapr_phb_dt_populate
;
730 static void spapr_drc_pmem_class_init(ObjectClass
*k
, void *data
)
732 SpaprDrcClass
*drck
= SPAPR_DR_CONNECTOR_CLASS(k
);
734 drck
->typeshift
= SPAPR_DR_CONNECTOR_TYPE_SHIFT_PMEM
;
735 drck
->typename
= "PMEM";
736 drck
->drc_name_prefix
= "PMEM ";
737 drck
->release
= NULL
;
738 drck
->dt_populate
= spapr_pmem_dt_populate
;
741 static const TypeInfo spapr_dr_connector_info
= {
742 .name
= TYPE_SPAPR_DR_CONNECTOR
,
743 .parent
= TYPE_DEVICE
,
744 .instance_size
= sizeof(SpaprDrc
),
745 .instance_init
= spapr_dr_connector_instance_init
,
746 .class_size
= sizeof(SpaprDrcClass
),
747 .class_init
= spapr_dr_connector_class_init
,
751 static const TypeInfo spapr_drc_physical_info
= {
752 .name
= TYPE_SPAPR_DRC_PHYSICAL
,
753 .parent
= TYPE_SPAPR_DR_CONNECTOR
,
754 .instance_size
= sizeof(SpaprDrcPhysical
),
755 .class_init
= spapr_drc_physical_class_init
,
759 static const TypeInfo spapr_drc_logical_info
= {
760 .name
= TYPE_SPAPR_DRC_LOGICAL
,
761 .parent
= TYPE_SPAPR_DR_CONNECTOR
,
762 .class_init
= spapr_drc_logical_class_init
,
766 static const TypeInfo spapr_drc_cpu_info
= {
767 .name
= TYPE_SPAPR_DRC_CPU
,
768 .parent
= TYPE_SPAPR_DRC_LOGICAL
,
769 .class_init
= spapr_drc_cpu_class_init
,
772 static const TypeInfo spapr_drc_pci_info
= {
773 .name
= TYPE_SPAPR_DRC_PCI
,
774 .parent
= TYPE_SPAPR_DRC_PHYSICAL
,
775 .class_init
= spapr_drc_pci_class_init
,
778 static const TypeInfo spapr_drc_lmb_info
= {
779 .name
= TYPE_SPAPR_DRC_LMB
,
780 .parent
= TYPE_SPAPR_DRC_LOGICAL
,
781 .class_init
= spapr_drc_lmb_class_init
,
784 static const TypeInfo spapr_drc_phb_info
= {
785 .name
= TYPE_SPAPR_DRC_PHB
,
786 .parent
= TYPE_SPAPR_DRC_LOGICAL
,
787 .instance_size
= sizeof(SpaprDrc
),
788 .class_init
= spapr_drc_phb_class_init
,
791 static const TypeInfo spapr_drc_pmem_info
= {
792 .name
= TYPE_SPAPR_DRC_PMEM
,
793 .parent
= TYPE_SPAPR_DRC_LOGICAL
,
794 .class_init
= spapr_drc_pmem_class_init
,
797 /* helper functions for external users */
799 SpaprDrc
*spapr_drc_by_index(uint32_t index
)
804 name
= g_strdup_printf("%s/%x", DRC_CONTAINER_PATH
, index
);
805 obj
= object_resolve_path(name
, NULL
);
808 return !obj
? NULL
: SPAPR_DR_CONNECTOR(obj
);
811 SpaprDrc
*spapr_drc_by_id(const char *type
, uint32_t id
)
814 = SPAPR_DR_CONNECTOR_CLASS(object_class_by_name(type
));
816 return spapr_drc_by_index(drck
->typeshift
<< DRC_INDEX_TYPE_SHIFT
817 | (id
& DRC_INDEX_ID_MASK
));
823 * @fdt: libfdt device tree
824 * @path: path in the DT to generate properties
825 * @owner: parent Object/DeviceState for which to generate DRC
827 * @drc_type_mask: mask of SpaprDrcType values corresponding
828 * to the types of DRCs to generate entries for
830 * generate OF properties to describe DRC topology/indices to guests
832 * as documented in PAPR+ v2.1, 13.5.2
834 int spapr_dt_drc(void *fdt
, int offset
, Object
*owner
, uint32_t drc_type_mask
)
836 Object
*root_container
;
837 ObjectProperty
*prop
;
838 ObjectPropertyIterator iter
;
839 uint32_t drc_count
= 0;
840 GArray
*drc_indexes
, *drc_power_domains
;
841 GString
*drc_names
, *drc_types
;
845 * This should really be only called once per node since it overwrites
846 * the OF properties if they already exist.
848 g_assert(!fdt_get_property(fdt
, offset
, "ibm,drc-indexes", NULL
));
850 /* the first entry of each properties is a 32-bit integer encoding
851 * the number of elements in the array. we won't know this until
852 * we complete the iteration through all the matching DRCs, but
853 * reserve the space now and set the offsets accordingly so we
854 * can fill them in later.
856 drc_indexes
= g_array_new(false, true, sizeof(uint32_t));
857 drc_indexes
= g_array_set_size(drc_indexes
, 1);
858 drc_power_domains
= g_array_new(false, true, sizeof(uint32_t));
859 drc_power_domains
= g_array_set_size(drc_power_domains
, 1);
860 drc_names
= g_string_set_size(g_string_new(NULL
), sizeof(uint32_t));
861 drc_types
= g_string_set_size(g_string_new(NULL
), sizeof(uint32_t));
863 /* aliases for all DRConnector objects will be rooted in QOM
864 * composition tree at DRC_CONTAINER_PATH
866 root_container
= container_get(object_get_root(), DRC_CONTAINER_PATH
);
868 object_property_iter_init(&iter
, root_container
);
869 while ((prop
= object_property_iter_next(&iter
))) {
873 char *drc_name
= NULL
;
874 uint32_t drc_index
, drc_power_domain
;
876 if (!strstart(prop
->type
, "link<", NULL
)) {
880 obj
= object_property_get_link(root_container
, prop
->name
,
882 drc
= SPAPR_DR_CONNECTOR(obj
);
883 drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
885 if (owner
&& (drc
->owner
!= owner
)) {
889 if ((spapr_drc_type(drc
) & drc_type_mask
) == 0) {
895 /* ibm,drc-indexes */
896 drc_index
= cpu_to_be32(spapr_drc_index(drc
));
897 g_array_append_val(drc_indexes
, drc_index
);
899 /* ibm,drc-power-domains */
900 drc_power_domain
= cpu_to_be32(-1);
901 g_array_append_val(drc_power_domains
, drc_power_domain
);
904 drc_name
= spapr_drc_name(drc
);
905 drc_names
= g_string_append(drc_names
, drc_name
);
906 drc_names
= g_string_insert_len(drc_names
, -1, "\0", 1);
910 drc_types
= g_string_append(drc_types
, drck
->typename
);
911 drc_types
= g_string_insert_len(drc_types
, -1, "\0", 1);
914 /* now write the drc count into the space we reserved at the
915 * beginning of the arrays previously
917 *(uint32_t *)drc_indexes
->data
= cpu_to_be32(drc_count
);
918 *(uint32_t *)drc_power_domains
->data
= cpu_to_be32(drc_count
);
919 *(uint32_t *)drc_names
->str
= cpu_to_be32(drc_count
);
920 *(uint32_t *)drc_types
->str
= cpu_to_be32(drc_count
);
922 ret
= fdt_setprop(fdt
, offset
, "ibm,drc-indexes",
924 drc_indexes
->len
* sizeof(uint32_t));
926 error_report("Couldn't create ibm,drc-indexes property");
930 ret
= fdt_setprop(fdt
, offset
, "ibm,drc-power-domains",
931 drc_power_domains
->data
,
932 drc_power_domains
->len
* sizeof(uint32_t));
934 error_report("Couldn't finalize ibm,drc-power-domains property");
938 ret
= fdt_setprop(fdt
, offset
, "ibm,drc-names",
939 drc_names
->str
, drc_names
->len
);
941 error_report("Couldn't finalize ibm,drc-names property");
945 ret
= fdt_setprop(fdt
, offset
, "ibm,drc-types",
946 drc_types
->str
, drc_types
->len
);
948 error_report("Couldn't finalize ibm,drc-types property");
953 g_array_free(drc_indexes
, true);
954 g_array_free(drc_power_domains
, true);
955 g_string_free(drc_names
, true);
956 g_string_free(drc_types
, true);
961 void spapr_drc_reset_all(SpaprMachineState
*spapr
)
963 Object
*drc_container
;
964 ObjectProperty
*prop
;
965 ObjectPropertyIterator iter
;
967 drc_container
= container_get(object_get_root(), DRC_CONTAINER_PATH
);
969 object_property_iter_init(&iter
, drc_container
);
970 while ((prop
= object_property_iter_next(&iter
))) {
973 if (!strstart(prop
->type
, "link<", NULL
)) {
976 drc
= SPAPR_DR_CONNECTOR(object_property_get_link(drc_container
,
981 * This will complete any pending plug/unplug requests.
982 * In case of a unplugged PHB or PCI bridge, this will
983 * cause some DRCs to be destroyed and thus potentially
984 * invalidate the iterator.
986 if (spapr_drc_reset(drc
)) {
996 static uint32_t rtas_set_isolation_state(uint32_t idx
, uint32_t state
)
998 SpaprDrc
*drc
= spapr_drc_by_index(idx
);
1002 return RTAS_OUT_NO_SUCH_INDICATOR
;
1005 trace_spapr_drc_set_isolation_state(spapr_drc_index(drc
), state
);
1007 drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
1010 case SPAPR_DR_ISOLATION_STATE_ISOLATED
:
1011 return drck
->isolate(drc
);
1013 case SPAPR_DR_ISOLATION_STATE_UNISOLATED
:
1014 return drck
->unisolate(drc
);
1017 return RTAS_OUT_PARAM_ERROR
;
1021 static uint32_t rtas_set_allocation_state(uint32_t idx
, uint32_t state
)
1023 SpaprDrc
*drc
= spapr_drc_by_index(idx
);
1025 if (!drc
|| !object_dynamic_cast(OBJECT(drc
), TYPE_SPAPR_DRC_LOGICAL
)) {
1026 return RTAS_OUT_NO_SUCH_INDICATOR
;
1029 trace_spapr_drc_set_allocation_state(spapr_drc_index(drc
), state
);
1032 case SPAPR_DR_ALLOCATION_STATE_USABLE
:
1033 return drc_set_usable(drc
);
1035 case SPAPR_DR_ALLOCATION_STATE_UNUSABLE
:
1036 return drc_set_unusable(drc
);
1039 return RTAS_OUT_PARAM_ERROR
;
1043 static uint32_t rtas_set_dr_indicator(uint32_t idx
, uint32_t state
)
1045 SpaprDrc
*drc
= spapr_drc_by_index(idx
);
1047 if (!drc
|| !object_dynamic_cast(OBJECT(drc
), TYPE_SPAPR_DRC_PHYSICAL
)) {
1048 return RTAS_OUT_NO_SUCH_INDICATOR
;
1050 if ((state
!= SPAPR_DR_INDICATOR_INACTIVE
)
1051 && (state
!= SPAPR_DR_INDICATOR_ACTIVE
)
1052 && (state
!= SPAPR_DR_INDICATOR_IDENTIFY
)
1053 && (state
!= SPAPR_DR_INDICATOR_ACTION
)) {
1054 return RTAS_OUT_PARAM_ERROR
; /* bad state parameter */
1057 trace_spapr_drc_set_dr_indicator(idx
, state
);
1058 SPAPR_DRC_PHYSICAL(drc
)->dr_indicator
= state
;
1059 return RTAS_OUT_SUCCESS
;
1062 static void rtas_set_indicator(PowerPCCPU
*cpu
, SpaprMachineState
*spapr
,
1064 uint32_t nargs
, target_ulong args
,
1065 uint32_t nret
, target_ulong rets
)
1067 uint32_t type
, idx
, state
;
1068 uint32_t ret
= RTAS_OUT_SUCCESS
;
1070 if (nargs
!= 3 || nret
!= 1) {
1071 ret
= RTAS_OUT_PARAM_ERROR
;
1075 type
= rtas_ld(args
, 0);
1076 idx
= rtas_ld(args
, 1);
1077 state
= rtas_ld(args
, 2);
1080 case RTAS_SENSOR_TYPE_ISOLATION_STATE
:
1081 ret
= rtas_set_isolation_state(idx
, state
);
1083 case RTAS_SENSOR_TYPE_DR
:
1084 ret
= rtas_set_dr_indicator(idx
, state
);
1086 case RTAS_SENSOR_TYPE_ALLOCATION_STATE
:
1087 ret
= rtas_set_allocation_state(idx
, state
);
1090 ret
= RTAS_OUT_NOT_SUPPORTED
;
1094 rtas_st(rets
, 0, ret
);
1097 static void rtas_get_sensor_state(PowerPCCPU
*cpu
, SpaprMachineState
*spapr
,
1098 uint32_t token
, uint32_t nargs
,
1099 target_ulong args
, uint32_t nret
,
1102 uint32_t sensor_type
;
1103 uint32_t sensor_index
;
1104 uint32_t sensor_state
= 0;
1106 SpaprDrcClass
*drck
;
1107 uint32_t ret
= RTAS_OUT_SUCCESS
;
1109 if (nargs
!= 2 || nret
!= 2) {
1110 ret
= RTAS_OUT_PARAM_ERROR
;
1114 sensor_type
= rtas_ld(args
, 0);
1115 sensor_index
= rtas_ld(args
, 1);
1117 if (sensor_type
!= RTAS_SENSOR_TYPE_ENTITY_SENSE
) {
1118 /* currently only DR-related sensors are implemented */
1119 trace_spapr_rtas_get_sensor_state_not_supported(sensor_index
,
1121 ret
= RTAS_OUT_NOT_SUPPORTED
;
1125 drc
= spapr_drc_by_index(sensor_index
);
1127 trace_spapr_rtas_get_sensor_state_invalid(sensor_index
);
1128 ret
= RTAS_OUT_PARAM_ERROR
;
1131 drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
1132 sensor_state
= drck
->dr_entity_sense(drc
);
1135 rtas_st(rets
, 0, ret
);
1136 rtas_st(rets
, 1, sensor_state
);
1139 /* configure-connector work area offsets, int32_t units for field
1140 * indexes, bytes for field offset/len values.
1142 * as documented by PAPR+ v2.7, 13.5.3.5
1144 #define CC_IDX_NODE_NAME_OFFSET 2
1145 #define CC_IDX_PROP_NAME_OFFSET 2
1146 #define CC_IDX_PROP_LEN 3
1147 #define CC_IDX_PROP_DATA_OFFSET 4
1148 #define CC_VAL_DATA_OFFSET ((CC_IDX_PROP_DATA_OFFSET + 1) * 4)
1149 #define CC_WA_LEN 4096
1151 static void configure_connector_st(target_ulong addr
, target_ulong offset
,
1152 const void *buf
, size_t len
)
1154 cpu_physical_memory_write(ppc64_phys_to_real(addr
+ offset
),
1155 buf
, MIN(len
, CC_WA_LEN
- offset
));
1158 static void rtas_ibm_configure_connector(PowerPCCPU
*cpu
,
1159 SpaprMachineState
*spapr
,
1160 uint32_t token
, uint32_t nargs
,
1161 target_ulong args
, uint32_t nret
,
1168 SpaprDrcClass
*drck
;
1169 SpaprDRCCResponse resp
= SPAPR_DR_CC_RESPONSE_CONTINUE
;
1172 if (nargs
!= 2 || nret
!= 1) {
1173 rtas_st(rets
, 0, RTAS_OUT_PARAM_ERROR
);
1177 wa_addr
= ((uint64_t)rtas_ld(args
, 1) << 32) | rtas_ld(args
, 0);
1179 drc_index
= rtas_ld(wa_addr
, 0);
1180 drc
= spapr_drc_by_index(drc_index
);
1182 trace_spapr_rtas_ibm_configure_connector_invalid(drc_index
);
1183 rc
= RTAS_OUT_PARAM_ERROR
;
1187 if ((drc
->state
!= SPAPR_DRC_STATE_LOGICAL_UNISOLATE
)
1188 && (drc
->state
!= SPAPR_DRC_STATE_PHYSICAL_UNISOLATE
)
1189 && (drc
->state
!= SPAPR_DRC_STATE_LOGICAL_CONFIGURED
)
1190 && (drc
->state
!= SPAPR_DRC_STATE_PHYSICAL_CONFIGURED
)) {
1192 * Need to unisolate the device before configuring
1193 * or it should already be in configured state to
1194 * allow configure-connector be called repeatedly.
1196 rc
= SPAPR_DR_CC_RESPONSE_NOT_CONFIGURABLE
;
1200 drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
1203 * This indicates that the kernel is reconfiguring a LMB due to
1204 * a failed hotunplug. Rollback the DIMM unplug process.
1206 if (spapr_drc_type(drc
) == SPAPR_DR_CONNECTOR_TYPE_LMB
&&
1207 drc
->unplug_requested
) {
1208 spapr_memory_unplug_rollback(spapr
, drc
->dev
);
1215 fdt
= create_device_tree(&fdt_size
);
1217 if (drck
->dt_populate(drc
, spapr
, fdt
, &drc
->fdt_start_offset
,
1220 rc
= SPAPR_DR_CC_RESPONSE_ERROR
;
1225 drc
->ccs_offset
= drc
->fdt_start_offset
;
1232 const struct fdt_property
*prop
;
1233 int fdt_offset_next
, prop_len
;
1235 tag
= fdt_next_tag(drc
->fdt
, drc
->ccs_offset
, &fdt_offset_next
);
1238 case FDT_BEGIN_NODE
:
1240 name
= fdt_get_name(drc
->fdt
, drc
->ccs_offset
, NULL
);
1242 /* provide the name of the next OF node */
1243 wa_offset
= CC_VAL_DATA_OFFSET
;
1244 rtas_st(wa_addr
, CC_IDX_NODE_NAME_OFFSET
, wa_offset
);
1245 configure_connector_st(wa_addr
, wa_offset
, name
, strlen(name
) + 1);
1246 resp
= SPAPR_DR_CC_RESPONSE_NEXT_CHILD
;
1250 if (drc
->ccs_depth
== 0) {
1251 uint32_t drc_index
= spapr_drc_index(drc
);
1253 /* done sending the device tree, move to configured state */
1254 trace_spapr_drc_set_configured(drc_index
);
1255 drc
->state
= drck
->ready_state
;
1257 * Ensure that we are able to send the FDT fragment
1258 * again via configure-connector call if the guest requests.
1260 drc
->ccs_offset
= drc
->fdt_start_offset
;
1262 fdt_offset_next
= drc
->fdt_start_offset
;
1263 resp
= SPAPR_DR_CC_RESPONSE_SUCCESS
;
1265 resp
= SPAPR_DR_CC_RESPONSE_PREV_PARENT
;
1269 prop
= fdt_get_property_by_offset(drc
->fdt
, drc
->ccs_offset
,
1271 name
= fdt_string(drc
->fdt
, fdt32_to_cpu(prop
->nameoff
));
1273 /* provide the name of the next OF property */
1274 wa_offset
= CC_VAL_DATA_OFFSET
;
1275 rtas_st(wa_addr
, CC_IDX_PROP_NAME_OFFSET
, wa_offset
);
1276 configure_connector_st(wa_addr
, wa_offset
, name
, strlen(name
) + 1);
1278 /* provide the length and value of the OF property. data gets
1279 * placed immediately after NULL terminator of the OF property's
1282 wa_offset
+= strlen(name
) + 1,
1283 rtas_st(wa_addr
, CC_IDX_PROP_LEN
, prop_len
);
1284 rtas_st(wa_addr
, CC_IDX_PROP_DATA_OFFSET
, wa_offset
);
1285 configure_connector_st(wa_addr
, wa_offset
, prop
->data
, prop_len
);
1286 resp
= SPAPR_DR_CC_RESPONSE_NEXT_PROPERTY
;
1289 resp
= SPAPR_DR_CC_RESPONSE_ERROR
;
1291 /* keep seeking for an actionable tag */
1294 if (drc
->ccs_offset
>= 0) {
1295 drc
->ccs_offset
= fdt_offset_next
;
1297 } while (resp
== SPAPR_DR_CC_RESPONSE_CONTINUE
);
1301 rtas_st(rets
, 0, rc
);
1304 static void spapr_drc_register_types(void)
1306 type_register_static(&spapr_dr_connector_info
);
1307 type_register_static(&spapr_drc_physical_info
);
1308 type_register_static(&spapr_drc_logical_info
);
1309 type_register_static(&spapr_drc_cpu_info
);
1310 type_register_static(&spapr_drc_pci_info
);
1311 type_register_static(&spapr_drc_lmb_info
);
1312 type_register_static(&spapr_drc_phb_info
);
1313 type_register_static(&spapr_drc_pmem_info
);
1315 spapr_rtas_register(RTAS_SET_INDICATOR
, "set-indicator",
1316 rtas_set_indicator
);
1317 spapr_rtas_register(RTAS_GET_SENSOR_STATE
, "get-sensor-state",
1318 rtas_get_sensor_state
);
1319 spapr_rtas_register(RTAS_IBM_CONFIGURE_CONNECTOR
, "ibm,configure-connector",
1320 rtas_ibm_configure_connector
);
1322 type_init(spapr_drc_register_types
)