[PATCH 2/2] drm/exynos: ipp: validate a GEM handle with multiple planes

2015-06-11 Thread Inki Dae
On 2015년 06월 09일 12:45, Hyungwon Hwang wrote: > FIMC & GSC driver can calculate the offset of planes. So there are > use cases which IPP receives just one GEM handle of an image with > multiple plane. This patch extends ipp_validate_mem_node() to validate > this case. Applied. Thanks, Inki

[PATCH 1/2] drm/exynos: ipp: fix wrong index referencing a config element

2015-06-11 Thread Inki Dae
On 2015년 06월 09일 12:45, Hyungwon Hwang wrote: > Config depends on the opreation. So it must be referenced by an > operation id, not a property id. Applied. Thanks, Inki Dae > > Signed-off-by: Hyungwon Hwang > --- > drivers/gpu/drm/exynos/exynos_drm_ipp.c | 3 +-- > 1 file changed, 1 ins

[PATCH v3] drm/exynos: dsi: check whether dsi is enabled before sending data

2015-06-11 Thread Inki Dae
On 2015년 06월 09일 12:19, Hyungwon Hwang wrote: > exynos_dsi_host_transfer() can be called through a panel driver while > DSI is turning down. It is possible because the function checks only > whether DSI is initialized or not, and there is a moment which DSI is > set by uninitialized, but DSI

[PATCH 1/3] drm/exynos: consolidate driver/device initialization code

2015-06-11 Thread Inki Dae
On 2015년 06월 08일 19:15, Andrzej Hajda wrote: > Code registering different drivers and simple platform devices was dispersed > across multiple sub-modules. This patch moves it to one place. As a result > initialization code is shorter and cleaner and should simplify further > development. App

[PATCH v2] drm/exynos: add error messages if clks failed to get enabled

2015-06-11 Thread Inki Dae
On 2015년 06월 04일 05:17, Gustavo Padovan wrote: > From: Gustavo Padovan > > Check error and call DRM_ERROR if clk_prepare_enable() fails. Applied. Thanks, Inki Dae > > Signed-off-by: Gustavo Padovan > --- > drivers/gpu/drm/exynos/exynos7_drm_decon.c | 28 +++ >

drm/tilcdc: Add support for external tda998x encoder

2015-06-11 Thread Jyri Sarha
On 06/11/15 18:11, Dan Carpenter wrote: > Hello Jyri Sarha, > > This is a semi-automatic email about new static checker warnings. > > The patch 103cd8bc1c80: "drm/tilcdc: Add support for external tda998x > encoder" from Feb 10, 2015, leads to the following Smatch complaint: > > drivers/gpu/drm/tilc

amdgpu: tonga DVI-I display issue

2015-06-11 Thread Brian Paterni
Hi With code being queued for 4.2, I figured I would try again to see if this issue had resolved itself. Unfortunately it has not with code running from: git://people.freedesktop.org/~agd5f/linux drm-next-4.2-amdgpu 6d8db6ce239587c3d300d79fce3f5bb376232475 The problem occurs when operating

[PATCH 00/21] On-demand device registration

2015-06-11 Thread Alexander Holler
Am 11.06.2015 um 14:30 schrieb Linus Walleij: > On Thu, Jun 11, 2015 at 12:17 PM, Alexander Holler > wrote: >> Am 11.06.2015 um 10:12 schrieb Linus Walleij: >>> On Wed, Jun 10, 2015 at 10:28 AM, Alexander Holler >>> wrote: > You would end up with the same problem of deadlocks as currently,

[PATCH] drm/radeon: Make sure radeon_vm_bo_set_addr always unreserves the BO

2015-06-11 Thread Michel Dänzer
From: Michel Dänzer Some error paths didn't unreserve the BO. This resulted in a deadlock down the road on the next attempt to reserve the (still reserved) BO. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=90873 Cc: stable at vger.kernel.org Signed-off-by: Michel Dänzer --- drivers/

[patch] drm/amdkfd: fix some range checks in address watch ioctl

2015-06-11 Thread Dan Carpenter
->buf_size_in_bytes must be large enough to hold ->num_watch_points and ->watch_mode so I have added a sizeof(int) * 2 to the minimum size. Also we have to subtract sizeof(*args) from the max args_idx limit so that it matches the allocation. Also I changed a > to >= for the last compare. I moved

