From patchwork Wed Apr 17 11:47:43 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Heikki Krogerus X-Patchwork-Id: 10905273 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id E174917E0 for ; Wed, 17 Apr 2019 11:47:55 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id CBF5E2882D for ; Wed, 17 Apr 2019 11:47:55 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id BF41A28A45; Wed, 17 Apr 2019 11:47:55 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 8135E2882D for ; Wed, 17 Apr 2019 11:47:54 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731520AbfDQLrx (ORCPT ); Wed, 17 Apr 2019 07:47:53 -0400 Received: from mga11.intel.com ([192.55.52.93]:21129 "EHLO mga11.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729522AbfDQLrx (ORCPT ); Wed, 17 Apr 2019 07:47:53 -0400 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 17 Apr 2019 04:47:53 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.60,361,1549958400"; d="scan'208";a="165504287" Received: from black.fi.intel.com (HELO black.fi.intel.com.) ([10.237.72.28]) by fmsmga001.fm.intel.com with ESMTP; 17 Apr 2019 04:47:51 -0700 From: Heikki Krogerus To: Greg Kroah-Hartman Cc: Ajay Gupta , linux-usb@vger.kernel.org Subject: [PATCH v3 0/7] usb: typec: ucsi: Remaining changes for v5.2 Date: Wed, 17 Apr 2019 14:47:43 +0300 Message-Id: <20190417114750.21420-1-heikki.krogerus@linux.intel.com> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Sender: linux-usb-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-usb@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Hi Greg, This is the third version of this collection of UCSI driver related changes. I fixed the header problem I caused in Ajay's patch adding the NVIDIA alt mode support (patch 7/7), and I also took the liberty of writing the missing ABI documentation for the extra sysfs file that's created in the driver for Cypress CCGx Type-C controller (ucsi_ccg.c). v2 cover letter This is the second version of this series. The sparse warning, that was the only issue with the first version, is now fixed. The fix was made by adding the first patch ("i2c: nvidia-gpu: Supply CCGx driver the fw build info"). It add a device property for the CCGx device that the CCGx driver can use to identify the required firmware build. I also decided to include two extra patches from Ajay where NVIDIA probing driver is added for the DisplayPort alternate mode: https://www.spinics.net/lists/linux-usb/msg178847.html v1 cover letter: Here are the remaining patches from me and Ajay for the UCSI driver. I took the liberty of collecting them for you, and resending everything together. There are two patches from Ajay adding support for firmware upgrading with the Cypress CCGx controllers [1], and two patches from me enabling DisplayPort alt mode with the UCSI driver [2]. [1] https://marc.info/?l=linux-usb&m=154957412422108&w=2 [2] https://www.spinics.net/lists/linux-usb/msg178192.html Let us know if you want anything to be changed. thanks, Ajay Gupta (5): usb: typec: ucsi: ccg: add get_fw_info function i2c: nvidia-gpu: Supply CCGx driver the fw build info usb: typec: ucsi: ccg: add firmware flashing support usb: typec: displayport: Export probe and remove functions usb: typec: Add driver for NVIDIA Alt Modes Heikki Krogerus (2): usb: typec: ucsi: Preliminary support for alternate modes usb: typec: ucsi: Support for DisplayPort alt mode .../ABI/testing/sysfs-driver-ucsi-ccg | 6 + drivers/i2c/busses/i2c-nvidia-gpu.c | 7 + drivers/usb/typec/altmodes/Kconfig | 10 + drivers/usb/typec/altmodes/Makefile | 2 + drivers/usb/typec/altmodes/displayport.c | 12 +- drivers/usb/typec/altmodes/displayport.h | 8 + drivers/usb/typec/altmodes/nvidia.c | 44 + drivers/usb/typec/ucsi/Makefile | 15 +- drivers/usb/typec/ucsi/displayport.c | 306 ++++++ drivers/usb/typec/ucsi/trace.c | 12 + drivers/usb/typec/ucsi/trace.h | 26 + drivers/usb/typec/ucsi/ucsi.c | 377 ++++++-- drivers/usb/typec/ucsi/ucsi.h | 93 ++ drivers/usb/typec/ucsi/ucsi_ccg.c | 883 +++++++++++++++++- include/linux/usb/typec_dp.h | 5 + 15 files changed, 1720 insertions(+), 86 deletions(-) create mode 100644 Documentation/ABI/testing/sysfs-driver-ucsi-ccg create mode 100644 drivers/usb/typec/altmodes/displayport.h create mode 100644 drivers/usb/typec/altmodes/nvidia.c create mode 100644 drivers/usb/typec/ucsi/displayport.c