All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] board: freescale: ls1012ardb: Add command to switch QSPI bank
@ 2018-04-12 18:48 Jagdish Gediya
  2018-04-16  3:10 ` Calvin Johnson
  2018-08-13 16:20 ` York Sun
  0 siblings, 2 replies; 11+ messages in thread
From: Jagdish Gediya @ 2018-04-12 18:48 UTC (permalink / raw)
  To: u-boot

Add command "boot_bank X" to switch the boot bank to either
1 or 2.

Signed-off-by: Jagdish Gediya <jagdish.gediya@nxp.com>
---
 board/freescale/ls1012ardb/ls1012ardb.c | 85 +++++++++++++++++++++++++++++++++
 1 file changed, 85 insertions(+)

diff --git a/board/freescale/ls1012ardb/ls1012ardb.c b/board/freescale/ls1012ardb/ls1012ardb.c
index ed5a8e6..4d4f6fb 100644
--- a/board/freescale/ls1012ardb/ls1012ardb.c
+++ b/board/freescale/ls1012ardb/ls1012ardb.c
@@ -26,6 +26,9 @@
 
 DECLARE_GLOBAL_DATA_PTR;
 
+#define BOOT_FROM_UPPER_BANK	0x2
+#define BOOT_FROM_LOWER_BANK	0x1
+
 int checkboard(void)
 {
 #ifdef CONFIG_TARGET_LS1012ARDB
@@ -212,3 +215,85 @@ int ft_board_setup(void *blob, bd_t *bd)
 
 	return 0;
 }
+
+static int switch_to_bank1(void)
+{
+	u8 data;
+	int ret;
+
+	i2c_set_bus_num(0);
+
+	data = 0xf4;
+	ret = i2c_write(0x24, 0x3, 1, &data, 1);
+	if (ret) {
+		printf("i2c write error to chip : %u, addr : %u, data : %u\n",
+		       0x24, 0x3, data);
+	}
+
+	return ret;
+}
+
+static int switch_to_bank2(void)
+{
+	u8 data;
+	int ret;
+
+	i2c_set_bus_num(0);
+
+	data = 0xfc;
+	ret = i2c_write(0x24, 0x7, 1, &data, 1);
+	if (ret) {
+		printf("i2c write error to chip : %u, addr : %u, data : %u\n",
+		       0x24, 0x7, data);
+		goto err;
+	}
+
+	data = 0xf5;
+	ret = i2c_write(0x24, 0x3, 1, &data, 1);
+	if (ret) {
+		printf("i2c write error to chip : %u, addr : %u, data : %u\n",
+		       0x24, 0x3, data);
+	}
+err:
+	return ret;
+}
+
+static int convert_flash_bank(int bank)
+{
+	int ret = 0;
+
+	switch (bank) {
+	case BOOT_FROM_UPPER_BANK:
+		ret = switch_to_bank2();
+		break;
+	case BOOT_FROM_LOWER_BANK:
+		ret = switch_to_bank1();
+		break;
+	default:
+		ret = CMD_RET_USAGE;
+		break;
+	};
+
+	return ret;
+}
+
+static int flash_bank_cmd(cmd_tbl_t *cmdtp, int flag, int argc,
+			  char * const argv[])
+{
+	if (argc != 2)
+		return CMD_RET_USAGE;
+	if (strcmp(argv[1], "1") == 0)
+		convert_flash_bank(BOOT_FROM_LOWER_BANK);
+	else if (strcmp(argv[1], "2") == 0)
+		convert_flash_bank(BOOT_FROM_UPPER_BANK);
+	else
+		return CMD_RET_USAGE;
+
+	return 0;
+}
+
+U_BOOT_CMD(
+	boot_bank, 2, 0, flash_bank_cmd,
+	"Flash bank Selection Control",
+	"bank[1-lower bank/2-upper bank] (e.g. boot_bank 1)"
+);
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [U-Boot] [PATCH] board: freescale: ls1012ardb: Add command to switch QSPI bank
  2018-04-12 18:48 [U-Boot] [PATCH] board: freescale: ls1012ardb: Add command to switch QSPI bank Jagdish Gediya