[patch] drm/amdgpu: off by one check in dce_v8_0_hpd_irq()

2015-06-11 Thread Dan Carpenter
It should be >= instead of > or we go beyond the end of the interrupt_status_offsets[] array. Also I changed it to use ARRAY_SIZE(). Signed-off-by: Dan Carpenter diff --git a/drivers/gpu/drm/amd/amdgpu/dce_v8_0.c b/drivers/gpu/drm/amd/amdgpu/dce_v8_0.c index 9e8b9f1..0f70dc9 100644 --- a/drive

drm/tilcdc: Add support for external tda998x encoder

2015-06-11 Thread Dan Carpenter
Hello Jyri Sarha, This is a semi-automatic email about new static checker warnings. The patch 103cd8bc1c80: "drm/tilcdc: Add support for external tda998x encoder" from Feb 10, 2015, leads to the following Smatch complaint: drivers/gpu/drm/tilcdc/tilcdc_external.c:153 tilcdc_get_external_componen

drm/amdgpu: Add support for CIK parts

2015-06-11 Thread Dan Carpenter
Hello Alex Deucher, The patch a2e73f56fa62: "drm/amdgpu: Add support for CIK parts" from Apr 20, 2015, leads to the following static checker warning: drivers/gpu/drm/amd/amdgpu/ci_dpm.c:4509 ci_set_mc_special_registers() error: buffer overflow 'table->mc_reg_address' 16 <= 16 dri

[patch] drm/amdgpu: potential NULL dereference on error

2015-06-11 Thread Dan Carpenter
On Thu, Jun 11, 2015 at 04:35:26PM +0200, walter harms wrote: > You still have to check 2 types of error return here. > I simply do not understand why ebugfs_create_file() does not return -ENOMEM > (or returns NULL on any error). To be honest, I don't know why debugfs_create_file() doesn't just re

[PATCH 07/32] acpi-video-detect: Rewrite backlight interface selection logic

2015-06-11 Thread Aaron Lu
On 06/11/2015 05:19 PM, Hans de Goede wrote: > Hi, > > On 11-06-15 11:00, Aaron Lu wrote: >> On Wed, Jun 10, 2015 at 03:01:07PM +0200, Hans de Goede wrote: >>> Currently we have 2 kernel commandline options + dmi-quirks in 3 places all >>> interacting (in interesting ways) to select which which ba

[PATCH 07/32] acpi-video-detect: Rewrite backlight interface selection logic

2015-06-11 Thread Aaron Lu
On Wed, Jun 10, 2015 at 03:01:07PM +0200, Hans de Goede wrote: > Currently we have 2 kernel commandline options + dmi-quirks in 3 places all > interacting (in interesting ways) to select which which backlight interface > to use. On the commandline we've acpi_backlight=[video|vendor] and > video.use

[patch] drm/amdgpu: potential NULL dereference on error

2015-06-11 Thread walter harms
Am 11.06.2015 14:20, schrieb Dan Carpenter: > On Thu, Jun 11, 2015 at 02:03:18PM +0200, walter harms wrote: >> >> >> Am 11.06.2015 10:49, schrieb Dan Carpenter: >>> debugfs_create_file() can return an error pointer if debugfs is disabled >>> or it can return NULL on error. >>> >>> Signed-off-by:

[PATCH] drm/nouveau: fix memory leak by deallocating cli/drm

2015-06-11 Thread Dongxing Zhang
unreferenced object 0x8800bd132fe8 (size 256): comm "Xorg", pid 1260, jiffies 4294901661 (age 660.504s) hex dump (first 32 bytes): 00 00 00 00 00 00 00 00 e8 2f 13 bd 00 88 ff ff ./.. 01 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00 backtrace: []

[PATCH] drm/exynos: remove chained calls to enable

2015-06-11 Thread Joonyoung Shim
With atomic modesetting all the control for CRTC, Planes, Encoders and Connectors should come from DRM core, so the driver is not allowed to enable or disable planes from inside the crtc_enable()/disable() call. But it needs to disable planes with crtc_disable in exynos hw driver internally. Becau

[RESEND PATCH 2/2] modetest: only select plane with matching format

2015-06-11 Thread Tobias Jakobi
Sorry for the late reply! On 2015-05-28 14:25, Emil Velikov wrote: >> If you >> create your primary plane with a XRGB-type format then this patch >> doesn't change anything. If you create it with an ARGB-type format >> then >> I can assume that the user wants an alpha-channel (he explicitly asks

