memory.h 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /*
  2. * arch/arm/mach-realview/include/mach/memory.h
  3. *
  4. * Copyright (C) 2003 ARM Limited
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  19. */
  20. #ifndef __ASM_ARCH_MEMORY_H
  21. #define __ASM_ARCH_MEMORY_H
  22. /*
  23. * Physical DRAM offset.
  24. */
  25. #ifdef CONFIG_REALVIEW_HIGH_PHYS_OFFSET
  26. #define PLAT_PHYS_OFFSET UL(0x70000000)
  27. #else
  28. #define PLAT_PHYS_OFFSET UL(0x00000000)
  29. #endif
  30. #ifdef CONFIG_ZONE_DMA
  31. #define ARM_DMA_ZONE_SIZE SZ_256M
  32. #endif
  33. #ifdef CONFIG_SPARSEMEM
  34. /*
  35. * Sparsemem definitions for RealView PBX.
  36. *
  37. * The RealView PBX board has another block of 512MB of RAM at 0x20000000,
  38. * however only the block at 0x70000000 (or the 256MB mirror at 0x00000000)
  39. * may be used for DMA.
  40. *
  41. * The macros below define a section size of 256MB and a non-linear virtual to
  42. * physical mapping:
  43. *
  44. * 256MB @ 0x00000000 -> PAGE_OFFSET
  45. * 512MB @ 0x20000000 -> PAGE_OFFSET + 0x10000000
  46. * 256MB @ 0x80000000 -> PAGE_OFFSET + 0x30000000
  47. */
  48. #ifdef CONFIG_REALVIEW_HIGH_PHYS_OFFSET
  49. #error "SPARSEMEM not available with REALVIEW_HIGH_PHYS_OFFSET"
  50. #endif
  51. #define MAX_PHYSMEM_BITS 32
  52. #define SECTION_SIZE_BITS 28
  53. /* bank page offsets */
  54. #define PAGE_OFFSET1 (PAGE_OFFSET + 0x10000000)
  55. #define PAGE_OFFSET2 (PAGE_OFFSET + 0x30000000)
  56. #define __phys_to_virt(phys) \
  57. ((phys) >= 0x80000000 ? (phys) - 0x80000000 + PAGE_OFFSET2 : \
  58. (phys) >= 0x20000000 ? (phys) - 0x20000000 + PAGE_OFFSET1 : \
  59. (phys) + PAGE_OFFSET)
  60. #define __virt_to_phys(virt) \
  61. ((virt) >= PAGE_OFFSET2 ? (virt) - PAGE_OFFSET2 + 0x80000000 : \
  62. (virt) >= PAGE_OFFSET1 ? (virt) - PAGE_OFFSET1 + 0x20000000 : \
  63. (virt) - PAGE_OFFSET)
  64. #endif /* CONFIG_SPARSEMEM */
  65. #endif