hwmon interface changes? (from LKML)

2011-11-06 Thread Andrew Randrianasulu
Hi all! Some time ago both nouveau and radeon developers wished to have some in-kernel interface for hwmon, so automatic fan management can be implemented for GPU drivers ... Today I was looking at LKML and found this RFC: https://lkml.org/lkml/2011/11/4/18 Subject [RFC PATCH 0/2] HWMON: ad

[PATCH 09/13] drm/i915: don't use gtt_pwrite on LLC cached objects

2011-11-06 Thread Daniel Vetter
On Sun, Nov 06, 2011 at 09:16:00PM +, Chris Wilson wrote: > On Sun, 6 Nov 2011 20:13:56 +0100, Daniel Vetter > wrote: > > ~120 ?s instead fo ~210 ?s to write 1mb on my snb. I like this. > > > > Signed-off-by: Daniel Vetter > > --- > > drivers/gpu/drm/i915/i915_gem.c |1 + > > 1 files

[PATCH 11/13] mm: extend prefault helpers to fault in more than PAGE_SIZE

2011-11-06 Thread Chris Wilson
On Sun, 6 Nov 2011 20:13:58 +0100, Daniel Vetter wrote: > drm/i915 wants to read/write more than one page in its fastpath > and hence needs to prefault more than PAGE_SIZE bytes. > > I've checked the callsites and they all already clamp size when > calling fault_in_pages_* to the same as for th

[Bug 37528] vgaswitcheroo: support for mux-less hybrid laptops

2011-11-06 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=37528 Oleg German changed: What|Removed |Added CC||kh3095 at yandex.ru xbx changed:

[Bug 42645] Graphics issues on BZFlag 2.4.0 with i915g (gallium)

2011-11-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42645 Christian Inci changed: What|Removed |Added AssignedTo|dri-devel@lists.freedesktop |mesa-dev@lists.freedesktop.

[PATCH 09/13] drm/i915: don't use gtt_pwrite on LLC cached objects

2011-11-06 Thread Chris Wilson
On Sun, 6 Nov 2011 20:13:56 +0100, Daniel Vetter wrote: > ~120 ??s instead fo ~210 ??s to write 1mb on my snb. I like this. > > Signed-off-by: Daniel Vetter > --- > drivers/gpu/drm/i915/i915_gem.c |1 + > 1 files changed, 1 insertions(+), 0 deletions(-) > > diff --git a/drivers/gpu/drm/i

[Bug 42373] Radeon HD 6450 (NI CAICOS) screen corruption on boot

2011-11-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42373 --- Comment #7 from Kunal 2011-11-06 20:29:09 PST --- Created attachment 53225 --> https://bugs.freedesktop.org/attachment.cgi?id=53225 dmesg output from 3.1.0-2.3 taken on 2011-11-07 -- Configure bugmail: https://bugs.freedesktop.org/userpr

[Bug 42373] Radeon HD 6450 (NI CAICOS) screen corruption on boot

2011-11-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42373 --- Comment #6 from Kunal 2011-11-06 20:28:26 PST --- Noticed these new messages in dmesg output: [ 15.828387] AMD-Vi: Event logged [IO_PAGE_FAULT device=01:00.0 domain=0x0016 address=0x000e7000 flags=0x0010] [ 15.828394] AMD-Vi: Eve

[PATCH 13/13] drm/i915: don't clobber userspace memory before commiting to the pread

2011-11-06 Thread Daniel Vetter
The pagemap.h prefault helpers do the prefaulting by simply writing some data into every page. Hence we should not prefault when we're not yet commited to to actually writing data to userspace. The problem is now that - we can't prefault while holding dev->struct_mutex for we could deadlock with

[PATCH 12/13] drm/i915: drop gtt slowpath

2011-11-06 Thread Daniel Vetter
With the proper prefault, it's extremely unlikely that we fall back to the gtt slowpath. So just kill it and use the shmem_pwrite path as fallback. To further clean up the code, move the preparatory gem calls into the respective pwrite functions. This way the gtt_fast->shmem fallback is much more

[PATCH 11/13] mm: extend prefault helpers to fault in more than PAGE_SIZE

2011-11-06 Thread Daniel Vetter
drm/i915 wants to read/write more than one page in its fastpath and hence needs to prefault more than PAGE_SIZE bytes. I've checked the callsites and they all already clamp size when calling fault_in_pages_* to the same as for the subsequent __copy_to|from_user and hence don't rely on the implicit

