Re: [Mesa-dev] [PATCH 3/4] radeon, r200: allow hyperz for radeon DRM module v2

2015-07-13 Thread Alex Deucher
On Sat, Jul 11, 2015 at 8:48 AM, Roland Scheidegger wrote: > Am 11.07.2015 um 11:25 schrieb Marek Olšák: >> On Fri, Jul 10, 2015 at 11:02 PM, Roland Scheidegger >> wrote: >>> Am 10.07.2015 um 19:41 schrieb Emil Velikov: On 10 July 2015 at 13:18, Roland Scheidegger wrote: > Am 10.07.201

Re: [Mesa-dev] [PATCH] r600/sb: Fix an &/&& mistake

2015-07-21 Thread Alex Deucher
> or change '&' to '&&' or '!' to '~' [-Wparentheses] > if (!trans & fbs) > > It happens to be harmless; if fbs is ever non-zero, it will be VEC_210, > which is 5, so (!trans & 5) == 1 and the branch works as expec

Re: [Mesa-dev] Using the right context in st_texture_release_all_sampler_views()

2015-07-23 Thread Alex Deucher
On Wed, Jul 22, 2015 at 6:32 PM, Brian Paul wrote: > Hi Marek, > > This is regarding your commit "st/mesa: use pipe_sampler_view_release for > releasing sampler views" from last October. > > Basically, we have: > > void > st_texture_release_all_sampler_views(struct st_context *st, >

Re: [Mesa-dev] [PATCH] u_vbuf: fix vb slot assignment for translated buffers

2015-10-12 Thread Alex Deucher
On Mon, Oct 12, 2015 at 7:10 AM, Nicolai Hähnle wrote: > On 09.10.2015 23:57, Marek Olšák wrote: >> >> Do you still have commit access and should somebody else push this? > > > I have to figure out how to get somebody to pay attention to > https://bugs.freedesktop.org/show_bug.cgi?id=92281 > > Fee

Re: [Mesa-dev] [PATCH 2/2] r600/vce: enable VCE for trinity/richland

2015-10-12 Thread Alex Deucher
On Mon, Oct 12, 2015 at 4:53 AM, Christian König wrote: > From: Christian König > > Signed-off-by: Christian König For the series: Reviewed-by: Alex Deucher > --- > src/gallium/drivers/r600/r600_uvd.c | 22 +- > 1 file changed, 21 insertions(+), 1 de

Re: [Mesa-dev] [PATCH] r600g: Pass conservative depth parameters to hw

2015-10-17 Thread Alex Deucher
On Fri, Oct 16, 2015 at 6:52 PM, Glenn Kennard wrote: > Supported on R700 and up. > > Signed-off-by: Glenn Kennard > --- > Not exactly a commonly used extension, but might as well set the > hardware registers rather than just dropping the hint on the floor. > > src/gallium/drivers/r600/evergreen

[Mesa-dev] [PATCH 1/2] radeonsi: add support for Stoney asics (v2)

2015-10-22 Thread Alex Deucher
From: Samuel Li v2 (agd): rebase on mesa master, split pci ids to separate commit Signed-off-by: Samuel Li --- src/gallium/drivers/radeon/r600_pipe_common.c | 2 ++ src/gallium/drivers/radeon/radeon_winsys.h| 1 + src/gallium/drivers/radeonsi/si_state.c | 1 + src/gallium/winsys/amdg

[Mesa-dev] [PATCH 2/2] radeonsi: add Stoney pci ids

2015-10-22 Thread Alex Deucher
From: Samuel Li Signed-off-by: Samuel Li --- include/pci_ids/radeonsi_pci_ids.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/pci_ids/radeonsi_pci_ids.h b/include/pci_ids/radeonsi_pci_ids.h index 52eada1..bcf15a1 100644 --- a/include/pci_ids/radeonsi_pci_ids.h +++ b/include/pci

[Mesa-dev] [PATCH] radeon/uvd: don't expose HEVC on old UVD hw

2015-10-22 Thread Alex Deucher
The section for UVD 2 and older was not updated when HEVC support was added. Reported by Kano on irc. Signed-off-by: Alex Deucher Cc: mesa-sta...@lists.freedesktop.org --- src/gallium/drivers/radeon/radeon_video.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gallium

[Mesa-dev] [PATCH] radeon/uvd: don't expose HEVC on old UVD hw (v2)

2015-10-22 Thread Alex Deucher
The section for UVD 2 and older was not updated when HEVC support was added. Reported by Kano on irc. v2: integrate the UVD2 and older checks into the main switch statement. Signed-off-by: Alex Deucher Cc: mesa-sta...@lists.freedesktop.org --- src/gallium/drivers/radeon/radeon_video.c | 46

[Mesa-dev] [PATCH] radeon/uvd: don't expose HEVC on old UVD hw (v3)

2015-10-22 Thread Alex Deucher
lower case statement. Signed-off-by: Alex Deucher Cc: mesa-sta...@lists.freedesktop.org --- src/gallium/drivers/radeon/radeon_video.c | 50 +++ 1 file changed, 18 insertions(+), 32 deletions(-) diff --git a/src/gallium/drivers/radeon/radeon_video.c b/src/gallium/drivers

Re: [Mesa-dev] [PATCH 1/2] radeonsi: add support for Stoney asics (v2)

2015-10-23 Thread Alex Deucher
On Thu, Oct 22, 2015 at 10:44 PM, Michel Dänzer wrote: > On 23.10.2015 01:09, Alex Deucher wrote: >> From: Samuel Li >> >> v2 (agd): rebase on mesa master, split pci ids to >> separate commit >> >> Signed-off-by: Samuel Li > &

[Mesa-dev] [PATCH 1/2] radeonsi: add support for Stoney asics (v3)

2015-10-23 Thread Alex Deucher
From: Samuel Li v2 (agd): rebase on mesa master, split pci ids to separate commit v3 (agd): use carrizo for llvm processor name for llvm 3.7 and older Signed-off-by: Samuel Li --- src/gallium/drivers/radeon/r600_pipe_common.c | 6 ++ src/gallium/drivers/radeon/radeon_winsys.h| 1 + src

[Mesa-dev] [PATCH] radeonsi: add Stoney to si_init_gs_info()

2015-10-23 Thread Alex Deucher
This patch was originally written before stoney support was merged. Add stoney. Signed-off-by: Alex Deucher --- src/gallium/drivers/radeonsi/si_pipe.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gallium/drivers/radeonsi/si_pipe.c b/src/gallium/drivers/radeonsi/si_pipe.c index

[Mesa-dev] [PATCH] AMDGPU: add stoney support

2015-10-27 Thread Alex Deucher
Signed-off-by: Alex Deucher --- lib/Target/AMDGPU/Processors.td | 4 1 file changed, 4 insertions(+) diff --git a/lib/Target/AMDGPU/Processors.td b/lib/Target/AMDGPU/Processors.td index d9a0723..a1584a2 100644 --- a/lib/Target/AMDGPU/Processors.td +++ b/lib/Target/AMDGPU/Processors.td

Re: [Mesa-dev] [PATCH] radeonsi: add basic glClearBufferSubData acceleration

2015-11-03 Thread Alex Deucher
On Tue, Nov 3, 2015 at 6:47 PM, Marek Olšák wrote: > From: Marek Olšák > > --- > src/gallium/drivers/radeonsi/si_blit.c | 55 > ++ > 1 file changed, 55 insertions(+) > > diff --git a/src/gallium/drivers/radeonsi/si_blit.c > b/src/gallium/drivers/radeonsi/si_blit

Re: [Mesa-dev] [PATCH] radeonsi: add register definitions for Stoney

2015-11-04 Thread Alex Deucher
On Tue, Nov 3, 2015 at 6:46 PM, Marek Olšák wrote: > From: Marek Olšák > > There are a few non-stoney changes too. Reviewed-by: Alex Deucher > --- > src/gallium/drivers/radeonsi/sid.h | 322 > + > 1 file changed, 322 insertions(+)

Re: [Mesa-dev] [PATCH] radeon/uvd: add H.265/HEVC to legal notes

2015-11-06 Thread Alex Deucher
On Fri, Nov 6, 2015 at 5:45 AM, Christian König wrote: > From: Christian König > > Signed-off-by: Christian König CC stable? Was HEVC in 11? Reviewed-by: Alex Deucher > --- > docs/README.UVD | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git

Re: [Mesa-dev] [PATCH 2/2] radeon/uvd: fix VC-1 simple/main profile decode v2

2015-11-06 Thread Alex Deucher
Signed-off-by: Christian König > Cc: "10.6 11.0" For the series: Reviewed-by: Alex Deucher > --- > src/gallium/drivers/radeon/radeon_uvd.c | 6 ++ > src/gallium/drivers/radeon/radeon_video.c | 3 +-- > 2 files changed, 7 insertions(+), 2 deletions(-) > > di

Re: [Mesa-dev] [PATCH] mesa/copyimage: allow width/height to not be multiples of block

2015-11-10 Thread Alex Deucher
27;s > miptree. > > Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=92860 > Signed-off-by: Ilia Mirkin > Cc: mesa-sta...@lists.freedesktop.org Seems reasonable to me. Acked-by: Alex Deucher > --- > src/mesa/main/copyimage.c | 14 +++--- > 1 file changed, 11 i

Re: [Mesa-dev] [PATCH 00/13] auxiliary/vl: winsys' galore

2015-11-10 Thread Alex Deucher
linking to xcb and friends, with a dlopen/dlsym combo. > > The lot can be found in branch 'hello-vl' at > https://github.com/evelikov/mesa > > Comments, suggestions and bikeshed wars are welcome. Not really my area of expertise, but it seems like a nice cleanup. Acked-by: Alex

Re: [Mesa-dev] [PATCH] r600: initialised PGM_RESOURCES_2 for ES/GS

2015-11-11 Thread Alex Deucher
On Wed, Nov 11, 2015 at 5:42 PM, Dave Airlie wrote: > From: Dave Airlie > > This fixes the corruption on rendering that we are seeing in > certain geometry shaders. > > Signed-off-by: Dave Airlie Reviewed-by: Alex Deucher > --- > src/gallium/drivers/r600/evergreen

[Mesa-dev] [PATCH] radeonsi: enable optimal raster config setting for fiji

2015-11-13 Thread Alex Deucher
Requires proper kernel tiling configurarion so check the tiling config registers. Signed-off-by: Alex Deucher Cc: mesa-sta...@lists.freedesktop.org --- src/gallium/drivers/radeonsi/si_state.c | 12 +--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/gallium/drivers

[Mesa-dev] [PATCH] radeonsi: use proper GRBM_GFX_INDEX offset for CI+

2015-11-13 Thread Alex Deucher
The offset is different on CI and newer. Signed-off-by: Alex Deucher --- src/gallium/drivers/radeonsi/si_state.c | 16 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/src/gallium/drivers/radeonsi/si_state.c b/src/gallium/drivers/radeonsi/si_state.c index ff4d612

[Mesa-dev] [PATCH] radeonsi: enable optimal raster config setting for fiji (v2)

2015-11-13 Thread Alex Deucher
Requires proper kernel tiling configurarion so check the tiling config registers. v2: send the right version of the patch Signed-off-by: Alex Deucher Cc: mesa-sta...@lists.freedesktop.org --- src/gallium/drivers/radeonsi/si_state.c | 12 +--- 1 file changed, 9 insertions(+), 3

Re: [Mesa-dev] [PATCH] gallium/docs: fix docs wrt ARL/ARR/FLR

2015-01-29 Thread Alex Deucher
On Thu, Jan 29, 2015 at 2:40 PM, wrote: > From: Roland Scheidegger > > since the address reg holds integer values, ARL/ARR do an implicit > float-to-int > conversion, so clarify that. Thus it is also incorrect to say that FLR really > does the same as ARL. Reviewe

Re: [Mesa-dev] Removing out of date Mesa wiki pages

2015-02-05 Thread Alex Deucher
On Thu, Feb 5, 2015 at 2:47 PM, Benjamin Bellec wrote: > And what about removing the "RadeonProgram" page [1] ? > > From my point of view, this page depicts a wrong picture of the Radeon Mesa > driver. While I'm pretty sure most of the current and past games runs fine > today with r300g/r600g/rade

Re: [Mesa-dev] [PATCH] winsys/radeon: add user pointer support

2015-02-09 Thread Alex Deucher
On Mon, Feb 9, 2015 at 7:29 PM, Marek Olšák wrote: > Hi Christian, > > What hardware is this supported on? SI and later? Or even r600? r300? Theoretically r300 and newer hardware, however, the kernel currently only allows it on r600 and newer since we never tested it on r300 class hardware. Alex

[Mesa-dev] GSoC Ideas!

2015-02-11 Thread Alex Deucher
Hi everyone! It's that time of year again. Time to start coming up with GSoC ideas. Martin and I are organizing this year's Xorg entry. We need to fill in our ideas page with some good possible projects for students. The project ideas should be something that a student could accomplish over th

Re: [Mesa-dev] [PATCH 5/5] r200: Drop unused variable.

2015-02-11 Thread Alex Deucher
On Wed, Feb 11, 2015 at 7:42 PM, Eric Anholt wrote: > Quiets compiler warning since e7f2f2dea5acdbd1a12ed88914e64a38a97432f0. Reviewed-by: Alex Deucher > --- > src/mesa/drivers/dri/r200/r200_ioctl.c | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/src/mesa/drivers/dri

Re: [Mesa-dev] [PATCH] opengles2: fix building without X11

2015-02-12 Thread Alex Deucher
On Thu, Feb 12, 2015 at 8:23 AM, Emil Velikov wrote: > Humble ping. Reviewed-by: Alex Deucher > > On 22/01/15 18:28, Emil Velikov wrote: >> From: Michael Olbrich >> >> es2_info, es2gears_x11 and es2tri require X11, so don't build them if X11 >&

Re: [Mesa-dev] [PATCH] radeonsi: don't use SQC_CACHES to flush ICACHE and KCACHE on SI

2015-02-19 Thread Alex Deucher
ite and doesn't wait for anything. > SURFACE_SYNC at least seems to wait until the flush is done. Just guessing. > > Let's not complicate things and revert this. > > Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=88561 > > Cc: 10.5 Reviewed-by: Alex Deuc

Re: [Mesa-dev] [PATCH 6/6] mesa: remove unused INLINE macro from compiler.h

2015-02-26 Thread Alex Deucher
On Thu, Feb 26, 2015 at 12:47 PM, Brian Paul wrote: > We now use 'inline' everywhere in Mesa. For the series: Reviewed-by: Alex Deucher > --- > src/mesa/main/compiler.h | 7 --- > 1 file changed, 7 deletions(-) > > diff --git a/src/mesa/main/compiler.h b/src/

Re: [Mesa-dev] [PATCH] egl: Report correct GBM formats

2015-03-03 Thread Alex Deucher
On Mon, Mar 2, 2015 at 9:23 AM, Tom Stellard wrote: > From: Daniel Stone > > This fixes almost all piglit regressions when running with > PIGLIT_PLATFORM=gbm > > Tom Stellard: > - Fix ARGB2101010 format > > Cc: "10.4 10.5" Looks reasonable to me. Revi

Re: [Mesa-dev] [PATCH 3/3] gallium/radeon: add new HUD queries for monitoring the CP

2017-01-27 Thread Alex Deucher
On Fri, Jan 27, 2017 at 1:49 PM, Marek Olšák wrote: > CP_STAT is only readable on amdgpu and only VI. > It can be added to other chips if anyone wants to send me a patch. Alex > It's OK to expose the queries on other chips if it simplies things > even if they don't update. > > Marek > > On Thu,

Re: [Mesa-dev] [PATCH] drm/radeon: Fix vram_size/visible values in DRM_RADEON_GEM_INFO ioctl

2017-01-31 Thread Alex Deucher
: Tuesday, January 31, 2017 6:25 AM >>> To: Michel Dänzer >>> Cc: Alex Deucher; mesa-dev@lists.freedesktop.org; amd- >>> g...@lists.freedesktop.org >>> Subject: Re: [Mesa-dev] [PATCH] drm/radeon: Fix vram_size/visible values in >>> DRM_RADEON_GEM_INFO ioctl

[Mesa-dev] X.Org Foundation Membership Renewal

2017-02-02 Thread Alex Deucher
and click the renewal link. For new members, click the Join Now link. The X.org Foundation is a non-profit organization under the SPI umbrella which acts as a steward for the X Window System and related projects. Board elections are coming up so renew or join today! Thanks! Alex Deucher

Re: [Mesa-dev] features.txt & EXT_debug_label extension

2017-02-09 Thread Alex Deucher
On Thu, Feb 9, 2017 at 12:19 PM, Eero Tamminen wrote: > Hi, > > When checking GL errors for "Unturned" (Steam top-20 Unity3D based game), I > noticed that it uses functions from extension unsupported by Mesa, and > missing from "features.txt": > https://www.khronos.org/registry/OpenGL/extensions/E

Re: [Mesa-dev] [PATCH] r300g: only allow byteswapped formats on big endian

2017-02-14 Thread Alex Deucher
On Tue, Feb 14, 2017 at 10:27 PM, Michel Dänzer wrote: > On 14/02/17 08:25 PM, Marek Olšák wrote: >> I've changed my mind. The patch can be merged if nobody disagrees. > > It would be nice to better understand what exactly the problem is. It > seems unlikely that it's actually an endianness specif

Re: [Mesa-dev] [PATCH] radeonsi: fix broken tessellation on Carrizo and Stoney

2017-02-23 Thread Alex Deucher
On Thu, Feb 23, 2017 at 1:48 PM, Marek Olšák wrote: > From: Marek Olšák > > Cc: 13.0 17.0 Reviewed-by: Alex Deucher > --- > src/gallium/drivers/radeonsi/si_state_shaders.c | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/src/

Re: [Mesa-dev] [PATCH] winsys/radeon: don't leak the fd when it is 0

2015-07-29 Thread Alex Deucher
y in drm-winsys hash > table to fix ZaphodHeads.) > > Cc: Mario Kleiner > Signed-off-by: Emil Velikov Reviewed-by: Alex Deucher > --- > > Perhaps we should CC mesa-stable as the offending commit, yet > considering how unlikely the above case is I'm ambivalent,

