From mboxrd@z Thu Jan 1 00:00:00 1970 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 1F217C77B7A for ; Wed, 24 May 2023 11:39:21 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230169AbjEXLjU (ORCPT ); Wed, 24 May 2023 07:39:20 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:55814 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229757AbjEXLjT (ORCPT ); Wed, 24 May 2023 07:39:19 -0400 Received: from mta-01.yadro.com (mta-02.yadro.com [89.207.88.252]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 7D181C5; Wed, 24 May 2023 04:39:18 -0700 (PDT) Received: from mta-01.yadro.com (localhost.localdomain [127.0.0.1]) by mta-01.yadro.com (Proxmox) with ESMTP id C54313425EE; Wed, 24 May 2023 14:39:16 +0300 (MSK) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yadro.com; h=cc :cc:content-transfer-encoding:content-type:content-type:date :from:from:message-id:mime-version:reply-to:subject:subject:to :to; s=mta-01; bh=BFcrxYKqiW13jQD+5/oTqU0Fja8fey6ujfGMR+aadbA=; b= NcmUeGM6gWZPpoF8GETKzqIrFOHLIoCwgkonTFE57sFOV4brDAD9lRezVYW1l55s hTC1VhGXrPJkaMu4gceABtQw2ll15Pb6Q+wfLTJUGfmyx6ErXr4yNlX9YlSaxYja AqV7XKxlGXwT5aCUWm039M6NF/wPXVvhYD1fi2sYCb0= Received: from T-EXCH-08.corp.yadro.com (unknown [172.17.10.14]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mta-01.yadro.com (Proxmox) with ESMTPS id BB4523425CB; Wed, 24 May 2023 14:39:16 +0300 (MSK) Received: from xpad.Home (10.199.28.63) by T-EXCH-08.corp.yadro.com (172.17.11.58) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384) id 15.2.1118.9; Wed, 24 May 2023 14:39:16 +0300 From: Vladimir Barinov To: Lee Jones , Pavel Machek , Rob Herring , Krzysztof Kozlowski CC: , , , Vladimir Barinov , Subject: [PATCH 0/2] leds: add Awinic AW2016 driver Date: Wed, 24 May 2023 14:39:10 +0300 Message-ID: <20230524113910.196321-1-v.barinov@yadro.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Originating-IP: [10.199.28.63] X-ClientProxiedBy: T-EXCH-01.corp.yadro.com (172.17.10.101) To T-EXCH-08.corp.yadro.com (172.17.11.58) Precedence: bulk List-ID: X-Mailing-List: linux-leds@vger.kernel.org Hello, This adds the folowing: - LED driver for AW2016 chip - Document Awinic AW2016 DT bindings Datasheet file can be found here: https://www.awinic.com/en/productDetail/AW2026DNR#tech-docs Vladimir Barinov (2): [1/2] leds: Add Awinic AW2016 LED driver [2/2] dt-bindings: leds: Document Awinic AW2016 bindings --- This patchset is against the 'kernel/git/lee/leds.git' repo, 'for-leds-next' branch. Documentation/devicetree/bindings/leds/awinic,aw2026.yaml | 92 ++ drivers/leds/Kconfig | 10 drivers/leds/Makefile | 1 drivers/leds/leds-aw2026.c | 578 ++++++++++++++ 4 files changed, 681 insertions(+)