[PATCH 10/13] drm/i915: don't call shmem_read_mapping unnecessarily

2011-11-06 Thread Daniel Vetter
This speeds up pwrite and pread from ~120 ?s ro ~100 ?s for reading/writing 1mb on my snb (if the backing storage pages are already pinned, of course). v2: Chris Wilson pointed out a claring page reference bug - I've unconditionally dropped the reference. With that fixed (and the associated reduct

[PATCH 09/13] drm/i915: don't use gtt_pwrite on LLC cached objects

2011-11-06 Thread Daniel Vetter
~120 ?s instead fo ~210 ?s to write 1mb on my snb. I like this. Signed-off-by: Daniel Vetter --- drivers/gpu/drm/i915/i915_gem.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/gpu/drm/i915/i915_gem.c b/drivers/gpu/drm/i915/i915_gem.c index 0048917..8fd175c 10064

[PATCH 08/13] drm/i915: kill ranged cpu read domain support

2011-11-06 Thread Daniel Vetter
No longer needed. Signed-off-by: Daniel Vetter --- drivers/gpu/drm/i915/i915_drv.h |7 -- drivers/gpu/drm/i915/i915_gem.c | 117 --- 2 files changed, 0 insertions(+), 124 deletions(-) diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i9

[PATCH 07/13] drm/i915: move clflushing into shmem_pread

2011-11-06 Thread Daniel Vetter
This is obviously gonna slow down pread. But for a half-way realistic micro-benchmark, it doesn't matter: Non-broken userspace reads back data from the gpu once before the gpu again dirties it. So all this ranged clflush tracking is just a waste of time. No pread performance change (neglecting th

[PATCH 06/13] drm: add helper to clflush a virtual address range

2011-11-06 Thread Daniel Vetter
Useful when the page is already mapped to copy date in/out. Cc: dri-devel at lists.freedesktop.org Signed-off-by: Daniel Vetter --- drivers/gpu/drm/drm_cache.c | 23 +++ include/drm/drmP.h |1 + 2 files changed, 24 insertions(+), 0 deletions(-) diff --git a/dr

dri-devel@lists.freedesktop.org

2011-11-06 Thread Daniel Vetter
With the previous rewrite, they've become essential identical. Signed-off-by: Daniel Vetter --- drivers/gpu/drm/i915/i915_gem.c | 108 ++- 1 files changed, 27 insertions(+), 81 deletions(-) diff --git a/drivers/gpu/drm/i915/i915_gem.c b/drivers/gpu/drm/i915/

dri-devel@lists.freedesktop.org

2011-11-06 Thread Daniel Vetter
With the previous rewrite, they've become essential identical. Signed-off-by: Daniel Vetter --- drivers/gpu/drm/i915/i915_gem.c | 126 ++ 1 files changed, 33 insertions(+), 93 deletions(-) diff --git a/drivers/gpu/drm/i915/i915_gem.c b/drivers/gpu/drm/i915/i

[PATCH 03/13] drm/i915: rewrite shmem_pread_slow to use copy_to_user

2011-11-06 Thread Daniel Vetter
Like for shmem_pwrite_slow. The only difference is that because we read data, we can leave the fetched cachelines in the cpu: In the case that the object isn't in the cpu read domain anymore, the clflush for the next cpu read domain invalidation will simply drop these cachelines. slow_shmem_bit17_

[PATCH 02/13] drm/i915: rewrite shmem_pwrite_slow to use copy_from_user

2011-11-06 Thread Daniel Vetter
... instead of get_user_pages, because that fails on non page-backed user addresses like e.g. a gtt mapping of a bo. To get there essentially copy the vfs read path into pagecache. We can't call that right away because we have to take care of bit17 swizzling. To not deadlock with our own pagefault

[PATCH 01/13] drm/i915: fall through pwrite_gtt_slow to the shmem slow path

2011-11-06 Thread Daniel Vetter
The gtt_pwrite slowpath grabs the userspace memory with get_user_pages. This will not work for non-page backed memory, like a gtt mmapped gem object. Hence fall throuh to the shmem paths if we hit -EFAULT in the gtt paths. Now the shmem paths have exactly the same problem, but this way we only nee

[PATCH 00/13] pwrite/pread rework

2011-11-06 Thread Daniel Vetter
Hi all, I've finally managed to clean up my pwrite/pread rework. Major changes since the first submission: - fixed a bunch of bugs, some of them discovered by the intel-gpu-tools gem test suite - extracted the clflush helper into common drm code as suggested by Chris Wilson. - extended the pre