Re: [Mesa-dev] [PATCH 1/6] egl/x11: bail out if we cannot fetch the xcb connection

2015-07-29 Thread Alex Deucher
dri2_dpy->conn > checking with the next commit. > > Signed-off-by: Emil Velikov I'm not really an expert when it comes to the egl code, but the series looks like a nice improvement. For the series: Acked-by: Alex Deucher > --- > src/egl/drivers/dri2/platform_x11.c | 2 +

Re: [Mesa-dev] [PATCH] winsys/radeon: don't leak the fd when it is 0

2015-07-29 Thread Alex Deucher
On Wed, Jul 29, 2015 at 2:48 PM, Mario Kleiner wrote: > > > On 07/29/2015 05:46 PM, Alex Deucher wrote: >> >> On Wed, Jul 29, 2015 at 10:44 AM, Emil Velikov >> wrote: >>> >>> Earlier commit added an extra dup(fd) to fix a ZaphodHeads issue. >&g

Re: [Mesa-dev] [PATCH] winsys/radeon: don't leak the fd when it is 0

2015-07-29 Thread Alex Deucher
On Wed, Jul 29, 2015 at 2:55 PM, Mario Kleiner wrote: > On 07/29/2015 08:50 PM, Alex Deucher wrote: >> >> On Wed, Jul 29, 2015 at 2:48 PM, Mario Kleiner >> wrote: >>> >>> >>> >>> On 07/29/2015 05:46 PM, Alex Deucher wrote: >

