[PATCH 00/10] Start documenting the radeon drm better

2012-06-29 Thread Alex Deucher
On Fri, Jun 29, 2012 at 10:42 AM, Tom Stellard wrote: > On Fri, Jun 29, 2012 at 10:28:20AM -0400, alexdeucher at gmail.com wrote: >> From: Alex Deucher >> >> This is something I've been wanting to do for a while and >> I finally spent a little time getting a start on it. ?There >> is still a lot

[PATCH 00/10] Start documenting the radeon drm better

2012-06-29 Thread Alex Deucher
On Fri, Jun 29, 2012 at 10:39 AM, Christian K?nig wrote: > On 29.06.2012 16:28, alexdeucher at gmail.com wrote: >> >> From: Alex Deucher >> >> This is something I've been wanting to do for a while and >> I finally spent a little time getting a start on it. ?There >> is still a lot to do and not a

[PATCH 00/10] Start documenting the radeon drm better

2012-06-29 Thread Tom Stellard
On Fri, Jun 29, 2012 at 10:28:20AM -0400, alexdeucher at gmail.com wrote: > From: Alex Deucher > > This is something I've been wanting to do for a while and > I finally spent a little time getting a start on it. There > is still a lot to do and not all of my descriptions are great, > but I think

[PATCH 05/10] drm/radeon: document radeon_fence.c

2012-06-29 Thread Christian König
Some minor comments spread over the whole file, see below: On 29.06.2012 16:28, alexdeucher at gmail.com wrote: > From: Alex Deucher > > Adds documentation to most of the functions in > radeon_fence.c > > Signed-off-by: Alex Deucher > --- > drivers/gpu/drm/radeon/radeon_fence.c | 373 > +

[PATCH 1/3] drm/radeon: move ring locking out of reset path

2012-06-29 Thread Michel Dänzer
On Fre, 2012-06-29 at 16:45 +0200, Christian K?nig wrote: > Hold the ring lock the whole time the reset is in progress, > otherwise another process can submit new jobs. Sounds good, but doesn't this create other paths (e.g. initialization, resume) where the ring is being accessed without holding

[PATCH 3/3] drm/radeon: add error handling to radeon_vm_unbind_locked

2012-06-29 Thread Michel Dänzer
On Fre, 2012-06-29 at 16:45 +0200, Christian K?nig wrote: > Waiting for a fence can fail for different reasons, > the most common is a deadlock. > > Signed-off-by: Christian K?nig Reviewed-by: Michel D?nzer -- Earthling Michel D?nzer | http://www.amd.com Libre so

[PATCH 1/3] drm/radeon: move ring locking out of reset path

2012-06-29 Thread Christian König
On 29.06.2012 17:09, Michel D?nzer wrote: > On Fre, 2012-06-29 at 16:45 +0200, Christian K?nig wrote: >> Hold the ring lock the whole time the reset is in progress, >> otherwise another process can submit new jobs. > Sounds good, but doesn't this create other paths (e.g. initialization, > resume) w

[PATCH 2/3] drm/radeon: add error handling to fence_wait_empty_locked

2012-06-29 Thread Michel Dänzer
On Fre, 2012-06-29 at 16:45 +0200, Christian K?nig wrote: > Instead of returning the error handle it directly > and while at it fix the comments about the ring lock. Sounds like this should really be two separate changes? > Signed-off-by: Christian K?nig Either way, Reviewed-by: Michel D?nzer

[PATCH] drm/radeon: fix VM page table setup on SI

2012-06-29 Thread Alex Deucher
On Fri, Jun 29, 2012 at 10:49 AM, Michel D?nzer wrote: > On Don, 2012-06-28 at 17:53 -0400, alexdeucher at gmail.com wrote: >> From: Alex Deucher >> >> Cayman and trinity allow for variable sized VM page >> tables, but SI requires that all page tables be the >> same size. ?The current code assume

[PATCH] drm/radeon: fix VM page table setup on SI

2012-06-29 Thread Jerome Glisse
On Fri, Jun 29, 2012 at 11:23 AM, Alex Deucher wrote: > On Fri, Jun 29, 2012 at 10:49 AM, Michel D?nzer wrote: >> On Don, 2012-06-28 at 17:53 -0400, alexdeucher at gmail.com wrote: >>> From: Alex Deucher >>> >>> Cayman and trinity allow for variable sized VM page >>> tables, but SI requires that