@ 2018-04-16  3:10 ` Calvin Johnson
  2018-04-19  6:47   ` Scott Wood
  2018-08-13 16:20 ` York Sun
  1 sibling, 1 reply; 11+ messages in thread
From: Calvin Johnson @ 2018-04-16  3:10 UTC (permalink / raw)
  To: u-boot

On Fri, Apr 13, 2018 at 12:18 AM, Jagdish Gediya <jagdish.gediya@nxp.com> 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 <jagdish.gediya@nxp.com>
> ---
>  board/freescale/ls1012ardb/ls1012ardb.c | 85 +++++++++++++++++++++++++++++++++
>  1 file changed, 85 insertions(+)
>
> diff --git a/board/freescale/ls1012ardb/ls1012ardb.c b/board/freescale/ls1012ardb/ls1012ardb.c
> index ed5a8e6..4d4f6fb 100644
> --- a/board/freescale/ls1012ardb/ls1012ardb.c
> +++ b/board/freescale/ls1012ardb/ls1012ardb.c
> @@ -26,6 +26,9 @@
>
>  DECLARE_GLOBAL_DATA_PTR;
>
> +#define BOOT_FROM_UPPER_BANK   0x2
> +#define BOOT_FROM_LOWER_BANK   0x1
> +
>  int checkboard(void)
>  {
>  #ifdef CONFIG_TARGET_LS1012ARDB
> @@ -212,3 +215,85 @@ int ft_board_setup(void *blob, bd_t *bd)
>
>         return 0;
>  }
> +
> +static int switch_to_bank1(void)
> +{
> +       u8 data;
> +       int ret;
> +
> +       i2c_set_bus_num(0);
> +
> +       data = 0xf4;
> +       ret = i2c_write(0x24, 0x3, 1, &data, 1);
> +       if (ret) {
> +               printf("i2c write error to chip : %u, addr : %u, data : %u\n",
> +                      0x24, 0x3, data);
> +       }
> +
> +       return ret;
> +}
> +
> +static int switch_to_bank2(void)
> +{
> +       u8 data;
> +       int ret;
> +
> +       i2c_set_bus_num(0);
> +
> +       data = 0xfc;
> +       ret = i2c_write(0x24, 0x7, 1, &data, 1);
> +       if (ret) {
> +               printf("i2c write error to chip : %u, addr : %u, data : %u\n",
> +                      0x24, 0x7, data);
> +               goto err;
> +       }
> +
> +       data = 0xf5;
> +       ret = i2c_write(0x24, 0x3, 1, &data, 1);
> +       if (ret) {
> +               printf("i2c write error to chip : %u, addr : %u, data : %u\n",
> +                      0x24, 0x3, data);
> +       }
> +err:
> +       return ret;
> +}
> +
> +static int convert_flash_bank(int bank)
> +{
> +       int ret = 0;
> +
> +       switch (bank) {
> +       case BOOT_FROM_UPPER_BANK:
> +               ret = switch_to_bank2();
> +               break;
> +       case BOOT_FROM_LOWER_BANK:
> +               ret = switch_to_bank1();
> +               break;
> +       default:
> +               ret = CMD_RET_USAGE;
> +               break;
> +       };
> +
> +       return ret;
> +}
> +
> +static int flash_bank_cmd(cmd_tbl_t *cmdtp, int flag, int argc,
> +                         char * const argv[])
> +{
> +       if (argc != 2)
> +               return CMD_RET_USAGE;
> +       if (strcmp(argv[1], "1") == 0)
> +               convert_flash_bank(BOOT_FROM_LOWER_BANK);
> +       else if (strcmp(argv[1], "2") == 0)
> +               convert_flash_bank(BOOT_FROM_UPPER_BANK);
> +       else
> +               return CMD_RET_USAGE;
> +
> +       return 0;
> +}
> +
> +U_BOOT_CMD(
> +       boot_bank, 2, 0, flash_bank_cmd,
> +       "Flash bank Selection Control",
> +       "bank[1-lower bank/2-upper bank] (e.g. boot_bank 1)"
> +);
> --
> 1.9.1
>
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> https://lists.denx.de/listinfo/u-boot

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [U-Boot] [PATCH] board: freescale: ls1012ardb: Add command to switch QSPI bank
  2018-04-16  3:10 ` Calvin Johnson
@ 2018-04-19  6:47   ` Scott Wood
  2018-04-19  8:39     ` Calvin Johnson
  0 siblings, 1 reply; 11+ messages in thread
