Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751819AbbDUGEr (ORCPT ); Tue, 21 Apr 2015 02:04:47 -0400 Received: from mail-bl2on0130.outbound.protection.outlook.com ([65.55.169.130]:36881 "EHLO na01-bl2-obe.outbound.protection.outlook.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1750767AbbDUGEp convert rfc822-to-8bit (ORCPT ); Tue, 21 Apr 2015 02:04:45 -0400 From: Peter Chen To: Roger Quadros CC: "gregkh@linuxfoundation.org" , "balbi@ti.com" , "stern@rowland.harvard.edu" , "dan.j.williams@intel.com" , "Jun.Li@freescale.com" , "mathias.nyman@linux.intel.com" , "tony@atomide.com" , "linux-usb@vger.kernel.org" , "linux-kernel@vger.kernel.org" , "linux-omap@vger.kernel.org" , "macpaul@gmail.com" Subject: RE: [RFC][PATCH v2 00/13] USB: OTG/DRD Core functionality Thread-Topic: [RFC][PATCH v2 00/13] USB: OTG/DRD Core functionality Thread-Index: AQHQdp+q1JjkN2hNqkayW2/a0qHnyp1VxpWA///DSACAAUzRMA== Date: Tue, 21 Apr 2015 06:04:39 +0000 Message-ID: References: <1429008120-5395-1-git-send-email-rogerq@ti.com> <20150420030531.GA30878@shlinux2> <5534AA8C.1070400@ti.com> In-Reply-To: <5534AA8C.1070400@ti.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: authentication-results: ti.com; dkim=none (message not signed) header.d=none; x-originating-ip: [192.88.170.35] x-microsoft-antispam: UriScan:;BCL:0;PCL:0;RULEID:;SRVR:BY1PR0301MB1222; x-forefront-antispam-report: BMV:1;SFV:NSPM;SFS:(10019020)(6009001)(479174004)(51704005)(76176999)(46102003)(74316001)(54356999)(50986999)(66066001)(87936001)(2656002)(77156002)(62966003)(92566002)(19580395003)(76576001)(99286002)(106116001)(110136001)(2900100001)(2950100001)(15975445007)(40100003)(122556002)(86362001)(102836002);DIR:OUT;SFP:1102;SCL:1;SRVR:BY1PR0301MB1222;H:BY1PR0301MB0855.namprd03.prod.outlook.com;FPR:;SPF:None;MLV:sfv;LANG:en; x-microsoft-antispam-prvs: x-exchange-antispam-report-test: UriScan:; x-exchange-antispam-report-cfa-test: BCL:0;PCL:0;RULEID:(601004)(5002010)(5005006);SRVR:BY1PR0301MB1222;BCL:0;PCL:0;RULEID:;SRVR:BY1PR0301MB1222; x-forefront-prvs: 0553CBB77A Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 8BIT MIME-Version: 1.0 X-OriginatorOrg: freescale.com X-MS-Exchange-CrossTenant-originalarrivaltime: 21 Apr 2015 06:04:39.9365 (UTC) X-MS-Exchange-CrossTenant-fromentityheader: Hosted X-MS-Exchange-CrossTenant-id: 710a03f5-10f6-4d38-9ff4-a80b81da590d X-MS-Exchange-Transport-CrossTenantHeadersStamped: BY1PR0301MB1222 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3172 Lines: 75 > > On 20/04/15 06:05, Peter Chen wrote: > > On Tue, Apr 14, 2015 at 01:41:47PM +0300, Roger Quadros wrote: > >> This is an attempt to centralize OTG/Dual-role functionality in the kernel. > >> As of now I've got Dual-role functionality working pretty reliably on > >> dra7-evm. xhci side of things for OTG/DRD use are fixed in > >> http://thread.gmane.org/gmane.linux.kernel/1923161 > > > > Hi Roger, > > > > Currently, there are two main problems for DRD/OTG framework. > > > > - For multi-platform supports, we may define CONFIG_USB_OTG, but the > > gadget should not add its otg descriptor to its configuration > > descriptors if it does not support one of otg features (SRP/HNP/ADP). > > Macpaul Lin's patch set [1] is the right way to do it. > > Agreed. That check (whether OTG descriptor can be added and which version > of it) has to be done at runtime and it must be added only if hardware supports > OTG _and_ kernel OTG support is enabled. > Ok, let's put this patch set in mainline first, since your patch set may need some information from it. > > - We are lack of framework to handle OTG (DRD) switch, it is great you > > are designing it. The main problem for this framework is how to handle > > DRD/OTG FSM unify. My thought is we add two paths for them separate. > > For easy, I suggest if the platform supports one of otg features, then > > it goes to fully otg fsm, else it goes to simply otg fsm (like your > > drd fsm). If you agree with it too, you may not need to add another > "dr_mode" > > value. > > It would be nice that way but unfortunately it does't work in all cases. > e.g. What if the SoC itself supports all OTG features but the board is not > designed for OTG. Or the product designer simply is not interested in full OTG > support but just dual-role. So we need some flexibility for the device > tree/platform-data to specify that. This is where a new "dr_mode" == "dual- > role" is needed. > Since "dr_mode" has been widely used now, if we add a new property for it, we need to change all drivers. Your OTG/DRD framework needs to (partial) use otg fsm, and we will not teach old driver to use it since there are some driver related stuffs. SRP/HNP/ADP support can be board level capabilities, and we may consider the otg device which does not support otg fsm (hardware finishes fsm). So I suggest we have below properties at dts: - otg-support /* fully otg support */ - otg-fsm-support /* fully otg fsm support */ - otg-ver /* eh & otg supplement version */ - adp-support /* board adp support */ - srp-support /* board srp support */ - hnp-support /* board hnp support */ Currently, if CONFIG_USB_OTG and CONFIG_USB_OTG_FSM are enabled, we will have otg fsm code (usb-otg-fsm.c). if (otg-support & otg-fsm-support) this device has fully otg support, and will follow full otg fsm transitions. else this device is drd, and will follow simple otg fsm transtions. Peter -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/