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 7A5C4C4167B for ; Tue, 28 Nov 2023 21:06:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1346631AbjK1VGb (ORCPT ); Tue, 28 Nov 2023 16:06:31 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:46046 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1376266AbjK1VGW (ORCPT ); Tue, 28 Nov 2023 16:06:22 -0500 Received: from raptorengineering.com (mail.raptorengineering.com [23.155.224.40]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 081691727; Tue, 28 Nov 2023 13:06:27 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by mail.rptsys.com (Postfix) with ESMTP id 17F9682869AA; Tue, 28 Nov 2023 15:00:19 -0600 (CST) Received: from mail.rptsys.com ([127.0.0.1]) by localhost (vali.starlink.edu [127.0.0.1]) (amavisd-new, port 10032) with ESMTP id X-QXPIRuNL-D; Tue, 28 Nov 2023 15:00:18 -0600 (CST) Received: from localhost (localhost [127.0.0.1]) by mail.rptsys.com (Postfix) with ESMTP id 6A71C8286993; Tue, 28 Nov 2023 15:00:18 -0600 (CST) DKIM-Filter: OpenDKIM Filter v2.10.3 mail.rptsys.com 6A71C8286993 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=raptorengineering.com; s=B8E824E6-0BE2-11E6-931D-288C65937AAD; t=1701205218; bh=+wcbMzIvsR3kc26Wq1jK9a1ReYND3oXE+uSD8h/nw0I=; h=From:To:Date:Message-Id:MIME-Version; b=Ih2VG8xVD8j5kuROzCzBXgX6YshsWDI5Lzh80zLMVb5aT3J8rKjUkQTbdZJQrVBop BU8dY/FXR8hgMS4PvMZW/R7eGxrC2y7zyZ7Y4sKi9xujtGp1aGkLnWpHf/QlmIrrEn q01IHlsjIQsqV3mfoMhbJ99Nq82ooBLrIQUCL/Xo= X-Virus-Scanned: amavisd-new at rptsys.com Received: from mail.rptsys.com ([127.0.0.1]) by localhost (vali.starlink.edu [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id U7mLF7rpVsXY; Tue, 28 Nov 2023 15:00:18 -0600 (CST) Received: from raptor-ewks-026.2lan (5.edge.rptsys.com [23.155.224.38]) by mail.rptsys.com (Postfix) with ESMTPSA id 88B258286981; Tue, 28 Nov 2023 15:00:17 -0600 (CST) From: Shawn Anastasio To: devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, Rob Herring , Conor Dooley , Krzysztof Kozlowski , Lee Jones , Georgy Yakovlev Cc: Timothy Pearson , Shawn Anastasio Subject: [PATCH v2 0/2] Add driver for SIE Cronos control CPLD Date: Tue, 28 Nov 2023 15:00:07 -0600 Message-Id: X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hello all, This series adds a driver for the multi-function CPLD found on the Sony Interactive Entertainment Cronos x86 server platform. It provides a watchdog timer and an LED controller, both of which will depend on the MFD parent driver implemented in this series. Device tree bindings are also included. Thanks, Changes in v2: - Change SIE to Sony (SIE's parent company) to be more consistent with how other subsidiaries are treated in the kernel. - Drop SIE prefix addition patch - Address review comments to dt bindings - Add new properties to dt bindings - Fix driver build failure detected by kernel test robot Shawn Anastasio (1): dt-bindings: mfd: Add sony,cronos-cpld Timothy Pearson (1): mfd: sie-cronos-cpld: Add driver for Sony Cronos CPLD .../bindings/mfd/sony,cronos-cpld.yaml | 92 +++ MAINTAINERS | 7 + drivers/mfd/Kconfig | 11 + drivers/mfd/Makefile | 1 + drivers/mfd/sony-cronos-cpld.c | 591 ++++++++++++++++++ include/linux/mfd/sony/cronos/core.h | 17 + include/linux/mfd/sony/cronos/registers.h | 59 ++ 7 files changed, 778 insertions(+) create mode 100644 Documentation/devicetree/bindings/mfd/sony,cronos-cpld.yaml create mode 100644 drivers/mfd/sony-cronos-cpld.c create mode 100644 include/linux/mfd/sony/cronos/core.h create mode 100644 include/linux/mfd/sony/cronos/registers.h -- 2.30.2