提交 b8fdd530 编写于 作者: D David Gibson

spapr: Move configure-connector state into DRC

Currently the sPAPRMachineState contains a list of sPAPRConfigureConnector
structures which store intermediate state for the ibm,configure-connector
RTAS call.

This was an attempt to separate this state from the core of the DRC state.
However the configure connector process is intimately tied to the DRC
model, so there's really no point trying to have two levels of interface
here.

Moving the configure-connector state into its corresponding DRC allows
removal of a number of helpers for maintaining the anciliary list.
Signed-off-by: NDavid Gibson <david@gibson.dropbear.id.au>
Reviewed-by: NMichael Roth <mdroth@linux.vnet.ibm.com>
Acked-by: NMichael Roth <mdroth@linux.vnet.ibm.com>
上级 fbf55397
...@@ -2340,10 +2340,6 @@ static void ppc_spapr_init(MachineState *machine) ...@@ -2340,10 +2340,6 @@ static void ppc_spapr_init(MachineState *machine)
register_savevm_live(NULL, "spapr/htab", -1, 1, register_savevm_live(NULL, "spapr/htab", -1, 1,
&savevm_htab_handlers, spapr); &savevm_htab_handlers, spapr);
/* used by RTAS */
QTAILQ_INIT(&spapr->ccs_list);
qemu_register_reset(spapr_ccs_reset_hook, spapr);
qemu_register_boot_set(spapr_boot_set, spapr); qemu_register_boot_set(spapr_boot_set, spapr);
if (kvm_enabled()) { if (kvm_enabled()) {
......
...@@ -27,34 +27,6 @@ ...@@ -27,34 +27,6 @@
#define DRC_INDEX_TYPE_SHIFT 28 #define DRC_INDEX_TYPE_SHIFT 28
#define DRC_INDEX_ID_MASK ((1ULL << DRC_INDEX_TYPE_SHIFT) - 1) #define DRC_INDEX_ID_MASK ((1ULL << DRC_INDEX_TYPE_SHIFT) - 1)
static sPAPRConfigureConnectorState *spapr_ccs_find(sPAPRMachineState *spapr,
uint32_t drc_index)
{
sPAPRConfigureConnectorState *ccs = NULL;
QTAILQ_FOREACH(ccs, &spapr->ccs_list, next) {
if (ccs->drc_index == drc_index) {
break;
}
}
return ccs;
}
static void spapr_ccs_add(sPAPRMachineState *spapr,
sPAPRConfigureConnectorState *ccs)
{
g_assert(!spapr_ccs_find(spapr, ccs->drc_index));
QTAILQ_INSERT_HEAD(&spapr->ccs_list, ccs, next);
}
static void spapr_ccs_remove(sPAPRMachineState *spapr,
sPAPRConfigureConnectorState *ccs)
{
QTAILQ_REMOVE(&spapr->ccs_list, ccs, next);
g_free(ccs);
}
sPAPRDRConnectorType spapr_drc_type(sPAPRDRConnector *drc) sPAPRDRConnectorType spapr_drc_type(sPAPRDRConnector *drc)
{ {
sPAPRDRConnectorClass *drck = SPAPR_DR_CONNECTOR_GET_CLASS(drc); sPAPRDRConnectorClass *drck = SPAPR_DR_CONNECTOR_GET_CLASS(drc);
...@@ -81,6 +53,16 @@ static uint32_t set_isolation_state(sPAPRDRConnector *drc, ...@@ -81,6 +53,16 @@ static uint32_t set_isolation_state(sPAPRDRConnector *drc,
trace_spapr_drc_set_isolation_state(spapr_drc_index(drc), state); trace_spapr_drc_set_isolation_state(spapr_drc_index(drc), state);
/* if the guest is configuring a device attached to this DRC, we
* should reset the configuration state at this point since it may
* no longer be reliable (guest released device and needs to start
* over, or unplug occurred so the FDT is no longer valid)
*/
if (state == SPAPR_DR_ISOLATION_STATE_ISOLATED) {
g_free(drc->ccs);
drc->ccs = NULL;
}
if (state == SPAPR_DR_ISOLATION_STATE_UNISOLATED) { if (state == SPAPR_DR_ISOLATION_STATE_UNISOLATED) {
/* cannot unisolate a non-existent resource, and, or resources /* cannot unisolate a non-existent resource, and, or resources
* which are in an 'UNUSABLE' allocation state. (PAPR 2.7, 13.5.3.5) * which are in an 'UNUSABLE' allocation state. (PAPR 2.7, 13.5.3.5)
...@@ -485,6 +467,10 @@ static void reset(DeviceState *d) ...@@ -485,6 +467,10 @@ static void reset(DeviceState *d)
sPAPRDREntitySense state; sPAPRDREntitySense state;
trace_spapr_drc_reset(spapr_drc_index(drc)); trace_spapr_drc_reset(spapr_drc_index(drc));
g_free(drc->ccs);
drc->ccs = NULL;
/* immediately upon reset we can safely assume DRCs whose devices /* immediately upon reset we can safely assume DRCs whose devices
* are pending removal can be safely removed, and that they will * are pending removal can be safely removed, and that they will
* subsequently be left in an ISOLATED state. move the DRC to this * subsequently be left in an ISOLATED state. move the DRC to this
...@@ -1019,19 +1005,6 @@ static void rtas_set_indicator(PowerPCCPU *cpu, sPAPRMachineState *spapr, ...@@ -1019,19 +1005,6 @@ static void rtas_set_indicator(PowerPCCPU *cpu, sPAPRMachineState *spapr,
switch (sensor_type) { switch (sensor_type) {
case RTAS_SENSOR_TYPE_ISOLATION_STATE: case RTAS_SENSOR_TYPE_ISOLATION_STATE:
/* if the guest is configuring a device attached to this
* DRC, we should reset the configuration state at this
* point since it may no longer be reliable (guest released
* device and needs to start over, or unplug occurred so
* the FDT is no longer valid)
*/
if (sensor_state == SPAPR_DR_ISOLATION_STATE_ISOLATED) {
sPAPRConfigureConnectorState *ccs = spapr_ccs_find(spapr,
sensor_index);
if (ccs) {
spapr_ccs_remove(spapr, ccs);
}
}
ret = drck->set_isolation_state(drc, sensor_state); ret = drck->set_isolation_state(drc, sensor_state);
break; break;
case RTAS_SENSOR_TYPE_DR: case RTAS_SENSOR_TYPE_DR:
...@@ -1115,16 +1088,6 @@ static void configure_connector_st(target_ulong addr, target_ulong offset, ...@@ -1115,16 +1088,6 @@ static void configure_connector_st(target_ulong addr, target_ulong offset,
buf, MIN(len, CC_WA_LEN - offset)); buf, MIN(len, CC_WA_LEN - offset));
} }
void spapr_ccs_reset_hook(void *opaque)
{
sPAPRMachineState *spapr = opaque;
sPAPRConfigureConnectorState *ccs, *ccs_tmp;
QTAILQ_FOREACH_SAFE(ccs, &spapr->ccs_list, next, ccs_tmp) {
spapr_ccs_remove(spapr, ccs);
}
}
static void rtas_ibm_configure_connector(PowerPCCPU *cpu, static void rtas_ibm_configure_connector(PowerPCCPU *cpu,
sPAPRMachineState *spapr, sPAPRMachineState *spapr,
uint32_t token, uint32_t nargs, uint32_t token, uint32_t nargs,
...@@ -1160,12 +1123,11 @@ static void rtas_ibm_configure_connector(PowerPCCPU *cpu, ...@@ -1160,12 +1123,11 @@ static void rtas_ibm_configure_connector(PowerPCCPU *cpu,
goto out; goto out;
} }
ccs = spapr_ccs_find(spapr, drc_index); ccs = drc->ccs;
if (!ccs) { if (!ccs) {
ccs = g_new0(sPAPRConfigureConnectorState, 1); ccs = g_new0(sPAPRConfigureConnectorState, 1);
ccs->fdt_offset = drc->fdt_start_offset; ccs->fdt_offset = drc->fdt_start_offset;
ccs->drc_index = drc_index; drc->ccs = ccs;
spapr_ccs_add(spapr, ccs);
} }
do { do {
...@@ -1202,7 +1164,8 @@ static void rtas_ibm_configure_connector(PowerPCCPU *cpu, ...@@ -1202,7 +1164,8 @@ static void rtas_ibm_configure_connector(PowerPCCPU *cpu,
/* guest should be not configuring an isolated device */ /* guest should be not configuring an isolated device */
trace_spapr_drc_set_configured_skipping(drc_index); trace_spapr_drc_set_configured_skipping(drc_index);
} }
spapr_ccs_remove(spapr, ccs); g_free(ccs);
drc->ccs = NULL;
ccs = NULL; ccs = NULL;
resp = SPAPR_DR_CC_RESPONSE_SUCCESS; resp = SPAPR_DR_CC_RESPONSE_SUCCESS;
} else { } else {
......
...@@ -11,7 +11,6 @@ ...@@ -11,7 +11,6 @@
struct VIOsPAPRBus; struct VIOsPAPRBus;
struct sPAPRPHBState; struct sPAPRPHBState;
struct sPAPRNVRAM; struct sPAPRNVRAM;
typedef struct sPAPRConfigureConnectorState sPAPRConfigureConnectorState;
typedef struct sPAPREventLogEntry sPAPREventLogEntry; typedef struct sPAPREventLogEntry sPAPREventLogEntry;
typedef struct sPAPREventSource sPAPREventSource; typedef struct sPAPREventSource sPAPREventSource;
...@@ -102,9 +101,6 @@ struct sPAPRMachineState { ...@@ -102,9 +101,6 @@ struct sPAPRMachineState {
bool htab_first_pass; bool htab_first_pass;
int htab_fd; int htab_fd;
/* RTAS state */
QTAILQ_HEAD(, sPAPRConfigureConnectorState) ccs_list;
/* Pending DIMM unplug cache. It is populated when a LMB /* Pending DIMM unplug cache. It is populated when a LMB
* unplug starts. It can be regenerated if a migration * unplug starts. It can be regenerated if a migration
* occurs during the unplug process. */ * occurs during the unplug process. */
...@@ -646,16 +642,6 @@ void *spapr_populate_hotplug_cpu_dt(CPUState *cs, int *fdt_offset, ...@@ -646,16 +642,6 @@ void *spapr_populate_hotplug_cpu_dt(CPUState *cs, int *fdt_offset,
void spapr_core_release(DeviceState *dev); void spapr_core_release(DeviceState *dev);
void spapr_lmb_release(DeviceState *dev); void spapr_lmb_release(DeviceState *dev);
/* rtas-configure-connector state */
struct sPAPRConfigureConnectorState {
uint32_t drc_index;
int fdt_offset;
int fdt_depth;
QTAILQ_ENTRY(sPAPRConfigureConnectorState) next;
};
void spapr_ccs_reset_hook(void *opaque);
void spapr_rtc_read(sPAPRRTCState *rtc, struct tm *tm, uint32_t *ns); void spapr_rtc_read(sPAPRRTCState *rtc, struct tm *tm, uint32_t *ns);
int spapr_rtc_import_offset(sPAPRRTCState *rtc, int64_t legacy_offset); int spapr_rtc_import_offset(sPAPRRTCState *rtc, int64_t legacy_offset);
......
...@@ -172,6 +172,12 @@ typedef enum { ...@@ -172,6 +172,12 @@ typedef enum {
SPAPR_DR_CC_RESPONSE_NOT_CONFIGURABLE = -9003, SPAPR_DR_CC_RESPONSE_NOT_CONFIGURABLE = -9003,
} sPAPRDRCCResponse; } sPAPRDRCCResponse;
/* rtas-configure-connector state */
typedef struct sPAPRConfigureConnectorState {
int fdt_offset;
int fdt_depth;
} sPAPRConfigureConnectorState;
typedef struct sPAPRDRConnector { typedef struct sPAPRDRConnector {
/*< private >*/ /*< private >*/
DeviceState parent; DeviceState parent;
...@@ -189,6 +195,7 @@ typedef struct sPAPRDRConnector { ...@@ -189,6 +195,7 @@ typedef struct sPAPRDRConnector {
void *fdt; void *fdt;
int fdt_start_offset; int fdt_start_offset;
bool configured; bool configured;
sPAPRConfigureConnectorState *ccs;
bool awaiting_release; bool awaiting_release;
bool signalled; bool signalled;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册