From: Scott Wood @ 2018-04-19  6:47 UTC (permalink / raw)
  To: u-boot

On Mon, 2018-04-16 at 08:40 +0530, Calvin Johnson wrote:
> On Fri, Apr 13, 2018 at 12:18 AM, Jagdish Gediya <jagdish.gediya@nxp.com>
> 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 going to add something new, a command is much more pleasant than env
vars -- particularly if you stick to something like the familiar interfaces
("pix altbank", "qix altbank", etc), and include reporting of which bank was
booted from if it's not there already.  Of course, a fully standardized
interface would be even better.

I'm assuming this hardware isn't at all compatible with pixis/qixis?

-Scott

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [U-Boot] [PATCH] board: freescale: ls1012ardb: Add command to switch QSPI bank
  2018-04-19  6:47   ` Scott Wood
@ 2018-04-19  8:39     ` Calvin Johnson
  2018-04-20  1:10       ` Scott Wood
  0 siblings, 1 reply; 11+ messages in thread
From: Calvin Johnson @ 2018-04-19  8:39 UTC (permalink / raw)
  To: u-boot

On Thu, Apr 19, 2018 at 12:17 PM, Scott Wood <oss@buserror.net> wrote:
> On Mon, 2018-04-16 at 08:40 +0530, Calvin Johnson wrote:
>> On Fri, Apr 13, 2018 at 12:18 AM, Jagdish Gediya <jagdish.gediya@nxp.com>
>> 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 going to add something new, a command is much more pleasant than env
> vars -- particularly if you stick to something like the familiar interfaces
> ("pix altbank", "qix altbank", etc), and include reporting of which bank was
> booted from if it's not there already.  Of course, a fully standardized
> interface would be even better.

Yes, a fully standardized generic interface supporting all similar
platforms with multiple banks
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'

regards
Calvin

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [U-Boot] [PATCH] board: freescale: ls1012ardb: Add command to switch QSPI bank
  2018-04-19  8:39     ` Calvin Johnson
@ 2018-04-20  1:10       ` Scott Wood
  2018-04-20  1:53         ` Calvin Johnson
  2018-04-20  3:16         ` Prabhakar Kushwaha
  0 siblings, 2 replies; 11+ messages in thread
From: Scott Wood @ 2018-04-20  1:10 UTC (permalink / raw)
  To: u-boot

On Thu, 2018-04-19 at 14:09 +0530, Calvin Johnson wrote:
> On Thu, Apr 19, 2018 at 12:17 PM, Scott Wood <oss@buserror.net> wrote:
> > On Mon, 2018-04-16 at 08:40 +0530, Calvin Johnson wrote:
> > > On Fri, Apr 13, 2018 at 12:18 AM, Jagdish Gediya <jagdish.gediya@nxp.com
> > > >
> > > 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 going to add something new, a command is much more pleasant than
> > env
> > vars -- particularly if you stick to something like the familiar
> > interfaces
> > ("pix altbank", "qix altbank", etc), and include reporting of which bank
> > was
> > booted from if it's not there already.  Of course, a fully standardized
> > interface would be even better.
> 
> Yes, a fully standardized generic interface supporting all similar
> platforms with multiple banks

And other boot sources such as NAND and MMC.

> 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 the user knows to env reset those variables after the update (versus
something that shows up in help), and if they don't get corrupted in a multi-
user board farm environment, etc.

-Scott

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [U-Boot] [PATCH] board: freescale: ls1012ardb: Add command to switch QSPI bank
  2018-04-20  1:10       ` Scott Wood
