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 sPAPRDRConnectorType
spapr_drc_type(sPAPRDRConnector
*drc
)
32 sPAPRDRConnectorClass
*drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
34 return 1 << drck
->typeshift
;
37 uint32_t spapr_drc_index(sPAPRDRConnector
*drc
)
39 sPAPRDRConnectorClass
*drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
41 /* no set format for a drc index: it only needs to be globally
42 * unique. this is how we encode the DRC type on bare-metal
43 * however, so might as well do that here
45 return (drck
->typeshift
<< DRC_INDEX_TYPE_SHIFT
)
46 | (drc
->id
& DRC_INDEX_ID_MASK
);
49 static uint32_t drc_isolate_physical(sPAPRDRConnector
*drc
)
52 case SPAPR_DRC_STATE_PHYSICAL_POWERON
:
53 return RTAS_OUT_SUCCESS
; /* Nothing to do */
54 case SPAPR_DRC_STATE_PHYSICAL_CONFIGURED
:
55 break; /* see below */
56 case SPAPR_DRC_STATE_PHYSICAL_UNISOLATE
:
57 return RTAS_OUT_PARAM_ERROR
; /* not allowed */
59 g_assert_not_reached();
62 drc
->state
= SPAPR_DRC_STATE_PHYSICAL_POWERON
;
64 if (drc
->unplug_requested
) {
65 uint32_t drc_index
= spapr_drc_index(drc
);
66 trace_spapr_drc_set_isolation_state_finalizing(drc_index
);
67 spapr_drc_detach(drc
);
70 return RTAS_OUT_SUCCESS
;
73 static uint32_t drc_unisolate_physical(sPAPRDRConnector
*drc
)
76 case SPAPR_DRC_STATE_PHYSICAL_UNISOLATE
:
77 case SPAPR_DRC_STATE_PHYSICAL_CONFIGURED
:
78 return RTAS_OUT_SUCCESS
; /* Nothing to do */
79 case SPAPR_DRC_STATE_PHYSICAL_POWERON
:
80 break; /* see below */
82 g_assert_not_reached();
85 /* cannot unisolate a non-existent resource, and, or resources
86 * which are in an 'UNUSABLE' allocation state. (PAPR 2.7,
90 return RTAS_OUT_NO_SUCH_INDICATOR
;
93 drc
->state
= SPAPR_DRC_STATE_PHYSICAL_UNISOLATE
;
94 drc
->ccs_offset
= drc
->fdt_start_offset
;
97 return RTAS_OUT_SUCCESS
;
100 static uint32_t drc_isolate_logical(sPAPRDRConnector
*drc
)
102 switch (drc
->state
) {
103 case SPAPR_DRC_STATE_LOGICAL_AVAILABLE
:
104 case SPAPR_DRC_STATE_LOGICAL_UNUSABLE
:
105 return RTAS_OUT_SUCCESS
; /* Nothing to do */
106 case SPAPR_DRC_STATE_LOGICAL_CONFIGURED
:
107 break; /* see below */
108 case SPAPR_DRC_STATE_LOGICAL_UNISOLATE
:
109 return RTAS_OUT_PARAM_ERROR
; /* not allowed */
111 g_assert_not_reached();
115 * Fail any requests to ISOLATE the LMB DRC if this LMB doesn't
116 * belong to a DIMM device that is marked for removal.
118 * Currently the guest userspace tool drmgr that drives the memory
119 * hotplug/unplug will just try to remove a set of 'removable' LMBs
120 * in response to a hot unplug request that is based on drc-count.
121 * If the LMB being removed doesn't belong to a DIMM device that is
122 * actually being unplugged, fail the isolation request here.
124 if (spapr_drc_type(drc
) == SPAPR_DR_CONNECTOR_TYPE_LMB
125 && !drc
->unplug_requested
) {
126 return RTAS_OUT_HW_ERROR
;
129 drc
->state
= SPAPR_DRC_STATE_LOGICAL_AVAILABLE
;
131 /* if we're awaiting release, but still in an unconfigured state,
132 * it's likely the guest is still in the process of configuring
133 * the device and is transitioning the devices to an ISOLATED
134 * state as a part of that process. so we only complete the
135 * removal when this transition happens for a device in a
136 * configured state, as suggested by the state diagram from PAPR+
139 if (drc
->unplug_requested
) {
140 uint32_t drc_index
= spapr_drc_index(drc
);
141 trace_spapr_drc_set_isolation_state_finalizing(drc_index
);
142 spapr_drc_detach(drc
);
144 return RTAS_OUT_SUCCESS
;
147 static uint32_t drc_unisolate_logical(sPAPRDRConnector
*drc
)
149 switch (drc
->state
) {
150 case SPAPR_DRC_STATE_LOGICAL_UNISOLATE
:
151 case SPAPR_DRC_STATE_LOGICAL_CONFIGURED
:
152 return RTAS_OUT_SUCCESS
; /* Nothing to do */
153 case SPAPR_DRC_STATE_LOGICAL_AVAILABLE
:
154 break; /* see below */
155 case SPAPR_DRC_STATE_LOGICAL_UNUSABLE
:
156 return RTAS_OUT_NO_SUCH_INDICATOR
; /* not allowed */
158 g_assert_not_reached();
161 /* Move to AVAILABLE state should have ensured device was present */
164 drc
->state
= SPAPR_DRC_STATE_LOGICAL_UNISOLATE
;
165 drc
->ccs_offset
= drc
->fdt_start_offset
;
168 return RTAS_OUT_SUCCESS
;
171 static uint32_t drc_set_usable(sPAPRDRConnector
*drc
)
173 switch (drc
->state
) {
174 case SPAPR_DRC_STATE_LOGICAL_AVAILABLE
:
175 case SPAPR_DRC_STATE_LOGICAL_UNISOLATE
:
176 case SPAPR_DRC_STATE_LOGICAL_CONFIGURED
:
177 return RTAS_OUT_SUCCESS
; /* Nothing to do */
178 case SPAPR_DRC_STATE_LOGICAL_UNUSABLE
:
179 break; /* see below */
181 g_assert_not_reached();
184 /* if there's no resource/device associated with the DRC, there's
185 * no way for us to put it in an allocation state consistent with
186 * being 'USABLE'. PAPR 2.7, 13.5.3.4 documents that this should
187 * result in an RTAS return code of -3 / "no such indicator"
190 return RTAS_OUT_NO_SUCH_INDICATOR
;
192 if (drc
->unplug_requested
) {
193 /* Don't allow the guest to move a device away from UNUSABLE
194 * state when we want to unplug it */
195 return RTAS_OUT_NO_SUCH_INDICATOR
;
198 drc
->state
= SPAPR_DRC_STATE_LOGICAL_AVAILABLE
;
200 return RTAS_OUT_SUCCESS
;
203 static uint32_t drc_set_unusable(sPAPRDRConnector
*drc
)
205 switch (drc
->state
) {
206 case SPAPR_DRC_STATE_LOGICAL_UNUSABLE
:
207 return RTAS_OUT_SUCCESS
; /* Nothing to do */
208 case SPAPR_DRC_STATE_LOGICAL_AVAILABLE
:
209 break; /* see below */
210 case SPAPR_DRC_STATE_LOGICAL_UNISOLATE
:
211 case SPAPR_DRC_STATE_LOGICAL_CONFIGURED
:
212 return RTAS_OUT_NO_SUCH_INDICATOR
; /* not allowed */
214 g_assert_not_reached();
217 drc
->state
= SPAPR_DRC_STATE_LOGICAL_UNUSABLE
;
218 if (drc
->unplug_requested
) {
219 uint32_t drc_index
= spapr_drc_index(drc
);
220 trace_spapr_drc_set_allocation_state_finalizing(drc_index
);
221 spapr_drc_detach(drc
);
224 return RTAS_OUT_SUCCESS
;
227 static const char *spapr_drc_name(sPAPRDRConnector
*drc
)
229 sPAPRDRConnectorClass
*drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
231 /* human-readable name for a DRC to encode into the DT
232 * description. this is mainly only used within a guest in place
233 * of the unique DRC index.
235 * in the case of VIO/PCI devices, it corresponds to a "location
236 * code" that maps a logical device/function (DRC index) to a
237 * physical (or virtual in the case of VIO) location in the system
238 * by chaining together the "location label" for each
239 * encapsulating component.
241 * since this is more to do with diagnosing physical hardware
242 * issues than guest compatibility, we choose location codes/DRC
243 * names that adhere to the documented format, but avoid encoding
244 * the entire topology information into the label/code, instead
245 * just using the location codes based on the labels for the
246 * endpoints (VIO/PCI adaptor connectors), which is basically just
247 * "C" followed by an integer ID.
249 * DRC names as documented by PAPR+ v2.7, 13.5.2.4
250 * location codes as documented by PAPR+ v2.7, 12.3.1.5
252 return g_strdup_printf("%s%d", drck
->drc_name_prefix
, drc
->id
);
256 * dr-entity-sense sensor value
257 * returned via get-sensor-state RTAS calls
258 * as expected by state diagram in PAPR+ 2.7, 13.4
259 * based on the current allocation/indicator/power states
260 * for the DR connector.
262 static sPAPRDREntitySense
physical_entity_sense(sPAPRDRConnector
*drc
)
264 /* this assumes all PCI devices are assigned to a 'live insertion'
265 * power domain, where QEMU manages power state automatically as
266 * opposed to the guest. present, non-PCI resources are unaffected
269 return drc
->dev
? SPAPR_DR_ENTITY_SENSE_PRESENT
270 : SPAPR_DR_ENTITY_SENSE_EMPTY
;
273 static sPAPRDREntitySense
logical_entity_sense(sPAPRDRConnector
*drc
)
275 switch (drc
->state
) {
276 case SPAPR_DRC_STATE_LOGICAL_UNUSABLE
:
277 return SPAPR_DR_ENTITY_SENSE_UNUSABLE
;
278 case SPAPR_DRC_STATE_LOGICAL_AVAILABLE
:
279 case SPAPR_DRC_STATE_LOGICAL_UNISOLATE
:
280 case SPAPR_DRC_STATE_LOGICAL_CONFIGURED
:
282 return SPAPR_DR_ENTITY_SENSE_PRESENT
;
284 g_assert_not_reached();
288 static void prop_get_index(Object
*obj
, Visitor
*v
, const char *name
,
289 void *opaque
, Error
**errp
)
291 sPAPRDRConnector
*drc
= SPAPR_DR_CONNECTOR(obj
);
292 uint32_t value
= spapr_drc_index(drc
);
293 visit_type_uint32(v
, name
, &value
, errp
);
296 static void prop_get_fdt(Object
*obj
, Visitor
*v
, const char *name
,
297 void *opaque
, Error
**errp
)
299 sPAPRDRConnector
*drc
= SPAPR_DR_CONNECTOR(obj
);
302 int fdt_offset_next
, fdt_offset
, fdt_depth
;
306 visit_type_null(v
, NULL
, &null
, errp
);
312 fdt_offset
= drc
->fdt_start_offset
;
316 const char *name
= NULL
;
317 const struct fdt_property
*prop
= NULL
;
318 int prop_len
= 0, name_len
= 0;
321 tag
= fdt_next_tag(fdt
, fdt_offset
, &fdt_offset_next
);
325 name
= fdt_get_name(fdt
, fdt_offset
, &name_len
);
326 visit_start_struct(v
, name
, NULL
, 0, &err
);
328 error_propagate(errp
, err
);
333 /* shouldn't ever see an FDT_END_NODE before FDT_BEGIN_NODE */
334 g_assert(fdt_depth
> 0);
335 visit_check_struct(v
, &err
);
336 visit_end_struct(v
, NULL
);
338 error_propagate(errp
, err
);
345 prop
= fdt_get_property_by_offset(fdt
, fdt_offset
, &prop_len
);
346 name
= fdt_string(fdt
, fdt32_to_cpu(prop
->nameoff
));
347 visit_start_list(v
, name
, NULL
, 0, &err
);
349 error_propagate(errp
, err
);
352 for (i
= 0; i
< prop_len
; i
++) {
353 visit_type_uint8(v
, NULL
, (uint8_t *)&prop
->data
[i
], &err
);
355 error_propagate(errp
, err
);
359 visit_check_list(v
, &err
);
360 visit_end_list(v
, NULL
);
362 error_propagate(errp
, err
);
368 error_setg(&error_abort
, "device FDT in unexpected state: %d", tag
);
370 fdt_offset
= fdt_offset_next
;
371 } while (fdt_depth
!= 0);
374 void spapr_drc_attach(sPAPRDRConnector
*drc
, DeviceState
*d
, void *fdt
,
375 int fdt_start_offset
, Error
**errp
)
377 trace_spapr_drc_attach(spapr_drc_index(drc
));
380 error_setg(errp
, "an attached device is still awaiting release");
383 g_assert((drc
->state
== SPAPR_DRC_STATE_LOGICAL_UNUSABLE
)
384 || (drc
->state
== SPAPR_DRC_STATE_PHYSICAL_POWERON
));
389 drc
->fdt_start_offset
= fdt_start_offset
;
391 object_property_add_link(OBJECT(drc
), "device",
392 object_get_typename(OBJECT(drc
->dev
)),
393 (Object
**)(&drc
->dev
),
397 static void spapr_drc_release(sPAPRDRConnector
*drc
)
399 sPAPRDRConnectorClass
*drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
401 drck
->release(drc
->dev
);
403 drc
->unplug_requested
= false;
406 drc
->fdt_start_offset
= 0;
407 object_property_del(OBJECT(drc
), "device", &error_abort
);
411 void spapr_drc_detach(sPAPRDRConnector
*drc
)
413 sPAPRDRConnectorClass
*drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
415 trace_spapr_drc_detach(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 void spapr_drc_reset(sPAPRDRConnector
*drc
)
431 sPAPRDRConnectorClass
*drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
433 trace_spapr_drc_reset(spapr_drc_index(drc
));
435 /* immediately upon reset we can safely assume DRCs whose devices
436 * are pending removal can be safely removed.
438 if (drc
->unplug_requested
) {
439 spapr_drc_release(drc
);
443 /* A device present at reset is ready to go, same as coldplugged */
444 drc
->state
= drck
->ready_state
;
446 drc
->state
= drck
->empty_state
;
449 drc
->ccs_offset
= -1;
453 static void drc_reset(void *opaque
)
455 spapr_drc_reset(SPAPR_DR_CONNECTOR(opaque
));
458 static bool spapr_drc_needed(void *opaque
)
460 sPAPRDRConnector
*drc
= (sPAPRDRConnector
*)opaque
;
461 sPAPRDRConnectorClass
*drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
462 sPAPRDREntitySense value
= drck
->dr_entity_sense(drc
);
464 /* If no dev is plugged in there is no need to migrate the DRC state */
465 if (value
!= SPAPR_DR_ENTITY_SENSE_PRESENT
) {
470 * We need to migrate the state if it's not equal to the expected
471 * long-term state, which is the same as the coldplugged initial
473 return (drc
->state
!= drck
->ready_state
);
476 static const VMStateDescription vmstate_spapr_drc
= {
479 .minimum_version_id
= 1,
480 .needed
= spapr_drc_needed
,
481 .fields
= (VMStateField
[]) {
482 VMSTATE_UINT32(state
, sPAPRDRConnector
),
483 VMSTATE_END_OF_LIST()
487 static void realize(DeviceState
*d
, Error
**errp
)
489 sPAPRDRConnector
*drc
= SPAPR_DR_CONNECTOR(d
);
490 Object
*root_container
;
495 trace_spapr_drc_realize(spapr_drc_index(drc
));
496 /* NOTE: we do this as part of realize/unrealize due to the fact
497 * that the guest will communicate with the DRC via RTAS calls
498 * referencing the global DRC index. By unlinking the DRC
499 * from DRC_CONTAINER_PATH/<drc_index> we effectively make it
500 * inaccessible by the guest, since lookups rely on this path
501 * existing in the composition tree
503 root_container
= container_get(object_get_root(), DRC_CONTAINER_PATH
);
504 snprintf(link_name
, sizeof(link_name
), "%x", spapr_drc_index(drc
));
505 child_name
= object_get_canonical_path_component(OBJECT(drc
));
506 trace_spapr_drc_realize_child(spapr_drc_index(drc
), child_name
);
507 object_property_add_alias(root_container
, link_name
,
508 drc
->owner
, child_name
, &err
);
511 error_propagate(errp
, err
);
514 vmstate_register(DEVICE(drc
), spapr_drc_index(drc
), &vmstate_spapr_drc
,
516 qemu_register_reset(drc_reset
, drc
);
517 trace_spapr_drc_realize_complete(spapr_drc_index(drc
));
520 static void unrealize(DeviceState
*d
, Error
**errp
)
522 sPAPRDRConnector
*drc
= SPAPR_DR_CONNECTOR(d
);
523 Object
*root_container
;
526 trace_spapr_drc_unrealize(spapr_drc_index(drc
));
527 qemu_unregister_reset(drc_reset
, drc
);
528 vmstate_unregister(DEVICE(drc
), &vmstate_spapr_drc
, drc
);
529 root_container
= container_get(object_get_root(), DRC_CONTAINER_PATH
);
530 snprintf(name
, sizeof(name
), "%x", spapr_drc_index(drc
));
531 object_property_del(root_container
, name
, errp
);
534 sPAPRDRConnector
*spapr_dr_connector_new(Object
*owner
, const char *type
,
537 sPAPRDRConnector
*drc
= SPAPR_DR_CONNECTOR(object_new(type
));
542 prop_name
= g_strdup_printf("dr-connector[%"PRIu32
"]",
543 spapr_drc_index(drc
));
544 object_property_add_child(owner
, prop_name
, OBJECT(drc
), &error_abort
);
545 object_property_set_bool(OBJECT(drc
), true, "realized", NULL
);
551 static void spapr_dr_connector_instance_init(Object
*obj
)
553 sPAPRDRConnector
*drc
= SPAPR_DR_CONNECTOR(obj
);
554 sPAPRDRConnectorClass
*drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
556 object_property_add_uint32_ptr(obj
, "id", &drc
->id
, NULL
);
557 object_property_add(obj
, "index", "uint32", prop_get_index
,
558 NULL
, NULL
, NULL
, NULL
);
559 object_property_add(obj
, "fdt", "struct", prop_get_fdt
,
560 NULL
, NULL
, NULL
, NULL
);
561 drc
->state
= drck
->empty_state
;
564 static void spapr_dr_connector_class_init(ObjectClass
*k
, void *data
)
566 DeviceClass
*dk
= DEVICE_CLASS(k
);
568 dk
->realize
= realize
;
569 dk
->unrealize
= unrealize
;
571 * Reason: it crashes FIXME find and document the real reason
573 dk
->user_creatable
= false;
576 static bool drc_physical_needed(void *opaque
)
578 sPAPRDRCPhysical
*drcp
= (sPAPRDRCPhysical
*)opaque
;
579 sPAPRDRConnector
*drc
= SPAPR_DR_CONNECTOR(drcp
);
581 if ((drc
->dev
&& (drcp
->dr_indicator
== SPAPR_DR_INDICATOR_ACTIVE
))
582 || (!drc
->dev
&& (drcp
->dr_indicator
== SPAPR_DR_INDICATOR_INACTIVE
))) {
588 static const VMStateDescription vmstate_spapr_drc_physical
= {
589 .name
= "spapr_drc/physical",
591 .minimum_version_id
= 1,
592 .needed
= drc_physical_needed
,
593 .fields
= (VMStateField
[]) {
594 VMSTATE_UINT32(dr_indicator
, sPAPRDRCPhysical
),
595 VMSTATE_END_OF_LIST()
599 static void drc_physical_reset(void *opaque
)
601 sPAPRDRConnector
*drc
= SPAPR_DR_CONNECTOR(opaque
);
602 sPAPRDRCPhysical
*drcp
= SPAPR_DRC_PHYSICAL(drc
);
605 drcp
->dr_indicator
= SPAPR_DR_INDICATOR_ACTIVE
;
607 drcp
->dr_indicator
= SPAPR_DR_INDICATOR_INACTIVE
;
611 static void realize_physical(DeviceState
*d
, Error
**errp
)
613 sPAPRDRCPhysical
*drcp
= SPAPR_DRC_PHYSICAL(d
);
614 Error
*local_err
= NULL
;
616 realize(d
, &local_err
);
618 error_propagate(errp
, local_err
);
622 vmstate_register(DEVICE(drcp
), spapr_drc_index(SPAPR_DR_CONNECTOR(drcp
)),
623 &vmstate_spapr_drc_physical
, drcp
);
624 qemu_register_reset(drc_physical_reset
, drcp
);
627 static void spapr_drc_physical_class_init(ObjectClass
*k
, void *data
)
629 DeviceClass
*dk
= DEVICE_CLASS(k
);
630 sPAPRDRConnectorClass
*drck
= SPAPR_DR_CONNECTOR_CLASS(k
);
632 dk
->realize
= realize_physical
;
633 drck
->dr_entity_sense
= physical_entity_sense
;
634 drck
->isolate
= drc_isolate_physical
;
635 drck
->unisolate
= drc_unisolate_physical
;
636 drck
->ready_state
= SPAPR_DRC_STATE_PHYSICAL_CONFIGURED
;
637 drck
->empty_state
= SPAPR_DRC_STATE_PHYSICAL_POWERON
;
640 static void spapr_drc_logical_class_init(ObjectClass
*k
, void *data
)
642 sPAPRDRConnectorClass
*drck
= SPAPR_DR_CONNECTOR_CLASS(k
);
644 drck
->dr_entity_sense
= logical_entity_sense
;
645 drck
->isolate
= drc_isolate_logical
;
646 drck
->unisolate
= drc_unisolate_logical
;
647 drck
->ready_state
= SPAPR_DRC_STATE_LOGICAL_CONFIGURED
;
648 drck
->empty_state
= SPAPR_DRC_STATE_LOGICAL_UNUSABLE
;
651 static void spapr_drc_cpu_class_init(ObjectClass
*k
, void *data
)
653 sPAPRDRConnectorClass
*drck
= SPAPR_DR_CONNECTOR_CLASS(k
);
655 drck
->typeshift
= SPAPR_DR_CONNECTOR_TYPE_SHIFT_CPU
;
656 drck
->typename
= "CPU";
657 drck
->drc_name_prefix
= "CPU ";
658 drck
->release
= spapr_core_release
;
661 static void spapr_drc_pci_class_init(ObjectClass
*k
, void *data
)
663 sPAPRDRConnectorClass
*drck
= SPAPR_DR_CONNECTOR_CLASS(k
);
665 drck
->typeshift
= SPAPR_DR_CONNECTOR_TYPE_SHIFT_PCI
;
666 drck
->typename
= "28";
667 drck
->drc_name_prefix
= "C";
668 drck
->release
= spapr_phb_remove_pci_device_cb
;
671 static void spapr_drc_lmb_class_init(ObjectClass
*k
, void *data
)
673 sPAPRDRConnectorClass
*drck
= SPAPR_DR_CONNECTOR_CLASS(k
);
675 drck
->typeshift
= SPAPR_DR_CONNECTOR_TYPE_SHIFT_LMB
;
676 drck
->typename
= "MEM";
677 drck
->drc_name_prefix
= "LMB ";
678 drck
->release
= spapr_lmb_release
;
681 static const TypeInfo spapr_dr_connector_info
= {
682 .name
= TYPE_SPAPR_DR_CONNECTOR
,
683 .parent
= TYPE_DEVICE
,
684 .instance_size
= sizeof(sPAPRDRConnector
),
685 .instance_init
= spapr_dr_connector_instance_init
,
686 .class_size
= sizeof(sPAPRDRConnectorClass
),
687 .class_init
= spapr_dr_connector_class_init
,
691 static const TypeInfo spapr_drc_physical_info
= {
692 .name
= TYPE_SPAPR_DRC_PHYSICAL
,
693 .parent
= TYPE_SPAPR_DR_CONNECTOR
,
694 .instance_size
= sizeof(sPAPRDRCPhysical
),
695 .class_init
= spapr_drc_physical_class_init
,
699 static const TypeInfo spapr_drc_logical_info
= {
700 .name
= TYPE_SPAPR_DRC_LOGICAL
,
701 .parent
= TYPE_SPAPR_DR_CONNECTOR
,
702 .class_init
= spapr_drc_logical_class_init
,
706 static const TypeInfo spapr_drc_cpu_info
= {
707 .name
= TYPE_SPAPR_DRC_CPU
,
708 .parent
= TYPE_SPAPR_DRC_LOGICAL
,
709 .class_init
= spapr_drc_cpu_class_init
,
712 static const TypeInfo spapr_drc_pci_info
= {
713 .name
= TYPE_SPAPR_DRC_PCI
,
714 .parent
= TYPE_SPAPR_DRC_PHYSICAL
,
715 .class_init
= spapr_drc_pci_class_init
,
718 static const TypeInfo spapr_drc_lmb_info
= {
719 .name
= TYPE_SPAPR_DRC_LMB
,
720 .parent
= TYPE_SPAPR_DRC_LOGICAL
,
721 .class_init
= spapr_drc_lmb_class_init
,
724 /* helper functions for external users */
726 sPAPRDRConnector
*spapr_drc_by_index(uint32_t index
)
731 snprintf(name
, sizeof(name
), "%s/%x", DRC_CONTAINER_PATH
, index
);
732 obj
= object_resolve_path(name
, NULL
);
734 return !obj
? NULL
: SPAPR_DR_CONNECTOR(obj
);
737 sPAPRDRConnector
*spapr_drc_by_id(const char *type
, uint32_t id
)
739 sPAPRDRConnectorClass
*drck
740 = SPAPR_DR_CONNECTOR_CLASS(object_class_by_name(type
));
742 return spapr_drc_by_index(drck
->typeshift
<< DRC_INDEX_TYPE_SHIFT
743 | (id
& DRC_INDEX_ID_MASK
));
747 * spapr_drc_populate_dt
749 * @fdt: libfdt device tree
750 * @path: path in the DT to generate properties
751 * @owner: parent Object/DeviceState for which to generate DRC
753 * @drc_type_mask: mask of sPAPRDRConnectorType values corresponding
754 * to the types of DRCs to generate entries for
756 * generate OF properties to describe DRC topology/indices to guests
758 * as documented in PAPR+ v2.1, 13.5.2
760 int spapr_drc_populate_dt(void *fdt
, int fdt_offset
, Object
*owner
,
761 uint32_t drc_type_mask
)
763 Object
*root_container
;
764 ObjectProperty
*prop
;
765 ObjectPropertyIterator iter
;
766 uint32_t drc_count
= 0;
767 GArray
*drc_indexes
, *drc_power_domains
;
768 GString
*drc_names
, *drc_types
;
771 /* the first entry of each properties is a 32-bit integer encoding
772 * the number of elements in the array. we won't know this until
773 * we complete the iteration through all the matching DRCs, but
774 * reserve the space now and set the offsets accordingly so we
775 * can fill them in later.
777 drc_indexes
= g_array_new(false, true, sizeof(uint32_t));
778 drc_indexes
= g_array_set_size(drc_indexes
, 1);
779 drc_power_domains
= g_array_new(false, true, sizeof(uint32_t));
780 drc_power_domains
= g_array_set_size(drc_power_domains
, 1);
781 drc_names
= g_string_set_size(g_string_new(NULL
), sizeof(uint32_t));
782 drc_types
= g_string_set_size(g_string_new(NULL
), sizeof(uint32_t));
784 /* aliases for all DRConnector objects will be rooted in QOM
785 * composition tree at DRC_CONTAINER_PATH
787 root_container
= container_get(object_get_root(), DRC_CONTAINER_PATH
);
789 object_property_iter_init(&iter
, root_container
);
790 while ((prop
= object_property_iter_next(&iter
))) {
792 sPAPRDRConnector
*drc
;
793 sPAPRDRConnectorClass
*drck
;
794 uint32_t drc_index
, drc_power_domain
;
796 if (!strstart(prop
->type
, "link<", NULL
)) {
800 obj
= object_property_get_link(root_container
, prop
->name
, NULL
);
801 drc
= SPAPR_DR_CONNECTOR(obj
);
802 drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
804 if (owner
&& (drc
->owner
!= owner
)) {
808 if ((spapr_drc_type(drc
) & drc_type_mask
) == 0) {
814 /* ibm,drc-indexes */
815 drc_index
= cpu_to_be32(spapr_drc_index(drc
));
816 g_array_append_val(drc_indexes
, drc_index
);
818 /* ibm,drc-power-domains */
819 drc_power_domain
= cpu_to_be32(-1);
820 g_array_append_val(drc_power_domains
, drc_power_domain
);
823 drc_names
= g_string_append(drc_names
, spapr_drc_name(drc
));
824 drc_names
= g_string_insert_len(drc_names
, -1, "\0", 1);
827 drc_types
= g_string_append(drc_types
, drck
->typename
);
828 drc_types
= g_string_insert_len(drc_types
, -1, "\0", 1);
831 /* now write the drc count into the space we reserved at the
832 * beginning of the arrays previously
834 *(uint32_t *)drc_indexes
->data
= cpu_to_be32(drc_count
);
835 *(uint32_t *)drc_power_domains
->data
= cpu_to_be32(drc_count
);
836 *(uint32_t *)drc_names
->str
= cpu_to_be32(drc_count
);
837 *(uint32_t *)drc_types
->str
= cpu_to_be32(drc_count
);
839 ret
= fdt_setprop(fdt
, fdt_offset
, "ibm,drc-indexes",
841 drc_indexes
->len
* sizeof(uint32_t));
843 error_report("Couldn't create ibm,drc-indexes property");
847 ret
= fdt_setprop(fdt
, fdt_offset
, "ibm,drc-power-domains",
848 drc_power_domains
->data
,
849 drc_power_domains
->len
* sizeof(uint32_t));
851 error_report("Couldn't finalize ibm,drc-power-domains property");
855 ret
= fdt_setprop(fdt
, fdt_offset
, "ibm,drc-names",
856 drc_names
->str
, drc_names
->len
);
858 error_report("Couldn't finalize ibm,drc-names property");
862 ret
= fdt_setprop(fdt
, fdt_offset
, "ibm,drc-types",
863 drc_types
->str
, drc_types
->len
);
865 error_report("Couldn't finalize ibm,drc-types property");
870 g_array_free(drc_indexes
, true);
871 g_array_free(drc_power_domains
, true);
872 g_string_free(drc_names
, true);
873 g_string_free(drc_types
, true);
882 static uint32_t rtas_set_isolation_state(uint32_t idx
, uint32_t state
)
884 sPAPRDRConnector
*drc
= spapr_drc_by_index(idx
);
885 sPAPRDRConnectorClass
*drck
;
888 return RTAS_OUT_NO_SUCH_INDICATOR
;
891 trace_spapr_drc_set_isolation_state(spapr_drc_index(drc
), state
);
893 drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
896 case SPAPR_DR_ISOLATION_STATE_ISOLATED
:
897 return drck
->isolate(drc
);
899 case SPAPR_DR_ISOLATION_STATE_UNISOLATED
:
900 return drck
->unisolate(drc
);
903 return RTAS_OUT_PARAM_ERROR
;
907 static uint32_t rtas_set_allocation_state(uint32_t idx
, uint32_t state
)
909 sPAPRDRConnector
*drc
= spapr_drc_by_index(idx
);
911 if (!drc
|| !object_dynamic_cast(OBJECT(drc
), TYPE_SPAPR_DRC_LOGICAL
)) {
912 return RTAS_OUT_NO_SUCH_INDICATOR
;
915 trace_spapr_drc_set_allocation_state(spapr_drc_index(drc
), state
);
918 case SPAPR_DR_ALLOCATION_STATE_USABLE
:
919 return drc_set_usable(drc
);
921 case SPAPR_DR_ALLOCATION_STATE_UNUSABLE
:
922 return drc_set_unusable(drc
);
925 return RTAS_OUT_PARAM_ERROR
;
929 static uint32_t rtas_set_dr_indicator(uint32_t idx
, uint32_t state
)
931 sPAPRDRConnector
*drc
= spapr_drc_by_index(idx
);
933 if (!drc
|| !object_dynamic_cast(OBJECT(drc
), TYPE_SPAPR_DRC_PHYSICAL
)) {
934 return RTAS_OUT_NO_SUCH_INDICATOR
;
936 if ((state
!= SPAPR_DR_INDICATOR_INACTIVE
)
937 && (state
!= SPAPR_DR_INDICATOR_ACTIVE
)
938 && (state
!= SPAPR_DR_INDICATOR_IDENTIFY
)
939 && (state
!= SPAPR_DR_INDICATOR_ACTION
)) {
940 return RTAS_OUT_PARAM_ERROR
; /* bad state parameter */
943 trace_spapr_drc_set_dr_indicator(idx
, state
);
944 SPAPR_DRC_PHYSICAL(drc
)->dr_indicator
= state
;
945 return RTAS_OUT_SUCCESS
;
948 static void rtas_set_indicator(PowerPCCPU
*cpu
, sPAPRMachineState
*spapr
,
950 uint32_t nargs
, target_ulong args
,
951 uint32_t nret
, target_ulong rets
)
953 uint32_t type
, idx
, state
;
954 uint32_t ret
= RTAS_OUT_SUCCESS
;
956 if (nargs
!= 3 || nret
!= 1) {
957 ret
= RTAS_OUT_PARAM_ERROR
;
961 type
= rtas_ld(args
, 0);
962 idx
= rtas_ld(args
, 1);
963 state
= rtas_ld(args
, 2);
966 case RTAS_SENSOR_TYPE_ISOLATION_STATE
:
967 ret
= rtas_set_isolation_state(idx
, state
);
969 case RTAS_SENSOR_TYPE_DR
:
970 ret
= rtas_set_dr_indicator(idx
, state
);
972 case RTAS_SENSOR_TYPE_ALLOCATION_STATE
:
973 ret
= rtas_set_allocation_state(idx
, state
);
976 ret
= RTAS_OUT_NOT_SUPPORTED
;
980 rtas_st(rets
, 0, ret
);
983 static void rtas_get_sensor_state(PowerPCCPU
*cpu
, sPAPRMachineState
*spapr
,
984 uint32_t token
, uint32_t nargs
,
985 target_ulong args
, uint32_t nret
,
988 uint32_t sensor_type
;
989 uint32_t sensor_index
;
990 uint32_t sensor_state
= 0;
991 sPAPRDRConnector
*drc
;
992 sPAPRDRConnectorClass
*drck
;
993 uint32_t ret
= RTAS_OUT_SUCCESS
;
995 if (nargs
!= 2 || nret
!= 2) {
996 ret
= RTAS_OUT_PARAM_ERROR
;
1000 sensor_type
= rtas_ld(args
, 0);
1001 sensor_index
= rtas_ld(args
, 1);
1003 if (sensor_type
!= RTAS_SENSOR_TYPE_ENTITY_SENSE
) {
1004 /* currently only DR-related sensors are implemented */
1005 trace_spapr_rtas_get_sensor_state_not_supported(sensor_index
,
1007 ret
= RTAS_OUT_NOT_SUPPORTED
;
1011 drc
= spapr_drc_by_index(sensor_index
);
1013 trace_spapr_rtas_get_sensor_state_invalid(sensor_index
);
1014 ret
= RTAS_OUT_PARAM_ERROR
;
1017 drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
1018 sensor_state
= drck
->dr_entity_sense(drc
);
1021 rtas_st(rets
, 0, ret
);
1022 rtas_st(rets
, 1, sensor_state
);
1025 /* configure-connector work area offsets, int32_t units for field
1026 * indexes, bytes for field offset/len values.
1028 * as documented by PAPR+ v2.7, 13.5.3.5
1030 #define CC_IDX_NODE_NAME_OFFSET 2
1031 #define CC_IDX_PROP_NAME_OFFSET 2
1032 #define CC_IDX_PROP_LEN 3
1033 #define CC_IDX_PROP_DATA_OFFSET 4
1034 #define CC_VAL_DATA_OFFSET ((CC_IDX_PROP_DATA_OFFSET + 1) * 4)
1035 #define CC_WA_LEN 4096
1037 static void configure_connector_st(target_ulong addr
, target_ulong offset
,
1038 const void *buf
, size_t len
)
1040 cpu_physical_memory_write(ppc64_phys_to_real(addr
+ offset
),
1041 buf
, MIN(len
, CC_WA_LEN
- offset
));
1044 static void rtas_ibm_configure_connector(PowerPCCPU
*cpu
,
1045 sPAPRMachineState
*spapr
,
1046 uint32_t token
, uint32_t nargs
,
1047 target_ulong args
, uint32_t nret
,
1053 sPAPRDRConnector
*drc
;
1054 sPAPRDRConnectorClass
*drck
;
1055 sPAPRDRCCResponse resp
= SPAPR_DR_CC_RESPONSE_CONTINUE
;
1058 if (nargs
!= 2 || nret
!= 1) {
1059 rtas_st(rets
, 0, RTAS_OUT_PARAM_ERROR
);
1063 wa_addr
= ((uint64_t)rtas_ld(args
, 1) << 32) | rtas_ld(args
, 0);
1065 drc_index
= rtas_ld(wa_addr
, 0);
1066 drc
= spapr_drc_by_index(drc_index
);
1068 trace_spapr_rtas_ibm_configure_connector_invalid(drc_index
);
1069 rc
= RTAS_OUT_PARAM_ERROR
;
1073 if ((drc
->state
!= SPAPR_DRC_STATE_LOGICAL_UNISOLATE
)
1074 && (drc
->state
!= SPAPR_DRC_STATE_PHYSICAL_UNISOLATE
)) {
1075 /* Need to unisolate the device before configuring */
1076 rc
= SPAPR_DR_CC_RESPONSE_NOT_CONFIGURABLE
;
1082 drck
= SPAPR_DR_CONNECTOR_GET_CLASS(drc
);
1087 const struct fdt_property
*prop
;
1088 int fdt_offset_next
, prop_len
;
1090 tag
= fdt_next_tag(drc
->fdt
, drc
->ccs_offset
, &fdt_offset_next
);
1093 case FDT_BEGIN_NODE
:
1095 name
= fdt_get_name(drc
->fdt
, drc
->ccs_offset
, NULL
);
1097 /* provide the name of the next OF node */
1098 wa_offset
= CC_VAL_DATA_OFFSET
;
1099 rtas_st(wa_addr
, CC_IDX_NODE_NAME_OFFSET
, wa_offset
);
1100 configure_connector_st(wa_addr
, wa_offset
, name
, strlen(name
) + 1);
1101 resp
= SPAPR_DR_CC_RESPONSE_NEXT_CHILD
;
1105 if (drc
->ccs_depth
== 0) {
1106 uint32_t drc_index
= spapr_drc_index(drc
);
1108 /* done sending the device tree, move to configured state */
1109 trace_spapr_drc_set_configured(drc_index
);
1110 drc
->state
= drck
->ready_state
;
1111 drc
->ccs_offset
= -1;
1112 drc
->ccs_depth
= -1;
1113 resp
= SPAPR_DR_CC_RESPONSE_SUCCESS
;
1115 resp
= SPAPR_DR_CC_RESPONSE_PREV_PARENT
;
1119 prop
= fdt_get_property_by_offset(drc
->fdt
, drc
->ccs_offset
,
1121 name
= fdt_string(drc
->fdt
, fdt32_to_cpu(prop
->nameoff
));
1123 /* provide the name of the next OF property */
1124 wa_offset
= CC_VAL_DATA_OFFSET
;
1125 rtas_st(wa_addr
, CC_IDX_PROP_NAME_OFFSET
, wa_offset
);
1126 configure_connector_st(wa_addr
, wa_offset
, name
, strlen(name
) + 1);
1128 /* provide the length and value of the OF property. data gets
1129 * placed immediately after NULL terminator of the OF property's
1132 wa_offset
+= strlen(name
) + 1,
1133 rtas_st(wa_addr
, CC_IDX_PROP_LEN
, prop_len
);
1134 rtas_st(wa_addr
, CC_IDX_PROP_DATA_OFFSET
, wa_offset
);
1135 configure_connector_st(wa_addr
, wa_offset
, prop
->data
, prop_len
);
1136 resp
= SPAPR_DR_CC_RESPONSE_NEXT_PROPERTY
;
1139 resp
= SPAPR_DR_CC_RESPONSE_ERROR
;
1141 /* keep seeking for an actionable tag */
1144 if (drc
->ccs_offset
>= 0) {
1145 drc
->ccs_offset
= fdt_offset_next
;
1147 } while (resp
== SPAPR_DR_CC_RESPONSE_CONTINUE
);
1151 rtas_st(rets
, 0, rc
);
1154 static void spapr_drc_register_types(void)
1156 type_register_static(&spapr_dr_connector_info
);
1157 type_register_static(&spapr_drc_physical_info
);
1158 type_register_static(&spapr_drc_logical_info
);
1159 type_register_static(&spapr_drc_cpu_info
);
1160 type_register_static(&spapr_drc_pci_info
);
1161 type_register_static(&spapr_drc_lmb_info
);
1163 spapr_rtas_register(RTAS_SET_INDICATOR
, "set-indicator",
1164 rtas_set_indicator
);
1165 spapr_rtas_register(RTAS_GET_SENSOR_STATE
, "get-sensor-state",
1166 rtas_get_sensor_state
);
1167 spapr_rtas_register(RTAS_IBM_CONFIGURE_CONNECTOR
, "ibm,configure-connector",
1168 rtas_ibm_configure_connector
);
1170 type_init(spapr_drc_register_types
)