[PATCH] drm/fb helper: don't call drm_helper_connector_dpms directly

2012-09-08 Thread Daniel Vetter
On Fri, Sep 07, 2012 at 02:28:28PM -0700, Jesse Barnes wrote:
> On Fri,  7 Sep 2012 10:14:52 +0200
> Daniel Vetter  wrote:
> 
> > Yet again a case where the fb helper is too intimate with the crtc
> > helper and calls a crtc helepr function directly instead of going
> > through the interface vtable.
> > 
> > This fixes console blanking in drm/i915 with the new i915-specific
> > modeset code.
> > 
> > Reported-by: Jesse Barnes 
> > Signed-off-by: Daniel Vetter 
> > ---
> >  drivers/gpu/drm/drm_fb_helper.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/drivers/gpu/drm/drm_fb_helper.c 
> > b/drivers/gpu/drm/drm_fb_helper.c
> > index eb79515..b5d05f5 100644
> > --- a/drivers/gpu/drm/drm_fb_helper.c
> > +++ b/drivers/gpu/drm/drm_fb_helper.c
> > @@ -330,7 +330,7 @@ static void drm_fb_helper_dpms(struct fb_info *info, 
> > int dpms_mode)
> > /* Walk the connectors & encoders on this fb turning them 
> > on/off */
> > for (j = 0; j < fb_helper->connector_count; j++) {
> > connector = fb_helper->connector_info[j]->connector;
> > -   drm_helper_connector_dpms(connector, dpms_mode);
> > +   connector->funcs->dpms(connector, dpms_mode);
> > drm_connector_property_set_value(connector,
> > dev->mode_config.dpms_property, dpms_mode);
> > }
> 
> Tested-by: Jesse Barnes 

Applied with Dave's irc-ack, thanks for yelling&testing.
-Daniel
-- 
Daniel Vetter
Software Engineer, Intel Corporation
+41 (0) 79 365 57 48 - http://blog.ffwll.ch


[PATCH] libkms: link against libdrm

2012-09-08 Thread Marcin Slusarz

Signed-off-by: Marcin Slusarz 
---
 libkms/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libkms/Makefile.am b/libkms/Makefile.am
index fa379a4..215450a 100644
--- a/libkms/Makefile.am
+++ b/libkms/Makefile.am
@@ -6,7 +6,7 @@ AM_CFLAGS = \
 libkms_la_LTLIBRARIES = libkms.la
 libkms_ladir = $(libdir)
 libkms_la_LDFLAGS = -version-number 1:0:0 -no-undefined
-libkms_la_LIBADD =
+libkms_la_LIBADD = ../libdrm.la

 #if HAVE_LIBUDEV
 #libkms_la_LIBADD += $(LIBUDEV_LIBS)
-- 
1.7.12



[Bug 54662] New: [bisected] Kernel 3.6 breaks KMS on Radeon RV530 (black screen)

2012-09-08 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=54662

 Bug #: 54662
   Summary: [bisected] Kernel 3.6 breaks KMS on Radeon RV530
(black screen)
Classification: Unclassified
   Product: DRI
   Version: unspecified
  Platform: x86 (IA32)
OS/Version: Linux (All)
Status: NEW
  Severity: normal
  Priority: medium
 Component: DRM/Radeon
AssignedTo: dri-devel at lists.freedesktop.org
ReportedBy: skitching at apache.org


Created attachment 66826
  --> https://bugs.freedesktop.org/attachment.cgi?id=66826
Dmesg output from a kernel that does not show black screen problem

The following commit (merged in 3.6 rc series) makes the screen go black
immediately after Plymouth completes (ie just before greeter screen):

876dc9f32907e57e0298bcd0f1607cb7a2582f63 is the first bad commit
commit 876dc9f32907e57e0298bcd0f1607cb7a2582f63
Author: Christian K?nig 
Date:   Tue May 8 14:24:01 2012 +0200

drm/radeon: remove radeon_fence_create

Note that this is a different bug than
https://bugs.freedesktop.org/show_bug.cgi?id=54129 (which I'm also getting) but
might be related.

The same kernel boots without problems using "nomodeset".

System is an x86-32 laptop (about 5 years old) with Radeon mobility X1600,
running Ubuntu 12.04.

lspci reports:
01:00.0 VGA compatible controller: Advanced Micro Devices [AMD] nee ATI M56P
[Radeon Mobility X1600]