@ 2018-04-20  1:53         ` Calvin Johnson
  2018-07-31 15:07           ` York Sun
  2018-04-20  3:16         ` Prabhakar Kushwaha
  1 sibling, 1 reply; 11+ messages in thread
From: Calvin Johnson @ 2018-04-20  1:53 UTC (permalink / raw)
  To: u-boot

> -----Original Message-----
> From: Scott Wood [mailto:oss at buserror.net]
> Sent: Friday, April 20, 2018 6:40 AM
> To: Calvin Johnson <linux.cj@gmail.com>
> Cc: Jagdish Gediya <jagdish.gediya@nxp.com>; U-Boot Mailing List <u-
> boot at lists.denx.de>; Calvin Johnson <calvin.johnson@nxp.com>; York Sun
> <york.sun@nxp.com>
> 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, Scott Wood <oss@buserror.net> wrote:
> > > On Mon, 2018-04-16 at 08:40 +0530, Calvin Johnson wrote:
> > > > On Fri, Apr 13, 2018 at 12:18 AM, Jagdish Gediya <jagdish.gediya@nxp.com
> > > > >
> > > > 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 going to add something new, a command is much more pleasant
> than
> > > env
> > > vars -- particularly if you stick to something like the familiar
> > > interfaces
> > > ("pix altbank", "qix altbank", etc), and include reporting of which bank
> > > was
> > > booted from if it's not there already.  Of course, a fully standardized
> > > interface would be even better.
> >
> > Yes, a fully standardized generic interface supporting all similar
> > platforms with multiple banks
> 
> And other boot sources such as NAND and MMC.
> 
> > 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 the user knows to env reset those variables after the update (versus
> something that shows up in help), and if they don't get corrupted in a multi-
> user board farm environment, etc.

Make sense. Thanks!

Calvin

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [U-Boot] [PATCH] board: freescale: ls1012ardb: Add command to switch QSPI bank
  2018-04-20  1:10       ` Scott Wood
  2018-04-20  1:53         ` Calvin Johnson
@ 2018-04-20  3:16         ` Prabhakar Kushwaha
  2018-04-20 15:45           ` Scott Wood
  1 sibling, 1 reply; 11+ messages in thread
From: Prabhakar Kushwaha @ 2018-04-20  3:16 UTC (permalink / raw)
  To: u-boot

Thanks Scott for reviewing this patch

> -----Original Message-----
> From: U-Boot [mailto:u-boot-bounces at lists.denx.de] On Behalf Of Scott
> Wood
> Sent: Friday, April 20, 2018 6:40 AM
> To: Calvin Johnson <linux.cj@gmail.com>
> Cc: U-Boot Mailing List <u-boot@lists.denx.de>
> 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, Scott Wood <oss@buserror.net> wrote:
> > > On Mon, 2018-04-16 at 08:40 +0530, Calvin Johnson wrote:
> > > > On Fri, Apr 13, 2018 at 12:18 AM, Jagdish Gediya
> > > > <jagdish.gediya@nxp.com
> > > > >
> > > > 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 going to add something new, a command is much more
> > > pleasant than env vars -- particularly if you stick to something
> > > like the familiar interfaces ("pix altbank", "qix altbank", etc),
> > > and include reporting of which bank was booted from if it's not
> > > there already.  Of course, a fully standardized interface would be
> > > even better.
> >
> > Yes, a fully standardized generic interface supporting all similar
> > platforms with multiple banks
> 
> And other boot sources such as NAND and MMC.


LS1012A has only one boot source i.e. QSPI

> 
> > 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 the user knows to env reset those variables after the update (versus
> something that shows up in help), and if they don't get corrupted in a multi-
> user board farm environment, etc.
> 

With env there is always a probability of getting erased. In that case user will not have these commands.

Better approach should be command which is always available. If required we can update the doc.  

--pk

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [U-Boot] [PATCH] board: freescale: ls1012ardb: Add command to switch QSPI bank
  2018-04-20  3:16         ` Prabhakar Kushwaha
@ 2018-04-20 15:45           ` Scott Wood
  0 siblings, 0 replies; 11+ messages in thread
From: Scott Wood @ 2018-04-20 15:45 UTC (permalink / raw)
  To: u-boot

On Fri, 2018-04-20 at 03:16 +0000, Prabhakar Kushwaha wrote:
> Thanks Scott for reviewing this patch
> 
> > -----Original Message-----
> > From: U-Boot [mailto:u-boot-bounces at lists.denx.de] On Behalf Of Scott
> > Wood
> > Sent: Friday, April 20, 2018 6:40 AM
> > To: Calvin Johnson <linux.cj@gmail.com>
> > Cc: U-Boot Mailing List <u-boot@lists.denx.de>
> > 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, Scott Wood <oss@buserror.net> wrote:
> > > > On Mon, 2018-04-16 at 08:40 +0530, Calvin Johnson wrote:
> > > > > On Fri, Apr 13, 2018 at 12:18 AM, Jagdish Gediya
> > > > > <jagdish.gediya@nxp.com
> > > > > > 
> > > > > 
> > > > > 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 going to add something new, a command is much more
> > > > pleasant than env vars -- particularly if you stick to something
> > > > like the familiar interfaces ("pix altbank", "qix altbank", etc),
> > > > and include reporting of which bank was booted from if it's not
> > > > there already.  Of course, a fully standardized interface would be
> > > > even better.
> > > 
> > > Yes, a fully standardized generic interface supporting all similar
> > > platforms with multiple banks
> > 
> > And other boot sources such as NAND and MMC.
> 
> 
> LS1012A has only one boot source i.e. QSPI

I meant that if there is any effort to standardize the command it should
support multiple boot sources, not just bank selection.

-Scott

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [U-Boot] [PATCH] board: freescale: ls1012ardb: Add command to switch QSPI bank
  2018-04-20  1:53         ` Calvin Johnson
