Announcement

Collapse
No announcement yet.

[drm] error or not?

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

  • [drm] error or not?

    dmesg of drm show me that.

    [ 50.513052] [drm] Initialized drm 1.1.0 20060810
    [ 50.521804] [drm] Initialized radeon 1.29.0 20080528 on minor 0
    [ 51.463381] [drm] Setting GART location based on new memory map
    [ 51.463392] [drm] Can't use AGP base @0xd0000000, won't fit
    [ 51.463399] [drm] Loading R500 Microcode
    [ 51.463451] [drm] Num pipes: 1
    [ 51.463461] [drm] writeback test succeeded in 1 usecs
    it is an error or not?

  • #2
    That doesn't look like an error to me, just an informational message of some kind of fallback. Do you have any problems?

    Comment


    • #3
      Originally posted by darkshado View Post
      dmesg of drm show me that.
      it is an error or not?
      This isn't an error, we only use 32bits addressing in radeon so maximum address is 0xFFFFFFFF. Here 0xFFFFFFFF-0xD0000000 doesn't have enough space to fit the AGP gart space so we have to put a AGP at different address in GPU address space than in CPU address space. This is harmless but for years we have been worried about bad use of gpu and we always tried to put AGP gart space at same address in GPU address space than in CPU address space so any wrong setup would still hit the gart. IMHO we should move to same setup as fglrx ie starting GPU address space a 0x0 but that's another discussion.

      Comment


      • #4
        Ok, thanks for your answer! I am relief now! ;D

        Comment

        Working...
        X