Re: [U-Boot] [PATCH] board: freescale: ls1012ardb: Add command to switch QSPI bank

2018-08-13 Thread York Sun
On 04/11/2018 11:40 PM, Jagdish Gediya wrote: > Add command "boot_bank X" to switch the boot bank to either > 1 or 2. > > Signed-off-by: Jagdish Gediya > --- Applied to fsl-qoriq master, awaiting upstream. Thanks. York ___ U-Boot mailing list U-Boot@

Re: [U-Boot] [PATCH] board: freescale: ls1012ardb: Add command to switch QSPI bank

2018-07-31 Thread Calvin Johnson
Hi York, > -Original Message- > From: York Sun > Sent: Tuesday, July 31, 2018 8:37 PM > To: Calvin Johnson ; Scott Wood > ; Calvin Johnson > Cc: Jagdish Gediya ; U-Boot Mailing List b...@lists.denx.de> > Subject: Re: [U-Boot] [PATCH] board: freescale: ls1012ardb:

Re: [U-Boot] [PATCH] board: freescale: ls1012ardb: Add command to switch QSPI bank

2018-07-31 Thread York Sun
On 04/19/2018 06:53 PM, Calvin Johnson wrote: >> >>> would be better. What this patch currently does can be done with >>> simple env vars, like : >>> >>> setenv boot_bank_1 'i2c mw 0x24 0x7 0xfc; i2c mw 0x24 0x3 0xf5' >>> setenv boot_bank_2 'i2c mw 0x24 0x7 0xfc; i2c mw 0x24 0x3 0xf4' >> >> ...if t

Re: [U-Boot] [PATCH] board: freescale: ls1012ardb: Add command to switch QSPI bank

2018-04-20 Thread Scott Wood
; To: Calvin Johnson > > Cc: U-Boot Mailing List > > Subject: Re: [U-Boot] [PATCH] board: freescale: ls1012ardb: Add command to > > switch QSPI bank > > > > On Thu, 2018-04-19 at 14:09 +0530, Calvin Johnson wrote: > > > On Thu, Apr 19, 2018 at 12:17 PM, S

Re: [U-Boot] [PATCH] board: freescale: ls1012ardb: Add command to switch QSPI bank

2018-04-19 Thread Prabhakar Kushwaha
Thanks Scott for reviewing this patch > -Original Message- > From: U-Boot [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Scott > Wood > Sent: Friday, April 20, 2018 6:40 AM > To: Calvin Johnson > Cc: U-Boot Mailing List > Subject: Re: [U-Boot] [PATCH] board:

Re: [U-Boot] [PATCH] board: freescale: ls1012ardb: Add command to switch QSPI bank

2018-04-19 Thread Calvin Johnson
> -Original Message- > From: Scott Wood [mailto:o...@buserror.net] > Sent: Friday, April 20, 2018 6:40 AM > To: Calvin Johnson > Cc: Jagdish Gediya ; U-Boot Mailing List b...@lists.denx.de>; Calvin Johnson ; York Sun > > Subject: Re: [U-Boot] [PATCH] board: fr

Re: [U-Boot] [PATCH] board: freescale: ls1012ardb: Add command to switch QSPI bank

2018-04-19 Thread Scott Wood
On Thu, 2018-04-19 at 14:09 +0530, Calvin Johnson wrote: > On Thu, Apr 19, 2018 at 12:17 PM, Scott Wood wrote: > > On Mon, 2018-04-16 at 08:40 +0530, Calvin Johnson wrote: > > > On Fri, Apr 13, 2018 at 12:18 AM, Jagdish Gediya > > > > > > wrote: > > > > Add command "boot_bank X" to switch the boo

Re: [U-Boot] [PATCH] board: freescale: ls1012ardb: Add command to switch QSPI bank

2018-04-19 Thread Calvin Johnson
On Thu, Apr 19, 2018 at 12:17 PM, Scott Wood wrote: > On Mon, 2018-04-16 at 08:40 +0530, Calvin Johnson wrote: >> On Fri, Apr 13, 2018 at 12:18 AM, Jagdish Gediya >> wrote: >> > Add command "boot_bank X" to switch the boot bank to either >> > 1 or 2. >> >> Are these functions required as this can

Re: [U-Boot] [PATCH] board: freescale: ls1012ardb: Add command to switch QSPI bank

2018-04-18 Thread Scott Wood
On Mon, 2018-04-16 at 08:40 +0530, Calvin Johnson wrote: > On Fri, Apr 13, 2018 at 12:18 AM, Jagdish Gediya > wrote: > > Add command "boot_bank X" to switch the boot bank to either > > 1 or 2. > > Are these functions required as this can be handled by new env vars to > switch banks? If you're go

Re: [U-Boot] [PATCH] board: freescale: ls1012ardb: Add command to switch QSPI bank

2018-04-15 Thread Calvin Johnson
On Fri, Apr 13, 2018 at 12:18 AM, Jagdish Gediya wrote: > Add command "boot_bank X" to switch the boot bank to either > 1 or 2. Are these functions required as this can be handled by new env vars to switch banks? > > Signed-off-by: Jagdish Gediya > --- > board/freescale/ls1012ardb/ls1012ardb.c

[U-Boot] [PATCH] board: freescale: ls1012ardb: Add command to switch QSPI bank

2018-04-11 Thread Jagdish Gediya
Add command "boot_bank X" to switch the boot bank to either 1 or 2. Signed-off-by: Jagdish Gediya --- board/freescale/ls1012ardb/ls1012ardb.c | 85 + 1 file changed, 85 insertions(+) diff --git a/board/freescale/ls1012ardb/ls1012ardb.c b/board/freescale/ls1012ar