2 * acpi.h - ACPI Interface
4 * Copyright (C) 2001 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
6 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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.
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.
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
22 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
35 #include <linux/list.h>
37 #include <acpi/acpi.h>
38 #include <acpi/acpi_bus.h>
39 #include <acpi/acpi_drivers.h>
40 #include <acpi/acpi_numa.h>
46 enum acpi_irq_model_id
{
47 ACPI_IRQ_MODEL_PIC
= 0,
48 ACPI_IRQ_MODEL_IOAPIC
,
49 ACPI_IRQ_MODEL_IOSAPIC
,
53 extern enum acpi_irq_model_id acpi_irq_model
;
56 /* Root System Description Pointer (RSDP) */
58 struct acpi_table_rsdp
{
64 } __attribute__ ((packed
));
66 struct acpi20_table_rsdp
{
76 } __attribute__ ((packed
));
81 } __attribute__ ((packed
)) acpi_table_entry_header
;
83 /* Root System Description Table (RSDT) */
85 struct acpi_table_rsdt
{
86 struct acpi_table_header header
;
88 } __attribute__ ((packed
));
90 /* Extended System Description Table (XSDT) */
92 struct acpi_table_xsdt
{
93 struct acpi_table_header header
;
95 } __attribute__ ((packed
));
97 /* Fixed ACPI Description Table (FADT) */
99 struct acpi_table_fadt
{
100 struct acpi_table_header header
;
104 } __attribute__ ((packed
));
106 /* Multiple APIC Description Table (MADT) */
108 struct acpi_table_madt
{
109 struct acpi_table_header header
;
115 } __attribute__ ((packed
));
117 enum acpi_madt_entry_id
{
120 ACPI_MADT_INT_SRC_OVR
,
123 ACPI_MADT_LAPIC_ADDR_OVR
,
126 ACPI_MADT_PLAT_INT_SRC
,
127 ACPI_MADT_ENTRY_COUNT
134 } __attribute__ ((packed
)) acpi_interrupt_flags
;
136 struct acpi_table_lapic
{
137 acpi_table_entry_header header
;
144 } __attribute__ ((packed
));
146 struct acpi_table_ioapic
{
147 acpi_table_entry_header header
;
152 } __attribute__ ((packed
));
154 struct acpi_table_int_src_ovr
{
155 acpi_table_entry_header header
;
159 acpi_interrupt_flags flags
;
160 } __attribute__ ((packed
));
162 struct acpi_table_nmi_src
{
163 acpi_table_entry_header header
;
164 acpi_interrupt_flags flags
;
166 } __attribute__ ((packed
));
168 struct acpi_table_lapic_nmi
{
169 acpi_table_entry_header header
;
171 acpi_interrupt_flags flags
;
173 } __attribute__ ((packed
));
175 struct acpi_table_lapic_addr_ovr
{
176 acpi_table_entry_header header
;
179 } __attribute__ ((packed
));
181 struct acpi_table_iosapic
{
182 acpi_table_entry_header header
;
187 } __attribute__ ((packed
));
189 struct acpi_table_lsapic
{
190 acpi_table_entry_header header
;
199 } __attribute__ ((packed
));
201 struct acpi_table_plat_int_src
{
202 acpi_table_entry_header header
;
203 acpi_interrupt_flags flags
;
204 u8 type
; /* See acpi_interrupt_type */
210 u32 cpei_override_flag
:1;
213 } __attribute__ ((packed
));
215 enum acpi_interrupt_id
{
216 ACPI_INTERRUPT_PMI
= 1,
222 #define ACPI_SPACE_MEM 0
224 struct acpi_gen_regaddr
{
231 } __attribute__ ((packed
));
233 struct acpi_table_hpet
{
234 struct acpi_table_header header
;
236 struct acpi_gen_regaddr addr
;
240 } __attribute__ ((packed
));
244 * http://www.microsoft.com/whdc/hwdev/resources/specs/simp_bios.mspx
246 struct acpi_table_sbf
259 } __attribute__ ((packed
));
262 * System Resource Affinity Table (SRAT)
263 * http://www.microsoft.com/whdc/hwdev/platform/proc/SRAT.mspx
266 struct acpi_table_srat
{
267 struct acpi_table_header header
;
270 } __attribute__ ((packed
));
272 enum acpi_srat_entry_id
{
273 ACPI_SRAT_PROCESSOR_AFFINITY
= 0,
274 ACPI_SRAT_MEMORY_AFFINITY
,
275 ACPI_SRAT_ENTRY_COUNT
278 struct acpi_table_processor_affinity
{
279 acpi_table_entry_header header
;
288 } __attribute__ ((packed
));
290 struct acpi_table_memory_affinity
{
291 acpi_table_entry_header header
;
298 u32 memory_type
; /* See acpi_address_range_id */
305 } __attribute__ ((packed
));
307 enum acpi_address_range_id
{
308 ACPI_ADDRESS_RANGE_MEMORY
= 1,
309 ACPI_ADDRESS_RANGE_RESERVED
= 2,
310 ACPI_ADDRESS_RANGE_ACPI
= 3,
311 ACPI_ADDRESS_RANGE_NVS
= 4,
312 ACPI_ADDRESS_RANGE_COUNT
316 * System Locality Information Table (SLIT)
317 * see http://devresource.hp.com/devresource/docs/techpapers/ia64/slit.pdf
320 struct acpi_table_slit
{
321 struct acpi_table_header header
;
323 u8 entry
[1]; /* real size = localities^2 */
324 } __attribute__ ((packed
));
326 /* Smart Battery Description Table (SBST) */
328 struct acpi_table_sbst
{
329 struct acpi_table_header header
;
330 u32 warning
; /* Warn user */
331 u32 low
; /* Critical sleep */
332 u32 critical
; /* Critical shutdown */
333 } __attribute__ ((packed
));
335 /* Embedded Controller Boot Resources Table (ECDT) */
337 struct acpi_table_ecdt
{
338 struct acpi_table_header header
;
339 struct acpi_generic_address ec_control
;
340 struct acpi_generic_address ec_data
;
344 } __attribute__ ((packed
));
348 /* Defined in PCI Firmware Specification 3.0 */
349 struct acpi_table_mcfg_config
{
352 u16 pci_segment_group_number
;
356 } __attribute__ ((packed
));
357 struct acpi_table_mcfg
{
358 struct acpi_table_header header
;
360 struct acpi_table_mcfg_config config
[0];
361 } __attribute__ ((packed
));
366 ACPI_TABLE_UNKNOWN
= 0,
388 typedef int (*acpi_table_handler
) (unsigned long phys_addr
, unsigned long size
);
390 extern acpi_table_handler acpi_table_ops
[ACPI_TABLE_COUNT
];
392 typedef int (*acpi_madt_entry_handler
) (acpi_table_entry_header
*header
, const unsigned long end
);
394 char * __acpi_map_table (unsigned long phys_addr
, unsigned long size
);
395 unsigned long acpi_find_rsdp (void);
396 int acpi_boot_init (void);
397 int acpi_boot_table_init (void);
398 int acpi_numa_init (void);
400 int acpi_table_init (void);
401 int acpi_table_parse (enum acpi_table_id id
, acpi_table_handler handler
);
402 int acpi_get_table_header_early (enum acpi_table_id id
, struct acpi_table_header
**header
);
403 int acpi_table_parse_madt (enum acpi_madt_entry_id id
, acpi_madt_entry_handler handler
, unsigned int max_entries
);
404 int acpi_table_parse_srat (enum acpi_srat_entry_id id
, acpi_madt_entry_handler handler
, unsigned int max_entries
);
405 int acpi_parse_mcfg (unsigned long phys_addr
, unsigned long size
);
406 void acpi_table_print (struct acpi_table_header
*header
, unsigned long phys_addr
);
407 void acpi_table_print_madt_entry (acpi_table_entry_header
*madt
);
408 void acpi_table_print_srat_entry (acpi_table_entry_header
*srat
);
410 /* the following four functions are architecture-dependent */
411 #ifdef CONFIG_HAVE_ARCH_PARSE_SRAT
412 #define NR_NODE_MEMBLKS MAX_NUMNODES
413 #define acpi_numa_slit_init(slit) do {} while (0)
414 #define acpi_numa_processor_affinity_init(pa) do {} while (0)
415 #define acpi_numa_memory_affinity_init(ma) do {} while (0)
416 #define acpi_numa_arch_fixup() do {} while (0)
418 void acpi_numa_slit_init (struct acpi_table_slit
*slit
);
419 void acpi_numa_processor_affinity_init (struct acpi_table_processor_affinity
*pa
);
420 void acpi_numa_memory_affinity_init (struct acpi_table_memory_affinity
*ma
);
421 void acpi_numa_arch_fixup(void);
424 #ifdef CONFIG_ACPI_HOTPLUG_CPU
425 /* Arch dependent functions for cpu hotplug support */
426 int acpi_map_lsapic(acpi_handle handle
, int *pcpu
);
427 int acpi_unmap_lsapic(int cpu
);
428 #endif /* CONFIG_ACPI_HOTPLUG_CPU */
430 int acpi_register_ioapic(acpi_handle handle
, u64 phys_addr
, u32 gsi_base
);
431 int acpi_unregister_ioapic(acpi_handle handle
, u32 gsi_base
);
433 extern int acpi_mp_config
;
435 extern struct acpi_table_mcfg_config
*pci_mmcfg_config
;
436 extern int pci_mmcfg_config_num
;
439 extern unsigned long acpi_video_flags
;
441 #else /* !CONFIG_ACPI */
443 #define acpi_mp_config 0
445 #endif /* !CONFIG_ACPI */
447 int acpi_register_gsi (u32 gsi
, int triggering
, int polarity
);
448 int acpi_gsi_to_irq (u32 gsi
, unsigned int *irq
);
451 * This function undoes the effect of one call to acpi_register_gsi().
452 * If this matches the last registration, any IRQ resources for gsi
455 void acpi_unregister_gsi (u32 gsi
);
459 struct acpi_prt_entry
{
460 struct list_head node
;
461 struct acpi_pci_id id
;
470 struct acpi_prt_list
{
472 struct list_head entries
;
477 int acpi_pci_irq_enable (struct pci_dev
*dev
);
478 void acpi_penalize_isa_irq(int irq
, int active
);
480 void acpi_pci_irq_disable (struct pci_dev
*dev
);
482 struct acpi_pci_driver
{
483 struct acpi_pci_driver
*next
;
484 int (*add
)(acpi_handle handle
);
485 void (*remove
)(acpi_handle handle
);
488 int acpi_pci_register_driver(struct acpi_pci_driver
*driver
);
489 void acpi_pci_unregister_driver(struct acpi_pci_driver
*driver
);
491 #endif /* CONFIG_ACPI */
493 #ifdef CONFIG_ACPI_EC
495 extern int ec_read(u8 addr
, u8
*val
);
496 extern int ec_write(u8 addr
, u8 val
);
497 extern int ec_transaction(u8 command
,
498 const u8
*wdata
, unsigned wdata_len
,
499 u8
*rdata
, unsigned rdata_len
);
501 #endif /*CONFIG_ACPI_EC*/
503 extern int acpi_blacklisted(void);
504 extern void acpi_bios_year(char *s
);
506 #define ACPI_CSTATE_LIMIT_DEFINED /* for driver builds */
510 * Set highest legal C-state
511 * 0: C0 okay, but not C1
512 * 1: C1 okay, but not C2
513 * 2: C2 okay, but not C3 etc.
516 extern unsigned int max_cstate
;
518 static inline unsigned int acpi_get_cstate_limit(void)
522 static inline void acpi_set_cstate_limit(unsigned int new_limit
)
524 max_cstate
= new_limit
;
528 static inline unsigned int acpi_get_cstate_limit(void) { return 0; }
529 static inline void acpi_set_cstate_limit(unsigned int new_limit
) { return; }
532 #ifdef CONFIG_ACPI_NUMA
533 int acpi_get_pxm(acpi_handle handle
);
534 int acpi_get_node(acpi_handle
*handle
);
536 static inline int acpi_get_pxm(acpi_handle handle
)
540 static inline int acpi_get_node(acpi_handle
*handle
)
545 extern int acpi_paddr_to_node(u64 start_addr
, u64 size
);
547 extern int pnpacpi_disabled
;
549 #else /* CONFIG_ACPI */
551 static inline int acpi_boot_init(void)
556 static inline int acpi_boot_table_init(void)
561 #endif /* CONFIG_ACPI */
562 #endif /*_LINUX_ACPI_H*/