efi.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:7k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _ASM_IA64_EFI_H
  2. #define _ASM_IA64_EFI_H
  3. /*
  4.  * Extensible Firmware Interface
  5.  * Based on 'Extensible Firmware Interface Specification' version 0.9, April 30, 1999
  6.  *
  7.  * Copyright (C) 1999 VA Linux Systems
  8.  * Copyright (C) 1999 Walt Drummond <drummond@valinux.com>
  9.  * Copyright (C) 1999 Hewlett-Packard Co.
  10.  * Copyright (C) 1999 David Mosberger-Tang <davidm@hpl.hp.com>
  11.  * Copyright (C) 1999 Stephane Eranian <eranian@hpl.hp.com>
  12.  */
  13. #include <linux/init.h>
  14. #include <linux/string.h>
  15. #include <linux/time.h>
  16. #include <linux/types.h>
  17. #include <linux/proc_fs.h>
  18. #include <asm/page.h>
  19. #include <asm/system.h>
  20. #define EFI_SUCCESS 0
  21. #define EFI_LOAD_ERROR          (1L | (1L << 63))
  22. #define EFI_INVALID_PARAMETER (2L | (1L << 63))
  23. #define EFI_UNSUPPORTED (3L | (1L << 63))
  24. #define EFI_BAD_BUFFER_SIZE     (4L | (1L << 63))
  25. #define EFI_BUFFER_TOO_SMALL (5L | (1L << 63))
  26. #define EFI_NOT_FOUND          (14L | (1L << 63))
  27. typedef unsigned long efi_status_t;
  28. typedef u8 efi_bool_t;
  29. typedef u16 efi_char16_t; /* UNICODE character */
  30. typedef struct {
  31. u32 data1;
  32. u16 data2;
  33. u16 data3;
  34. u8 data4[8];
  35. } efi_guid_t;
  36. /*
  37.  * Generic EFI table header
  38.  */
  39. typedef struct {
  40. u64 signature;
  41. u32 revision;
  42. u32 headersize;
  43. u32 crc32;
  44. u32 reserved;
  45. } efi_table_hdr_t;
  46. /*
  47.  * Memory map descriptor:
  48.  */
  49. /* Memory types: */
  50. #define EFI_RESERVED_TYPE  0
  51. #define EFI_LOADER_CODE  1
  52. #define EFI_LOADER_DATA  2
  53. #define EFI_BOOT_SERVICES_CODE  3
  54. #define EFI_BOOT_SERVICES_DATA  4
  55. #define EFI_RUNTIME_SERVICES_CODE  5
  56. #define EFI_RUNTIME_SERVICES_DATA  6
  57. #define EFI_CONVENTIONAL_MEMORY  7
  58. #define EFI_UNUSABLE_MEMORY  8
  59. #define EFI_ACPI_RECLAIM_MEMORY  9
  60. #define EFI_ACPI_MEMORY_NVS 10
  61. #define EFI_MEMORY_MAPPED_IO 11
  62. #define EFI_MEMORY_MAPPED_IO_PORT_SPACE 12
  63. #define EFI_PAL_CODE 13
  64. #define EFI_MAX_MEMORY_TYPE 14
  65. /* Attribute values: */
  66. #define EFI_MEMORY_UC 0x0000000000000001 /* uncached */
  67. #define EFI_MEMORY_WC 0x0000000000000002 /* write-coalescing */
  68. #define EFI_MEMORY_WT 0x0000000000000004 /* write-through */
  69. #define EFI_MEMORY_WB 0x0000000000000008 /* write-back */
  70. #define EFI_MEMORY_WP 0x0000000000001000 /* write-protect */
  71. #define EFI_MEMORY_RP 0x0000000000002000 /* read-protect */
  72. #define EFI_MEMORY_XP 0x0000000000004000 /* execute-protect */
  73. #define EFI_MEMORY_RUNTIME 0x8000000000000000 /* range requires runtime mapping */
  74. #define EFI_MEMORY_DESCRIPTOR_VERSION 1
  75. typedef struct {
  76. u32 type;
  77. u32 pad;
  78. u64 phys_addr;
  79. u64 virt_addr;
  80. u64 num_pages;
  81. u64 attribute;
  82. } efi_memory_desc_t;
  83. typedef int efi_freemem_callback_t (u64 start, u64 end, void *arg);
  84. /*
  85.  * Types and defines for Time Services
  86.  */
  87. #define EFI_TIME_ADJUST_DAYLIGHT 0x1
  88. #define EFI_TIME_IN_DAYLIGHT     0x2
  89. #define EFI_UNSPECIFIED_TIMEZONE 0x07ff
  90. typedef struct {
  91. u16 year;
  92. u8 month;
  93. u8 day;
  94. u8 hour;
  95. u8 minute;
  96. u8 second;
  97. u8 pad1;
  98. u32 nanosecond;
  99. s16 timezone;
  100. u8 daylight;
  101. u8 pad2;
  102. } efi_time_t;
  103. typedef struct {
  104. u32 resolution;
  105. u32 accuracy;
  106. u8 sets_to_zero;
  107. } efi_time_cap_t;
  108. /*
  109.  * Types and defines for EFI ResetSystem
  110.  */
  111. #define EFI_RESET_COLD 0
  112. #define EFI_RESET_WARM 1
  113. /*
  114.  * EFI Runtime Services table
  115.  */
  116. #define EFI_RUNTIME_SERVICES_SIGNATURE 0x5652453544e5552
  117. #define EFI_RUNTIME_SERVICES_REVISION  0x00010000
  118. typedef struct {
  119. efi_table_hdr_t hdr;
  120. u64 get_time;
  121. u64 set_time;
  122. u64 get_wakeup_time;
  123. u64 set_wakeup_time;
  124. u64 set_virtual_address_map;
  125. u64 convert_pointer;
  126. u64 get_variable;
  127. u64 get_next_variable;
  128. u64 set_variable;
  129. u64 get_next_high_mono_count;
  130. u64 reset_system;
  131. } efi_runtime_services_t;
  132. typedef efi_status_t efi_get_time_t (efi_time_t *tm, efi_time_cap_t *tc);
  133. typedef efi_status_t efi_set_time_t (efi_time_t *tm);
  134. typedef efi_status_t efi_get_wakeup_time_t (efi_bool_t *enabled, efi_bool_t *pending,
  135.     efi_time_t *tm);
  136. typedef efi_status_t efi_set_wakeup_time_t (efi_bool_t enabled, efi_time_t *tm);
  137. typedef efi_status_t efi_get_variable_t (efi_char16_t *name, efi_guid_t *vendor, u32 *attr,
  138.  unsigned long *data_size, void *data);
  139. typedef efi_status_t efi_get_next_variable_t (unsigned long *name_size, efi_char16_t *name,
  140.       efi_guid_t *vendor);
  141. typedef efi_status_t efi_set_variable_t (efi_char16_t *name, efi_guid_t *vendor, u32 attr,
  142.  unsigned long data_size, void *data);
  143. typedef efi_status_t efi_get_next_high_mono_count_t (u64 *count);
  144. typedef void efi_reset_system_t (int reset_type, efi_status_t status,
  145.  unsigned long data_size, efi_char16_t *data);
  146. /*
  147.  *  EFI Configuration Table and GUID definitions
  148.  */
  149. #define MPS_TABLE_GUID    
  150.     ((efi_guid_t) { 0xeb9d2d2f, 0x2d88, 0x11d3, { 0x9a, 0x16, 0x0, 0x90, 0x27, 0x3f, 0xc1, 0x4d }})
  151. #define ACPI_TABLE_GUID    
  152.     ((efi_guid_t) { 0xeb9d2d30, 0x2d88, 0x11d3, { 0x9a, 0x16, 0x0, 0x90, 0x27, 0x3f, 0xc1, 0x4d }})
  153. #define ACPI_20_TABLE_GUID    
  154.     ((efi_guid_t) { 0x8868e871, 0xe4f1, 0x11d3, { 0xbc, 0x22, 0x0, 0x80, 0xc7, 0x3c, 0x88, 0x81 }})
  155. #define SMBIOS_TABLE_GUID    
  156.     ((efi_guid_t) { 0xeb9d2d31, 0x2d88, 0x11d3, { 0x9a, 0x16, 0x0, 0x90, 0x27, 0x3f, 0xc1, 0x4d }})
  157. #define SAL_SYSTEM_TABLE_GUID    
  158.     ((efi_guid_t) { 0xeb9d2d32, 0x2d88, 0x11d3, { 0x9a, 0x16, 0x0, 0x90, 0x27, 0x3f, 0xc1, 0x4d }})
  159. typedef struct {
  160. efi_guid_t guid;
  161. u64 table;
  162. } efi_config_table_t;
  163. #define EFI_SYSTEM_TABLE_SIGNATURE 0x5453595320494249
  164. #define EFI_SYSTEM_TABLE_REVISION  ((1 << 16) | 00)
  165. typedef struct {
  166. efi_table_hdr_t hdr;
  167. u64 fw_vendor; /* physical addr of CHAR16 vendor string */
  168. u32 fw_revision;
  169. u64 con_in_handle;
  170. u64 con_in;
  171. u64 con_out_handle;
  172. u64 con_out;
  173. u64 stderr_handle;
  174. u64 stderr;
  175. u64 runtime;
  176. u64 boottime;
  177. u64 nr_tables;
  178. u64 tables;
  179. } efi_system_table_t;
  180. /*
  181.  * All runtime access to EFI goes through this structure:
  182.  */
  183. extern struct efi {
  184. efi_system_table_t *systab; /* EFI system table */
  185. void *mps; /* MPS table */
  186. void *acpi; /* ACPI table  (IA64 ext 0.71) */
  187. void *acpi20; /* ACPI table  (ACPI 2.0) */
  188. void *smbios; /* SM BIOS table */
  189. void *sal_systab; /* SAL system table */
  190. void *boot_info; /* boot info table */
  191. efi_get_time_t *get_time;
  192. efi_set_time_t *set_time;
  193. efi_get_wakeup_time_t *get_wakeup_time;
  194. efi_set_wakeup_time_t *set_wakeup_time;
  195. efi_get_variable_t *get_variable;
  196. efi_get_next_variable_t *get_next_variable;
  197. efi_set_variable_t *set_variable;
  198. efi_get_next_high_mono_count_t *get_next_high_mono_count;
  199. efi_reset_system_t *reset_system;
  200. } efi;
  201. static inline int
  202. efi_guidcmp (efi_guid_t left, efi_guid_t right)
  203. {
  204. return memcmp(&left, &right, sizeof (efi_guid_t));
  205. }
  206. extern void efi_init (void);
  207. extern void efi_map_pal_code (void);
  208. extern void efi_memmap_walk (efi_freemem_callback_t callback, void *arg);
  209. extern void efi_gettimeofday (struct timeval *tv);
  210. extern void efi_enter_virtual_mode (void); /* switch EFI to virtual mode, if possible */
  211. extern u64  efi_get_iobase (void);
  212. /*
  213.  * Variable Attributes
  214.  */
  215. #define EFI_VARIABLE_NON_VOLATILE       0x0000000000000001
  216. #define EFI_VARIABLE_BOOTSERVICE_ACCESS 0x0000000000000002
  217. #define EFI_VARIABLE_RUNTIME_ACCESS     0x0000000000000004
  218. /*
  219.  * efi_dir is allocated in arch/ia64/kernel/efi.c.
  220.  */
  221. #ifdef CONFIG_PROC_FS
  222. extern struct proc_dir_entry *efi_dir;
  223. #endif
  224. #endif /* _ASM_IA64_EFI_H */