[Mesa-dev] [PATCH 3/3] radeonsi: add fiji pci id

2015-08-03 Thread Alex Deucher
Reviewed-by: Marek Olšák Reviewed-by: Christian König Reviewed-by: David Zhang Signed-off-by: Alex Deucher --- include/pci_ids/radeonsi_pci_ids.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/pci_ids/radeonsi_pci_ids.h b/include/pci_ids/radeonsi_pci_ids.h index 197ce8e

[Mesa-dev] [PATCH 2/3] radeonsi: add support for FIJI (v4)

2015-08-03 Thread Alex Deucher
v2: incorporate comments from Marek v3: add missing fiji case in winsys init use tonga raster config (double check this) v4: rebase on harvest patch Reviewed-by: Marek Olšák (v3) Reviewed-by: Christian König (v3) Reviewed-by: David Zhang (v3) Signed-off-by: Alex Deucher --- src/gallium

[Mesa-dev] [PATCH 1/3] addrlib: add support for Fiji (v2)

2015-08-03 Thread Alex Deucher
v2: fix tonga chip check Reviewed-by: Marek Olšák Reviewed-by: Christian König Reviewed-by: David Zhang Signed-off-by: Alex Deucher --- src/gallium/winsys/amdgpu/drm/addrlib/r800/ciaddrlib.cpp | 5 + src/gallium/winsys/amdgpu/drm/addrlib/r800/ciaddrlib.h | 1 + src/gallium/winsys

