* [PATCH] cfi_flash_intel: fix buffer write for width > 2
@ 2012-04-10 0:12 Eric Bénard
2012-04-10 8:06 ` Sascha Hauer
0 siblings, 1 reply; 3+ messages in thread
From: Eric Bénard @ 2012-04-10 0:12 UTC (permalink / raw)
To: barebox
This patch does what the comment tells the code should do.
Actual code fails for width = 4 (verified : only half of the buffer
is copied because len is divided by 8 instead of 4) and 8 where len
will be divided by 128.
The bug was introduced in 3d3c13d8f8238d0ed6e3e23841737de53b2c424f
Signed-off-by: Eric Bénard <eric@eukrea.com>
---
drivers/nor/cfi_flash_intel.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/nor/cfi_flash_intel.c b/drivers/nor/cfi_flash_intel.c
index 6318cfe..3b325c1 100644
--- a/drivers/nor/cfi_flash_intel.c
+++ b/drivers/nor/cfi_flash_intel.c
@@ -68,7 +68,7 @@ static int intel_flash_write_cfibuffer (struct flash_info *info, ulong dest, con
return retcode;
/* reduce the number of loops by the width of the port */
- cnt = len >> (info->portwidth - 1);
+ cnt = len >> (info->portwidth == 8 ? 3 : info->portwidth >> 1);
flash_write_cmd(info, sector, 0, (u32)cnt - 1);
while (cnt-- > 0) {
--
1.7.7.6
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] cfi_flash_intel: fix buffer write for width > 2
2012-04-10 0:12 [PATCH] cfi_flash_intel: fix buffer write for width > 2 Eric Bénard
@ 2012-04-10 8:06 ` Sascha Hauer
2012-04-10 8:23 ` Eric Bénard
0 siblings, 1 reply; 3+ messages in thread
From: Sascha Hauer @ 2012-04-10 8:06 UTC (permalink / raw)
To: Eric Bénard; +Cc: barebox
Hi Eric,
On Tue, Apr 10, 2012 at 02:12:25AM +0200, Eric Bénard wrote:
> This patch does what the comment tells the code should do.
> Actual code fails for width = 4 (verified : only half of the buffer
> is copied because len is divided by 8 instead of 4) and 8 where len
> will be divided by 128.
> The bug was introduced in 3d3c13d8f8238d0ed6e3e23841737de53b2c424f
>
> Signed-off-by: Eric Bénard <eric@eukrea.com>
Can you please check if this is also fixed by the patches I recently
posted:
http://www.mail-archive.com/barebox@lists.infradead.org/msg01033.html
Thanks
Sascha
> ---
> drivers/nor/cfi_flash_intel.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/nor/cfi_flash_intel.c b/drivers/nor/cfi_flash_intel.c
> index 6318cfe..3b325c1 100644
> --- a/drivers/nor/cfi_flash_intel.c
> +++ b/drivers/nor/cfi_flash_intel.c
> @@ -68,7 +68,7 @@ static int intel_flash_write_cfibuffer (struct flash_info *info, ulong dest, con
> return retcode;
>
> /* reduce the number of loops by the width of the port */
> - cnt = len >> (info->portwidth - 1);
> + cnt = len >> (info->portwidth == 8 ? 3 : info->portwidth >> 1);
>
> flash_write_cmd(info, sector, 0, (u32)cnt - 1);
> while (cnt-- > 0) {
> --
> 1.7.7.6
>
>
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] cfi_flash_intel: fix buffer write for width > 2
2012-04-10 8:06 ` Sascha Hauer
@ 2012-04-10 8:23 ` Eric Bénard
0 siblings, 0 replies; 3+ messages in thread
From: Eric Bénard @ 2012-04-10 8:23 UTC (permalink / raw)
To: barebox
Hi Sascha,
Le Tue, 10 Apr 2012 10:06:14 +0200,
Sascha Hauer <s.hauer@pengutronix.de> a écrit :
> Can you please check if this is also fixed by the patches I recently
> posted:
>
> http://www.mail-archive.com/barebox@lists.infradead.org/msg01033.html
>
yes, and your fix is even simpler than mine ;)
Eric
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-04-10 8:23 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-04-10 0:12 [PATCH] cfi_flash_intel: fix buffer write for width > 2 Eric Bénard
2012-04-10 8:06 ` Sascha Hauer
2012-04-10 8:23 ` Eric Bénard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox