1. 16 Apr, 2024 8 commits
  2. 15 Apr, 2024 8 commits
  3. 14 Apr, 2024 16 commits
  4. 11 Apr, 2024 2 commits
  5. 10 Apr, 2024 2 commits
  6. 09 Apr, 2024 4 commits
    • Mark Brown's avatar
      ASoC: ti: davinci-i2s: Add features to McBSP · 64512468
      Mark Brown authored
      Merge series from Bastien Curutchet <bastien.curutchet@bootlin.com>:
      
      This series aims to add some features to McBSP driver.
      
      Convert bindings from .txt to .yaml.
      Add possibility to use an external clock as sample rate generator's
      input.
      Add handling of new formats (TDM, S24_LE, BP_FC).
      Enable the detection of unexpected frame pulses.
      Set the clock free-running mode according to SND_SOC_DAIFMT_[GATED/CONT]
      configuration in DAI format.
      Add ti,T1-framing[tx/rx] properties in DT. They allow to set the data
      delay to two bit-clock periods.
      
      This has been tested on a platform designed off of the DAVINCI/OMAP-L138
      connected to 3 daisy-chained AD7767. An external clock drives the
      sample rate generator through the CLKS pin.
      The hardware I have only allowed me to test acquisition side of McBSP.
      It is connected to a 6 channels TDM and acts as Bit clock provider and
      Frame clock consumer.
      64512468
    • Mark Brown's avatar
      ASoC: SOF: Intel: Add fw_regs area to debugfs map for · e2ff3bd8
      Mark Brown authored
      Merge series from Peter Ujfalusi <peter.ujfalusi@linux.intel.com>:
      
      The beginning of the first SRAM window contains various fw registers and
      additional information which can be very beneficial to read to gather
      information on the current states to debug issues.
      e2ff3bd8
    • Dragan Simic's avatar
      ASoC: pcm: perform power-down delay checks a bit faster · f78bf2c9
      Dragan Simic authored
      When checking whether the power-down delay should be ignored for a specific
      PCM runtime, there's no need to keep going through all DAI link components
      after any of them is found to be configured to use the power-down delay.
      
      While there, fix a small typo in one of the comment blocks.
      Signed-off-by: default avatarDragan Simic <dsimic@manjaro.org>
      Link: https://msgid.link/r/90ae761a5b99640ece48363a7099ac2cf402bd37.1712684592.git.dsimic@manjaro.orgSigned-off-by: default avatarMark Brown <broonie@kernel.org>
      f78bf2c9
    • Vijendar Mukunda's avatar
      ASoC: amd: fix for soundwire build dependencies for legacy stack · 56437a56
      Vijendar Mukunda authored
      The SND_SOC_AMD_SOUNDWIRE Kconfig symbol has build dependency on
      SOUNDWIRE_AMD. It gets it wrong for a configuration involving
      SND_SOC_AMD_SOUNDWIRE_LINK_BASELINE=y,SND_SOC_AMD_PS=y and SOUNDWIRE_AMD=m,
      which results in a link failure:
      
      ld: vmlinux.o: in function `amd_sdw_probe':
      >> sound/soc/amd/ps/pci-ps.c:271:(.text+0x1d51eff):
      	undefined reference to `sdw_amd_probe'
      ld: vmlinux.o: in function `acp63_sdw_machine_select':
      >> sound/soc/amd/ps/pci-ps.c:294:(.text+0x1d525d5):
      	undefined reference to `sdw_amd_get_slave_info'
      ld: vmlinux.o: in function `amd_sdw_exit':
      >> sound/soc/amd/ps/pci-ps.c:280:(.text+0x1d538ce):
      	undefined reference to `sdw_amd_exit'
      
      Add a top level check config that forbids any of the AMD ACP drivers
      with version >= 6.3 from being built-in with CONFIG_SOUNDWIRE_AMD=m.
      Move SND_AMD_ACP_CONFIG common dependency config to
      SND_SOC_AMD_ACP63_TOPLEVEL config.
      Reported-by: default avatarkernel test robot <lkp@intel.com>
      Closes: https://lore.kernel.org/oe-kbuild-all/202404061257.khJml82D-lkp@intel.com/
      Fixes: a806793f ("ASoC: amd: simplify soundwire dependencies for legacy stack")
      Signed-off-by: default avatarVijendar Mukunda <Vijendar.Mukunda@amd.com>
      Link: https://msgid.link/r/20240408180229.3287220-1-Vijendar.Mukunda@amd.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
      56437a56