[Mesa-dev] [PATCH] amdgpu: add Fiji support

2015-08-03 Thread Alex Deucher
Signed-off-by: Alex Deucher --- This should be 1/16 speed model. Not sure how to adjust that. Tom? lib/Target/AMDGPU/Processors.td | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/Target/AMDGPU/Processors.td b/lib/Target/AMDGPU/Processors.td index c0ffede..0eac121 100644 --- a/lib

[Mesa-dev] [PATCH] radeonsi: add new OLAND pci id

2015-08-10 Thread Alex Deucher
Signed-off-by: Alex Deucher Cc: mesa-sta...@lists.freedesktop.org --- include/pci_ids/radeonsi_pci_ids.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/pci_ids/radeonsi_pci_ids.h b/include/pci_ids/radeonsi_pci_ids.h index c01ee20..52eada1 100644 --- a/include/pci_ids

Re: [Mesa-dev] [PATCH 1/2] r600g: fix polygon offset scale

2015-08-12 Thread Alex Deucher
nsi) For the series: Reviewed-by: Alex Deucher CC stable? > --- > src/gallium/drivers/r600/evergreen_state.c | 2 +- > src/gallium/drivers/r600/r600_state.c | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/src/gallium/drivers/r600/evergree

Re: [Mesa-dev] [Mesa-stable] [PATCH] radeonsi: add new OLAND pci id

2015-08-13 Thread Alex Deucher
On Thu, Aug 13, 2015 at 11:11 AM, Emil Velikov wrote: > Hi Alex, > > On 10 August 2015 at 20:36, Alex Deucher wrote: >> Signed-off-by: Alex Deucher >> Cc: mesa-sta...@lists.freedesktop.org >> --- >> include/pci_ids/radeonsi_pci_ids.h | 1 + >> 1 file cha

Re: [Mesa-dev] [Mesa-stable] [PATCH] radeonsi: add new OLAND pci id

2015-08-13 Thread Alex Deucher
On Thu, Aug 13, 2015 at 12:06 PM, Emil Velikov wrote: > On 13 August 2015 at 16:42, Alex Deucher wrote: >> On Thu, Aug 13, 2015 at 11:11 AM, Emil Velikov >> wrote: >>> Hi Alex, >>> >>> On 10 August 2015 at 20:36, Alex Deucher wrote: >>&

Re: [Mesa-dev] [Mesa-stable] [PATCH] radeonsi: add new OLAND pci id