[PATCH] agp: Enable all supported rates for graphic cards

2011-11-06 Thread Tormod Volden
On Sun, Nov 6, 2011 at 4:37 PM, Corbin Simpson wrote: > Trusting the spec worries me; could this break anybody? It will allow the user to override possibly safer default settings. If a user has specified, say, 2x in his xorg.conf and this was not honored because the card only reported 4x, this pa

[Bug 26345] [845G] CPU/GPU incoherency

2011-11-06 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=26345 --- Comment #140 from Abdul Nazar P 2011-11-06 08:44:26 PST --- pls work for i845 -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug.

[PATCH] agp: Fix multi-line warning message whitespace

2011-11-06 Thread Tormod Volden
From: Tormod Volden Signed-off-by: Tormod Volden --- drivers/char/agp/generic.c |8 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/char/agp/generic.c b/drivers/char/agp/generic.c index c5d04e5..2dc2d5b 100644 --- a/drivers/char/agp/generic.c +++ b/drivers/ch

[PATCH] agp: Enable all supported rates for graphic cards

2011-11-06 Thread Tormod Volden
From: Tormod Volden Some cards report that they support only 4x, in which case they should support 2x and 1x as well, according to the AGP spec. Otherwise a requested 1x or 2x rate will result in 0 being set: agpgart-via :00:00.0: putting AGP V2 device into 0x mode For instance ProSavage K

[Bug 42645] Graphics issues on BZFlag 2.4.0 with i915g (gallium)

2011-11-06 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=42645 --- Comment #1 from Christian Inci 2011-11-06 07:56:48 PST --- Created attachment 53222 --> https://bugs.freedesktop.org/attachment.cgi?id=53222 Incorrect rendering -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email -

[Bug 42645] New: Graphics issues on BZFlag 2.4.0 with i915g (gallium)

2011-11-06 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=42645 Bug #: 42645 Summary: Graphics issues on BZFlag 2.4.0 with i915g (gallium) Classification: Unclassified Product: Mesa Version: git Platform: x86 (IA32) URL: http://bzflag.o

Re: [PATCH 11/13] mm: extend prefault helpers to fault in more than PAGE_SIZE

2011-11-06 Thread Chris Wilson
On Sun, 6 Nov 2011 20:13:58 +0100, Daniel Vetter wrote: > drm/i915 wants to read/write more than one page in its fastpath > and hence needs to prefault more than PAGE_SIZE bytes. > > I've checked the callsites and they all already clamp size when > calling fault_in_pages_* to the same as for th

Re: [PATCH 09/13] drm/i915: don't use gtt_pwrite on LLC cached objects

2011-11-06 Thread Daniel Vetter
On Sun, Nov 06, 2011 at 09:16:00PM +, Chris Wilson wrote: > On Sun, 6 Nov 2011 20:13:56 +0100, Daniel Vetter > wrote: > > ~120 µs instead fo ~210 µs to write 1mb on my snb. I like this. > > > > Signed-off-by: Daniel Vetter > > --- > > drivers/gpu/drm/i915/i915_gem.c |1 + > > 1 files

[Bug 37528] vgaswitcheroo: support for mux-less hybrid laptops

2011-11-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37528 Oleg German changed: What|Removed |Added CC||kh3...@yandex.ru xbx changed:

Re: [PATCH 09/13] drm/i915: don't use gtt_pwrite on LLC cached objects

2011-11-06 Thread Chris Wilson
On Sun, 6 Nov 2011 20:13:56 +0100, Daniel Vetter wrote: > ~120 µs instead fo ~210 µs to write 1mb on my snb. I like this. > > Signed-off-by: Daniel Vetter > --- > drivers/gpu/drm/i915/i915_gem.c |1 + > 1 files changed, 1 insertions(+), 0 deletions(-) > > diff --git a/drivers/gpu/drm/i

[Bug 25764] [RADEON:R600C] glLineStipple gives inconsistent results

2011-11-06 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=25764 --- Comment #6 from Dave Airlie 2011-11-06 05:06:37 PST --- please retry with latest r600g. -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee fo

[PATCH 13/13] drm/i915: don't clobber userspace memory before commiting to the pread

2011-11-06 Thread Daniel Vetter
The pagemap.h prefault helpers do the prefaulting by simply writing some data into every page. Hence we should not prefault when we're not yet commited to to actually writing data to userspace. The problem is now that - we can't prefault while holding dev->struct_mutex for we could deadlock with

