Not sure why all my CCs disappeared...

Animesh, is it true that CSR_PROGRAM(0) is cleared on bxt when no program is
loaded? This is not the case on skl. If it's not true on bxt either we can just
skip check CSR_PROGRAM(0) altogether.

Thanks
Patrik

On Fri, Oct 23, 2015 at 11:41:50AM +0200, Patrik Jakobsson wrote:
> The current CSR loading code depends on the CSR program memory to be
> cleared after boot. This is unfortunately not true on all hardware.
> Instead make use of the FW_UNINITIALIZED state in init and check for
> FW_LOADED to prevent init path from skipping the actual programming.
> 
> v2: Move initialization of state to after HAS_CSR() check
> 
> Signed-off-by: Patrik Jakobsson <[email protected]>
> Tested-by: Rodrigo Vivi <[email protected]>
> Reviewed-by: Rodrigo Vivi <[email protected]>
> ---
>  drivers/gpu/drm/i915/intel_csr.c | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/i915/intel_csr.c 
> b/drivers/gpu/drm/i915/intel_csr.c
> index 9e530a7..e74c09e 100644
> --- a/drivers/gpu/drm/i915/intel_csr.c
> +++ b/drivers/gpu/drm/i915/intel_csr.c
> @@ -271,7 +271,7 @@ void intel_csr_load_program(struct drm_device *dev)
>        * Unfortunately the ACPI subsystem doesn't yet give us a way to
>        * differentiate this, hence figure it out with this hack.
>        */
> -     if (I915_READ(CSR_PROGRAM(0)))
> +     if (I915_READ(CSR_PROGRAM(0)) && dev_priv->csr.state == FW_LOADED)
>               return;
>  
>       mutex_lock(&dev_priv->csr_lock);
> @@ -428,6 +428,8 @@ void intel_csr_ucode_init(struct drm_device *dev)
>       if (!HAS_CSR(dev))
>               return;
>  
> +     intel_csr_load_status_set(dev_priv, FW_UNINITIALIZED);
> +
>       if (IS_SKYLAKE(dev))
>               csr->fw_path = I915_CSR_SKL;
>       else if (IS_BROXTON(dev_priv))
> -- 
> 2.1.4
> 
> _______________________________________________
> Intel-gfx mailing list
> [email protected]
> http://lists.freedesktop.org/mailman/listinfo/intel-gfx
_______________________________________________
Intel-gfx mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/intel-gfx

Reply via email to