2015-08-13 Thread Alex Deucher
On Thu, Aug 13, 2015 at 5:29 PM, Emil Velikov wrote: > On 13/08/15 22:22, Emil Velikov wrote: >> On 13/08/15 18:11, Alex Deucher wrote: >>> On Thu, Aug 13, 2015 at 12:06 PM, Emil Velikov >>> wrote: >>>> On 13 August 2015 at 16:42, Alex Deucher wrote:

Re: [Mesa-dev] [PATCH] winsys/amdgpu: fix the type of memory usage counters

2015-08-18 Thread Alex Deucher
On Tue, Aug 18, 2015 at 12:43 PM, Marek Olšák wrote: > From: Marek Olšák Reviewed-by: Alex Deucher > > --- > src/gallium/winsys/amdgpu/drm/amdgpu_cs.h | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/src/gallium/winsys/amdgpu/drm/amdgpu_

Re: [Mesa-dev] New stable-branch 10.6 candidate pushed

2015-08-20 Thread Alex Deucher
d > completes v2 > gallium/drivers: Add threadsafe wrappers for pipe_context v2 > clover: Use threadsafe wrappers for pipe_context v2 > clover: Properly initialize LLVM targets when linking with component > libs > > > > Queued (20) > ===

Re: [Mesa-dev] [PATCH 00/15] gallium/radeonsi hang debugging and IB parser

2015-08-24 Thread Alex Deucher
e. Series is: Acked-by: Alex Deucher > > Regards, > Christian. > > > On 23.08.2015 14:04, Marek Olšák wrote: >> >> Hi, >> >> Setting GALLIUM_DDEBUG=800 (timeout=800ms) enables the new ddebug module, >> which records all gallium states. The modu

Re: [Mesa-dev] [PATCH 1/3] winsys/radeon: handle non-zero finite timeout when waiting for buffers

2015-08-26 Thread Alex Deucher
On Wed, Aug 26, 2015 at 7:09 AM, Marek Olšák wrote: > Ping for the series: Reviewed-by: Alex Deucher > > On Sun, Aug 23, 2015 at 2:13 PM, Marek Olšák wrote: >> From: Marek Olšák >> >> --- >> src/gallium/winsys/radeon/drm/radeon_drm_bo.c | 54 >>

Re: [Mesa-dev] gallium state tracker calls calloc for 0 sizes arrays ?

2015-08-27 Thread Alex Deucher
On Thu, Aug 27, 2015 at 1:55 PM, Hans de Goede wrote: > Hi, > > On 27-08-15 15:46, Marek Olšák wrote: >> >> On Thu, Aug 27, 2015 at 3:09 PM, Hans de Goede >> wrote: >>> >>> Hi All, >>> >>> While debugging: https://bugzilla.redhat.com/show_bug.cgi?id=1008089 >>> >>> I made a apitrace recording of

Re: [Mesa-dev] [PATCH] r600g: add proper support for VGT_FLUSH

2015-08-28 Thread Alex Deucher
On Fri, Aug 28, 2015 at 12:35 AM, Ilia Mirkin wrote: > Just an observation... this was previously only done for EG+, while > now R600/R700 will get this too. VGT flush is valid on r6xx/r7xx too and probably should have been applied for them as well originally. Alex > > On Fri, Aug 28, 2015 at

Re: [Mesa-dev] [PATCH 00/42] RadeonSI cleaning up states

2015-08-30 Thread Alex Deucher
hat, sampler > states are finally immutable, which will be useful for the constant engine. > > Lastly, the INDIRECT_BUFFER packet is used for the init_config state on CIK > and later. For the series: Reviewed-by: Alex Deucher > > Marek > _

Re: [Mesa-dev] [PATCH] r600/sb: emit vertex clauses properly on all gpu classes.

2015-08-30 Thread Alex Deucher
On Sun, Aug 30, 2015 at 11:43 PM, Dave Airlie wrote: > From: Dave Airlie > > I've no idea why this is restricted to r600 only, but we should > use vertex fetches anywhere the input shader would use them from > what I can see. IIRC, the only difference between a vertex fetch and a texture fetch i

Re: [Mesa-dev] [PATCH] r600g: fix calculation for gpr allocation

2015-08-31 Thread Alex Deucher
ly my fault as well, maths fail 101. > > This makes geom shaders on r600 not fail heavily. > > Cc: "10.6" "11.0" > Signed-off-by: Dave Airlie Reviewed-by: Alex Deucher > --- > src/gallium/drivers/r600/r600_state.c | 2 +- > 1 file changed, 1 insertion(+)

Re: [Mesa-dev] [PATCH] Revert "st/vdpau: use linear layout for output surfaces"

2016-09-16 Thread Alex Deucher
On Fri, Sep 16, 2016 at 4:03 AM, Christian König wrote: > Am 16.09.2016 um 09:50 schrieb Michel Dänzer: >> >> On 16/09/16 04:33 PM, Christian König wrote: >>> >>> Am 15.09.2016 um 21:43 schrieb Dave Airlie: On 15 September 2016 at 17:43, Christian König wrote: > > Am 15.09.

Re: [Mesa-dev] [PATCH] radeonsi: emit TA_CS_BC_BASE_ADDR on SI only if the kernel allows it

2016-10-10 Thread Alex Deucher
On Mon, Oct 10, 2016 at 7:25 AM, Marek Olšák wrote: > From: Marek Olšák > > The kernel patch has been sent to amd-gfx. Reviewed-by: Alex Deucher > --- > src/gallium/drivers/radeonsi/si_compute.c | 7 ++- > 1 file changed, 6 insertions(+), 1 deletion(-) > >

Re: [Mesa-dev] [PATCH 1/6] gallium/radeon: change the vendor string to Advanced Micro Devices, Inc.

2016-08-08 Thread Alex Deucher
On Sat, Aug 6, 2016 at 2:04 PM, Marek Olšák wrote: > From: Marek Olšák If we want to display the marking names for each asic, we could add the marketing name api from libdrm_amdgpu that the closed driver uses. It would also reduce the delta between open and pro. Alex > > --- > src/gallium/dri

