Re: [PATCH v2 2/7] usb: dwc3: adapt dwc3 core to use Generic PHY Framework

2013-12-03 Thread Kishon Vijay Abraham I
Hi, On Tuesday 03 December 2013 05:29 PM, Heikki Krogerus wrote: > Hi Kishon, > > On Wed, Oct 16, 2013 at 01:24:12AM +0530, Kishon Vijay Abraham I wrote: >> +count = of_property_match_string(node, "phy-names", "usb2-phy"); >> +if (count >= 0 || (pdata && pdata->usb2_generic_phy)) { >> +

Re: [PATCH v2 2/7] usb: dwc3: adapt dwc3 core to use Generic PHY Framework

2013-12-03 Thread Heikki Krogerus
Hi Kishon, On Wed, Oct 16, 2013 at 01:24:12AM +0530, Kishon Vijay Abraham I wrote: > + count = of_property_match_string(node, "phy-names", "usb2-phy"); > + if (count >= 0 || (pdata && pdata->usb2_generic_phy)) { > + dwc->usb2_generic_phy = devm_phy_get(dev, "usb2-phy"); > +

Re: [PATCH v2 2/7] usb: dwc3: adapt dwc3 core to use Generic PHY Framework

2013-10-21 Thread Roger Quadros
On 10/21/2013 02:55 PM, Kishon Vijay Abraham I wrote: > Hi, > > On Wednesday 16 October 2013 07:53 PM, Roger Quadros wrote: >> On 10/16/2013 04:52 PM, Kishon Vijay Abraham I wrote: >>> Hi, >>> >>> On Wednesday 16 October 2013 06:48 PM, Roger Quadros wrote: Hi, On 10/15/2013 10:54 PM

Re: [PATCH v2 2/7] usb: dwc3: adapt dwc3 core to use Generic PHY Framework

2013-10-21 Thread Kishon Vijay Abraham I
Hi, On Wednesday 16 October 2013 07:53 PM, Roger Quadros wrote: > On 10/16/2013 04:52 PM, Kishon Vijay Abraham I wrote: >> Hi, >> >> On Wednesday 16 October 2013 06:48 PM, Roger Quadros wrote: >>> Hi, >>> >>> On 10/15/2013 10:54 PM, Kishon Vijay Abraham I wrote: Adapted dwc3 core to use the G

Re: [PATCH v2 2/7] usb: dwc3: adapt dwc3 core to use Generic PHY Framework

2013-10-16 Thread Roger Quadros
On 10/16/2013 04:52 PM, Kishon Vijay Abraham I wrote: > Hi, > > On Wednesday 16 October 2013 06:48 PM, Roger Quadros wrote: >> Hi, >> >> On 10/15/2013 10:54 PM, Kishon Vijay Abraham I wrote: >>> Adapted dwc3 core to use the Generic PHY Framework. So for init, exit, >>> power_on and power_off the f

Re: [PATCH v2 2/7] usb: dwc3: adapt dwc3 core to use Generic PHY Framework

2013-10-16 Thread Kishon Vijay Abraham I
Hi, On Wednesday 16 October 2013 06:48 PM, Roger Quadros wrote: > Hi, > > On 10/15/2013 10:54 PM, Kishon Vijay Abraham I wrote: >> Adapted dwc3 core to use the Generic PHY Framework. So for init, exit, >> power_on and power_off the following APIs are used phy_init(), phy_exit(), >> phy_power_on()

Re: [PATCH v2 2/7] usb: dwc3: adapt dwc3 core to use Generic PHY Framework

2013-10-16 Thread Roger Quadros
Hi, On 10/15/2013 10:54 PM, Kishon Vijay Abraham I wrote: > Adapted dwc3 core to use the Generic PHY Framework. So for init, exit, > power_on and power_off the following APIs are used phy_init(), phy_exit(), > phy_power_on() and phy_power_off(). > > However using the old USB phy library wont be r

[PATCH v2 2/7] usb: dwc3: adapt dwc3 core to use Generic PHY Framework

2013-10-15 Thread Kishon Vijay Abraham I
Adapted dwc3 core to use the Generic PHY Framework. So for init, exit, power_on and power_off the following APIs are used phy_init(), phy_exit(), phy_power_on() and phy_power_off(). However using the old USB phy library wont be removed till the PHYs of all other SoC's using dwc3 core is adapted to