firmware: arm_scmi: Add base notifications support

Make SCMI base protocol register with the notification core.

Link: https://lore.kernel.org/r/20200701155348.52864-10-cristian.marussi@arm.com
Reviewed-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Signed-off-by: Cristian Marussi <cristian.marussi@arm.com>
Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
This commit is contained in:
Cristian Marussi
2020-07-01 16:53:48 +01:00
committed by Sudeep Holla
parent 469ca1822d
commit 585dfab3fb
2 changed files with 113 additions and 4 deletions

View File

@@ -377,6 +377,7 @@ enum scmi_notification_events {
SCMI_EVENT_PERFORMANCE_LEVEL_CHANGED = 0x1,
SCMI_EVENT_SENSOR_TRIP_POINT_EVENT = 0x0,
SCMI_EVENT_RESET_ISSUED = 0x0,
SCMI_EVENT_BASE_ERROR_EVENT = 0x0,
};
struct scmi_power_state_changed_report {
@@ -415,4 +416,12 @@ struct scmi_reset_issued_report {
u32 reset_state;
};
struct scmi_base_error_report {
u64 timestamp;
u32 agent_id;
bool fatal;
u16 cmd_count;
u64 reports[0];
};
#endif /* _LINUX_SCMI_PROTOCOL_H */