acpi.h 31 KB

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