Re: [U-Boot] [PATCH v3 1/3] cmd_sf: add 'release' command

2015-11-24 Thread Valentin Longchamp
On 25/11/2015 04:52, Stefan Roese wrote: > Hi Valentine, > > On 24.11.2015 17:02, Valentin Longchamp wrote: > > > > Does your board use driver model from SPI and SPI flash? If not I > think that should be the first step. > No we don't. Could you please elaborate on how thi

Re: [U-Boot] [PATCH v3 1/3] cmd_sf: add 'release' command

2015-11-24 Thread Stefan Roese
Hi Valentine, On 24.11.2015 17:02, Valentin Longchamp wrote: Does your board use driver model from SPI and SPI flash? If not I think that should be the first step. No we don't. Could you please elaborate on how this would cover this use case and should be the first step ? I am open to oth

Re: [U-Boot] [PATCH v3 1/3] cmd_sf: add 'release' command

2015-11-24 Thread Valentin Longchamp
On 24/11/2015 02:49, Simon Glass wrote: > Hi Valentine, > > On 23 November 2015 at 02:19, Valentin Longchamp > wrote: >> Hi Simon, >> >> On 20/11/2015 18:19, Simon Glass wrote: >>> Hi, >>> >>> On 20 November 2015 at 03:13, Valentin Longchamp >>> wrote: On 19/11/2015 17:57, Jagan Teki wrote:

Re: [U-Boot] [PATCH v3 1/3] cmd_sf: add 'release' command

2015-11-23 Thread Simon Glass
Hi Valentine, On 23 November 2015 at 02:19, Valentin Longchamp wrote: > Hi Simon, > > On 20/11/2015 18:19, Simon Glass wrote: >> Hi, >> >> On 20 November 2015 at 03:13, Valentin Longchamp >> wrote: >>> On 19/11/2015 17:57, Jagan Teki wrote: On 13 November 2015 at 18:55, Valentin Longchamp >

Re: [U-Boot] [PATCH v3 1/3] cmd_sf: add 'release' command

2015-11-23 Thread Valentin Longchamp
Hi Simon, On 20/11/2015 18:19, Simon Glass wrote: > Hi, > > On 20 November 2015 at 03:13, Valentin Longchamp > wrote: >> On 19/11/2015 17:57, Jagan Teki wrote: >>> On 13 November 2015 at 18:55, Valentin Longchamp >>> wrote: The release command is the pendant of the probe command. This comm

Re: [U-Boot] [PATCH v3 1/3] cmd_sf: add 'release' command

2015-11-20 Thread Simon Glass
Hi, On 20 November 2015 at 03:13, Valentin Longchamp wrote: > On 19/11/2015 17:57, Jagan Teki wrote: >> On 13 November 2015 at 18:55, Valentin Longchamp >> wrote: >>> The release command is the pendant of the probe command. This command >>> allows to call spi_flash_free from the command line. Th

Re: [U-Boot] [PATCH v3 1/3] cmd_sf: add 'release' command

2015-11-20 Thread Valentin Longchamp
On 19/11/2015 17:57, Jagan Teki wrote: > On 13 November 2015 at 18:55, Valentin Longchamp > wrote: >> The release command is the pendant of the probe command. This command >> allows to call spi_flash_free from the command line. This may be >> necessary for some boards where sf probe does change th

Re: [U-Boot] [PATCH v3 1/3] cmd_sf: add 'release' command

2015-11-19 Thread Jagan Teki
On 13 November 2015 at 18:55, Valentin Longchamp wrote: > The release command is the pendant of the probe command. This command > allows to call spi_flash_free from the command line. This may be > necessary for some boards where sf probe does change the state of the > hardware (like with some pin

[U-Boot] [PATCH v3 1/3] cmd_sf: add 'release' command

2015-11-13 Thread Valentin Longchamp
The release command is the pendant of the probe command. This command allows to call spi_flash_free from the command line. This may be necessary for some boards where sf probe does change the state of the hardware (like with some pin multiplexing changes for instance). Signed-off-by: Valentin Long