Attached is full dmesg output from a *different* (ie earlier, working) kernel.
Some relevant bits include:
[2.978637] [drm] Initialized drm 1.1.0 20060810
[3.052940] [drm] radeon defaulting to kernel modesetting.
[3.052945] [drm] radeon kernel modesetting enabled.
[3.053261] [drm] initializing kernel modesetting (RV530 0x1002:0x71C5
0x103C:0x30A3).
..
[3.245417] [drm] Loading R500 Microcode
[3.247401] [drm] radeon: ring at 0x10001000
[3.247441] [drm] ring test succeeded in 9 usecs
...
[4.064745] [drm] Initialized radeon 2.17.0 20080528 for :01:00.0 on
minor 0

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.


[Bug 54129] [bisected] Kernel 3.5.0 breaks KMS on Radeon RV250

2012-09-08 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=54129

Simon Kitching  changed:

   What|Removed |Added

   See Also||https://bugs.freedesktop.or
   ||g/show_bug.cgi?id=54662

--- Comment #9 from Simon Kitching  2012-09-08 
06:48:22 UTC ---
Sorry, have to take back that comment about 3.6-rc4+ working; I'm now getting
the "black screen" problem consistently. I was definitely running the right
kernel ("uname -a" was reporting 3.6-rc4+) and can only think that I
accidentally fat-fingered the keyboard and selected the grub "recovery" option
(ie with "nomodeset").

In short: 3.6-rc4+ just boots to a totally black screen for me, due to
something merged in the 3.6-rc series. I've bisected this, and raised a
separate bug (54662) for it. Interestingly, that commit is *also* about "radeon
fence" handling.

I presume that this bug (54129) is still also present and lurking underneath
the black screen - but obviously I can't test that.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.


[Bug 42490] NUTMEG DP to VGA bridge not working

2012-09-08 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=42490

--- Comment #39 from diego.abelenda at gmail.com 2012-09-08 08:59:02 UTC ---
Created attachment 66828
  --> https://bugs.freedesktop.org/attachment.cgi?id=66828
dmesg booting with 2 monitors plugged patch applyed on top of drm-fixes-3.6
drm.debug=4 (X with NoAccel)

I tested a few things and found out that with the patch over drm-fixes-3.6 I
generally get the DVI screen working but the VGA has no signal if it is plugged
during the boot. The generally is there because sometimes I just get a black
screen on the DVI and then X causes a GPU Hangup (The NoAccel suppresses the
Hangup). This situation is rare and If the GPU hangup pressing the reset switch
(instead of letting the machine off during some time and doing a cold boot)
causes it to happen more often.

A "quick" way to do it is booting without the patch starting X without NoAccel
and then pressing the reset button and booting with the patch.

Seems the firmware doesn't reset the state of the card properly during POST or
something. Last night the problem happened "by itself", so it might happen
without trying to provoke it. This morning I tried rebooting a few times but
didn't get it to happen without provoking it.

The attachment is dmesg | grep -e drm -e radeon   when the DVI screen stays
black (VGA saying no signal) and without hangup (provoking it on the previous
boot). The last part is X turning the screens off and trying to wake them up.
The situation didn't change.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.


[PATCH V6] drm: edid: add support for E-DDC

2012-09-08 Thread Dave Airlie
On Sat, Sep 8, 2012 at 3:30 AM, Shirish S  wrote:
> Hi Dave,
> Gentle Reminder!
> This patch is required for passing the very first test case of HDMI
> Compliance test suite.
> Regards,
> Shirish S

Can you provide ajax with the sample he asked for previously?

Dave.


[Bug 54662] [bisected] Kernel 3.6 breaks KMS on Radeon RV530 (black screen)

2012-09-08 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=54662

--- Comment #1 from Alex Deucher  2012-09-08 15:36:53 UTC 
---
Can you attach the dmesg output from the non-working case?

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.


[Bug 54662] [bisected] Kernel 3.6 breaks KMS on Radeon RV530 (black screen)

2012-09-08 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=54662

--- Comment #2 from Alex Deucher  2012-09-08 15:37:09 UTC 
---
and the xorg log from the non-working case?

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.


[Bug 54662] [bisected] Kernel 3.6 breaks KMS on Radeon RV530 (black screen)

2012-09-08 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=54662

