From patchwork Thu Apr 13 11:03:05 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andreas Kemnade X-Patchwork-Id: 674239 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 998F7C77B6E for ; Thu, 13 Apr 2023 11:03:23 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231237AbjDMLDW (ORCPT ); Thu, 13 Apr 2023 07:03:22 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:40774 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229484AbjDMLDV (ORCPT ); Thu, 13 Apr 2023 07:03:21 -0400 Received: from mail.andi.de1.cc (mail.andi.de1.cc [IPv6:2a01:238:4321:8900:456f:ecd6:43e:202c]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id C5AC1270D; Thu, 13 Apr 2023 04:03:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=kemnade.info; s=20220719; h=Content-Transfer-Encoding:MIME-Version: Message-Id:Date:Subject:To:From:Sender:Reply-To:Cc:Content-Type:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=oIUmYWM6zhuJ9l1gXs9MiIPZKOxoKp5Tp3WUcMY3fJE=; b=xi/qGSv9q+hDl+npZqIzjxFy2q 0boF0mmmDYYCRk1Qx/FkPxEeMNkssfDjDLGo8CGKwbpyXotH7h0INrutlWSMXpOb3hVy5T8Cb+kw5 g72YJLbziFXXIkKacjE6XZodlIUZBC5+IslTQ8UTHUsE1Yh3eMoZolnqYGst5sd3LbgfHgkVAiuTS 1auq+j71aofQTslIqo3TjaxkRVJ1fGt1GQXV1AFbIuke05inRg/ONMrvWhIcNUulY+Nu0WWf9fjIg cyUx1GYafficws1Gw/depwA2IBdPnxth0Tu7i6O7yLd+/GoavX3us6u9b2xJf710ziENL0/tKoQVK gZBNMmnQ==; Received: from p200300ccff17dc001a3da2fffebfd33a.dip0.t-ipconnect.de ([2003:cc:ff17:dc00:1a3d:a2ff:febf:d33a] helo=aktux) by mail.andi.de1.cc with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1pmujR-0003Mx-Oa; Thu, 13 Apr 2023 13:03:13 +0200 Received: from andi by aktux with local (Exim 4.96) (envelope-from ) id 1pmujR-001ItV-0T; Thu, 13 Apr 2023 13:03:13 +0200 From: Andreas Kemnade To: pavel@ucw.cz, lee@kernel.org, robh+dt@kernel.org, krzysztof.kozlowski+dt@linaro.org, andreas@kemnade.info, linux-leds@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, Matti Vaittinen Subject: [PATCH v3 0/2] leds: Add a driver for the BD2606MVV Date: Thu, 13 Apr 2023 13:03:05 +0200 Message-Id: <20230413110307.310944-1-andreas@kemnade.info> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org Add the binding description and the corresponding driver for the BD2606. Changes in V3: - binding cleanup - move active variable from long-living struct onto stack Changes in V2: - Add Datasheet link - use fwnode api - remove childnode count check, that will bail out anyways later. - add enable-gpios to binding but not to driver due to lack of testing ability Andreas Kemnade (2): dt-bindings: leds: Add ROHM BD2606MVV LED driver leds: bd2606mvv: Driver for the Rohm 6 Channel i2c LED driver .../bindings/leds/rohm,bd2606mvv.yaml | 81 ++++++++++ drivers/leds/Kconfig | 11 ++ drivers/leds/Makefile | 1 + drivers/leds/leds-bd2606mvv.c | 143 ++++++++++++++++++ 4 files changed, 236 insertions(+) create mode 100644 Documentation/devicetree/bindings/leds/rohm,bd2606mvv.yaml create mode 100644 drivers/leds/leds-bd2606mvv.c