[PATCH 12/13] drm/i915: drop gtt slowpath

2011-11-06 Thread Daniel Vetter
With the proper prefault, it's extremely unlikely that we fall back to the gtt slowpath. So just kill it and use the shmem_pwrite path as fallback. To further clean up the code, move the preparatory gem calls into the respective pwrite functions. This way the gtt_fast->shmem fallback is much more

[PATCH 11/13] mm: extend prefault helpers to fault in more than PAGE_SIZE

2011-11-06 Thread Daniel Vetter
drm/i915 wants to read/write more than one page in its fastpath and hence needs to prefault more than PAGE_SIZE bytes. I've checked the callsites and they all already clamp size when calling fault_in_pages_* to the same as for the subsequent __copy_to|from_user and hence don't rely on the implicit

[PATCH 10/13] drm/i915: don't call shmem_read_mapping unnecessarily

2011-11-06 Thread Daniel Vetter
This speeds up pwrite and pread from ~120 µs ro ~100 µs for reading/writing 1mb on my snb (if the backing storage pages are already pinned, of course). v2: Chris Wilson pointed out a claring page reference bug - I've unconditionally dropped the reference. With that fixed (and the associated reduct

[PATCH 09/13] drm/i915: don't use gtt_pwrite on LLC cached objects

2011-11-06 Thread Daniel Vetter
~120 µs instead fo ~210 µs to write 1mb on my snb. I like this. Signed-off-by: Daniel Vetter --- drivers/gpu/drm/i915/i915_gem.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/gpu/drm/i915/i915_gem.c b/drivers/gpu/drm/i915/i915_gem.c index 0048917..8fd175c 10064

[PATCH 08/13] drm/i915: kill ranged cpu read domain support

2011-11-06 Thread Daniel Vetter
No longer needed. Signed-off-by: Daniel Vetter --- drivers/gpu/drm/i915/i915_drv.h |7 -- drivers/gpu/drm/i915/i915_gem.c | 117 --- 2 files changed, 0 insertions(+), 124 deletions(-) diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i9

[PATCH 07/13] drm/i915: move clflushing into shmem_pread

2011-11-06 Thread Daniel Vetter
This is obviously gonna slow down pread. But for a half-way realistic micro-benchmark, it doesn't matter: Non-broken userspace reads back data from the gpu once before the gpu again dirties it. So all this ranged clflush tracking is just a waste of time. No pread performance change (neglecting th

[PATCH 06/13] drm: add helper to clflush a virtual address range

2011-11-06 Thread Daniel Vetter
Useful when the page is already mapped to copy date in/out. Cc: dri-devel@lists.freedesktop.org Signed-off-by: Daniel Vetter --- drivers/gpu/drm/drm_cache.c | 23 +++ include/drm/drmP.h |1 + 2 files changed, 24 insertions(+), 0 deletions(-) diff --git a/drive

dri-devel@lists.freedesktop.org

2011-11-06 Thread Daniel Vetter
With the previous rewrite, they've become essential identical. Signed-off-by: Daniel Vetter --- drivers/gpu/drm/i915/i915_gem.c | 108 ++- 1 files changed, 27 insertions(+), 81 deletions(-) diff --git a/drivers/gpu/drm/i915/i915_gem.c b/drivers/gpu/drm/i915/

dri-devel@lists.freedesktop.org

2011-11-06 Thread Daniel Vetter
With the previous rewrite, they've become essential identical. Signed-off-by: Daniel Vetter --- drivers/gpu/drm/i915/i915_gem.c | 126 ++ 1 files changed, 33 insertions(+), 93 deletions(-) diff --git a/drivers/gpu/drm/i915/i915_gem.c b/drivers/gpu/drm/i915/i

[PATCH 03/13] drm/i915: rewrite shmem_pread_slow to use copy_to_user

2011-11-06 Thread Daniel Vetter
Like for shmem_pwrite_slow. The only difference is that because we read data, we can leave the fetched cachelines in the cpu: In the case that the object isn't in the cpu read domain anymore, the clflush for the next cpu read domain invalidation will simply drop these cachelines. slow_shmem_bit17_

[PATCH 02/13] drm/i915: rewrite shmem_pwrite_slow to use copy_from_user

2011-11-06 Thread Daniel Vetter
... instead of get_user_pages, because that fails on non page-backed user addresses like e.g. a gtt mapping of a bo. To get there essentially copy the vfs read path into pagecache. We can't call that right away because we have to take care of bit17 swizzling. To not deadlock with our own pagefault

