1. 22 10月, 2013 2 次提交
  2. 03 10月, 2013 1 次提交
  3. 03 6月, 2013 1 次提交
  4. 22 5月, 2013 1 次提交
  5. 03 5月, 2013 1 次提交
  6. 01 5月, 2013 1 次提交
  7. 23 4月, 2013 2 次提交
  8. 05 4月, 2013 2 次提交
  9. 27 3月, 2013 1 次提交
  10. 13 3月, 2013 1 次提交
  11. 04 3月, 2013 1 次提交
    • M
      ASoC: davinci-mcasp: Add support for multichannel playback · 2952b27e
      Michal Bachraty 提交于
      Davinci McASP has support for I2S multichannel playback.
      For I2S playback/receive, each serializer is capable to play 2 channels
      (L/R) audio data.Serializer function (Playback-receive-none) is configured
      in DT, depending on hardware specification. It is possible to play less
      channels than configured in DT. For that purpose,only specific number of
      active serializers are enabled. McASP FIFO need to have DMA transfer Bcnt
      set to number of enabled serializers, otherwise no data are transfered to
      McASP and Alsa generates "DMA/IRQ playback write error (DMA or IRQ trouble?)"
      error. For TDM mode, McASP is capable to play or receive 32 channels for one
      serializer. McAsp has support for max 16 serializer, therefore max channels
      is 32 * 8.
      Signed-off-by: NMichal Bachraty <michal.bachraty@streamunlimited.com>
      Tested-by: NDaniel Mack <zonque@gmail.com>
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      2952b27e
  12. 27 1月, 2013 1 次提交
  13. 07 12月, 2012 3 次提交
  14. 22 10月, 2012 1 次提交
  15. 15 10月, 2012 5 次提交
  16. 06 9月, 2012 1 次提交
  17. 28 8月, 2012 2 次提交
  18. 09 8月, 2012 2 次提交
  19. 02 1月, 2012 1 次提交
    • J
      ASoC: davinci-mcasp.c: use devm_ functions · 96d31e2b
      Julia Lawall 提交于
      The various devm_ functions allocate memory that is released when a driver
      detaches.  This patch uses devm_kzalloc, devm_request_mem_region and
      devm_ioremap for data that is allocated in the probe function of a platform
      device and is only freed in the remove function.
      
      In this case, the original code did not contain a call to iounmap, nor does
      one appear anywhere else in the file.  I have assumed that it is safe to
      use devm_ioremap for the allocation in any case.
      Signed-off-by: NJulia Lawall <julia.lawall@lip6.fr>
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      96d31e2b
  20. 25 11月, 2011 1 次提交
  21. 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
  22. 29 8月, 2011 1 次提交
  23. 20 5月, 2011 1 次提交
  24. 26 4月, 2011 4 次提交
  25. 10 2月, 2011 2 次提交