Advertisement
Guest User

Untitled

a guest
Jul 24th, 2013
401
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 2.07 KB | None | 0 0
  1. diff --git a/arch/arm/plat-mxc/Kconfig b/arch/arm/plat-mxc/Kconfig
  2. index 32408ed..39e9cde 100755
  3. --- a/arch/arm/plat-mxc/Kconfig
  4. +++ b/arch/arm/plat-mxc/Kconfig
  5. @@ -164,7 +164,7 @@ config CLK_DEBUG
  6.  
  7.  config DMA_ZONE_SIZE
  8.          int "DMA memory zone size"
  9. -        range 0 184
  10. +        range 0 220
  11.          default 24
  12.          help
  13.            This is the size in MB for the DMA zone. The DMA zone is used for
  14. diff --git a/arch/arm/plat-mxc/include/mach/hardware.h b/arch/arm/plat-mxc/include/mach/hardware.h
  15. index e1c5234..7c4d429 100755
  16. --- a/arch/arm/plat-mxc/include/mach/hardware.h
  17. +++ b/arch/arm/plat-mxc/include/mach/hardware.h
  18. @@ -88,7 +88,7 @@
  19.   *     AIPS2   0x83f00000+0x100000     ->      0xf4300000+0x100000
  20.   */
  21.  #define IMX_IO_P2V(x)  (                                               \
  22. -                       0xf2000000 +                                    \
  23. +                       0xEC800000 +                                    \
  24.                         (((x) & 0x50000000) >> 6) +                     \
  25.                         (((x) & 0x0b000000) >> 4) +                     \
  26.                         (((x) & 0x000fffff)))
  27. diff --git a/arch/arm/plat-mxc/include/mach/memory.h b/arch/arm/plat-mxc/include/mach/memory.h
  28. index e0a08b7..2a6813c 100755
  29. --- a/arch/arm/plat-mxc/include/mach/memory.h
  30. +++ b/arch/arm/plat-mxc/include/mach/memory.h
  31. @@ -65,7 +65,7 @@
  32.  #else
  33.  
  34.  #if defined(CONFIG_ARCH_MX5) || defined(CONFIG_ARCH_MX6)
  35. -#define ARM_DMA_ZONE_SIZE      (184 * SZ_1M)
  36. +#define ARM_DMA_ZONE_SIZE      (220 * SZ_1M)
  37.  #define CONSISTENT_DMA_SIZE    ARM_DMA_ZONE_SIZE
  38.  #else
  39.  #define CONSISTENT_DMA_SIZE     (32 * SZ_1M)
  40. diff --git a/arch/arm/plat-mxc/include/mach/vmalloc.h b/arch/arm/plat-mxc/include/mach/vmalloc.h
  41. index 44ea15a..b16b552 100644
  42. --- a/arch/arm/plat-mxc/include/mach/vmalloc.h
  43. +++ b/arch/arm/plat-mxc/include/mach/vmalloc.h
  44. @@ -17,6 +17,6 @@
  45.  #define __ASM_ARCH_MXC_VMALLOC_H__
  46.  
  47.  /* vmalloc ending address */
  48. -#define VMALLOC_END       0xf2000000UL
  49. +#define VMALLOC_END       0xEC800000UL
  50.  
  51.  #endif /* __ASM_ARCH_MXC_VMALLOC_H__ */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement