1. 16 3月, 2017 1 次提交
  2. 18 11月, 2016 2 次提交
  3. 14 11月, 2016 1 次提交
  4. 09 11月, 2016 1 次提交
  5. 31 10月, 2016 1 次提交
  6. 27 10月, 2016 1 次提交
  7. 25 10月, 2016 4 次提交
  8. 21 10月, 2016 2 次提交
  9. 25 9月, 2016 1 次提交
  10. 14 9月, 2016 1 次提交
  11. 23 8月, 2016 1 次提交
  12. 04 7月, 2016 1 次提交
  13. 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
  14. 28 6月, 2016 1 次提交
  15. 17 6月, 2016 1 次提交
  16. 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
  17. 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
  18. 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
  19. 02 6月, 2016 2 次提交
  20. 30 5月, 2016 3 次提交
  21. 13 5月, 2016 1 次提交
  22. 29 4月, 2016 1 次提交
  23. 27 4月, 2016 1 次提交
  24. 22 4月, 2016 1 次提交
  25. 19 4月, 2016 3 次提交
  26. 01 4月, 2016 1 次提交
  27. 31 3月, 2016 1 次提交
  28. 29 3月, 2016 1 次提交
  29. 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
  30. 05 3月, 2016 1 次提交