[PATCH 00/10] Start documenting the radeon drm better

2012-06-29 Thread Rafał Miłecki
2012/6/29 : > From: Alex Deucher > > This is something I've been wanting to do for a while and > I finally spent a little time getting a start on it. ?There > is still a lot to do and not all of my descriptions are great, > but I think we can document the rest in bits and pieces. I > also added a

[PATCH] drm/radeon: fix VM page table setup on SI

2012-06-29 Thread Michel Dänzer
On Fre, 2012-06-29 at 11:28 -0400, Jerome Glisse wrote: > On Fri, Jun 29, 2012 at 11:23 AM, Alex Deucher > wrote: > > On Fri, Jun 29, 2012 at 10:49 AM, Michel D?nzer > > wrote: > >> On Don, 2012-06-28 at 17:53 -0400, alexdeucher at gmail.com wrote: > >>> From: Alex Deucher > >>> > >>> Cayman

[PATCH 1/3] drm/radeon: move ring locking out of reset path

2012-06-29 Thread Michel Dänzer
On Fre, 2012-06-29 at 17:18 +0200, Christian K?nig wrote: > On 29.06.2012 17:09, Michel D?nzer wrote: > > On Fre, 2012-06-29 at 16:45 +0200, Christian K?nig wrote: > >> Hold the ring lock the whole time the reset is in progress, > >> otherwise another process can submit new jobs. > > Sounds good,

[PATCH 01/10] drm/radeon: document radeon_device.c (v2)

2012-06-29 Thread alexdeuc...@gmail.com
From: Alex Deucher Adds documentation to most of the functions in radeon_device.c v2: split out general descriptions as per Christian's comments. Signed-off-by: Alex Deucher --- drivers/gpu/drm/radeon/radeon_device.c | 313 +++- 1 files changed, 310 insertions(+),

[PATCH 02/10] drm/radeon: document radeon_kms.c

2012-06-29 Thread alexdeuc...@gmail.com
From: Alex Deucher Adds documentation to most of the functions in radeon_kms.c Signed-off-by: Alex Deucher --- drivers/gpu/drm/radeon/radeon_kms.c | 126 +++ 1 files changed, 126 insertions(+), 0 deletions(-) diff --git a/drivers/gpu/drm/radeon/radeon_kms.c b

[PATCH 03/10] drm/radeon: document radeon_irq_kms.c

2012-06-29 Thread alexdeuc...@gmail.com
From: Alex Deucher Adds documentation to most of the functions in radeon_irq_kms.c Signed-off-by: Alex Deucher --- drivers/gpu/drm/radeon/radeon_irq_kms.c | 150 +++ 1 files changed, 150 insertions(+), 0 deletions(-) diff --git a/drivers/gpu/drm/radeon/radeon_irq_

[PATCH 04/10] drm/radeon: document radeon_asic.c

2012-06-29 Thread alexdeuc...@gmail.com
From: Alex Deucher Adds documentation to most of the functions in radeon_asic.c Signed-off-by: Alex Deucher --- drivers/gpu/drm/radeon/radeon_asic.c | 46 ++ 1 files changed, 46 insertions(+), 0 deletions(-) diff --git a/drivers/gpu/drm/radeon/radeon_asic.c

[PATCH 05/10] drm/radeon: document radeon_fence.c (v2)

2012-06-29 Thread alexdeuc...@gmail.com
From: Alex Deucher Adds documentation to most of the functions in radeon_fence.c v2: address Christian's comments: - split common concept description into it's own comment - fix description of intr parameter - Improve description of -EDEADLK error Signed-off-by: Alex Deucher --- drivers/gpu/d

[PATCH 06/10] drm/radeon: document radeon_ring.c (v2)

2012-06-29 Thread alexdeuc...@gmail.com
From: Alex Deucher Adds documentation to most of the functions in radeon_ring.c v2: adjust per Christian's suggestions Signed-off-by: Alex Deucher --- drivers/gpu/drm/radeon/radeon_ring.c | 216 +- 1 files changed, 213 insertions(+), 3 deletions(-) diff --git

