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 X-Spam-Level: X-Spam-Status: No, score=-3.9 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 0C66FC4724C for ; Fri, 1 May 2020 18:00:02 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id C22F420787 for ; Fri, 1 May 2020 18:00:01 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=ti.com header.i=@ti.com header.b="OHM2J3if" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730144AbgEASAB (ORCPT ); Fri, 1 May 2020 14:00:01 -0400 Received: from fllv0015.ext.ti.com ([198.47.19.141]:33342 "EHLO fllv0015.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729410AbgEASAA (ORCPT ); Fri, 1 May 2020 14:00:00 -0400 Received: from fllv0034.itg.ti.com ([10.64.40.246]) by fllv0015.ext.ti.com (8.15.2/8.15.2) with ESMTP id 041Hxwhe042549; Fri, 1 May 2020 12:59:59 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1588355999; bh=qJjDwd6CKyDhY83FeTF+lldULXjVHA5iOtjwclkfDmo=; h=From:To:CC:Subject:Date; b=OHM2J3ifevHs+kTtOePXdkyHa2AqPith3lo9k3s6xfThhgzSgsPmXFG2mJI37mO4D GPxVw/YA8q8iHAqgemBe4abExtFoas6tltsiyJFhsCKc298aPUZJlYG7++Fi/pTB0e UVx9JP0zbP/uVbQdUfKZoJMxgri206ab90ZFX2LE= Received: from DFLE115.ent.ti.com (dfle115.ent.ti.com [10.64.6.36]) by fllv0034.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 041HxwFv077992 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL); Fri, 1 May 2020 12:59:58 -0500 Received: from DFLE109.ent.ti.com (10.64.6.30) by DFLE115.ent.ti.com (10.64.6.36) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.1979.3; Fri, 1 May 2020 12:59:58 -0500 Received: from fllv0039.itg.ti.com (10.64.41.19) by DFLE109.ent.ti.com (10.64.6.30) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.1979.3 via Frontend Transport; Fri, 1 May 2020 12:59:58 -0500 Received: from localhost (ileax41-snat.itg.ti.com [10.172.224.153]) by fllv0039.itg.ti.com (8.15.2/8.15.2) with ESMTP id 041Hxw4W044913; Fri, 1 May 2020 12:59:58 -0500 From: Dan Murphy To: CC: , , , Dan Murphy Subject: [PATCH v5 0/3] BQ25150/155 Batter charger Date: Fri, 1 May 2020 12:51:15 -0500 Message-ID: <20200501175118.26226-1-dmurphy@ti.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-EXCLAIMER-MD-CONFIG: e1e8a2fd-e40a-4ac6-ac9b-f7e9cc9ee180 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hello, Resending for Ricardo This v5 series picks up on the development that Dan Murphy began with the power_supply framework and bq2515x_charger driver. This series incorporates the changes suggested by Sebastien Reichel in v4. Datasheets for these devices can be found at: http://www.ti.com/lit/ds/symlink/bq25150.pdf http://www.ti.com/lit/ds/symlink/bq25155.pdf Thanks, Ricardo Dan Murphy (1): power_supply: Add additional health properties to the header Ricardo Rivera-Matos (2): Add the bindings for the bq25150 and bq25155 500mA charging ICs from Texas Instruments. power: supply: bq25150 introduce the bq25150 Documentation/ABI/testing/sysfs-class-power | 2 +- .../bindings/power/supply/bq2515x.yaml | 99 ++ drivers/power/supply/Kconfig | 8 + drivers/power/supply/Makefile | 1 + drivers/power/supply/bq2515x_charger.c | 1170 +++++++++++++++++ drivers/power/supply/power_supply_sysfs.c | 2 +- include/linux/power_supply.h | 3 + 7 files changed, 1283 insertions(+), 2 deletions(-) create mode 100644 Documentation/devicetree/bindings/power/supply/bq2515x.yaml create mode 100644 drivers/power/supply/bq2515x_charger.c -- 2.25.1