Re: [Mesa-dev] [PATCH 1/4] winsys/amdgpu: initial SI support

2016-08-22 Thread Alex Deucher
On Fri, Aug 19, 2016 at 5:11 AM, Marek Olšák wrote: > From: Ronie Salgado > > --- > src/gallium/winsys/amdgpu/drm/amdgpu_cs.c | 18 ++ > src/gallium/winsys/amdgpu/drm/amdgpu_surface.c | 9 +++-- > src/gallium/winsys/amdgpu/drm/amdgpu_winsys.c | 25 +

Re: [Mesa-dev] [PATCH] gallium/util: fix error detection in s3tc init

2016-08-22 Thread Alex Deucher
On Mon, Aug 22, 2016 at 1:57 PM, ⚛ <0xe2.0x9a.0...@gmail.com> wrote: > On Mon, Aug 22, 2016 at 7:47 PM, Matt Turner wrote: >> On Mon, Aug 22, 2016 at 10:41 AM, ⚛ <0xe2.0x9a.0...@gmail.com> wrote: >>> On Mon, Aug 22, 2016 at 7:24 PM, Rob Clark wrote: On Mon, Aug 22, 2016 at 12:58 PM, ⚛ <0xe2.

Re: [Mesa-dev] [PATCH 1/4] winsys/amdgpu: initial SI support

2016-08-22 Thread Alex Deucher
On Mon, Aug 22, 2016 at 4:20 PM, Marek Olšák wrote: > On Mon, Aug 22, 2016 at 5:00 PM, Alex Deucher wrote: >> On Fri, Aug 19, 2016 at 5:11 AM, Marek Olšák wrote: >>> From: Ronie Salgado >>> >>> --- >>> src/gallium/winsys/amdgpu/drm/amdgpu_cs.c

Re: [Mesa-dev] [PATCH] gallium/postprocess: Fix resource freeing

2016-08-31 Thread Alex Deucher
On Wed, Aug 31, 2016 at 2:22 AM, Thomas Hellstrom wrote: > The code was triggering asserts in DEBUG builds of the SVGA driver since > the reference count of the resource was never decremented before destroy. > > Signed-off-by: Thomas Hellstrom > Reviewed-by: Brian Paul Re

Re: [Mesa-dev] [PATCH] loader/dri3: Overhaul dri3_update_num_back

2016-09-01 Thread Alex Deucher
On Thu, Sep 1, 2016 at 11:28 AM, Jason Ekstrand wrote: > On Aug 31, 2016 11:39 PM, "Michel Dänzer" wrote: >> >> On 01/09/16 02:05 PM, Jason Ekstrand wrote: >> > >> > >> > On Wed, Aug 31, 2016 at 7:00 PM, Michel Dänzer > > > wrote: >> > >> > On 31/08/16 11:21 PM, Jas

Re: [Mesa-dev] [PATCH] st/va: force to flush the last p frame in idr period

2016-10-17 Thread Alex Deucher
On Mon, Oct 17, 2016 at 4:16 PM, wrote: > From: Boyuan Zhang > > During dual instance encoding submission, if the second encode task and first > encode task have no reference dependency, e.g. p following with idr-frame, > there is a chance the second task will use for its reconstructed picture >

Re: [Mesa-dev] [PATCH] radeonsi: set VGT_GS_ONCHIP_CNTL on CIK and later

2016-10-27 Thread Alex Deucher
On Thu, Oct 27, 2016 at 9:40 AM, Nicolai Hähnle wrote: > On 26.10.2016 01:16, Marek Olšák wrote: >> >> From: Marek Olšák >> >> --- >> src/gallium/drivers/radeonsi/si_state.c | 8 >> 1 file changed, 8 insertions(+) >> >> diff --git a/src/gallium/drivers/radeonsi/si_state.c >> b/src/galli

Re: [Mesa-dev] [PATCH] gbm: set up the interop extension for egl/drm

2016-10-31 Thread Alex Deucher
On Sat, Oct 29, 2016 at 7:18 AM, Marek Olšák wrote: > From: Marek Olšák Acked-by: Alex Deucher > > breaking libgbm -> libEGL ABI? > --- > src/egl/drivers/dri2/platform_drm.c | 1 + > src/gbm/backends/dri/gbm_dri.c | 1 + > src/gbm/backends/dri/gbm_driint.h | 1

Re: [Mesa-dev] [PATCH 3/3] glx: make interop ABI visible again

2016-11-02 Thread Alex Deucher
On Wed, Nov 2, 2016 at 2:07 PM, Marek Olšák wrote: > From: Marek Olšák > > This was broken when the GLAPI use was removed from mesa_glinterop.h. > > Cc: 12.0 13.0 Series is: Acked-by: Alex Deucher > --- > src/glx/glxcmds.c | 4 ++-- > 1 file changed, 2 insertions(+),

Re: [Mesa-dev] [PATCH] Revert "st/vdpau: use linear layout for output surfaces"

2016-11-04 Thread Alex Deucher
On Fri, Nov 4, 2016 at 10:57 AM, Marek Olšák wrote: > On Nov 4, 2016 3:29 PM, "Emil Velikov" wrote: >> >> On 31 October 2016 at 15:12, Marek Olšák wrote: >> > First, DRI_PRIME should work OK on radeon & amdgpu. I've been testing >> > it with 2 GPUs in 2 PCIe slots. (only OpenGL though) >> > >> >

Re: [Mesa-dev] [PATCH] Revert "st/vdpau: use linear layout for output surfaces"

2016-11-04 Thread Alex Deucher
On Fri, Nov 4, 2016 at 12:43 PM, Marek Olšák wrote: > On Fri, Nov 4, 2016 at 5:23 PM, Alex Deucher wrote: >> On Fri, Nov 4, 2016 at 10:57 AM, Marek Olšák wrote: >>> On Nov 4, 2016 3:29 PM, "Emil Velikov" wrote: >>>> >>>> On 31 October 2016 a

Re: [Mesa-dev] Potentially EOL ilo gallium driver