--- Comment #3 from Alex Deucher  2012-09-08 15:38:42 UTC 
---
Does X load ok if you disable acceleration:

Option "NoAccel" "TRUE"

in the device section of your xorg.conf?

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.


[Bug 54129] [bisected] Kernel 3.5.0 breaks KMS on Radeon RV250

2012-09-08 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=54129

--- Comment #10 from Alex Deucher  2012-09-08 15:39:11 UTC 
---
Does X load ok if you disable acceleration:

Option "NoAccel" "TRUE"

in the device section of your xorg.conf?

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.


[Bug 42490] NUTMEG DP to VGA bridge not working

2012-09-08 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=42490

--- Comment #40 from Alex Deucher  2012-09-08 15:46:24 UTC 
---
Does your OEM have a newer bios available for your board?  It might be worth
trying a newer (or maybe older) bios image.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.


[PATCH V6] drm: edid: add support for E-DDC

2012-09-08 Thread Shirish S
I have already sent him the sample he had asked for.
Regards,
Shirish S

On Sat, Sep 8, 2012 at 3:35 AM, Dave Airlie  wrote:

> On Sat, Sep 8, 2012 at 3:30 AM, Shirish S  wrote:
> > Hi Dave,
> > Gentle Reminder!
> > This patch is required for passing the very first test case of HDMI
> > Compliance test suite.
> > Regards,
> > Shirish S
>
> Can you provide ajax with the sample he asked for previously?
>
> Dave.
>
-- next part --
An HTML attachment was scrubbed...
URL: 
<http://lists.freedesktop.org/archives/dri-devel/attachments/20120908/74d99495/attachment.html>


[PATCH V6] drm: edid: add support for E-DDC

2012-09-08 Thread Paul Menzel
Dear Shirish,


thank you for your answers and patience.

Please just sent plain text message to mailings lists and adhere to the
netiquette (inline quoting) [1]. That would be awesome.


Am Samstag, den 08.09.2012, 08:49 -0700 schrieb Shirish S:
> On Sat, Sep 8, 2012 at 3:35 AM, Dave Airlie  wrote:
> 
> > On Sat, Sep 8, 2012 at 3:30 AM, Shirish S  wrote:
> > > Hi Dave,
> > > Gentle Reminder!
> > > This patch is required for passing the very first test case of HDMI
> > > Compliance test suite.
> > > Regards,
> > > Shirish S
> >
> > Can you provide ajax with the sample he asked for previously?
>
> I have already sent him the sample he had asked for.

Could you sent it to the list again as we are all interested in it? If
you are allowed that is of course.


Thanks and hopefully your patch will go in soon,

Paul


[1] http://en.opensuse.org/openSUSE:Mailing_list_netiquette
-- next part --
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 198 bytes
Desc: This is a digitally signed message part
URL: 
<http://lists.freedesktop.org/archives/dri-devel/attachments/20120908/fa034bdc/attachment.pgp>


[Bug 42490] NUTMEG DP to VGA bridge not working

2012-09-08 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=42490

--- Comment #41 from diego.abelenda at gmail.com 2012-09-08 18:15:14 UTC ---
Oh yes there was and now even without the patch my machine displays something
on the DVI screen when both screens are plugged and the GPU doesn't hang
anymore even without NoAccel (but only from a cold boot, if I reboot/reset I
get a black screen and the GPU hangup). So part of the problem was really a
firmware issue.

With the patch I can't seem to provoke the GPU hangup anymore.

But my VGA screen continues to be stubbornly off when booting with both screens
plugged. Continues to work if I plug my VGA screen after booting.

So now I can start X safely without NoAccel that's one good thing.

BTW my motherboad is an Asus F1A75-M now my firmware is the latest version
(2004) upgraded from 1903.

Oh BTW I am booting in uEFI mode using grub-2.00 I don't know if this might
change something.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.


[Bug 54675] New: [RADEON:KMS:RV730XT:HDMI:AUDIO] Screaming audio IRQ with 3.5.3 kernel

2012-09-08 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=54675

 Bug #: 54675
   Summary: [RADEON:KMS:RV730XT:HDMI:AUDIO] Screaming audio IRQ
with 3.5.3 kernel
Classification: Unclassified
   Product: DRI
   Version: unspecified
  Platform: x86 (IA32)
OS/Version: Linux (All)
Status: NEW
  Severity: normal
  Priority: medium
 Component: DRM/Radeon
