acpi.h 33 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126
  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. * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  19. */
  20. #ifndef _LINUX_ACPI_H
  21. #define _LINUX_ACPI_H
  22. #include <linux/errno.h>
  23. #include <linux/ioport.h> /* for struct resource */
  24. #include <linux/resource_ext.h>
  25. #include <linux/device.h>
  26. #include <linux/property.h>
  27. #ifndef _LINUX
  28. #define _LINUX
  29. #endif
  30. #include <acpi/acpi.h>
  31. #ifdef CONFIG_ACPI
  32. #include <linux/list.h>
  33. #include <linux/mod_devicetable.h>
  34. #include <linux/dynamic_debug.h>
  35. #include <linux/module.h>
  36. #include <linux/mutex.h>
  37. #include <acpi/acpi_bus.h>
  38. #include <acpi/acpi_drivers.h>
  39. #include <acpi/acpi_numa.h>
  40. #include <acpi/acpi_io.h>
  41. #include <asm/acpi.h>
  42. static inline acpi_handle acpi_device_handle(struct acpi_device *adev)
  43. {
  44. return adev ? adev->handle : NULL;
  45. }
  46. #define ACPI_COMPANION(dev) to_acpi_device_node((dev)->fwnode)
  47. #define ACPI_COMPANION_SET(dev, adev) set_primary_fwnode(dev, (adev) ? \
  48. acpi_fwnode_handle(adev) : NULL)
  49. #define ACPI_HANDLE(dev) acpi_device_handle(ACPI_COMPANION(dev))
  50. /**
  51. * ACPI_DEVICE_CLASS - macro used to describe an ACPI device with
  52. * the PCI-defined class-code information
  53. *
  54. * @_cls : the class, subclass, prog-if triple for this device
  55. * @_msk : the class mask for this device
  56. *
  57. * This macro is used to create a struct acpi_device_id that matches a
  58. * specific PCI class. The .id and .driver_data fields will be left
  59. * initialized with the default value.
  60. */
  61. #define ACPI_DEVICE_CLASS(_cls, _msk) .cls = (_cls), .cls_msk = (_msk),
  62. static inline bool has_acpi_companion(struct device *dev)
  63. {
  64. return is_acpi_device_node(dev->fwnode);
  65. }
  66. static inline void acpi_preset_companion(struct device *dev,
  67. struct acpi_device *parent, u64 addr)
  68. {
  69. ACPI_COMPANION_SET(dev, acpi_find_child_device(parent, addr, NULL));
  70. }
  71. static inline const char *acpi_dev_name(struct acpi_device *adev)
  72. {
  73. return dev_name(&adev->dev);
  74. }
  75. struct device *acpi_get_first_physical_node(struct acpi_device *adev);
  76. enum acpi_irq_model_id {
  77. ACPI_IRQ_MODEL_PIC = 0,
  78. ACPI_IRQ_MODEL_IOAPIC,
  79. ACPI_IRQ_MODEL_IOSAPIC,
  80. ACPI_IRQ_MODEL_PLATFORM,
  81. ACPI_IRQ_MODEL_GIC,
  82. ACPI_IRQ_MODEL_COUNT
  83. };
  84. extern enum acpi_irq_model_id acpi_irq_model;
  85. enum acpi_interrupt_id {
  86. ACPI_INTERRUPT_PMI = 1,
  87. ACPI_INTERRUPT_INIT,
  88. ACPI_INTERRUPT_CPEI,
  89. ACPI_INTERRUPT_COUNT
  90. };
  91. #define ACPI_SPACE_MEM 0
  92. enum acpi_address_range_id {
  93. ACPI_ADDRESS_RANGE_MEMORY = 1,
  94. ACPI_ADDRESS_RANGE_RESERVED = 2,
  95. ACPI_ADDRESS_RANGE_ACPI = 3,
  96. ACPI_ADDRESS_RANGE_NVS = 4,
  97. ACPI_ADDRESS_RANGE_COUNT
  98. };
  99. /* Table Handlers */
  100. typedef int (*acpi_tbl_table_handler)(struct acpi_table_header *table);
  101. typedef int (*acpi_tbl_entry_handler)(struct acpi_subtable_header *header,
  102. const unsigned long end);
  103. /* Debugger support */
  104. struct acpi_debugger_ops {
  105. int (*create_thread)(acpi_osd_exec_callback function, void *context);
  106. ssize_t (*write_log)(const char *msg);
  107. ssize_t (*read_cmd)(char *buffer, size_t length);
  108. int (*wait_command_ready)(bool single_step, char *buffer, size_t length);
  109. int (*notify_command_complete)(void);
  110. };
  111. struct acpi_debugger {
  112. const struct acpi_debugger_ops *ops;
  113. struct module *owner;
  114. struct mutex lock;
  115. };
  116. #ifdef CONFIG_ACPI_DEBUGGER
  117. int __init acpi_debugger_init(void);
  118. int acpi_register_debugger(struct module *owner,
  119. const struct acpi_debugger_ops *ops);
  120. void acpi_unregister_debugger(const struct acpi_debugger_ops *ops);
  121. int acpi_debugger_create_thread(acpi_osd_exec_callback function, void *context);
  122. ssize_t acpi_debugger_write_log(const char *msg);
  123. ssize_t acpi_debugger_read_cmd(char *buffer, size_t buffer_length);
  124. int acpi_debugger_wait_command_ready(void);
  125. int acpi_debugger_notify_command_complete(void);
  126. #else
  127. static inline int acpi_debugger_init(void)
  128. {
  129. return -ENODEV;
  130. }
  131. static inline int acpi_register_debugger(struct module *owner,
  132. const struct acpi_debugger_ops *ops)
  133. {
  134. return -ENODEV;
  135. }
  136. static inline void acpi_unregister_debugger(const struct acpi_debugger_ops *ops)
  137. {
  138. }
  139. static inline int acpi_debugger_create_thread(acpi_osd_exec_callback function,
  140. void *context)
  141. {
  142. return -ENODEV;
  143. }
  144. static inline int acpi_debugger_write_log(const char *msg)
  145. {
  146. return -ENODEV;
  147. }
  148. static inline int acpi_debugger_read_cmd(char *buffer, u32 buffer_length)
  149. {
  150. return -ENODEV;
  151. }
  152. static inline int acpi_debugger_wait_command_ready(void)
  153. {
  154. return -ENODEV;
  155. }
  156. static inline int acpi_debugger_notify_command_complete(void)
  157. {
  158. return -ENODEV;
  159. }
  160. #endif
  161. #define BAD_MADT_ENTRY(entry, end) ( \
  162. (!entry) || (unsigned long)entry + sizeof(*entry) > end || \
  163. ((struct acpi_subtable_header *)entry)->length < sizeof(*entry))
  164. struct acpi_subtable_proc {
  165. int id;
  166. acpi_tbl_entry_handler handler;
  167. int count;
  168. };
  169. char * __acpi_map_table (unsigned long phys_addr, unsigned long size);
  170. void __acpi_unmap_table(char *map, unsigned long size);
  171. int early_acpi_boot_init(void);
  172. int acpi_boot_init (void);
  173. void acpi_boot_table_init (void);
  174. int acpi_mps_check (void);
  175. int acpi_numa_init (void);
  176. int acpi_table_init (void);
  177. int acpi_table_parse(char *id, acpi_tbl_table_handler handler);
  178. int __init acpi_parse_entries(char *id, unsigned long table_size,
  179. acpi_tbl_entry_handler handler,
  180. struct acpi_table_header *table_header,
  181. int entry_id, unsigned int max_entries);
  182. int __init acpi_table_parse_entries(char *id, unsigned long table_size,
  183. int entry_id,
  184. acpi_tbl_entry_handler handler,
  185. unsigned int max_entries);
  186. int __init acpi_table_parse_entries(char *id, unsigned long table_size,
  187. int entry_id,
  188. acpi_tbl_entry_handler handler,
  189. unsigned int max_entries);
  190. int __init acpi_table_parse_entries_array(char *id, unsigned long table_size,
  191. struct acpi_subtable_proc *proc, int proc_num,
  192. unsigned int max_entries);
  193. int acpi_table_parse_madt(enum acpi_madt_type id,
  194. acpi_tbl_entry_handler handler,
  195. unsigned int max_entries);
  196. int acpi_parse_mcfg (struct acpi_table_header *header);
  197. void acpi_table_print_madt_entry (struct acpi_subtable_header *madt);
  198. /* the following numa functions are architecture-dependent */
  199. void acpi_numa_slit_init (struct acpi_table_slit *slit);
  200. #if defined(CONFIG_X86) || defined(CONFIG_IA64)
  201. void acpi_numa_processor_affinity_init (struct acpi_srat_cpu_affinity *pa);
  202. #else
  203. static inline void
  204. acpi_numa_processor_affinity_init(struct acpi_srat_cpu_affinity *pa) { }
  205. #endif
  206. void acpi_numa_x2apic_affinity_init(struct acpi_srat_x2apic_cpu_affinity *pa);
  207. #ifdef CONFIG_ARM64
  208. void acpi_numa_gicc_affinity_init(struct acpi_srat_gicc_affinity *pa);
  209. #else
  210. static inline void
  211. acpi_numa_gicc_affinity_init(struct acpi_srat_gicc_affinity *pa) { }
  212. #endif
  213. int acpi_numa_memory_affinity_init (struct acpi_srat_mem_affinity *ma);
  214. #ifndef PHYS_CPUID_INVALID
  215. typedef u32 phys_cpuid_t;
  216. #define PHYS_CPUID_INVALID (phys_cpuid_t)(-1)
  217. #endif
  218. static inline bool invalid_logical_cpuid(u32 cpuid)
  219. {
  220. return (int)cpuid < 0;
  221. }
  222. static inline bool invalid_phys_cpuid(phys_cpuid_t phys_id)
  223. {
  224. return phys_id == PHYS_CPUID_INVALID;
  225. }
  226. /* Validate the processor object's proc_id */
  227. bool acpi_processor_validate_proc_id(int proc_id);
  228. #ifdef CONFIG_ACPI_HOTPLUG_CPU
  229. /* Arch dependent functions for cpu hotplug support */
  230. int acpi_map_cpu(acpi_handle handle, phys_cpuid_t physid, int *pcpu);
  231. int acpi_unmap_cpu(int cpu);
  232. int acpi_map_cpu2node(acpi_handle handle, int cpu, int physid);
  233. #endif /* CONFIG_ACPI_HOTPLUG_CPU */
  234. void acpi_set_processor_mapping(void);
  235. #ifdef CONFIG_ACPI_HOTPLUG_IOAPIC
  236. int acpi_get_ioapic_id(acpi_handle handle, u32 gsi_base, u64 *phys_addr);
  237. #endif
  238. int acpi_register_ioapic(acpi_handle handle, u64 phys_addr, u32 gsi_base);
  239. int acpi_unregister_ioapic(acpi_handle handle, u32 gsi_base);
  240. int acpi_ioapic_registered(acpi_handle handle, u32 gsi_base);
  241. void acpi_irq_stats_init(void);
  242. extern u32 acpi_irq_handled;
  243. extern u32 acpi_irq_not_handled;
  244. extern unsigned int acpi_sci_irq;
  245. extern bool acpi_no_s5;
  246. #define INVALID_ACPI_IRQ ((unsigned)-1)
  247. static inline bool acpi_sci_irq_valid(void)
  248. {
  249. return acpi_sci_irq != INVALID_ACPI_IRQ;
  250. }
  251. extern int sbf_port;
  252. extern unsigned long acpi_realmode_flags;
  253. int acpi_register_gsi (struct device *dev, u32 gsi, int triggering, int polarity);
  254. int acpi_gsi_to_irq (u32 gsi, unsigned int *irq);
  255. int acpi_isa_irq_to_gsi (unsigned isa_irq, u32 *gsi);
  256. void acpi_set_irq_model(enum acpi_irq_model_id model,
  257. struct fwnode_handle *fwnode);
  258. #ifdef CONFIG_X86_IO_APIC
  259. extern int acpi_get_override_irq(u32 gsi, int *trigger, int *polarity);
  260. #else
  261. #define acpi_get_override_irq(gsi, trigger, polarity) (-1)
  262. #endif
  263. /*
  264. * This function undoes the effect of one call to acpi_register_gsi().
  265. * If this matches the last registration, any IRQ resources for gsi
  266. * are freed.
  267. */
  268. void acpi_unregister_gsi (u32 gsi);
  269. struct pci_dev;
  270. int acpi_pci_irq_enable (struct pci_dev *dev);
  271. void acpi_penalize_isa_irq(int irq, int active);
  272. bool acpi_isa_irq_available(int irq);
  273. void acpi_penalize_sci_irq(int irq, int trigger, int polarity);
  274. void acpi_pci_irq_disable (struct pci_dev *dev);
  275. extern int ec_read(u8 addr, u8 *val);
  276. extern int ec_write(u8 addr, u8 val);
  277. extern int ec_transaction(u8 command,
  278. const u8 *wdata, unsigned wdata_len,
  279. u8 *rdata, unsigned rdata_len);
  280. extern acpi_handle ec_get_handle(void);
  281. extern bool acpi_is_pnp_device(struct acpi_device *);
  282. #if defined(CONFIG_ACPI_WMI) || defined(CONFIG_ACPI_WMI_MODULE)
  283. typedef void (*wmi_notify_handler) (u32 value, void *context);
  284. extern acpi_status wmi_evaluate_method(const char *guid, u8 instance,
  285. u32 method_id,
  286. const struct acpi_buffer *in,
  287. struct acpi_buffer *out);
  288. extern acpi_status wmi_query_block(const char *guid, u8 instance,
  289. struct acpi_buffer *out);
  290. extern acpi_status wmi_set_block(const char *guid, u8 instance,
  291. const struct acpi_buffer *in);
  292. extern acpi_status wmi_install_notify_handler(const char *guid,
  293. wmi_notify_handler handler, void *data);
  294. extern acpi_status wmi_remove_notify_handler(const char *guid);
  295. extern acpi_status wmi_get_event_data(u32 event, struct acpi_buffer *out);
  296. extern bool wmi_has_guid(const char *guid);
  297. #endif /* CONFIG_ACPI_WMI */
  298. #define ACPI_VIDEO_OUTPUT_SWITCHING 0x0001
  299. #define ACPI_VIDEO_DEVICE_POSTING 0x0002
  300. #define ACPI_VIDEO_ROM_AVAILABLE 0x0004
  301. #define ACPI_VIDEO_BACKLIGHT 0x0008
  302. #define ACPI_VIDEO_BACKLIGHT_FORCE_VENDOR 0x0010
  303. #define ACPI_VIDEO_BACKLIGHT_FORCE_VIDEO 0x0020
  304. #define ACPI_VIDEO_OUTPUT_SWITCHING_FORCE_VENDOR 0x0040
  305. #define ACPI_VIDEO_OUTPUT_SWITCHING_FORCE_VIDEO 0x0080
  306. #define ACPI_VIDEO_BACKLIGHT_DMI_VENDOR 0x0100
  307. #define ACPI_VIDEO_BACKLIGHT_DMI_VIDEO 0x0200
  308. #define ACPI_VIDEO_OUTPUT_SWITCHING_DMI_VENDOR 0x0400
  309. #define ACPI_VIDEO_OUTPUT_SWITCHING_DMI_VIDEO 0x0800
  310. extern char acpi_video_backlight_string[];
  311. extern long acpi_is_video_device(acpi_handle handle);
  312. extern int acpi_blacklisted(void);
  313. extern void acpi_osi_setup(char *str);
  314. extern bool acpi_osi_is_win8(void);
  315. #ifdef CONFIG_ACPI_NUMA
  316. int acpi_map_pxm_to_online_node(int pxm);
  317. int acpi_get_node(acpi_handle handle);
  318. #else
  319. static inline int acpi_map_pxm_to_online_node(int pxm)
  320. {
  321. return 0;
  322. }
  323. static inline int acpi_get_node(acpi_handle handle)
  324. {
  325. return 0;
  326. }
  327. #endif
  328. extern int acpi_paddr_to_node(u64 start_addr, u64 size);
  329. extern int pnpacpi_disabled;
  330. #define PXM_INVAL (-1)
  331. bool acpi_dev_resource_memory(struct acpi_resource *ares, struct resource *res);
  332. bool acpi_dev_resource_io(struct acpi_resource *ares, struct resource *res);
  333. bool acpi_dev_resource_address_space(struct acpi_resource *ares,
  334. struct resource_win *win);
  335. bool acpi_dev_resource_ext_address_space(struct acpi_resource *ares,
  336. struct resource_win *win);
  337. unsigned long acpi_dev_irq_flags(u8 triggering, u8 polarity, u8 shareable);
  338. unsigned int acpi_dev_get_irq_type(int triggering, int polarity);
  339. bool acpi_dev_resource_interrupt(struct acpi_resource *ares, int index,
  340. struct resource *res);
  341. void acpi_dev_free_resource_list(struct list_head *list);
  342. int acpi_dev_get_resources(struct acpi_device *adev, struct list_head *list,
  343. int (*preproc)(struct acpi_resource *, void *),
  344. void *preproc_data);
  345. int acpi_dev_filter_resource_type(struct acpi_resource *ares,
  346. unsigned long types);
  347. static inline int acpi_dev_filter_resource_type_cb(struct acpi_resource *ares,
  348. void *arg)
  349. {
  350. return acpi_dev_filter_resource_type(ares, (unsigned long)arg);
  351. }
  352. int acpi_check_resource_conflict(const struct resource *res);
  353. int acpi_check_region(resource_size_t start, resource_size_t n,
  354. const char *name);
  355. int acpi_resources_are_enforced(void);
  356. #ifdef CONFIG_HIBERNATION
  357. void __init acpi_no_s4_hw_signature(void);
  358. #endif
  359. #ifdef CONFIG_PM_SLEEP
  360. void __init acpi_old_suspend_ordering(void);
  361. void __init acpi_nvs_nosave(void);
  362. void __init acpi_nvs_nosave_s3(void);
  363. #endif /* CONFIG_PM_SLEEP */
  364. struct acpi_osc_context {
  365. char *uuid_str; /* UUID string */
  366. int rev;
  367. struct acpi_buffer cap; /* list of DWORD capabilities */
  368. struct acpi_buffer ret; /* free by caller if success */
  369. };
  370. acpi_status acpi_str_to_uuid(char *str, u8 *uuid);
  371. acpi_status acpi_run_osc(acpi_handle handle, struct acpi_osc_context *context);
  372. /* Indexes into _OSC Capabilities Buffer (DWORDs 2 & 3 are device-specific) */
  373. #define OSC_QUERY_DWORD 0 /* DWORD 1 */
  374. #define OSC_SUPPORT_DWORD 1 /* DWORD 2 */
  375. #define OSC_CONTROL_DWORD 2 /* DWORD 3 */
  376. /* _OSC Capabilities DWORD 1: Query/Control and Error Returns (generic) */
  377. #define OSC_QUERY_ENABLE 0x00000001 /* input */
  378. #define OSC_REQUEST_ERROR 0x00000002 /* return */
  379. #define OSC_INVALID_UUID_ERROR 0x00000004 /* return */
  380. #define OSC_INVALID_REVISION_ERROR 0x00000008 /* return */
  381. #define OSC_CAPABILITIES_MASK_ERROR 0x00000010 /* return */
  382. /* Platform-Wide Capabilities _OSC: Capabilities DWORD 2: Support Field */
  383. #define OSC_SB_PAD_SUPPORT 0x00000001
  384. #define OSC_SB_PPC_OST_SUPPORT 0x00000002
  385. #define OSC_SB_PR3_SUPPORT 0x00000004
  386. #define OSC_SB_HOTPLUG_OST_SUPPORT 0x00000008
  387. #define OSC_SB_APEI_SUPPORT 0x00000010
  388. #define OSC_SB_CPC_SUPPORT 0x00000020
  389. #define OSC_SB_CPCV2_SUPPORT 0x00000040
  390. #define OSC_SB_PCLPI_SUPPORT 0x00000080
  391. #define OSC_SB_OSLPI_SUPPORT 0x00000100
  392. extern bool osc_sb_apei_support_acked;
  393. extern bool osc_pc_lpi_support_confirmed;
  394. /* PCI Host Bridge _OSC: Capabilities DWORD 2: Support Field */
  395. #define OSC_PCI_EXT_CONFIG_SUPPORT 0x00000001
  396. #define OSC_PCI_ASPM_SUPPORT 0x00000002
  397. #define OSC_PCI_CLOCK_PM_SUPPORT 0x00000004
  398. #define OSC_PCI_SEGMENT_GROUPS_SUPPORT 0x00000008
  399. #define OSC_PCI_MSI_SUPPORT 0x00000010
  400. #define OSC_PCI_SUPPORT_MASKS 0x0000001f
  401. /* PCI Host Bridge _OSC: Capabilities DWORD 3: Control Field */
  402. #define OSC_PCI_EXPRESS_NATIVE_HP_CONTROL 0x00000001
  403. #define OSC_PCI_SHPC_NATIVE_HP_CONTROL 0x00000002
  404. #define OSC_PCI_EXPRESS_PME_CONTROL 0x00000004
  405. #define OSC_PCI_EXPRESS_AER_CONTROL 0x00000008
  406. #define OSC_PCI_EXPRESS_CAPABILITY_CONTROL 0x00000010
  407. #define OSC_PCI_CONTROL_MASKS 0x0000001f
  408. #define ACPI_GSB_ACCESS_ATTRIB_QUICK 0x00000002
  409. #define ACPI_GSB_ACCESS_ATTRIB_SEND_RCV 0x00000004
  410. #define ACPI_GSB_ACCESS_ATTRIB_BYTE 0x00000006
  411. #define ACPI_GSB_ACCESS_ATTRIB_WORD 0x00000008
  412. #define ACPI_GSB_ACCESS_ATTRIB_BLOCK 0x0000000A
  413. #define ACPI_GSB_ACCESS_ATTRIB_MULTIBYTE 0x0000000B
  414. #define ACPI_GSB_ACCESS_ATTRIB_WORD_CALL 0x0000000C
  415. #define ACPI_GSB_ACCESS_ATTRIB_BLOCK_CALL 0x0000000D
  416. #define ACPI_GSB_ACCESS_ATTRIB_RAW_BYTES 0x0000000E
  417. #define ACPI_GSB_ACCESS_ATTRIB_RAW_PROCESS 0x0000000F
  418. extern acpi_status acpi_pci_osc_control_set(acpi_handle handle,
  419. u32 *mask, u32 req);
  420. /* Enable _OST when all relevant hotplug operations are enabled */
  421. #if defined(CONFIG_ACPI_HOTPLUG_CPU) && \
  422. defined(CONFIG_ACPI_HOTPLUG_MEMORY) && \
  423. defined(CONFIG_ACPI_CONTAINER)
  424. #define ACPI_HOTPLUG_OST
  425. #endif
  426. /* _OST Source Event Code (OSPM Action) */
  427. #define ACPI_OST_EC_OSPM_SHUTDOWN 0x100
  428. #define ACPI_OST_EC_OSPM_EJECT 0x103
  429. #define ACPI_OST_EC_OSPM_INSERTION 0x200
  430. /* _OST General Processing Status Code */
  431. #define ACPI_OST_SC_SUCCESS 0x0
  432. #define ACPI_OST_SC_NON_SPECIFIC_FAILURE 0x1
  433. #define ACPI_OST_SC_UNRECOGNIZED_NOTIFY 0x2
  434. /* _OST OS Shutdown Processing (0x100) Status Code */
  435. #define ACPI_OST_SC_OS_SHUTDOWN_DENIED 0x80
  436. #define ACPI_OST_SC_OS_SHUTDOWN_IN_PROGRESS 0x81
  437. #define ACPI_OST_SC_OS_SHUTDOWN_COMPLETED 0x82
  438. #define ACPI_OST_SC_OS_SHUTDOWN_NOT_SUPPORTED 0x83
  439. /* _OST Ejection Request (0x3, 0x103) Status Code */
  440. #define ACPI_OST_SC_EJECT_NOT_SUPPORTED 0x80
  441. #define ACPI_OST_SC_DEVICE_IN_USE 0x81
  442. #define ACPI_OST_SC_DEVICE_BUSY 0x82
  443. #define ACPI_OST_SC_EJECT_DEPENDENCY_BUSY 0x83
  444. #define ACPI_OST_SC_EJECT_IN_PROGRESS 0x84
  445. /* _OST Insertion Request (0x200) Status Code */
  446. #define ACPI_OST_SC_INSERT_IN_PROGRESS 0x80
  447. #define ACPI_OST_SC_DRIVER_LOAD_FAILURE 0x81
  448. #define ACPI_OST_SC_INSERT_NOT_SUPPORTED 0x82
  449. extern void acpi_early_init(void);
  450. extern void acpi_subsystem_init(void);
  451. extern int acpi_nvs_register(__u64 start, __u64 size);
  452. extern int acpi_nvs_for_each_region(int (*func)(__u64, __u64, void *),
  453. void *data);
  454. const struct acpi_device_id *acpi_match_device(const struct acpi_device_id *ids,
  455. const struct device *dev);
  456. extern bool acpi_driver_match_device(struct device *dev,
  457. const struct device_driver *drv);
  458. int acpi_device_uevent_modalias(struct device *, struct kobj_uevent_env *);
  459. int acpi_device_modalias(struct device *, char *, int);
  460. void acpi_walk_dep_device_list(acpi_handle handle);
  461. struct platform_device *acpi_create_platform_device(struct acpi_device *,
  462. struct property_entry *);
  463. #define ACPI_PTR(_ptr) (_ptr)
  464. static inline void acpi_device_set_enumerated(struct acpi_device *adev)
  465. {
  466. adev->flags.visited = true;
  467. }
  468. static inline void acpi_device_clear_enumerated(struct acpi_device *adev)
  469. {
  470. adev->flags.visited = false;
  471. }
  472. enum acpi_reconfig_event {
  473. ACPI_RECONFIG_DEVICE_ADD = 0,
  474. ACPI_RECONFIG_DEVICE_REMOVE,
  475. };
  476. int acpi_reconfig_notifier_register(struct notifier_block *nb);
  477. int acpi_reconfig_notifier_unregister(struct notifier_block *nb);
  478. #else /* !CONFIG_ACPI */
  479. #define acpi_disabled 1
  480. #define ACPI_COMPANION(dev) (NULL)
  481. #define ACPI_COMPANION_SET(dev, adev) do { } while (0)
  482. #define ACPI_HANDLE(dev) (NULL)
  483. #define ACPI_DEVICE_CLASS(_cls, _msk) .cls = (0), .cls_msk = (0),
  484. struct fwnode_handle;
  485. static inline bool acpi_dev_found(const char *hid)
  486. {
  487. return false;
  488. }
  489. static inline bool is_acpi_node(struct fwnode_handle *fwnode)
  490. {
  491. return false;
  492. }
  493. static inline bool is_acpi_device_node(struct fwnode_handle *fwnode)
  494. {
  495. return false;
  496. }
  497. static inline struct acpi_device *to_acpi_device_node(struct fwnode_handle *fwnode)
  498. {
  499. return NULL;
  500. }
  501. static inline bool is_acpi_data_node(struct fwnode_handle *fwnode)
  502. {
  503. return false;
  504. }
  505. static inline struct acpi_data_node *to_acpi_data_node(struct fwnode_handle *fwnode)
  506. {
  507. return NULL;
  508. }
  509. static inline bool acpi_data_node_match(struct fwnode_handle *fwnode,
  510. const char *name)
  511. {
  512. return false;
  513. }
  514. static inline struct fwnode_handle *acpi_fwnode_handle(struct acpi_device *adev)
  515. {
  516. return NULL;
  517. }
  518. static inline bool has_acpi_companion(struct device *dev)
  519. {
  520. return false;
  521. }
  522. static inline void acpi_preset_companion(struct device *dev,
  523. struct acpi_device *parent, u64 addr)
  524. {
  525. }
  526. static inline const char *acpi_dev_name(struct acpi_device *adev)
  527. {
  528. return NULL;
  529. }
  530. static inline struct device *acpi_get_first_physical_node(struct acpi_device *adev)
  531. {
  532. return NULL;
  533. }
  534. static inline void acpi_early_init(void) { }
  535. static inline void acpi_subsystem_init(void) { }
  536. static inline int early_acpi_boot_init(void)
  537. {
  538. return 0;
  539. }
  540. static inline int acpi_boot_init(void)
  541. {
  542. return 0;
  543. }
  544. static inline void acpi_boot_table_init(void)
  545. {
  546. return;
  547. }
  548. static inline int acpi_mps_check(void)
  549. {
  550. return 0;
  551. }
  552. static inline int acpi_check_resource_conflict(struct resource *res)
  553. {
  554. return 0;
  555. }
  556. static inline int acpi_check_region(resource_size_t start, resource_size_t n,
  557. const char *name)
  558. {
  559. return 0;
  560. }
  561. struct acpi_table_header;
  562. static inline int acpi_table_parse(char *id,
  563. int (*handler)(struct acpi_table_header *))
  564. {
  565. return -ENODEV;
  566. }
  567. static inline int acpi_nvs_register(__u64 start, __u64 size)
  568. {
  569. return 0;
  570. }
  571. static inline int acpi_nvs_for_each_region(int (*func)(__u64, __u64, void *),
  572. void *data)
  573. {
  574. return 0;
  575. }
  576. struct acpi_device_id;
  577. static inline const struct acpi_device_id *acpi_match_device(
  578. const struct acpi_device_id *ids, const struct device *dev)
  579. {
  580. return NULL;
  581. }
  582. static inline bool acpi_driver_match_device(struct device *dev,
  583. const struct device_driver *drv)
  584. {
  585. return false;
  586. }
  587. static inline union acpi_object *acpi_evaluate_dsm(acpi_handle handle,
  588. const u8 *uuid,
  589. int rev, int func,
  590. union acpi_object *argv4)
  591. {
  592. return NULL;
  593. }
  594. static inline int acpi_device_uevent_modalias(struct device *dev,
  595. struct kobj_uevent_env *env)
  596. {
  597. return -ENODEV;
  598. }
  599. static inline int acpi_device_modalias(struct device *dev,
  600. char *buf, int size)
  601. {
  602. return -ENODEV;
  603. }
  604. static inline bool acpi_dma_supported(struct acpi_device *adev)
  605. {
  606. return false;
  607. }
  608. static inline enum dev_dma_attr acpi_get_dma_attr(struct acpi_device *adev)
  609. {
  610. return DEV_DMA_NOT_SUPPORTED;
  611. }
  612. #define ACPI_PTR(_ptr) (NULL)
  613. static inline void acpi_device_set_enumerated(struct acpi_device *adev)
  614. {
  615. }
  616. static inline void acpi_device_clear_enumerated(struct acpi_device *adev)
  617. {
  618. }
  619. static inline int acpi_reconfig_notifier_register(struct notifier_block *nb)
  620. {
  621. return -EINVAL;
  622. }
  623. static inline int acpi_reconfig_notifier_unregister(struct notifier_block *nb)
  624. {
  625. return -EINVAL;
  626. }
  627. #endif /* !CONFIG_ACPI */
  628. #ifdef CONFIG_ACPI_HOTPLUG_IOAPIC
  629. int acpi_ioapic_add(acpi_handle root);
  630. #else
  631. static inline int acpi_ioapic_add(acpi_handle root) { return 0; }
  632. #endif
  633. #ifdef CONFIG_ACPI
  634. void acpi_os_set_prepare_sleep(int (*func)(u8 sleep_state,
  635. u32 pm1a_ctrl, u32 pm1b_ctrl));
  636. acpi_status acpi_os_prepare_sleep(u8 sleep_state,
  637. u32 pm1a_control, u32 pm1b_control);
  638. void acpi_os_set_prepare_extended_sleep(int (*func)(u8 sleep_state,
  639. u32 val_a, u32 val_b));
  640. acpi_status acpi_os_prepare_extended_sleep(u8 sleep_state,
  641. u32 val_a, u32 val_b);
  642. #ifdef CONFIG_X86
  643. void arch_reserve_mem_area(acpi_physical_address addr, size_t size);
  644. #else
  645. static inline void arch_reserve_mem_area(acpi_physical_address addr,
  646. size_t size)
  647. {
  648. }
  649. #endif /* CONFIG_X86 */
  650. #else
  651. #define acpi_os_set_prepare_sleep(func, pm1a_ctrl, pm1b_ctrl) do { } while (0)
  652. #endif
  653. #if defined(CONFIG_ACPI) && defined(CONFIG_PM)
  654. int acpi_dev_runtime_suspend(struct device *dev);
  655. int acpi_dev_runtime_resume(struct device *dev);
  656. int acpi_subsys_runtime_suspend(struct device *dev);
  657. int acpi_subsys_runtime_resume(struct device *dev);
  658. struct acpi_device *acpi_dev_pm_get_node(struct device *dev);
  659. int acpi_dev_pm_attach(struct device *dev, bool power_on);
  660. #else
  661. static inline int acpi_dev_runtime_suspend(struct device *dev) { return 0; }
  662. static inline int acpi_dev_runtime_resume(struct device *dev) { return 0; }
  663. static inline int acpi_subsys_runtime_suspend(struct device *dev) { return 0; }
  664. static inline int acpi_subsys_runtime_resume(struct device *dev) { return 0; }
  665. static inline struct acpi_device *acpi_dev_pm_get_node(struct device *dev)
  666. {
  667. return NULL;
  668. }
  669. static inline int acpi_dev_pm_attach(struct device *dev, bool power_on)
  670. {
  671. return -ENODEV;
  672. }
  673. #endif
  674. #if defined(CONFIG_ACPI) && defined(CONFIG_PM_SLEEP)
  675. int acpi_dev_suspend_late(struct device *dev);
  676. int acpi_dev_resume_early(struct device *dev);
  677. int acpi_subsys_prepare(struct device *dev);
  678. void acpi_subsys_complete(struct device *dev);
  679. int acpi_subsys_suspend_late(struct device *dev);
  680. int acpi_subsys_resume_early(struct device *dev);
  681. int acpi_subsys_suspend(struct device *dev);
  682. int acpi_subsys_freeze(struct device *dev);
  683. #else
  684. static inline int acpi_dev_suspend_late(struct device *dev) { return 0; }
  685. static inline int acpi_dev_resume_early(struct device *dev) { return 0; }
  686. static inline int acpi_subsys_prepare(struct device *dev) { return 0; }
  687. static inline void acpi_subsys_complete(struct device *dev) {}
  688. static inline int acpi_subsys_suspend_late(struct device *dev) { return 0; }
  689. static inline int acpi_subsys_resume_early(struct device *dev) { return 0; }
  690. static inline int acpi_subsys_suspend(struct device *dev) { return 0; }
  691. static inline int acpi_subsys_freeze(struct device *dev) { return 0; }
  692. #endif
  693. #ifdef CONFIG_ACPI
  694. __printf(3, 4)
  695. void acpi_handle_printk(const char *level, acpi_handle handle,
  696. const char *fmt, ...);
  697. #else /* !CONFIG_ACPI */
  698. static inline __printf(3, 4) void
  699. acpi_handle_printk(const char *level, void *handle, const char *fmt, ...) {}
  700. #endif /* !CONFIG_ACPI */
  701. #if defined(CONFIG_ACPI) && defined(CONFIG_DYNAMIC_DEBUG)
  702. __printf(3, 4)
  703. void __acpi_handle_debug(struct _ddebug *descriptor, acpi_handle handle, const char *fmt, ...);
  704. #else
  705. #define __acpi_handle_debug(descriptor, handle, fmt, ...) \
  706. acpi_handle_printk(KERN_DEBUG, handle, fmt, ##__VA_ARGS__);
  707. #endif
  708. /*
  709. * acpi_handle_<level>: Print message with ACPI prefix and object path
  710. *
  711. * These interfaces acquire the global namespace mutex to obtain an object
  712. * path. In interrupt context, it shows the object path as <n/a>.
  713. */
  714. #define acpi_handle_emerg(handle, fmt, ...) \
  715. acpi_handle_printk(KERN_EMERG, handle, fmt, ##__VA_ARGS__)
  716. #define acpi_handle_alert(handle, fmt, ...) \
  717. acpi_handle_printk(KERN_ALERT, handle, fmt, ##__VA_ARGS__)
  718. #define acpi_handle_crit(handle, fmt, ...) \
  719. acpi_handle_printk(KERN_CRIT, handle, fmt, ##__VA_ARGS__)
  720. #define acpi_handle_err(handle, fmt, ...) \
  721. acpi_handle_printk(KERN_ERR, handle, fmt, ##__VA_ARGS__)
  722. #define acpi_handle_warn(handle, fmt, ...) \
  723. acpi_handle_printk(KERN_WARNING, handle, fmt, ##__VA_ARGS__)
  724. #define acpi_handle_notice(handle, fmt, ...) \
  725. acpi_handle_printk(KERN_NOTICE, handle, fmt, ##__VA_ARGS__)
  726. #define acpi_handle_info(handle, fmt, ...) \
  727. acpi_handle_printk(KERN_INFO, handle, fmt, ##__VA_ARGS__)
  728. #if defined(DEBUG)
  729. #define acpi_handle_debug(handle, fmt, ...) \
  730. acpi_handle_printk(KERN_DEBUG, handle, fmt, ##__VA_ARGS__)
  731. #else
  732. #if defined(CONFIG_DYNAMIC_DEBUG)
  733. #define acpi_handle_debug(handle, fmt, ...) \
  734. do { \
  735. DEFINE_DYNAMIC_DEBUG_METADATA(descriptor, fmt); \
  736. if (unlikely(descriptor.flags & _DPRINTK_FLAGS_PRINT)) \
  737. __acpi_handle_debug(&descriptor, handle, pr_fmt(fmt), \
  738. ##__VA_ARGS__); \
  739. } while (0)
  740. #else
  741. #define acpi_handle_debug(handle, fmt, ...) \
  742. ({ \
  743. if (0) \
  744. acpi_handle_printk(KERN_DEBUG, handle, fmt, ##__VA_ARGS__); \
  745. 0; \
  746. })
  747. #endif
  748. #endif
  749. struct acpi_gpio_params {
  750. unsigned int crs_entry_index;
  751. unsigned int line_index;
  752. bool active_low;
  753. };
  754. struct acpi_gpio_mapping {
  755. const char *name;
  756. const struct acpi_gpio_params *data;
  757. unsigned int size;
  758. };
  759. #if defined(CONFIG_ACPI) && defined(CONFIG_GPIOLIB)
  760. int acpi_dev_add_driver_gpios(struct acpi_device *adev,
  761. const struct acpi_gpio_mapping *gpios);
  762. static inline void acpi_dev_remove_driver_gpios(struct acpi_device *adev)
  763. {
  764. if (adev)
  765. adev->driver_gpios = NULL;
  766. }
  767. int acpi_dev_gpio_irq_get(struct acpi_device *adev, int index);
  768. #else
  769. static inline int acpi_dev_add_driver_gpios(struct acpi_device *adev,
  770. const struct acpi_gpio_mapping *gpios)
  771. {
  772. return -ENXIO;
  773. }
  774. static inline void acpi_dev_remove_driver_gpios(struct acpi_device *adev) {}
  775. static inline int acpi_dev_gpio_irq_get(struct acpi_device *adev, int index)
  776. {
  777. return -ENXIO;
  778. }
  779. #endif
  780. /* Device properties */
  781. #define MAX_ACPI_REFERENCE_ARGS 8
  782. struct acpi_reference_args {
  783. struct acpi_device *adev;
  784. size_t nargs;
  785. u64 args[MAX_ACPI_REFERENCE_ARGS];
  786. };
  787. #ifdef CONFIG_ACPI
  788. int acpi_dev_get_property(struct acpi_device *adev, const char *name,
  789. acpi_object_type type, const union acpi_object **obj);
  790. int __acpi_node_get_property_reference(struct fwnode_handle *fwnode,
  791. const char *name, size_t index, size_t num_args,
  792. struct acpi_reference_args *args);
  793. static inline int acpi_node_get_property_reference(struct fwnode_handle *fwnode,
  794. const char *name, size_t index,
  795. struct acpi_reference_args *args)
  796. {
  797. return __acpi_node_get_property_reference(fwnode, name, index,
  798. MAX_ACPI_REFERENCE_ARGS, args);
  799. }
  800. int acpi_node_prop_get(struct fwnode_handle *fwnode, const char *propname,
  801. void **valptr);
  802. int acpi_dev_prop_read_single(struct acpi_device *adev, const char *propname,
  803. enum dev_prop_type proptype, void *val);
  804. int acpi_node_prop_read(struct fwnode_handle *fwnode, const char *propname,
  805. enum dev_prop_type proptype, void *val, size_t nval);
  806. int acpi_dev_prop_read(struct acpi_device *adev, const char *propname,
  807. enum dev_prop_type proptype, void *val, size_t nval);
  808. struct fwnode_handle *acpi_get_next_subnode(struct device *dev,
  809. struct fwnode_handle *subnode);
  810. struct acpi_probe_entry;
  811. typedef bool (*acpi_probe_entry_validate_subtbl)(struct acpi_subtable_header *,
  812. struct acpi_probe_entry *);
  813. #define ACPI_TABLE_ID_LEN 5
  814. /**
  815. * struct acpi_probe_entry - boot-time probing entry
  816. * @id: ACPI table name
  817. * @type: Optional subtable type to match
  818. * (if @id contains subtables)
  819. * @subtable_valid: Optional callback to check the validity of
  820. * the subtable
  821. * @probe_table: Callback to the driver being probed when table
  822. * match is successful
  823. * @probe_subtbl: Callback to the driver being probed when table and
  824. * subtable match (and optional callback is successful)
  825. * @driver_data: Sideband data provided back to the driver
  826. */
  827. struct acpi_probe_entry {
  828. __u8 id[ACPI_TABLE_ID_LEN];
  829. __u8 type;
  830. acpi_probe_entry_validate_subtbl subtable_valid;
  831. union {
  832. acpi_tbl_table_handler probe_table;
  833. acpi_tbl_entry_handler probe_subtbl;
  834. };
  835. kernel_ulong_t driver_data;
  836. };
  837. #define ACPI_DECLARE_PROBE_ENTRY(table, name, table_id, subtable, valid, data, fn) \
  838. static const struct acpi_probe_entry __acpi_probe_##name \
  839. __used __section(__##table##_acpi_probe_table) \
  840. = { \
  841. .id = table_id, \
  842. .type = subtable, \
  843. .subtable_valid = valid, \
  844. .probe_table = (acpi_tbl_table_handler)fn, \
  845. .driver_data = data, \
  846. }
  847. #define ACPI_PROBE_TABLE(name) __##name##_acpi_probe_table
  848. #define ACPI_PROBE_TABLE_END(name) __##name##_acpi_probe_table_end
  849. int __acpi_probe_device_table(struct acpi_probe_entry *start, int nr);
  850. #define acpi_probe_device_table(t) \
  851. ({ \
  852. extern struct acpi_probe_entry ACPI_PROBE_TABLE(t), \
  853. ACPI_PROBE_TABLE_END(t); \
  854. __acpi_probe_device_table(&ACPI_PROBE_TABLE(t), \
  855. (&ACPI_PROBE_TABLE_END(t) - \
  856. &ACPI_PROBE_TABLE(t))); \
  857. })
  858. #else
  859. static inline int acpi_dev_get_property(struct acpi_device *adev,
  860. const char *name, acpi_object_type type,
  861. const union acpi_object **obj)
  862. {
  863. return -ENXIO;
  864. }
  865. static inline int
  866. __acpi_node_get_property_reference(struct fwnode_handle *fwnode,
  867. const char *name, size_t index, size_t num_args,
  868. struct acpi_reference_args *args)
  869. {
  870. return -ENXIO;
  871. }
  872. static inline int acpi_node_get_property_reference(struct fwnode_handle *fwnode,
  873. const char *name, size_t index,
  874. struct acpi_reference_args *args)
  875. {
  876. return -ENXIO;
  877. }
  878. static inline int acpi_node_prop_get(struct fwnode_handle *fwnode,
  879. const char *propname,
  880. void **valptr)
  881. {
  882. return -ENXIO;
  883. }
  884. static inline int acpi_dev_prop_get(struct acpi_device *adev,
  885. const char *propname,
  886. void **valptr)
  887. {
  888. return -ENXIO;
  889. }
  890. static inline int acpi_dev_prop_read_single(struct acpi_device *adev,
  891. const char *propname,
  892. enum dev_prop_type proptype,
  893. void *val)
  894. {
  895. return -ENXIO;
  896. }
  897. static inline int acpi_node_prop_read(struct fwnode_handle *fwnode,
  898. const char *propname,
  899. enum dev_prop_type proptype,
  900. void *val, size_t nval)
  901. {
  902. return -ENXIO;
  903. }
  904. static inline int acpi_dev_prop_read(struct acpi_device *adev,
  905. const char *propname,
  906. enum dev_prop_type proptype,
  907. void *val, size_t nval)
  908. {
  909. return -ENXIO;
  910. }
  911. static inline struct fwnode_handle *acpi_get_next_subnode(struct device *dev,
  912. struct fwnode_handle *subnode)
  913. {
  914. return NULL;
  915. }
  916. #define ACPI_DECLARE_PROBE_ENTRY(table, name, table_id, subtable, valid, data, fn) \
  917. static const void * __acpi_table_##name[] \
  918. __attribute__((unused)) \
  919. = { (void *) table_id, \
  920. (void *) subtable, \
  921. (void *) valid, \
  922. (void *) fn, \
  923. (void *) data }
  924. #define acpi_probe_device_table(t) ({ int __r = 0; __r;})
  925. #endif
  926. #ifdef CONFIG_ACPI_TABLE_UPGRADE
  927. void acpi_table_upgrade(void);
  928. #else
  929. static inline void acpi_table_upgrade(void) { }
  930. #endif
  931. #if defined(CONFIG_ACPI) && defined(CONFIG_ACPI_WATCHDOG)
  932. extern bool acpi_has_watchdog(void);
  933. #else
  934. static inline bool acpi_has_watchdog(void) { return false; }
  935. #endif
  936. #ifdef CONFIG_ACPI_SPCR_TABLE
  937. int parse_spcr(bool earlycon);
  938. #else
  939. static inline int parse_spcr(bool earlycon) { return 0; }
  940. #endif
  941. #endif /*_LINUX_ACPI_H*/