2016-12-06 Thread Alex Deucher
On Tue, Dec 6, 2016 at 8:42 AM, Emil Velikov wrote: > On 6 December 2016 at 03:16, Edward O'Callaghan > wrote: >> This patch is to potentially remove ourself from the maintaince >> burden of the ilo driver that appears to now be essentially >> unmaintained? >> >> I am not sure of our policy here

[Mesa-dev] [PATCH 1/2] radeonsi: add Polaris12 support

2016-12-19 Thread Alex Deucher
From: Junwei Zhang Signed-off-by: Junwei Zhang Reviewed-by: Nicolai Hähnle Acked-by: Christian König --- src/amd/addrlib/r800/ciaddrlib.cpp| 3 ++- src/amd/addrlib/r800/ciaddrlib.h | 1 + src/amd/common/amd_family.h | 1 + src/amd/common/amdgpu_id.h

[Mesa-dev] [PATCH 2/2] radeonsi: add Polaris12 PCI ID

2016-12-19 Thread Alex Deucher
From: Junwei Zhang Signed-off-by: Junwei Zhang Reviewed-by: Nicolai Hähnle --- include/pci_ids/radeonsi_pci_ids.h | 7 +++ 1 file changed, 7 insertions(+) diff --git a/include/pci_ids/radeonsi_pci_ids.h b/include/pci_ids/radeonsi_pci_ids.h index 20c1583..fca47b0 100644 --- a/include/pci_

[Mesa-dev] [PATCH 1/2] radeonsi: add Polaris12 support (v2)

2016-12-19 Thread Alex Deucher
From: Junwei Zhang v2: use gfxip names for llvm 4.0+ Signed-off-by: Junwei Zhang Reviewed-by: Nicolai Hähnle Acked-by: Christian König --- src/amd/addrlib/r800/ciaddrlib.cpp| 3 ++- src/amd/addrlib/r800/ciaddrlib.h | 1 + src/amd/common/amd_family.h

[Mesa-dev] [PATCH 1/2] radeonsi: add Polaris12 support (v3)

2016-12-19 Thread Alex Deucher
From: Junwei Zhang v2: use gfxip names for llvm 4.0+ v3: use tonga for llvm <= 3.8 Signed-off-by: Junwei Zhang Reviewed-by: Nicolai Hähnle Acked-by: Christian König --- src/amd/addrlib/r800/ciaddrlib.cpp| 3 ++- src/amd/addrlib/r800/ciaddrlib.h | 1 + src/amd/common/

Re: [Mesa-dev] [PATCH 1/2] radeonsi: add Polaris12 support (v3)

2016-12-20 Thread Alex Deucher
On Tue, Dec 20, 2016 at 6:49 AM, Andreas Boll wrote: > 2016-12-19 23:45 GMT+01:00 Alex Deucher : >> From: Junwei Zhang >> >> v2: use gfxip names for llvm 4.0+ >> v3: use tonga for llvm <= 3.8 >> >> Signed-off-by: Junwei Zhang >> Reviewed-

Re: [Mesa-dev] [PATCH 1/2] radeonsi: add Polaris12 support (v3)

2016-12-20 Thread Alex Deucher
olaris12 card at the moment. Alex > > Marek > > On Mon, Dec 19, 2016 at 11:45 PM, Alex Deucher wrote: >> From: Junwei Zhang >> >> v2: use gfxip names for llvm 4.0+ >> v3: use tonga for llvm <= 3.8 >> >> Signed-off-by: Junwei Zhang >>

Re: [Mesa-dev] [PATCH 1/2] radeonsi: add Polaris12 support (v3)

2016-12-21 Thread Alex Deucher
On Wed, Dec 21, 2016 at 9:40 AM, Andreas Boll wrote: > 2016-12-20 16:31 GMT+01:00 Alex Deucher : >> On Tue, Dec 20, 2016 at 6:49 AM, Andreas Boll >> wrote: >>> 2016-12-19 23:45 GMT+01:00 Alex Deucher : >>>> From: Junwei Zhang >>>> >>>&

Re: [Mesa-dev] [PATCH] radeon uvd add uvd fw version for amdgpu

2016-06-29 Thread Alex Deucher
On Wed, Jun 29, 2016 at 11:38 AM, Leo Liu wrote: > From: sonjiang > > Signed-off-by: sonjiang > Cc: "12.0" For the series: Reviewed-by: Alex Deucher > --- > src/gallium/drivers/radeon/radeon_winsys.h| 1 + > src/gallium/winsys/amdgpu/drm/amdgpu_winsy

Re: [Mesa-dev] [Mesa-stable] [PATCH] radeon uvd add uvd fw version for amdgpu

2016-07-06 Thread Alex Deucher
lists.freedesktop.org > Subject: Re: [Mesa-dev] [Mesa-stable] [PATCH] radeon uvd add uvd fw version > for amdgpu > > Am 01.07.2016 um 13:14 schrieb Emil Velikov: >> Hi all, >> >> On 29 June 2016 at 20:20, Christian König wrote: >>> Am 29.06.2016 um 18:35 schrieb

Re: [Mesa-dev] [PATCH 12/12] gallium/radeon/winsyses: decrease max_alloc_size to 1/3 of largest heap

2016-08-02 Thread Alex Deucher
On Tue, Aug 2, 2016 at 4:55 AM, Marek Olšák wrote: > On Tue, Aug 2, 2016 at 3:13 AM, Michel Dänzer wrote: >> On 01.08.2016 16:35, Michel Dänzer wrote: >>> On 30.07.2016 06:42, Marek Olšák wrote: From: Marek Olšák This is controversial, but I don't see a better way out of this. >>>

[Mesa-dev] [PATCH] st/xorg: Include u_surface.h for u_copy_rect

2013-10-01 Thread Alex Deucher
Fixes build errors. Signed-off-by: Alex Deucher --- src/gallium/state_trackers/xorg/xorg_crtc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gallium/state_trackers/xorg/xorg_crtc.c b/src/gallium/state_trackers/xorg/xorg_crtc.c index 3cbffb5..0ab41b4 100644 --- a/src/gallium