AssignedTo: dri-devel at lists.freedesktop.org
ReportedBy: rankincj at googlemail.com


Created attachment 66851
  --> https://bugs.freedesktop.org/attachment.cgi?id=66851
dmesg output when radeon.audio=1

I have recently added a HD4670 AGP to one of my older machines, and I am
noticing problems with the HDMI audio device. Specifically:

irq 17: nobody cared (try booting with the "irqpoll" option)
Pid: 0, comm: swapper/0 Not tainted 3.5.3 #2
Call Trace:
 [] ? __report_bad_irq+0x11/0x94
 [] ? note_interrupt+0x120/0x19b
 [] ? handle_irq_event_percpu+0xe8/0xfb
 [] ? handle_irq_event+0x29/0x40
 [] ? handle_level_irq+0x93/0x93
 [] ? handle_fasteoi_irq+0x67/0x90
   [] ? do_IRQ+0x2e/0x83
 [] ? common_interrupt+0x29/0x30
 [] ? audit_update_watch+0x59/0x285
 [] ? default_idle+0x23/0x3b
 [] ? cpu_idle+0x4b/0x7e
 [] ? start_kernel+0x2a4/0x2a7
handlers:
[] azx_interrupt [snd_hda_intel]
Disabling IRQ #17

This is with radeon.audio=0. With radeon.audio=1, the KMS IRQ has similar
problem and is also disabled.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.


[Bug 54675] [RADEON:KMS:RV730XT:HDMI:AUDIO] Screaming audio IRQ with 3.5.3 kernel

2012-09-08 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=54675

--- Comment #1 from Chris Rankin  2012-09-08 
21:48:50 UTC ---
Created attachment 66852
  --> https://bugs.freedesktop.org/attachment.cgi?id=66852
dmesg output when radeon.audio=0

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.


[Bug 54675] [RADEON:KMS:RV730XT:HDMI:AUDIO] Screaming audio IRQ with 3.5.3 kernel

2012-09-08 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=54675

--- Comment #2 from Chris Rankin  2012-09-08 
21:49:43 UTC ---
Created attachment 66853
  --> https://bugs.freedesktop.org/attachment.cgi?id=66853
lspci output

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.


[Bug 54675] [RADEON:KMS:RV730XT:HDMI:AUDIO] Screaming audio IRQ with 3.5.3 kernel

2012-09-08 Thread bugzilla-dae...@freedesktop.org
https://bugs.freedesktop.org/show_bug.cgi?id=54675

Alex Deucher  changed:

   What|Removed |Added

  Attachment #66851|text/x-log  |text/plain
  mime type||

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.


[PATCH V6] drm: edid: add support for E-DDC

2012-09-08 Thread Shirish S
On Sat, Sep 8, 2012 at 9:13 AM, Paul Menzel <
paulepanter at users.sourceforge.net> wrote:

> Dear Shirish,
>
>
> thank you for your answers and patience.
>
> Please just sent plain text message to mailings lists and adhere to the
> netiquette (inline quoting) [1]. That would be awesome.
>
> Have been replying inline, anyways,thanks for the correction.

>
> Am Samstag, den 08.09.2012, 08:49 -0700 schrieb Shirish S:
> > On Sat, Sep 8, 2012 at 3:35 AM, Dave Airlie  wrote:
> >
> > > On Sat, Sep 8, 2012 at 3:30 AM, Shirish S 
> wrote:
> > > > Hi Dave,
> > > > Gentle Reminder!
> > > > This patch is required for passing the very first test case of HDMI
> > > > Compliance test suite.
> > > > Regards,
> > > > Shirish S
> > >
> > > Can you provide ajax with the sample he asked for previously?
> >
> > I have already sent him the sample he had asked for.
>
> Could you sent it to the list again as we are all interested in it? If
> you are allowed that is of course.
>
> am not sure if i can mail it to list, but you can get it from
http://www.quantumdata.com/index.asp
by mailing their technical support.

>
> Thanks and hopefully your patch will go in soon,
>
> Paul
>
>
> [1] http://en.opensuse.org/openSUSE:Mailing_list_netiquette
>

Regards,
Shirish S
-- next part --
An HTML attachment was scrubbed...
URL: 
<http://lists.freedesktop.org/archives/dri-devel/attachments/20120908/936476ca/attachment.html>


