acpi.h 34 KB

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