[PATCH 07/32] acpi-video-detect: Rewrite backlight interface selection logic

2015-06-11 Thread Jani Nikula
On Thu, 11 Jun 2015, Hans de Goede wrote: > Hi, > > On 11-06-15 11:19, Pali Rohár wrote: >> On Wednesday 10 June 2015 15:01:07 Hans de Goede wrote: >>> Currently we have 2 kernel commandline options + dmi-quirks in 3 places all >>> interacting (in interesting ways) to select which which backlight

[PATCH v10 00/17] drm/exynos: atomic modesetting support

2015-06-11 Thread Joonyoung Shim
On 06/10/2015 10:36 PM, Gustavo Padovan wrote: > Hi Marek, > > 2015-06-10 Marek Szyprowski : > >> Hello, >> >> On 2015-06-01 17:04, Gustavo Padovan wrote: >>> From: Gustavo Padovan >>> >>> Hi, >>> >>> Here goes the full support for atomic modesetting on exynos. I've >>> split the patches in the

[patch] drm/amdgpu: potential NULL dereference on error

2015-06-11 Thread Dan Carpenter
On Thu, Jun 11, 2015 at 02:03:18PM +0200, walter harms wrote: > > > Am 11.06.2015 10:49, schrieb Dan Carpenter: > > debugfs_create_file() can return an error pointer if debugfs is disabled > > or it can return NULL on error. > > > > Signed-off-by: Dan Carpenter > > > > diff --git a/drivers/gpu

[PATCH 00/21] On-demand device registration

2015-06-11 Thread Tomeu Vizoso
On 06/11/2015 12:17 PM, Alexander Holler wrote: > Am 11.06.2015 um 10:12 schrieb Linus Walleij: >> On Wed, Jun 10, 2015 at 10:28 AM, Alexander Holler >> wrote: >>> Am 10.06.2015 um 09:30 schrieb Linus Walleij: >> i2c host comes out, probes the regulator driver, regulator driver probes a

[PATCH 19/32] dell-laptop: Port to new backlight interface selection API

2015-06-11 Thread Pali Rohár
On Thursday 11 June 2015 14:29:24 Hans de Goede wrote: > Hi, > > On 11-06-15 13:47, Pali Rohár wrote: > >On Wednesday 10 June 2015 15:01:19 Hans de Goede wrote: > >>Port the backlight selection logic to the new backlight interface > >>selection API. > >> > >>Signed-off-by: Hans de Goede > >>---

[PATCH 20/32] dell-wmi: Port to new backlight interface selection API

2015-06-11 Thread Pali Rohár
On Thursday 11 June 2015 14:19:11 Hans de Goede wrote: > Hi, > > On 11-06-15 13:43, Pali Rohár wrote: > >On Wednesday 10 June 2015 15:01:20 Hans de Goede wrote: > >>Port the backlight selection logic to the new backlight interface > >>selection API. > >> > >>Signed-off-by: Hans de Goede > >>---

[PATCH] drm/bochs: convert bochs driver to atomic mode-setting

2015-06-11 Thread John Hunter
be, and I will dig more into that. > > Well, it's your gsoc project, not mine. I guess I have asked a stupid question :) , sorry about that. Anyway, I will try to figure it out. > > cheers, > Gerd > > > -- Best regards Junwang Zhao Microprocessor Research and Develop Center Department of Computer Science &Technology Peking University Beijing, 100871, PRC -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150611/45584ca1/attachment-0001.html>

[PATCH 07/32] acpi-video-detect: Rewrite backlight interface selection logic

