Re: [PATCH] drm/i915: Fix audio component initialization

2024-05-23 Thread Imre Deak
On Thu, May 23, 2024 at 12:41:32PM +0300, Jani Nikula wrote: > On Tue, 21 May 2024, Imre Deak wrote: > > After registering the audio component in i915_audio_component_init() > > the audio driver may call i915_audio_component_get_power() via the > > component ops. This could program AUD_FREQ_CNTRL

Re: [PATCH] drm/i915: Fix audio component initialization

2024-05-23 Thread Jani Nikula
On Tue, 21 May 2024, Imre Deak wrote: > After registering the audio component in i915_audio_component_init() > the audio driver may call i915_audio_component_get_power() via the > component ops. This could program AUD_FREQ_CNTRL with an uninitialized > value if the latter function is called before

[PATCH] drm/i915: Fix audio component initialization

2024-05-21 Thread Imre Deak
After registering the audio component in i915_audio_component_init() the audio driver may call i915_audio_component_get_power() via the component ops. This could program AUD_FREQ_CNTRL with an uninitialized value if the latter function is called before display.audio.freq_cntrl gets initialized. The