Received: by 2002:a25:1506:0:0:0:0:0 with SMTP id 6csp2850138ybv; Mon, 24 Feb 2020 12:54:58 -0800 (PST) X-Google-Smtp-Source: APXvYqxZGsOCQuCvB3Wx24YqMZkuTaDGAHUdfRE8177kAB17Uu0FxluOUwjNUdSooqt5oxlsFmis X-Received: by 2002:aca:bcd7:: with SMTP id m206mr811082oif.46.1582577698180; Mon, 24 Feb 2020 12:54:58 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1582577698; cv=none; d=google.com; s=arc-20160816; b=Hb4LdII1AE9HCkWuhYZWJj5PZUxIY/NzMbZhEc3S6MOo6zsIxl9dBC9t+oEozzSqmB wAmGZw38pKcTWVqFYbwNTblhDVw9b6ph1mXWNsRaNCiQKVASLsOdkHac7XQxxDuNlP9e JQ9YP8Wl/fn3F62mKi52ygbT7ufCNwcXxgChuqeNhR9LQs249Hq6LdepYnv69999Dc+L HAu14uOxZhllIFCo2fSuiiJngR3pzPbglp3s1wUST7q5DJ7M23Kmb4KbgsGGhhQT98I+ PbD8epd9edRXJi02gN9QbhQIJesgjlLnEHZrxknt/omk3tWmmbqUQZLxrB3z42HFn3+G hx9w== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:message-id:date:subject:cc:to:from; bh=YB6zvJewVlI9ICmSDrTCZkf1RRIhQCHCQj8bO3AgvfU=; b=EXhuWRnFQ7yDl6M9f1G1C0l8bifAXHoZhKQZFiu1N6voL5Z7RveGK6mVtH7WKrpCKK 4ElJXRrmsHX/cFPiAk/W/kEBgre3iXKx1aQacAAyCIlaWyo3XoVOMNCCmxmvq0Y8OHJo XjgWATSXgvDSvzUGrDWLC72S+mR+iKW55SU+DkrRzHZ4VnxFDmbXJTr861TPlYYUEx4j aDfBXfXDdSCW+aAxNXcCFIF7ppiiAW/HMuxC8QFMLCw5SzFdwkcfx72MO/qsr0meIdqO iQ05swRRI1IrSZhvVDylCPTt4pq/7DfhpbAhwJWvLAa1I4mTVYRukk1b2c/Pnz7hQKPo X3vg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id p7si6832372ota.299.2020.02.24.12.54.44; Mon, 24 Feb 2020 12:54:58 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727553AbgBXUyh (ORCPT + 99 others); Mon, 24 Feb 2020 15:54:37 -0500 Received: from lists.gateworks.com ([108.161.130.12]:58465 "EHLO lists.gateworks.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727168AbgBXUyh (ORCPT ); Mon, 24 Feb 2020 15:54:37 -0500 Received: from 68-189-91-139.static.snlo.ca.charter.com ([68.189.91.139] helo=tharvey.pdc.gateworks.com) by lists.gateworks.com with esmtp (Exim 4.82) (envelope-from ) id 1j6KlH-0005EU-4S; Mon, 24 Feb 2020 20:55:31 +0000 From: Tim Harvey To: Lee Jones , Jean Delvare , Guenter Roeck , linux-hwmon@vger.kernel.org, Rob Herring , Frank Rowand , devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, Robert Jones Cc: Tim Harvey Subject: [PATCH v5 0/3] Add support for the Gateworks System Controller Date: Mon, 24 Feb 2020 12:54:22 -0800 Message-Id: <1582577665-13554-1-git-send-email-tharvey@gateworks.com> X-Mailer: git-send-email 2.7.4 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This series adds support for the Gateworks System Controller used on Gateworks Laguna, Ventana, and Newport product families. The GSC is an MSP430 I2C slave controller whose firmware embeds the following features: - I/O expander (16 GPIO's emulating a PCA955x) - EEPROM (enumating AT24) - RTC (enumating DS1672) - HWMON - Interrupt controller with tamper detect, user pushbotton - Watchdog controller capable of full board power-cycle - Power Control capable of full board power-cycle see http://trac.gateworks.com/wiki/gsc for more details --- v5: - fix checkpatch issues - fix dt_binding_check issues - address feedback from v4 v4: - hwmon: move to using pwm_auto_point_{pwm,temp} for FAN PWM - hwmon: remove unncessary resolution/scaling properties for ADCs - bindings: update to yaml Documentation - removed watchdog driver v3: - removed unnecessary input driver - added wdt driver - bindings: encorporated feedback from mailng list - hwmon: - encoroprated feedback from mailng list - added support for raw ADC voltage input used in newer GSC firmware v2: - change license comment block style - remove COMPILE_TEST - fixed whitespace issues - replaced a printk with dev_err - remove DEBUG - simplify regmap_bulk_read err check - remove break after returns in switch statement - fix fan setpoint buffer address - remove unnecessary parens - consistently use struct device *dev pointer - add validation for hwmon child node props - move parsing of of to own function - use strlcpy to ensure null termination - fix static array sizes and removed unnecessary initializers - dynamically allocate channels - fix fan input label - support platform data Tim Harvey (3): dt-bindings: mfd: Add Gateworks System Controller bindings mfd: add Gateworks System Controller core driver hwmon: add Gateworks System Controller support .../devicetree/bindings/mfd/gateworks-gsc.yaml | 158 +++++++++ Documentation/hwmon/gsc-hwmon.rst | 53 +++ Documentation/hwmon/index.rst | 1 + MAINTAINERS | 11 + drivers/hwmon/Kconfig | 9 + drivers/hwmon/Makefile | 1 + drivers/hwmon/gsc-hwmon.c | 371 +++++++++++++++++++++ drivers/mfd/Kconfig | 10 + drivers/mfd/Makefile | 1 + drivers/mfd/gateworks-gsc.c | 292 ++++++++++++++++ include/linux/mfd/gsc.h | 72 ++++ include/linux/platform_data/gsc_hwmon.h | 44 +++ 12 files changed, 1023 insertions(+) create mode 100644 Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml create mode 100644 Documentation/hwmon/gsc-hwmon.rst create mode 100644 drivers/hwmon/gsc-hwmon.c create mode 100644 drivers/mfd/gateworks-gsc.c create mode 100644 include/linux/mfd/gsc.h create mode 100644 include/linux/platform_data/gsc_hwmon.h -- 2.7.4