1. 25 1月, 2010 10 次提交
  2. 24 1月, 2010 5 次提交
  3. 21 1月, 2010 14 次提交
  4. 18 1月, 2010 6 次提交
  5. 15 1月, 2010 5 次提交
    • D
      Merge remote branch 'korg/drm-radeon-testing' into drm-linus · 8471a26b
      Dave Airlie 提交于
      * korg/drm-radeon-testing:
        drm/radeon/kms: Use radeon_agp_disable when disabling AGP
        drm/radeon/kms: Disable AGP is aperture size < 32M
        drm/radeon/kms: Fix r600 blit cleanup path
        drm/radeon/kms: Do not unpin buffer in fb destruction
        drm/radeon/kms: fix displayport->dvi connector DDC.
      8471a26b
    • J
      drm: EDID accept separate sync video mode · 79b7dcb2
      Jerome Glisse 提交于
      X is accepting such video mode, do the same. Pointed out by Joshua Roys
      on IRC. Fix https://bugzilla.redhat.com/show_bug.cgi?id=540024
      
      [fix printf to use composite not integrated :- airlied]
      Signed-off-by: NJerome Glisse <jglisse@redhat.com>
      Signed-off-by: NDave Airlie <airlied@redhat.com>
      79b7dcb2
    • D
      Merge remote branch 'nouveau/for-airlied' of ../drm-nouveau-next into drm-linus · 1c974dc2
      Dave Airlie 提交于
      * 'nouveau/for-airlied' of ../drm-nouveau-next: (44 commits)
        drm/nouveau: check pushbuffer bounds in ioctl
        drm/nouveau: reserve VGA area for the moment
        drm/nouveau: Unset the EDID connector property when the EDID block goes away.
        drm/nouveau: Fallback to analog load detection when the EDID block is invalid.
        drm/nouveau: fix edid memleak in nouveau_connector
        drm/nouveau: Break some long lines.
        drm/nouveau: add NV18 device id to call_lvds_manufacturer_script
        drm/nv50: Fix typo in PGRAPH initialisation.
        drm/nouveau: less magic DCB 1.5 parsing
        drm/nouveau: assume no nv04 board has a DCB table
        drm/nouveau: remove PRIV0 check in nouveau_mem_close()
        drm/nouveau: wait on fence after bo move if validating for another channel
        drm/nouveau: trust init table registers are safe
        drm/nv50: wait for pgraph to idle before unloading the context
      1c974dc2
    • L
      drm/nouveau: check pushbuffer bounds in ioctl · 12f735b7
      Luca Barbieri 提交于
      Currently there is no check that the pushbuffer request bounds are inside
      the TTM BO.
      
      This allows to instruct the kernel to do relocations on user-selected
      addresses, since the relocation bounds checking relies on the request
      bounds.
      
      This can oops the kernel accidentally and is easily exploitable.
      
      This patch adds bound checking and alignment checking for ->offset and
      ->nr_dwords.
      
      It also makes some variables unsigned, which should have no effect,
      but prevents possible bounds checking problems.
      Signed-off-by: NLuca Barbieri <luca@luca-barbieri.com>
      Signed-off-by: NBen Skeggs <bskeggs@redhat.com>
      12f735b7
    • B
      drm/nouveau: reserve VGA area for the moment · ac8fb975
      Ben Skeggs 提交于
      This is to prevent things such as GART tables and other important GPU
      structures being allocated there before we take over fbcon ourselves.
      
      This is more of a workaround for the moment, a better solution will
      require some more invasive changes, but it'll be done at some point.
      Signed-off-by: NBen Skeggs <bskeggs@redhat.com>
      ac8fb975