Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751743AbdCCOnv (ORCPT ); Fri, 3 Mar 2017 09:43:51 -0500 Received: from bh-25.webhostbox.net ([208.91.199.152]:50307 "EHLO bh-25.webhostbox.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751365AbdCCOns (ORCPT ); Fri, 3 Mar 2017 09:43:48 -0500 Subject: Re: [PATCH v17 2/3] usb: USB Type-C connector class To: Mats Karrman , Heikki Krogerus , Greg KH References: <20170221142405.76299-1-heikki.krogerus@linux.intel.com> <20170221142405.76299-3-heikki.krogerus@linux.intel.com> <4b4bbffc-db02-3b54-04bc-e7de79b2d9ed@roeck-us.net> <07618170-d561-e7fe-08e0-91316c53d832@gmail.com> Cc: Felipe Balbi , Oliver Neukum , linux-kernel@vger.kernel.org, linux-usb@vger.kernel.org From: Guenter Roeck Message-ID: <56a9ca99-b43c-3a6c-dc66-ed4887e5a5cd@roeck-us.net> Date: Fri, 3 Mar 2017 06:41:40 -0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.5.1 MIME-Version: 1.0 In-Reply-To: <07618170-d561-e7fe-08e0-91316c53d832@gmail.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-Authenticated_sender: linux@roeck-us.net X-OutGoing-Spam-Status: No, score=-1.0 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - bh-25.webhostbox.net X-AntiAbuse: Original Domain - vger.kernel.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - roeck-us.net X-Get-Message-Sender-Via: bh-25.webhostbox.net: authenticated_id: linux@roeck-us.net X-Authenticated-Sender: bh-25.webhostbox.net: linux@roeck-us.net X-Source: X-Source-Args: X-Source-Dir: Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2100 Lines: 49 On 03/02/2017 11:29 PM, Mats Karrman wrote: > On 2017-03-03 04:13, Guenter Roeck wrote: > >> On 03/02/2017 07:22 AM, Mats Karrman wrote: >>> .... >>> Looking forward, one thing I have run into is how to connect the typec driver with a >>> driver for an alternate mode. E.g. the DisplayPort Alternate Mode specification >>> includes the HPD (hot plug) and HPD-INT (hot plug interrupt) signals as bits in the >>> Attention message. These signals are needed by the DisplayPort driver to know when to >>> start negotiation etc. >>> Have you got any thoughts on how to standardize such interfaces? >> That really depends on the lower level driver. For Chromebooks, where the Type-C >> Protocol Manager runs on the EC, we have an extcon driver which reports the pin states >> to the graphics drivers and connects to the Type-C class code using the Type-C class >> API. I still need to update, re-test, and publish that code. The published code in >> https://chromium.googlesource.com/chromiumos/third_party/kernel/, branch chromeos-4.4, >> shows how it can be done, though that code currently still uses the Android Type-C >> infrastructure. > > OK, thanks! > > My system is a bit different. It's an i.MX6 SoC with the typec phy and DP controller connected > > directly to the SoC and it's using DTB/OF. > Sounds quite similar to rk3399 (Samsung Chromebook Plus). I have not ported the Type-C class code to that system yet, but it does use the extcon cros_ec driver, and DP connectivity is signaled to the DP code through extcon events. > Using extcon I would have a driver that is both typec class and extcon driver at the same time > > since I can't share the access to the typec phy. Is this done elsewhere in the kernel? > See above. The code is available in the repository mentioned above. Guenter > I don't know much about the wcove PMIC and what alternate modes it might support but I > > guess that driver would end up in the same place. > > Do we need to further standardize attributes under (each) specific alternate mode to > > include things such as HPD for the DP mode? > > BR // Mats > >