memory.txt 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. Kernel Memory Layout on ARM Linux
  2. Russell King <rmk@arm.linux.org.uk>
  3. November 17, 2005 (2.6.15)
  4. This document describes the virtual memory layout which the Linux
  5. kernel uses for ARM processors. It indicates which regions are
  6. free for platforms to use, and which are used by generic code.
  7. The ARM CPU is capable of addressing a maximum of 4GB virtual memory
  8. space, and this must be shared between user space processes, the
  9. kernel, and hardware devices.
  10. As the ARM architecture matures, it becomes necessary to reserve
  11. certain regions of VM space for use for new facilities; therefore
  12. this document may reserve more VM space over time.
  13. Start End Use
  14. --------------------------------------------------------------------------
  15. ffff8000 ffffffff copy_user_page / clear_user_page use.
  16. For SA11xx and Xscale, this is used to
  17. setup a minicache mapping.
  18. ffff4000 ffffffff cache aliasing on ARMv6 and later CPUs.
  19. ffff1000 ffff7fff Reserved.
  20. Platforms must not use this address range.
  21. ffff0000 ffff0fff CPU vector page.
  22. The CPU vectors are mapped here if the
  23. CPU supports vector relocation (control
  24. register V bit.)
  25. fffe0000 fffeffff XScale cache flush area. This is used
  26. in proc-xscale.S to flush the whole data
  27. cache. (XScale does not have TCM.)
  28. fffe8000 fffeffff DTCM mapping area for platforms with
  29. DTCM mounted inside the CPU.
  30. fffe0000 fffe7fff ITCM mapping area for platforms with
  31. ITCM mounted inside the CPU.
  32. fff00000 fffdffff Fixmap mapping region. Addresses provided
  33. by fix_to_virt() will be located here.
  34. ffc00000 ffefffff DMA memory mapping region. Memory returned
  35. by the dma_alloc_xxx functions will be
  36. dynamically mapped here.
  37. ff000000 ffbfffff Reserved for future expansion of DMA
  38. mapping region.
  39. VMALLOC_START VMALLOC_END-1 vmalloc() / ioremap() space.
  40. Memory returned by vmalloc/ioremap will
  41. be dynamically placed in this region.
  42. Machine specific static mappings are also
  43. located here through iotable_init().
  44. VMALLOC_START is based upon the value
  45. of the high_memory variable, and VMALLOC_END
  46. is equal to 0xff000000.
  47. PAGE_OFFSET high_memory-1 Kernel direct-mapped RAM region.
  48. This maps the platforms RAM, and typically
  49. maps all platform RAM in a 1:1 relationship.
  50. PKMAP_BASE PAGE_OFFSET-1 Permanent kernel mappings
  51. One way of mapping HIGHMEM pages into kernel
  52. space.
  53. MODULES_VADDR MODULES_END-1 Kernel module space
  54. Kernel modules inserted via insmod are
  55. placed here using dynamic mappings.
  56. 00001000 TASK_SIZE-1 User space mappings
  57. Per-thread mappings are placed here via
  58. the mmap() system call.
  59. 00000000 00000fff CPU vector page / null pointer trap
  60. CPUs which do not support vector remapping
  61. place their vector page here. NULL pointer
  62. dereferences by both the kernel and user
  63. space are also caught via this mapping.
  64. Please note that mappings which collide with the above areas may result
  65. in a non-bootable kernel, or may cause the kernel to (eventually) panic
  66. at run time.
  67. Since future CPUs may impact the kernel mapping layout, user programs
  68. must not access any memory which is not mapped inside their 0x0001000
  69. to TASK_SIZE address range. If they wish to access these areas, they
  70. must set up their own mappings using open() and mmap().