[PATCH 0/7] Fixes for hybrid graphics Apple machines

2012-09-08 Thread Seth Forshee
On Fri, Sep 07, 2012 at 10:35:04PM +0100, Dave Airlie wrote:
> On Fri, Sep 7, 2012 at 4:22 PM, Seth Forshee  
> wrote:
> > Many hybrid graphics Apple laptops fail to set up LVDS on the secondary
> > GPU due to missing or incorrect mode information for the panel at init
> > time. The only way to get the LVDS mode on these machines is via the
> > DDC, but this is muxed to the active GPU at boot. However, the graphics
> > mux on these machines supports muxing the i2c idependently of the
> > display, making it possible for the secondary graphics driver to read
> > the EDID without a full display switch.
> >
> > In order to support this, these patches modify vga_switcheroo to allow
> > muxing of the DDC idependently of the display. apple-gmux is updated to
> > support this new functionality, and drm_get_edid() is modified to switch
> > the DDC mux as needed.
> >
> > For this to work we also need to ensure that sufficient switcheroo
> > suport is available before initializing the secondary GPU. This is done
> > by adding any non-active GPUs that try to initialize before switcheroo
> > is ready to a list and initializing these devices once switcheroo
> > becomes ready. This behavior is restricted to Apple laptops to prevent
> > causing problems on other machines.
> 
> I hate this idea, no delaying stuff. We either need to have some sort
> of enforced ordering or make some stuff only work built-in.
> 
> But sticking things on a delayed list just in case seems wrong to me.

I really don't like it either. My preferred solution would be to have
i915 register the LVDS connector whenever we can reasonably expect that
an LVDS panel might be present, then treat the panel as disconnected
until we can get the mode information. I was headed down this path with
the first patches I sent, but both Daniel and Matthew responded
unfavorably to this approach.

Otherwise I'm open to suggestions on how enforcing the ordering of the
device initializations. Forcing apple-gmux to be built-in or making i915
depend on it might solve the problem, but I don't find either of these
to be very desirable either.

Thanks,
Seth



[Bug 42490] NUTMEG DP to VGA bridge not working

2012-09-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42490

--- Comment #39 from diego.abele...@gmail.com 2012-09-08 08:59:02 UTC ---
Created attachment 66828
  --> https://bugs.freedesktop.org/attachment.cgi?id=66828
dmesg booting with 2 monitors plugged patch applyed on top of drm-fixes-3.6
drm.debug=4 (X with NoAccel)

I tested a few things and found out that with the patch over drm-fixes-3.6 I
generally get the DVI screen working but the VGA has no signal if it is plugged
during the boot. The generally is there because sometimes I just get a black
screen on the DVI and then X causes a GPU Hangup (The NoAccel suppresses the
Hangup). This situation is rare and If the GPU hangup pressing the reset switch
(instead of letting the machine off during some time and doing a cold boot)
causes it to happen more often.

A "quick" way to do it is booting without the patch starting X without NoAccel
and then pressing the reset button and booting with the patch.

Seems the firmware doesn't reset the state of the card properly during POST or
something. Last night the problem happened "by itself", so it might happen
without trying to provoke it. This morning I tried rebooting a few times but
didn't get it to happen without provoking it.

The attachment is dmesg | grep -e drm -e radeon   when the DVI screen stays
black (VGA saying no signal) and without hangup (provoking it on the previous
boot). The last part is X turning the screens off and trying to wake them up.
The situation didn't change.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel


Re: [PATCH V6] drm: edid: add support for E-DDC

2012-09-08 Thread Dave Airlie
On Sat, Sep 8, 2012 at 3:30 AM, Shirish S  wrote:
> Hi Dave,
> Gentle Reminder!
> This patch is required for passing the very first test case of HDMI
> Compliance test suite.
> Regards,
> Shirish S

Can you provide ajax with the sample he asked for previously?

Dave.
___
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel


[Bug 54662] [bisected] Kernel 3.6 breaks KMS on Radeon RV530 (black screen)

2012-09-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54662

--- Comment #1 from Alex Deucher  2012-09-08 15:36:53 UTC ---
Can you attach the dmesg output from the non-working case?

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel


[Bug 54662] [bisected] Kernel 3.6 breaks KMS on Radeon RV530 (black screen)

2012-09-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54662

--- Comment #2 from Alex Deucher  2012-09-08 15:37:09 UTC ---
and the xorg log from the non-working case?

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel


