Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

spapr_event: changed hotplug event type from slot to pci #4

Open
wants to merge 1 commit into
base: spapr-pci-hotplug-wip2
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions hw/ppc/spapr_events.c
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,7 @@ struct rtas_event_log_v6_hp {
#define RTAS_LOG_V6_HP_TYPE_MEMORY 2
#define RTAS_LOG_V6_HP_TYPE_SLOT 3
#define RTAS_LOG_V6_HP_TYPE_PHB 4
#define RTAS_LOG_V6_HP_TYPE_PCI 5
uint8_t hotplug_action;
#define RTAS_LOG_V6_HP_ACTION_ADD 1
#define RTAS_LOG_V6_HP_ACTION_REMOVE 2
Expand Down Expand Up @@ -379,7 +380,7 @@ static void spapr_hotplug_req(uint8_t hp_type, uint8_t hp_action,
}

switch (hp_type) {
case RTAS_LOG_V6_HP_TYPE_SLOT:
case RTAS_LOG_V6_HP_TYPE_PCI:
hp->drc.index = drc_entry->child_entries[slot].drc_index;
hp->hotplug_identifier = RTAS_LOG_V6_HP_ID_DRC_INDEX;
break;
Expand All @@ -392,15 +393,15 @@ void spapr_pci_hotplug_add(DeviceState *qdev, int slot)
{
sPAPRPHBState *phb = SPAPR_PCI_HOST_BRIDGE(qdev);

return spapr_hotplug_req(RTAS_LOG_V6_HP_TYPE_SLOT,
return spapr_hotplug_req(RTAS_LOG_V6_HP_TYPE_PCI,
RTAS_LOG_V6_HP_ACTION_ADD, phb, slot);
}

void spapr_pci_hotplug_remove(DeviceState *qdev, int slot)
{
sPAPRPHBState *phb = SPAPR_PCI_HOST_BRIDGE(qdev);

return spapr_hotplug_req(RTAS_LOG_V6_HP_TYPE_SLOT,
return spapr_hotplug_req(RTAS_LOG_V6_HP_TYPE_PCI,
RTAS_LOG_V6_HP_ACTION_REMOVE, phb, slot);
}

Expand Down