From patchwork Fri Feb 4 15:52:39 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vincent Whitchurch X-Patchwork-Id: 1588487 Return-Path: X-Original-To: incoming-dt@patchwork.ozlabs.org Delivered-To: patchwork-incoming-dt@bilbo.ozlabs.org Authentication-Results: bilbo.ozlabs.org; dkim=pass (2048-bit key; unprotected) header.d=axis.com header.i=@axis.com header.a=rsa-sha256 header.s=axis-central1 header.b=mdLqc8j3; dkim-atps=neutral Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=vger.kernel.org (client-ip=2620:137:e000::1:20; helo=out1.vger.email; envelope-from=devicetree-owner@vger.kernel.org; receiver=) Received: from out1.vger.email (out1.vger.email [IPv6:2620:137:e000::1:20]) by bilbo.ozlabs.org (Postfix) with ESMTP id 4Jr0Rh5qC8z9s8q for ; Sat, 5 Feb 2022 02:52:48 +1100 (AEDT) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1359869AbiBDPwp (ORCPT ); Fri, 4 Feb 2022 10:52:45 -0500 Received: from smtp1.axis.com ([195.60.68.17]:59064 "EHLO smtp1.axis.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1359859AbiBDPwo (ORCPT ); Fri, 4 Feb 2022 10:52:44 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=axis.com; q=dns/txt; s=axis-central1; t=1643989964; x=1675525964; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=J7zmOHNIf3yGWYx96QvhBghS0wq+3yhqpRX+G3DifnQ=; b=mdLqc8j3JyJNT8DAvtss5w1t37jacxS0voVnims9IxqxB94HljXyfhi8 k+uZy48M7rl9kNdkcLoT4lwczFFJYymoNxbLLgyeHzda3nnWOv3jmq/1/ 66V1Mlvs3l/yhUbW5ncCzQjUlhY+74iP0PhWLGWr76uhalps12Ndp02sc h08/lJUNanhw21kqeNWbODoIHudNCuLNdqUPsGn+QVDNE47lVuogu6fNR inkdNxLE9TgwxTYDbj7+oGnfm7livuY+WIlxyFFkaUTkKm3j3AKwyehAA 8KBkzjm8CUmEunXOELnmsoXVx4sA9zHlcCPhlFKQmCBV4IEpXwRDgwxoV w==; From: Vincent Whitchurch To: , CC: , , , , Vincent Whitchurch Subject: [PATCH 0/2] regulator: Add support for TPS6286x Date: Fri, 4 Feb 2022 16:52:39 +0100 Message-ID: <20220204155241.576342-1-vincent.whitchurch@axis.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org TI's TPS62864/TPS6286/TPS62868/TPS62869 are high-frequency synchronous step-down converters controlled via I2C. There are differences in the electrical characteristics and packaging between the variants, but the register interfaces are identical. This series adds basic support for these chips. Vincent Whitchurch (2): regulator: Add bindings for TPS62864x regulator: Add support for TPS6286x .../bindings/regulator/ti,tps62864.yaml | 62 +++++++ drivers/regulator/Kconfig | 9 + drivers/regulator/Makefile | 1 + drivers/regulator/tps6286x-regulator.c | 159 ++++++++++++++++++ include/dt-bindings/regulator/ti,tps62864.h | 9 + 5 files changed, 240 insertions(+) create mode 100644 Documentation/devicetree/bindings/regulator/ti,tps62864.yaml create mode 100644 drivers/regulator/tps6286x-regulator.c create mode 100644 include/dt-bindings/regulator/ti,tps62864.h