Re: [U-Boot] [PATCH v2] reset: Add generic GPIO reset driver

2018-05-04 Thread Simon Glass
Hi Mario, On 4 May 2018 at 01:01, Mario Six wrote: > Hi Neil, > > On Fri, Apr 27, 2018 at 3:01 PM, Neil Armstrong wrote: >> Hi, >> >> On 27/04/2018 14:53, Mario Six wrote: >>> Some reset lines are implemented by toggling the line via a GPIO. >>> >>> Add a driver to properly drive such reset lin

Re: [U-Boot] [PATCH v2] reset: Add generic GPIO reset driver

2018-05-04 Thread Mario Six
Hi Neil, On Fri, Apr 27, 2018 at 3:01 PM, Neil Armstrong wrote: > Hi, > > On 27/04/2018 14:53, Mario Six wrote: >> Some reset lines are implemented by toggling the line via a GPIO. >> >> Add a driver to properly drive such reset lines. > > You are defining a "gpio-reset" binding which has always

Re: [U-Boot] [PATCH v2] reset: Add generic GPIO reset driver

2018-05-03 Thread Simon Glass
Hi Neil, On 27 April 2018 at 07:01, Neil Armstrong wrote: > Hi, > > On 27/04/2018 14:53, Mario Six wrote: >> Some reset lines are implemented by toggling the line via a GPIO. >> >> Add a driver to properly drive such reset lines. > > You are defining a "gpio-reset" binding which has always been r

Re: [U-Boot] [PATCH v2] reset: Add generic GPIO reset driver

2018-04-27 Thread Neil Armstrong
Hi, On 27/04/2018 14:53, Mario Six wrote: > Some reset lines are implemented by toggling the line via a GPIO. > > Add a driver to properly drive such reset lines. You are defining a "gpio-reset" binding which has always been rejected under Linux, so I'm not sure it's a good idea to add it in U-B

[U-Boot] [PATCH v2] reset: Add generic GPIO reset driver

2018-04-27 Thread Mario Six
Some reset lines are implemented by toggling the line via a GPIO. Add a driver to properly drive such reset lines. Signed-off-by: Mario Six --- v1 -> v2: No changes --- drivers/reset/Kconfig | 7 drivers/reset/Makefile | 1 + drivers/reset/gpio-reset.c | 100