All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH V1 00/13] mpc5200 audio rework for AC97
@ 2009-05-14  1:58 Jon Smirl
  2009-05-14  1:59 ` [PATCH V1 01/13] Temporarily undo 2008f137e92220b98120c4803499cdddb2b0fb06 Jon Smirl
                   ` (14 more replies)
  0 siblings, 15 replies; 31+ messages in thread
From: Jon Smirl @ 2009-05-14  1:58 UTC (permalink / raw)
  To: grant.likely, broonie; +Cc: alsa-devel

The following series implements audio support for the
mpc5200. It adds an AC97 driver and STAC9766 codec
driver. Board support for the Efika and Phytec pcm030
are also included. I'm sure everyone will have some
edits on this first version.

---

Jon Smirl (13):
      Support for AC97 on Phytec pmc030 base board.
      Fabric bindings for STAC9766 on the Efika
      AC97 driver for mpc5200
      Codec for STAC9766 used on the Efika
      Main rewite of the mpc5200 audio DMA code
      Have the WM9712 driver self register itself
      Add SNDRV_PCM_FMTBIT_S32_BE as a valid AC97 format
      Allow a custom ASOC fabric driver with soc-of-simple
      Add a few more mpc5200 PSC defines
      redo 2008f137e92220b98120c4803499cdddb2b0fb06
      Rename the PSC functions to DMA
      Basic split of mpc5200 DMA code out from mpc5200_psc_i2s
      Temporarily undo 2008f137e92220b98120c4803499cdddb2b0fb06


 arch/powerpc/boot/dts/pcm030.dts       |    8 
 arch/powerpc/include/asm/mpc52xx_psc.h |   10 
 arch/powerpc/platforms/52xx/efika.c    |    8 
 include/sound/soc-dai.h                |    3 
 include/sound/soc-of-simple.h          |   16 +
 sound/last.c                           |    6 
 sound/soc/codecs/Kconfig               |    4 
 sound/soc/codecs/Makefile              |    2 
 sound/soc/codecs/stac9766.c            |  491 ++++++++++++++++++++++
 sound/soc/codecs/stac9766.h            |   21 +
 sound/soc/codecs/tlv320aic26.c         |    2 
 sound/soc/codecs/wm9712.c              |   34 ++
 sound/soc/fsl/Kconfig                  |   30 +
 sound/soc/fsl/Makefile                 |    6 
 sound/soc/fsl/efika-audio-fabric.c     |   95 ++++
 sound/soc/fsl/mpc5200_dma.c            |  693 +++++++++++++++++++++++++++++++
 sound/soc/fsl/mpc5200_dma.h            |   83 ++++
 sound/soc/fsl/mpc5200_psc_ac97.c       |  379 +++++++++++++++++
 sound/soc/fsl/mpc5200_psc_ac97.h       |   13 +
 sound/soc/fsl/mpc5200_psc_i2s.c        |  707 +-------------------------------
 sound/soc/fsl/soc-of-simple.c          |  160 ++++++-
 21 files changed, 2053 insertions(+), 718 deletions(-)
 create mode 100644 sound/soc/codecs/stac9766.c
 create mode 100644 sound/soc/codecs/stac9766.h
 create mode 100644 sound/soc/fsl/efika-audio-fabric.c
 create mode 100644 sound/soc/fsl/mpc5200_dma.c
 create mode 100644 sound/soc/fsl/mpc5200_dma.h
 create mode 100644 sound/soc/fsl/mpc5200_psc_ac97.c
 create mode 100644 sound/soc/fsl/mpc5200_psc_ac97.h

-- 
Jon Smirl
jonsmirl@gmail.com

^ permalink raw reply	[flat|nested] 31+ messages in thread

end of thread, other threads:[~2009-05-14 20:21 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-14  1:58 [PATCH V1 00/13] mpc5200 audio rework for AC97 Jon Smirl
2009-05-14  1:59 ` [PATCH V1 01/13] Temporarily undo 2008f137e92220b98120c4803499cdddb2b0fb06 Jon Smirl
2009-05-14 10:13   ` Mark Brown
2009-05-14 14:37     ` Jon Smirl
2009-05-14 16:25       ` Mark Brown
2009-05-14 20:21         ` Jon Smirl
2009-05-14  1:59 ` [PATCH V1 02/13] Basic split of mpc5200 DMA code out from mpc5200_psc_i2s Jon Smirl
2009-05-14  1:59 ` [PATCH V1 03/13] Rename the PSC functions to DMA Jon Smirl
2009-05-14 10:14   ` Mark Brown
2009-05-14  1:59 ` [PATCH V1 04/13] redo 2008f137e92220b98120c4803499cdddb2b0fb06 Jon Smirl
2009-05-14  1:59 ` [PATCH V1 05/13] Add a few more mpc5200 PSC defines Jon Smirl
2009-05-14 10:15   ` Mark Brown
2009-05-14  1:59 ` [PATCH V1 06/13] Allow a custom ASOC fabric driver with soc-of-simple Jon Smirl
2009-05-14 10:41   ` Mark Brown
2009-05-14  1:59 ` [PATCH V1 07/13] Add SNDRV_PCM_FMTBIT_S32_BE as a valid AC97 format Jon Smirl
2009-05-14 11:53   ` Mark Brown
2009-05-14  1:59 ` [PATCH V1 08/13] Have the WM9712 driver self register itself Jon Smirl
2009-05-14 10:45   ` Mark Brown
2009-05-14  1:59 ` [PATCH V1 09/13] Main rewite of the mpc5200 audio DMA code Jon Smirl
2009-05-14 10:51   ` Mark Brown
2009-05-14 14:50     ` Jon Smirl
2009-05-14 19:14       ` Mark Brown
2009-05-14  1:59 ` [PATCH V1 10/13] Codec for STAC9766 used on the Efika Jon Smirl
2009-05-14 11:03   ` Mark Brown
2009-05-14  1:59 ` [PATCH V1 11/13] AC97 driver for mpc5200 Jon Smirl
2009-05-14  2:17   ` Jon Smirl
2009-05-14 11:39   ` Mark Brown
2009-05-14  1:59 ` [PATCH V1 12/13] Fabric bindings for STAC9766 on the Efika Jon Smirl
2009-05-14  1:59 ` [PATCH V1 13/13] Support for AC97 on Phytec pmc030 base board Jon Smirl
2009-05-14  2:03 ` [PATCH V1 00/13] mpc5200 audio rework for AC97 Jon Smirl
2009-05-14  3:34 ` Grant Likely

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.