mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-25 00:52:45 -04:00
drm: add dp helper to initialize remote aux channel.
[why] We need to minimally initialize the remote aux channel, e.g. the crc work struct of remote aux to dump the sink's DPRX CRCs in MST setup. [how] Add helper that only initializes the crc work struct of the remote aux, hooke crc work queue to 'drm_dp_aux_crc_work'. Then call this helper in DP MST port initialization. This, plus David Francis' patch [1], fix the issue of MST remote aux DPCD CRCs read. [1] https://patchwork.kernel.org/patch/11217941/ Cc: Leo Li <sunpeng.li@amd.com> Cc: Harry Wentland <Harry.Wentland@amd.com> Signed-off-by: David (Dingchen) Zhang <dingchen.zhang@amd.com> Reviewed-by: Harry Wentland <harry.wentland@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
committed by
Alex Deucher
parent
44be939ff7
commit
c908b1c4bb
@@ -978,6 +978,19 @@ static void drm_dp_aux_crc_work(struct work_struct *work)
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* drm_dp_remote_aux_init() - minimally initialise a remote aux channel
|
||||
* @aux: DisplayPort AUX channel
|
||||
*
|
||||
* Used for remote aux channel in general. Merely initialize the crc work
|
||||
* struct.
|
||||
*/
|
||||
void drm_dp_remote_aux_init(struct drm_dp_aux *aux)
|
||||
{
|
||||
INIT_WORK(&aux->crc_work, drm_dp_aux_crc_work);
|
||||
}
|
||||
EXPORT_SYMBOL(drm_dp_remote_aux_init);
|
||||
|
||||
/**
|
||||
* drm_dp_aux_init() - minimally initialise an aux channel
|
||||
* @aux: DisplayPort AUX channel
|
||||
|
||||
Reference in New Issue
Block a user