[PATCH 07/10] drm/radeon: document non-VM functions in radeon_gart.c (v2)

2012-06-29 Thread alexdeuc...@gmail.com
From: Alex Deucher Document the non-VM functions in radeon_gart.c v2: adjust per Christian's suggestions Signed-off-by: Alex Deucher --- drivers/gpu/drm/radeon/radeon_gart.c | 125 +- 1 files changed, 122 insertions(+), 3 deletions(-) diff --git a/drivers/gpu

[PATCH 08/10] drm/radeon: document VM functions in radeon_gart.c (v2)

2012-06-29 Thread alexdeuc...@gmail.com
From: Alex Deucher Document the VM functions in radeon_gart.c v2: adjust per Christian's suggestions Signed-off-by: Alex Deucher --- drivers/gpu/drm/radeon/radeon_gart.c | 159 ++ 1 files changed, 159 insertions(+), 0 deletions(-) diff --git a/drivers/gpu/drm

[PATCH 09/10] drm/radeon: start to document the functions r100.c

2012-06-29 Thread alexdeuc...@gmail.com
From: Alex Deucher Still a lot more to do. Signed-off-by: Alex Deucher --- drivers/gpu/drm/radeon/r100.c | 127 - 1 files changed, 124 insertions(+), 3 deletions(-) diff --git a/drivers/gpu/drm/radeon/r100.c b/drivers/gpu/drm/radeon/r100.c index d06c8d

[PATCH 10/10] drm/radeon: start to document evergreen.c

2012-06-29 Thread alexdeuc...@gmail.com
From: Alex Deucher Still a lot to do. Signed-off-by: Alex Deucher --- drivers/gpu/drm/radeon/evergreen.c | 120 1 files changed, 120 insertions(+), 0 deletions(-) diff --git a/drivers/gpu/drm/radeon/evergreen.c b/drivers/gpu/drm/radeon/evergreen.c index

[PATCH] drm/radeon: fix VM page table setup on SI

2012-06-29 Thread Jerome Glisse
On Fri, Jun 29, 2012 at 12:14 PM, Michel D?nzer wrote: > On Fre, 2012-06-29 at 11:28 -0400, Jerome Glisse wrote: >> On Fri, Jun 29, 2012 at 11:23 AM, Alex Deucher >> wrote: >> > On Fri, Jun 29, 2012 at 10:49 AM, Michel D?nzer >> > wrote: >> >> On Don, 2012-06-28 at 17:53 -0400, alexdeucher at

Fw: [ANNOUNCE] libdrm 2.4.37

2012-06-29 Thread Ben Widawsky
git send-email doesn't appear to be doing the right thing. Begin forwarded message: Date: Fri, 29 Jun 2012 11:17:47 -0700 From: Ben Widawsky To: xorg-announce at lists.freedesktop.org Cc: mesa-dev at lists.freedesktop.org, intel-gfx at lists.freedesktop.org, dri-devel at lists.freedesktop.org Su

[Intel-gfx] Fw: [ANNOUNCE] libdrm 2.4.37

2012-06-29 Thread Ben Widawsky
On Fri, 29 Jun 2012 11:48:29 -0700 Ben Widawsky wrote: > git send-email doesn't appear to be doing the right thing. > > Begin forwarded message: > > Date: Fri, 29 Jun 2012 11:17:47 -0700 > From: Ben Widawsky > To: xorg-announce at lists.freedesktop.org > Cc: mesa-dev at lists.freedesktop.org,

[PATCH] drm/radeon: make a few SI functions static

2012-06-29 Thread alexdeuc...@gmail.com
From: Alex Deucher Not used outside of si.c Signed-off-by: Alex Deucher --- drivers/gpu/drm/radeon/si.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/gpu/drm/radeon/si.c b/drivers/gpu/drm/radeon/si.c index 4071858..148471c 100644 --- a/drivers/gpu/drm/ra

Please add Intel GM45 Chipset in list of hardware which used invert brightness.

2012-06-29 Thread Vladimir Kravets
nding both. Thanks, Vladimir -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20120629/d3694050/attachment.html>

<    1   2