acpi.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:12k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * acpi.h - ACPI Interface
  3.  *
  4.  * Copyright (C) 2001 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
  5.  *
  6.  * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  7.  *
  8.  * This program is free software; you can redistribute it and/or modify
  9.  * it under the terms of the GNU General Public License as published by
  10.  * the Free Software Foundation; either version 2 of the License, or
  11.  * (at your option) any later version.
  12.  *
  13.  * This program is distributed in the hope that it will be useful,
  14.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  * GNU General Public License for more details.
  17.  *
  18.  * You should have received a copy of the GNU General Public License
  19.  * along with this program; if not, write to the Free Software
  20.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  21.  *
  22.  * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  23.  */
  24. #ifndef _LINUX_ACPI_H
  25. #define _LINUX_ACPI_H
  26. #include <linux/config.h>
  27. #ifdef CONFIG_ACPI
  28. #ifndef _LINUX
  29. #define _LINUX
  30. #endif
  31. #include <linux/list.h>
  32. #include <acpi/acpi.h>
  33. #include <acpi/acpi_bus.h>
  34. #include <acpi/acpi_drivers.h>
  35. #include <asm/acpi.h>
  36. #ifdef CONFIG_ACPI
  37. enum acpi_irq_model_id {
  38. ACPI_IRQ_MODEL_PIC = 0,
  39. ACPI_IRQ_MODEL_IOAPIC,
  40. ACPI_IRQ_MODEL_IOSAPIC,
  41. ACPI_IRQ_MODEL_COUNT
  42. };
  43. extern enum acpi_irq_model_id acpi_irq_model;
  44. /* Root System Description Pointer (RSDP) */
  45. struct acpi_table_rsdp {
  46. char signature[8];
  47. u8 checksum;
  48. char oem_id[6];
  49. u8 revision;
  50. u32 rsdt_address;
  51. } __attribute__ ((packed));
  52. struct acpi20_table_rsdp {
  53. char signature[8];
  54. u8 checksum;
  55. char oem_id[6];
  56. u8 revision;
  57. u32 rsdt_address;
  58. u32 length;
  59. u64 xsdt_address;
  60. u8 ext_checksum;
  61. u8 reserved[3];
  62. } __attribute__ ((packed));
  63. typedef struct {
  64. u8 type;
  65. u8 length;
  66. } __attribute__ ((packed)) acpi_table_entry_header;
  67. /* Root System Description Table (RSDT) */
  68. struct acpi_table_rsdt {
  69. struct acpi_table_header header;
  70. u32 entry[8];
  71. } __attribute__ ((packed));
  72. /* Extended System Description Table (XSDT) */
  73. struct acpi_table_xsdt {
  74. struct acpi_table_header header;
  75. u64 entry[1];
  76. } __attribute__ ((packed));
  77. /* Fixed ACPI Description Table (FADT) */
  78. struct acpi_table_fadt {
  79. struct acpi_table_header header;
  80. u32 facs_addr;
  81. u32 dsdt_addr;
  82. /* ... */
  83. } __attribute__ ((packed));
  84. /* Multiple APIC Description Table (MADT) */
  85. struct acpi_table_madt {
  86. struct acpi_table_header header;
  87. u32 lapic_address;
  88. struct {
  89. u32 pcat_compat:1;
  90. u32 reserved:31;
  91. } flags;
  92. } __attribute__ ((packed));
  93. enum acpi_madt_entry_id {
  94. ACPI_MADT_LAPIC = 0,
  95. ACPI_MADT_IOAPIC,
  96. ACPI_MADT_INT_SRC_OVR,
  97. ACPI_MADT_NMI_SRC,
  98. ACPI_MADT_LAPIC_NMI,
  99. ACPI_MADT_LAPIC_ADDR_OVR,
  100. ACPI_MADT_IOSAPIC,
  101. ACPI_MADT_LSAPIC,
  102. ACPI_MADT_PLAT_INT_SRC,
  103. ACPI_MADT_ENTRY_COUNT
  104. };
  105. typedef struct {
  106. u16 polarity:2;
  107. u16 trigger:2;
  108. u16 reserved:12;
  109. } __attribute__ ((packed)) acpi_interrupt_flags;
  110. struct acpi_table_lapic {
  111. acpi_table_entry_header header;
  112. u8 acpi_id;
  113. u8 id;
  114. struct {
  115. u32 enabled:1;
  116. u32 reserved:31;
  117. } flags;
  118. } __attribute__ ((packed));
  119. struct acpi_table_ioapic {
  120. acpi_table_entry_header header;
  121. u8 id;
  122. u8 reserved;
  123. u32 address;
  124. u32 global_irq_base;
  125. } __attribute__ ((packed));
  126. struct acpi_table_int_src_ovr {
  127. acpi_table_entry_header header;
  128. u8 bus;
  129. u8 bus_irq;
  130. u32 global_irq;
  131. acpi_interrupt_flags flags;
  132. } __attribute__ ((packed));
  133. struct acpi_table_nmi_src {
  134. acpi_table_entry_header header;
  135. acpi_interrupt_flags flags;
  136. u32 global_irq;
  137. } __attribute__ ((packed));
  138. struct acpi_table_lapic_nmi {
  139. acpi_table_entry_header header;
  140. u8 acpi_id;
  141. acpi_interrupt_flags flags;
  142. u8 lint;
  143. } __attribute__ ((packed));
  144. struct acpi_table_lapic_addr_ovr {
  145. acpi_table_entry_header header;
  146. u8 reserved[2];
  147. u64 address;
  148. } __attribute__ ((packed));
  149. struct acpi_table_iosapic {
  150. acpi_table_entry_header header;
  151. u8 id;
  152. u8 reserved;
  153. u32 global_irq_base;
  154. u64 address;
  155. } __attribute__ ((packed));
  156. struct acpi_table_lsapic {
  157. acpi_table_entry_header header;
  158. u8 acpi_id;
  159. u8 id;
  160. u8 eid;
  161. u8 reserved[3];
  162. struct {
  163. u32 enabled:1;
  164. u32 reserved:31;
  165. } flags;
  166. } __attribute__ ((packed));
  167. struct acpi_table_plat_int_src {
  168. acpi_table_entry_header header;
  169. acpi_interrupt_flags flags;
  170. u8 type; /* See acpi_interrupt_type */
  171. u8 id;
  172. u8 eid;
  173. u8 iosapic_vector;
  174. u32 global_irq;
  175. struct {
  176. u32 cpei_override_flag:1;
  177. u32 reserved:31;
  178. } plint_flags;
  179. } __attribute__ ((packed));
  180. enum acpi_interrupt_id {
  181. ACPI_INTERRUPT_PMI = 1,
  182. ACPI_INTERRUPT_INIT,
  183. ACPI_INTERRUPT_CPEI,
  184. ACPI_INTERRUPT_COUNT
  185. };
  186. #define ACPI_SPACE_MEM 0
  187. struct acpi_gen_regaddr {
  188. u8  space_id;
  189. u8  bit_width;
  190. u8  bit_offset;
  191. u8  resv;
  192. u32 addrl;
  193. u32 addrh;
  194. } __attribute__ ((packed));
  195. struct acpi_table_hpet {
  196. struct acpi_table_header header;
  197. u32 id;
  198. struct acpi_gen_regaddr addr;
  199. u8 number;
  200. u16 min_tick;
  201. u8 page_protect;
  202. } __attribute__ ((packed));
  203. /*
  204.  * Simple Boot Flags
  205.  * http://www.microsoft.com/whdc/hwdev/resources/specs/simp_bios.mspx
  206.  */
  207. struct acpi_table_sbf
  208. {
  209. u8 sbf_signature[4];
  210. u32 sbf_len;
  211. u8 sbf_revision;
  212. u8 sbf_csum;
  213. u8 sbf_oemid[6];
  214. u8 sbf_oemtable[8];
  215. u8 sbf_revdata[4];
  216. u8 sbf_creator[4];
  217. u8 sbf_crearev[4];
  218. u8 sbf_cmos;
  219. u8 sbf_spare[3];
  220. } __attribute__ ((packed));
  221. /*
  222.  * System Resource Affinity Table (SRAT)
  223.  * http://www.microsoft.com/whdc/hwdev/platform/proc/SRAT.mspx
  224.  */
  225. struct acpi_table_srat {
  226. struct acpi_table_header header;
  227. u32 table_revision;
  228. u64 reserved;
  229. } __attribute__ ((packed));
  230. enum acpi_srat_entry_id {
  231. ACPI_SRAT_PROCESSOR_AFFINITY = 0,
  232. ACPI_SRAT_MEMORY_AFFINITY,
  233. ACPI_SRAT_ENTRY_COUNT
  234. };
  235. struct acpi_table_processor_affinity {
  236. acpi_table_entry_header header;
  237. u8 proximity_domain;
  238. u8 apic_id;
  239. struct {
  240. u32 enabled:1;
  241. u32 reserved:31;
  242. } flags;
  243. u8 lsapic_eid;
  244. u8 reserved[7];
  245. } __attribute__ ((packed));
  246. struct acpi_table_memory_affinity {
  247. acpi_table_entry_header header;
  248. u8 proximity_domain;
  249. u8 reserved1[5];
  250. u32 base_addr_lo;
  251. u32 base_addr_hi;
  252. u32 length_lo;
  253. u32 length_hi;
  254. u32 memory_type; /* See acpi_address_range_id */
  255. struct {
  256. u32 enabled:1;
  257. u32 hot_pluggable:1;
  258. u32 reserved:30;
  259. } flags;
  260. u64 reserved2;
  261. } __attribute__ ((packed));
  262. enum acpi_address_range_id {
  263. ACPI_ADDRESS_RANGE_MEMORY = 1,
  264. ACPI_ADDRESS_RANGE_RESERVED = 2,
  265. ACPI_ADDRESS_RANGE_ACPI = 3,
  266. ACPI_ADDRESS_RANGE_NVS = 4,
  267. ACPI_ADDRESS_RANGE_COUNT
  268. };
  269. /*
  270.  * System Locality Information Table (SLIT)
  271.  *   see http://devresource.hp.com/devresource/docs/techpapers/ia64/slit.pdf
  272.  */
  273. struct acpi_table_slit {
  274. struct acpi_table_header header;
  275. u64 localities;
  276. u8 entry[1]; /* real size = localities^2 */
  277. } __attribute__ ((packed));
  278. /* Smart Battery Description Table (SBST) */
  279. struct acpi_table_sbst {
  280. struct acpi_table_header header;
  281. u32 warning; /* Warn user */
  282. u32 low; /* Critical sleep */
  283. u32 critical; /* Critical shutdown */
  284. } __attribute__ ((packed));
  285. /* Embedded Controller Boot Resources Table (ECDT) */
  286. struct acpi_table_ecdt {
  287. struct acpi_table_header  header;
  288. struct acpi_generic_address ec_control;
  289. struct acpi_generic_address ec_data;
  290. u32 uid;
  291. u8 gpe_bit;
  292. char ec_id[0];
  293. } __attribute__ ((packed));
  294. /* PCI MMCONFIG */
  295. /* Defined in PCI Firmware Specification 3.0 */
  296. struct acpi_table_mcfg_config {
  297. u32 base_address;
  298. u32 base_reserved;
  299. u16 pci_segment_group_number;
  300. u8 start_bus_number;
  301. u8 end_bus_number;
  302. u8 reserved[4];
  303. } __attribute__ ((packed));
  304. struct acpi_table_mcfg {
  305. struct acpi_table_header header;
  306. u8 reserved[8];
  307. struct acpi_table_mcfg_config config[0];
  308. } __attribute__ ((packed));
  309. /* Table Handlers */
  310. enum acpi_table_id {
  311. ACPI_TABLE_UNKNOWN = 0,
  312. ACPI_APIC,
  313. ACPI_BOOT,
  314. ACPI_DBGP,
  315. ACPI_DSDT,
  316. ACPI_ECDT,
  317. ACPI_ETDT,
  318. ACPI_FADT,
  319. ACPI_FACS,
  320. ACPI_OEMX,
  321. ACPI_PSDT,
  322. ACPI_SBST,
  323. ACPI_SLIT,
  324. ACPI_SPCR,
  325. ACPI_SRAT,
  326. ACPI_SSDT,
  327. ACPI_SPMI,
  328. ACPI_HPET,
  329. ACPI_MCFG,
  330. ACPI_TABLE_COUNT
  331. };
  332. typedef int (*acpi_table_handler) (unsigned long phys_addr, unsigned long size);
  333. extern acpi_table_handler acpi_table_ops[ACPI_TABLE_COUNT];
  334. typedef int (*acpi_madt_entry_handler) (acpi_table_entry_header *header, const unsigned long end);
  335. char * __acpi_map_table (unsigned long phys_addr, unsigned long size);
  336. unsigned long acpi_find_rsdp (void);
  337. int acpi_boot_init (void);
  338. int acpi_boot_table_init (void);
  339. int acpi_numa_init (void);
  340. int acpi_table_init (void);
  341. int acpi_table_parse (enum acpi_table_id id, acpi_table_handler handler);
  342. int acpi_get_table_header_early (enum acpi_table_id id, struct acpi_table_header **header);
  343. int acpi_table_parse_madt (enum acpi_madt_entry_id id, acpi_madt_entry_handler handler, unsigned int max_entries);
  344. int acpi_table_parse_srat (enum acpi_srat_entry_id id, acpi_madt_entry_handler handler, unsigned int max_entries);
  345. int acpi_parse_mcfg (unsigned long phys_addr, unsigned long size);
  346. void acpi_table_print (struct acpi_table_header *header, unsigned long phys_addr);
  347. void acpi_table_print_madt_entry (acpi_table_entry_header *madt);
  348. void acpi_table_print_srat_entry (acpi_table_entry_header *srat);
  349. /* the following four functions are architecture-dependent */
  350. void acpi_numa_slit_init (struct acpi_table_slit *slit);
  351. void acpi_numa_processor_affinity_init (struct acpi_table_processor_affinity *pa);
  352. void acpi_numa_memory_affinity_init (struct acpi_table_memory_affinity *ma);
  353. void acpi_numa_arch_fixup(void);
  354. #ifdef CONFIG_ACPI_HOTPLUG_CPU
  355. /* Arch dependent functions for cpu hotplug support */
  356. int acpi_map_lsapic(acpi_handle handle, int *pcpu);
  357. int acpi_unmap_lsapic(int cpu);
  358. #endif /* CONFIG_ACPI_HOTPLUG_CPU */
  359. int acpi_register_ioapic(acpi_handle handle, u64 phys_addr, u32 gsi_base);
  360. int acpi_unregister_ioapic(acpi_handle handle, u32 gsi_base);
  361. extern int acpi_mp_config;
  362. extern struct acpi_table_mcfg_config *pci_mmcfg_config;
  363. extern int pci_mmcfg_config_num;
  364. extern int sbf_port ;
  365. #else /* !CONFIG_ACPI */
  366. #define acpi_mp_config 0
  367. #endif  /* !CONFIG_ACPI */
  368. int acpi_register_gsi (u32 gsi, int edge_level, int active_high_low);
  369. int acpi_gsi_to_irq (u32 gsi, unsigned int *irq);
  370. /*
  371.  * This function undoes the effect of one call to acpi_register_gsi().
  372.  * If this matches the last registration, any IRQ resources for gsi
  373.  * are freed.
  374.  */
  375. void acpi_unregister_gsi (u32 gsi);
  376. #ifdef CONFIG_ACPI
  377. struct acpi_prt_entry {
  378. struct list_head node;
  379. struct acpi_pci_id id;
  380. u8 pin;
  381. struct {
  382. acpi_handle handle;
  383. u32 index;
  384. } link;
  385. u32 irq;
  386. };
  387. struct acpi_prt_list {
  388. int count;
  389. struct list_head entries;
  390. };
  391. struct pci_dev;
  392. int acpi_pci_irq_enable (struct pci_dev *dev);
  393. void acpi_penalize_isa_irq(int irq, int active);
  394. void acpi_pci_irq_disable (struct pci_dev *dev);
  395. struct acpi_pci_driver {
  396. struct acpi_pci_driver *next;
  397. int (*add)(acpi_handle handle);
  398. void (*remove)(acpi_handle handle);
  399. };
  400. int acpi_pci_register_driver(struct acpi_pci_driver *driver);
  401. void acpi_pci_unregister_driver(struct acpi_pci_driver *driver);
  402. #endif /* CONFIG_ACPI */
  403. #ifdef CONFIG_ACPI_EC
  404. extern int ec_read(u8 addr, u8 *val);
  405. extern int ec_write(u8 addr, u8 val);
  406. #endif /*CONFIG_ACPI_EC*/
  407. extern int acpi_blacklisted(void);
  408. extern void acpi_bios_year(char *s);
  409. #define ACPI_CSTATE_LIMIT_DEFINED /* for driver builds */
  410. #ifdef CONFIG_ACPI
  411. /*
  412.  * Set highest legal C-state
  413.  * 0: C0 okay, but not C1
  414.  * 1: C1 okay, but not C2
  415.  * 2: C2 okay, but not C3 etc.
  416.  */
  417. extern unsigned int max_cstate;
  418. static inline unsigned int acpi_get_cstate_limit(void)
  419. {
  420. return max_cstate;
  421. }
  422. static inline void acpi_set_cstate_limit(unsigned int new_limit)
  423. {
  424. max_cstate = new_limit;
  425. return;
  426. }
  427. #else
  428. static inline unsigned int acpi_get_cstate_limit(void) { return 0; }
  429. static inline void acpi_set_cstate_limit(unsigned int new_limit) { return; }
  430. #endif
  431. #ifdef CONFIG_ACPI_NUMA
  432. int acpi_get_pxm(acpi_handle handle);
  433. #else
  434. static inline int acpi_get_pxm(acpi_handle handle)
  435. {
  436. return 0;
  437. }
  438. #endif
  439. extern int pnpacpi_disabled;
  440. #else /* CONFIG_ACPI */
  441. static inline int acpi_boot_init(void)
  442. {
  443. return 0;
  444. }
  445. static inline int acpi_boot_table_init(void)
  446. {
  447. return 0;
  448. }
  449. #endif /* CONFIG_ACPI */
  450. #endif /*_LINUX_ACPI_H*/