[Bug 54662] [bisected] Kernel 3.6 breaks KMS on Radeon RV530 (black screen)

2012-09-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54662

--- Comment #3 from Alex Deucher  2012-09-08 15:38:42 UTC ---
Does X load ok if you disable acceleration:

Option "NoAccel" "TRUE"

in the device section of your xorg.conf?

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel


[Bug 54129] [bisected] Kernel 3.5.0 breaks KMS on Radeon RV250

2012-09-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54129

--- Comment #10 from Alex Deucher  2012-09-08 15:39:11 UTC ---
Does X load ok if you disable acceleration:

Option "NoAccel" "TRUE"

in the device section of your xorg.conf?

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel


[Bug 42490] NUTMEG DP to VGA bridge not working

2012-09-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42490

--- Comment #40 from Alex Deucher  2012-09-08 15:46:24 UTC ---
Does your OEM have a newer bios available for your board?  It might be worth
trying a newer (or maybe older) bios image.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel


Re: [PATCH V6] drm: edid: add support for E-DDC

2012-09-08 Thread Shirish S
I have already sent him the sample he had asked for.
Regards,
Shirish S

On Sat, Sep 8, 2012 at 3:35 AM, Dave Airlie  wrote:

> On Sat, Sep 8, 2012 at 3:30 AM, Shirish S  wrote:
> > Hi Dave,
> > Gentle Reminder!
> > This patch is required for passing the very first test case of HDMI
> > Compliance test suite.
> > Regards,
> > Shirish S
>
> Can you provide ajax with the sample he asked for previously?
>
> Dave.
>
___
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel


Re: [PATCH V6] drm: edid: add support for E-DDC

2012-09-08 Thread Paul Menzel
Dear Shirish,


thank you for your answers and patience.

Please just sent plain text message to mailings lists and adhere to the
netiquette (inline quoting) [1]. That would be awesome.


Am Samstag, den 08.09.2012, 08:49 -0700 schrieb Shirish S:
> On Sat, Sep 8, 2012 at 3:35 AM, Dave Airlie  wrote:
> 
> > On Sat, Sep 8, 2012 at 3:30 AM, Shirish S  wrote:
> > > Hi Dave,
> > > Gentle Reminder!
> > > This patch is required for passing the very first test case of HDMI
> > > Compliance test suite.
> > > Regards,
> > > Shirish S
> >
> > Can you provide ajax with the sample he asked for previously?
>
> I have already sent him the sample he had asked for.

Could you sent it to the list again as we are all interested in it? If
you are allowed that is of course.


Thanks and hopefully your patch will go in soon,

Paul


[1] http://en.opensuse.org/openSUSE:Mailing_list_netiquette


signature.asc
Description: This is a digitally signed message part
___
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel


[Bug 42490] NUTMEG DP to VGA bridge not working

2012-09-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42490

--- Comment #41 from diego.abele...@gmail.com 2012-09-08 18:15:14 UTC ---
Oh yes there was and now even without the patch my machine displays something
on the DVI screen when both screens are plugged and the GPU doesn't hang
anymore even without NoAccel (but only from a cold boot, if I reboot/reset I
get a black screen and the GPU hangup). So part of the problem was really a
firmware issue.

With the patch I can't seem to provoke the GPU hangup anymore.

But my VGA screen continues to be stubbornly off when booting with both screens
plugged. Continues to work if I plug my VGA screen after booting.

So now I can start X safely without NoAccel that's one good thing.

BTW my motherboad is an Asus F1A75-M now my firmware is the latest version
(2004) upgraded from 1903.

Oh BTW I am booting in uEFI mode using grub-2.00 I don't know if this might
change something.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel


[Bug 54675] New: [RADEON:KMS:RV730XT:HDMI:AUDIO] Screaming audio IRQ with 3.5.3 kernel

2012-09-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54675

 Bug #: 54675
   Summary: [RADEON:KMS:RV730XT:HDMI:AUDIO] Screaming audio IRQ
with 3.5.3 kernel
Classification: Unclassified
   Product: DRI
   Version: unspecified
  Platform: x86 (IA32)
OS/Version: Linux (All)
Status: NEW
  Severity: normal
  Priority: medium
 Component: DRM/Radeon
AssignedTo: dri-devel@lists.freedesktop.org
ReportedBy: ranki...@googlemail.com


