Hello Greg, Here is the soundwire pull request for this cycle. Bunch of core cleanup and changes along with driver updates The following changes since commit a38fd8748464831584a19438cbb3082b5a2dab15: Linux 5.12-rc2 (2021-03-05 17:33:41 -0800) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git tags/soundwire-5.13-rc1 for you to fetch changes up to 14968dd36a507866be0edfc2a05d48c997da5d99: soundwire: intel_init: test link->cdns (2021-04-06 10:26:44 +0530) ---------------------------------------------------------------- soundwire updates for 5.13-rc1 Updates for v5.13-rc1 are: Core: - Ability to add quirks for masters - static checker cleanup for bus code Drivers: - DMI quirks for Intel controllers - static checker cleanup for drivers - add auto enumeration support qcom controller ---------------------------------------------------------------- Bard Liao (4): soundwire: add master quirks for bus clash and parity soundwire: bus: handle master quirks for bus clash and parity soundwire: intel: add master quirks for bus clash and parity soundwire: intel_init: test link->cdns Pierre-Louis Bossart (22): soundwire: Intel: introduce DMI quirks for HP Spectre x360 Convertible soundwire: Intel: add DMI quirk for Dell SKU 0A3E soundwire: intel: add missing \n in dev_err() soundwire: bandwidth_allocation: add missing \n in dev_err() soundwire: cadence: add missing \n in dev_err() soundwire: stream: add missing \n in dev_err() soundwire: qcom: add missing \n in dev_err() soundwire: bus: use correct driver name in error messages soundwire: bus: test read status soundwire: bus: use consistent tests for return values soundwire: bus: demote clock stop prepare log to dev_dbg() soundwire: bus: uniquify dev_err() for SCP_INT access soundwire: bus: remove useless initialization soundwire: generic_bandwidth_allocation: remove useless init soundwire: intel: remove useless readl soundwire: qcom: check of_property_read status soundwire: stream: remove useless initialization soundwire: stream: remove useless bus initializations soundwire: cadence_master: fix kernel-doc soundwire: add definition for DPn BlockPackingMode soundwire: generic_allocation: fix confusion between group and packing soundwire: cadence: only prepare attached devices on clock stop Rander Wang (1): soundwire: stream: fix memory leak in stream config error path Srinivas Kandagatla (16): soundwire: bus: Fix device found flag correctly dt-bindings: soundwire: qcom: clarify data port bus parameters soundwire: qcom: add support to missing transport params soundwire: qcom: set continue execution flag for ignored commands soundwire: qcom: start the clock during initialization soundwire: qcom: update register read/write routine soundwire: qcom: add support to new interrupts soundwire: export sdw_compare_devid, sdw_extract_slave_id and sdw_slave_add soundwire: qcom: add auto enumeration support soundwire: qcom: wait for enumeration to be complete in probe soundwire: add static port mapping support soundwire: qcom: update port map allocation bit mask soundwire: qcom: add static port map support soundwire: qcom: wait for fifo space to be available before read/write soundwire: qcom: cleanup internal port config indexing soundwire: qcom: handle return correctly in qcom_swrm_transport_params Vinod Koul (2): soundwire: add override addr ops soundwire: qcom: use signed variable for error return .../devicetree/bindings/soundwire/qcom,sdw.txt | 20 + drivers/soundwire/Makefile | 2 +- drivers/soundwire/bus.c | 100 +++- drivers/soundwire/bus.h | 2 + drivers/soundwire/bus_type.c | 15 +- drivers/soundwire/cadence_master.c | 16 +- drivers/soundwire/dmi-quirks.c | 96 +++ drivers/soundwire/generic_bandwidth_allocation.c | 15 +- drivers/soundwire/intel.c | 24 +- drivers/soundwire/intel_init.c | 9 + drivers/soundwire/qcom.c | 652 +++++++++++++++++---- drivers/soundwire/slave.c | 9 +- drivers/soundwire/stream.c | 28 +- include/linux/soundwire/sdw.h | 36 +- 14 files changed, 833 insertions(+), 191 deletions(-) create mode 100644 drivers/soundwire/dmi-quirks.c Thanks -- ~Vinod