1. 27 10月, 2016 1 次提交
  2. 25 9月, 2016 1 次提交
  3. 14 9月, 2016 1 次提交
  4. 23 8月, 2016 1 次提交
  5. 04 7月, 2016 1 次提交
  6. 30 6月, 2016 1 次提交
    • S
      ASoC: max98504: Add max98504 speaker amplifier driver · 4c5d1469
      Sylwester Nawrocki 提交于
      This patch adds driver for the MAX98504 speaker amplifier.  The MAX98504
      is a high efficiency mono class D amplifier that features an integrated
      boost converter with voltage and current sensing ADCs for Dynamic Speaker
      Management.
      This driver does not include support for the I2S DAI, as we wouldn't be
      able  to test such code in a hardware configuration where the amplifier
      has only wired the analogue input.
      Signed-off-by: NInha Song <ideal.song@samsung.com>
      [k.kozlowski: rebased on 4.1]
      Signed-off-by: NKrzysztof Kozlowski <k.kozlowski@samsung.com>
      [s.nawrocki: removed unused macro definitions, rewrote regulator supply
       related parts, rewrote regmap configuration code, added support for speaker
       enable and global chip enable through DAPM, rewritten as component driver,
       added PDM DAI definition and TDM callbacks for PDM channels configuration]
      Signed-off-by: NSylwester Nawrocki <s.nawrocki@samsung.com>
      --
      Changes since v2:
       - added parsing of the VBAT brownout DT properties,
       - removed MAX98504_REG_SPEAKER_SOURCE_SELECT register initialization,
       - removed unused macro definitions.
      
      Changes since v1:
       - none.
      
      Changes since initial version:
       - added regulator supply handling,
       - added DAPM widges for speaker source selection,
       - added PDM DAI definition and TDM callbacks for setting up active
         PDM Tx channels and I/V sense ADC data mapping,
       - removed all optional DT properties, added regulator supply properties
         in the DT binding.
      Signed-off-by: NMark Brown <broonie@kernel.org>
      4c5d1469
  7. 28 6月, 2016 1 次提交
  8. 17 6月, 2016 1 次提交
  9. 14 6月, 2016 1 次提交
    • A
      ASoC: wm8985: add i2c dependency · 05252513
      Arnd Bergmann 提交于
      The wm8985 driver is now user-selectable, but building it with
      I2C disabled results in a link failure:
      
      sound/built-in.o: In function `wm8985_i2c_probe':
      :(.text+0x44914): undefined reference to `__devm_regmap_init_i2c'
      sound/built-in.o: In function `wm8985_exit':
      :(.exit.text+0x3d8): undefined reference to `i2c_del_driver'
      sound/built-in.o: In function `wm8985_modinit':
      :(.init.text+0x1454): undefined reference to `i2c_register_driver'
      
      This adds a Kconfig dependency the way that the other codec
      drivers have it.
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Fixes: 811e66de ("ASoC: wm8985: add support for WM8758")
      Signed-off-by: NMark Brown <broonie@kernel.org>
      05252513
  10. 10 6月, 2016 1 次提交
    • L
      ASoC: adau: Factor out shared PLL configuration code · 0eadaa9c
      Lars-Peter Clausen 提交于
      Multiple devices from the ADAU family share the same PLL structure and
      configuration register layout. Introduce a new helper module that can be
      used to calculated the PLL configuration registers based on a specified
      input frequency and the desired output frequency of the PLL.
      
      The ADAU1761/ADAU1781 and ADAU1373 drivers are updated to make use of this
      new helper module. But future drivers for additional devices from the ADAU
      family are also expected to make use of it.
      
      In anticipation of sharing more infrastructure code between different
      devices from the ADAU family the new module is called adau-utils.
      Signed-off-by: NLars-Peter Clausen <lars@metafoo.de>
      Signed-off-by: NMark Brown <broonie@kernel.org>
      0eadaa9c
  11. 07 6月, 2016 1 次提交
    • O
      ASoC: rt5514: add rt5514 SPI driver · 6eebf35b
      Oder Chiou 提交于
      The device has multiple control interfaces, I2C and SPI. The I2C interface
      mainly controls the register settings of codec. The SPI interface is in
      order to provide the high speed transmission of data. For example, high
      bandwidth memory read/write of DSP. The patch adds the rt5514 SPI driver
      for loading the firmware of DSP and retrieving the voice data from DSP
      after the system is waked up by specific voice.
      Signed-off-by: NOder Chiou <oder_chiou@realtek.com>
      Signed-off-by: NMark Brown <broonie@kernel.org>
      6eebf35b
  12. 02 6月, 2016 2 次提交
  13. 30 5月, 2016 3 次提交
  14. 13 5月, 2016 1 次提交
  15. 29 4月, 2016 1 次提交
  16. 27 4月, 2016 1 次提交
  17. 22 4月, 2016 1 次提交
  18. 19 4月, 2016 3 次提交
  19. 01 4月, 2016 1 次提交
  20. 31 3月, 2016 1 次提交
  21. 29 3月, 2016 1 次提交
  22. 16 3月, 2016 1 次提交
    • A
      ASoC: rt5616: add I2C dependency · af139d55
      Arnd Bergmann 提交于
      The rt5616 codec registers itself as an i2c driver, but can
      be enabled even when i2c is turned off, which leads to a build
      error:
      
      codecs/rt5616.c:1419:1: error: data definition has no type or storage class [-Werror]
       module_i2c_driver(rt5616_i2c_driver);
      
      This adds an explicit Kconfig dependency, like the other codec
      drivers.
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Fixes: 288bc356 ("ASoC: rt5616: allow to build with CONFIG_SND_SOC_RT5616")
      Signed-off-by: NMark Brown <broonie@kernel.org>
      af139d55
  23. 05 3月, 2016 1 次提交
  24. 18 2月, 2016 1 次提交
  25. 16 2月, 2016 1 次提交
  26. 04 2月, 2016 1 次提交
    • O
      ASoC: rt5514: add rt5514 codec driver · 4a6180ea
      Oder Chiou 提交于
      This is the initial codec driver for rt5514. The codec includes a low power
      DSP for voice wake up. The register address is incremental by 4 in the DSP
      memory map. In order to recover the codec settings in the codec mode and
      manipulate the DSP mode for voice wake up, we use the multi-level register
      map. One is for ALSA API in codec mode that can be recovered by cache
      before recording. Another is for DSP related settings that can be accessed
      with 32bit address of the DSP in the application of voice wake up.
      Signed-off-by: NOder Chiou <oder_chiou@realtek.com>
      Signed-off-by: NMark Brown <broonie@kernel.org>
      4a6180ea
  27. 29 1月, 2016 2 次提交
  28. 28 1月, 2016 1 次提交
  29. 27 1月, 2016 1 次提交
  30. 10 1月, 2016 1 次提交
  31. 23 12月, 2015 1 次提交
  32. 19 12月, 2015 1 次提交
  33. 18 12月, 2015 1 次提交
  34. 13 12月, 2015 1 次提交