From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752201AbcGOCHM (ORCPT ); Thu, 14 Jul 2016 22:07:12 -0400 Received: from mga09.intel.com ([134.134.136.24]:31998 "EHLO mga09.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751279AbcGOCHJ (ORCPT ); Thu, 14 Jul 2016 22:07:09 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.28,365,1464678000"; d="scan'208";a="846638950" Date: Thu, 14 Jul 2016 19:11:24 -0700 From: Bin Gao To: Heikki Krogerus , Greg Kroah-Hartman , linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Bin Gao , Chandra Sekhar Anagani Subject: [PATCH 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: <20160715021123.GA128987@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 | 13 + drivers/usb/typec/Makefile | 1 + drivers/usb/typec/pd_sink.c | 967 +++++++++++++++++++++++++++++++++++++++++ include/linux/usb/pd_message.h | 371 ++++++++++++++++ include/linux/usb/pd_sink.h | 286 ++++++++++++ drivers/usb/typec/typec_wcove.c | 289 ++++++++++++++++++++++++++++++++++++---- 6 files changed, 1901 insertions(+), 26 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