From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757708AbcGZS20 (ORCPT ); Tue, 26 Jul 2016 14:28:26 -0400 Received: from mga04.intel.com ([192.55.52.120]:26239 "EHLO mga04.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752452AbcGZS2Y (ORCPT ); Tue, 26 Jul 2016 14:28:24 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.28,426,1464678000"; d="scan'208";a="1014304072" Date: Tue, 26 Jul 2016 11:32:45 -0700 From: Bin Gao To: Heikki Krogerus , Felipe Balbi , Greg Kroah-Hartman , linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Bin Gao , Chandra Sekhar Anagani , Pranav Tipnis Subject: [PATCH v2 0/2] usb: typec: Introduce USB PD sink state machine driver and add PD sink support for Intel BXT PMIC Type-C phy Message-ID: <20160726183245.GD211765@worksta> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This series introduce a USB PD(Power Delivery) sink port simple state machine driver and adds USB PD sink port support for Intel BXT Whiskey Cove PMIC Type-C phy driver. This series depends on these two patches: https://lkml.org/lkml/2016/6/29/349 https://lkml.org/lkml/2016/6/29/350 Bin Gao (1): usb: typec: Add USB Power Delivery sink port support Chandra Sekhar Anagani (1): usb: typec: add PD sink port support for Intel Whiskey Cove PMIC USB Type-C PHY driver drivers/usb/typec/Kconfig | 11 + drivers/usb/typec/Makefile | 1 + drivers/usb/typec/pd_sink.c | 908 +++++++++++++++++++++++++++++++++++++++++ include/linux/usb/pd_message.h | 369 +++++++++++++++++ include/linux/usb/pd_sink.h | 299 ++++++++++++++ drivers/usb/typec/typec_wcove.c | 309 ++++++++++++++++++++++++++++++++++++---- 6 files changed, 1873 insertions(+), 24 deletions(-) create mode 100644 drivers/usb/typec/pd_sink.c create mode 100644 include/linux/usb/pd_message.h create mode 100644 include/linux/usb/pd_sink.h -- 1.9.1