Re: [U-Boot] [PATCH v2 03/10] drivers: phy: add generic PHY framework

2017-04-14 Thread Jean-Jacques Hiblot
On 14/04/2017 12:36, Simon Glass wrote: Hi Jean-Jacques, On 13 April 2017 at 08:17, Jean-Jacques Hiblot wrote: On 09/04/2017 21:27, Simon Glass wrote: Hi, On 7 April 2017 at 05:42, Jean-Jacques Hiblot wrote: The PHY framework provides a set of APIs to

Re: [U-Boot] [PATCH v2 03/10] drivers: phy: add generic PHY framework

2017-04-14 Thread Simon Glass
Hi Jean-Jacques, On 13 April 2017 at 08:17, Jean-Jacques Hiblot wrote: > > > On 09/04/2017 21:27, Simon Glass wrote: >> >> Hi, >> >> On 7 April 2017 at 05:42, Jean-Jacques Hiblot wrote: >>> >>> The PHY framework provides a set of APIs to control a PHY. This API

Re: [U-Boot] [PATCH v2 03/10] drivers: phy: add generic PHY framework

2017-04-13 Thread Jean-Jacques Hiblot
On 09/04/2017 21:27, Simon Glass wrote: Hi, On 7 April 2017 at 05:42, Jean-Jacques Hiblot wrote: The PHY framework provides a set of APIs to control a PHY. This API is derived from the linux version of the generic PHY framework. Currently the API supports init(), deinit(),

Re: [U-Boot] [PATCH v2 03/10] drivers: phy: add generic PHY framework

2017-04-09 Thread Simon Glass
Hi, On 7 April 2017 at 05:42, Jean-Jacques Hiblot wrote: > The PHY framework provides a set of APIs to control a PHY. This API is > derived from the linux version of the generic PHY framework. > Currently the API supports init(), deinit(), power_on, power_off() and > reset().

Re: [U-Boot] [PATCH v2 03/10] drivers: phy: add generic PHY framework

2017-04-08 Thread Tom Rini
On Fri, Apr 07, 2017 at 01:42:02PM +0200, Jean-Jacques Hiblot wrote: > The PHY framework provides a set of APIs to control a PHY. This API is > derived from the linux version of the generic PHY framework. > Currently the API supports init(), deinit(), power_on, power_off() and > reset(). The

[U-Boot] [PATCH v2 03/10] drivers: phy: add generic PHY framework

2017-04-07 Thread Jean-Jacques Hiblot
The PHY framework provides a set of APIs to control a PHY. This API is derived from the linux version of the generic PHY framework. Currently the API supports init(), deinit(), power_on, power_off() and reset(). The framework provides a way to get a reference to a phy from the device-tree.