From patchwork Thu Dec 5 23:24:09 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jim Wright X-Patchwork-Id: 11275501 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 6103F6C1 for ; Thu, 5 Dec 2019 23:25:42 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 48B3322525 for ; Thu, 5 Dec 2019 23:25:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726043AbfLEXZm (ORCPT ); Thu, 5 Dec 2019 18:25:42 -0500 Received: from mx0b-001b2d01.pphosted.com ([148.163.158.5]:27632 "EHLO mx0a-001b2d01.pphosted.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1725988AbfLEXZl (ORCPT ); Thu, 5 Dec 2019 18:25:41 -0500 Received: from pps.filterd (m0098413.ppops.net [127.0.0.1]) by mx0b-001b2d01.pphosted.com (8.16.0.42/8.16.0.42) with SMTP id xB5NMgc2030238; Thu, 5 Dec 2019 18:25:13 -0500 Received: from ppma01dal.us.ibm.com (83.d6.3fa9.ip4.static.sl-reverse.com [169.63.214.131]) by mx0b-001b2d01.pphosted.com with ESMTP id 2wq2t3bpbv-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Thu, 05 Dec 2019 18:25:13 -0500 Received: from pps.filterd (ppma01dal.us.ibm.com [127.0.0.1]) by ppma01dal.us.ibm.com (8.16.0.27/8.16.0.27) with SMTP id xB5NKCSc009232; Thu, 5 Dec 2019 23:25:11 GMT Received: from b03cxnp08027.gho.boulder.ibm.com (b03cxnp08027.gho.boulder.ibm.com [9.17.130.19]) by ppma01dal.us.ibm.com with ESMTP id 2wkg27fhpp-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Thu, 05 Dec 2019 23:25:11 +0000 Received: from b03ledav003.gho.boulder.ibm.com (b03ledav003.gho.boulder.ibm.com [9.17.130.234]) by b03cxnp08027.gho.boulder.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id xB5NPAwJ57082256 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Thu, 5 Dec 2019 23:25:10 GMT Received: from b03ledav003.gho.boulder.ibm.com (unknown [127.0.0.1]) by IMSVA (Postfix) with ESMTP id 387086A04D; Thu, 5 Dec 2019 23:25:10 +0000 (GMT) Received: from b03ledav003.gho.boulder.ibm.com (unknown [127.0.0.1]) by IMSVA (Postfix) with ESMTP id 95C5B6A057; Thu, 5 Dec 2019 23:25:09 +0000 (GMT) Received: from wrightj-ThinkPad-W520.rchland.ibm.com (unknown [9.10.101.53]) by b03ledav003.gho.boulder.ibm.com (Postfix) with ESMTP; Thu, 5 Dec 2019 23:25:09 +0000 (GMT) From: Jim Wright To: jdelvare@suse.com, linux@roeck-us.net, robh+dt@kernel.org, mark.rutland@arm.com, corbet@lwn.net, wrightj@linux.vnet.ibm.com, linux-hwmon@vger.kernel.org, devicetree@vger.kernel.org, linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH v2 0/2] hwmon: Add UCD90320 power sequencer chip Date: Thu, 5 Dec 2019 17:24:09 -0600 Message-Id: <20191205232411.21492-1-wrightj@linux.vnet.ibm.com> X-Mailer: git-send-email 2.17.1 X-TM-AS-GCONF: 00 X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.95,18.0.572 definitions=2019-12-05_10:2019-12-04,2019-12-05 signatures=0 X-Proofpoint-Spam-Details: rule=outbound_notspam policy=outbound score=0 suspectscore=0 adultscore=0 priorityscore=1501 bulkscore=0 malwarescore=0 lowpriorityscore=0 mlxlogscore=621 mlxscore=0 impostorscore=0 clxscore=1015 spamscore=0 phishscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.12.0-1910280000 definitions=main-1912050191 Sender: linux-hwmon-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-hwmon@vger.kernel.org Add support for TI UCD90320 power sequencer chip. Changes since v1: - Device tree bindings text file replaced with YAML schema. - Device driver files are unchanged. Jim Wright (2): dt-bindings: hwmon/pmbus: Add ti,ucd90320 power sequencer hwmon: Add support for UCD90320 Power Sequencer .../bindings/hwmon/pmbus/ti,ucd90320.yaml | 45 +++++++++++++++++++ Documentation/hwmon/ucd9000.rst | 12 ++++- drivers/hwmon/pmbus/Kconfig | 6 +-- drivers/hwmon/pmbus/ucd9000.c | 39 +++++++++++----- 4 files changed, 85 insertions(+), 17 deletions(-) create mode 100644 Documentation/devicetree/bindings/hwmon/pmbus/ti,ucd90320.yaml