[PATCHv4 06/13] drm: Add primary plane helpers (v2)

2014-04-02 Thread Dave Airlie
On Tue, Apr 1, 2014 at 5:45 PM, Daniel Vetter wrote: > On Mon, Mar 31, 2014 at 06:03:24PM -0700, Matt Roper wrote: >> On Fri, Mar 28, 2014 at 09:32:06AM +0100, Daniel Vetter wrote: >> > On Thu, Mar 27, 2014 at 05:44:31PM -0700, Matt Roper wrote: >> ... >> > > + * N.B., we call set_config() direct

[Bug 73911] Color Banding on radeon

2014-04-02 Thread bugzilla-dae...@freedesktop.org
k space to compile the patched kernel. didn't know it would eat up my last 12GB. -- 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

[Bug 43829] Resuming my AMD A4-3300 based laptop leaves the screen black

2014-04-02 Thread bugzilla-dae...@freedesktop.org
(Arch linux) Mesa - 10.1.0 Radeon 7520G -- 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/20140402/6b16fbbb/attachment.html>

[Bug 42960] Display does not work when resuming from suspend

2014-04-02 Thread bugzilla-dae...@freedesktop.org
chives/dri-devel/attachments/20140402/b7221e41/attachment.html>

[Bug 73911] Color Banding on radeon

2014-04-02 Thread bugzilla-dae...@freedesktop.org
ves/dri-devel/attachments/20140402/bf4ac2b0/attachment-0001.html>

[PATCH v3 00/12] Add DSI display support for Exynos based boards

2014-04-02 Thread Andrzej Hajda
Hi Inki, I see you have took also ld9040 driver patch [1]. Could you take the 3rd version of this patch [2]. It fixes build dependencies. [1]: http://permalink.gmane.org/gmane.comp.video.dri.devel/102592 [2]: http://permalink.gmane.org/gmane.comp.video.dri.devel/102659 Thanks and Regards Andrzej

[PATCH] drm/i915: fix command parser debug print format mismatches

2014-04-02 Thread Jani Nikula
Drop the cast from the pointer diff to fix: drivers/gpu/drm/i915/i915_cmd_parser.c:405:4: warning: format '%td' expects argument of type 'ptrdiff_t', but argument 5 has type 'long unsigned int' [-Wformat] While at it, use %u for u32. Reported-by: Randy Dunlap Signed-off-by: Jani Nikula --- R

[PATCH 1/4] drm: Optionally create mm blocks from top-to-bottom

2014-04-02 Thread Daniel Vetter
On Mon, Mar 31, 2014 at 03:27:54PM +0300, Lauri Kasanen wrote: > Clients like i915 need to segregate cache domains within the GTT which > can lead to small amounts of fragmentation. By allocating the uncached > buffers from the bottom and the cacheable buffers from the top, we can > reduce the amou

[PATCH] drm: make mode_valid callback optional

2014-04-02 Thread Andrzej Hajda
Many drm connectors do not need mode validation. The patch makes this callback optional and removes dumb implementations. Signed-off-by: Andrzej Hajda --- Hi, This patch is based on the latest drm-next. I have removed all dumb implementations except for qxl_display.c, which is not entirely dumb

[PATCH] drm: Add support for two-ended allocation, v2

2014-04-02 Thread Lauri Kasanen
Clients like i915 need to segregate cache domains within the GTT which can lead to small amounts of fragmentation. By allocating the uncached buffers from the bottom and the cacheable buffers from the top, we can reduce the amount of wasted space and also optimize allocation of the mappable portion

[PATCH] drm: make mode_valid callback optional

2014-04-02 Thread Daniel Vetter
On Wed, Apr 02, 2014 at 10:34:04AM +0200, Andrzej Hajda wrote: > Many drm connectors do not need mode validation. > The patch makes this callback optional and removes dumb implementations. > > Signed-off-by: Andrzej Hajda > --- > Hi, > > This patch is based on the latest drm-next. > I have remov