@ 2018-07-31 15:07           ` York Sun
  2018-07-31 15:36             ` Calvin Johnson
  0 siblings, 1 reply; 11+ messages in thread
From: York Sun @ 2018-07-31 15:07 UTC (permalink / raw)
  To: u-boot

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 the user knows to env reset those variables after the update (versus
>> something that shows up in help), and if they don't get corrupted in a multi-
>> user board farm environment, etc.
> 
> Make sense. Thanks!
> 

Calvin,

Do you want to stay with env, or still want this patch, or standardize
the command?

York

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [U-Boot] [PATCH] board: freescale: ls1012ardb: Add command to switch QSPI bank
  2018-07-31 15:07           ` York Sun
@ 2018-07-31 15:36             ` Calvin Johnson
  0 siblings, 0 replies; 11+ messages in thread
From: Calvin Johnson @ 2018-07-31 15:36 UTC (permalink / raw)
  To: u-boot

Hi York,

> -----Original Message-----
> From: York Sun
> Sent: Tuesday, July 31, 2018 8:37 PM
> To: Calvin Johnson <calvin.johnson@nxp.com>; Scott Wood
> <oss@buserror.net>; Calvin Johnson <linux.cj@gmail.com>
> Cc: Jagdish Gediya <jagdish.gediya@nxp.com>; U-Boot Mailing List <u-
> boot at lists.denx.de>
> Subject: Re: [U-Boot] [PATCH] board: freescale: ls1012ardb: Add command to
> switch QSPI bank
> 
> 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 the user knows to env reset those variables after the update
> >> (versus something that shows up in help), and if they don't get
> >> corrupted in a multi- user board farm environment, etc.
> >
> > Make sense. Thanks!
> >
> 
> Calvin,
> 
> Do you want to stay with env, or still want this patch, or standardize the
> command?

Ideally, a fully standardized generic command interface supporting all similar 
platforms with multiple banks as well as other boot sources such as NAND and MMC, 
is the best option.

This patch looks good as an interim solution.

Regards
Calvin

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [U-Boot] [PATCH] board: freescale: ls1012ardb: Add command to switch QSPI bank
  2018-04-12 18:48 [U-Boot] [PATCH] board: freescale: ls1012ardb: Add command to switch QSPI bank Jagdish Gediya
  2018-04-16  3:10 ` Calvin Johnson
@ 2018-08-13 16:20 ` York Sun
  1 sibling, 0 replies; 11+ messages in thread
From: York Sun @ 2018-08-13 16:20 UTC (permalink / raw)
  To: u-boot

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 <jagdish.gediya@nxp.com>
> ---

Applied to fsl-qoriq master, awaiting upstream.
Thanks.

York

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2018-08-13 16:20 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-04-12 18:48 [U-Boot] [PATCH] board: freescale: ls1012ardb: Add command to switch QSPI bank Jagdish Gediya
2018-04-16  3:10 ` Calvin Johnson
2018-04-19  6:47   ` Scott Wood
2018-04-19  8:39     ` Calvin Johnson
2018-04-20  1:10       ` Scott Wood
2018-04-20  1:53         ` Calvin Johnson
2018-07-31 15:07           ` York Sun
2018-07-31 15:36             ` Calvin Johnson
2018-04-20  3:16         ` Prabhakar Kushwaha
2018-04-20 15:45           ` Scott Wood
2018-08-13 16:20 ` York Sun

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.