sysfs-firmware-memmap 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. What: /sys/firmware/memmap/
  2. Date: June 2008
  3. Contact: Bernhard Walle <bernhard.walle@gmx.de>
  4. Description:
  5. On all platforms, the firmware provides a memory map which the
  6. kernel reads. The resources from that memory map are registered
  7. in the kernel resource tree and exposed to userspace via
  8. /proc/iomem (together with other resources).
  9. However, on most architectures that firmware-provided memory
  10. map is modified afterwards by the kernel itself, either because
  11. the kernel merges that memory map with other information or
  12. just because the user overwrites that memory map via command
  13. line.
  14. kexec needs the raw firmware-provided memory map to setup the
  15. parameter segment of the kernel that should be booted with
  16. kexec. Also, the raw memory map is useful for debugging. For
  17. that reason, /sys/firmware/memmap is an interface that provides
  18. the raw memory map to userspace.
  19. The structure is as follows: Under /sys/firmware/memmap there
  20. are subdirectories with the number of the entry as their name:
  21. /sys/firmware/memmap/0
  22. /sys/firmware/memmap/1
  23. /sys/firmware/memmap/2
  24. /sys/firmware/memmap/3
  25. ...
  26. The maximum depends on the number of memory map entries provided
  27. by the firmware. The order is just the order that the firmware
  28. provides.
  29. Each directory contains three files:
  30. start : The start address (as hexadecimal number with the
  31. '0x' prefix).
  32. end : The end address, inclusive (regardless whether the
  33. firmware provides inclusive or exclusive ranges).
  34. type : Type of the entry as string. See below for a list of
  35. valid types.
  36. So, for example:
  37. /sys/firmware/memmap/0/start
  38. /sys/firmware/memmap/0/end
  39. /sys/firmware/memmap/0/type
  40. /sys/firmware/memmap/1/start
  41. ...
  42. Currently following types exist:
  43. - System RAM
  44. - ACPI Tables
  45. - ACPI Non-volatile Storage
  46. - reserved
  47. Following shell snippet can be used to display that memory
  48. map in a human-readable format:
  49. -------------------- 8< ----------------------------------------
  50. #!/bin/bash
  51. cd /sys/firmware/memmap
  52. for dir in * ; do
  53. start=$(cat $dir/start)
  54. end=$(cat $dir/end)
  55. type=$(cat $dir/type)
  56. printf "%016x-%016x (%s)\n" $start $[ $end +1] "$type"
  57. done
  58. -------------------- >8 ----------------------------------------