Synchronization between a crtc mode_set and page_flip?

2014-04-02 Thread Archit Taneja
Hi, I was trying to figure out how we are supposed to manage synchronization between a mode_set and a page_flip called on a crtc. Say, if a mode_set is immediately followed by a page_flip. The driver can't process the page_flip straight away since the hardware is still completing the mode_set.

[Bug 76919] Random junk at the bottom of non-multiple-of-4 compressed textures (original or mipmapped)

2014-04-02 Thread bugzilla-dae...@freedesktop.org
ee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20140402/c3561c3d/attachment.html>

[Bug 60879] [radeonsi] X11 can't start with acceleration enabled

2014-04-02 Thread bugzilla-dae...@freedesktop.org
dri-devel/attachments/20140402/047fffe8/attachment.html>

[PATCH v2] drm: make mode_valid callback optional

2014-04-02 Thread Andrzej Hajda
Many drm connectors do not need mode validation. The patch makes this callback optional and removes dumb implementations. Signed-off-by: Andrzej Hajda --- v2: - added comment and updated DocBook --- Documentation/DocBook/drm.tmpl | 6 +++--- drivers/gpu/drm/ast/ast_mode.c

[PATCH] drm: Add support for two-ended allocation, v2

2014-04-02 Thread Christian König
Nice idea, but I wouldn't put the decision where to place the buffer into TTM based on it's size. Instead please make that a proper TTM placement flag because for example for VM page tables we want them to be at the end of VRAM, not because they are big (which they are anyway) but because they

[PATCH] drm/radeon: fix typo in spectre_golden_registers

2014-04-02 Thread Alex Deucher
Signed-off-by: Alex Deucher Cc: stable at vger.kernel.org --- drivers/gpu/drm/radeon/cik.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/radeon/cik.c b/drivers/gpu/drm/radeon/cik.c index dd545521..448da65 100644 --- a/drivers/gpu/drm/radeon/cik.c +++ b/driver

[PATCH] drm/radeon: fix endian swap on hawaii clear state buffer setup

2014-04-02 Thread Alex Deucher
Need to swap on BE. Signed-off-by: Alex Deucher Cc: stable at vger.kernel.org --- drivers/gpu/drm/radeon/cik.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/radeon/cik.c b/drivers/gpu/drm/radeon/cik.c index 9bfd3d3..dd545521 100644 --- a/drivers/gpu/drm/

Synchronization between a crtc mode_set and page_flip?

2014-04-02 Thread Rob Clark
On Wed, Apr 2, 2014 at 5:52 AM, Archit Taneja wrote: > Hi, > > I was trying to figure out how we are supposed to manage synchronization > between a mode_set and a page_flip called on a crtc. > > Say, if a mode_set is immediately followed by a page_flip. The driver can't > process the page_flip str

[Bug 67110] [radeonsi] Anomaly Warzone Earth games are segfaulting

2014-04-02 Thread bugzilla-dae...@freedesktop.org
: <http://lists.freedesktop.org/archives/dri-devel/attachments/20140402/0b571cb4/attachment.html>

[PATCH v2 1/7] drm/exynos: add super device support

