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=-11.7 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS,UNPARSEABLE_RELAY,USER_AGENT_GIT autolearn=ham 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 E7805C48BC2 for ; Mon, 21 Jun 2021 17:56:13 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id D3E50613AB for ; Mon, 21 Jun 2021 17:56:13 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233037AbhFUR6X (ORCPT ); Mon, 21 Jun 2021 13:58:23 -0400 Received: from bhuna.collabora.co.uk ([46.235.227.227]:51002 "EHLO bhuna.collabora.co.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232995AbhFUR4S (ORCPT ); Mon, 21 Jun 2021 13:56:18 -0400 Received: from [127.0.0.1] (localhost [127.0.0.1]) (Authenticated sender: sre) with ESMTPSA id B88371F42680 Received: by jupiter.universe (Postfix, from userid 1000) id 06D1E4800C6; Mon, 21 Jun 2021 19:54:00 +0200 (CEST) From: Sebastian Reichel To: Mark Brown , Rob Herring Cc: Arnd Bergmann , Greg Kroah-Hartman , Shawn Guo , Sascha Hauer , Fabio Estevam , Ian Ray , linux-kernel@vger.kernel.org, linux-spi@vger.kernel.org, devicetree@vger.kernel.org, kernel@collabora.com, Sebastian Reichel Subject: [PATCHv5 0/5] GE Healthcare PPD firmware upgrade driver for ACHC Date: Mon, 21 Jun 2021 19:53:54 +0200 Message-Id: <20210621175359.126729-1-sebastian.reichel@collabora.com> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-spi@vger.kernel.org Hi, The PPD has a secondary processor (NXP Kinetis K20), which can be programmed from the main system. It is connected to the main processor by having it's EzPort interface connected to the SPI bus. Currently both (normal and EzPort) interfaces are simply exposed to userspace. This does not work for the EzPort, since EzPort usage requires a device reset. The proper solution is to do the flashing from kernel space with properly timed toggling of EzPort chip-select and reset line. In PATCHv2 it was suggested, that this should happen via an SPI ancillary device, so this is how it has been implemented now. Changes since PATCHv4: * https://lore.kernel.org/lkml/20210609151235.48964-1-sebastian.reichel@collabora.com/ * Add Rob's Acked-by to ge-achc binding update * Don't use of_property_read_u32_index() in of_spi_parse_dt() * Don't build separate module for EzPort code * Use GPL2-only for the header * ACHC_MAX_FREQ -> ACHC_MAX_FREQ_HZ * Only accept '1' for the sysfs files, not any data * Update sysfs file documentation * Rebased to spi-next tree (b8f9dce0f4eb) Changes since PATCHv3: * https://lore.kernel.org/lkml/20210528113346.37137-1-sebastian.reichel@collabora.com/ * Add Rob's Acked-by to 2nd patch * use GPL-2-only instead of GPL-2+ * use %zu for printing a size_t * use driver's .dev_groups to register sysfs group * Add sysfs property documentation * split EzPort and ACHC drivers into separate patches * drop minItems/maxItems from achc binding, which seems to fix the problems reported by dt_binding_check. The information of two items being required is implied by the explicit item list. * drop spidev functionality for the main SPI interface. The current firmware communicates via UART and adding spidev support is complex. If future firmware releases start using it, spidev support for the main interface can be added later. Changes since PATCHv2: * https://lore.kernel.org/lkml/20180327135259.30890-1-sebastian.reichel@collabora.co.uk/ * add SPI core support for ancillary devices * modify ACHC binding to make use of ancillary device * rewrite driver to use ancillary device * rebased to 5.13-rc1 Changes since PATCHv1: * https://lore.kernel.org/lkml/20180320172201.2065-1-sebastian.reichel@collabora.co.uk/ * split DT binding update into its own patch * add sysfs attribute documentation * fix problem reported by kbuild test robot -- Sebastian Sebastian Reichel (5): spi: add ancillary device support spi: dt-bindings: support devices with multiple chipselects dt-bindings: misc: ge-achc: Convert to DT schema format ARM: dts: imx53-ppd: Fix ACHC entry misc: gehc-achc: new driver .../ABI/testing/sysfs-driver-ge-achc | 14 + .../devicetree/bindings/misc/ge-achc.txt | 26 - .../devicetree/bindings/misc/ge-achc.yaml | 65 +++ .../bindings/spi/spi-controller.yaml | 7 +- arch/arm/boot/dts/imx53-ppd.dts | 23 +- drivers/misc/Kconfig | 11 + drivers/misc/Makefile | 1 + drivers/misc/gehc-achc.c | 136 +++++ drivers/misc/nxp-ezport.c | 469 ++++++++++++++++++ drivers/misc/nxp-ezport.h | 9 + drivers/spi/spi.c | 137 +++-- drivers/spi/spidev.c | 1 - include/linux/spi/spi.h | 2 + 13 files changed, 831 insertions(+), 70 deletions(-) create mode 100644 Documentation/ABI/testing/sysfs-driver-ge-achc delete mode 100644 Documentation/devicetree/bindings/misc/ge-achc.txt create mode 100644 Documentation/devicetree/bindings/misc/ge-achc.yaml create mode 100644 drivers/misc/gehc-achc.c create mode 100644 drivers/misc/nxp-ezport.c create mode 100644 drivers/misc/nxp-ezport.h -- 2.30.2