[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

xserver-xorg-video-radeonhd: Changes to 'refs/tags/xserver-xorg-video-radeonhd-0.0.1+git20071006-1'



Tag 'xserver-xorg-video-radeonhd-0.0.1+git20071006-1' created by David Nusinow <dnusinow@debian.org> at 2007-10-06 22:34 +0000

Tagging upload of xserver-xorg-video-radeonhd-0.0.1+git20071006-1 to experimental.

Changes since xserver-xorg-video-radeonhd-0.0.1+git20070920-1:
Alan Coopersmith (1):
      Fix typedefs to work on Solaris

David Nusinow (2):
      Merge commit 'upstream/master' into debian-experimental
      * New upstream release

Egbert Eich (49):
      Added symbolic register and bit names for R5xx I2C regs.
      R5xx only have 3 HW DDC I2C lines.
      Added BIOS dumping to conntest.
      R5xx only have 3 HW I2C lines for DDC.
      Replaced bit values by symbolic names.
      Fixed a non-fatal typo in an enum name.
      Added debugging support for for HW I2C read.
      Fixed typo in debug message print function.
      Added missing braces.
      Fully eliminated all uses of regOR: use RHDRegMask() instead.
      More missing braces.
      Added I2C prescale calculation for R5xx.
      Updating README.
      Adding AtomBIOS support to conntest.
      Fixed order of magnitude of SCL, added correct prescale calculation for R6xx.
      Fixed I2C probing on R5xx.
      Put scaler value in hex.
      Fixed wording in README.
      Increase loop counter on I2C status poll loops.
      Replacing hex loop counter by decimal.
      Prepare code for connector table parsing.
      Cleanup in rhd_atombios.c: removed superfluous function arguments.
      Make local functions static.
      Add framework for connector table parser.
      Add function to print connector table.
      Add connector table parsing for the SupportedDevices Table (R5xx).
      Fixed sig11 in verbose mode.
      Fixed AtomBIOS HPD parsing for SupportedDevices table.
      If connector information from AtomBIOS cannot be obtained try to fall back to list.
      Add Object_Header parsing for connector tables for R6xx.
      Add some sanity checks on offset values and indices obtained AtomBIOS.
      Make debug message printing more consistent.
      Add support for ATOM_CONNECTOR_DEVICE_TAGs to connector table parser.
      Add device tags to connectors generated from the SupportedDevices table.
      Fix DeviceID to index mapping.
      Adding missing header file.
      Attempt to fix possible cause of a crash. Also adding more debug output.
      Removing warning about unknown card.
      Fix singed/unsinged mismatch.
      Panel information is currently not available. Therefore bail - do not crash.
      Replacing ObejectID.h with one that contains the correct license.
      Fixing error message...
      Fix a bug that prevents the identification of bogus table headers.
      Fix cursor vt switch handling including segfault.
      Increase loop counter in R5xxI2CStatus().
      Add initial support to query LVDS_Info tables.
      Get LVDS panel timing from AtomBIOS.
      Don't validate the duty cycle on fixed device provided modes.
      If DDC fails try to get EDID or mode data from AtomBIOS.

Evgeni Golov (1):
      Fix up RHDCardIdentify bail-out message.

Luc Verhaegen (20):
      ID: Asus Z96j
      ID: Lenovo Thinkpad T60 (2008)
      LVTMA: alter M56 check to only stop anything >= RS690
      ID: Toshiba Satellite A100-237
      ID: Dell Inspiron 6400
      Remove panel resolution entries from the id table.
      Adjust active output selection to better cope with missing panel EDID.
      ID: HP/Compaq nc8430
      ID: Dell Inspiron 9400
      ID: Fix Asus z96j to read Asus W3J/Z96
      ID: MSI RX1650 Pro
      ID: Powercolor X1800XT
      ID: Fix DDC bus for Lenovo Thinkpad T60p.
      ID: ATI Radeon HD 2600 XT
      ID: Sapphire X1650 Pro AGP
      ID: Added docking station for Lenovo Thinkpad T60 (2007)
      Fix broken fp calculation in checking for reduced blanking.
      Fix PLL on rv6x0 and X1300.
      ID: Reverse connectors on ATI Radeon HD 2600XT DDR4
      conntest: fix logical error in LVDS

Marcin Garski (1):
      Add missing space after 'Bandwidth:' in log output.

Matt Kraai (3):
      Fix gitignore properly for the conntest Makefile.
      Fix tests for MonRec members by including the right CFLAGS.
      Call RHDMonitorInit() even if there is no DDC for the Connector.

Matthias Hopf (17):
      Use new RHDPTRI macro for accessing RHDRec by scrnIndex. Less typing.
      Implement full cursor save/restore including image.
      Typo & type fixes.
      Fix typo in cursor state save.
      Enable cursor save&restore on VT switch.
      Upload cursor image again on EnterVT.
      Fixed ambiguous else.
      Mainly reverted commit 0a546480a5c2e0c66f746a91cb0b5f592c06b357.
      Move Cursor Save & Restore to right places. Nuke HideCursor on LeaveVT.
      Only save cursor image if address is in mapped memory range.
      Cleanup: cursor.h no longer necessary.
      Fix compilation (oops). Also saving cursor does not depend on CursorInfo.
      Correct cursor image saving.
      On reloading cursor, do not only upload image, but also set cursor address.
      Cursor cleanup: Move functions to right place. Adjust comments.
      Cursor cleanup: Nuke export of bit-banging interface.
      Cursor cleanup: Moving all locks to interface functions.

Matthieu Herrb (1):
      Fix Atombios build on OpenBSD.

Stefan Dirsch (9):
      Chipset name review.
      Added missing chipsets according to fglrx driver.
      Build support for imake based X.Org releases.
      Added missing chipsets to rhd_conntest.
      Forgot two Device IDs in rhd_conntest.
      Adjusted RHDIdentify() to chipset name review and new Device IDs.
      Removed RS600 IDs, since these are still R400 based and therefore
      Fixed INCLUDES when using X.Org SDK.
      Added some new R600/RV610/RV630 IDs.

---
 .gitignore                              |    3 
 Imakefile                               |    8 
 configure.ac                            |    5 
 debian/changelog                        |    7 
 src/AtomBios/includes/CD_Common_Types.h |    6 
 src/AtomBios/includes/ObjectID.h        |  448 ++++++++++++
 src/Imakefile                           |   93 ++
 src/rhd.h                               |   81 +-
 src/rhd_atombios.c                      | 1106 +++++++++++++++++++++++++++++---
 src/rhd_atombios.h                      |   10 
 src/rhd_card.h                          |   55 +
 src/rhd_connector.c                     |   81 +-
 src/rhd_connector.h                     |   44 -
 src/rhd_crtc.c                          |    3 
 src/rhd_cursor.c                        |  347 +++++-----
 src/rhd_cursor.h                        |   25 
 src/rhd_driver.c                        |   80 +-
 src/rhd_helper.c                        |   33 
 src/rhd_i2c.c                           |  406 +++++++----
 src/rhd_id.c                            |  352 ++++++----
 src/rhd_lvtma.c                         |   13 
 src/rhd_modes.c                         |   18 
 src/rhd_monitor.c                       |  126 +--
 src/rhd_monitor.h                       |    7 
 src/rhd_output.h                        |   16 
 src/rhd_pll.c                           |  268 +++++--
 src/rhd_pll.h                           |   10 
 src/rhd_regs.h                          |   82 +-
 src/rhd_tmds.c                          |    8 
 utils/conntest/.gitignore               |    2 
 utils/conntest/Makefile                 |    2 
 utils/conntest/README                   |   14 
 utils/conntest/rhd_conntest.c           |  965 ++++++++++++++++++++-------
 33 files changed, 3633 insertions(+), 1091 deletions(-)
---



Reply to: