1. 15 8月, 2021 1 次提交
  2. 12 8月, 2021 2 次提交
  3. 10 8月, 2021 1 次提交
  4. 09 8月, 2021 1 次提交
  5. 07 8月, 2021 1 次提交
  6. 06 8月, 2021 5 次提交
  7. 04 8月, 2021 2 次提交
  8. 03 8月, 2021 3 次提交
  9. 02 8月, 2021 2 次提交
  10. 31 7月, 2021 6 次提交
  11. 30 7月, 2021 4 次提交
  12. 29 7月, 2021 1 次提交
  13. 28 7月, 2021 3 次提交
  14. 27 7月, 2021 6 次提交
  15. 26 7月, 2021 1 次提交
    • M
      ASoC: tlv320aic31xx: Fix jack detection after suspend · 2c39ca68
      Mark Brown 提交于
      The tlv320aic31xx driver relies on regcache_sync() to restore the register
      contents after going to _BIAS_OFF, for example during system suspend. This
      does not work for the jack detection configuration since that is configured
      via the same register that status is read back from so the register is
      volatile and not cached. This can also cause issues during init if the jack
      detection ends up getting set up before the CODEC is initially brought out
      of _BIAS_OFF, we will reset the CODEC and resync the cache as part of that
      process.
      
      Fix this by explicitly reapplying the jack detection configuration after
      resyncing the register cache during power on.
      
      This issue was found by an engineer working off-list on a product
      kernel, I just wrote up the upstream fix.
      Signed-off-by: NMark Brown <broonie@kernel.org>
      Link: https://lore.kernel.org/r/20210723180200.25105-1-broonie@kernel.org
      Cc: stable@vger.kernel.org
      2c39ca68
  16. 24 7月, 2021 1 次提交
    • C
      ALSA: usb-audio: fix incorrect clock source setting · 4511781f
      chihhao.chen 提交于
      The following scenario describes an echo test for
      Samsung USBC Headset (AKG) with VID/PID (0x04e8/0xa051).
      
      We first start a capture stream(USB IN transfer) in 96Khz/24bit/1ch mode.
      In clock find source function, we get value 0x2 for clock selector
      and 0x1 for clock source.
      
      Kernel-4.14 behavior
      Since clock source is valid so clock selector was not set again.
      We pass through this function and start a playback stream(USB OUT transfer)
      in 48Khz/32bit/2ch mode. This time we get value 0x1 for clock selector
      and 0x1 for clock source. Finally clock id with this setting is 0x9.
      
      Kernel-5.10 behavior
      Clock selector was always set one more time even it is valid.
      When we start a playback stream, we will get 0x2 for clock selector
      and 0x1 for clock source. In this case clock id becomes 0xA.
      This is an incorrect clock source setting and results in severe noises.
      We see wrong data rate in USB IN transfer.
      (From 288 bytes/ms becomes 144 bytes/ms) It should keep in 288 bytes/ms.
      
      This earphone works fine on older kernel version load because
      this is a newly-added behavior.
      
      Fixes: d2e8f641 ("ALSA: usb-audio: Explicitly set up the clock selector")
      Signed-off-by: Nchihhao.chen <chihhao.chen@mediatek.com>
      Link: https://lore.kernel.org/r/1627100621-19225-1-git-send-email-chihhao.chen@mediatek.comSigned-off-by: NTakashi Iwai <tiwai@suse.de>
      4511781f