1. 10 10月, 2011 8 次提交
  2. 05 10月, 2011 28 次提交
  3. 20 9月, 2011 4 次提交
    • D
      Merge branch 'drm-intel-next' of git://people.freedesktop.org/~keithp/linux into drm-next · 88ef4e3f
      Dave Airlie 提交于
      * 'drm-intel-next' of git://people.freedesktop.org/~keithp/linux:
        Drivers: i915: Fix all space related issues.
      88ef4e3f
    • D
      Merge branch 'drm-nouveau-next' of git://git.freedesktop.org/git/nouveau/linux-2.6 into drm-next · b2d108ba
      Dave Airlie 提交于
      * 'drm-nouveau-next' of git://git.freedesktop.org/git/nouveau/linux-2.6: (353 commits)
        drm/nouveau: remove allocations from gart populate() hook
        drm/nvc0/fb: slightly improve PMFB intr handling, move out of nvc0_graph.c
        drm/nvc0/fifo: avoid touching missing subfifos
        drm/nvd9/disp: bail out of mode_set_base if no fb bound to crtc
        drm/nvd9/disp: stub some more api hooks so we don't oops on resume
        drm/nouveau: fix printk typo in ioremap failure path
        drm/nvc0/pm: minor clock readback fixes
        drm/nv40/pm: execute memory reset script from vbios
        drm/nv50/gr: refactor initialisation
        drm/nouveau: if requested, try harder at disabling sysmem pushbufs
        drm/nv50/gr: enable ctxprog xfer only when we need it to save power
        drm/nouveau/dp: add support for displayport table 0x30
        drm/nouveau/dp: return master dp table pointer too when looking up encoder
        drm/nouveau/bios: simplify U/d table hash matching func to just match
        drm/nouveau/dp: preserve non-pattern bits in DP_TRAINING_PATTERN_SET
        drm/nvc0/gr: remove MODULE_FIRMWARE() lines
        drm/nouveau/dp: use alternate lane mask for nvaf
        drm/nouveau/dp: link rate scripts are selected with a comparison table
        drm/nv40/pm: write nv40-specific reclocking routines
        drm/nv40/pm: parse geometric delta clock from vbios
        ...
      b2d108ba
    • B
      drm/nouveau: remove allocations from gart populate() hook · a0d9a8fe
      Ben Skeggs 提交于
      Since some somewhat questionable changes a while back, TTM provides a
      completely empty array of struct dma_address that stays around for the
      entire lifetime of the TTM object.
      
      Lets use this array, *always*, rather than wasting yet more memory on
      another array who's purpose is identical, as well as yet another bool array
      of the same size saying *which* of the previous two arrays to use...
      
      This change will also solve the high order allocation failures seen by
      some people while using nouveau.
      Signed-off-by: NBen Skeggs <bskeggs@redhat.com>
      a0d9a8fe
    • B
      drm/nvc0/fb: slightly improve PMFB intr handling, move out of nvc0_graph.c · a1484512
      Ben Skeggs 提交于
      I'm still not certain how to determine the number of SUBPs are present on
      a given board.
      Signed-off-by: NBen Skeggs <bskeggs@redhat.com>
      a1484512