1. 05 2月, 2013 1 次提交
    • H
      ASoC: tlv320aic3x: Convert mic bias to a supply widget · e2e8bfdf
      Hebbar Gururaja 提交于
      Convert MicBias widgets to supply widget.
      
      On tlv320aic3x, Mic bias power on/off shares the same register bits
      with output mic bias voltage.  So, when power on mic bias, we need
      reclaim it to voltage value.
      
      Provide a new platform data so that the micbias voltage can be sent
      according to board requirement. Now since tlv320aic3x codec driver
      is DT aware, update dt files and functions to handle this new
      "micbias-vg"  platform data.
      
      Because of sharing of bits, when enabling the micbias, voltage also
      needs to be updated. So use SND_SOC_DAPM_POST_PMU & SND_SOC_DAPM_PRE_PMD
      macro to create an event to handle this.
      
      Since micbias is converted to supply widget, updated machine drivers as
      well.
      
      This change is runtime tested on da850-evm with audio loopback
      (arecord|aplay) for confirmation.
      Signed-off-by: NHebbar Gururaja <gururaja.hebbar@ti.com>
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      e2e8bfdf
  2. 27 1月, 2013 1 次提交
  3. 07 12月, 2012 3 次提交
  4. 22 10月, 2012 1 次提交
  5. 15 10月, 2012 6 次提交
  6. 06 9月, 2012 1 次提交
  7. 01 9月, 2012 1 次提交
  8. 28 8月, 2012 3 次提交
  9. 09 8月, 2012 3 次提交
  10. 20 1月, 2012 1 次提交
  11. 08 1月, 2012 1 次提交
  12. 02 1月, 2012 3 次提交
  13. 23 12月, 2011 1 次提交
  14. 25 11月, 2011 1 次提交
  15. 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
  16. 14 10月, 2011 1 次提交
  17. 08 10月, 2011 1 次提交
  18. 30 9月, 2011 1 次提交
    • J
      ASoC: Davinci: Fix FS polarity for I2S format · ad51f765
      Jarkko Nikula 提交于
      Commit 75d9ac46 ("ASoC: Allow DAI formats to be specified in the dai_link")
      changed DAI format flag values and we cannot simply invert anymore e.g.
      frame-sync with ^= SND_SOC_DAIFMT_NB_IF (which was anyway misuse) as there
      is no anymore fixed bit position for bit-clock or frame-sync inversion.
      
      Fix this by relying only on DAI format flag values passed to us and by not
      making any assumption on individual bit positions
      Signed-off-by: NJarkko Nikula <jarkko.nikula@bitmer.com>
      Cc: Vaibhav Bedia <vaibhav.bedia@ti.com>
      Cc: Sekhar Nori <nsekhar@ti.com>
      Cc: Kevin Hilman <khilman@ti.com>
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      ad51f765
  19. 16 9月, 2011 1 次提交
  20. 29 8月, 2011 1 次提交
  21. 21 7月, 2011 2 次提交
  22. 08 6月, 2011 1 次提交
  23. 27 5月, 2011 1 次提交
    • S
      mfd: Use mfd cell platform_data for davinci cells platform bits · cb5811cf
      Samuel Ortiz 提交于
      With the addition of a platform device mfd_cell pointer, MFD drivers
      can go back to passing platform back to their sub drivers.
      This allows for an mfd_cell->mfd_data removal and thus keep the
      sub drivers MFD agnostic. This is mostly needed for non MFD aware
      sub drivers.
      
      Cc: Miguel Aguilar <miguel.aguilar@ridgerun.com>
      Cc: Mark Brown <broonie@opensource.wolfsonmicro.com>
      Cc: Liam Girdwood <lrg@slimlogic.co.uk>
      Signed-off-by: NSamuel Ortiz <sameo@linux.intel.com>
      cb5811cf
  24. 25 5月, 2011 3 次提交