[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <D958900912E20642BCBC71664EFECE3E6DD0B99114@BGMAIL02.nvidia.com>
Date: Fri, 3 Feb 2012 09:05:29 +0530
From: Venu Byravarasu <vbyravarasu@...dia.com>
To: "dedekind1@...il.com" <dedekind1@...il.com>,
Nicolas Ferre <nicolas.ferre@...el.com>,
"Voss, Nikolaus" <N.Voss@...nmann.de>,
Eric BĂ©nard <eric@...rea.com>
CC: "'linux-mtd@...ts.infradead.org'" <linux-mtd@...ts.infradead.org>,
"'linux-kernel@...r.kernel.org'" <linux-kernel@...r.kernel.org>
Subject: RE: [PATCH] mtd: atmel_nand: fix access to 16 bit NAND devices
I see a problem with atmel_read_buf16 & atmel_write_buf16 functions.
As they are calling __raw_readsw & __raw_writesw respectively, which
would cause panic in cases of 16 bit unaligned buffers.
However, the buf passed to these functions is of type u8* from
atmel_read_buf & atmel_write_buf functions.
[Venu]
> - /* if no DMA operation possible, use PIO */
> - memcpy_fromio(buf, chip->IO_ADDR_R, len);
> + if (host->board->bus_width_16)
> + atmel_read_buf16(mtd, buf, len);
> + else
> + atmel_read_buf8(mtd, buf, len);
> }
Powered by blists - more mailing lists