11da177e4SLinus Torvalds /* 21da177e4SLinus Torvalds * acpi_drivers.h ($Revision: 31 $) 31da177e4SLinus Torvalds * 41da177e4SLinus Torvalds * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com> 51da177e4SLinus Torvalds * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com> 61da177e4SLinus Torvalds * 71da177e4SLinus Torvalds * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 81da177e4SLinus Torvalds * 91da177e4SLinus Torvalds * This program is free software; you can redistribute it and/or modify 101da177e4SLinus Torvalds * it under the terms of the GNU General Public License as published by 111da177e4SLinus Torvalds * the Free Software Foundation; either version 2 of the License, or (at 121da177e4SLinus Torvalds * your option) any later version. 131da177e4SLinus Torvalds * 141da177e4SLinus Torvalds * This program is distributed in the hope that it will be useful, but 151da177e4SLinus Torvalds * WITHOUT ANY WARRANTY; without even the implied warranty of 161da177e4SLinus Torvalds * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 171da177e4SLinus Torvalds * General Public License for more details. 181da177e4SLinus Torvalds * 191da177e4SLinus Torvalds * You should have received a copy of the GNU General Public License along 201da177e4SLinus Torvalds * with this program; if not, write to the Free Software Foundation, Inc., 211da177e4SLinus Torvalds * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. 221da177e4SLinus Torvalds * 231da177e4SLinus Torvalds * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 241da177e4SLinus Torvalds */ 251da177e4SLinus Torvalds 261da177e4SLinus Torvalds #ifndef __ACPI_DRIVERS_H__ 271da177e4SLinus Torvalds #define __ACPI_DRIVERS_H__ 281da177e4SLinus Torvalds 291da177e4SLinus Torvalds #define ACPI_MAX_STRING 80 301da177e4SLinus Torvalds 31bdd72799SBjorn Helgaas /* 32bdd72799SBjorn Helgaas * Please update drivers/acpi/debug.c and Documentation/acpi/debug.txt 33bdd72799SBjorn Helgaas * if you add to this list. 34bdd72799SBjorn Helgaas */ 351da177e4SLinus Torvalds #define ACPI_BUS_COMPONENT 0x00010000 3689595b8fSBjorn Helgaas #define ACPI_AC_COMPONENT 0x00020000 3789595b8fSBjorn Helgaas #define ACPI_BATTERY_COMPONENT 0x00040000 3889595b8fSBjorn Helgaas #define ACPI_BUTTON_COMPONENT 0x00080000 3944342f9eSBjorn Helgaas #define ACPI_SBS_COMPONENT 0x00100000 4089595b8fSBjorn Helgaas #define ACPI_FAN_COMPONENT 0x00200000 4189595b8fSBjorn Helgaas #define ACPI_PCI_COMPONENT 0x00400000 4289595b8fSBjorn Helgaas #define ACPI_POWER_COMPONENT 0x00800000 4389595b8fSBjorn Helgaas #define ACPI_CONTAINER_COMPONENT 0x01000000 441da177e4SLinus Torvalds #define ACPI_SYSTEM_COMPONENT 0x02000000 4589595b8fSBjorn Helgaas #define ACPI_THERMAL_COMPONENT 0x04000000 4689595b8fSBjorn Helgaas #define ACPI_MEMORY_DEVICE_COMPONENT 0x08000000 4744342f9eSBjorn Helgaas #define ACPI_VIDEO_COMPONENT 0x10000000 4844342f9eSBjorn Helgaas #define ACPI_PROCESSOR_COMPONENT 0x20000000 491da177e4SLinus Torvalds 508c8eb78fSThomas Renninger /* 518c8eb78fSThomas Renninger * _HID definitions 528c8eb78fSThomas Renninger * HIDs must conform to ACPI spec(6.1.4) 538c8eb78fSThomas Renninger * Linux specific HIDs do not apply to this and begin with LNX: 548c8eb78fSThomas Renninger */ 551da177e4SLinus Torvalds 568c8eb78fSThomas Renninger #define ACPI_POWER_HID "LNXPOWER" 57b9417f84SBjorn Helgaas #define ACPI_PROCESSOR_OBJECT_HID "LNXCPU" 588c8eb78fSThomas Renninger #define ACPI_SYSTEM_HID "LNXSYSTM" 598c8eb78fSThomas Renninger #define ACPI_THERMAL_HID "LNXTHERM" 608c8eb78fSThomas Renninger #define ACPI_BUTTON_HID_POWERF "LNXPWRBN" 618c8eb78fSThomas Renninger #define ACPI_BUTTON_HID_SLEEPF "LNXSLPBN" 628c8eb78fSThomas Renninger #define ACPI_VIDEO_HID "LNXVIDEO" 638c8eb78fSThomas Renninger #define ACPI_BAY_HID "LNXIOBAY" 64a340af14SFrank Seidel #define ACPI_DOCK_HID "LNXDOCK" 65222e82acSDarrick J. Wong /* Quirk for broken IBM BIOSes */ 66222e82acSDarrick J. Wong #define ACPI_SMBUS_IBM_HID "SMBUSIBM" 678c8eb78fSThomas Renninger 6846ec8598SBjorn Helgaas /* 6946ec8598SBjorn Helgaas * For fixed hardware buttons, we fabricate acpi_devices with HID 7046ec8598SBjorn Helgaas * ACPI_BUTTON_HID_POWERF or ACPI_BUTTON_HID_SLEEPF. Fixed hardware 7146ec8598SBjorn Helgaas * signals only an event; it doesn't supply a notification value. 7246ec8598SBjorn Helgaas * To allow drivers to treat notifications from fixed hardware the 7346ec8598SBjorn Helgaas * same as those from real devices, we turn the events into this 7446ec8598SBjorn Helgaas * notification value. 7546ec8598SBjorn Helgaas */ 7646ec8598SBjorn Helgaas #define ACPI_FIXED_HARDWARE_EVENT 0x100 7746ec8598SBjorn Helgaas 781da177e4SLinus Torvalds /* -------------------------------------------------------------------------- 791da177e4SLinus Torvalds PCI 801da177e4SLinus Torvalds -------------------------------------------------------------------------- */ 811da177e4SLinus Torvalds 821da177e4SLinus Torvalds 831da177e4SLinus Torvalds /* ACPI PCI Interrupt Link (pci_link.c) */ 841da177e4SLinus Torvalds 851da177e4SLinus Torvalds int acpi_irq_penalty_init(void); 8650eca3ebSBob Moore int acpi_pci_link_allocate_irq(acpi_handle handle, int index, int *triggering, 8750eca3ebSBob Moore int *polarity, char **name); 8887bec66bSDavid Shaohua Li int acpi_pci_link_free_irq(acpi_handle handle); 891da177e4SLinus Torvalds 901da177e4SLinus Torvalds /* ACPI PCI Device Binding (pci_bind.c) */ 911da177e4SLinus Torvalds 921da177e4SLinus Torvalds struct pci_bus; 931da177e4SLinus Torvalds 942f7bbcebSAlexander Chiang struct pci_dev *acpi_get_pci_dev(acpi_handle); 951da177e4SLinus Torvalds 961da177e4SLinus Torvalds /* Arch-defined function to add a bus to the system */ 971da177e4SLinus Torvalds 9857283776SBjorn Helgaas struct pci_bus *pci_acpi_scan_root(struct acpi_pci_root *root); 997bc5e3f2SBjorn Helgaas void pci_acpi_crs_quirks(void); 1001da177e4SLinus Torvalds 1011da177e4SLinus Torvalds /* -------------------------------------------------------------------------- 1021da177e4SLinus Torvalds Processor 1031da177e4SLinus Torvalds -------------------------------------------------------------------------- */ 1041da177e4SLinus Torvalds 1051da177e4SLinus Torvalds #define ACPI_PROCESSOR_LIMIT_NONE 0x00 1061da177e4SLinus Torvalds #define ACPI_PROCESSOR_LIMIT_INCREMENT 0x01 1071da177e4SLinus Torvalds #define ACPI_PROCESSOR_LIMIT_DECREMENT 0x02 1081da177e4SLinus Torvalds 109fb9802faSLuming Yu /*-------------------------------------------------------------------------- 110c8f7a62cSLen Brown Dock Station 111c8f7a62cSLen Brown -------------------------------------------------------------------------- */ 1121253f7aaSShaohua Li struct acpi_dock_ops { 113f09ce741SRafael J. Wysocki acpi_notify_handler fixup; 1141253f7aaSShaohua Li acpi_notify_handler handler; 1151253f7aaSShaohua Li acpi_notify_handler uevent; 1161253f7aaSShaohua Li }; 1171253f7aaSShaohua Li 118e6c215f1SRafael J. Wysocki #ifdef CONFIG_ACPI_DOCK 119*3b52b21fSRafael J. Wysocki extern int is_dock_device(struct acpi_device *adev); 120c8f7a62cSLen Brown extern int register_hotplug_dock_device(acpi_handle handle, 1219c8b04beSVasiliy Kulikov const struct acpi_dock_ops *ops, 12221a31013SRafael J. Wysocki void *context, 12321a31013SRafael J. Wysocki void (*init)(void *), 12421a31013SRafael J. Wysocki void (*release)(void *)); 125c8f7a62cSLen Brown extern void unregister_hotplug_dock_device(acpi_handle handle); 126c8f7a62cSLen Brown #else 127*3b52b21fSRafael J. Wysocki static inline int is_dock_device(struct acpi_device *adev) 128d94d3dffSAndrew Morton { 129d94d3dffSAndrew Morton return 0; 130d94d3dffSAndrew Morton } 131d94d3dffSAndrew Morton static inline int register_hotplug_dock_device(acpi_handle handle, 132c1056b42SBart Van Assche const struct acpi_dock_ops *ops, 13321a31013SRafael J. Wysocki void *context, 13421a31013SRafael J. Wysocki void (*init)(void *), 13521a31013SRafael J. Wysocki void (*release)(void *)) 136d94d3dffSAndrew Morton { 137d94d3dffSAndrew Morton return -ENODEV; 138d94d3dffSAndrew Morton } 139d94d3dffSAndrew Morton static inline void unregister_hotplug_dock_device(acpi_handle handle) 140d94d3dffSAndrew Morton { 141d94d3dffSAndrew Morton } 142e6c215f1SRafael J. Wysocki #endif /* CONFIG_ACPI_DOCK */ 143aafbcd16SAlexey Starikovskiy 1441da177e4SLinus Torvalds #endif /*__ACPI_DRIVERS_H__*/ 145