Announcement

Collapse
No announcement yet.

Unreleased ATI Catalyst Driver Appears In Ubuntu

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • dgrafenhofer
    replied
    Is there any chance that the 9.3 or 9.4 versions of catalyst will work again for Mobility Radeon HD 3650 users?

    See bugreports on launchpad:
    I am currently using Jaunty with the latest 2.6.28-4-generic #8-Ubuntu x86-64 kernel, and any time I try to use fglrx 8.552 or 8.561 (apt-pinned to Intrepid X server and libdrm2), I get the system hanging at a black screen when I try to start X, followed by a kernel panic after I try pressing a few keys. See attached logfile for a serial-console stacktrace. Interestingly enough, fglrx reports itself as version 8.56.4, which seems a bit mismatched from the package version number 8.561. In a...

    [ 69.478362] [fglrx:fireglAsyncioIntEnableMsgHandler] *ERROR* interrupt source ff000066 is not supported on this hardware (return code = 1) [ 69.810350] [fglrx] CMM init INV FB MC:0xd0000000, length:0x30000000 [ 69.810359] [fglrx] Reserved FB block: Shared offset:0, size:1000000 [ 69.810360] [fglrx] Reserved FB block: Unshared offset:ff77000, size:88000 Don't known if this is fatal or not, never seem this before. [lspci] 00:00.0 Host bridge [0600]: Intel Corporation Mobile PM965/G...


    Dominik

    Leave a comment:


  • rotarychainsaw
    replied
    Release something! I'm bored!

    Leave a comment:


  • bridgman
    replied
    Originally posted by matt8 View Post
    I was wondering if the RS880 IGP chipset will support 7.1 channel LPCM over HDMI, and if so, with support for Linux. I think that was a major shortcoming from a multimedia perspective with the 790GX chipset which I currently own.
    Sorry, but I can't really talk about unreleased products. We're trying to get at least basic out-of-box support (modesetting + shadowfb) into the spring distro releases but anything more detailed will have to wait until the chip actually gets released.

    Originally posted by matt8 View Post
    Also, will TV tuning on the "All in wonder" cards be ever supported under Linux, or is that completely off the cards?
    I don't think we have any plans to add that capability to the Catalyst drivers. The tuners themselves are all third party components so we wouldn't be providing programming information for those anyways. That said, the tuner vendors are usually pretty good about providing datasheets and programming info since they usually don't need to expose anything particularly secret to let you use the part.

    I'm not sure about the status of capture chip support in the open drivers (the capture chip is what gets tuner output into the PC so it can be stored in a file or displayed on the screen) but will ask. If there is no support today we can look into releasing some in the future, but all the usual caveats apply (ie if we can't separate the info for normal operation from the info used for DRM-type stuff then we won't be able to release the info needed for normal operation).

    Leave a comment:


  • matt8
    replied
    Mr Bridgman:

    Originally posted by bridgman View Post
    Fear not; there will still be a March driver....
    Hi.

    I was wondering if the RS880 IGP chipset will support 7.1 channel LPCM over HDMI, and if so, with support for Linux. I think that was a major shortcoming from a multimedia perspective with the 790GX chipset which I currently own. Also, will TV tuning on the "All in wonder" cards be ever supported under Linux, or is that completely off the cards?

    Thanks.

    Leave a comment:


  • bridgman
    replied
    Fear not; there will still be a March driver. Normally we try to ship Windows and Linux Catalyst drivers off the same release, but for March we're going to use a slightly later internal release for Linux in order to pick up some Linux-specific changes.

    We'll probably do the same for April, ie use a slightly later internal release for Linux drivers than for Windows to let us get the last few March changes into the April driver as well. In internal-release-speak, the March Linux driver will probably be 8.593 for Linux vs 8.592 for Windows.

    The Ubuntu driver doesn't quite match any of our regular releases -- it has server 1.6 support but doesn't have all of the other changes currently in the pipe for March and April.
    Last edited by bridgman; 22 March 2009, 02:54 PM.

    Leave a comment:


  • nanonyme
    replied
    Originally posted by bridgman View Post
    It's not quite that bad; open drivers have a tough time using code from closed drivers partly because the code would need to go through IP review (and we already have a lot of that in the pipe) and partly because the closed drivers are much larger so code is usually split across a half dozen different components.

    Closed drivers can use code from the open drivers more easily although again the source code architecture is usually very different so you can't just plug the code in.
    Hey, don't get my hopes up too much, I might start expecting improvements.
    A matter of idle pondering since no one who knows probably is allowed to say anything at this point: I sincerely hope AMD will still make a March driver release even though Ubuntu got this unreleased version of the driver. Seems Windows already got their own 9.3.

    Leave a comment:


  • bridgman
    replied
    It's not quite that bad; open drivers have a tough time using code from closed drivers partly because the code would need to go through IP review (and we already have a lot of that in the pipe) and partly because the closed drivers are much larger so code is usually split across a half dozen different components.

    Closed drivers can use code from the open drivers more easily although again the source code architecture is usually very different so you can't just plug the code in.

    That said, the main reason for not using code from the open driver is that it stalls the whole stack while waiting for sync-up and as a result there are a range of higher res videos which you can play on fglrx but not the open drivers unless you turn off the syncing. I can't say "these 3 videos" because it totally depends on the system hardware, but there have been a bunch of reports like this.

    The real solution is getting the stack fixed; page flip in Compiz/KDE/whatever, then flow control back up the stack so that rendering can go full speed without anything having to spin waiting for sync, with logic in the video part to double-up or skip frames as needed. For the case of a single video stream whose native frame/field rate was close to the display frequency (say 30/60 Hz video with a 60 Hz display), fine-tuning the refresh rate would also help. The current code might be a good short term fix though as long as it can be turned on and off easily.
    Last edited by bridgman; 22 March 2009, 12:25 PM.

    Leave a comment:


  • nanonyme
    replied
    Originally posted by Kano View Post
    @bridgman

    Is it possible to use a similar code like in the current oss drivers for xv? Because I still see tearing even with those updated fglrx drivers (and that even without compiz). I know how this looks - vdpau has got similar issues when composite is active. Maybe the fglrx dev do not look sharp enough when they test it or the test movie is in slowmotion
    Afaik it's like this: open drivers can't use source code from closed drivers due to NDA's and closed drivers can't use source code from open drivers due to licenses. Gotta love 'em lawyers, huh?

    Leave a comment:


  • Kano
    replied
    @bridgman

    Is it possible to use a similar code like in the current oss drivers for xv? Because I still see tearing even with those updated fglrx drivers (and that even without compiz). I know how this looks - vdpau has got similar issues when composite is active. Maybe the fglrx dev do not look sharp enough when they test it or the test movie is in slowmotion

    Leave a comment:


  • tarzan
    replied
    By the way, the new driver shipped with Ubuntu is still broken for Lenovo T400 users (blank screen when logging in, machine seems to work fine). I think the last working version was 8.11? The machine features a Radeon HD 3470 gpu.

    Leave a comment:

Working...
X