From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id D68E61B4F02 for ; Mon, 20 Jan 2025 15:04:43 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1737385483; cv=none; b=ZoLo61hlcBZqiMi4r5kiRQSV0RNup9W1ir+BkfxpKtwPqnJ7J+jxvldkYytp5eWxeYjRCAEL17xadsB8ydUXLrscr8EAgNuq2DpKhAaD83S4fiumtARLnqhvua0dYvYJm5/qMHSJh7JC61Rcoapc1yNMvP6QwwDH/ICemeCmifY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1737385483; c=relaxed/simple; bh=1Ufcv7q0Kx45zlVsqA/qwprUYa2LPrwlks6f/oo78EQ=; h=Message-ID:From:To:Cc:Subject:Date; b=PTDByLZqBGkWE2IVwJArr4c2/72brAGcJ5YOvm1rEB7eXkUGLjYWieF/pv5aNFFWlcibA5Oo28bn7qSvGzyLR1ouXz9ja9INto0ZPxLKbTSAqrsMFDrAsAK31EkA6OZNXhzVtPWp03nV23/M1GqOJXyanCvwZWscl653gwdWVoM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=ijvdnLpq; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="ijvdnLpq" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 43223C4CEDD; Mon, 20 Jan 2025 15:04:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1737385483; bh=1Ufcv7q0Kx45zlVsqA/qwprUYa2LPrwlks6f/oo78EQ=; h=From:To:Cc:Subject:Date:From; b=ijvdnLpq/0qcUC4EpUyVMms+HKF8Gyh6+yyvrz96GxLhBEs9iErY2cl+Ru4gkRNCB LrwiTJ2eUsSQ5atwYY8r8xm+EHTsdZfo96pOtDP9/fOuDefNmKQhZszwLaJ81Oi+Vx w1zhM3w0gzj78eQJop2l4YMBR7a8lbYSFUzCkvHMT15rZQ4FsPvsGFwONmdmhdRdV3 S1n9cTX4XfZdQPjSuknDwqY9Gg3vLTJwuV786jWX2Sh4uWJhdbqVpdDqoa7JqJpZdK FD3zFUHiWUymT651Zmeh9cje1IPdUawDsGdbqf5mKP9Q25hz+Pp4WDLsh1/wktJk0y 10UCpYmnbL+Yg== Message-ID: <10be53e4cb210fa41ab8abacc3cd26c3.broonie@kernel.org> From: Mark Brown To: Linus Torvalds Cc: linux-kernel@vger.kernel.org, Mark Brown Subject: [GIT PULL] regmap updates for v6.14 Date: Mon, 20 Jan 2025 15:04:20 +0000 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: The following changes since commit 9d89551994a430b50c4fffcb1e617a057fa76e20: Linux 6.13-rc6 (2025-01-05 14:13:40 -0800) are available in the Git repository at: https://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git tags/regmap-v6.14 for you to fetch changes up to d406b354df909155ff0122acf80f3bc7410fa27e: Expand SoundWire MBQ register map support (2025-01-07 23:28:07 +0000) ---------------------------------------------------------------- regmap: Updates for v6.14 There's one big bit of work this time around, the addition of support for a greater range of MBQ access sizes to SoundWire devices together with support for deferred read/write. The MBQ register maps generally have variable register sizes, the variable regiseter size support allows them to be handled much more naturally within regmap with less open coding in drivers. The deferred read/write support avoids spurious errors when devices make use of a bus feature allowing them to indicate they're busy. These changes pull in a supporting SoundWire change, and there's an ASoC change building off the new code. The remainder of the changes are code cleanups. ---------------------------------------------------------------- Andy Shevchenko (5): regmap: cache: Use BITS_TO_BYTES() regmap: Use BITS_TO_BYTES() regmap: place foo / 8 and foo % 8 closer to each other regmap: cache: mapple: use kmalloc_array() to replace kmalloc() regmap: cache: rbtree: use krealloc_array() to replace krealloc() Charles Keepax (4): soundwire: SDCA: Add additional SDCA address macros ASoC: SDCA: Update list of entity_0 controls regmap: sdw-mbq: Add support for further MBQ register sizes regmap: sdw-mbq: Add support for SDCA deferred controls Mark Brown (3): regmap: Cleanup and microoptimization regmap: Merge up v6.12-rc2 Expand SoundWire MBQ register map support Richard Fitzgerald (1): regmap: regmap_multi_reg_read(): make register list const drivers/base/regmap/regcache-maple.c | 7 +- drivers/base/regmap/regcache-rbtree.c | 10 +- drivers/base/regmap/regcache.c | 2 +- drivers/base/regmap/regmap-sdw-mbq.c | 219 ++++++++++++++++++++++++++++---- drivers/base/regmap/regmap.c | 13 +- include/linux/regmap.h | 64 +++++++++- include/linux/soundwire/sdw_registers.h | 30 +++-- include/sound/sdca_function.h | 33 +++-- 8 files changed, 319 insertions(+), 59 deletions(-)