1. 22 10月, 2015 1 次提交
  2. 18 8月, 2015 1 次提交
    • M
      ASoC: topology: Add Kconfig option for topology · 78b50f39
      Mark Brown 提交于
      Allow the topology code to be compiled out so that users who don't need
      topology don't need to havve the code compiled in, saving them some
      memory.
      
      Some more configuration could be added to remove some of the hooks into
      the core data structures but that is probably best done with some
      refactoring to use functions to do the updates of the data structures
      rather than ifdefing in the code as we'd need to do at the minute.
      Suggested-by: NTakashi Iwai <tiwai@suse.de>
      Signed-off-by: NMark Brown <broonie@kernel.org>
      78b50f39
  3. 17 7月, 2015 1 次提交
  4. 16 6月, 2015 1 次提交
  5. 04 6月, 2015 1 次提交
  6. 16 3月, 2015 1 次提交
  7. 09 1月, 2015 1 次提交
    • M
      ASoC: add xtensa xtfpga I2S interface and platform · 57b7068d
      Max Filippov 提交于
      XTFPGA boards provides an audio subsystem that consists of TI CDCE706
      clock synthesizer, I2S transmitter and TLV320AIC23 audio codec.
      
      I2S transmitter has MMIO-based interface that resembles that of the
      OpenCores I2S transmitter. I2S transmitter is always a master on I2S
      bus. There's no specialized audio DMA, sample data are transferred to
      I2S transmitter FIFO by CPU through memory-mapped queue interface.
      Signed-off-by: NMax Filippov <jcmvbkbc@gmail.com>
      Signed-off-by: NMark Brown <broonie@kernel.org>
      57b7068d
  8. 20 10月, 2014 1 次提交
  9. 09 7月, 2014 1 次提交
  10. 06 3月, 2014 1 次提交
  11. 10 12月, 2013 1 次提交
    • L
      ASoC: Add support for the Analog Devices AXI-I2S core · 8f2fe346
      Lars-Peter Clausen 提交于
      This patch adds support for the AXI-I2S softcore. The core implements a simple
      bidirectional I2S transceiver and is used by Analog Devices in some of their
      reference designs for various FPGA platforms.
      
      The driver uses the generic PCM dmaengine driver for its PCM. The only
      restriction is that we need to set the SND_DMAENGINE_PCM_FLAG_NO_RESIDUE flag as
      the dmaengine driver for the DMA core (PL330) that is used with this core has no
      residue reporting capabilities yet. This will be fixed in the future though.
      Signed-off-by: NLars-Peter Clausen <lars@metafoo.de>
      Signed-off-by: NMark Brown <broonie@linaro.org>
      8f2fe346
  12. 26 11月, 2013 1 次提交
  13. 24 11月, 2013 1 次提交
  14. 15 8月, 2013 1 次提交
  15. 12 6月, 2013 1 次提交
  16. 17 4月, 2013 1 次提交
  17. 29 8月, 2012 1 次提交
  18. 21 8月, 2012 1 次提交
  19. 22 6月, 2012 1 次提交
  20. 09 5月, 2012 1 次提交
  21. 13 4月, 2012 1 次提交
  22. 01 4月, 2012 1 次提交
  23. 02 3月, 2012 1 次提交
  24. 10 11月, 2011 1 次提交
  25. 08 8月, 2011 1 次提交
  26. 28 7月, 2011 1 次提交
  27. 11 1月, 2011 1 次提交
  28. 06 1月, 2011 1 次提交
  29. 22 12月, 2010 1 次提交
  30. 23 11月, 2010 1 次提交
  31. 11 11月, 2010 1 次提交
    • D
      ASoC: soc-cache: Add support for LZO register caching · cc28fb8e
      Dimitris Papastamos 提交于
      This patch adds support for LZO compression when storing the register
      cache.  The initial register defaults cache is marked as __devinitconst
      and the only change required for a driver to use LZO compression is
      to set the compress_type member in codec->driver to SND_SOC_LZO_COMPRESSION.
      
      For a typical device whose register map would normally occupy 25kB or 50kB
      by using the LZO compression technique, one can get down to ~5-7kB.  There
      might be a performance penalty associated with each individual read/write
      due to decompressing/compressing the underlying cache, however that should not
      be noticeable.  These memory benefits depend on whether the target architecture
      can get rid of the memory occupied by the original register defaults cache
      which is marked as __devinitconst.  Nevertheless there will be some memory
      gain even if the target architecture can't get rid of the original register
      map, this should be around ~30-32kB instead of 50kB.
      Signed-off-by: NDimitris Papastamos <dp@opensource.wolfsonmicro.com>
      Acked-by: NLiam Girdwood <lrg@slimlogic.co.uk>
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      cc28fb8e
  32. 05 7月, 2010 1 次提交
  33. 23 6月, 2010 1 次提交
  34. 07 6月, 2010 1 次提交
  35. 31 5月, 2010 1 次提交
  36. 19 5月, 2010 1 次提交
  37. 15 8月, 2009 1 次提交
  38. 20 5月, 2009 1 次提交
  39. 04 4月, 2009 1 次提交
  40. 09 1月, 2009 1 次提交
    • M
      ASoC: Add jack reporting interface · 8a2cd618
      Mark Brown 提交于
      This patch adds a jack reporting interface to ASoC.  This wraps the ALSA
      core jack detection functionality and provides integration with DAPM to
      automatically update the power state of pins based on the jack state.
      
      Since embedded platforms can have multiple detecton methods used for a
      single jack (eg, separate microphone and headphone detection) the report
      function allows specification of which bits are being updated on a given
      report.
      
      The expected usage is that machine drivers will create jack objects and
      then configure jack detection methods to update that jack.
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      8a2cd618