1. 06 3月, 2010 1 次提交
  2. 04 3月, 2010 3 次提交
  3. 26 2月, 2010 1 次提交
  4. 22 2月, 2010 2 次提交
  5. 17 2月, 2010 2 次提交
  6. 12 2月, 2010 1 次提交
  7. 04 2月, 2010 2 次提交
  8. 25 1月, 2010 2 次提交
  9. 21 1月, 2010 1 次提交
    • M
      ASoC: Support turning off bias when the CODEC is idle · a96ca338
      Mark Brown 提交于
      Currently ASoC always maintains the bias of the CODEC while the system
      is active.  With older mobile CODECs this is required since the outputs
      are referenced to a non-zero voltage and enabling or disabling this
      voltage without audible pops or clicks in the output takes too long to
      do when starting or stopping audio.
      
      As a result of features such as ground referenced outputs and class D
      speaker drivers current generation devices are able to power on and off
      much more quickly without these system level issues so provide a new
      flag idle_bias_off in snd_soc_codec which will cause the core to turn
      off the CODEC bias.  The distinction between STANDBY and OFF is still
      maintained.  This is partly for consistency but also allows for
      potential future extensions such as per-machine overrides or deferring
      the bias removal.
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      Acked-by: NLiam Girdwood <lrg@slimlogic.co.uk>
      a96ca338
  10. 20 1月, 2010 1 次提交
  11. 19 1月, 2010 1 次提交
  12. 12 1月, 2010 1 次提交
  13. 18 12月, 2009 1 次提交
  14. 05 12月, 2009 2 次提交
  15. 04 12月, 2009 2 次提交
  16. 26 11月, 2009 1 次提交
  17. 23 11月, 2009 2 次提交
  18. 18 11月, 2009 1 次提交
    • K
      ALSA: cs4236: update control names · b753e03e
      Krzysztof Helt 提交于
      Update control names to be more closer to their meaning.
      Change the "Mono" name to the "Beep" as this line is usually
      used to forward the PC beeper signal to sound card's output.
      Update names for both cs423x and wss.
      
      Clean up cs4235 controls according to the cs4235 doc. Rename
      some of the cs4235 controls to be consistent with the cs4236's
      ones.
      
      Also, delete one misnamed cs4231 register define.
      Signed-off-by: NKrzysztof Helt <krzysztof.h1@wp.pl>
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      b753e03e
  19. 13 11月, 2009 2 次提交
  20. 10 11月, 2009 2 次提交
  21. 06 11月, 2009 3 次提交
  22. 04 11月, 2009 2 次提交
  23. 15 10月, 2009 2 次提交
    • P
      ASoC: Codec driver for Texas Instruments tlv320dac33 codec · c8bf93f0
      Peter Ujfalusi 提交于
      Driver for Texas Instruments TLV320DAC33 (SLAS546) low power stereo
      audio DAC.
      
      TLV320DAC33 is a stereo audio codec with integrated 24KB FIFO for low
      power audio playback.
      
      The digital interface can use I2S, DSP (A or B), Right and Left
      justified formats.
      DAC33 has stereo analog input, which can be bypassed to the analog
      outputs.
      
      Regarding to the internal 24KB FIFO the driver implements 'FIFO bypass'
      mode (default) and nSample mode (FIFO is in use).
      a) In 'FIFO bypass' mode the internal FIFO is not in use, the codec is
      working synchronously as a normal codec (it needs constant stream of
      data on the digital interface).
      
      b) The nSample mode implementation uses one interrupt line from DAC33 to
      the host:
      Alarm threshold is set to 10ms of audio data (limit by the driver
      implementation).
      DAC33 will signal an interrupt, when the FIFO level goes under the
      Alarm threshold.
      The host will write to nSample register a value (number of stereo
      samples), to tell DAC33 how many samples it should read in a burst from
      the host. When the DAC33 received the number of samples, it disables the
      clocks on the I2S bus. When the FIFO use again goes under the Alarm
      threshold, DAC33 signals the host with an interrupt, and the process is
      repeated.
      Signed-off-by: NPeter Ujfalusi <peter.ujfalusi@nokia.com>
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      c8bf93f0
    • M
      ASoC: Remove snd_soc_suspend_device() · d2058b0c
      Mark Brown 提交于
      The PM core will grow pm_link infrastructure in 2.6.33 which can be
      used to implement the intended functionality of the ASoC-specific
      device suspend and resume callbacks so drop them.
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      d2058b0c
  24. 10 10月, 2009 1 次提交
    • P
      ASoC: TPA6130A2 amplifier driver · 493b67ef
      Peter Ujfalusi 提交于
      Driver for Texas Instruments TPA6130A2 stereo headphone
      amplifier.
      
      The driver provides playback gain control and also pre-defined
      DAPM_HP widgets and DAPM routings for power management.
      
      The DAPM_HP widget names are:
      "TPA6130A2 Headphone Left"
      "TPA6130A2 Headphone Right"
      
      From soc machine drivers to use with the tpa6130a2 amplifier,
      the tpa6130a2_add_controls has to be called, which adds the alsa
      controls and the DAPM routing needed for the tpa6130a2.
      After that the machine driver can connect the codec's output
      with 'TPA6130A2 Left' and 'TPA6130A2 Right':
      
              {"TPA6130A2 Left", NULL, "CODEC LEFT OUT"},
              {"TPA6130A2 Right", NULL, "CODEC RIGHT OUT"},
      
      Internally the left and right channels are powered separately.
      When none of the channels are needed the amplifier is powered
      down:
      hard power: valid GPIO number is passed within platform data
      soft power: Using the software shutdown of the amplifier
      Signed-off-by: NPeter Ujfalusi <peter.ujfalusi@nokia.com>
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      493b67ef
  25. 06 10月, 2009 1 次提交