2015-06-11 Thread Hans de Goede
Hi, On 11-06-15 14:28, Jani Nikula wrote: > On Thu, 11 Jun 2015, Hans de Goede wrote: >> Hi, >> >> On 11-06-15 11:19, Pali Rohár wrote: >>> On Wednesday 10 June 2015 15:01:07 Hans de Goede wrote: Currently we have 2 kernel commandline options + dmi-quirks in 3 places all interacting (i

[PATCH 00/21] On-demand device registration

2015-06-11 Thread Linus Walleij
On Thu, Jun 11, 2015 at 12:17 PM, Alexander Holler wrote: > Am 11.06.2015 um 10:12 schrieb Linus Walleij: >> On Wed, Jun 10, 2015 at 10:28 AM, Alexander Holler >> wrote: >>> You would end up with the same problem of deadlocks as currently, and you >>> would still need something ugly like the de

[PATCH 19/32] dell-laptop: Port to new backlight interface selection API

2015-06-11 Thread Hans de Goede
Hi, On 11-06-15 13:47, Pali Rohár wrote: > On Wednesday 10 June 2015 15:01:19 Hans de Goede wrote: >> Port the backlight selection logic to the new backlight interface >> selection API. >> >> Signed-off-by: Hans de Goede >> --- >> drivers/platform/x86/dell-laptop.c | 6 ++ >> 1 file chang

[PATCH 20/32] dell-wmi: Port to new backlight interface selection API

2015-06-11 Thread Hans de Goede
Hi, On 11-06-15 13:43, Pali Rohár wrote: > On Wednesday 10 June 2015 15:01:20 Hans de Goede wrote: >> Port the backlight selection logic to the new backlight interface >> selection API. >> >> Signed-off-by: Hans de Goede >> --- >> drivers/platform/x86/dell-wmi.c | 3 ++- >> 1 file changed, 2

[PATCH v2] acpi-video: Add a parameter to not register the backlight sysfs interface

2015-06-11 Thread Hans de Goede
Hi, On 11-06-15 13:10, Jani Nikula wrote: > On Thu, 11 Jun 2015, Hans de Goede wrote: >> Hi, >> >> On 11-06-15 03:43, Aaron Lu wrote: >>> On Tue, Jun 09, 2015 at 11:54:45PM +0200, Hans de Goede wrote: Hi, On 06/09/2015 11:10 AM, Aaron Lu wrote: > On Tue, Jun 09, 2015 at 10:32:2

[PATCH v2] acpi-video: Add a parameter to not register the backlight sysfs interface

2015-06-11 Thread Jani Nikula
On Thu, 11 Jun 2015, Hans de Goede wrote: > Hi, > > On 11-06-15 03:43, Aaron Lu wrote: >> On Tue, Jun 09, 2015 at 11:54:45PM +0200, Hans de Goede wrote: >>> Hi, >>> >>> On 06/09/2015 11:10 AM, Aaron Lu wrote: On Tue, Jun 09, 2015 at 10:32:25AM +0200, Hans de Goede wrote: > On some systems

[pull] drm/msm: msm-next for 4.2

2015-06-11 Thread Rob Clark
Hey Dave, seems like patchwork (and/or pwclient) messed up Uwe's name.. if you've already pulled my branch could you run: git filter-branch -f --env-filter "case \$GIT_COMMIT in 66172017da1c*) GIT_AUTHOR_NAME='$(echo 'Uwe Kleine-K+APY-nig' | iconv -f utf-7 -t utf-8)';; esac" 66172017da1c^.. or

[patch] drm/amdgpu: potential NULL dereference on error

2015-06-11 Thread walter harms
Am 11.06.2015 10:49, schrieb Dan Carpenter: > debugfs_create_file() can return an error pointer if debugfs is disabled > or it can return NULL on error. > > Signed-off-by: Dan Carpenter > > diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c > b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c

[PATCH 07/32] acpi-video-detect: Rewrite backlight interface selection logic

2015-06-11 Thread Pali Rohár
On Thursday 11 June 2015 11:29:24 Hans de Goede wrote: > Hi, > > On 11-06-15 11:19, Pali Rohár wrote: > >On Wednesday 10 June 2015 15:01:07 Hans de Goede wrote: > >>Currently we have 2 kernel commandline options + dmi-quirks in 3 places all > >>interacting (in interesting ways) to select which wh

[PATCH 00/21] On-demand device registration

2015-06-11 Thread Alexander Holler
Am 11.06.2015 um 13:24 schrieb Alexander Holler: > Am 11.06.2015 um 12:17 schrieb Alexander Holler: >> Am 11.06.2015 um 10:12 schrieb Linus Walleij: >>> On Wed, Jun 10, 2015 at 10:28 AM, Alexander Holler >>> wrote: Am 10.06.2015 um 09:30 schrieb Linus Walleij: >>> > i2c host comes out, pr

[PATCH 19/32] dell-laptop: Port to new backlight interface selection API

2015-06-11 Thread Pali Rohár
On Wednesday 10 June 2015 15:01:19 Hans de Goede wrote: > Port the backlight selection logic to the new backlight interface > selection API. > > Signed-off-by: Hans de Goede > --- > drivers/platform/x86/dell-laptop.c | 6 ++ > 1 file changed, 2 insertions(+), 4 deletions(-) > > diff --git a

[PATCH 20/32] dell-wmi: Port to new backlight interface selection API

2015-06-11 Thread Pali Rohár
On Wednesday 10 June 2015 15:01:20 Hans de Goede wrote: > Port the backlight selection logic to the new backlight interface > selection API. > > Signed-off-by: Hans de Goede > --- > drivers/platform/x86/dell-wmi.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/driver

[PATCH 00/21] On-demand device registration

2015-06-11 Thread Alexander Holler
Am 11.06.2015 um 12:17 schrieb Alexander Holler: > Am 11.06.2015 um 10:12 schrieb Linus Walleij: >> On Wed, Jun 10, 2015 at 10:28 AM, Alexander Holler >> wrote: >>> Am 10.06.2015 um 09:30 schrieb Linus Walleij: >> i2c host comes out, probes the regulator driver, regulator driver probes a

[PATCH 00/21] On-demand device registration

2015-06-11 Thread Alexander Holler
Am 11.06.2015 um 10:12 schrieb Linus Walleij: > On Wed, Jun 10, 2015 at 10:28 AM, Alexander Holler > wrote: >> Am 10.06.2015 um 09:30 schrieb Linus Walleij: > >>> i2c host comes out, probes the regulator driver, regulator driver >>> probes and then the regulator_get() call returns. >>> >>> This r

[PATCH v2] acpi-video: Add a parameter to not register the backlight sysfs interface

2015-06-11 Thread Hans de Goede
Hi, On 11-06-15 03:43, Aaron Lu wrote: > On Tue, Jun 09, 2015 at 11:54:45PM +0200, Hans de Goede wrote: >> Hi, >> >> On 06/09/2015 11:10 AM, Aaron Lu wrote: >>> On Tue, Jun 09, 2015 at 10:32:25AM +0200, Hans de Goede wrote: On some systems acpi-video backlight is broken in the sense that it c

[PATCH v2 00/10] Color Manager Implementation

2015-06-11 Thread Jani Nikula
On Thu, 11 Jun 2015, "Malladi, Kausal" wrote: > I am guessing, the mails were not received because I wasn't subscribed > to the these two mailing lists. Now I am subscribed and shouldn't have > any problem hopefully. In that case they should've popped up in the intel-gfx moderation list, but for

[PATCH] drm/radeon: Make sure radeon_vm_bo_set_addr always unreserves the BO

2015-06-11 Thread Christian König
On 11.06.2015 11:38, Michel Dänzer wrote: > From: Michel Dänzer > > Some error paths didn't unreserve the BO. This resulted in a deadlock > down the road on the next attempt to reserve the (still reserved) BO. > > Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=90873 > Cc: stable at vger.

atombios_crtc.c - make error messages distinguishable "unable to allocate a PPLL\n"

2015-06-11 Thread Christian König
On 11.06.2015 00:12, James Feeney wrote: >> Yes, DP needs its own clock source. However, you only need one clock source >> for all DP ports so you can drive multiple DP displays from a single clock >> source. The clock source used for DP cannot be shared with non-DP displays. >> ... >> There are

[PATCH 00/21] On-demand device registration

2015-06-11 Thread Tomeu Vizoso
On 06/11/2015 10:15 AM, Linus Walleij wrote: > On Wed, Jun 10, 2015 at 12:19 PM, Tomeu Vizoso > wrote: >> On 10 June 2015 at 09:30, Linus Walleij wrote: > >>> regulator_get(...) -> not available, so: >>> - identify target regulator provider - this will need instrumentation >>> - probe it >>> >>>

[patch] drm/amdgpu: checking for IS_ERR() instead of NULL

2015-06-11 Thread Dan Carpenter
Debugfs_ functions return an error pointer if debugfs is disabled in the config and NULL on failure. They are designed so that normally you don't need to check for errors but here we dereference "ent" so we do need. This function has an #if defined(CONFIG_DEBUG_FS) so we know the debugfs_create_f

[patch] drm/amdgpu: potential NULL dereference on error

2015-06-11 Thread Dan Carpenter
debugfs_create_file() can return an error pointer if debugfs is disabled or it can return NULL on error. Signed-off-by: Dan Carpenter diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c index 36be03c..adba2a1 100644 --- a/drivers/gpu/drm/amd/amdg

[PULL] drm-intel-next-fixes

2015-06-11 Thread Jani Nikula
Hi Dave - Skylake CSR firmware name change for v4.2. Hopefully we can stick to this one now. BR, Jani. The following changes since commit 501fd70fcaebc911b6b96a7b331e6960e5af67e7: drm/i915: limit PPGTT size to 2GB in 32-bit platforms (2015-05-29 19:08:22 +0200) are available in the git re

[PULL] drm-intel-fixes

2015-06-11 Thread Jani Nikula
Hi Dave - Fix for the regression Linus called out, and another for probing dongles. BR, Jani. The following changes since commit d4a4f75cd8f29cd9464a5a32e9224a91571d6649: Linux 4.1-rc7 (2015-06-07 20:23:50 -0700) are available in the git repository at: git://anongit.freedesktop.org/drm-

[PATCH 07/32] acpi-video-detect: Rewrite backlight interface selection logic

2015-06-11 Thread Hans de Goede
Hi, On 11-06-15 11:19, Pali Rohár wrote: > On Wednesday 10 June 2015 15:01:07 Hans de Goede wrote: >> Currently we have 2 kernel commandline options + dmi-quirks in 3 places all >> interacting (in interesting ways) to select which which backlight interface >> to use. On the commandline we've acpi

[patch] drm/amdgpu: remove an unnecessary condition

2015-06-11 Thread Christian König
On 11.06.2015 10:19, Dan Carpenter wrote: > We already checked "if (r)" so there is no need to check again. > > Signed-off-by: Dan Carpenter Hi Dan, thanks for taking a look into this. This patch and the other two you send today are Reviewed-by: Christian König That code was branched of from

[patch] drm/amdgpu: remove an unnecessary condition

2015-06-11 Thread Dan Carpenter
We already checked "if (r)" so there is no need to check again. Signed-off-by: Dan Carpenter diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_kms.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_kms.c index 5533434..b7d0425 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_kms.c +++ b/drivers/gpu/drm/amd/amdgp

[PATCH 07/32] acpi-video-detect: Rewrite backlight interface selection logic

2015-06-11 Thread Pali Rohár
On Wednesday 10 June 2015 15:01:07 Hans de Goede wrote: > Currently we have 2 kernel commandline options + dmi-quirks in 3 places all > interacting (in interesting ways) to select which which backlight interface > to use. On the commandline we've acpi_backlight=[video|vendor] and > video.use_native

[PATCH 07/32] acpi-video-detect: Rewrite backlight interface selection logic

2015-06-11 Thread Hans de Goede
Hi, On 11-06-15 11:00, Aaron Lu wrote: > On Wed, Jun 10, 2015 at 03:01:07PM +0200, Hans de Goede wrote: >> Currently we have 2 kernel commandline options + dmi-quirks in 3 places all >> interacting (in interesting ways) to select which which backlight interface >> to use. On the commandline we've

[PATCH] drm/bochs: convert bochs driver to atomic mode-setting

2015-06-11 Thread John Hunter
. > > HTH, > Gerd > > > > -- Best regards Junwang Zhao Microprocessor Research and Develop Center Department of Computer Science &Technology Peking University Beijing, 100871, PRC -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150611/5e9db4f1/attachment.html>

[PATCH] drm/radeon: Make sure radeon_vm_bo_set_addr always unreserves the BO

2015-06-11 Thread Alex Deucher
On Thu, Jun 11, 2015 at 5:38 AM, Michel Dänzer wrote: > From: Michel Dänzer > > Some error paths didn't unreserve the BO. This resulted in a deadlock > down the road on the next attempt to reserve the (still reserved) BO. > > Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=90873 > Cc: st

[pull] radeon drm-fixes-4.1

2015-06-11 Thread Alex Deucher
Hi Dave, If you are still taking fixes for 4.1, take this and ignore my last radeon 4.2 pull request. The following changes since commit 38d8571dad8a759bdc051dbff747b189c90658cf: drm: fix writing to /sys/class/drm/*/status (2015-06-06 08:27:30 +1000) are available in the git repository at:

[PATCH v10 00/17] drm/exynos: atomic modesetting support

2015-06-11 Thread Gustavo Padovan
Hi Joonyoung, 2015-06-11 Joonyoung Shim : > On 06/10/2015 10:36 PM, Gustavo Padovan wrote: > > Hi Marek, > > > > 2015-06-10 Marek Szyprowski : > > > >> Hello, > >> > >> On 2015-06-01 17:04, Gustavo Padovan wrote: > >>> From: Gustavo Padovan > >>> > >>> Hi, > >>> > >>> Here goes the full suppor

[PATCH 14/32] acer-wmi: Port to new backlight interface selection API

2015-06-11 Thread joeyli
On Wed, Jun 10, 2015 at 03:01:14PM +0200, Hans de Goede wrote: > Port the backlight selection logic to the new backlight interface > selection API. > > This commit also removes various obsolete pr_xxx messages related to > backlight interface selection. These are obsolete because they assume > the

[PATCH] drm/msm/dsi: Use pinctrl in DSI driver

2015-06-11 Thread Hai Li
Some targets use pinctrl framework to configure some pins. This change allows DSI driver to set default and sleep pinctrl status. Signed-off-by: Hai Li --- Documentation/devicetree/bindings/drm/msm/dsi.txt | 7 +++ drivers/gpu/drm/msm/dsi/dsi_host.c| 12 2 files

[PATCH 00/21] On-demand device registration

2015-06-11 Thread Linus Walleij
On Wed, Jun 10, 2015 at 12:19 PM, Tomeu Vizoso wrote: > On 10 June 2015 at 09:30, Linus Walleij wrote: >> regulator_get(...) -> not available, so: >> - identify target regulator provider - this will need instrumentation >> - probe it >> >> It then turns out the regulator driver is on the i2c bus

[PATCH] drm/exynos: remove chained calls to enable

2015-06-11 Thread Marek Szyprowski
Hello, On 2015-06-11 09:07, Joonyoung Shim wrote: > With atomic modesetting all the control for CRTC, Planes, Encoders and > Connectors should come from DRM core, so the driver is not allowed to > enable or disable planes from inside the crtc_enable()/disable() call. > > But it needs to disable pl

[Bug 90873] Kernel hang, TearFree On, Mate desktop environment

2015-06-11 Thread bugzilla-dae...@freedesktop.org
-- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150611/bff782bb/attachment.html>

[PATCH v2] acpi-video: Add a parameter to not register the backlight sysfs interface

2015-06-11 Thread Aaron Lu
On Tue, Jun 09, 2015 at 11:54:45PM +0200, Hans de Goede wrote: > Hi, > > On 06/09/2015 11:10 AM, Aaron Lu wrote: > >On Tue, Jun 09, 2015 at 10:32:25AM +0200, Hans de Goede wrote: > >>On some systems acpi-video backlight is broken in the sense that it cannot > >>control the brightness of the backli

atombios_crtc.c - make error messages distinguishable "unable to allocate a PPLL\n"

2015-06-11 Thread Alex Deucher
On Wed, Jun 10, 2015 at 6:12 PM, James Feeney wrote: >> Yes, DP needs its own clock source. However, you only need one clock source >> for all DP ports so you can drive multiple DP displays from a single clock >> source. The clock source used for DP cannot be shared with non-DP displays. >> ...

[Intel-gfx] [PATCH] drm: Avoid the double clflush on the last cache line in drm_clflush_virt_range()

2015-06-11 Thread Chris Wilson
On Thu, Jun 11, 2015 at 09:25:16AM +0100, Dave Gordon wrote: > On 10/06/15 15:58, Chris Wilson wrote: > > As the clflush operates on cache lines, and we can flush any byte > > address, in order to flush all bytes given in the range we issue an > > extra clflush on the last byte to ensure the last c

[PATCH] drm/bridge/ptn3460: add include for gpiod*

2015-06-11 Thread Uwe Kleine-König
Hello, On Thu, Jun 11, 2015 at 09:13:10AM +0200, Thierry Reding wrote: > On Wed, Jun 10, 2015 at 09:15:25AM +0200, Uwe Kleine-König wrote: > > Hello, > > > > Cc += dri-devel at lists.freedesktop.org + kernel at pengutronix.de, forgot > > that for the original submission. Also added (hopefully th

[Intel-gfx] [PATCH] drm: Avoid the double clflush on the last cache line in drm_clflush_virt_range()

2015-06-11 Thread Dave Gordon
On 10/06/15 15:58, Chris Wilson wrote: > As the clflush operates on cache lines, and we can flush any byte > address, in order to flush all bytes given in the range we issue an > extra clflush on the last byte to ensure the last cacheline is flushed. > We can can the iteration to be over the actual

[PATCH] drm/bridge/ptn3460: add include for gpiod*

2015-06-11 Thread Thierry Reding
applied his instead. > > I didn't find where you applied it. Did you send this patch to Linus for > > 4.1? > If you want to get this into 4.1 it's about time to send it to Linus. Or > don't you consider it that urgent? This build error is triggered by somewhat artificial configuration options and it's been present since v4.0, so I don't think it qualifies as that urgent. It's in linux-next and should make it into v4.2. Thierry -- next part -- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 819 bytes Desc: not available URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150611/33408a85/attachment.sig>

[PATCH 22/32] fujitsu-laptop: Port to new backlight interface selection API

2015-06-11 Thread Jonathan Woithe
On Wed, Jun 10, 2015 at 03:01:22PM +0200, Hans de Goede wrote: > Port the backlight selection logic to the new backlight interface > selection API. Acked-by: Jonathan Woithe > Signed-off-by: Hans de Goede > --- > drivers/platform/x86/fujitsu-laptop.c | 6 +++--- > 1 file changed, 3 insertions(

[PATCH] drm/bochs: convert bochs driver to atomic mode-setting

2015-06-11 Thread Gerd Hoffmann
On Do, 2015-06-11 at 11:18 +0800, John Hunter wrote: > Hi Gerd, > Here is what I got: > > > [ 813.137939] [drm:drm_pci_init] > [ 813.142780] [drm:drm_get_pci_dev] > [ 813.156986] [drm:drm_minor_register] > [ 813.212679] [drm:drm_minor_register] new minor registered 64 > [ 813.213341] [drm

[patch] drm/virtio: remove some dead code

2015-06-11 Thread Gerd Hoffmann
On Mi, 2015-06-10 at 22:27 +0300, Dan Carpenter wrote: > The goto is correct, and we never reach the return statement so just > delete the dead code. > > Signed-off-by: Dan Carpenter Reviewed-by: Gerd Hoffmann

[patch] drm/virtio: checking for NULL instead of IS_ERR

2015-06-11 Thread Gerd Hoffmann
On Mi, 2015-06-10 at 22:27 +0300, Dan Carpenter wrote: > virtio_gpu_alloc_object() returns an error pointer, it never returns > NULL. > > Fixes: dc5698e80cf7 ('Add virtio gpu driver.') > Signed-off-by: Dan Carpenter Reviewed-by: Gerd Hoffmann

[PATCH v2 00/10] Color Manager Implementation

2015-06-11 Thread Malladi, Kausal
I am guessing, the mails were not received because I wasn't subscribed to the these two mailing lists. Now I am subscribed and shouldn't have any problem hopefully. Thanks Damien for bringing it to my notice. Regards Kausal -Original Message- From: Lespiau, Damien Sent: Tuesday, June

[PATCH] treewide: Fix typo compatability -> compatibility

2015-06-11 Thread Laurent Pinchart
Hello, On Wednesday 10 June 2015 13:00:20 Masanari Iida wrote: > On Wed, Jun 10, 2015 at 7:27 AM, Mauro Carvalho Chehab wrote: > > Em Wed, 27 May 2015 15:05:42 +0300 > > > > Laurent Pinchart escreveu: > >> Even though 'compatability' has a dedicated entry in the Wiktionary, > >> it's listed as '

[PATCH 28/32] sony-laptop: Port to new backlight interface selection API

2015-06-11 Thread Mattia Dongili
On Wed, Jun 10, 2015 at 03:01:28PM +0200, Hans de Goede wrote: > Port the backlight selection logic to the new backlight interface > selection API. > > This commit also removes various obsolete pr_xxx messages related to > backlight interface selection. These are obsolete because they assume > the

[Bug 89713] [radeon]GPU lockup in World of Tanks with gallium nine

2015-06-11 Thread bugzilla-dae...@freedesktop.org
(Sapphire) PITCAIRN GPU, 1GB, 4GB RAM. -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150611/f6691f89/attachment.html>

[Bug 90926] Unusable GPU

2015-06-11 Thread bugzilla-dae...@freedesktop.org
. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150611/ee5e170f/attachment-0001.html>