Created attachment 66851
  --> https://bugs.freedesktop.org/attachment.cgi?id=66851
dmesg output when radeon.audio=1

I have recently added a HD4670 AGP to one of my older machines, and I am
noticing problems with the HDMI audio device. Specifically:

irq 17: nobody cared (try booting with the "irqpoll" option)
Pid: 0, comm: swapper/0 Not tainted 3.5.3 #2
Call Trace:
 [] ? __report_bad_irq+0x11/0x94
 [] ? note_interrupt+0x120/0x19b
 [] ? handle_irq_event_percpu+0xe8/0xfb
 [] ? handle_irq_event+0x29/0x40
 [] ? handle_level_irq+0x93/0x93
 [] ? handle_fasteoi_irq+0x67/0x90
   [] ? do_IRQ+0x2e/0x83
 [] ? common_interrupt+0x29/0x30
 [] ? audit_update_watch+0x59/0x285
 [] ? default_idle+0x23/0x3b
 [] ? cpu_idle+0x4b/0x7e
 [] ? start_kernel+0x2a4/0x2a7
handlers:
[] azx_interrupt [snd_hda_intel]
Disabling IRQ #17

This is with radeon.audio=0. With radeon.audio=1, the KMS IRQ has similar
problem and is also disabled.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel


[Bug 54675] [RADEON:KMS:RV730XT:HDMI:AUDIO] Screaming audio IRQ with 3.5.3 kernel

2012-09-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54675

--- Comment #1 from Chris Rankin  2012-09-08 21:48:50 
UTC ---
Created attachment 66852
  --> https://bugs.freedesktop.org/attachment.cgi?id=66852
dmesg output when radeon.audio=0

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel


[Bug 54675] [RADEON:KMS:RV730XT:HDMI:AUDIO] Screaming audio IRQ with 3.5.3 kernel

2012-09-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54675

--- Comment #2 from Chris Rankin  2012-09-08 21:49:43 
UTC ---
Created attachment 66853
  --> https://bugs.freedesktop.org/attachment.cgi?id=66853
lspci output

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel


[Bug 54675] [RADEON:KMS:RV730XT:HDMI:AUDIO] Screaming audio IRQ with 3.5.3 kernel

2012-09-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54675

Alex Deucher  changed:

   What|Removed |Added

  Attachment #66851|text/x-log  |text/plain
  mime type||

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel


[Bug 54675] [RADEON:KMS:RV730XT:HDMI:AUDIO] Screaming audio IRQ with 3.5.3 kernel

2012-09-08 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54675

--- Comment #3 from Chris Rankin  2012-09-09 00:17:26 
UTC ---
According to alsamixer, my HD4670 only has a S/PDIF playback device. However,
my HD4890 has both S/PDIF and PCM playback devices. I don't know whether this
is significant.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel


Re: [PATCH V6] drm: edid: add support for E-DDC

2012-09-08 Thread Shirish S
On Sat, Sep 8, 2012 at 9:13 AM, Paul Menzel <
paulepan...@users.sourceforge.net> wrote:

> Dear Shirish,
>
>
> thank you for your answers and patience.
>
> Please just sent plain text message to mailings lists and adhere to the
> netiquette (inline quoting) [1]. That would be awesome.
>
> Have been replying inline, anyways,thanks for the correction.

>
> Am Samstag, den 08.09.2012, 08:49 -0700 schrieb Shirish S:
> > On Sat, Sep 8, 2012 at 3:35 AM, Dave Airlie  wrote:
> >
> > > On Sat, Sep 8, 2012 at 3:30 AM, Shirish S 
> wrote:
> > > > Hi Dave,
> > > > Gentle Reminder!
> > > > This patch is required for passing the very first test case of HDMI
> > > > Compliance test suite.
> > > > Regards,
> > > > Shirish S
> > >
> > > Can you provide ajax with the sample he asked for previously?
> >
> > I have already sent him the sample he had asked for.
>
> Could you sent it to the list again as we are all interested in it? If
> you are allowed that is of course.
>
> am not sure if i can mail it to list, but you can get it from
http://www.quantumdata.com/index.asp
by mailing their technical support.

>
> Thanks and hopefully your patch will go in soon,
>
> Paul
>
>
> [1] http://en.opensuse.org/openSUSE:Mailing_list_netiquette
>

Regards,
Shirish S
___
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel