Re: [Intel-gfx] [RESEND PATCH v14 2/2] drm/i915: Put "cooked" vlank counters in frame CRC lines

2017-01-22 Thread Daniel Vetter
On Mon, Jan 16, 2017 at 10:12:36AM +0100, Tomeu Vizoso wrote: > On 10 January 2017 at 17:31, Daniel Vetter wrote: > > On Tue, Jan 10, 2017 at 05:54:57PM +0200, Ville Syrjälä wrote: > >> On Tue, Jan 10, 2017 at 02:43:05PM +0100, Tomeu Vizoso wrote: > >> > Use

Re: [Intel-gfx] [PATCH 3/3] drm/i915/glk: Turn on workarounds that apply to Geminilake too

2017-01-22 Thread Ander Conselvan De Oliveira
On Fri, 2017-01-20 at 08:04 -0800, Rodrigo Vivi wrote: > On Thu, Jan 12, 2017 at 3:47 AM, Ander Conselvan de Oliveira > wrote: > > > > Apply workarounds to Geminilake, and annoatate those that are applied > > uncondionally when they apply to GLK based on

Re: [Intel-gfx] [PATCH 2/4] drm/i915: Fix POWER_DOMAIN_AUDIO refcounting.

2017-01-22 Thread Daniel Vetter
On Mon, Jan 16, 2017 at 12:00:46PM +0100, Maarten Lankhorst wrote: > Op 11-01-17 om 17:13 schreef Daniel Vetter: > > On Thu, Dec 15, 2016 at 03:29:43PM +0100, Maarten Lankhorst wrote: > >> If the crtc was brought up with audio before the driver loads, > >> then crtc_disable will remove a refcount

Re: [Intel-gfx] [PATCH] agp/intel: Move intel_fake_agp_sizes into #ifdef block

2017-01-22 Thread Jani Nikula
On Sat, 21 Jan 2017, Chris Wilson wrote: > Move the intel_fake_agp_sizes array into the same #ifdef block as it is > used to avoid instantiation when not used, and so triggering a compiler > warning > > drivers/char/agp/intel-gtt.c:335:42: warning: ‘intel_fake_agp_sizes’

[Intel-gfx] Updated drm-intel-testing

2017-01-22 Thread Daniel Vetter
Hi all, Final block of feature work for 4.11: - gen8 pd cleanup from Matthew Auld - more cleanups for view/vma (Chris) - dmc support on glk (Anusha Srivatsa) - use core crc api (Tomue) - track wedged requests using fence.error (Chris) - lots of psr fixes (Nagaraju, Vathsala) - dp mst support,

[Intel-gfx] [PULL] drm-misc-next

2017-01-22 Thread Daniel Vetter
Hi Dave, Bunch of things collected by other people why I was enjoying lca. Group maintainership ftw! - cleanups for dw-hdmi bride driver (Laurent) - updates for adv bridge driver (John Stultz) for nexus - drm_crtc_from_index helper rollout (Shawn Guo) - removing

Re: [Intel-gfx] [PATCH 1/2] drm/i915/kbl: Apply WaIncreaseDefaultTLBEntries on KBL.

2017-01-22 Thread Ander Conselvan De Oliveira
On Thu, 2017-01-19 at 10:39 -0800, Rodrigo Vivi wrote: > According to wa_database this Wa persist on KBL as it was on SKL. > > Cc: Tim Gore > Cc: Mika Kuoppala > Cc: Tvrtko Ursulin > Signed-off-by: Rodrigo Vivi

Re: [Intel-gfx] [PATCH 6/6] drm/i915/get_params: Add HuC status to getparams

2017-01-22 Thread Daniel Vetter
On Wed, Jan 18, 2017 at 5:05 PM, Anusha Srivatsa wrote: > This patch will allow for getparams to return the status of the HuC. > As the HuC has to be validated by the GuC this patch uses the validated > status to show when the HuC is loaded and ready for use. You cannot

[Intel-gfx] [Regression report] Weekly regression report WW03

2017-01-22 Thread Jairo Miramontes
Link to FDO regression list:

Re: [Intel-gfx] [PATCH v2] pwm: lpss: Make builtin so that i915 can find the pwm_backlight

2017-01-22 Thread Hans de Goede
Hi, On 20-01-17 11:42, Thierry Reding wrote: On Fri, Jan 20, 2017 at 11:18:29AM +0100, Hans de Goede wrote: Hi, On 20-01-17 10:55, Andy Shevchenko wrote: On Fri, 2017-01-20 at 10:48 +0100, Hans de Goede wrote: I'm fine with doing a v3 with a comment, how about putting that comment right at

[Intel-gfx] [PATCH v2 0/3] acpi_lpss/pwm: Fix i915 pwm_get issues

2017-01-22 Thread Hans de Goede
Hi All, Here is another attempt at fixing i915 not finding the lpss_pwm device (fixed by calling pwm_table_add from apci_lpss.c) as well as i915 not being capable of pwm_get returning -EPROBE_DEFER. I must sat I rather like this version (vs forcing pwm-lpss* to be builtin), so I hope we can move

[Intel-gfx] [PATCH v2 3/3] acpi: lpss: call pwm_add_table() for bsw PWM device

2017-01-22 Thread Hans de Goede
On x86 we do not have devicetree to link the PWM controller and the display controller together. So someone needs to call pwm_add_table() to create the link, so that the i915 driver's pwm_get(dev, "pwm_backlight") call returns the lpss' pwm0. The PWM subsystem does not want to have

[Intel-gfx] [PATCH v2 1/3] pwm/core: Don't hold pwm_lookup_lock longer then necessary

2017-01-22 Thread Hans de Goede
There is no need to hold pwm_lookup_lock after we're done with looping over pwm_lookup_list, so release it earlier. Signed-off-by: Hans de Goede --- drivers/pwm/core.c | 18 -- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/drivers/pwm/core.c

[Intel-gfx] [PATCH v2 2/3] pwm/core: Try to get the module from pwm_get

2017-01-22 Thread Hans de Goede
Add a module_name string to the pwm_lookup struct and if specified and pwmchip_find_by_name() does not find the pwmchip try calling request_module with the specified name. Signed-off-by: Hans de Goede --- drivers/pwm/core.c | 4 include/linux/pwm.h | 11 +--