2014-04-02 Thread Andrzej Hajda
On 04/01/2014 02:37 PM, Inki Dae wrote: > This patch adds super device support to bind sub drivers > using device tree. > > For this, you should add a super device node to each machine dt files > like belows, > > In case of using MIPI-DSI, > display-subsystem { > compatible =

[PATCH 4/4] drm/omap: fix race issue when unloading omapdrm

2014-04-02 Thread Rob Clark
On Wed, Apr 2, 2014 at 8:38 AM, Tomi Valkeinen wrote: > At module unload, omap_fbdev_free() gets called which releases the > framebuffers. However, the framebuffers are still used by crtcs, and > will be released only later at vsync. The driver doesn't wait for this, > and goes on to release the r

X.org doesn't start with 3.14: [KMS] drm report modesetting isn't supported

2014-04-02 Thread Justin Piszcz
> -Original Message- > From: Bruno Pr?mont [mailto:bonbons at linux-vserver.org] > Sent: Tuesday, April 01, 2014 4:22 PM > To: Justin Piszcz > Cc: linux-kernel at vger.kernel.org; dri-devel at lists.freedesktop.org > Subject: Re: X.org doesn't start with 3.14: [KMS] drm report modesetting

[PATCH 1/4] drm/omap: fix output enable/disable sequence

2014-04-02 Thread Tomi Valkeinen
At the moment it's quite easy to get the following errors when the HDMI output is enabled or disabled: [drm:omap_crtc_error_irq] *ERROR* tv: errors: 8000 The reason for the errors is that the omapdrm driver doesn't properly handle the sync-lost irqs that happen when enabling the DIGIT crtc, w

[PATCH 4/4] drm/omap: fix race issue when unloading omapdrm

2014-04-02 Thread Tomi Valkeinen
At module unload, omap_fbdev_free() gets called which releases the framebuffers. However, the framebuffers are still used by crtcs, and will be released only later at vsync. The driver doesn't wait for this, and goes on to release the rest of the resources, which often causes a crash. This patchs

[PATCH 3/6] shm: add memfd_create() syscall

2014-04-02 Thread Konstantin Khlebnikov
On Wed, Mar 19, 2014 at 11:06 PM, David Herrmann wrote: > memfd_create() is similar to mmap(MAP_ANON), but returns a file-descriptor > that you can pass to mmap(). It explicitly allows sealing and > avoids any connection to user-visible mount-points. Thus, it's not > subject to quotas on mounted

[PATCH 04/12] drm/nouveau/bar/nvc0: support chips without BAR3

2014-04-02 Thread Alexandre Courbot
On Tue, Mar 25, 2014 at 7:10 AM, Thierry Reding wrote: > On Mon, Mar 24, 2014 at 05:42:26PM +0900, Alexandre Courbot wrote: > [...] >> diff --git a/drivers/gpu/drm/nouveau/core/subdev/bar/nvc0.c >> b/drivers/gpu/drm/nouveau/core/subdev/bar/nvc0.c > [...] >> static int >> -nvc0_bar_ctor(struct no

[PATCH 06/12] drm/nouveau/ibus: add GK20A support

2014-04-02 Thread Alexandre Courbot
On Tue, Mar 25, 2014 at 7:34 AM, Thierry Reding wrote: > On Mon, Mar 24, 2014 at 05:42:28PM +0900, Alexandre Courbot wrote: > [...] >> diff --git a/drivers/gpu/drm/nouveau/core/subdev/ibus/nvea.c >> b/drivers/gpu/drm/nouveau/core/subdev/ibus/nvea.c > [...] >> +#include >> + >> +struct nvea_ibus_

[PATCH 08/12] drm/nouveau/graph: enable when using external firmware

2014-04-02 Thread Alexandre Courbot
On Wed, Mar 26, 2014 at 1:21 PM, Ben Skeggs wrote: > On Tue, Mar 25, 2014 at 8:58 AM, Thierry Reding > wrote: >> On Mon, Mar 24, 2014 at 05:42:30PM +0900, Alexandre Courbot wrote: >> [...] >>> diff --git a/drivers/gpu/drm/nouveau/core/engine/graph/nvc0.c >>> b/drivers/gpu/drm/nouveau/core/engine

[Nouveau] [PATCH 09/12] drm/nouveau/graph: pad firmware code at load time

2014-04-02 Thread Alexandre Courbot
On Wed, Mar 26, 2014 at 1:22 PM, Ben Skeggs wrote: > On Mon, Mar 24, 2014 at 6:42 PM, Alexandre Courbot > wrote: >> Pad the microcode to a multiple of 0x40, otherwise firmware will fail to >> run from non-prepadded firmware files. >> >> Signed-off-by: Alexandre Courbot >> --- >> drivers/gpu/dr

[PATCH 10/12] drm/nouveau/graph: add GK20A support

2014-04-02 Thread Alexandre Courbot
On Wed, Mar 26, 2014 at 1:24 PM, Ben Skeggs wrote: > On Mon, Mar 24, 2014 at 6:42 PM, Alexandre Courbot > wrote: >> Add a GR device for GK20A based on NVE4, with the correct classes >> definitions (GK20A's 3D class is 0xa297). >> >> Most of the NVE4 code can be used on GK20A, so make relevant bi

[PATCH] drm/exynos: add phy settings for RB resolutions

2014-04-02 Thread Shirish S
Hi, Kindly hold the merging of this patch, i shall update it with proper values, once i receive it from our hardware team. Regards, ShirisH S On Thu, Mar 20, 2014 at 1:05 PM, St?phane Marchesin wrote: > > > > On Wed, Mar 12, 2014 at 10:28 PM, Shirish S wrote: >> >> This patch adds support for the

spinlock lockup suspected on CPU error on omapdrm

2014-04-02 Thread Vikas Patil
.158142] [] (kthread+0xa4/0xb0) from [] (ret_from_fork+0x14/0x24) Thanking you for your time. Thanks & Regards, Vikas -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20140402/43e04a33/attachment-0001.html>

[PATCH 2/4] drm/omap: fix uninit order in pdev_remove()

2014-04-02 Thread Tomi Valkeinen
When unloading omapdrm driver, the omapdrm platform device is uninitialized last, after the displays have been disconnected omap_crtc callbacks have been removed. As the omapdrm pdev uninitialization needs the features uninitialized in earlier steps, a crash is guaranteed. This patch fixes the uni

[PATCH 3/4] drm/omap: fix DMM driver (un)registration

2014-04-02 Thread Tomi Valkeinen
At the moment the DMM driver is never unregistered, even if it's registered in the omapdrm module's init function. This means we'll get errors when reloading the omapdrm module. Fix this by unregistering the DMM driver properly, and also change the module init to fail if DMM driver cannot be regis

[PATCH 3/4] drm/omap: fix DMM driver (un)registration

2014-04-02 Thread Rob Clark
On Wed, Apr 2, 2014 at 8:37 AM, Tomi Valkeinen wrote: > At the moment the DMM driver is never unregistered, even if it's > registered in the omapdrm module's init function. This means we'll get > errors when reloading the omapdrm module. > > Fix this by unregistering the DMM driver properly, and a

[PATCH 2/4] drm/omap: fix uninit order in pdev_remove()

2014-04-02 Thread Rob Clark
On Wed, Apr 2, 2014 at 8:37 AM, Tomi Valkeinen wrote: > When unloading omapdrm driver, the omapdrm platform device is > uninitialized last, after the displays have been disconnected omap_crtc > callbacks have been removed. As the omapdrm pdev uninitialization needs > the features uninitialized in

[Nouveau] [PATCH 06/12] drm/nouveau/ibus: add GK20A support

2014-04-02 Thread Ilia Mirkin
On Wed, Apr 2, 2014 at 9:52 AM, Alexandre Courbot wrote: > On Tue, Mar 25, 2014 at 7:34 AM, Thierry Reding > wrote: >> On Mon, Mar 24, 2014 at 05:42:28PM +0900, Alexandre Courbot wrote: >> [...] >>> diff --git a/drivers/gpu/drm/nouveau/core/subdev/ibus/nvea.c >>> b/drivers/gpu/drm/nouveau/core/s

[PATCH 3/6] shm: add memfd_create() syscall

2014-04-02 Thread David Herrmann
Hi On Wed, Apr 2, 2014 at 3:38 PM, Konstantin Khlebnikov wrote: > On Wed, Mar 19, 2014 at 11:06 PM, David Herrmann > wrote: >> memfd_create() is similar to mmap(MAP_ANON), but returns a file-descriptor >> that you can pass to mmap(). It explicitly allows sealing and >> avoids any connection to

[PATCH 1/4] drm/omap: fix output enable/disable sequence

2014-04-02 Thread Rob Clark
On Wed, Apr 2, 2014 at 8:37 AM, Tomi Valkeinen wrote: > At the moment it's quite easy to get the following errors when the HDMI > output is enabled or disabled: > > [drm:omap_crtc_error_irq] *ERROR* tv: errors: 8000 > > The reason for the errors is that the omapdrm driver doesn't properly > ha

[Nouveau] [PATCH 11/12] drm/nouveau: support GK20A in nouveau_accel_init()

2014-04-02 Thread Ilia Mirkin
On Wed, Apr 2, 2014 at 10:14 AM, Alexandre Courbot wrote: + /* Need to figure out how to handle sw for gk20a */ + if (device->chipset == 0xea) + goto skip_sw_init; >>> >>> The commit message makes it sound like SW isn't needed since gk20a >>> "lacks any display h

spinlock lockup suspected on CPU error on omapdrm

2014-04-02 Thread Rob Clark
On Wed, Apr 2, 2014 at 8:23 AM, Vikas Patil wrote: > Hi, > I am seeing following kernel backtrace on J6 with linux 3.8.13 when trying > to start IVI LM service. Before starting this I started the X11 and run some > GLES2/X11 based tests successfully. > > The same binaries and my graphics driver ar

[Bug 76954] New: Unigine Tropics has rendering issues all over the place with LLVM on Cayman

2014-04-02 Thread bugzilla-dae...@freedesktop.org
or the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20140402/4cb39089/attachment.html>

[PATCH] drm: Add support for two-ended allocation, v2

2014-04-02 Thread Lauri Kasanen
On Wed, 02 Apr 2014 13:00:00 +0200 Christian K?nig wrote: > Nice idea, but I wouldn't put the decision where to place the buffer > into TTM based on it's size. > > Instead please make that a proper TTM placement flag because for example > for VM page tables we want them to be at the end of VRA

[PATCH] drm: Add support for two-ended allocation, v2

2014-04-02 Thread Christian König
Am 02.04.2014 16:54, schrieb Lauri Kasanen: > On Wed, 02 Apr 2014 13:00:00 +0200 > Christian K?nig wrote: > >> Nice idea, but I wouldn't put the decision where to place the buffer >> into TTM based on it's size. >> >> Instead please make that a proper TTM placement flag because for example >> for

[Bug 76564] [AMD Fusion E-350] HDMI refresh rates doesn't match expectations

2014-04-02 Thread bugzilla-dae...@freedesktop.org
signee for the bug. -- next part ------ An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20140402/fbef1c7b/attachment.html>

[PATCH 11/12] drm/nouveau: support GK20A in nouveau_accel_init()

2014-04-02 Thread Alexandre Courbot
On Wed, Mar 26, 2014 at 1:27 PM, Ben Skeggs wrote: > On Tue, Mar 25, 2014 at 9:10 AM, Thierry Reding > wrote: >> On Mon, Mar 24, 2014 at 05:42:33PM +0900, Alexandre Courbot wrote: >>> GK20A does not embed a dedicated COPY engine and thus cannot allocate >>> the copy channel that nouveau_accel_ini

[PATCH] drm/i915: fix command parser debug print format mismatches

2014-04-02 Thread Randy Dunlap
On 04/02/2014 01:24 AM, Jani Nikula wrote: > Drop the cast from the pointer diff to fix: > > drivers/gpu/drm/i915/i915_cmd_parser.c:405:4: warning: format '%td' expects > argument of type 'ptrdiff_t', but argument 5 has type 'long unsigned int' > [-Wformat] > > While at it, use %u for u32. > > R

[Nouveau] [PATCH 06/12] drm/nouveau/ibus: add GK20A support

2014-04-02 Thread Alexandre Courbot
On Wed, Apr 2, 2014 at 11:18 PM, Ilia Mirkin wrote: > On Wed, Apr 2, 2014 at 9:52 AM, Alexandre Courbot wrote: >> On Tue, Mar 25, 2014 at 7:34 AM, Thierry Reding >> wrote: >>> On Mon, Mar 24, 2014 at 05:42:28PM +0900, Alexandre Courbot wrote: >>> [...] diff --git a/drivers/gpu/drm/nouveau/c

[PATCH 3/6] shm: add memfd_create() syscall

2014-04-02 Thread Konstantin Khlebnikov
On Wed, Apr 2, 2014 at 6:18 PM, David Herrmann wrote: > Hi > > On Wed, Apr 2, 2014 at 3:38 PM, Konstantin Khlebnikov > wrote: >> On Wed, Mar 19, 2014 at 11:06 PM, David Herrmann >> wrote: >>> memfd_create() is similar to mmap(MAP_ANON), but returns a file-descriptor >>> that you can pass to mm

[PATCH 3/4] drm/omap: fix DMM driver (un)registration

2014-04-02 Thread Tomi Valkeinen
we're out of memory, or the driver is already register, or some other similar situation. Tomi -- next part -- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 836 bytes Desc: OpenPGP digital signature URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20140402/5b5dd953/attachment.sig>

[Nouveau] [PATCH 12/12] drm/nouveau: support for probing GK20A

2014-04-02 Thread Alexandre Courbot
On Wed, Mar 26, 2014 at 1:28 PM, Ben Skeggs wrote: > On Mon, Mar 24, 2014 at 6:42 PM, Alexandre Courbot > wrote: >> Set the correct subdev/engine classes when GK20A (0xea) is probed. >> >> Signed-off-by: Alexandre Courbot >> --- >> drivers/gpu/drm/nouveau/core/engine/device/nve0.c | 20 +++

[Bug 76564] [AMD Fusion E-350] HDMI refresh rates doesn't match expectations

2014-04-02 Thread bugzilla-dae...@freedesktop.org
ignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20140402/577583ee/attachment.html>

[Bug 75992] Display freezes & corruption with an r7 260x on 3.14-rc6

2014-04-02 Thread bugzilla-dae...@freedesktop.org
archives/dri-devel/attachments/20140402/b6b5c3cf/attachment-0001.html>

drm/nouveau/bios: fetch the vbios from PROM using only aligned 32-bit accesses

2014-04-02 Thread Dan Carpenter
Hello Martin Peres, The patch 18acc6d84eba: "drm/nouveau/bios: fetch the vbios from PROM using only aligned 32-bit accesses" from Mar 25, 2014, leads to the following static checker warning: drivers/gpu/drm/nouveau/core/subdev/bios/base.c:191 nouveau_bios_shadow_prom() error: pot

[PATCH 1/2] drm: Add support for two-ended allocation, v3

2014-04-02 Thread Lauri Kasanen
Clients like i915 need to segregate cache domains within the GTT which can lead to small amounts of fragmentation. By allocating the uncached buffers from the bottom and the cacheable buffers from the top, we can reduce the amount of wasted space and also optimize allocation of the mappable portion

[PATCH 2/2] drm/radeon: Use two-ended allocation by size

2014-04-02 Thread Lauri Kasanen
This decreases eviction by up to 20%, by improving the fragmentation quality. No harm in normal cases that fit VRAM fully (PTS gaming suite). In some cases, even the VRAM-fitting cases improved slightly (openarena, urban terror). 512kb was measured as the most optimal threshold for 3d workloads

[PATCH 2/2] drm/radeon: Use two-ended allocation by size

2014-04-02 Thread Alex Deucher
On Wed, Apr 2, 2014 at 1:04 PM, Lauri Kasanen wrote: > This decreases eviction by up to 20%, by improving the fragmentation > quality. No harm in normal cases that fit VRAM fully (PTS gaming suite). > > In some cases, even the VRAM-fitting cases improved slightly (openarena, > urban terror). > >

[Bug 76957] New: Pixel artifacts and corruption plus system freeze and instabilities with the free radeon driver (AMD HD 6570)

2014-04-02 Thread bugzilla-dae...@freedesktop.org
nfiguration files). -- 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/20140402/5b89a8a6/attachment-0001.html>

[Bug 76957] Pixel artifacts and corruption plus system freeze and instabilities with the free radeon driver (AMD HD 6570)

2014-04-02 Thread bugzilla-dae...@freedesktop.org
the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20140402/728870de/attachment.html>

[Bug 76957] Pixel artifacts and corruption plus system freeze and instabilities with the free radeon driver (AMD HD 6570)

2014-04-02 Thread bugzilla-dae...@freedesktop.org
the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20140402/c8389f4e/attachment.html>

[Bug 76957] Pixel artifacts and corruption plus system freeze and instabilities with the free radeon driver (AMD HD 6570)

2014-04-02 Thread bugzilla-dae...@freedesktop.org
for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20140402/6d16b7d9/attachment.html>

[Bug 76957] Pixel artifacts and corruption plus system freeze and instabilities with the free radeon driver (AMD HD 6570)

2014-04-02 Thread bugzilla-dae...@freedesktop.org
the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20140402/41154fed/attachment.html>

[Bug 76957] Pixel artifacts and corruption plus system freeze and instabilities with the free radeon driver (AMD HD 6570)

2014-04-02 Thread bugzilla-dae...@freedesktop.org
is 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/20140402/ae331986/attachment.html>

[Bug 76957] Pixel artifacts and corruption plus system freeze and instabilities with the free radeon driver (AMD HD 6570)

2014-04-02 Thread bugzilla-dae...@freedesktop.org
HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20140402/3b4d38fb/attachment.html>

[PATCH] drm/radeon: Use two-ended allocation by size, v2

2014-04-02 Thread Lauri Kasanen
This decreases eviction by up to 20%, by improving the fragmentation quality. No harm in normal cases that fit VRAM fully (PTS gaming suite). In some cases, even the VRAM-fitting cases improved slightly (openarena, urban terror). 512kb was measured as the most optimal threshold for 3d workloads

[Bug 40762] Kernel crashes when activation powersaving feature of mobility radeon x1400

2014-04-02 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=40762 steve_northover at hotmail.com changed: What|Removed |Added CC||steve_northover at hotmail

[Bug 76564] [AMD Fusion E-350] HDMI refresh rates doesn't match expectations

2014-04-02 Thread bugzilla-dae...@freedesktop.org
try to ssh into the box and change the modes using xrandr directly. -- 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/20140402/9c4ad7b6/attachment.html>

[PATCH] drm/radeon: Use two-ended allocation by size, v2

2014-04-02 Thread Christian König
Am 02.04.2014 19:33, schrieb Lauri Kasanen: > This decreases eviction by up to 20%, by improving the fragmentation > quality. No harm in normal cases that fit VRAM fully (PTS gaming suite). > > In some cases, even the VRAM-fitting cases improved slightly (openarena, > urban terror). > > 512kb was

[Bug 76957] Pixel artifacts and corruption plus system freeze and instabilities with the free radeon driver (AMD HD 6570)

2014-04-02 Thread bugzilla-dae...@freedesktop.org
|| -- 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/20140402/009a4824/attachment.html>

[Bug 76957] Pixel artifacts and corruption plus system freeze and instabilities with the free radeon driver (AMD HD 6570)

2014-04-02 Thread bugzilla-dae...@freedesktop.org
. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20140402/7c36e437/attachment.html>

[Bug 76564] [AMD Fusion E-350] HDMI refresh rates doesn't match expectations

2014-04-02 Thread bugzilla-dae...@freedesktop.org
t it got the core rendering of frames done without stuttering. The XVBA part was not that ideal though. -- 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/20140402/f1c0b0dc/attachment.html>

[Bug 76564] [AMD Fusion E-350] HDMI refresh rates doesn't match expectations

2014-04-02 Thread bugzilla-dae...@freedesktop.org
e bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20140402/9b960a7d/attachment.html>

[Bug 76957] Pixel artifacts and corruption plus system freeze and instabilities with the free radeon driver (AMD HD 6570)

2014-04-02 Thread bugzilla-dae...@freedesktop.org
-- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20140402/80f96b55/attachment.html>

[Bug 76564] [AMD Fusion E-350] HDMI refresh rates doesn't match expectations

2014-04-02 Thread bugzilla-dae...@freedesktop.org
ople on this mailing list have probably no idea how XBMC internally works making it difficult to help us. -- 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/arc

[Bug 75992] Display freezes & corruption with an r7 260x on 3.14-rc6

2014-04-02 Thread bugzilla-dae...@freedesktop.org
HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20140402/85faf0f9/attachment.html>

[PATCH] drm: Missed clflushopt in drm_clflush_virt_range

2014-04-02 Thread Ross Zwisler
With this commit: 2a0788dc9bc4 x86: Use clflushopt in drm_clflush_virt_range If clflushopt is available on the system, we use it instead of clflush in drm_clflush_virt_range. There were two calls to clflush in this function, but only one was changed to clflushopt. This patch changes the other c

[PATCH 1/5] drm/exynos: remove dummy hdmiphy clock from hdmi driver

2014-04-02 Thread Rahul Sharma
From: Rahul Sharma Exynos drm hdmi driver used to get dummy hdmiphy clock to control the PMU bit for hdmiphy. This clock is removed during CCF migration. This should also be cleaned from hdmi driver. Signed-off-by: Rahul Sharma --- drivers/gpu/drm/exynos/exynos_hdmi.c |8 1 file c

[PATCH 2/5] drm/exynos: use regmap interface to set hdmiphy control bit in pmu

2014-04-02 Thread Rahul Sharma
From: Rahul Sharma Hdmiphy control bit needs to be set before setting the resolution to hdmi hardware. This was handled using dummy hdmiphy clock which is removed now. PMU is already defined as system controller for exynos SoC. Registers of PMU are accessed using regmap interfaces. Devicetree b

[PATCH 3/5] drm/exynos: remove unnecessary read for phy configuration values

2014-04-02 Thread Rahul Sharma
From: Rahul Sharma Cleaning up unnecessary i2c read call after hdmiphy configuration. This check is redundant since check for hdmiphy pll lock status confirms the correct settings for phy. Signed-off-by: Rahul Sharma Signed-off-by: Daniel Kurtz --- drivers/gpu/drm/exynos/exynos_hdmi.c | 10

[PATCH 5/5] drm/exynos: enable support for exynos5420 hdmi device

2014-04-02 Thread Rahul Sharma
From: Rahul Sharma Enable support for hdmi for exynos5420 hdmiphy. Add compatible string in the of_match table. Also added hdmiphy configuration values for exynos5420. Signed-off-by: Rahul Sharma Signed-off-by: Shirish S --- .../devicetree/bindings/video/exynos_hdmi.txt |1 + drivers

[PATCH 0/5] drm/exynos: enable support for exynos5420 hdmi

2014-04-02 Thread Rahul Sharma
From: Rahul Sharma Adds apb mapped phy support for exynos5420 hdmi. Replace dummy hdmiphy clock with regmap calls. Based on Inki Dae's exynos-drm-next branch. Rahul Sharma (5): drm/exynos: remove dummy hdmiphy clock from hdmi driver drm/exynos: use regmap interface to set hdmiphy control bi

[PATCH 4/5] drm/exynos: add support for apb mapped phys in hdmi driver

2014-04-02 Thread Rahul Sharma
From: Rahul Sharma Previous SoCs have hdmi phys which are accessible through dedicated i2c lines. Newer SoCs have Apb mapped hdmi phys. Hdmi driver is modified to support apb mapped phys. Signed-off-by: Rahul Sharma --- drivers/gpu/drm/exynos/exynos_hdmi.c | 142 +-