drm/i915/guc: Handle default action received over CT
When running on platform with CTB based GuC communication enabled, GuC to Host event data will be delivered as CT request message. However, content of the data[1] of this CT message follows format of the scratch register used in MMIO based communication, so some code reuse is still possible. v2: filter disabled messages (Daniele) Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com> Cc: Oscar Mateo <oscar.mateo@intel.com> Reviewed-by: Michel Thierry <michel.thierry@intel.com> #1 Cc: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com> Acked-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Link: https://patchwork.freedesktop.org/patch/msgid/20180327214124.70680-1-michal.wajdeczko@intel.com
This commit is contained in:
Родитель
6c77a2b058
Коммит
b6b0166d49
|
@ -416,6 +416,14 @@ void intel_guc_to_host_event_handler_mmio(struct intel_guc *guc)
|
|||
I915_WRITE(SOFT_SCRATCH(15), val & ~msg);
|
||||
spin_unlock(&guc->irq_lock);
|
||||
|
||||
intel_guc_to_host_process_recv_msg(guc, msg);
|
||||
}
|
||||
|
||||
void intel_guc_to_host_process_recv_msg(struct intel_guc *guc, u32 msg)
|
||||
{
|
||||
/* Make sure to handle only enabled messages */
|
||||
msg &= guc->msg_enabled_mask;
|
||||
|
||||
if (msg & (INTEL_GUC_RECV_MSG_FLUSH_LOG_BUFFER |
|
||||
INTEL_GUC_RECV_MSG_CRASH_DUMP_POSTED))
|
||||
intel_guc_log_handle_flush_event(&guc->log);
|
||||
|
|
|
@ -163,6 +163,7 @@ int intel_guc_send_mmio(struct intel_guc *guc, const u32 *action, u32 len,
|
|||
void intel_guc_to_host_event_handler(struct intel_guc *guc);
|
||||
void intel_guc_to_host_event_handler_nop(struct intel_guc *guc);
|
||||
void intel_guc_to_host_event_handler_mmio(struct intel_guc *guc);
|
||||
void intel_guc_to_host_process_recv_msg(struct intel_guc *guc, u32 msg);
|
||||
int intel_guc_sample_forcewake(struct intel_guc *guc);
|
||||
int intel_guc_auth_huc(struct intel_guc *guc, u32 rsa_offset);
|
||||
int intel_guc_suspend(struct intel_guc *guc);
|
||||
|
|
|
@ -694,8 +694,17 @@ static int ct_handle_response(struct intel_guc_ct *ct, const u32 *msg)
|
|||
static void ct_process_request(struct intel_guc_ct *ct,
|
||||
u32 action, u32 len, const u32 *payload)
|
||||
{
|
||||
struct intel_guc *guc = ct_to_guc(ct);
|
||||
|
||||
switch (action) {
|
||||
case INTEL_GUC_ACTION_DEFAULT:
|
||||
if (unlikely(len < 1))
|
||||
goto fail_unexpected;
|
||||
intel_guc_to_host_process_recv_msg(guc, *payload);
|
||||
break;
|
||||
|
||||
default:
|
||||
fail_unexpected:
|
||||
DRM_ERROR("CT: unexpected request %x %*phn\n",
|
||||
action, 4 * len, payload);
|
||||
break;
|
||||
|
|
Загрузка…
Ссылка в новой задаче