[PATCH 16/23] drm/savage: clean up reclaim_buffers

2011-11-06 Thread Tormod Volden
On Thu, Oct 27, 2011 at 1:07 PM, Daniel Vetter wrote: > The reclaim_buffers function of the savage driver actually wants to run > with the hw_lock held - at least there are printks in the call-chain > to that effect. But the drm core only calls reclaim_buffers as used > by savage _after_ forceful

[PATCH 01/13] drm/i915: fall through pwrite_gtt_slow to the shmem slow path

2011-11-06 Thread Daniel Vetter
The gtt_pwrite slowpath grabs the userspace memory with get_user_pages. This will not work for non-page backed memory, like a gtt mmapped gem object. Hence fall throuh to the shmem paths if we hit -EFAULT in the gtt paths. Now the shmem paths have exactly the same problem, but this way we only nee

[PATCH 00/13] pwrite/pread rework

2011-11-06 Thread Daniel Vetter
Hi all, I've finally managed to clean up my pwrite/pread rework. Major changes since the first submission: - fixed a bunch of bugs, some of them discovered by the intel-gpu-tools gem test suite - extracted the clflush helper into common drm code as suggested by Chris Wilson. - extended the pre

Re: [PATCH] agp: Enable all supported rates for graphic cards

2011-11-06 Thread Corbin Simpson
Thanks for writing it! Reviewed-by: Corbin Simpson Sending from a mobile, pardon my terseness. ~ C. On Nov 6, 2011 10:39 AM, "Tormod Volden" wrote: > On Sun, Nov 6, 2011 at 4:37 PM, Corbin Simpson > wrote: > > Trusting the spec worries me; could this break anybody? > > It will allow the user

[PATCH] agp: Enable all supported rates for graphic cards

