Tag '2.12.901' created by Carl Worth <cwo...@cworth.org> at 2010-09-22 00:44 +0000
Intel 2.12.901 release Changes since 2.12.0: Carl Worth (2): NEWS: Add notes for the 2.12.901 snapshot Bump version to 2.12.901 Chris Wilson (54): Remove unused configure option: --enable-video-debug i810: Move into a legacy directory. Rename common infrastructure to the intel namespace. configure: Remove unused checks for xext configure: Remove check for unused function, mprotect Remove unused inclusion of <sys/mman.h> Repair the damage to 'make distcheck' after splitting out i810 dri: Handle errors during GetBuffers() gracefully. drmmode: Use a copy of the converted mode on resize drmmode: Add missing newlines at the end of log messages. Reduce front buffer stride prior to rejection video: apply the crtc box checks from dri. video: forgotten amendment to previous commit. Add support for I854. drmmode: Destroy Crtc on screen shutdown drmmode: Destroy the output on shutdown video: Copy DummyEncoding into each adapter. video: Apply overlay stride errata for i830 and i845 modes: There may be more than one crtc and output... DESTROY THEM ALL! Remove the duplicate drmmode prototypes. Teardown the bufmgr on shutdown as well. Workaround a broken container_of define in list.h video: Reuse the old buffers. video: Free the buffers immediately after turning off. uxa: Check for failed pixmap allocation video/i915: ValidateGC after setting clip. drmmode: Only treat a backlight as connected if it has a non-zero max Rename drmmode_display to intel_display intel_display: Miscellaneous tidy Remove the final references to the drmmode prefix display: Check for buffer overrun in output name lookup. display: Tidy backlight initialisation display: Handle cursor error paths. display: Embed the lvds size into the connector display: Cache whether we have probed for an EDID Revert "display: Cache whether we have probed for an EDID" display: Refactor EDID attachment to output. display: Minor cleanup for adding extra LVDS modes display: outputs are enabled automatically by KMS Move registration of vsync fd from pre-init to screen-init Open-code DRICreatePCIBusID() Remove accel_pitch_alignment display: Use the native intel backlight controller Leave adjustment of backlight to the driver. uxa: Fallback if faced with large A1 glyphs. Revert "Leave adjustment of backlight to the driver." Force use of GTT and fence registers for mapping tiled objects display: Set MONITOR_EDID_COMPLETE_RAWDATA for large EDIDs display: Query current level after finding max value. Enable a shadow buffer and disable GPU acceleration. display: Free the EDID blob after we copy it to the output, not before. shadow: Simply modify the Screen pixmap header uxa: Apply source clipping to blits Add alternate pci-id for B43 Daniel Vetter (2): video: kernel overlay needs triple buffering video: kill do { ... } while (ret != -EINTR) loops Dave Airlie (4): uxa: don't compare planemask with FB_ALLONES. uxa: oops typo in previous commit intel: respect tiling disable. intel: add output names for later additions to kernel Evan McClain (1): Add mbp_backlight support. Fernando Carrijo (1): Purge macro NEED_EVENTS Gaetan Nadon (11): config: upgrade to util-macros 1.8 for additional man page support config: update AC_PREREQ statement to 2.60 config: remove AC_PROG_CC as it overrides AC_PROG_C_C99 config: remove unrequired AC_HEADER_STDC config: remove unrequired AC_SUBST([DRI_CFLAGS]) config: complete AC_INIT m4 quoting config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS config: replace deprecated AC_HELP_STRING with AS_HELP_STRING config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES config: add comments for main statements simplify Makefile as per-target compilation flags are not needed Jesse Barnes (6): add cscope files to gitignore configure.ac: add xi and gl requirements Revert "configure.ac: add xi and gl requirements" KMS: add fake EDID on eDP too KMS: rename LVDS fields to reflect actual usage KMS: initialize backlight support for eDP panels too Keith Packard (1): Destroy screen pixmap on screen close. Kristian Høgsberg (4): Drop use of GL types in the driver legacy: Remove long gone use of GlxSetVisualConfigs() Submit batch buffers from flush callback chain Remove explicit batchbuffer submit in DRI2 copyregion Krzysztof Halasa (1): Allow interlaced modes. Matt Turner (2): Use ALIGN macro instead of open coding it. Replace ROUND_* macros with ALIGN. Zhenyu Wang (3): Add sandybridge D0 support Add more sandybridge graphics device ids Disable swap buffer wait on Sandybridge --- .gitignore | 3 NEWS | 47 configure.ac | 83 man/Makefile.am | 17 man/intel.man | 14 src/Makefile.am | 70 src/common.h | 237 -- src/drmmode_display.c | 1502 ------------ src/i810.h | 341 -- src/i810_accel.c | 617 ----- src/i810_common.h | 191 - src/i810_cursor.c | 266 -- src/i810_dga.c | 282 -- src/i810_dri.c | 1544 ------------- src/i810_dri.h | 131 - src/i810_driver.c | 2410 -------------------- src/i810_hwmc.c | 419 --- src/i810_io.c | 133 - src/i810_memory.c | 428 --- src/i810_reg.h | 3443 ----------------------------- src/i810_ring.h | 90 src/i810_video.c | 1423 ------------ src/i810_wmark.c | 313 -- src/i830.h | 659 ----- src/i830_3d.c | 2 src/i830_accel.c | 124 - src/i830_batchbuffer.c | 268 -- src/i830_batchbuffer.h | 215 - src/i830_dri.c | 1071 --------- src/i830_driver.c | 1461 ------------ src/i830_hwmc.c | 260 -- src/i830_hwmc.h | 75 src/i830_memory.c | 283 -- src/i830_reg.h | 67 src/i830_render.c | 60 src/i830_uxa.c | 1180 ---------- src/i830_video.c | 1743 --------------- src/i830_video.h | 87 src/i915_3d.c | 6 src/i915_render.c | 76 src/i915_video.c | 19 src/i965_reg.h | 241 ++ src/i965_render.c | 45 src/i965_video.c | 21 src/intel.h | 670 +++++ src/intel_batchbuffer.c | 280 ++ src/intel_batchbuffer.h | 213 + src/intel_display.c | 1612 +++++++++++++ src/intel_dri.c | 1088 +++++++++ src/intel_driver.c | 1293 +++++++++++ src/intel_driver.h | 278 ++ src/intel_hwmc.c | 260 ++ src/intel_hwmc.h | 75 src/intel_memory.c | 301 ++ src/intel_module.c | 482 ++++ src/intel_uxa.c | 1426 ++++++++++++ src/intel_video.c | 1782 +++++++++++++++ src/intel_video.h | 88 src/legacy/Makefile.am | 17 src/legacy/README | 6 src/legacy/i810/Makefile.am | 35 src/legacy/i810/i810.h | 335 ++ src/legacy/i810/i810_accel.c | 617 +++++ src/legacy/i810/i810_common.h | 321 ++ src/legacy/i810/i810_cursor.c | 266 ++ src/legacy/i810/i810_dga.c | 258 ++ src/legacy/i810/i810_dri.c | 1418 ++++++++++++ src/legacy/i810/i810_dri.h | 131 + src/legacy/i810/i810_driver.c | 2120 ++++++++++++++++++ src/legacy/i810/i810_hwmc.c | 419 +++ src/legacy/i810/i810_io.c | 133 + src/legacy/i810/i810_memory.c | 428 +++ src/legacy/i810/i810_reg.h | 3194 +++++++++++++++++++++++++++ src/legacy/i810/i810_ring.h | 90 src/legacy/i810/i810_video.c | 1423 ++++++++++++ src/legacy/i810/i810_wmark.c | 313 ++ src/legacy/i810/xvmc/I810XvMC.c | 4509 +++++++++++++++++++++++++++++++++++++++ src/legacy/i810/xvmc/I810XvMC.h | 366 +++ src/legacy/i810/xvmc/Makefile.am | 11 src/legacy/legacy.h | 3 src/xvmc/I810XvMC.c | 4509 --------------------------------------- src/xvmc/I810XvMC.h | 366 --- src/xvmc/Makefile.am | 13 src/xvmc/i915_xvmc.c | 4 src/xvmc/i915_xvmc.h | 2 src/xvmc/i965_xvmc.c | 5 src/xvmc/intel_xvmc.h | 2 src/xvmc/xvmc_vld.c | 5 uxa/uxa-accel.c | 4 uxa/uxa-glyphs.c | 37 uxa/uxa-priv.h | 1 uxa/uxa-render.c | 4 uxa/uxa.c | 14 93 files changed, 26856 insertions(+), 26338 deletions(-) --- -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1t5ctu-0001ym...@vasks.debian.org