qemu_fw_cfg.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /* SPDX-License-Identifier: BSD-3-Clause */
  2. #ifndef _LINUX_FW_CFG_H
  3. #define _LINUX_FW_CFG_H
  4. #include <linux/types.h>
  5. #define FW_CFG_ACPI_DEVICE_ID "QEMU0002"
  6. /* selector key values for "well-known" fw_cfg entries */
  7. #define FW_CFG_SIGNATURE 0x00
  8. #define FW_CFG_ID 0x01
  9. #define FW_CFG_UUID 0x02
  10. #define FW_CFG_RAM_SIZE 0x03
  11. #define FW_CFG_NOGRAPHIC 0x04
  12. #define FW_CFG_NB_CPUS 0x05
  13. #define FW_CFG_MACHINE_ID 0x06
  14. #define FW_CFG_KERNEL_ADDR 0x07
  15. #define FW_CFG_KERNEL_SIZE 0x08
  16. #define FW_CFG_KERNEL_CMDLINE 0x09
  17. #define FW_CFG_INITRD_ADDR 0x0a
  18. #define FW_CFG_INITRD_SIZE 0x0b
  19. #define FW_CFG_BOOT_DEVICE 0x0c
  20. #define FW_CFG_NUMA 0x0d
  21. #define FW_CFG_BOOT_MENU 0x0e
  22. #define FW_CFG_MAX_CPUS 0x0f
  23. #define FW_CFG_KERNEL_ENTRY 0x10
  24. #define FW_CFG_KERNEL_DATA 0x11
  25. #define FW_CFG_INITRD_DATA 0x12
  26. #define FW_CFG_CMDLINE_ADDR 0x13
  27. #define FW_CFG_CMDLINE_SIZE 0x14
  28. #define FW_CFG_CMDLINE_DATA 0x15
  29. #define FW_CFG_SETUP_ADDR 0x16
  30. #define FW_CFG_SETUP_SIZE 0x17
  31. #define FW_CFG_SETUP_DATA 0x18
  32. #define FW_CFG_FILE_DIR 0x19
  33. #define FW_CFG_FILE_FIRST 0x20
  34. #define FW_CFG_FILE_SLOTS_MIN 0x10
  35. #define FW_CFG_WRITE_CHANNEL 0x4000
  36. #define FW_CFG_ARCH_LOCAL 0x8000
  37. #define FW_CFG_ENTRY_MASK (~(FW_CFG_WRITE_CHANNEL | FW_CFG_ARCH_LOCAL))
  38. #define FW_CFG_INVALID 0xffff
  39. /* width in bytes of fw_cfg control register */
  40. #define FW_CFG_CTL_SIZE 0x02
  41. /* fw_cfg "file name" is up to 56 characters (including terminating nul) */
  42. #define FW_CFG_MAX_FILE_PATH 56
  43. /* size in bytes of fw_cfg signature */
  44. #define FW_CFG_SIG_SIZE 4
  45. /* FW_CFG_ID bits */
  46. #define FW_CFG_VERSION 0x01
  47. /* fw_cfg file directory entry type */
  48. struct fw_cfg_file {
  49. __be32 size;
  50. __be16 select;
  51. __u16 reserved;
  52. char name[FW_CFG_MAX_FILE_PATH];
  53. };
  54. #endif