drm/amd/display: adjust few initialization order in dm
commit 22e1dc4b2fec17af70f297a4295c5f19a0f3fbeb upstream. [Why] Observe error message "Can't retrieve aconnector in hpd_rx_irq_offload_work" when boot up with a mst tbt4 dock connected. After analyzing, there are few parts needed to be adjusted: 1. hpd_rx_offload_wq[].aconnector is not initialzed before the dmub outbox hpd_irq handler get registered which causes the error message. 2. registeration of hpd and hpd_rx_irq event for usb4 dp tunneling is not aligned with legacy interface sequence [How] Put DMUB_NOTIFICATION_HPD and DMUB_NOTIFICATION_HPD_IRQ handler registration into register_hpd_handlers() to align other interfaces and get hpd_rx_offload_wq[].aconnector initialized earlier than that. Leave DMUB_NOTIFICATION_AUX_REPLY registered as it was since we need that while calling dc_link_detect(). USB4 connection status will be proactively detected by dc_link_detect_connection_type() in amdgpu_dm_initialize_drm_device() Cc: Stable <stable@vger.kernel.org> Reviewed-by: Aurabindo Pillai <aurabindo.pillai@amd.com> Acked-by: Rodrigo Siqueira <rodrigo.siqueira@amd.com> Tested-by: Daniel Wheeler <daniel.wheeler@amd.com> Signed-off-by: Wayne Lin <wayne.lin@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
d715ee6cbe
commit
fec5aea669
|
@ -1816,21 +1816,12 @@ static int amdgpu_dm_init(struct amdgpu_device *adev)
|
||||||
DRM_ERROR("amdgpu: fail to register dmub aux callback");
|
DRM_ERROR("amdgpu: fail to register dmub aux callback");
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
if (!register_dmub_notify_callback(adev, DMUB_NOTIFICATION_HPD, dmub_hpd_callback, true)) {
|
/* Enable outbox notification only after IRQ handlers are registered and DMUB is alive.
|
||||||
DRM_ERROR("amdgpu: fail to register dmub hpd callback");
|
* It is expected that DMUB will resend any pending notifications at this point. Note
|
||||||
goto error;
|
* that hpd and hpd_irq handler registration are deferred to register_hpd_handlers() to
|
||||||
}
|
* align legacy interface initialization sequence. Connection status will be proactivly
|
||||||
if (!register_dmub_notify_callback(adev, DMUB_NOTIFICATION_HPD_IRQ, dmub_hpd_callback, true)) {
|
* detected once in the amdgpu_dm_initialize_drm_device.
|
||||||
DRM_ERROR("amdgpu: fail to register dmub hpd callback");
|
*/
|
||||||
goto error;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Enable outbox notification only after IRQ handlers are registered and DMUB is alive.
|
|
||||||
* It is expected that DMUB will resend any pending notifications at this point, for
|
|
||||||
* example HPD from DPIA.
|
|
||||||
*/
|
|
||||||
if (dc_is_dmub_outbox_supported(adev->dm.dc)) {
|
|
||||||
dc_enable_dmub_outbox(adev->dm.dc);
|
dc_enable_dmub_outbox(adev->dm.dc);
|
||||||
|
|
||||||
/* DPIA trace goes to dmesg logs only if outbox is enabled */
|
/* DPIA trace goes to dmesg logs only if outbox is enabled */
|
||||||
|
@ -3484,6 +3475,14 @@ static void register_hpd_handlers(struct amdgpu_device *adev)
|
||||||
int_params.requested_polarity = INTERRUPT_POLARITY_DEFAULT;
|
int_params.requested_polarity = INTERRUPT_POLARITY_DEFAULT;
|
||||||
int_params.current_polarity = INTERRUPT_POLARITY_DEFAULT;
|
int_params.current_polarity = INTERRUPT_POLARITY_DEFAULT;
|
||||||
|
|
||||||
|
if (dc_is_dmub_outbox_supported(adev->dm.dc)) {
|
||||||
|
if (!register_dmub_notify_callback(adev, DMUB_NOTIFICATION_HPD, dmub_hpd_callback, true))
|
||||||
|
DRM_ERROR("amdgpu: fail to register dmub hpd callback");
|
||||||
|
|
||||||
|
if (!register_dmub_notify_callback(adev, DMUB_NOTIFICATION_HPD_IRQ, dmub_hpd_callback, true))
|
||||||
|
DRM_ERROR("amdgpu: fail to register dmub hpd callback");
|
||||||
|
}
|
||||||
|
|
||||||
list_for_each_entry(connector,
|
list_for_each_entry(connector,
|
||||||
&dev->mode_config.connector_list, head) {
|
&dev->mode_config.connector_list, head) {
|
||||||
|
|
||||||
|
@ -3509,10 +3508,6 @@ static void register_hpd_handlers(struct amdgpu_device *adev)
|
||||||
handle_hpd_rx_irq,
|
handle_hpd_rx_irq,
|
||||||
(void *) aconnector);
|
(void *) aconnector);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (adev->dm.hpd_rx_offload_wq)
|
|
||||||
adev->dm.hpd_rx_offload_wq[connector->index].aconnector =
|
|
||||||
aconnector;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -4481,6 +4476,10 @@ static int amdgpu_dm_initialize_drm_device(struct amdgpu_device *adev)
|
||||||
|
|
||||||
link = dc_get_link_at_index(dm->dc, i);
|
link = dc_get_link_at_index(dm->dc, i);
|
||||||
|
|
||||||
|
if (dm->hpd_rx_offload_wq)
|
||||||
|
dm->hpd_rx_offload_wq[aconnector->base.index].aconnector =
|
||||||
|
aconnector;
|
||||||
|
|
||||||
if (!dc_link_detect_connection_type(link, &new_connection_type))
|
if (!dc_link_detect_connection_type(link, &new_connection_type))
|
||||||
DRM_ERROR("KMS: Failed to detect connector\n");
|
DRM_ERROR("KMS: Failed to detect connector\n");
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue