All of lore.kernel.org
 help / color / mirror / Atom feed
From: Mark Brown <broonie@opensource.wolfsonmicro.com>
To: Takashi Iwai <tiwai@suse.de>
Cc: alsa-devel@alsa-project.org
Subject: ASoC updates for 2.6.30
Date: Fri, 6 Mar 2009 12:45:06 +0000	[thread overview]
Message-ID: <20090306124504.GH6493@sirena.org.uk> (raw)

The following changes since commit 5f2a9384a9291d898b4bf85c4fbf497eef582977:
  Philipp Zabel (1):
        ASoC: UDA1380: DATAI is slave only

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound-2.6.git for-2.6.30

Ben Dooks (6):
      S3C24XX: Move and update IIS headers
      S3C: Move <mach/audio.h> to <plat/audio.h>
      ASoC: Add JIVE audio support
      ASoC: Split s3c2412-i2s.c into core and SoC specific parts
      ASoC: Add s3c64xx-i2s support
      ASoC: Select DMA if I2S is configured

Daniel Mack (2):
      ASoC: Fix name of register bit in pxa-ssp
      ASoC: add two more bitfields for PXA SSP

Jonas Andersson (1):
      ASoC: wm8510 pll settings

Lopez Cruz, Misael (3):
      ASoC: Add GPIO support for jack reporting interface
      ASoC: Add DAPM machine widgets to SDP3430 driver
      ASoC: Add headset jack detection for SDP3430 machine driver

Mark Brown (5):
      ASoC: Refresh JIVE driver
      ASoC: Factor out DAPM widget power check into separate function
      ASoC: Fix memory allocation for snd_soc_dapm_switch names
      ASoC: Update Kconfig for Samsung CPUs to reflect S3C64xx support
      ASoC: Staticise workqueue function for GPIO jack detection

Mike Frysinger (2):
      ASoC: Blackfin: move gpio_err behind the define that is only user of it
      ASoC: Blackfin: fix typo in MUTE definition

Peter Ujfalusi (1):
      ASoC: TWL4030: Make the HS ramp delay configurable

Timur Tabi (1):
      ASoC: add support for SSI asynchronous mode to the Freescale SSI drivers

 arch/arm/mach-pxa/include/mach/regs-ssp.h          |    7 +-
 arch/arm/mach-s3c2410/dma.c                        |    2 +-
 arch/arm/mach-s3c2410/include/mach/hardware.h      |    3 -
 arch/arm/mach-s3c2410/include/mach/io.h            |    2 +-
 arch/arm/mach-s3c2412/dma.c                        |    4 +-
 arch/arm/mach-s3c2440/dma.c                        |    2 +-
 arch/arm/mach-s3c2443/dma.c                        |    2 +-
 arch/arm/mach-shark/include/mach/io.h              |    2 +-
 .../include/mach => plat-s3c/include/plat}/audio.h |    0 
 .../arm/plat-s3c/include/plat}/regs-s3c2412-iis.h  |    3 +
 arch/arm/plat-s3c24xx/clock-dclk.c                 |    1 +
 .../arm/plat-s3c24xx/include/plat}/regs-iis.h      |    0 
 include/sound/soc.h                                |   32 +
 sound/soc/atmel/playpaq_wm8510.c                   |   24 +-
 sound/soc/blackfin/bf5xx-ac97.c                    |    2 +-
 sound/soc/codecs/ad73311.h                         |    2 +-
 sound/soc/codecs/twl4030.c                         |   18 +-
 sound/soc/codecs/wm8510.c                          |    4 +-
 sound/soc/fsl/fsl_ssi.c                            |   42 +-
 sound/soc/fsl/fsl_ssi.h                            |    2 +
 sound/soc/fsl/mpc8610_hpcd.c                       |    5 +
 sound/soc/omap/sdp3430.c                           |  105 ++++-
 sound/soc/pxa/pxa-ssp.c                            |    6 +-
 sound/soc/s3c24xx/Kconfig                          |   29 +-
 sound/soc/s3c24xx/Makefile                         |    6 +
 sound/soc/s3c24xx/jive_wm8750.c                    |  201 ++++++
 sound/soc/s3c24xx/neo1973_wm8753.c                 |    4 +-
 sound/soc/s3c24xx/s3c-i2s-v2.c                     |  645 ++++++++++++++++++++
 sound/soc/s3c24xx/s3c-i2s-v2.h                     |   90 +++
 sound/soc/s3c24xx/s3c2412-i2s.c                    |  604 +------------------
 sound/soc/s3c24xx/s3c2412-i2s.h                    |   17 +-
 sound/soc/s3c24xx/s3c2443-ac97.c                   |    2 +-
 sound/soc/s3c24xx/s3c24xx-i2s.c                    |    4 +-
 sound/soc/s3c24xx/s3c24xx-pcm.c                    |    2 +-
 sound/soc/s3c24xx/s3c24xx_uda134x.c                |    2 +-
 sound/soc/s3c24xx/s3c64xx-i2s.c                    |  220 +++++++
 sound/soc/s3c24xx/s3c64xx-i2s.h                    |   31 +
 sound/soc/soc-dapm.c                               |  265 +++++----
 sound/soc/soc-jack.c                               |  129 ++++
 39 files changed, 1745 insertions(+), 776 deletions(-)
 rename arch/arm/{mach-s3c2410/include/mach => plat-s3c/include/plat}/audio.h (100%)
 rename {include/asm-arm/plat-s3c24xx => arch/arm/plat-s3c/include/plat}/regs-s3c2412-iis.h (96%)
 rename {include/asm-arm/plat-s3c24xx => arch/arm/plat-s3c24xx/include/plat}/regs-iis.h (100%)
 create mode 100644 sound/soc/s3c24xx/jive_wm8750.c
 create mode 100644 sound/soc/s3c24xx/s3c-i2s-v2.c
 create mode 100644 sound/soc/s3c24xx/s3c-i2s-v2.h
 create mode 100644 sound/soc/s3c24xx/s3c64xx-i2s.c
 create mode 100644 sound/soc/s3c24xx/s3c64xx-i2s.h

             reply	other threads:[~2009-03-06 12:45 UTC|newest]

Thread overview: 82+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-03-06 12:45 Mark Brown [this message]
2009-03-06 13:25 ` ASoC updates for 2.6.30 Takashi Iwai
2009-03-06 13:41   ` Mark Brown
2009-03-06 13:54     ` Takashi Iwai
  -- strict thread matches above, loose matches on Subject: below --
2009-05-15  8:23 Mark Brown
2009-05-15  8:34 ` Takashi Iwai
2009-05-12  8:42 Mark Brown
2009-05-12  8:45 ` Takashi Iwai
2009-05-05  9:59 Mark Brown
2009-05-05 10:45 ` Takashi Iwai
2009-04-28 15:20 Mark Brown
2009-04-27 20:10 Mark Brown
2009-04-28  7:56 ` Takashi Iwai
2009-04-23 18:48 Mark Brown
2009-04-24  6:10 ` Takashi Iwai
2009-04-20 11:55 Mark Brown
2009-04-20 12:05 ` Takashi Iwai
2009-04-16 13:01 Mark Brown
2009-04-16 14:06 ` Takashi Iwai
2009-04-13 14:07 Mark Brown
2009-04-14 12:06 ` Takashi Iwai
2009-04-06 22:48 Mark Brown
2009-04-07  2:44 ` Takashi Iwai
2009-03-24 10:40 Mark Brown
2009-03-25 11:08 ` Takashi Iwai
2009-03-25 11:16   ` Mark Brown
2009-04-06  1:49     ` Takashi Iwai
2009-03-19 12:00 Mark Brown
2009-03-19 13:21 ` Takashi Iwai
2009-03-17 19:30 Mark Brown
2009-03-17 20:34 ` Takashi Iwai
2009-03-16 14:41 Mark Brown
2009-03-16 14:46 ` Takashi Iwai
2009-03-13 12:49 Mark Brown
2009-03-13 13:34 ` Takashi Iwai
2009-03-11 22:26 Mark Brown
2009-03-12  7:28 ` Takashi Iwai
2009-03-10 19:55 Mark Brown
2009-03-11  6:56 ` Takashi Iwai
2009-03-11 14:40   ` Ben Gamari
2009-03-11 15:29     ` Mark Brown
2009-03-09 10:52 Mark Brown
2009-03-09 11:21 ` Takashi Iwai
2009-03-03 18:45 Mark Brown
2009-03-04  6:33 ` Takashi Iwai
2009-02-25 10:47 Mark Brown
2009-02-25 10:57 ` Takashi Iwai
2009-02-19 19:01 Mark Brown
2009-02-20  7:42 ` Takashi Iwai
2009-02-18 12:55 Mark Brown
2009-02-18 12:01 Mark Brown
2009-02-18 12:18 ` Takashi Iwai
2009-02-18 12:22   ` Takashi Iwai
2009-02-18 12:27     ` Takashi Iwai
2009-02-18 12:37       ` Mark Brown
2009-02-18 12:44         ` Takashi Iwai
2009-02-18 12:29     ` Mark Brown
2009-02-18 12:31       ` Takashi Iwai
2009-02-13 13:57 ASoC update for 2.6.29 Mark Brown
2009-02-13 14:08 ` ASoC updates for 2.6.30 Mark Brown
2009-02-10 21:52 ASoC update for 2.6.29 Mark Brown
2009-02-10 22:12 ` ASoC updates for 2.6.30 Mark Brown
2009-02-11  7:37   ` Takashi Iwai
2009-02-09 11:20 Mark Brown
2009-02-09 16:45 ` Takashi Iwai
2009-02-05 14:19 Mark Brown
2009-02-05 14:38 ` Takashi Iwai
2009-02-02 22:04 Mark Brown
2009-02-03  6:08 ` Takashi Iwai
2009-02-02 12:52 Mark Brown
2009-02-02 13:09 ` Takashi Iwai
2009-01-29 14:09 Mark Brown
2009-01-29 14:45 ` Takashi Iwai
2009-01-20 21:00 Mark Brown
2009-01-21  0:25 ` Takashi Iwai
2009-01-19 16:20 Mark Brown
2009-01-19 16:24 ` Takashi Iwai
2009-01-19 16:25 ` Mark Brown
2009-01-19 16:29   ` Takashi Iwai
2009-01-19 16:42     ` Takashi Iwai
2009-01-16 17:13 Mark Brown
2009-01-16 17:26 ` Takashi Iwai
2009-01-09 11:44 Mark Brown
2009-01-09 11:54 ` 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=20090306124504.GH6493@sirena.org.uk \
    --to=broonie@opensource.wolfsonmicro.com \
    --cc=alsa-devel@alsa-project.org \
    --cc=tiwai@suse.de \
    /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.