From patchwork Fri Aug 18 15:40:42 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lee Jones X-Patchwork-Id: 714799 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 63638C73C66 for ; Fri, 18 Aug 2023 15:41:47 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1344995AbjHRPlO (ORCPT ); Fri, 18 Aug 2023 11:41:14 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:59880 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1378256AbjHRPku (ORCPT ); Fri, 18 Aug 2023 11:40:50 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 9EB862D58; Fri, 18 Aug 2023 08:40:49 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 3355D60202; Fri, 18 Aug 2023 15:40:49 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 10EB2C433CB; Fri, 18 Aug 2023 15:40:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1692373248; bh=Sza0iKQ79SrdT2ka/ImFhnwgczlzzbMIPQJckqJEnlk=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=OJHylxsXmbe1O7TRHgPYtHiOQ9+g/EXekAGzeh2ERlsL2Bupn0cr+OLi0AbrpV7d0 YNpGNMcqqxYn1v/S/IzQBiKAlW4aOFCnojT2+FZwKbdbHRhsAQq5b3HiNYa86JnsxU txVFGqvzAR/RZk+b9T6l2rThO7XoKkFiQ6ONypgOgntC6iMnZGe/rUzk0eZMXG6CjN rpIKGK7EDt97PiHEiDaleqLPnGQI74L5rsBBq2LKC19XR+E0P8Lzn4LfIRYqMTEX2b usCuAJ34ayhHYTF8rR0IlqUE4nCno3KFRZoMUdhWMk0fYEzZ9uApXTFW6g1HI1KMn/ 5bcv1WmHriA9w== Date: Fri, 18 Aug 2023 16:40:42 +0100 From: Lee Jones To: Charles Keepax Cc: broonie@kernel.org, robh+dt@kernel.org, krzysztof.kozlowski+dt@linaro.org, conor+dt@kernel.org, linus.walleij@linaro.org, vkoul@kernel.org, lgirdwood@gmail.com, yung-chuan.liao@linux.intel.com, sanyog.r.kale@intel.com, pierre-louis.bossart@linux.intel.com, alsa-devel@alsa-project.org, patches@opensource.cirrus.com, devicetree@vger.kernel.org, linux-gpio@vger.kernel.org, linux-spi@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [GIT PULL] Immutable branch between MFD, Pinctrl and soundwire due for the v6.6 merge window Message-ID: <20230818154042.GX986605@google.com> References: <20230804104602.395892-1-ckeepax@opensource.cirrus.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20230804104602.395892-1-ckeepax@opensource.cirrus.com> Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org Good afternoon, The following changes since commit 06c2afb862f9da8dc5efa4b6076a0e48c3fbaaa5: Linux 6.5-rc1 (2023-07-09 13:53:13 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git ib-mfd-pinctrl-soundwire-v6.6 for you to fetch changes up to d5282a53929791071b17dde3eed52e40f76b101c: pinctrl: cs42l43: Add support for the cs42l43 (2023-08-17 12:06:11 +0100) ---------------------------------------------------------------- Immutable branch between MFD, Pinctrl and soundwire due for the v6.6 merge window ---------------------------------------------------------------- Charles Keepax (3): dt-bindings: mfd: cirrus,cs42l43: Add initial DT binding mfd: cs42l43: Add support for cs42l43 core driver pinctrl: cs42l43: Add support for the cs42l43 Lucas Tanure (1): soundwire: bus: Allow SoundWire peripherals to register IRQ handlers .../devicetree/bindings/sound/cirrus,cs42l43.yaml | 313 ++++++ MAINTAINERS | 3 + drivers/mfd/Kconfig | 23 + drivers/mfd/Makefile | 3 + drivers/mfd/cs42l43-i2c.c | 98 ++ drivers/mfd/cs42l43-sdw.c | 239 ++++ drivers/mfd/cs42l43.c | 1188 ++++++++++++++++++++ drivers/mfd/cs42l43.h | 28 + drivers/pinctrl/cirrus/Kconfig | 11 + drivers/pinctrl/cirrus/Makefile | 2 + drivers/pinctrl/cirrus/pinctrl-cs42l43.c | 609 ++++++++++ drivers/soundwire/bus.c | 32 + drivers/soundwire/bus_type.c | 12 + include/linux/mfd/cs42l43-regs.h | 1184 +++++++++++++++++++ include/linux/mfd/cs42l43.h | 102 ++ include/linux/soundwire/sdw.h | 9 + 16 files changed, 3856 insertions(+) create mode 100644 Documentation/devicetree/bindings/sound/cirrus,cs42l43.yaml create mode 100644 drivers/mfd/cs42l43-i2c.c create mode 100644 drivers/mfd/cs42l43-sdw.c create mode 100644 drivers/mfd/cs42l43.c create mode 100644 drivers/mfd/cs42l43.h create mode 100644 drivers/pinctrl/cirrus/pinctrl-cs42l43.c create mode 100644 include/linux/mfd/cs42l43-regs.h create mode 100644 include/linux/mfd/cs42l43.h