All of lore.kernel.org
 help / color / mirror / Atom feed
From: Clemens Ladisch <clemens@ladisch.de>
To: Takashi Iwai <tiwai@suse.de>
Cc: alsa-devel@alsa-project.org, Roman Volkov <v1ron@mail.ru>
Subject: [GIT PULL] real support for Xonar DG(X), for 3.15
Date: Wed, 29 Jan 2014 22:06:46 +0100	[thread overview]
Message-ID: <52E96D66.1080607@ladisch.de> (raw)
In-Reply-To: <1390565900-3337-1-git-send-email-v1ron@mail.ru>

The following changes since commit d8ec26d7f8287f5788a494f56e8814210f0e64be:

  Linux 3.13 (2014-01-19 18:40:07 -0800)

are available in the git repository at:

  git://git.alsa-project.org/alsa-kprivate.git xonar-dg

for you to fetch changes up to 3f49a66f6ceff1c87b49858644771c17763902ab:

  ALSA: oxygen: Xonar DG(X): cleanup and minor changes (2014-01-29 20:45:53 +0100)

----------------------------------------------------------------

This completes the hardware support for the Asus Xonar DG/DGX cards,
and makes them actually usable.

This is v4 of Roman's patch set with some small formatting changes.

----------------------------------------------------------------
Roman Volkov (19):
      ALSA: oxygen: add the separate SPI waiting function
      ALSA: oxygen: modify the SPI writing function
      ALSA: oxygen: add mute mask for the OXYGEN_PLAY_ROUTING register
      ALSA: oxygen: export oxygen_update_dac_routing symbol
      ALSA: oxygen: change description of the xonar_dg.c file
      ALSA: oxygen: additional definitions for the Xonar DG/DGX card
      ALSA: oxygen: Xonar DG(X): add new CS4245 SPI functions
      ALSA: oxygen: Xonar DG(X): modify initialization functions
      ALSA: oxygen: Xonar DG(X): modify DAC/ADC parameters function
      ALSA: oxygen: modify adjust_dg_dac_routing function
      ALSA: oxygen: modify CS4245 register dumping function
      ALSA: oxygen: Xonar DG(X): move the mixer code into another file
      ALSA: oxygen: Xonar DG(X): capture from I2S channel 1, not 2
      ALSA: oxygen: Xonar DG(X): modify playback output select
      ALSA: oxygen: Xonar DG(X): use headphone volume control
      ALSA: oxygen: Xonar DG(X): modify capture volume functions
      ALSA: oxygen: Xonar DG(X): modify input select functions
      ALSA: oxygen: Xonar DG(X): modify high-pass filter control
      ALSA: oxygen: Xonar DG(X): cleanup and minor changes

 sound/pci/oxygen/Makefile         |   2 +-
 sound/pci/oxygen/cs4245.h         |   7 +-
 sound/pci/oxygen/oxygen.h         |   2 +-
 sound/pci/oxygen/oxygen_io.c      |  25 +-
 sound/pci/oxygen/oxygen_mixer.c   |   1 +
 sound/pci/oxygen/oxygen_regs.h    |   1 +
 sound/pci/oxygen/xonar_dg.c       | 651 ++++++++----------------------
 sound/pci/oxygen/xonar_dg.h       |  48 +++
 sound/pci/oxygen/xonar_dg_mixer.c | 477 ++++++++++++++++++++++
 9 files changed, 713 insertions(+), 501 deletions(-)
 create mode 100644 sound/pci/oxygen/xonar_dg_mixer.c

  parent reply	other threads:[~2014-01-29 21:07 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-01-24 12:18 [PATCH v4 01/19] ALSA: Oxygen: Add the separate SPI waiting function Roman Volkov
2014-01-24 12:18 ` [PATCH v4 02/19] ALSA: Oxygen: Modify the SPI writing function Roman Volkov
2014-01-24 12:18 ` [PATCH v4 03/19] ALSA: Oxygen: Add mute mask for the OXYGEN_PLAY_ROUTING register Roman Volkov
2014-01-24 12:18 ` [PATCH v4 04/19] ALSA: Oxygen: Export oxygen_update_dac_routing symbol Roman Volkov
2014-01-24 12:18 ` [PATCH v4 05/19] ALSA: Oxygen: Change description of the xonar_dg.c file Roman Volkov
2014-01-24 12:18 ` [PATCH v4 06/19] ALSA: Oxygen: Additional definitions for the Xonar DG/DGX card Roman Volkov
2014-01-24 12:18 ` [PATCH v4 07/19] ALSA: Oxygen: Add new CS4245 SPI functions Roman Volkov
2014-01-24 13:43   ` Mark Brown
2014-01-24 14:46     ` Clemens Ladisch
2014-01-24 12:18 ` [PATCH v4 08/19] ALSA: Oxygen: Modify initialization functions Roman Volkov
2014-01-24 12:18 ` [PATCH v4 09/19] ALSA: Oxygen: Modify DAC/ADC parameters function Roman Volkov
2014-01-24 12:18 ` [PATCH v4 10/19] ALSA: Oxygen: Modify adjust_dg_dac_routing function Roman Volkov
2014-01-24 12:18 ` [PATCH v4 11/19] ALSA: Oxygen: Modify CS4245 register dumping function Roman Volkov
2014-01-24 12:18 ` [PATCH v4 12/19] ALSA: Oxygen: Move the mixer code into another file Roman Volkov
2014-01-24 12:18 ` [PATCH v4 13/19] ALSA: Oxygen: Capture from I2S channel 1, not 2 Roman Volkov
2014-01-24 12:18 ` [PATCH v4 14/19] ALSA: Oxygen: Modify playback output select Roman Volkov
2014-01-24 12:18 ` [PATCH v4 15/19] ALSA: Oxygen: Use headphone volume control Roman Volkov
2014-01-24 12:18 ` [PATCH v4 16/19] ALSA: Oxygen: Modify capture volume functions Roman Volkov
2014-01-24 12:18 ` [PATCH v4 17/19] ALSA: Oxygen: Modify input select functions Roman Volkov
2014-01-24 12:18 ` [PATCH v4 18/19] ALSA: Oxygen: Modify High-pass filter control Roman Volkov
2014-01-24 12:18 ` [PATCH v4 19/19] ALSA: Oxygen: Cleanup and minor changes Roman Volkov
2014-01-29 21:06 ` Clemens Ladisch [this message]
2014-01-30 11:43   ` [GIT PULL] real support for Xonar DG(X), for 3.15 Takashi Iwai

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=52E96D66.1080607@ladisch.de \
    --to=clemens@ladisch.de \
    --cc=alsa-devel@alsa-project.org \
    --cc=tiwai@suse.de \
    --cc=v1ron@mail.ru \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.