Skip to content

Tags

Tags give the ability to mark specific points in history as being important
  • sound-fix-3.15-rc1
    sound fixes for 3.15-rc1
    
    Here is a bunch of small fixes that have been collected since the
    previous pull request.  In addition to various misc fixes, the
    following are included:
    
    - HD-audio quirks for Dell, HP, Chromebook, and ALC28x codecs
    - HD-audio AMD HDMI regression fix
    - Continued PM support/fixes for ice1712 driver
    - Multiplatform fixes for ASoC samsung drivers
    - Addition of device id tables to a few ASoC drivers
    - Bit clock polarity config and error flag fixes in ASoC fsl_sai
    
  • v3.2.57
    a2601fcc · Linux 3.2.57 ·
    This is the 3.2.57 stable release
    
  • v3.12.17
    2acf1c25 · Linux 3.12.17 ·
    This is the 3.12.17 stable release
    
  • drm-intel-next-2014-04-04
    - cmd parser for gen7 but only in enforcing and not yet granting mode - the
      batch copying stuff is still missing. Also performance is a bit ... rough
      (Brad Volkin + OACONTROL fix from Ken).
    - deprecate UMS harder (i.e. CONFIG_BROKEN)
    - interrupt rework from Paulo Zanoni
    - runtime PM support for bdw and snb, again from Paulo
    - a pile of refactorings from various people all over the place to prep for new
      stuff (irq reworks, power domain polish, ...)
  • drm-intel-fixes-2014-04-04
  • v3.13.9
    bf061ff7 · Linux 3.13.9 ·
    This is the 3.13.9 stable release
    
  • v3.10.36
    8f0c10ea · Linux 3.10.36 ·
    This is the 3.10.36 stable release
    
  • v3.4.86
    7ae24063 · Linux 3.4.86 ·
    This is the 3.4.86 stable release
    
  • gpio-v3.15-1
    This is the bulk of GPIO changes for v3.15:
    
    - Merged in a branch of irqchip changes from Thomas
      Gleixner: we need to have new callbacks from the
      irqchip to determine if the GPIO line will be eligible
      for IRQs, and this callback must be able to say "no".
      After some thinking I got the branch from tglx and
      have switched all current users over to use this.
    
    - Based on tglx patches, we have added some generic
      irqchip helpers in the gpiolib core. These will
      help centralize code when GPIO drivers have simple
      chained/cascaded IRQs. Drivers will still define
      their irqchip vtables, but the gpiolib core will
      take care of irqdomain set-up, mapping from local
      offsets to Linux irqs, and reserve resources by
      marking the GPIO lines for IRQs.
    
    - Initially the PL061 and Nomadik GPIO/pin control
      drivers have been switched over to use the new
      gpiochip-to-irqchip infrastructure with more
      drivers expected for the next kernel cycle. The
      factoring of just two drivers still makes it worth
      it so it is already a win.
    
    - A new driver for the Synopsys DesignWare APB GPIO
      block.
    
    - Modify the DaVinci GPIO driver to be reusable also
      for the new TI Keystone architecture.
    
    - A new driver for the LSI ZEVIO SoCs.
    
    - Delete the obsolte tnetv107x driver.
    
    - Some incremental work on GPIO descriptors: have
      gpiod_direction_output() use a logical level,
      respecting assertion polarity through ACTIVE_LOW
      flags, adding gpiod_direction_output_raw() for the
      case where you want to set that very value. Add
      gpiochip_get_desc() to fetch a GPIO descriptor from
      a specific offset on a certain chip inside driver
      code.
    
    - Switch ACPI GPIO code over to using
      gpiochip_get_desc() and get rid of gpio_to_desc().
    
    - The ACPI GPIO event handling code has been reworked
      after encountering an actual real life implementation.
    
    - Support for ACPI GPIO operation regions.
    
    - Generic GPIO chips can now be assigned labels/names
      from platform data.
    
    - We now clamp values returned from GPIO drivers to
      the boolean [0,1] range.
    
    - Some improved documentation on how to use the polarity
      flag was added.
    
    - The a large slew of incremental driver updates and
      non-critical fixes. Some targeted for stable.
    
  • v3.12.16
    acbf4c08 · Linux 3.12.16 ·
    This is the 3.12.16 stable release
    
  • v3.2.56
    e08e9457 · Linux 3.2.56 ·
    This is the 3.2.56 stable release
    
  • sound-3.15-rc1
    sound updates for 3.15-rc1
    
    There have been lots of changes in ALSA core, HD-audio and ASoC, also
    most of PCI drivers touched by conversions of printks.  All these
    resulted in a high volume and wide ranged patch sets in this release.
    Many changes are fairly trivial, but also lots of nice cleanups and
    refactors.  There are a few new drivers, most notably, the Intel
    Haswell and Baytrail ASoC driver.
    
    Core changes:
    - A bit modernization; embed the device struct into snd_card struct,
      so that it may be referred from the beginning.  A new snd_card_new()
      function is introduced for that, and all drivers have been
      converted.
    
    - Simplification in the device management code in ALSA core;
      now managed by a simple priority list instead
    
    - Converted many kernel messages to use the standard dev_err() & co;
      this would be the pretty visible difference, especially for
      HD-audio.
    
    HD-audio:
    - Conexant codecs use the auto-parser as default now;
      the old static code still remains in case of regressions.
      Some old quirks have been rewritten with the fixups for auto-parser.
    
    - C-Media codecs also use the auto-parser as default now, too.
    
    - A device struct is assigned to each HD-audio codec, and the formerly
      hwdep attributes are accessible over the codec sysfs, too.
      hwdep attributes still remain for compatibility.
    
    - Split the PCI-specific stuff for HD-audio controller into a separate
      module, ane make a helper module for the generic controller driver.
      This is a preliminary change for supporting Tegra HDMI controller in
      near future, which slipped from 3.15 merge.
    
    - Device-specific fixes: mute LED support for Lenovo Ideapad,
      mic LED fix for HP laptops, more ASUS subwoofer quirks, yet more
      Dell laptop headset quirks
    
    - Make the HD-audio codec response a bit more robust
    
    - A few improvements on Realtek ALC282 / 283 about the pop noises
    
    - A couple of Intel HDMI fixes
    
    ASoC:
    - Lots of cleanups for enumerations; refactored lots of error prone
      original codes to use more modern APIs
    
    - Elimination of the ASoC level wrappers for I2C and SPI moving us
      closer to converting to regmap completely and avoiding some
      randconfig hassle
    
    - Provide both manually and transparently locked DAPM APIs rather than
      a mix of the two fixing some concurrency issues
    
    - Start converting CODEC drivers to use separate bus interface drivers
      rather than having them all in one file helping avoid dependency
      issues
    
    - DPCM support for Intel Haswell and Bay Trail platforms, lots of
      fixes
    
    - Lots of work on improvements for simple-card, DaVinci and the Renesas
      rcar drivers.
    
    - New drivers for Analog Devices ADAU1977, TI PCM512x and parts of the
      CSR SiRF SoC, TLV320AIC31XXX, Armada 370 DB, Cirrus cs42xx8
    
    - Fixes for the simple-card DAI format DT mess
    
    - DT support for a couple more devices.
    
    - Use of the tdm_slot mapping in a few drivers
    
    Others:
    - Support of reset_resume callback for improved S4 in USB-audio driver;
      the device with boot quirks have been little tested, which we need
      to watch out in this development cycle
    
    - Add PM support for ICE1712 driver (finally!);
      it's still pretty partial support, only for M-Audio devices
    
  • v3.13.8
    53666358 · Linux 3.13.8 ·
    This is the 3.13.8 stable release
    
  • v3.10.35
    a2e124da · Linux 3.10.35 ·
    This is the 3.10.35 stable release
    
  • regulator-v3.15
    regulator: Updates for v3.15
    
    This release has lots and lots of small cleanups and fixes in the
    regulator subsystem, mainly cleaning up some bad patterns that got
    duplicated in DT code, but otherwise very little of note outside
    of the scope of the relevant drivers:
    
     - Support for configuration of the initial state for gpio regulators
       with multi-voltage support.
     - Support for calling regulator_set_voltage() on fixed regulators.
     - New drivers for Broadcom BCM590xx, Freescale pfuze200, Samsung S2MPA01 &
       S2MPS11/4, some PWM controlled regulators found on some ST boards and
       TI TPS65218.
    
  • v3.4.85
    72cb2a7f · Linux 3.4.85 ·
    This is the 3.4.85 stable release
    
  • v3.14
    455c6fdb · Linux 3.14 ·
    Linux 3.14
    
  • v3.12.15
    46a55da1 · Linux 3.12.15 ·
    This is the 3.12.15 stable release
    
  • v3.14-rc8
    b098d672 · Linux 3.14-rc8 ·
    Linux 3.14-rc8
    
  • v3.13.7
    896c6947 · Linux 3.13.7 ·
    This is the 3.13.7 stable release