On Sat, Feb 09, 2013 at 05:27:35PM +0200, Imre Deak wrote:
> So far the assumption was that each dma scatter list entry contains only
> a single page. This might not hold in the future, when we'll introduce
> compact scatter lists, so prepare for this everywhere in the i915 code
> where we walk suc
https://bugzilla.kernel.org/show_bug.cgi?id=53391
--- Comment #8 from Stijn Tintel 2013-02-09
22:37:26 ---
Meanwhile I went up the attick to get me a 2nd DVI->VGA convertor.
With your 2nd patch applied without modifications, and using VGA cables, the
monitor on the right (DVI connector 2 o
https://bugzilla.kernel.org/show_bug.cgi?id=53391
--- Comment #7 from Stijn Tintel 2013-02-09
22:09:53 ---
The 2nd patch seems to give the same behaviour as the 1st patch. And I do not
entirely agree it is only a cosmetic issue.
With nvidia.ko, I use an Xorg.conf just with the Device secti
https://bugs.freedesktop.org/show_bug.cgi?id=60552
--- Comment #2 from Tom Stellard ---
Do you have a link to this demo?
--
You are receiving this mail because:
You are the assignee for the bug.
___
dri-devel mailing list
dri-devel@lists.freedesktop.o
https://bugs.freedesktop.org/show_bug.cgi?id=60503
Tom Stellard changed:
What|Removed |Added
Attachment #74515|0 |1
is obsolete|
https://bugzilla.kernel.org/show_bug.cgi?id=53391
--- Comment #6 from Marcin Slusarz 2013-02-09
20:11:56 ---
Created an attachment (id=92811)
--> (https://bugzilla.kernel.org/attachment.cgi?id=92811)
quirk v2
This patch should give you "correct" output numbers (although it's a cosmetic
is
On Sat, Feb 09, 2013 at 05:27:36PM +0200, Imre Deak wrote:
> So far we created a sparse dma scatter list for gem objects, where each
> scatter list entry represented only a single page. In the future we'll
> have to handle compact scatter lists too where each entry can consist of
> multiple pages,
Hi Imre!
On Sat, Feb 09, 2013 at 05:27:33PM +0200, Imre Deak wrote:
> Add a helper to walk through a scatter list a page at a time. Needed by
> upcoming patches fixing the scatter list walking logic in the i915 driver.
Nice patch, but I think this would make a rather nice addition to the
common s
https://bugzilla.kernel.org/show_bug.cgi?id=53391
--- Comment #5 from Stijn Tintel 2013-02-09
19:00:44 ---
The patch seems to fix it for nouveaufb. When starting X I still see strange
behavior. When KDM starts, it is displayed on the correct monitor (the left
monitor on DVI connector 1 on t
he bug.
-- next part --
An HTML attachment was scrubbed...
URL:
<http://lists.freedesktop.org/archives/dri-devel/attachments/20130209/89695876/attachment-0001.html>
nts/20130209/e5770775/attachment.html>
vel/attachments/20130209/fd29b298/attachment.html>
||
--
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/20130209/ef80567a/attachment.html>
nee for the bug.
-- next part --
An HTML attachment was scrubbed...
URL:
<http://lists.freedesktop.org/archives/dri-devel/attachments/20130209/27700b01/attachment.html>
||
--
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/20130209/cfb29d48/attachment.html>
|Linux (All)
--
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/20130209/2a3dd266/attachment.html>
8}
error: unknown event 4
--
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/20130209/683a1d44/attachment-0001.html>
https://bugzilla.kernel.org/show_bug.cgi?id=53391
--- Comment #4 from Marcin Slusarz 2013-02-09
17:59:44 ---
Created an attachment (id=92801)
--> (https://bugzilla.kernel.org/attachment.cgi?id=92801)
quirk
Does it work correctly with this patch?
Can you check whether the same bug occurs
https://bugs.freedesktop.org/show_bug.cgi?id=60555
--- Comment #2 from Marek Olšák ---
85efb2fff0d4de56c31e414fd05a37d212211d might be the culprit, but AFAIK there is
no r500 hardware without TCL (the commit only affects r500). I'm not interested
in fixing this, because nobody probably uses the e
the bug.
-- next part --
An HTML attachment was scrubbed...
URL:
<http://lists.freedesktop.org/archives/dri-devel/attachments/20130209/a60a6ac9/attachment.html>
7.3-101.fc17.i686
--
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/20130209/be345963/attachment.html>
https://bugzilla.kernel.org/show_bug.cgi?id=53391
--- Comment #3 from Stijn Tintel 2013-02-09
17:43:08 ---
Created an attachment (id=92791)
--> (https://bugzilla.kernel.org/attachment.cgi?id=92791)
Output of "lspci -vn -d 10de:" with nvidia.ko loaded
This is with nvidia.ko loaded, since I
So far we created a sparse dma scatter list for gem objects, where each
scatter list entry represented only a single page. In the future we'll
have to handle compact scatter lists too where each entry can consist of
multiple pages, for example for objects imported through PRIME.
The previous patch
So far the assumption was that each dma scatter list entry contains only
a single page. This might not hold in the future, when we'll introduce
compact scatter lists, so prepare for this everywhere in the i915 code
where we walk such a list.
We'll fix the place _creating_ these lists separately in
So far the assumption was that each scatter list entry contains a single
page. This might not hold in the future, when we'll introduce compact
scatter lists, so prepare for this here.
Reference: http://www.spinics.net/lists/dri-devel/msg33917.html
Signed-off-by: Imre Deak
---
drivers/gpu/drm/drm
Add a helper to walk through a scatter list a page at a time. Needed by
upcoming patches fixing the scatter list walking logic in the i915 driver.
Signed-off-by: Imre Deak
---
include/drm/drmP.h | 44
1 file changed, 44 insertions(+)
diff --git a/i
This series adds support for handling compact dma scatter lists to the
i915 driver. This is a dependency for the related upcoming change in the
PRIME interface:
http://www.spinics.net/lists/dri-devel/msg33917.html
Imre Deak (4):
drm: add helper to walk a dma scatter list a page at a time
drm:
https://bugs.freedesktop.org/show_bug.cgi?id=60503
--- Comment #6 from Pavel Ondračka ---
Created attachment 74516
--> https://bugs.freedesktop.org/attachment.cgi?id=74516&action=edit
RADEON_DEBUG=fp log with patch applied
--
You are receiving this mail because:
You are the assignee for the b
https://bugzilla.kernel.org/show_bug.cgi?id=53391
Marcin Slusarz changed:
What|Removed |Added
CC||marcin.slusarz at gmail.com
--- Comm
https://bugs.freedesktop.org/show_bug.cgi?id=60541
Marek Olšák changed:
What|Removed |Added
Status|NEW |RESOLVED
Resolution|---
https://bugs.freedesktop.org/show_bug.cgi?id=60503
--- Comment #5 from Tom Stellard ---
(In reply to comment #4)
> (In reply to comment #2)
> > Created attachment 74515 [details] [review] [review]
> > Possible fix
> >
> > Does this patch fix the issue?
>
> No it doesn't.
Can you post the RADEO
https://bugs.freedesktop.org/show_bug.cgi?id=60503
--- Comment #4 from Pavel Ondračka ---
(In reply to comment #2)
> Created attachment 74515 [details] [review]
> Possible fix
>
> Does this patch fix the issue?
No it doesn't.
--
You are receiving this mail because:
You are the assignee for th
https://bugs.freedesktop.org/show_bug.cgi?id=60503
--- Comment #3 from Pavel Ondračka ---
BTW this works fine with RADEON_DEBUG=noopt.
--
You are receiving this mail because:
You are the assignee for the bug.
___
dri-devel mailing list
dri-devel@lists
https://bugs.freedesktop.org/show_bug.cgi?id=60503
--- Comment #2 from Tom Stellard ---
Created attachment 74515
--> https://bugs.freedesktop.org/attachment.cgi?id=74515&action=edit
Possible fix
Does this patch fix the issue?
--
You are receiving this mail because:
You are the assignee for t
On Sat, Feb 09, 2013 at 05:27:35PM +0200, Imre Deak wrote:
> So far the assumption was that each dma scatter list entry contains only
> a single page. This might not hold in the future, when we'll introduce
> compact scatter lists, so prepare for this everywhere in the i915 code
> where we walk suc
On Sat, 2013-02-09 at 23:51 +0100, Daniel Vetter wrote:
> On Sat, Feb 09, 2013 at 05:27:35PM +0200, Imre Deak wrote:
> > So far the assumption was that each dma scatter list entry contains only
> > a single page. This might not hold in the future, when we'll introduce
> > compact scatter lists, so
On Sat, 2013-02-09 at 19:56 +0100, Daniel Vetter wrote:
> Hi Imre!
>
> On Sat, Feb 09, 2013 at 05:27:33PM +0200, Imre Deak wrote:
> > Add a helper to walk through a scatter list a page at a time. Needed by
> > upcoming patches fixing the scatter list walking logic in the i915 driver.
>
> Nice pat
On Sat, Feb 09, 2013 at 05:27:35PM +0200, Imre Deak wrote:
> So far the assumption was that each dma scatter list entry contains only
> a single page. This might not hold in the future, when we'll introduce
> compact scatter lists, so prepare for this everywhere in the i915 code
> where we walk suc
On Sat, 2013-02-09 at 19:59 +0100, Daniel Vetter wrote:
> On Sat, Feb 09, 2013 at 05:27:36PM +0200, Imre Deak wrote:
> > So far we created a sparse dma scatter list for gem objects, where each
> > scatter list entry represented only a single page. In the future we'll
> > have to handle compact scat
, the bit never goes low.
--
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/20130209/8f4f5944/attachment.html>
https://bugzilla.kernel.org/show_bug.cgi?id=53391
--- Comment #8 from Stijn Tintel 2013-02-09
22:37:26 ---
Meanwhile I went up the attick to get me a 2nd DVI->VGA convertor.
With your 2nd patch applied without modifications, and using VGA cables, the
monitor on the right (DVI connector 2 o
https://bugzilla.kernel.org/show_bug.cgi?id=53391
--- Comment #7 from Stijn Tintel 2013-02-09
22:09:53 ---
The 2nd patch seems to give the same behaviour as the 1st patch. And I do not
entirely agree it is only a cosmetic issue.
With nvidia.ko, I use an Xorg.conf just with the Device secti
rnel: 3.7.3-101.fc17.i686
Libdrm: 20c5607b57da113ca1a29caaa5a52eaf83808dff
--
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/20130
https://bugzilla.kernel.org/show_bug.cgi?id=53391
--- Comment #6 from Marcin Slusarz 2013-02-09
20:11:56 ---
Created an attachment (id=92811)
--> (https://bugzilla.kernel.org/attachment.cgi?id=92811)
quirk v2
This patch should give you "correct" output numbers (although it's a cosmetic
is
https://bugzilla.kernel.org/show_bug.cgi?id=53391
--- Comment #5 from Stijn Tintel 2013-02-09
19:00:44 ---
The patch seems to fix it for nouveaufb. When starting X I still see strange
behavior. When KDM starts, it is displayed on the correct monitor (the left
monitor on DVI connector 1 on t
On Sat, Feb 09, 2013 at 05:27:36PM +0200, Imre Deak wrote:
> So far we created a sparse dma scatter list for gem objects, where each
> scatter list entry represented only a single page. In the future we'll
> have to handle compact scatter lists too where each entry can consist of
> multiple pages,
Hi Imre!
On Sat, Feb 09, 2013 at 05:27:33PM +0200, Imre Deak wrote:
> Add a helper to walk through a scatter list a page at a time. Needed by
> upcoming patches fixing the scatter list walking logic in the i915 driver.
Nice patch, but I think this would make a rather nice addition to the
common s
https://bugs.freedesktop.org/show_bug.cgi?id=60553
--- Comment #2 from Laurent carlier ---
Tracing the game windows gives a working trace:
6 glXChooseVisual(dpy = 0xc4d0010, screen = 0, attribList = {GLX_RGBA,
GLX_RED_SIZE, GLX_LEVEL, GLX_GREEN_SIZE, GLX_LEVEL, GLX_BLUE_SIZE,
GLX_BUFFER_SIZE, GL
https://bugs.freedesktop.org/show_bug.cgi?id=60555
Pavel Ondračka changed:
What|Removed |Added
Component|Drivers/DRI/r300|Drivers/Gallium/r300
--- Comment #1 fro
https://bugs.freedesktop.org/show_bug.cgi?id=60555
Priority: lowest
Bug ID: 60555
Assignee: dri-devel@lists.freedesktop.org
Summary: [r300g] RADEON_NO_TCL=1 hardlock
Severity: trivial
Classification: Unclassified
OS: All
https://bugs.freedesktop.org/show_bug.cgi?id=60553
Laurent carlier changed:
What|Removed |Added
Attachment #74499|image/png |image/jpeg
mime type|
https://bugs.freedesktop.org/show_bug.cgi?id=60553
--- Comment #1 from Laurent carlier ---
Created attachment 74500
--> https://bugs.freedesktop.org/attachment.cgi?id=74500&action=edit
trine2 with correct rendering (windowed)
--
You are receiving this mail because:
You are the assignee for th
https://bugs.freedesktop.org/show_bug.cgi?id=60553
Laurent carlier changed:
What|Removed |Added
Attachment #74499|text/plain |image/png
mime type|
https://bugs.freedesktop.org/show_bug.cgi?id=60553
Laurent carlier changed:
What|Removed |Added
Hardware|Other |x86-64 (AMD64)
OS|All
https://bugs.freedesktop.org/show_bug.cgi?id=60553
Priority: medium
Bug ID: 60553
Assignee: dri-devel@lists.freedesktop.org
Summary: [trine2] wrong colors when executed fullscreen
Severity: normal
Classification: Unclassified
https://bugzilla.kernel.org/show_bug.cgi?id=53391
--- Comment #4 from Marcin Slusarz 2013-02-09
17:59:44 ---
Created an attachment (id=92801)
--> (https://bugzilla.kernel.org/attachment.cgi?id=92801)
quirk
Does it work correctly with this patch?
Can you check whether the same bug occurs
https://bugs.freedesktop.org/show_bug.cgi?id=60552
--- Comment #1 from Pavel Ondračka ---
Created attachment 74498
--> https://bugs.freedesktop.org/attachment.cgi?id=74498&action=edit
RADEON_DEBUG=fp log
--
You are receiving this mail because:
You are the assignee for the bug.
___
https://bugs.freedesktop.org/show_bug.cgi?id=60552
Priority: medium
Bug ID: 60552
Assignee: dri-devel@lists.freedesktop.org
Summary: [r300g] Carvisualizer webgl demo: black flickering
spots over the car
Severity: normal
C
https://bugzilla.kernel.org/show_bug.cgi?id=53391
--- Comment #3 from Stijn Tintel 2013-02-09
17:43:08 ---
Created an attachment (id=92791)
--> (https://bugzilla.kernel.org/attachment.cgi?id=92791)
Output of "lspci -vn -d 10de:" with nvidia.ko loaded
This is with nvidia.ko loaded, since I
You are the assignee for the bug.
-- next part --
An HTML attachment was scrubbed...
URL:
<http://lists.freedesktop.org/archives/dri-devel/attachments/20130209/4513db2b/attachment.html>
https://bugzilla.kernel.org/show_bug.cgi?id=53391
Marcin Slusarz changed:
What|Removed |Added
CC||marcin.slus...@gmail.com
--- Comment
On Sat, Feb 09, 2013 at 05:27:35PM +0200, Imre Deak wrote:
> So far the assumption was that each dma scatter list entry contains only
> a single page. This might not hold in the future, when we'll introduce
> compact scatter lists, so prepare for this everywhere in the i915 code
> where we walk suc
So far we created a sparse dma scatter list for gem objects, where each
scatter list entry represented only a single page. In the future we'll
have to handle compact scatter lists too where each entry can consist of
multiple pages, for example for objects imported through PRIME.
The previous patch
So far the assumption was that each dma scatter list entry contains only
a single page. This might not hold in the future, when we'll introduce
compact scatter lists, so prepare for this everywhere in the i915 code
where we walk such a list.
We'll fix the place _creating_ these lists separately in
So far the assumption was that each scatter list entry contains a single
page. This might not hold in the future, when we'll introduce compact
scatter lists, so prepare for this here.
Reference: http://www.spinics.net/lists/dri-devel/msg33917.html
Signed-off-by: Imre Deak
---
drivers/gpu/drm/drm
Add a helper to walk through a scatter list a page at a time. Needed by
upcoming patches fixing the scatter list walking logic in the i915 driver.
Signed-off-by: Imre Deak
---
include/drm/drmP.h | 44
1 file changed, 44 insertions(+)
diff --git a/i
This series adds support for handling compact dma scatter lists to the
i915 driver. This is a dependency for the related upcoming change in the
PRIME interface:
http://www.spinics.net/lists/dri-devel/msg33917.html
Imre Deak (4):
drm: add helper to walk a dma scatter list a page at a time
drm
https://bugs.freedesktop.org/show_bug.cgi?id=59982
--- Comment #12 from Alex Deucher ---
UpdateCRTC_DoubleBufferRegisters takes the crtc hardware lock so that updates
happen atomically rather than double buffered updates during the vupdate
period.
You pass parameters to the atom table via a stru
for the bug.
-- next part --
An HTML attachment was scrubbed...
URL:
<http://lists.freedesktop.org/archives/dri-devel/attachments/20130209/69bc88f7/attachment.html>
https://bugs.freedesktop.org/show_bug.cgi?id=60541
Priority: medium
Bug ID: 60541
Keywords: regression
CC: mar...@gmail.com
Assignee: dri-devel@lists.freedesktop.org
Summary: [r300g, bisected] Some piglit NV_conditional_render
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/20130209/22bc10f7/attachment.html>
the bug.
-- next part --
An HTML attachment was scrubbed...
URL:
<http://lists.freedesktop.org/archives/dri-devel/attachments/20130209/c4d42b7a/attachment.html>
On 2013-02-08 15:28, Marcus Lorentzon wrote:
> When we do that we stop->setup->start during blanking. So our "DSS" is
> optimized to be able to do that without getting blocked. All DSI video
> mode panels (and DPI) products we have done so far have not had any
> issue with that (as long as DSI HS
On 2013-02-08 14:40, Marcus Lorentzon wrote:
> I agree, but I think it should be
> setup->enable->video_on->video_off->disable->setup->...
> I don't think there is any interface parameters that should be changed
> while link is enabled. And if there are, they should be identified and
> split out i
Hi,
On 2013-02-03 21:17, Tomasz Figa wrote:
> Hi Laurent,
>
> On Saturday 02 of February 2013 11:39:59 Laurent Pinchart wrote:
>> Hi Tomasz,
>>
>> Thank you for your RFC.
>>
>> On Wednesday 30 January 2013 16:38:59 Tomasz Figa wrote:
>>> Changes done to Tomi's edition of CDF:
>>> - Replaced set
On 2013-02-04 12:05, Marcus Lorentzon wrote:
> As discussed at FOSDEM I will give DSI bus with full feature set a
> try.
Please do, but as a reminder I want to raise the issues I see with a DSI
bus:
- A device can be a child of only one bus. So if DSI is used only for
video, the device is a chil
https://bugs.freedesktop.org/show_bug.cgi?id=60503
--- Comment #1 from Pavel Ondračka ---
Created attachment 74476
--> https://bugs.freedesktop.org/attachment.cgi?id=74476&action=edit
RADEON_DEBUG=fp log
I actually forgot to attach the log.
--
You are receiving this mail because:
You are the
77 matches
Mail list logo