1. 25 Jan, 2022 6 commits
    • Mark Brown's avatar
      ASoC: SOF: Intel: improve SoundWire _ADR handling · a567abf5
      Mark Brown authored
      Merge series from Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>:
      
      Make sure the device version is taken into account when selecting a
      machine driver, in addition to device manufacturer and part_id, and
      simplify code with a macro.
      a567abf5
    • Mark Brown's avatar
      ASoC: fsl-asoc-card: Add optional dt property for setting mclk-id · e6ec5a39
      Mark Brown authored
      Merge series from Ariel D'Alessandro <ariel.dalessandro@collabora.com>:
      
      Sound cards may allow using different main clock inputs. In the generic
      fsl-asoc-card driver, these values are hardcoded for each specific card
      configuration.  Let's make it more flexible, allowing setting mclk-id
      from the device-tree node.
      e6ec5a39
    • Mark Brown's avatar
      ASoC: sh: rz-ssi: Code cleanup and fixes · d2fe7fc5
      Mark Brown authored
      Merge series from Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>:
      
      Hi All,
      
      This patch series does code cleanup and fixes to the rz-ssi driver.
      
      Cheers,
      Prabhakar
      
      Lad Prabhakar (5):
        ASoC: sh: rz-ssi: Drop calling rz_ssi_pio_recv() recursively
        ASoC: sh: rz-ssi: Make the data structures available before
          registering the handlers
        ASoC: sh: rz-ssi: Drop ssi parameter from rz_ssi_stream_init()
        ASoC: sh: rz-ssi: Make return type of rz_ssi_stream_is_valid() to bool
        ASoC: sh: rz-ssi: Add functions to get/set substream pointer
      
       sound/soc/sh/rz-ssi.c | 147 ++++++++++++++++++++++++------------------
       1 file changed, 86 insertions(+), 61 deletions(-)
      
      --
      2.17.1
      d2fe7fc5
    • Mark Brown's avatar
      ASoC: Xilinx fixes · 8bcd0f12
      Mark Brown authored
      Merge series from Robert Hancock <robert.hancock@calian.com>:
      
      There are drivers in mainline for the Xilinx Audio Formatter and Xilinx
      I2S IP cores. However, because of a few issues, these were only really
      usable with Xilinx's xlnx_pl_snd_card top-level driver, which is not in
      mainline (and not suitable for mainline).
      
      The fixes in this patchset, for the simple-card layer as well as the
      Xilinx drivers, now allow these drivers to be properly used with
      simple-card without any out-of-tree support code.
      8bcd0f12
    • Mark Brown's avatar
      ASoC: SOF: Intel: don't download firmware at each resume · 01f5060e
      Mark Brown authored
      Merge series from Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>:
      
      After the first firmware boot, the firmware is capable of
      saving/restoring its context to/from IMR (Isolated Memory Region, set
      aside by BIOS on startup). This capability improves the resume speed.
      
      Due to an unexplained issue on Up2 boards, this capability is disabled
      on ApolloLake.
      
      For backwards compatibility, the regular boot flow is used with older
      firmware. For added peace of mind, a kernel module parameter is
      provided to force the regular boot flow - this shouldn't be necessary
      since we've been testing these patches for 6+ months.
      01f5060e
    • Mark Brown's avatar
      ASoC: topology: Fixes · cef982dc
      Mark Brown authored
      Merge series from Amadeusz Sławiński <amadeuszx.slawinski@linux.intel.com>:
      
      Following series performs few cleanups in topology code.
      
      First patch reduces number of prints we get from failure.
      Second allos TLV controls to be either read or write which should be
      possible as evidenced by further code in function.
      Last one cleanups after refactoring of memory handling.
      
      v2:
       - Add missing Fixes tag on second patch
       - Add Reviewed-by tag from Pierre
      
      Amadeusz Sławiński (3):
        ASoC: topology: Remove superfluous error prints
        ASoC: topology: Allow TLV control to be either read or write
        ASoC: topology: Optimize soc_tplg_dapm_graph_elems_load behavior
      
       sound/soc/soc-topology.c | 103 ++++++++++-----------------------------
       1 file changed, 27 insertions(+), 76 deletions(-)
      
      --
      2.25.1
      cef982dc
  2. 24 Jan, 2022 32 commits
  3. 23 Jan, 2022 2 commits
    • Linus Torvalds's avatar
      Linux 5.17-rc1 · e783362e
      Linus Torvalds authored
      e783362e
    • Linus Torvalds's avatar
      Merge tag 'perf-tools-for-v5.17-2022-01-22' of... · 40c84321
      Linus Torvalds authored
      Merge tag 'perf-tools-for-v5.17-2022-01-22' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux
      
      Pull more perf tools updates from Arnaldo Carvalho de Melo:
      
       - Fix printing 'phys_addr' in 'perf script'.
      
       - Fix failure to add events with 'perf probe' in ppc64 due to not
         removing leading dot (ppc64 ABIv1).
      
       - Fix cpu_map__item() python binding building.
      
       - Support event alias in form foo-bar-baz, add pmu-events and
         parse-event tests for it.
      
       - No need to setup affinities when starting a workload or attaching to
         a pid.
      
       - Use path__join() to compose a path instead of ad-hoc snprintf()
         equivalent.
      
       - Override attr->sample_period for non-libpfm4 events.
      
       - Use libperf cpumap APIs instead of accessing the internal state
         directly.
      
       - Sync x86 arch prctl headers and files changed by the new
         set_mempolicy_home_node syscall with the kernel sources.
      
       - Remove duplicate include in cpumap.h.
      
       - Remove redundant err variable.
      
      * tag 'perf-tools-for-v5.17-2022-01-22' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux:
        perf tools: Remove redundant err variable
        perf test: Add parse-events test for aliases with hyphens
        perf test: Add pmu-events test for aliases with hyphens
        perf parse-events: Support event alias in form foo-bar-baz
        perf evsel: Override attr->sample_period for non-libpfm4 events
        perf cpumap: Remove duplicate include in cpumap.h
        perf cpumap: Migrate to libperf cpumap api
        perf python: Fix cpu_map__item() building
        perf script: Fix printing 'phys_addr' failure issue
        tools headers UAPI: Sync files changed by new set_mempolicy_home_node syscall
        tools headers UAPI: Sync x86 arch prctl headers with the kernel sources
        perf machine: Use path__join() to compose a path instead of snprintf(dir, '/', filename)
        perf evlist: No need to setup affinities when disabling events for pid targets
        perf evlist: No need to setup affinities when enabling events for pid targets
        perf stat: No need to setup affinities when starting a workload
        perf affinity: Allow passing a NULL arg to affinity__cleanup()
        perf probe: Fix ppc64 'perf probe add events failed' case
      40c84321