2011-11-06 Thread Corbin Simpson
>> + case 2: > >> + *vga_agpstat |= AGPSTAT2_1X; > >> + printk(KERN_INFO PFX "Graphics card claims to only > support > >> x2 rate. " > >> + "Fixing up support for x1\n"); > >> + break; > >> + default: > >> + break; > >> + } > >> + > >>/* Check the speed bits make sense. Only one should be set. */ > >>tmp = *requested_mode & 7; > >>switch (tmp) { > >> -- > >> 1.7.5.4 > >> > >> ___ > >> dri-devel mailing list > >> dri-devel at lists.freedesktop.org > >> http://lists.freedesktop.org/mailman/listinfo/dri-devel > > > -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/2006/5da721fe/attachment.html>

Re: [PATCH] agp: Enable all supported rates for graphic cards

2011-11-06 Thread Tormod Volden
On Sun, Nov 6, 2011 at 4:37 PM, Corbin Simpson wrote: > Trusting the spec worries me; could this break anybody? It will allow the user to override possibly safer default settings. If a user has specified, say, 2x in his xorg.conf and this was not honored because the card only reported 4x, this pa

[Bug 42373] Radeon HD 6450 (NI CAICOS) screen corruption on boot

2011-11-06 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=42373 --- Comment #5 from Kunal 2011-11-06 02:00:43 PST --- Created attachment 53209 --> https://bugs.freedesktop.org/attachment.cgi?id=53209 new dmesg.log with kernel 3.1.0-2.3 -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=

[Bug 42373] Radeon HD 6450 (NI CAICOS) screen corruption on boot

2011-11-06 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=42373 Kunal changed: What|Removed |Added Status|RESOLVED|REOPENED Resolution|DUPLICATE

hwmon interface changes? (from LKML)

2011-11-06 Thread Andrew Randrianasulu
Hi all! Some time ago both nouveau and radeon developers wished to have some in-kernel interface for hwmon, so automatic fan management can be implemented for GPU drivers ... Today I was looking at LKML and found this RFC: https://lkml.org/lkml/2011/11/4/18 Subject [RFC PATCH 0/2] HWMON: ad

[Bug 26345] [845G] CPU/GPU incoherency

2011-11-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=26345 --- Comment #140 from Abdul Nazar P 2011-11-06 08:44:26 PST --- pls work for i845 -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug.

[Bug 42645] Graphics issues on BZFlag 2.4.0 with i915g (gallium)

2011-11-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42645 --- Comment #1 from Christian Inci 2011-11-06 07:56:48 PST --- Created attachment 53222 --> https://bugs.freedesktop.org/attachment.cgi?id=53222 Incorrect rendering -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email -

[Bug 42645] New: Graphics issues on BZFlag 2.4.0 with i915g (gallium)

2011-11-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42645 Bug #: 42645 Summary: Graphics issues on BZFlag 2.4.0 with i915g (gallium) Classification: Unclassified Product: Mesa Version: git Platform: x86 (IA32) URL: http://bzflag.o

Re: [PATCH] agp: Enable all supported rates for graphic cards

2011-11-06 Thread Corbin Simpson
Trusting the spec worries me; could this break anybody? Is there any reason to use the not-so-magic numbers instead of the named constants? Sending from a mobile, pardon my terseness. ~ C. On Nov 6, 2011 7:03 AM, "Tormod Volden" wrote: > From: Tormod Volden > > Some cards report that they supp

[PATCH] agp: Enable all supported rates for graphic cards

2011-11-06 Thread Corbin Simpson
ld be set. */ >tmp = *requested_mode & 7; >switch (tmp) { > -- > 1.7.5.4 > > ___ > dri-devel mailing list > dri-devel at lists.freedesktop.org > http://lists.freedesktop.org/mailman/listinfo/dri-devel > -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/2006/7363198e/attachment.htm>

Re: [PATCH] agp: Fix multi-line warning message whitespace

2011-11-06 Thread Corbin Simpson
FWIW, Reviewed-by: Corbin Simpson Sending from a mobile, pardon my terseness. ~ C. On Nov 6, 2011 7:04 AM, "Tormod Volden" wrote: > From: Tormod Volden > > Signed-off-by: Tormod Volden > --- > drivers/char/agp/generic.c |8 > 1 files changed, 4 insertions(+), 4 deletions(-) > >

[PATCH] agp: Fix multi-line warning message whitespace

2011-11-06 Thread Corbin Simpson
ot set GATT table memory to > UC!\n"); > >bridge->gatt_table = (void *)table; > #else > -- > 1.7.5.4 > > ___ > dri-devel mailing list > dri-devel at lists.freedesktop.org > http://lists.freedesktop.org/mailman/listinfo/dri-devel > -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/2006/ac42aa8a/attachment-0001.htm>

[PATCH] agp: Fix multi-line warning message whitespace

2011-11-06 Thread Tormod Volden
From: Tormod Volden Signed-off-by: Tormod Volden --- drivers/char/agp/generic.c |8 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/char/agp/generic.c b/drivers/char/agp/generic.c index c5d04e5..2dc2d5b 100644 --- a/drivers/char/agp/generic.c +++ b/drivers/ch

[PATCH] agp: Enable all supported rates for graphic cards

2011-11-06 Thread Tormod Volden
From: Tormod Volden Some cards report that they support only 4x, in which case they should support 2x and 1x as well, according to the AGP spec. Otherwise a requested 1x or 2x rate will result in 0 being set: agpgart-via :00:00.0: putting AGP V2 device into 0x mode For instance ProSavage K

[Bug 25764] [RADEON:R600C] glLineStipple gives inconsistent results

2011-11-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=25764 --- Comment #6 from Dave Airlie 2011-11-06 05:06:37 PST --- please retry with latest r600g. -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee fo

[Bug 42490] NUTMEG DP to VGA bridge not working

2011-11-06 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=42490 --- Comment #10 from Mandeep Singh Baines 2011-11-05 19:58:01 PDT --- Woot! HDMI works fine. -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee f

Re: [PATCH 16/23] drm/savage: clean up reclaim_buffers

2011-11-06 Thread Tormod Volden
On Thu, Oct 27, 2011 at 1:07 PM, Daniel Vetter wrote: > The reclaim_buffers function of the savage driver actually wants to run > with the hw_lock held - at least there are printks in the call-chain > to that effect. But the drm core only calls reclaim_buffers as used > by savage _after_ forcefull

[Bug 42373] Radeon HD 6450 (NI CAICOS) screen corruption on boot

2011-11-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42373 --- Comment #5 from Kunal 2011-11-06 02:00:43 PST --- Created attachment 53209 --> https://bugs.freedesktop.org/attachment.cgi?id=53209 new dmesg.log with kernel 3.1.0-2.3 -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=

[Bug 42373] Radeon HD 6450 (NI CAICOS) screen corruption on boot

2011-11-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42373 Kunal changed: What|Removed |Added Status|RESOLVED|REOPENED Resolution|DUPLICATE