Re: [U-Boot] [PATCH] nand: fixed failed reads on corrected ECC errors in nand_util.c

2009-07-17 Thread Valeriy Glushkov
rn 0; --- if (rval && rval != -EUCLEAN) printf ("NAND read from offset %llx failed %d\n", offset, rval); else rval = 0; return rval; Best regards, Valeriy Glushkov ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH] nand: fixed failed reads on corrected ECC errors in nand_util.c

2009-07-14 Thread Valeriy Glushkov
Signed-off-by: Valeriy Glushkov Signed-off-by: Paulraj, Sandeep --- drivers/mtd/nand/nand_util.c | 10 +- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/mtd/nand/nand_util.c b/drivers/mtd/nand/nand_util.c index fc16282..694ead6 100644 --- a/drivers/mtd/nand

Re: [U-Boot] Possible bug in NAND driver

2009-07-14 Thread Valeriy Glushkov
You are right, this is a bug. I've already fixed it in our code tree some monthes ago but forgotten to send the patch to the list. Best regards, Valeriy Glushkov - Original Message - From: "Paulraj, Sandeep" To: Sent: 13 2009 ?. 22:34 Subject: [U-Boot] Possi

[U-Boot] [PATCH 1/2] usb: mpc834x: added support of the MPH USB controller in addition to the DR one

2009-06-30 Thread Valeriy Glushkov
Signed-off-by: Valeriy Glushkov --- cpu/mpc83xx/cpu_init.c |2 ++ include/asm-ppc/immap_83xx.h | 11 ++- 2 files changed, 12 insertions(+), 1 deletions(-) diff --git a/cpu/mpc83xx/cpu_init.c b/cpu/mpc83xx/cpu_init.c index 414565c..2fb9f99 100644 --- a/cpu/mpc83xx/cpu_init.c

[U-Boot] [PATCH 2/2] usb: mpx8349itx: added support of loading images from USB storage (MPH/DR)

2009-06-30 Thread Valeriy Glushkov
Signed-off-by: Valeriy Glushkov --- include/configs/MPC8349ITX.h | 31 +-- 1 files changed, 29 insertions(+), 2 deletions(-) diff --git a/include/configs/MPC8349ITX.h b/include/configs/MPC8349ITX.h index f2e574b..0ff09a0 100644 --- a/include/configs/MPC8349ITX.h

[U-Boot] [PATCH] mpc8349itx: allow SATA boot from the onboard SIL1334

2009-02-05 Thread Valeriy Glushkov
This patch allows using of SATA devices connected to the onboard PCI SIL1334 SATA controller. Signed-off-by: Valeriy Glushkov --- include/configs/MPC8349ITX.h | 23 +-- 1 files changed, 21 insertions(+), 2 deletions(-) diff --git a/include/configs/MPC8349ITX.h b/include

[U-Boot] [PATCH v3] MPC8349ITX: several config issues fixed

2009-02-04 Thread Valeriy Glushkov
The previous version rebooted forever with DDR bigger than 256MB. Access the DS1339 RTC chip is on I2C1 bus. Allow DHCP. Signed-off-by: Valeriy Glushkov --- include/configs/MPC8349ITX.h |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/include/configs/MPC8349ITX.h b

[U-Boot] [PATCH v2] MPC8349ITX: several config issues fixed

2009-02-04 Thread Valeriy Glushkov
The previous version rebooted forever with DDR bigger than 256MB. Access the DS1339 RTC chip is on I2C1 bus. Allow DHCP. Signed-off-by: Valeriy Glushkov --- include/configs/MPC8349ITX.h |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/include/configs/MPC8349ITX.h b

[U-Boot] [PATCH] MPC8349ITX: support of DDR > 256MB

2009-02-04 Thread Valeriy Glushkov
The previous version rebooted forever with DDR bigger 256MB. Signed-off-by: Valeriy Glushkov --- include/configs/MPC8349ITX.h |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/include/configs/MPC8349ITX.h b/include/configs/MPC8349ITX.h index 14cbc45..3f87f0f 100644

[U-Boot] [PATCH] disable imls command if no flash is defined

