Re: [U-Boot] [PATCH v3 3/3] net: designware: Add reset ctrl to driver

2018-06-12 Thread Joe Hershberger
On Wed, May 23, 2018 at 9:22 PM, Ley Foon Tan wrote: > On Wed, May 16, 2018 at 5:08 AM, Joe Hershberger > wrote: >> On Mon, May 7, 2018 at 10:19 PM, Ley Foon Tan wrote: >>> Add code to reset all reset signals as in Ethernet DT node. A reset >>> property is an optional feature, >>> so only prin

Re: [U-Boot] [PATCH v3 3/3] net: designware: Add reset ctrl to driver

2018-05-23 Thread Ley Foon Tan
On Wed, May 16, 2018 at 5:08 AM, Joe Hershberger wrote: > On Mon, May 7, 2018 at 10:19 PM, Ley Foon Tan wrote: >> Add code to reset all reset signals as in Ethernet DT node. A reset property >> is an optional feature, >> so only print out a warning and do not fail if a reset property is not >>

Re: [U-Boot] [PATCH v3 3/3] net: designware: Add reset ctrl to driver

2018-05-15 Thread Joe Hershberger
On Mon, May 7, 2018 at 10:19 PM, Ley Foon Tan wrote: > Add code to reset all reset signals as in Ethernet DT node. A reset property > is an optional feature, > so only print out a warning and do not fail if a reset property is not > present. > > If a reset property is discovered, then use it to

Re: [U-Boot] [PATCH v3 3/3] net: designware: Add reset ctrl to driver

2018-05-13 Thread Simon Glass
On 8 May 2018 at 13:19, Ley Foon Tan wrote: > Add code to reset all reset signals as in Ethernet DT node. A reset property > is an optional feature, > so only print out a warning and do not fail if a reset property is not > present. > > If a reset property is discovered, then use it to deassert,

[U-Boot] [PATCH v3 3/3] net: designware: Add reset ctrl to driver

2018-05-07 Thread Ley Foon Tan
Add code to reset all reset signals as in Ethernet DT node. A reset property is an optional feature, so only print out a warning and do not fail if a reset property is not present. If a reset property is discovered, then use it to deassert, thus bringing the IP out of reset. Signed-off-by: Ley F