Re: [Mesa-dev] [PATCH] radeon/winsys: fix handling in radeon_drm_cs_flush v2

2013-10-09 Thread Alex Deucher
On Wed, Oct 9, 2013 at 10:32 AM, Christian König wrote: > From: Christian König > > Calling radeon_drm_cs_flush from multiple threads might cause deadlocks, > fix this by immediately signaling the semaphore after waiting for it. > > This is a candidate for the stable branch(es). Need to add: CC

Re: [Mesa-dev] PATCH: R600: Fix handling of kernel arguments

2013-10-15 Thread Alex Deucher
Did you forget the attachments? On Tue, Oct 15, 2013 at 12:40 PM, Tom Stellard wrote: > Hi, > > The attached patches fix various bugs in the handling of kernel arguments > in the R600 backend. The main problem with the old implementations was > that it disagreed with clover on type size and alig

Re: [Mesa-dev] [PATCH] gallivm: Remove llvm::DisablePrettyStackTrace for LLVM >= 3.4.

2013-11-04 Thread Alex Deucher
On Mon, Nov 4, 2013 at 9:41 AM, Tom Stellard wrote: > On Sun, Nov 03, 2013 at 08:35:47PM -0800, Vinson Lee wrote: >> LLVM 3.4 r193971 removed llvm::DisablePrettyStackTrace and made the >> pretty stack trace opt-in rather than opt-out. >> > > Could you add a comment explaining that the default valu

Re: [Mesa-dev] [PATCH 3/3] radeon / r200: Don't pass unused parameters to radeon_viewport

2013-11-04 Thread Alex Deucher
r. > > Signed-off-by: Ian Romanick > Cc: Courtney Goeltzenleuchter > Cc: Jordan Justen Seems fine to me. Acked-by: Alex Deucher > --- > src/mesa/drivers/dri/r200/r200_state.c | 7 ++- > src/mesa/drivers/dri/radeon/radeon_common.c | 2 +- > src/mesa/drivers/dri/rade

[Mesa-dev] [PATCH 1/2] radeonsi: add support for Hawaii asics (v2)

2013-11-13 Thread Alex Deucher
Update additional register fields. Signed-off-by: Alex Deucher --- src/gallium/drivers/radeonsi/radeonsi_pipe.c | 2 ++ src/gallium/drivers/radeonsi/si_state.c | 4 src/gallium/drivers/radeonsi/sid.h| 9 + src/gallium/winsys/radeon/drm

[Mesa-dev] [PATCH 2/2] radeonsi: add Hawaii pci ids

2013-11-13 Thread Alex Deucher
Signed-off-by: Alex Deucher --- include/pci_ids/radeonsi_pci_ids.h | 13 + 1 file changed, 13 insertions(+) diff --git a/include/pci_ids/radeonsi_pci_ids.h b/include/pci_ids/radeonsi_pci_ids.h index 0fdd1ad..7b42d5e 100644 --- a/include/pci_ids/radeonsi_pci_ids.h +++ b/include

[Mesa-dev] [PATCH] R600/SI: Add processor type for Hawaii

2013-11-13 Thread Alex Deucher
Signed-off-by: Alex Deucher --- lib/Target/R600/Processors.td | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/Target/R600/Processors.td b/lib/Target/R600/Processors.td index 31079d3..ee190e4 100644 --- a/lib/Target/R600/Processors.td +++ b/lib/Target/R600/Processors.td @@ -51,3 +51,4

Re: [Mesa-dev] [PATCH 1/2] radeonsi: add support for Hawaii asics (v2)

2013-11-13 Thread Alex Deucher
On Wed, Nov 13, 2013 at 1:08 PM, Tom Stellard wrote: > On Wed, Nov 13, 2013 at 12:29:31PM -0500, Alex Deucher wrote: >> Update additional register fields. >> >> Signed-off-by: Alex Deucher > > Should we CC: mesa-stable on these? Probably not at this point. Support

Re: [Mesa-dev] [PATCH] R600/SI: Add processor type for Hawaii

2013-11-13 Thread Alex Deucher
On Wed, Nov 13, 2013 at 1:12 PM, Tom Stellard wrote: > On Wed, Nov 13, 2013 at 12:27:05PM -0500, Alex Deucher wrote: >> Signed-off-by: Alex Deucher > > Reviewed-by: Tom Stellard > > Now that we have compute support for Sea Islands, we will also need to > add the process

Re: [Mesa-dev] [PATCH] winsys/radeon: cleanup virtual memory nonsense

2013-11-19 Thread Alex Deucher
CC the 9.2 and 10.0 branches? Does this fix the problems you were looking at last week? Reviewed-by: Alex Deucher > --- > src/gallium/winsys/radeon/drm/radeon_drm_bo.c | 37 > +-- > src/gallium/winsys/radeon/drm/radeon_drm_bo.h | 1 - > 2 files cha

Re: [Mesa-dev] [PATCH] r600g/compute: Add a work-around for flushing issues on Cayman

2013-11-20 Thread Alex Deucher
On Tue, Nov 19, 2013 at 10:39 PM, Tom Stellard wrote: > From: Tom Stellard > > https://bugs.freedesktop.org/show_bug.cgi?id=69321 > > CC: "10.0" Reviewed-by: Alex Deucher > --- > src/gallium/drivers/r600/evergreen_compute.c | 4 > src/gallium/dri

Re: [Mesa-dev] [PATCH 3/5] radeon: change last instance of DEBUG_IOCTL to use RADEON_IOCTL

2013-11-24 Thread Alex Deucher
On Sun, Nov 24, 2013 at 12:13 AM, Chris Forbes wrote: > DEBUG_IOCTL comes from i965, and is about to be removed. Both defines > have the same value (4). > > Signed-off-by: Chris Forbes Reviewed-by: Alex Deucher > --- > src/mesa/drivers/dri/radeon/radeon_ioctl.c | 2 +- &g

  1   2   3   4   5   6   7   8   9   >