1. 03 12月, 2011 4 次提交
  2. 02 12月, 2011 2 次提交
  3. 29 11月, 2011 1 次提交
  4. 27 11月, 2011 1 次提交
  5. 23 11月, 2011 1 次提交
    • L
      ASoC: Constify snd_soc_dai_ops structs · 85e7652d
      Lars-Peter Clausen 提交于
      Commit 1ee46ebd("ASoC: Make the DAI ops constant in the DAI structure")
      introduced the possibility to have constant DAI ops structures, yet this is
      barley used in both existing drivers and also new drivers being submitted,
      although none of them modifies its DAI ops structure. The later is not
      surprising since existing drivers are often used as templates for new drivers.
      So this patch just constifies all existing snd_soc_dai_ops structs to eliminate
      the issue altogether.
      
      The patch was generated with the following coccinelle semantic patch:
      // <smpl>
      @@
      identifier ops;
      @@
      -struct snd_soc_dai_ops ops =
      +const struct snd_soc_dai_ops ops =
      { ... };
      // </smpl>
      Signed-off-by: NLars-Peter Clausen <lars@metafoo.de>
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      85e7652d
  6. 09 8月, 2011 1 次提交
  7. 17 5月, 2011 1 次提交
  8. 10 5月, 2011 1 次提交
  9. 20 4月, 2011 1 次提交
    • S
      ASoC: WM8903: Implement DMIC support · 97945c46
      Stephen Warren 提交于
      In addition to the currently supported analog capture path, the WM8903
      also supports digital mics.
      
      The analog and digital capture paths are exclusive; a mux is present to
      select the capture source.
      
      Logically, the mux exists to select the decimator's input, from either
      the ADC or DMIC block outputs. However, the ADC power domain also
      includes the DMIC interface. Consequently, this change represents the
      mux as existing immediately before the ADC, and selecting between the
      Input PGA and DMIC block outputs.
      
      An alternative might be to represent the mux in its correct location,
      and associate the ADC power enable controls with both the real ADC, and
      a fake ADC for the DMIC?
      Signed-off-by: NStephen Warren <swarren@nvidia.com>
      Acked-by: NLiam Girdwood <lrg@ti.com>
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      97945c46
  10. 08 4月, 2011 1 次提交
    • D
      ASoC: WM8903: HP and Line out PGA/mixer DAPM fixes · 1b877cb5
      Dilan Lee 提交于
      Update the headphone and line out mixers and PGAs use the same logical
      set of register bits and sequencing as the speaker mixer/PGA.
      
      This allows ALSA controls for mute and volume on headphone and line out
      to operate correctly.
      
      Per conversation on alsa-devel, earlier datasheets indicated that the
      POWER_MANAGEMENT_* register bits 0 and 1 were aliases to ANALOG_* register
      bits 0 and 4, and hence only one copy of those bits was programmed.
      However, later datasheets corrected this.
      
      From: Dilan Lee <dilee@nvidia.com>
      [swarren: Applied same change to headphone widgets]
      Signed-off-by: NStephen Warren <swarren@nvidia.com>
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      1b877cb5
  11. 30 3月, 2011 1 次提交
  12. 14 2月, 2011 2 次提交
  13. 11 2月, 2011 3 次提交
  14. 10 2月, 2011 7 次提交
  15. 01 2月, 2011 1 次提交
  16. 22 1月, 2011 1 次提交
  17. 13 1月, 2011 1 次提交
  18. 29 12月, 2010 1 次提交
  19. 24 12月, 2010 1 次提交
  20. 23 12月, 2010 1 次提交
  21. 22 12月, 2010 1 次提交
  22. 11 12月, 2010 4 次提交
  23. 22 11月, 2010 1 次提交
  24. 06 11月, 2010 1 次提交
    • L
      ASoC: Decouple DAPM from CODECs · ce6120cc
      Liam Girdwood 提交于
      Decoupling Dynamic Audio Power Management (DAPM) from codec devices is
      required when developing ASoC further. Such as for other ASoC components to
      have DAPM widgets or when extending DAPM to handle cross-device paths.
      
      This patch decouples DAPM related variables from struct snd_soc_codec and
      moves them to new struct snd_soc_dapm_context that is used to encapsulate
      DAPM context of a device. ASoC core and API of DAPM functions are modified
      to use DAPM context instead of codec.
      
      This patch does not change current functionality and a large part of changes
      come because of structure and internal API changes.
      
      Core implementation is from Liam Girdwood <lrg@slimlogic.co.uk> with some
      minor core changes, codecs and machine driver conversions from
      Jarkko Nikula <jhnikula@gmail.com>.
      Signed-off-by: NLiam Girdwood <lrg@slimlogic.co.uk>
      Signed-off-by: NJarkko Nikula <jhnikula@gmail.com>
      Cc: Nicolas Ferre <nicolas.ferre@atmel.com>
      Cc: Manuel Lauss <manuel.lauss@googlemail.com>
      Cc: Mike Frysinger <vapier.adi@gmail.com>
      Cc: Cliff Cai <cliff.cai@analog.com>
      Cc: Kevin Hilman <khilman@deeprootsystems.com>
      Cc: Ryan Mallon <ryan@bluewatersys.com>
      Cc: Timur Tabi <timur@freescale.com>
      Cc: Sascha Hauer <s.hauer@pengutronix.de>
      Cc: Lars-Peter Clausen <lars@metafoo.de>
      Cc: Arnaud Patard (Rtp) <arnaud.patard@rtp-net.org>
      Cc: Wan ZongShun <mcuos.com@gmail.com>
      Cc: Eric Miao <eric.y.miao@gmail.com>
      Cc: Jassi Brar <jassi.brar@samsung.com>
      Cc: Daniel Gloeckner <dg@emlix.com>
      Cc: Kuninori Morimoto <morimoto.kuninori@renesas.com>
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      ce6120cc