2009-01-23 Thread Valeriy Glushkov
Default CONFIG_CMD_IMLS must be disabled when CONFIG_SYS_NO_FLASH is defined Signed-off-by: Valeriy Glushkov --- include/config_cmd_default.h |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/include/config_cmd_default.h b/include/config_cmd_default.h index b556706

[U-Boot] [PATCH v2] nand: Fixed invalid pointers to static relocated chip names

2009-01-19 Thread Valeriy Glushkov
Dear Wolfgang, You are right, the patch was ugly. The new one seems to be better. Signed-off-by: Valeriy Glushkov --- diff --git a/drivers/mtd/nand/nand.c b/drivers/mtd/nand/nand.c index 700d21d..8ac53e0 100644 --- a/drivers/mtd/nand/nand.c +++ b/drivers/mtd/nand/nand.c @@ -28,6 +28,8

Re: [U-Boot] [PATCH] NAND: cmd_nand.c: fix invalid pointers tostatic relocated chip names

2009-01-19 Thread Valeriy Glushkov
ere we start directly from RAM, this happens, because the initial non-relocated memory can be overwritten any time... Best regards, Valeriy Glushkov P.S. Sorry for the invalid email address. Fixed. - Original Message - From: "Jean-Christophe PLAGNIOL-VILLARD" To: "Val

[U-Boot] [PATCH] NAND: cmd_nand.c: fix invalid pointers to static relocated chip names

2009-01-19 Thread Valeriy Glushkov
When U-boot starting from NAND the pointers to chip names are set before relocation. If the original memory block is overwritten after relocation that led to invalid string data in the nand utility. Signed-off-by: Valeriy Glushkov --- diff --git a/common/cmd_nand.c b/common/cmd_nand.c index

Re: [U-Boot] Is it possible to use 2GB of DDR on MPC834x?

2009-01-05 Thread Valeriy Glushkov
egards, Valeriy Glushkov - Original Message - From: "Valeriy Glushkov" To: Sent: 5 ?? 2009 ?. 14:09 Subject: Re: [U-Boot] Is it possible to use 2GB of DDR on MPC834x? > Hi, > >> Why do you need to access all 2GB from u-boot? > > I need only to recognize

Re: [U-Boot] Is it possible to use 2GB of DDR on MPC834x?

2009-01-05 Thread Valeriy Glushkov
024/2048 MB), so U-boot is responsible for DDR init and reporting its size to Linux... >From your answer I understand that U-boot does not support >1GB of memory for MPC83xx. Is it correct? Best regards, Valeriy Glushkov - Original Message - From: "Scott Wood" To

[U-Boot] Is it possible to use 2GB or DDR on MPC834x?

2008-12-30 Thread Valeriy Glushkov
the U-boot tree seem to use <=1GB of SDRAM, so they use BATs to map them. Any suggestions are highly appreciated. Best regards, Valeriy Glushkov ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH v2] NAND: fixed bugs in nand_[read, write]_skip_bad()

2008-11-25 Thread Valeriy Glushkov
- fixed bugs with returning from nand_[read,write]_skip_bad() to double read/write speed Signed-off-by: Valeriy Glushkov <[EMAIL PROTECTED]> --- diff --git a/drivers/mtd/nand/nand_util.c b/drivers/mtd/nand/nand_util.c index 52b3d21..818a876 100644 --- a/drivers/mtd/nand/nand_util.c

Re: [U-Boot] [PATCH] NAND: fixed bugs in nand_[read, write]_skip_bad()

2008-11-21 Thread Valeriy Glushkov
Anybody interested in the patch? - Original Message - From: "Valeriy Glushkov" <[EMAIL PROTECTED]> To: Sent: 18 ?? 2008 ?. 19:27 Subject: [U-Boot] [PATCH] NAND: fixed bugs in nand_[read,write]_skip_bad() >- fixed bugs in nand_[read,write]_skip_bad() to dou

[U-Boot] [PATCH] NAND: fixed bugs in nand_[read,write]_skip_bad()

2008-11-18 Thread Valeriy Glushkov
- fixed bugs in nand_[read,write]_skip_bad() to double speed - added printing of dots to show progress Signed-off-by: Valeriy Glushkov <[EMAIL PROTECTED]> --- drivers/mtd/nand/nand_base.c | 16 ++-- drivers/mtd/nand/nand_util.c |6 -- 2 files changed, 18 insertions