diff mbox series

[U-Boot] mtd: nand: denali: fix unaligned cache operation warnings on ARMv7 SoCs

Message ID 1536545850-31998-1-git-send-email-yamada.masahiro@socionext.com
State Accepted
Commit e8f65763ef07e0667f57dda7eece657f8fe136a7
Delegated to: Tom Rini
Headers show
Series [U-Boot] mtd: nand: denali: fix unaligned cache operation warnings on ARMv7 SoCs | expand

Commit Message

Masahiro Yamada Sept. 10, 2018, 2:17 a.m. UTC
If the OOB size is not multiple of the cache line size, the ARMv7
cache operation still warns "Misaligned operation at range".

The real cache coherency problem was fixed by commit e3332e1a1a04
("Make kmalloc'ed memory really DMA-safe").  Now it is the matter
of the warning messages.

=> nand info

Device 0: nand0, sector size 256 KiB
  Page size       4096 b
  OOB size         224 b
  Erase size    262144 b
  subpagesize     4096 b
  options     0x00104200
  bbt options 0x00060000
=> nand dump 0
CACHE: Misaligned operation at range [9fb15280, 9fb16360]
CACHE: Misaligned operation at range [9fb15280, 9fb16360]
CACHE: Misaligned operation at range [9fb15280, 9fb16360]
CACHE: Misaligned operation at range [9fb15280, 9fb16360]
  ...

Reported-by: Marek Vasut <marex@denx.de>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
---

 drivers/mtd/nand/denali.c | 4 ++++
 1 file changed, 4 insertions(+)

Comments

Marek Vasut Sept. 10, 2018, 1:26 p.m. UTC | #1
On 09/10/2018 04:17 AM, Masahiro Yamada wrote:
> If the OOB size is not multiple of the cache line size, the ARMv7
> cache operation still warns "Misaligned operation at range".
> 
> The real cache coherency problem was fixed by commit e3332e1a1a04
> ("Make kmalloc'ed memory really DMA-safe").  Now it is the matter
> of the warning messages.

The cache ops won't happen if the address isn't aligned, so this is
needed on armv7a anyway. It's not just about silencing the messages,
this patch is actually required.

> => nand info
> 
> Device 0: nand0, sector size 256 KiB
>   Page size       4096 b
>   OOB size         224 b
>   Erase size    262144 b
>   subpagesize     4096 b
>   options     0x00104200
>   bbt options 0x00060000
> => nand dump 0
> CACHE: Misaligned operation at range [9fb15280, 9fb16360]
> CACHE: Misaligned operation at range [9fb15280, 9fb16360]
> CACHE: Misaligned operation at range [9fb15280, 9fb16360]
> CACHE: Misaligned operation at range [9fb15280, 9fb16360]
>   ...
> 
> Reported-by: Marek Vasut <marex@denx.de>
> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
> ---
> 
>  drivers/mtd/nand/denali.c | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/drivers/mtd/nand/denali.c b/drivers/mtd/nand/denali.c
> index 7302c37..d1cac06 100644
> --- a/drivers/mtd/nand/denali.c
> +++ b/drivers/mtd/nand/denali.c
> @@ -21,6 +21,8 @@ static dma_addr_t dma_map_single(void *dev, void *ptr, size_t size,
>  {
>  	unsigned long addr = (unsigned long)ptr;
>  
> +	size = ALIGN(size, ARCH_DMA_MINALIGN);
> +
>  	if (dir == DMA_FROM_DEVICE)
>  		invalidate_dcache_range(addr, addr + size);
>  	else
> @@ -32,6 +34,8 @@ static dma_addr_t dma_map_single(void *dev, void *ptr, size_t size,
>  static void dma_unmap_single(void *dev, dma_addr_t addr, size_t size,
>  			     enum dma_data_direction dir)
>  {
> +	size = ALIGN(size, ARCH_DMA_MINALIGN);
> +
>  	if (dir != DMA_TO_DEVICE)
>  		invalidate_dcache_range(addr, addr + size);
>  }
>
Masahiro Yamada Sept. 10, 2018, 1:59 p.m. UTC | #2
2018-09-10 22:26 GMT+09:00 Marek Vasut <marek.vasut@gmail.com>:
> On 09/10/2018 04:17 AM, Masahiro Yamada wrote:
>> If the OOB size is not multiple of the cache line size, the ARMv7
>> cache operation still warns "Misaligned operation at range".
>>
>> The real cache coherency problem was fixed by commit e3332e1a1a04
>> ("Make kmalloc'ed memory really DMA-safe").  Now it is the matter
>> of the warning messages.
>
> The cache ops won't happen if the address isn't aligned, so this is
> needed on armv7a anyway. It's not just about silencing the messages,
> this patch is actually required.


You are right.
I was misunderstanding.

I will reword the patch description.  Thanks!
Tom Rini Sept. 10, 2018, 9:49 p.m. UTC | #3
On Mon, Sep 10, 2018 at 11:17:30AM +0900, Masahiro Yamada wrote:

> If the OOB size is not multiple of the cache line size, the ARMv7
> cache operation still warns "Misaligned operation at range".
> 
> The real cache coherency problem was fixed by commit e3332e1a1a04
> ("Make kmalloc'ed memory really DMA-safe").  Now it is the matter
> of the warning messages.
> 
> => nand info
> 
> Device 0: nand0, sector size 256 KiB
>   Page size       4096 b
>   OOB size         224 b
>   Erase size    262144 b
>   subpagesize     4096 b
>   options     0x00104200
>   bbt options 0x00060000
> => nand dump 0
> CACHE: Misaligned operation at range [9fb15280, 9fb16360]
> CACHE: Misaligned operation at range [9fb15280, 9fb16360]
> CACHE: Misaligned operation at range [9fb15280, 9fb16360]
> CACHE: Misaligned operation at range [9fb15280, 9fb16360]
>   ...
> 
> Reported-by: Marek Vasut <marex@denx.de>
> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>

After re-wording the commit message based on Marek's email, applied to
u-boot/master, thanks!
diff mbox series

Patch

diff --git a/drivers/mtd/nand/denali.c b/drivers/mtd/nand/denali.c
index 7302c37..d1cac06 100644
--- a/drivers/mtd/nand/denali.c
+++ b/drivers/mtd/nand/denali.c
@@ -21,6 +21,8 @@  static dma_addr_t dma_map_single(void *dev, void *ptr, size_t size,
 {
 	unsigned long addr = (unsigned long)ptr;
 
+	size = ALIGN(size, ARCH_DMA_MINALIGN);
+
 	if (dir == DMA_FROM_DEVICE)
 		invalidate_dcache_range(addr, addr + size);
 	else
@@ -32,6 +34,8 @@  static dma_addr_t dma_map_single(void *dev, void *ptr, size_t size,
 static void dma_unmap_single(void *dev, dma_addr_t addr, size_t size,
 			     enum dma_data_direction dir)
 {
+	size = ALIGN(size, ARCH_DMA_MINALIGN);
+
 	if (dir != DMA_TO_DEVICE)
 		invalidate_dcache_range(addr, addr + size);
 }