All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/i915: Add I2C and DP-AUX char devices to debug kconfig
@ 2016-12-02 16:35 Imre Deak
  2016-12-02 18:23 ` ✓ Fi.CI.BAT: success for " Patchwork
  2016-12-05  8:30 ` [PATCH] " Jani Nikula
  0 siblings, 2 replies; 4+ messages in thread
From: Imre Deak @ 2016-12-02 16:35 UTC (permalink / raw)
  To: intel-gfx

These char devices exposing the driver's I2C and DP-AUX adapters for
user space tools are useful to debug display output related issues.
Enable them with the rest of additional driver debug options.

Suggested-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Imre Deak <imre.deak@intel.com>
---
 drivers/gpu/drm/i915/Kconfig.debug | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/gpu/drm/i915/Kconfig.debug b/drivers/gpu/drm/i915/Kconfig.debug
index a6c69b8..cc4ad57 100644
--- a/drivers/gpu/drm/i915/Kconfig.debug
+++ b/drivers/gpu/drm/i915/Kconfig.debug
@@ -19,6 +19,8 @@ config DRM_I915_DEBUG
         bool "Enable additional driver debugging"
         depends on DRM_I915
         select PREEMPT_COUNT
+        select I2C_CHARDEV
+        select DRM_DP_AUX_CHARDEV
         select X86_MSR # used by igt/pm_rpm
         select DRM_VGEM # used by igt/prime_vgem (dmabuf interop checks)
         select DRM_DEBUG_MM if DRM=y
-- 
2.5.0

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* ✓ Fi.CI.BAT: success for drm/i915: Add I2C and DP-AUX char devices to debug kconfig
  2016-12-02 16:35 [PATCH] drm/i915: Add I2C and DP-AUX char devices to debug kconfig Imre Deak
@ 2016-12-02 18:23 ` Patchwork
  2016-12-05 11:20   ` Imre Deak
  2016-12-05  8:30 ` [PATCH] " Jani Nikula
  1 sibling, 1 reply; 4+ messages in thread
From: Patchwork @ 2016-12-02 18:23 UTC (permalink / raw)
  To: Imre Deak; +Cc: intel-gfx

== Series Details ==

Series: drm/i915: Add I2C and DP-AUX char devices to debug kconfig
URL   : https://patchwork.freedesktop.org/series/16295/
State : success

== Summary ==

Series 16295v1 drm/i915: Add I2C and DP-AUX char devices to debug kconfig
https://patchwork.freedesktop.org/api/1.0/series/16295/revisions/1/mbox/


fi-bdw-5557u     total:247  pass:232  dwarn:0   dfail:0   fail:0   skip:15 
fi-bsw-n3050     total:247  pass:207  dwarn:0   dfail:0   fail:0   skip:40 
fi-bxt-t5700     total:247  pass:219  dwarn:0   dfail:0   fail:0   skip:28 
fi-byt-j1900     total:247  pass:219  dwarn:0   dfail:0   fail:0   skip:28 
fi-byt-n2820     total:247  pass:215  dwarn:0   dfail:0   fail:0   skip:32 
fi-hsw-4770      total:247  pass:227  dwarn:0   dfail:0   fail:0   skip:20 
fi-hsw-4770r     total:247  pass:227  dwarn:0   dfail:0   fail:0   skip:20 
fi-ilk-650       total:247  pass:194  dwarn:0   dfail:0   fail:0   skip:53 
fi-ivb-3520m     total:247  pass:225  dwarn:0   dfail:0   fail:0   skip:22 
fi-ivb-3770      total:247  pass:225  dwarn:0   dfail:0   fail:0   skip:22 
fi-kbl-7500u     total:247  pass:225  dwarn:0   dfail:0   fail:0   skip:22 
fi-skl-6260u     total:247  pass:233  dwarn:0   dfail:0   fail:0   skip:14 
fi-skl-6700hq    total:247  pass:226  dwarn:0   dfail:0   fail:0   skip:21 
fi-skl-6700k     total:247  pass:223  dwarn:3   dfail:0   fail:0   skip:21 
fi-skl-6770hq    total:247  pass:233  dwarn:0   dfail:0   fail:0   skip:14 
fi-snb-2520m     total:247  pass:215  dwarn:0   dfail:0   fail:0   skip:32 
fi-snb-2600      total:247  pass:214  dwarn:0   dfail:0   fail:0   skip:33 

16c2727017476099091b70f53da7eb365f2a001e drm-tip: 2016y-12m-02d-16h-19m-57s UTC integration manifest
c17d464 drm/i915: Add I2C and DP-AUX char devices to debug kconfig

== Logs ==

For more details see: https://intel-gfx-ci.01.org/CI/Patchwork_3176/
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] drm/i915: Add I2C and DP-AUX char devices to debug kconfig
  2016-12-02 16:35 [PATCH] drm/i915: Add I2C and DP-AUX char devices to debug kconfig Imre Deak
  2016-12-02 18:23 ` ✓ Fi.CI.BAT: success for " Patchwork
@ 2016-12-05  8:30 ` Jani Nikula
  1 sibling, 0 replies; 4+ messages in thread
From: Jani Nikula @ 2016-12-05  8:30 UTC (permalink / raw)
  To: Imre Deak, intel-gfx

On Fri, 02 Dec 2016, Imre Deak <imre.deak@intel.com> wrote:
> These char devices exposing the driver's I2C and DP-AUX adapters for
> user space tools are useful to debug display output related issues.
> Enable them with the rest of additional driver debug options.
>
> Suggested-by: Chris Wilson <chris@chris-wilson.co.uk>
> Signed-off-by: Imre Deak <imre.deak@intel.com>

Reviewed-by: Jani Nikula <jani.nikula@intel.com>


> ---
>  drivers/gpu/drm/i915/Kconfig.debug | 2 ++
>  1 file changed, 2 insertions(+)
>
> diff --git a/drivers/gpu/drm/i915/Kconfig.debug b/drivers/gpu/drm/i915/Kconfig.debug
> index a6c69b8..cc4ad57 100644
> --- a/drivers/gpu/drm/i915/Kconfig.debug
> +++ b/drivers/gpu/drm/i915/Kconfig.debug
> @@ -19,6 +19,8 @@ config DRM_I915_DEBUG
>          bool "Enable additional driver debugging"
>          depends on DRM_I915
>          select PREEMPT_COUNT
> +        select I2C_CHARDEV
> +        select DRM_DP_AUX_CHARDEV
>          select X86_MSR # used by igt/pm_rpm
>          select DRM_VGEM # used by igt/prime_vgem (dmabuf interop checks)
>          select DRM_DEBUG_MM if DRM=y

-- 
Jani Nikula, Intel Open Source Technology Center
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: ✓ Fi.CI.BAT: success for drm/i915: Add I2C and DP-AUX char devices to debug kconfig
  2016-12-02 18:23 ` ✓ Fi.CI.BAT: success for " Patchwork
@ 2016-12-05 11:20   ` Imre Deak
  0 siblings, 0 replies; 4+ messages in thread
From: Imre Deak @ 2016-12-05 11:20 UTC (permalink / raw)
  To: intel-gfx, Jani Nikula

On pe, 2016-12-02 at 18:23 +0000, Patchwork wrote:
> == Series Details ==
> 
> Series: drm/i915: Add I2C and DP-AUX char devices to debug kconfig
> URL   : https://patchwork.freedesktop.org/series/16295/
> State : success
> 
> == Summary ==
> 
> Series 16295v1 drm/i915: Add I2C and DP-AUX char devices to debug kconfig
> https://patchwork.freedesktop.org/api/1.0/series/16295/revisions/1/mbox/

Pushed to -dinq, thanks for the review.

> fi-bdw-5557u     total:247  pass:232  dwarn:0   dfail:0   fail:0   skip:15 
> fi-bsw-n3050     total:247  pass:207  dwarn:0   dfail:0   fail:0   skip:40 
> fi-bxt-t5700     total:247  pass:219  dwarn:0   dfail:0   fail:0   skip:28 
> fi-byt-j1900     total:247  pass:219  dwarn:0   dfail:0   fail:0   skip:28 
> fi-byt-n2820     total:247  pass:215  dwarn:0   dfail:0   fail:0   skip:32 
> fi-hsw-4770      total:247  pass:227  dwarn:0   dfail:0   fail:0   skip:20 
> fi-hsw-4770r     total:247  pass:227  dwarn:0   dfail:0   fail:0   skip:20 
> fi-ilk-650       total:247  pass:194  dwarn:0   dfail:0   fail:0   skip:53 
> fi-ivb-3520m     total:247  pass:225  dwarn:0   dfail:0   fail:0   skip:22 
> fi-ivb-3770      total:247  pass:225  dwarn:0   dfail:0   fail:0   skip:22 
> fi-kbl-7500u     total:247  pass:225  dwarn:0   dfail:0   fail:0   skip:22 
> fi-skl-6260u     total:247  pass:233  dwarn:0   dfail:0   fail:0   skip:14 
> fi-skl-6700hq    total:247  pass:226  dwarn:0   dfail:0   fail:0   skip:21 
> fi-skl-6700k     total:247  pass:223  dwarn:3   dfail:0   fail:0   skip:21 
> fi-skl-6770hq    total:247  pass:233  dwarn:0   dfail:0   fail:0   skip:14 
> fi-snb-2520m     total:247  pass:215  dwarn:0   dfail:0   fail:0   skip:32 
> fi-snb-2600      total:247  pass:214  dwarn:0   dfail:0   fail:0   skip:33 
> 
> 16c2727017476099091b70f53da7eb365f2a001e drm-tip: 2016y-12m-02d-16h-19m-57s UTC integration manifest
> c17d464 drm/i915: Add I2C and DP-AUX char devices to debug kconfig
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/CI/Patchwork_3176/
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-12-05 11:20 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-12-02 16:35 [PATCH] drm/i915: Add I2C and DP-AUX char devices to debug kconfig Imre Deak
2016-12-02 18:23 ` ✓ Fi.CI.BAT: success for " Patchwork
2016-12-05 11:20   ` Imre Deak
2016-12-05  8:30 ` [PATCH] " Jani Nikula

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.