2004-12-09 13:54:29 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 2004 Takanori Watanabe
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
* Copyright (c) 2005 Markus Brueffer <markus@FreeBSD.org>
|
2004-12-09 13:54:29 +00:00
|
|
|
* All rights reserved.
|
2020-06-22 12:36:05 +00:00
|
|
|
* Copyright (c) 2020 Ali Abdallah <ali.abdallah@suse.com>
|
2004-12-09 13:54:29 +00:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2005-03-02 09:22:34 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
/*
|
2020-01-15 19:43:45 +00:00
|
|
|
* Driver for extra ACPI-controlled gadgets found on ThinkPad laptops.
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
* Inspired by the ibm-acpi and tpb projects which implement these features
|
|
|
|
* on Linux.
|
|
|
|
*
|
|
|
|
* acpi-ibm: <http://ibm-acpi.sourceforge.net/>
|
|
|
|
* tpb: <http://www.nongnu.org/tpb/>
|
|
|
|
*/
|
|
|
|
|
2004-12-09 13:54:29 +00:00
|
|
|
#include "opt_acpi.h"
|
|
|
|
#include <sys/param.h>
|
2015-05-29 05:28:24 +00:00
|
|
|
#include <sys/systm.h>
|
2004-12-09 13:54:29 +00:00
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/bus.h>
|
|
|
|
#include <machine/cpufunc.h>
|
2009-06-05 18:44:36 +00:00
|
|
|
|
|
|
|
#include <contrib/dev/acpica/include/acpi.h>
|
|
|
|
#include <contrib/dev/acpica/include/accommon.h>
|
|
|
|
|
2004-12-09 13:54:29 +00:00
|
|
|
#include "acpi_if.h"
|
|
|
|
#include <sys/module.h>
|
|
|
|
#include <dev/acpica/acpivar.h>
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
#include <dev/led/led.h>
|
2012-06-23 18:43:54 +00:00
|
|
|
#include <sys/power.h>
|
|
|
|
#include <sys/sbuf.h>
|
2004-12-09 13:54:29 +00:00
|
|
|
#include <sys/sysctl.h>
|
2008-04-14 08:00:00 +00:00
|
|
|
#include <isa/rtc.h>
|
2004-12-09 13:54:29 +00:00
|
|
|
|
2004-12-13 23:31:46 +00:00
|
|
|
#define _COMPONENT ACPI_OEM
|
2004-12-13 03:22:11 +00:00
|
|
|
ACPI_MODULE_NAME("IBM")
|
|
|
|
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
/* Internal methods */
|
|
|
|
#define ACPI_IBM_METHOD_EVENTS 1
|
|
|
|
#define ACPI_IBM_METHOD_EVENTMASK 2
|
|
|
|
#define ACPI_IBM_METHOD_HOTKEY 3
|
|
|
|
#define ACPI_IBM_METHOD_BRIGHTNESS 4
|
|
|
|
#define ACPI_IBM_METHOD_VOLUME 5
|
|
|
|
#define ACPI_IBM_METHOD_MUTE 6
|
|
|
|
#define ACPI_IBM_METHOD_THINKLIGHT 7
|
|
|
|
#define ACPI_IBM_METHOD_BLUETOOTH 8
|
|
|
|
#define ACPI_IBM_METHOD_WLAN 9
|
|
|
|
#define ACPI_IBM_METHOD_FANSPEED 10
|
2006-01-14 00:39:10 +00:00
|
|
|
#define ACPI_IBM_METHOD_FANLEVEL 11
|
|
|
|
#define ACPI_IBM_METHOD_FANSTATUS 12
|
|
|
|
#define ACPI_IBM_METHOD_THERMAL 13
|
2012-06-23 18:43:54 +00:00
|
|
|
#define ACPI_IBM_METHOD_HANDLEREVENTS 14
|
2018-06-17 20:44:20 +00:00
|
|
|
#define ACPI_IBM_METHOD_MIC_LED 15
|
2020-01-30 10:40:38 +00:00
|
|
|
#define ACPI_IBM_METHOD_PRIVACYGUARD 16
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
|
|
|
|
/* Hotkeys/Buttons */
|
|
|
|
#define IBM_RTC_HOTKEY1 0x64
|
|
|
|
#define IBM_RTC_MASK_HOME (1 << 0)
|
|
|
|
#define IBM_RTC_MASK_SEARCH (1 << 1)
|
|
|
|
#define IBM_RTC_MASK_MAIL (1 << 2)
|
|
|
|
#define IBM_RTC_MASK_WLAN (1 << 5)
|
|
|
|
#define IBM_RTC_HOTKEY2 0x65
|
|
|
|
#define IBM_RTC_MASK_THINKPAD (1 << 3)
|
|
|
|
#define IBM_RTC_MASK_ZOOM (1 << 5)
|
|
|
|
#define IBM_RTC_MASK_VIDEO (1 << 6)
|
|
|
|
#define IBM_RTC_MASK_HIBERNATE (1 << 7)
|
|
|
|
#define IBM_RTC_THINKLIGHT 0x66
|
|
|
|
#define IBM_RTC_MASK_THINKLIGHT (1 << 4)
|
|
|
|
#define IBM_RTC_SCREENEXPAND 0x67
|
|
|
|
#define IBM_RTC_MASK_SCREENEXPAND (1 << 5)
|
|
|
|
#define IBM_RTC_BRIGHTNESS 0x6c
|
|
|
|
#define IBM_RTC_MASK_BRIGHTNESS (1 << 5)
|
|
|
|
#define IBM_RTC_VOLUME 0x6e
|
|
|
|
#define IBM_RTC_MASK_VOLUME (1 << 7)
|
|
|
|
|
|
|
|
/* Embedded Controller registers */
|
|
|
|
#define IBM_EC_BRIGHTNESS 0x31
|
|
|
|
#define IBM_EC_MASK_BRI 0x7
|
|
|
|
#define IBM_EC_VOLUME 0x30
|
|
|
|
#define IBM_EC_MASK_VOL 0xf
|
|
|
|
#define IBM_EC_MASK_MUTE (1 << 6)
|
|
|
|
#define IBM_EC_FANSTATUS 0x2F
|
2006-01-14 00:39:10 +00:00
|
|
|
#define IBM_EC_MASK_FANLEVEL 0x3f
|
2020-06-24 19:51:03 +00:00
|
|
|
#define IBM_EC_MASK_FANUNTHROTTLED (1 << 6)
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
#define IBM_EC_MASK_FANSTATUS (1 << 7)
|
|
|
|
#define IBM_EC_FANSPEED 0x84
|
|
|
|
|
|
|
|
/* CMOS Commands */
|
|
|
|
#define IBM_CMOS_VOLUME_DOWN 0
|
|
|
|
#define IBM_CMOS_VOLUME_UP 1
|
|
|
|
#define IBM_CMOS_VOLUME_MUTE 2
|
|
|
|
#define IBM_CMOS_BRIGHTNESS_UP 4
|
|
|
|
#define IBM_CMOS_BRIGHTNESS_DOWN 5
|
|
|
|
|
|
|
|
/* ACPI methods */
|
|
|
|
#define IBM_NAME_KEYLIGHT "KBLT"
|
|
|
|
#define IBM_NAME_WLAN_BT_GET "GBDC"
|
|
|
|
#define IBM_NAME_WLAN_BT_SET "SBDC"
|
|
|
|
#define IBM_NAME_MASK_BT (1 << 1)
|
|
|
|
#define IBM_NAME_MASK_WLAN (1 << 2)
|
|
|
|
#define IBM_NAME_THERMAL_GET "TMP7"
|
|
|
|
#define IBM_NAME_THERMAL_UPDT "UPDT"
|
2020-01-30 10:40:38 +00:00
|
|
|
#define IBM_NAME_PRIVACYGUARD_GET "GSSS"
|
|
|
|
#define IBM_NAME_PRIVACYGUARD_SET "SSSS"
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
|
|
|
|
#define IBM_NAME_EVENTS_STATUS_GET "DHKC"
|
|
|
|
#define IBM_NAME_EVENTS_MASK_GET "DHKN"
|
|
|
|
#define IBM_NAME_EVENTS_STATUS_SET "MHKC"
|
|
|
|
#define IBM_NAME_EVENTS_MASK_SET "MHKM"
|
|
|
|
#define IBM_NAME_EVENTS_GET "MHKP"
|
|
|
|
#define IBM_NAME_EVENTS_AVAILMASK "MHKA"
|
|
|
|
|
2012-06-23 18:43:54 +00:00
|
|
|
/* Event Code */
|
|
|
|
#define IBM_EVENT_LCD_BACKLIGHT 0x03
|
|
|
|
#define IBM_EVENT_SUSPEND_TO_RAM 0x04
|
|
|
|
#define IBM_EVENT_BLUETOOTH 0x05
|
|
|
|
#define IBM_EVENT_SCREEN_EXPAND 0x07
|
|
|
|
#define IBM_EVENT_SUSPEND_TO_DISK 0x0c
|
|
|
|
#define IBM_EVENT_BRIGHTNESS_UP 0x10
|
|
|
|
#define IBM_EVENT_BRIGHTNESS_DOWN 0x11
|
|
|
|
#define IBM_EVENT_THINKLIGHT 0x12
|
|
|
|
#define IBM_EVENT_ZOOM 0x14
|
|
|
|
#define IBM_EVENT_VOLUME_UP 0x15
|
|
|
|
#define IBM_EVENT_VOLUME_DOWN 0x16
|
|
|
|
#define IBM_EVENT_MUTE 0x17
|
|
|
|
#define IBM_EVENT_ACCESS_IBM_BUTTON 0x18
|
|
|
|
|
2020-01-30 10:40:38 +00:00
|
|
|
/* Device-specific register flags */
|
|
|
|
#define IBM_FLAG_PRIVACYGUARD_DEVICE_PRESENT 0x10000
|
|
|
|
#define IBM_FLAG_PRIVACYGUARD_ON 0x1
|
|
|
|
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
#define ABS(x) (((x) < 0)? -(x) : (x))
|
2004-12-09 13:54:29 +00:00
|
|
|
|
|
|
|
struct acpi_ibm_softc {
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
device_t dev;
|
|
|
|
ACPI_HANDLE handle;
|
|
|
|
|
|
|
|
/* Embedded controller */
|
|
|
|
device_t ec_dev;
|
|
|
|
ACPI_HANDLE ec_handle;
|
|
|
|
|
|
|
|
/* CMOS */
|
|
|
|
ACPI_HANDLE cmos_handle;
|
|
|
|
|
|
|
|
/* Fan status */
|
|
|
|
ACPI_HANDLE fan_handle;
|
|
|
|
int fan_levels;
|
|
|
|
|
|
|
|
/* Keylight commands and states */
|
|
|
|
ACPI_HANDLE light_handle;
|
|
|
|
int light_cmd_on;
|
|
|
|
int light_cmd_off;
|
|
|
|
int light_val;
|
|
|
|
int light_get_supported;
|
|
|
|
int light_set_supported;
|
2005-08-04 22:48:36 +00:00
|
|
|
|
|
|
|
/* led(4) interface */
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
struct cdev *led_dev;
|
2005-08-04 22:48:36 +00:00
|
|
|
int led_busy;
|
|
|
|
int led_state;
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
|
2018-06-17 20:44:20 +00:00
|
|
|
/* Mic led handle */
|
|
|
|
ACPI_HANDLE mic_led_handle;
|
|
|
|
int mic_led_state;
|
|
|
|
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
int wlan_bt_flags;
|
|
|
|
int thermal_updt_supported;
|
|
|
|
|
|
|
|
unsigned int events_availmask;
|
|
|
|
unsigned int events_initialmask;
|
|
|
|
int events_mask_supported;
|
|
|
|
int events_enable;
|
|
|
|
|
2012-06-23 18:43:54 +00:00
|
|
|
unsigned int handler_events;
|
|
|
|
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
struct sysctl_ctx_list *sysctl_ctx;
|
|
|
|
struct sysctl_oid *sysctl_tree;
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct {
|
|
|
|
char *name;
|
|
|
|
int method;
|
|
|
|
char *description;
|
2014-10-21 07:31:21 +00:00
|
|
|
int flag_rdonly;
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
} acpi_ibm_sysctls[] = {
|
|
|
|
{
|
|
|
|
.name = "events",
|
|
|
|
.method = ACPI_IBM_METHOD_EVENTS,
|
|
|
|
.description = "ACPI events enable",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "eventmask",
|
|
|
|
.method = ACPI_IBM_METHOD_EVENTMASK,
|
|
|
|
.description = "ACPI eventmask",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "hotkey",
|
|
|
|
.method = ACPI_IBM_METHOD_HOTKEY,
|
|
|
|
.description = "Key Status",
|
2014-10-21 07:31:21 +00:00
|
|
|
.flag_rdonly = 1
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "lcd_brightness",
|
|
|
|
.method = ACPI_IBM_METHOD_BRIGHTNESS,
|
|
|
|
.description = "LCD Brightness",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "volume",
|
|
|
|
.method = ACPI_IBM_METHOD_VOLUME,
|
|
|
|
.description = "Volume",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "mute",
|
|
|
|
.method = ACPI_IBM_METHOD_MUTE,
|
|
|
|
.description = "Mute",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "thinklight",
|
|
|
|
.method = ACPI_IBM_METHOD_THINKLIGHT,
|
|
|
|
.description = "Thinklight enable",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "bluetooth",
|
|
|
|
.method = ACPI_IBM_METHOD_BLUETOOTH,
|
|
|
|
.description = "Bluetooth enable",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "wlan",
|
|
|
|
.method = ACPI_IBM_METHOD_WLAN,
|
|
|
|
.description = "WLAN enable",
|
2014-10-21 07:31:21 +00:00
|
|
|
.flag_rdonly = 1
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "fan_speed",
|
|
|
|
.method = ACPI_IBM_METHOD_FANSPEED,
|
|
|
|
.description = "Fan speed",
|
2014-10-21 07:31:21 +00:00
|
|
|
.flag_rdonly = 1
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
},
|
2006-01-14 00:39:10 +00:00
|
|
|
{
|
|
|
|
.name = "fan_level",
|
|
|
|
.method = ACPI_IBM_METHOD_FANLEVEL,
|
2020-06-22 12:36:05 +00:00
|
|
|
.description = "Fan level, 0-7 (recommended max), "
|
2020-06-24 19:51:03 +00:00
|
|
|
"8 (unthrottled, full-speed)",
|
2006-01-14 00:39:10 +00:00
|
|
|
},
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
{
|
|
|
|
.name = "fan",
|
|
|
|
.method = ACPI_IBM_METHOD_FANSTATUS,
|
|
|
|
.description = "Fan enable",
|
|
|
|
},
|
2018-06-17 20:44:20 +00:00
|
|
|
{
|
|
|
|
.name = "mic_led",
|
|
|
|
.method = ACPI_IBM_METHOD_MIC_LED,
|
|
|
|
.description = "Mic led",
|
|
|
|
},
|
2020-01-30 10:40:38 +00:00
|
|
|
{
|
2020-02-02 18:07:47 +00:00
|
|
|
.name = "privacyguard",
|
|
|
|
.method = ACPI_IBM_METHOD_PRIVACYGUARD,
|
|
|
|
.description = "PrivacyGuard enable",
|
2020-01-30 10:40:38 +00:00
|
|
|
},
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
{ NULL, 0, NULL, 0 }
|
2004-12-09 13:54:29 +00:00
|
|
|
};
|
|
|
|
|
2015-05-29 05:28:24 +00:00
|
|
|
/*
|
|
|
|
* Per-model default list of event mask.
|
|
|
|
*/
|
|
|
|
#define ACPI_IBM_HKEY_RFKILL_MASK (1 << 4)
|
|
|
|
#define ACPI_IBM_HKEY_DSWITCH_MASK (1 << 6)
|
|
|
|
#define ACPI_IBM_HKEY_BRIGHTNESS_UP_MASK (1 << 15)
|
|
|
|
#define ACPI_IBM_HKEY_BRIGHTNESS_DOWN_MASK (1 << 16)
|
|
|
|
#define ACPI_IBM_HKEY_SEARCH_MASK (1 << 18)
|
|
|
|
#define ACPI_IBM_HKEY_MICMUTE_MASK (1 << 26)
|
|
|
|
#define ACPI_IBM_HKEY_SETTINGS_MASK (1 << 28)
|
|
|
|
#define ACPI_IBM_HKEY_VIEWOPEN_MASK (1 << 30)
|
|
|
|
#define ACPI_IBM_HKEY_VIEWALL_MASK (1 << 31)
|
|
|
|
|
|
|
|
struct acpi_ibm_models {
|
|
|
|
const char *maker;
|
|
|
|
const char *product;
|
|
|
|
uint32_t eventmask;
|
|
|
|
} acpi_ibm_models[] = {
|
|
|
|
{ "LENOVO", "20BSCTO1WW",
|
|
|
|
ACPI_IBM_HKEY_RFKILL_MASK |
|
|
|
|
ACPI_IBM_HKEY_DSWITCH_MASK |
|
|
|
|
ACPI_IBM_HKEY_BRIGHTNESS_UP_MASK |
|
|
|
|
ACPI_IBM_HKEY_BRIGHTNESS_DOWN_MASK |
|
|
|
|
ACPI_IBM_HKEY_SEARCH_MASK |
|
|
|
|
ACPI_IBM_HKEY_MICMUTE_MASK |
|
|
|
|
ACPI_IBM_HKEY_SETTINGS_MASK |
|
|
|
|
ACPI_IBM_HKEY_VIEWOPEN_MASK |
|
|
|
|
ACPI_IBM_HKEY_VIEWALL_MASK
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-01-15 19:43:45 +00:00
|
|
|
ACPI_SERIAL_DECL(ibm, "ThinkPad ACPI Extras");
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
|
2004-12-09 13:54:29 +00:00
|
|
|
static int acpi_ibm_probe(device_t dev);
|
|
|
|
static int acpi_ibm_attach(device_t dev);
|
|
|
|
static int acpi_ibm_detach(device_t dev);
|
2010-01-05 20:29:30 +00:00
|
|
|
static int acpi_ibm_resume(device_t dev);
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
|
2005-08-04 22:48:36 +00:00
|
|
|
static void ibm_led(void *softc, int onoff);
|
|
|
|
static void ibm_led_task(struct acpi_ibm_softc *sc, int pending __unused);
|
|
|
|
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
static int acpi_ibm_sysctl(SYSCTL_HANDLER_ARGS);
|
|
|
|
static int acpi_ibm_sysctl_init(struct acpi_ibm_softc *sc, int method);
|
|
|
|
static int acpi_ibm_sysctl_get(struct acpi_ibm_softc *sc, int method);
|
|
|
|
static int acpi_ibm_sysctl_set(struct acpi_ibm_softc *sc, int method, int val);
|
|
|
|
|
|
|
|
static int acpi_ibm_eventmask_set(struct acpi_ibm_softc *sc, int val);
|
|
|
|
static int acpi_ibm_thermal_sysctl(SYSCTL_HANDLER_ARGS);
|
2012-06-23 18:43:54 +00:00
|
|
|
static int acpi_ibm_handlerevents_sysctl(SYSCTL_HANDLER_ARGS);
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
static void acpi_ibm_notify(ACPI_HANDLE h, UINT32 notify, void *context);
|
2004-12-09 13:54:29 +00:00
|
|
|
|
2012-06-23 18:43:54 +00:00
|
|
|
static int acpi_ibm_brightness_set(struct acpi_ibm_softc *sc, int arg);
|
|
|
|
static int acpi_ibm_bluetooth_set(struct acpi_ibm_softc *sc, int arg);
|
|
|
|
static int acpi_ibm_thinklight_set(struct acpi_ibm_softc *sc, int arg);
|
|
|
|
static int acpi_ibm_volume_set(struct acpi_ibm_softc *sc, int arg);
|
|
|
|
static int acpi_ibm_mute_set(struct acpi_ibm_softc *sc, int arg);
|
2020-01-30 10:40:38 +00:00
|
|
|
static int acpi_ibm_privacyguard_get(struct acpi_ibm_softc *sc);
|
|
|
|
static ACPI_STATUS acpi_ibm_privacyguard_set(struct acpi_ibm_softc *sc, int arg);
|
|
|
|
static ACPI_STATUS acpi_ibm_privacyguard_acpi_call(struct acpi_ibm_softc *sc, bool write, int *arg);
|
|
|
|
|
|
|
|
static int acpi_status_to_errno(ACPI_STATUS status);
|
2012-06-23 18:43:54 +00:00
|
|
|
|
2004-12-09 13:54:29 +00:00
|
|
|
static device_method_t acpi_ibm_methods[] = {
|
|
|
|
/* Device interface */
|
|
|
|
DEVMETHOD(device_probe, acpi_ibm_probe),
|
|
|
|
DEVMETHOD(device_attach, acpi_ibm_attach),
|
|
|
|
DEVMETHOD(device_detach, acpi_ibm_detach),
|
2010-01-05 20:29:30 +00:00
|
|
|
DEVMETHOD(device_resume, acpi_ibm_resume),
|
2004-12-09 13:54:29 +00:00
|
|
|
|
2013-01-30 18:01:20 +00:00
|
|
|
DEVMETHOD_END
|
2004-12-09 13:54:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static driver_t acpi_ibm_driver = {
|
|
|
|
"acpi_ibm",
|
|
|
|
acpi_ibm_methods,
|
|
|
|
sizeof(struct acpi_ibm_softc),
|
|
|
|
};
|
|
|
|
|
|
|
|
static devclass_t acpi_ibm_devclass;
|
|
|
|
|
2020-02-02 19:01:16 +00:00
|
|
|
DRIVER_MODULE(acpi_ibm, acpi, acpi_ibm_driver, acpi_ibm_devclass, 0, 0);
|
2004-12-09 13:54:29 +00:00
|
|
|
MODULE_DEPEND(acpi_ibm, acpi, 1, 1, 1);
|
2019-04-24 23:10:19 +00:00
|
|
|
static char *ibm_ids[] = {"IBM0068", "LEN0068", "LEN0268", NULL};
|
2004-12-09 13:54:29 +00:00
|
|
|
|
2020-01-30 10:40:38 +00:00
|
|
|
static int
|
|
|
|
acpi_status_to_errno(ACPI_STATUS status)
|
|
|
|
{
|
|
|
|
switch (status) {
|
|
|
|
case AE_OK:
|
|
|
|
return (0);
|
|
|
|
case AE_BAD_PARAMETER:
|
|
|
|
return (EINVAL);
|
|
|
|
default:
|
|
|
|
return (ENODEV);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
static void
|
|
|
|
ibm_led(void *softc, int onoff)
|
2004-12-09 13:54:29 +00:00
|
|
|
{
|
2020-02-02 20:56:18 +00:00
|
|
|
struct acpi_ibm_softc *sc = softc;
|
2005-08-04 22:48:36 +00:00
|
|
|
|
|
|
|
ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
|
|
|
|
|
|
|
|
if (sc->led_busy)
|
|
|
|
return;
|
|
|
|
|
|
|
|
sc->led_busy = 1;
|
|
|
|
sc->led_state = onoff;
|
|
|
|
|
2007-03-22 18:16:43 +00:00
|
|
|
AcpiOsExecute(OSL_NOTIFY_HANDLER, (void *)ibm_led_task, sc);
|
2005-08-04 22:48:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ibm_led_task(struct acpi_ibm_softc *sc, int pending __unused)
|
|
|
|
{
|
|
|
|
ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
|
|
|
|
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
ACPI_SERIAL_BEGIN(ibm);
|
2005-08-04 22:48:36 +00:00
|
|
|
acpi_ibm_sysctl_set(sc, ACPI_IBM_METHOD_THINKLIGHT, sc->led_state);
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
ACPI_SERIAL_END(ibm);
|
2005-08-04 22:48:36 +00:00
|
|
|
|
|
|
|
sc->led_busy = 0;
|
2004-12-09 13:54:29 +00:00
|
|
|
}
|
|
|
|
|
2018-06-17 20:44:20 +00:00
|
|
|
static int
|
2020-02-02 19:01:16 +00:00
|
|
|
acpi_ibm_mic_led_set(struct acpi_ibm_softc *sc, int arg)
|
2018-06-17 20:44:20 +00:00
|
|
|
{
|
|
|
|
ACPI_OBJECT_LIST input;
|
|
|
|
ACPI_OBJECT params[1];
|
|
|
|
ACPI_STATUS status;
|
|
|
|
|
|
|
|
if (arg < 0 || arg > 1)
|
|
|
|
return (EINVAL);
|
|
|
|
|
|
|
|
if (sc->mic_led_handle) {
|
|
|
|
params[0].Type = ACPI_TYPE_INTEGER;
|
|
|
|
params[0].Integer.Value = 0;
|
|
|
|
/* mic led: 0 off, 2 on */
|
|
|
|
if (arg == 1)
|
|
|
|
params[0].Integer.Value = 2;
|
|
|
|
|
|
|
|
input.Pointer = params;
|
|
|
|
input.Count = 1;
|
|
|
|
|
2020-02-02 19:01:16 +00:00
|
|
|
status = AcpiEvaluateObject(sc->handle, "MMTS", &input, NULL);
|
2018-06-17 20:44:20 +00:00
|
|
|
if (ACPI_SUCCESS(status))
|
|
|
|
sc->mic_led_state = arg;
|
2020-02-02 19:01:16 +00:00
|
|
|
return (status);
|
2018-06-17 20:44:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2004-12-09 13:54:29 +00:00
|
|
|
static int
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
acpi_ibm_probe(device_t dev)
|
2004-12-09 13:54:29 +00:00
|
|
|
{
|
2018-10-26 00:05:46 +00:00
|
|
|
int rv;
|
|
|
|
|
2020-02-02 19:01:16 +00:00
|
|
|
if (acpi_disabled("ibm") || device_get_unit(dev) != 0)
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
return (ENXIO);
|
2018-10-26 00:05:46 +00:00
|
|
|
rv = ACPI_ID_PROBE(device_get_parent(dev), dev, ibm_ids, NULL);
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
|
2020-02-02 19:01:16 +00:00
|
|
|
if (rv <= 0)
|
2020-01-15 19:43:45 +00:00
|
|
|
device_set_desc(dev, "ThinkPad ACPI Extras");
|
2020-02-02 19:01:16 +00:00
|
|
|
|
2018-10-26 00:05:46 +00:00
|
|
|
return (rv);
|
2004-12-09 13:54:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
acpi_ibm_attach(device_t dev)
|
|
|
|
{
|
2015-05-29 05:28:24 +00:00
|
|
|
int i;
|
2019-04-24 23:10:19 +00:00
|
|
|
int hkey;
|
2020-02-02 19:01:16 +00:00
|
|
|
struct acpi_ibm_softc *sc;
|
2015-05-29 05:28:24 +00:00
|
|
|
char *maker, *product;
|
2019-04-24 23:10:19 +00:00
|
|
|
ACPI_OBJECT_LIST input;
|
|
|
|
ACPI_OBJECT params[1];
|
|
|
|
ACPI_OBJECT out_obj;
|
|
|
|
ACPI_BUFFER result;
|
|
|
|
devclass_t ec_devclass;
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
|
2004-12-09 13:54:29 +00:00
|
|
|
ACPI_FUNCTION_TRACE((char *)(uintptr_t) __func__);
|
|
|
|
|
|
|
|
sc = device_get_softc(dev);
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
sc->dev = dev;
|
|
|
|
sc->handle = acpi_get_handle(dev);
|
|
|
|
|
|
|
|
/* Look for the first embedded controller */
|
2020-02-02 19:01:16 +00:00
|
|
|
if (!(ec_devclass = devclass_find ("acpi_ec"))) {
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
if (bootverbose)
|
|
|
|
device_printf(dev, "Couldn't find acpi_ec devclass\n");
|
|
|
|
return (EINVAL);
|
|
|
|
}
|
2020-02-02 19:01:16 +00:00
|
|
|
if (!(sc->ec_dev = devclass_get_device(ec_devclass, 0))) {
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
if (bootverbose)
|
|
|
|
device_printf(dev, "Couldn't find acpi_ec device\n");
|
|
|
|
return (EINVAL);
|
|
|
|
}
|
|
|
|
sc->ec_handle = acpi_get_handle(sc->ec_dev);
|
|
|
|
|
|
|
|
/* Get the sysctl tree */
|
|
|
|
sc->sysctl_ctx = device_get_sysctl_ctx(dev);
|
|
|
|
sc->sysctl_tree = device_get_sysctl_tree(dev);
|
|
|
|
|
|
|
|
/* Look for event mask and hook up the nodes */
|
|
|
|
sc->events_mask_supported = ACPI_SUCCESS(acpi_GetInteger(sc->handle,
|
|
|
|
IBM_NAME_EVENTS_MASK_GET, &sc->events_initialmask));
|
|
|
|
|
|
|
|
if (sc->events_mask_supported) {
|
2011-01-12 19:53:56 +00:00
|
|
|
SYSCTL_ADD_UINT(sc->sysctl_ctx,
|
2020-02-02 19:01:16 +00:00
|
|
|
SYSCTL_CHILDREN(sc->sysctl_tree), OID_AUTO, "initialmask",
|
|
|
|
CTLFLAG_RD, &sc->events_initialmask, 0,
|
|
|
|
"Initial eventmask");
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
|
2019-04-24 23:10:19 +00:00
|
|
|
if (ACPI_SUCCESS (acpi_GetInteger(sc->handle, "MHKV", &hkey))) {
|
|
|
|
device_printf(dev, "Firmware version is 0x%X\n", hkey);
|
2020-02-02 19:01:16 +00:00
|
|
|
switch (hkey >> 8) {
|
2019-04-24 23:10:19 +00:00
|
|
|
case 1:
|
|
|
|
/* The availmask is the bitmask of supported events */
|
|
|
|
if (ACPI_FAILURE(acpi_GetInteger(sc->handle,
|
|
|
|
IBM_NAME_EVENTS_AVAILMASK, &sc->events_availmask)))
|
|
|
|
sc->events_availmask = 0xffffffff;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
result.Length = sizeof(out_obj);
|
|
|
|
result.Pointer = &out_obj;
|
|
|
|
params[0].Type = ACPI_TYPE_INTEGER;
|
|
|
|
params[0].Integer.Value = 1;
|
|
|
|
input.Pointer = params;
|
|
|
|
input.Count = 1;
|
|
|
|
|
|
|
|
sc->events_availmask = 0xffffffff;
|
|
|
|
|
|
|
|
if (ACPI_SUCCESS(AcpiEvaluateObject (sc->handle,
|
|
|
|
IBM_NAME_EVENTS_AVAILMASK, &input, &result)))
|
|
|
|
sc->events_availmask = out_obj.Integer.Value;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
device_printf(dev, "Unknown firmware version 0x%x\n", hkey);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
sc->events_availmask = 0xffffffff;
|
|
|
|
|
2011-01-12 19:53:56 +00:00
|
|
|
SYSCTL_ADD_UINT(sc->sysctl_ctx,
|
2019-04-24 23:10:19 +00:00
|
|
|
SYSCTL_CHILDREN(sc->sysctl_tree), OID_AUTO,
|
|
|
|
"availmask", CTLFLAG_RD,
|
|
|
|
&sc->events_availmask, 0, "Mask of supported events");
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Hook up proc nodes */
|
|
|
|
for (int i = 0; acpi_ibm_sysctls[i].name != NULL; i++) {
|
|
|
|
if (!acpi_ibm_sysctl_init(sc, acpi_ibm_sysctls[i].method))
|
|
|
|
continue;
|
|
|
|
|
2014-10-21 07:31:21 +00:00
|
|
|
if (acpi_ibm_sysctls[i].flag_rdonly != 0) {
|
|
|
|
SYSCTL_ADD_PROC(sc->sysctl_ctx,
|
|
|
|
SYSCTL_CHILDREN(sc->sysctl_tree), OID_AUTO,
|
2020-02-26 14:26:36 +00:00
|
|
|
acpi_ibm_sysctls[i].name,
|
|
|
|
CTLTYPE_INT | CTLFLAG_RD | CTLFLAG_NEEDGIANT,
|
2014-10-21 07:31:21 +00:00
|
|
|
sc, i, acpi_ibm_sysctl, "I",
|
|
|
|
acpi_ibm_sysctls[i].description);
|
|
|
|
} else {
|
|
|
|
SYSCTL_ADD_PROC(sc->sysctl_ctx,
|
|
|
|
SYSCTL_CHILDREN(sc->sysctl_tree), OID_AUTO,
|
2020-02-26 14:26:36 +00:00
|
|
|
acpi_ibm_sysctls[i].name,
|
|
|
|
CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_NEEDGIANT,
|
2014-10-21 07:31:21 +00:00
|
|
|
sc, i, acpi_ibm_sysctl, "I",
|
|
|
|
acpi_ibm_sysctls[i].description);
|
|
|
|
}
|
2004-12-09 13:54:29 +00:00
|
|
|
}
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
|
|
|
|
/* Hook up thermal node */
|
|
|
|
if (acpi_ibm_sysctl_init(sc, ACPI_IBM_METHOD_THERMAL)) {
|
|
|
|
SYSCTL_ADD_PROC(sc->sysctl_ctx,
|
2020-02-02 19:01:16 +00:00
|
|
|
SYSCTL_CHILDREN(sc->sysctl_tree), OID_AUTO, "thermal",
|
2020-02-26 14:26:36 +00:00
|
|
|
CTLTYPE_INT | CTLFLAG_RD | CTLFLAG_NEEDGIANT, sc, 0,
|
|
|
|
acpi_ibm_thermal_sysctl, "I", "Thermal zones");
|
2004-12-09 13:54:29 +00:00
|
|
|
}
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
|
2012-06-23 18:43:54 +00:00
|
|
|
/* Hook up handlerevents node */
|
|
|
|
if (acpi_ibm_sysctl_init(sc, ACPI_IBM_METHOD_HANDLEREVENTS)) {
|
|
|
|
SYSCTL_ADD_PROC(sc->sysctl_ctx,
|
2020-02-02 19:01:16 +00:00
|
|
|
SYSCTL_CHILDREN(sc->sysctl_tree), OID_AUTO, "handlerevents",
|
2020-02-26 14:26:36 +00:00
|
|
|
CTLTYPE_STRING | CTLFLAG_RW | CTLFLAG_NEEDGIANT, sc, 0,
|
2020-02-02 19:01:16 +00:00
|
|
|
acpi_ibm_handlerevents_sysctl, "I",
|
2012-06-23 18:43:54 +00:00
|
|
|
"devd(8) events handled by acpi_ibm");
|
|
|
|
}
|
|
|
|
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
/* Handle notifies */
|
|
|
|
AcpiInstallNotifyHandler(sc->handle, ACPI_DEVICE_NOTIFY,
|
|
|
|
acpi_ibm_notify, dev);
|
|
|
|
|
|
|
|
/* Hook up light to led(4) */
|
2005-06-10 11:56:18 +00:00
|
|
|
if (sc->light_set_supported)
|
2015-05-24 07:45:42 +00:00
|
|
|
sc->led_dev = led_create_state(ibm_led, sc, "thinklight",
|
|
|
|
(sc->light_val ? 1 : 0));
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
|
2015-05-29 05:28:24 +00:00
|
|
|
/* Enable per-model events. */
|
|
|
|
maker = kern_getenv("smbios.system.maker");
|
|
|
|
product = kern_getenv("smbios.system.product");
|
2015-06-13 22:29:43 +00:00
|
|
|
if (maker == NULL || product == NULL)
|
2015-06-13 05:55:26 +00:00
|
|
|
goto nosmbios;
|
|
|
|
|
2015-05-29 05:28:24 +00:00
|
|
|
for (i = 0; i < nitems(acpi_ibm_models); i++) {
|
|
|
|
if (strcmp(maker, acpi_ibm_models[i].maker) == 0 &&
|
|
|
|
strcmp(product, acpi_ibm_models[i].product) == 0) {
|
|
|
|
ACPI_SERIAL_BEGIN(ibm);
|
|
|
|
acpi_ibm_sysctl_set(sc, ACPI_IBM_METHOD_EVENTMASK,
|
|
|
|
acpi_ibm_models[i].eventmask);
|
|
|
|
ACPI_SERIAL_END(ibm);
|
|
|
|
}
|
|
|
|
}
|
2015-06-13 05:55:26 +00:00
|
|
|
|
|
|
|
nosmbios:
|
2015-05-29 05:28:24 +00:00
|
|
|
freeenv(maker);
|
|
|
|
freeenv(product);
|
|
|
|
|
|
|
|
/* Enable events by default. */
|
|
|
|
ACPI_SERIAL_BEGIN(ibm);
|
|
|
|
acpi_ibm_sysctl_set(sc, ACPI_IBM_METHOD_EVENTS, 1);
|
|
|
|
ACPI_SERIAL_END(ibm);
|
|
|
|
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
return (0);
|
2004-12-09 13:54:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
acpi_ibm_detach(device_t dev)
|
|
|
|
{
|
2004-12-13 03:22:11 +00:00
|
|
|
ACPI_FUNCTION_TRACE((char *)(uintptr_t) __func__);
|
|
|
|
|
2004-12-09 13:54:29 +00:00
|
|
|
struct acpi_ibm_softc *sc = device_get_softc(dev);
|
|
|
|
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
/* Disable events and restore eventmask */
|
|
|
|
ACPI_SERIAL_BEGIN(ibm);
|
|
|
|
acpi_ibm_sysctl_set(sc, ACPI_IBM_METHOD_EVENTS, 0);
|
|
|
|
acpi_ibm_sysctl_set(sc, ACPI_IBM_METHOD_EVENTMASK, sc->events_initialmask);
|
|
|
|
ACPI_SERIAL_END(ibm);
|
2004-12-09 13:54:29 +00:00
|
|
|
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
AcpiRemoveNotifyHandler(sc->handle, ACPI_DEVICE_NOTIFY, acpi_ibm_notify);
|
|
|
|
|
2005-06-10 11:56:18 +00:00
|
|
|
if (sc->led_dev != NULL)
|
|
|
|
led_destroy(sc->led_dev);
|
|
|
|
|
2004-12-09 13:54:29 +00:00
|
|
|
return (0);
|
|
|
|
}
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
|
2010-01-05 20:29:30 +00:00
|
|
|
static int
|
|
|
|
acpi_ibm_resume(device_t dev)
|
|
|
|
{
|
|
|
|
struct acpi_ibm_softc *sc = device_get_softc(dev);
|
|
|
|
|
|
|
|
ACPI_FUNCTION_TRACE((char *)(uintptr_t) __func__);
|
|
|
|
|
|
|
|
ACPI_SERIAL_BEGIN(ibm);
|
|
|
|
for (int i = 0; acpi_ibm_sysctls[i].name != NULL; i++) {
|
|
|
|
int val;
|
|
|
|
|
|
|
|
val = acpi_ibm_sysctl_get(sc, i);
|
|
|
|
|
2014-10-21 07:31:21 +00:00
|
|
|
if (acpi_ibm_sysctls[i].flag_rdonly != 0)
|
2010-01-05 20:29:30 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
acpi_ibm_sysctl_set(sc, i, val);
|
|
|
|
}
|
|
|
|
ACPI_SERIAL_END(ibm);
|
|
|
|
|
2018-06-17 20:44:20 +00:00
|
|
|
/* The mic led does not turn back on when sysctl_set is called in the above loop */
|
|
|
|
acpi_ibm_mic_led_set(sc, sc->mic_led_state);
|
|
|
|
|
2010-01-05 20:29:30 +00:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
static int
|
|
|
|
acpi_ibm_eventmask_set(struct acpi_ibm_softc *sc, int val)
|
2004-12-09 13:54:29 +00:00
|
|
|
{
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
ACPI_OBJECT arg[2];
|
|
|
|
ACPI_OBJECT_LIST args;
|
|
|
|
ACPI_STATUS status;
|
2004-12-09 13:54:29 +00:00
|
|
|
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
|
|
|
|
ACPI_SERIAL_ASSERT(ibm);
|
2004-12-09 13:54:29 +00:00
|
|
|
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
args.Count = 2;
|
|
|
|
args.Pointer = arg;
|
|
|
|
arg[0].Type = ACPI_TYPE_INTEGER;
|
|
|
|
arg[1].Type = ACPI_TYPE_INTEGER;
|
2004-12-09 13:54:29 +00:00
|
|
|
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
for (int i = 0; i < 32; ++i) {
|
2020-02-02 19:01:16 +00:00
|
|
|
arg[0].Integer.Value = i + 1;
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
arg[1].Integer.Value = (((1 << i) & val) != 0);
|
|
|
|
status = AcpiEvaluateObject(sc->handle,
|
|
|
|
IBM_NAME_EVENTS_MASK_SET, &args, NULL);
|
2004-12-09 13:54:29 +00:00
|
|
|
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
if (ACPI_FAILURE(status))
|
|
|
|
return (status);
|
2004-12-09 13:54:29 +00:00
|
|
|
}
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
|
|
|
|
return (0);
|
2004-12-09 13:54:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
acpi_ibm_sysctl(SYSCTL_HANDLER_ARGS)
|
2004-12-09 13:54:29 +00:00
|
|
|
{
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
struct acpi_ibm_softc *sc;
|
|
|
|
int arg;
|
|
|
|
int error = 0;
|
|
|
|
int function;
|
|
|
|
int method;
|
2015-05-16 20:06:39 +00:00
|
|
|
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
|
|
|
|
|
|
|
|
sc = (struct acpi_ibm_softc *)oidp->oid_arg1;
|
|
|
|
function = oidp->oid_arg2;
|
|
|
|
method = acpi_ibm_sysctls[function].method;
|
|
|
|
|
|
|
|
ACPI_SERIAL_BEGIN(ibm);
|
|
|
|
arg = acpi_ibm_sysctl_get(sc, method);
|
|
|
|
error = sysctl_handle_int(oidp, &arg, 0, req);
|
|
|
|
|
|
|
|
/* Sanity check */
|
|
|
|
if (error != 0 || req->newptr == NULL)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
/* Update */
|
|
|
|
error = acpi_ibm_sysctl_set(sc, method, arg);
|
|
|
|
|
|
|
|
out:
|
|
|
|
ACPI_SERIAL_END(ibm);
|
|
|
|
return (error);
|
2004-12-09 13:54:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
acpi_ibm_sysctl_get(struct acpi_ibm_softc *sc, int method)
|
2004-12-09 13:54:29 +00:00
|
|
|
{
|
2010-01-21 21:14:28 +00:00
|
|
|
UINT64 val_ec;
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
int val = 0, key;
|
|
|
|
|
|
|
|
ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
|
|
|
|
ACPI_SERIAL_ASSERT(ibm);
|
|
|
|
|
|
|
|
switch (method) {
|
|
|
|
case ACPI_IBM_METHOD_EVENTS:
|
|
|
|
acpi_GetInteger(sc->handle, IBM_NAME_EVENTS_STATUS_GET, &val);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_IBM_METHOD_EVENTMASK:
|
|
|
|
if (sc->events_mask_supported)
|
|
|
|
acpi_GetInteger(sc->handle, IBM_NAME_EVENTS_MASK_GET, &val);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_IBM_METHOD_HOTKEY:
|
|
|
|
/*
|
|
|
|
* Construct the hotkey as a bitmask as illustrated below.
|
|
|
|
* Note that whenever a key was pressed, the respecting bit
|
|
|
|
* toggles and nothing else changes.
|
|
|
|
* +--+--+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
* |11|10|9|8|7|6|5|4|3|2|1|0|
|
|
|
|
* +--+--+-+-+-+-+-+-+-+-+-+-+
|
|
|
|
* | | | | | | | | | | | |
|
|
|
|
* | | | | | | | | | | | +- Home Button
|
|
|
|
* | | | | | | | | | | +--- Search Button
|
|
|
|
* | | | | | | | | | +----- Mail Button
|
|
|
|
* | | | | | | | | +------- Thinkpad Button
|
|
|
|
* | | | | | | | +--------- Zoom (Fn + Space)
|
|
|
|
* | | | | | | +----------- WLAN Button
|
|
|
|
* | | | | | +------------- Video Button
|
|
|
|
* | | | | +--------------- Hibernate Button
|
|
|
|
* | | | +----------------- Thinklight Button
|
|
|
|
* | | +------------------- Screen expand (Fn + F8)
|
|
|
|
* | +--------------------- Brightness
|
|
|
|
* +------------------------ Volume/Mute
|
|
|
|
*/
|
|
|
|
key = rtcin(IBM_RTC_HOTKEY1);
|
|
|
|
val = (IBM_RTC_MASK_HOME | IBM_RTC_MASK_SEARCH | IBM_RTC_MASK_MAIL | IBM_RTC_MASK_WLAN) & key;
|
|
|
|
key = rtcin(IBM_RTC_HOTKEY2);
|
|
|
|
val |= (IBM_RTC_MASK_THINKPAD | IBM_RTC_MASK_VIDEO | IBM_RTC_MASK_HIBERNATE) & key;
|
|
|
|
val |= (IBM_RTC_MASK_ZOOM & key) >> 1;
|
|
|
|
key = rtcin(IBM_RTC_THINKLIGHT);
|
|
|
|
val |= (IBM_RTC_MASK_THINKLIGHT & key) << 4;
|
|
|
|
key = rtcin(IBM_RTC_SCREENEXPAND);
|
|
|
|
val |= (IBM_RTC_MASK_THINKLIGHT & key) << 4;
|
|
|
|
key = rtcin(IBM_RTC_BRIGHTNESS);
|
|
|
|
val |= (IBM_RTC_MASK_BRIGHTNESS & key) << 5;
|
|
|
|
key = rtcin(IBM_RTC_VOLUME);
|
|
|
|
val |= (IBM_RTC_MASK_VOLUME & key) << 4;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_IBM_METHOD_BRIGHTNESS:
|
|
|
|
ACPI_EC_READ(sc->ec_dev, IBM_EC_BRIGHTNESS, &val_ec, 1);
|
|
|
|
val = val_ec & IBM_EC_MASK_BRI;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_IBM_METHOD_VOLUME:
|
|
|
|
ACPI_EC_READ(sc->ec_dev, IBM_EC_VOLUME, &val_ec, 1);
|
2005-06-10 11:56:18 +00:00
|
|
|
val = val_ec & IBM_EC_MASK_VOL;
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_IBM_METHOD_MUTE:
|
|
|
|
ACPI_EC_READ(sc->ec_dev, IBM_EC_VOLUME, &val_ec, 1);
|
|
|
|
val = ((val_ec & IBM_EC_MASK_MUTE) == IBM_EC_MASK_MUTE);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_IBM_METHOD_THINKLIGHT:
|
|
|
|
if (sc->light_get_supported)
|
|
|
|
acpi_GetInteger(sc->ec_handle, IBM_NAME_KEYLIGHT, &val);
|
|
|
|
else
|
|
|
|
val = sc->light_val;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_IBM_METHOD_BLUETOOTH:
|
|
|
|
acpi_GetInteger(sc->handle, IBM_NAME_WLAN_BT_GET, &val);
|
|
|
|
sc->wlan_bt_flags = val;
|
|
|
|
val = ((val & IBM_NAME_MASK_BT) != 0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_IBM_METHOD_WLAN:
|
|
|
|
acpi_GetInteger(sc->handle, IBM_NAME_WLAN_BT_GET, &val);
|
|
|
|
sc->wlan_bt_flags = val;
|
|
|
|
val = ((val & IBM_NAME_MASK_WLAN) != 0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_IBM_METHOD_FANSPEED:
|
|
|
|
if (sc->fan_handle) {
|
|
|
|
if(ACPI_FAILURE(acpi_GetInteger(sc->fan_handle, NULL, &val)))
|
|
|
|
val = -1;
|
2020-02-02 19:01:16 +00:00
|
|
|
} else {
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
ACPI_EC_READ(sc->ec_dev, IBM_EC_FANSPEED, &val_ec, 2);
|
|
|
|
val = val_ec;
|
|
|
|
}
|
|
|
|
break;
|
2004-12-09 13:54:29 +00:00
|
|
|
|
2006-01-14 00:39:10 +00:00
|
|
|
case ACPI_IBM_METHOD_FANLEVEL:
|
|
|
|
/*
|
|
|
|
* The IBM_EC_FANSTATUS register works as follows:
|
|
|
|
* Bit 0-5 indicate the level at which the fan operates. Only
|
|
|
|
* values between 0 and 7 have an effect. Everything
|
|
|
|
* above 7 is treated the same as level 7
|
|
|
|
* Bit 6 overrides the fan speed limit if set to 1
|
|
|
|
* Bit 7 indicates at which mode the fan operates:
|
|
|
|
* manual (0) or automatic (1)
|
|
|
|
*/
|
|
|
|
if (!sc->fan_handle) {
|
|
|
|
ACPI_EC_READ(sc->ec_dev, IBM_EC_FANSTATUS, &val_ec, 1);
|
2020-06-24 19:51:03 +00:00
|
|
|
if (val_ec & IBM_EC_MASK_FANUNTHROTTLED)
|
2020-06-22 12:36:05 +00:00
|
|
|
val = 8;
|
|
|
|
else
|
|
|
|
val = val_ec & IBM_EC_MASK_FANLEVEL;
|
2006-01-14 00:39:10 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
case ACPI_IBM_METHOD_FANSTATUS:
|
|
|
|
if (!sc->fan_handle) {
|
|
|
|
ACPI_EC_READ(sc->ec_dev, IBM_EC_FANSTATUS, &val_ec, 1);
|
|
|
|
val = (val_ec & IBM_EC_MASK_FANSTATUS) == IBM_EC_MASK_FANSTATUS;
|
2020-02-02 19:01:16 +00:00
|
|
|
} else
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
val = -1;
|
|
|
|
break;
|
2020-02-02 19:01:16 +00:00
|
|
|
|
2018-06-17 20:44:20 +00:00
|
|
|
case ACPI_IBM_METHOD_MIC_LED:
|
|
|
|
if (sc->mic_led_handle)
|
|
|
|
return sc->mic_led_state;
|
|
|
|
else
|
|
|
|
val = -1;
|
|
|
|
break;
|
2020-01-30 10:40:38 +00:00
|
|
|
|
|
|
|
case ACPI_IBM_METHOD_PRIVACYGUARD:
|
|
|
|
val = acpi_ibm_privacyguard_get(sc);
|
|
|
|
break;
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
}
|
2004-12-09 13:54:29 +00:00
|
|
|
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
return (val);
|
|
|
|
}
|
2004-12-09 13:54:29 +00:00
|
|
|
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
static int
|
|
|
|
acpi_ibm_sysctl_set(struct acpi_ibm_softc *sc, int method, int arg)
|
|
|
|
{
|
2012-06-23 18:43:54 +00:00
|
|
|
int val;
|
2010-01-21 21:14:28 +00:00
|
|
|
UINT64 val_ec;
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
ACPI_STATUS status;
|
|
|
|
|
|
|
|
ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
|
|
|
|
ACPI_SERIAL_ASSERT(ibm);
|
|
|
|
|
|
|
|
switch (method) {
|
|
|
|
case ACPI_IBM_METHOD_EVENTS:
|
|
|
|
if (arg < 0 || arg > 1)
|
|
|
|
return (EINVAL);
|
|
|
|
|
|
|
|
status = acpi_SetInteger(sc->handle, IBM_NAME_EVENTS_STATUS_SET, arg);
|
|
|
|
if (ACPI_FAILURE(status))
|
|
|
|
return (status);
|
|
|
|
if (sc->events_mask_supported)
|
|
|
|
return acpi_ibm_eventmask_set(sc, sc->events_availmask);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_IBM_METHOD_EVENTMASK:
|
|
|
|
if (sc->events_mask_supported)
|
|
|
|
return acpi_ibm_eventmask_set(sc, arg);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_IBM_METHOD_BRIGHTNESS:
|
2012-06-23 18:43:54 +00:00
|
|
|
return acpi_ibm_brightness_set(sc, arg);
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_IBM_METHOD_VOLUME:
|
2012-06-23 18:43:54 +00:00
|
|
|
return acpi_ibm_volume_set(sc, arg);
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_IBM_METHOD_MUTE:
|
2012-06-23 18:43:54 +00:00
|
|
|
return acpi_ibm_mute_set(sc, arg);
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
break;
|
|
|
|
|
2018-06-17 20:44:20 +00:00
|
|
|
case ACPI_IBM_METHOD_MIC_LED:
|
2020-02-02 19:01:16 +00:00
|
|
|
return acpi_ibm_mic_led_set(sc, arg);
|
2018-06-17 20:44:20 +00:00
|
|
|
break;
|
|
|
|
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
case ACPI_IBM_METHOD_THINKLIGHT:
|
2012-06-23 18:43:54 +00:00
|
|
|
return acpi_ibm_thinklight_set(sc, arg);
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
break;
|
2004-12-09 13:54:29 +00:00
|
|
|
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
case ACPI_IBM_METHOD_BLUETOOTH:
|
2012-06-23 18:43:54 +00:00
|
|
|
return acpi_ibm_bluetooth_set(sc, arg);
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
break;
|
2006-01-14 00:39:10 +00:00
|
|
|
|
2020-01-30 10:40:38 +00:00
|
|
|
case ACPI_IBM_METHOD_PRIVACYGUARD:
|
|
|
|
return (acpi_status_to_errno(acpi_ibm_privacyguard_set(sc, arg)));
|
|
|
|
break;
|
|
|
|
|
2006-01-14 00:39:10 +00:00
|
|
|
case ACPI_IBM_METHOD_FANLEVEL:
|
2020-06-22 12:36:05 +00:00
|
|
|
if (arg < 0 || arg > 8)
|
2006-01-14 00:39:10 +00:00
|
|
|
return (EINVAL);
|
|
|
|
|
|
|
|
if (!sc->fan_handle) {
|
2020-06-22 12:36:05 +00:00
|
|
|
/* Read the current fan status. */
|
2006-01-14 00:39:10 +00:00
|
|
|
ACPI_EC_READ(sc->ec_dev, IBM_EC_FANSTATUS, &val_ec, 1);
|
2020-06-22 12:36:05 +00:00
|
|
|
val = val_ec & ~(IBM_EC_MASK_FANLEVEL |
|
2020-06-24 19:51:03 +00:00
|
|
|
IBM_EC_MASK_FANUNTHROTTLED);
|
2020-06-22 12:36:05 +00:00
|
|
|
|
|
|
|
if (arg == 8)
|
2020-06-24 19:51:03 +00:00
|
|
|
/* Full speed, set the unthrottled bit. */
|
|
|
|
val |= 7 | IBM_EC_MASK_FANUNTHROTTLED;
|
2020-06-22 12:36:05 +00:00
|
|
|
else
|
|
|
|
val |= arg;
|
2006-01-14 00:39:10 +00:00
|
|
|
|
2020-06-22 12:36:05 +00:00
|
|
|
return (ACPI_EC_WRITE(sc->ec_dev, IBM_EC_FANSTATUS, val,
|
|
|
|
1));
|
2006-01-14 00:39:10 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_IBM_METHOD_FANSTATUS:
|
|
|
|
if (arg < 0 || arg > 1)
|
|
|
|
return (EINVAL);
|
|
|
|
|
|
|
|
if (!sc->fan_handle) {
|
|
|
|
/* Read the current fanstatus */
|
|
|
|
ACPI_EC_READ(sc->ec_dev, IBM_EC_FANSTATUS, &val_ec, 1);
|
|
|
|
|
|
|
|
return ACPI_EC_WRITE(sc->ec_dev, IBM_EC_FANSTATUS,
|
|
|
|
(arg == 1) ? (val_ec | IBM_EC_MASK_FANSTATUS) : (val_ec & (~IBM_EC_MASK_FANSTATUS)), 1);
|
|
|
|
}
|
|
|
|
break;
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
}
|
2004-12-09 13:54:29 +00:00
|
|
|
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
return (0);
|
2004-12-09 13:54:29 +00:00
|
|
|
}
|
|
|
|
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
static int
|
|
|
|
acpi_ibm_sysctl_init(struct acpi_ibm_softc *sc, int method)
|
2004-12-09 13:54:29 +00:00
|
|
|
{
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
int dummy;
|
|
|
|
ACPI_OBJECT_TYPE cmos_t;
|
|
|
|
ACPI_HANDLE ledb_handle;
|
|
|
|
|
|
|
|
switch (method) {
|
|
|
|
case ACPI_IBM_METHOD_EVENTS:
|
|
|
|
return (TRUE);
|
|
|
|
|
|
|
|
case ACPI_IBM_METHOD_EVENTMASK:
|
|
|
|
return (sc->events_mask_supported);
|
|
|
|
|
|
|
|
case ACPI_IBM_METHOD_HOTKEY:
|
|
|
|
case ACPI_IBM_METHOD_BRIGHTNESS:
|
|
|
|
case ACPI_IBM_METHOD_VOLUME:
|
|
|
|
case ACPI_IBM_METHOD_MUTE:
|
2016-05-03 03:41:25 +00:00
|
|
|
/* EC is required here, which was already checked before */
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
return (TRUE);
|
|
|
|
|
2018-06-17 20:44:20 +00:00
|
|
|
case ACPI_IBM_METHOD_MIC_LED:
|
|
|
|
if (ACPI_SUCCESS(AcpiGetHandle(sc->handle, "MMTS", &sc->mic_led_handle)))
|
|
|
|
{
|
|
|
|
/* Turn off mic led by default */
|
2020-02-02 19:01:16 +00:00
|
|
|
acpi_ibm_mic_led_set(sc, 0);
|
|
|
|
return (TRUE);
|
|
|
|
} else
|
2018-06-17 20:44:20 +00:00
|
|
|
sc->mic_led_handle = NULL;
|
|
|
|
return (FALSE);
|
|
|
|
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
case ACPI_IBM_METHOD_THINKLIGHT:
|
|
|
|
sc->cmos_handle = NULL;
|
2007-04-24 23:09:37 +00:00
|
|
|
sc->light_get_supported = ACPI_SUCCESS(acpi_GetInteger(
|
|
|
|
sc->ec_handle, IBM_NAME_KEYLIGHT, &sc->light_val));
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
|
|
|
|
if ((ACPI_SUCCESS(AcpiGetHandle(sc->handle, "\\UCMS", &sc->light_handle)) ||
|
|
|
|
ACPI_SUCCESS(AcpiGetHandle(sc->handle, "\\CMOS", &sc->light_handle)) ||
|
|
|
|
ACPI_SUCCESS(AcpiGetHandle(sc->handle, "\\CMS", &sc->light_handle))) &&
|
|
|
|
ACPI_SUCCESS(AcpiGetType(sc->light_handle, &cmos_t)) &&
|
|
|
|
cmos_t == ACPI_TYPE_METHOD) {
|
|
|
|
sc->light_cmd_on = 0x0c;
|
|
|
|
sc->light_cmd_off = 0x0d;
|
|
|
|
sc->cmos_handle = sc->light_handle;
|
|
|
|
}
|
|
|
|
else if (ACPI_SUCCESS(AcpiGetHandle(sc->handle, "\\LGHT", &sc->light_handle))) {
|
|
|
|
sc->light_cmd_on = 1;
|
|
|
|
sc->light_cmd_off = 0;
|
2020-02-02 19:01:16 +00:00
|
|
|
} else
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
sc->light_handle = NULL;
|
2004-12-09 13:54:29 +00:00
|
|
|
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
sc->light_set_supported = (sc->light_handle &&
|
|
|
|
ACPI_FAILURE(AcpiGetHandle(sc->ec_handle, "LEDB", &ledb_handle)));
|
2004-12-09 13:54:29 +00:00
|
|
|
|
2007-04-24 23:09:37 +00:00
|
|
|
if (sc->light_get_supported)
|
|
|
|
return (TRUE);
|
|
|
|
|
|
|
|
if (sc->light_set_supported) {
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
sc->light_val = 0;
|
|
|
|
return (TRUE);
|
|
|
|
}
|
2007-04-24 23:09:37 +00:00
|
|
|
|
|
|
|
return (FALSE);
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
|
|
|
|
case ACPI_IBM_METHOD_BLUETOOTH:
|
|
|
|
case ACPI_IBM_METHOD_WLAN:
|
|
|
|
if (ACPI_SUCCESS(acpi_GetInteger(sc->handle, IBM_NAME_WLAN_BT_GET, &dummy)))
|
|
|
|
return (TRUE);
|
|
|
|
return (FALSE);
|
|
|
|
|
|
|
|
case ACPI_IBM_METHOD_FANSPEED:
|
2015-05-16 20:06:39 +00:00
|
|
|
/*
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
* Some models report the fan speed in levels from 0-7
|
|
|
|
* Newer models report it contiguously
|
|
|
|
*/
|
|
|
|
sc->fan_levels =
|
|
|
|
(ACPI_SUCCESS(AcpiGetHandle(sc->handle, "GFAN", &sc->fan_handle)) ||
|
|
|
|
ACPI_SUCCESS(AcpiGetHandle(sc->handle, "\\FSPD", &sc->fan_handle)));
|
|
|
|
return (TRUE);
|
|
|
|
|
2006-01-14 00:39:10 +00:00
|
|
|
case ACPI_IBM_METHOD_FANLEVEL:
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
case ACPI_IBM_METHOD_FANSTATUS:
|
2015-05-16 20:06:39 +00:00
|
|
|
/*
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
* Fan status is only supported on those models,
|
|
|
|
* which report fan RPM contiguously, not in levels
|
|
|
|
*/
|
|
|
|
if (sc->fan_levels)
|
|
|
|
return (FALSE);
|
|
|
|
return (TRUE);
|
|
|
|
|
|
|
|
case ACPI_IBM_METHOD_THERMAL:
|
|
|
|
if (ACPI_SUCCESS(acpi_GetInteger(sc->ec_handle, IBM_NAME_THERMAL_GET, &dummy))) {
|
|
|
|
sc->thermal_updt_supported = ACPI_SUCCESS(acpi_GetInteger(sc->ec_handle, IBM_NAME_THERMAL_UPDT, &dummy));
|
|
|
|
return (TRUE);
|
|
|
|
}
|
|
|
|
return (FALSE);
|
2012-06-23 18:43:54 +00:00
|
|
|
|
|
|
|
case ACPI_IBM_METHOD_HANDLEREVENTS:
|
|
|
|
return (TRUE);
|
2020-01-30 10:40:38 +00:00
|
|
|
|
|
|
|
case ACPI_IBM_METHOD_PRIVACYGUARD:
|
|
|
|
return (acpi_ibm_privacyguard_get(sc) != -1);
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
}
|
|
|
|
return (FALSE);
|
2004-12-09 13:54:29 +00:00
|
|
|
}
|
|
|
|
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
static int
|
|
|
|
acpi_ibm_thermal_sysctl(SYSCTL_HANDLER_ARGS)
|
2004-12-09 13:54:29 +00:00
|
|
|
{
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
struct acpi_ibm_softc *sc;
|
|
|
|
int error = 0;
|
|
|
|
char temp_cmd[] = "TMP0";
|
|
|
|
int temp[8];
|
|
|
|
|
|
|
|
ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
|
|
|
|
|
|
|
|
sc = (struct acpi_ibm_softc *)oidp->oid_arg1;
|
|
|
|
|
|
|
|
ACPI_SERIAL_BEGIN(ibm);
|
|
|
|
|
|
|
|
for (int i = 0; i < 8; ++i) {
|
|
|
|
temp_cmd[3] = '0' + i;
|
2015-05-16 20:06:39 +00:00
|
|
|
|
|
|
|
/*
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
* The TMPx methods seem to return +/- 128 or 0
|
2015-05-16 20:06:39 +00:00
|
|
|
* when the respecting sensor is not available
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
*/
|
|
|
|
if (ACPI_FAILURE(acpi_GetInteger(sc->ec_handle, temp_cmd,
|
|
|
|
&temp[i])) || ABS(temp[i]) == 128 || temp[i] == 0)
|
|
|
|
temp[i] = -1;
|
|
|
|
else if (sc->thermal_updt_supported)
|
|
|
|
/* Temperature is reported in tenth of Kelvin */
|
2016-05-22 13:58:32 +00:00
|
|
|
temp[i] = (temp[i] - 2731 + 5) / 10;
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
}
|
2004-12-09 13:54:29 +00:00
|
|
|
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
error = sysctl_handle_opaque(oidp, &temp, 8*sizeof(int), req);
|
2004-12-09 13:54:29 +00:00
|
|
|
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
ACPI_SERIAL_END(ibm);
|
|
|
|
return (error);
|
2004-12-09 13:54:29 +00:00
|
|
|
}
|
|
|
|
|
2012-06-23 18:43:54 +00:00
|
|
|
static int
|
|
|
|
acpi_ibm_handlerevents_sysctl(SYSCTL_HANDLER_ARGS)
|
|
|
|
{
|
|
|
|
struct acpi_ibm_softc *sc;
|
|
|
|
int error = 0;
|
|
|
|
struct sbuf sb;
|
|
|
|
char *cp, *ep;
|
|
|
|
int l, val;
|
|
|
|
unsigned int handler_events;
|
2014-10-28 12:00:39 +00:00
|
|
|
char temp[128];
|
2012-06-23 18:43:54 +00:00
|
|
|
|
|
|
|
ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
|
|
|
|
|
|
|
|
sc = (struct acpi_ibm_softc *)oidp->oid_arg1;
|
|
|
|
|
|
|
|
if (sbuf_new(&sb, NULL, 128, SBUF_AUTOEXTEND) == NULL)
|
|
|
|
return (ENOMEM);
|
|
|
|
|
|
|
|
ACPI_SERIAL_BEGIN(ibm);
|
|
|
|
|
|
|
|
/* Get old values if this is a get request. */
|
|
|
|
if (req->newptr == NULL) {
|
|
|
|
for (int i = 0; i < 8 * sizeof(sc->handler_events); i++)
|
|
|
|
if (sc->handler_events & (1 << i))
|
|
|
|
sbuf_printf(&sb, "0x%02x ", i + 1);
|
|
|
|
if (sbuf_len(&sb) == 0)
|
|
|
|
sbuf_printf(&sb, "NONE");
|
|
|
|
}
|
|
|
|
|
|
|
|
sbuf_trim(&sb);
|
|
|
|
sbuf_finish(&sb);
|
2014-10-28 12:00:39 +00:00
|
|
|
strlcpy(temp, sbuf_data(&sb), sizeof(temp));
|
2012-06-23 18:43:54 +00:00
|
|
|
sbuf_delete(&sb);
|
|
|
|
|
2014-10-28 12:00:39 +00:00
|
|
|
error = sysctl_handle_string(oidp, temp, sizeof(temp), req);
|
|
|
|
|
|
|
|
/* Check for error or no change */
|
2012-06-23 18:43:54 +00:00
|
|
|
if (error != 0 || req->newptr == NULL)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
/* If the user is setting a string, parse it. */
|
|
|
|
handler_events = 0;
|
2014-10-28 12:00:39 +00:00
|
|
|
cp = temp;
|
2012-06-23 18:43:54 +00:00
|
|
|
while (*cp) {
|
|
|
|
if (isspace(*cp)) {
|
|
|
|
cp++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
ep = cp;
|
|
|
|
|
|
|
|
while (*ep && !isspace(*ep))
|
|
|
|
ep++;
|
|
|
|
|
|
|
|
l = ep - cp;
|
|
|
|
if (l == 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (strncmp(cp, "NONE", 4) == 0) {
|
|
|
|
cp = ep;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (l >= 3 && cp[0] == '0' && (cp[1] == 'X' || cp[1] == 'x'))
|
|
|
|
val = strtoul(cp, &ep, 16);
|
|
|
|
else
|
|
|
|
val = strtoul(cp, &ep, 10);
|
|
|
|
|
|
|
|
if (val == 0 || ep == cp || val >= 8 * sizeof(handler_events)) {
|
|
|
|
cp[l] = '\0';
|
|
|
|
device_printf(sc->dev, "invalid event code: %s\n", cp);
|
|
|
|
error = EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
handler_events |= 1 << (val - 1);
|
|
|
|
|
|
|
|
cp = ep;
|
|
|
|
}
|
|
|
|
|
|
|
|
sc->handler_events = handler_events;
|
|
|
|
out:
|
|
|
|
ACPI_SERIAL_END(ibm);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
acpi_ibm_brightness_set(struct acpi_ibm_softc *sc, int arg)
|
|
|
|
{
|
|
|
|
int val, step;
|
|
|
|
UINT64 val_ec;
|
|
|
|
ACPI_OBJECT Arg;
|
|
|
|
ACPI_OBJECT_LIST Args;
|
|
|
|
ACPI_STATUS status;
|
|
|
|
|
|
|
|
ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
|
|
|
|
ACPI_SERIAL_ASSERT(ibm);
|
|
|
|
|
|
|
|
if (arg < 0 || arg > 7)
|
|
|
|
return (EINVAL);
|
|
|
|
|
|
|
|
/* Read the current brightness */
|
|
|
|
status = ACPI_EC_READ(sc->ec_dev, IBM_EC_BRIGHTNESS, &val_ec, 1);
|
|
|
|
if (ACPI_FAILURE(status))
|
|
|
|
return (status);
|
|
|
|
|
|
|
|
if (sc->cmos_handle) {
|
|
|
|
val = val_ec & IBM_EC_MASK_BRI;
|
|
|
|
|
|
|
|
Args.Count = 1;
|
|
|
|
Args.Pointer = &Arg;
|
|
|
|
Arg.Type = ACPI_TYPE_INTEGER;
|
|
|
|
Arg.Integer.Value = (arg > val) ? IBM_CMOS_BRIGHTNESS_UP :
|
|
|
|
IBM_CMOS_BRIGHTNESS_DOWN;
|
|
|
|
|
|
|
|
step = (arg > val) ? 1 : -1;
|
|
|
|
for (int i = val; i != arg; i += step) {
|
|
|
|
status = AcpiEvaluateObject(sc->cmos_handle, NULL,
|
|
|
|
&Args, NULL);
|
|
|
|
if (ACPI_FAILURE(status)) {
|
|
|
|
/* Record the last value */
|
|
|
|
if (i != val) {
|
|
|
|
ACPI_EC_WRITE(sc->ec_dev,
|
|
|
|
IBM_EC_BRIGHTNESS, i - step, 1);
|
|
|
|
}
|
|
|
|
return (status);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ACPI_EC_WRITE(sc->ec_dev, IBM_EC_BRIGHTNESS, arg, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
acpi_ibm_bluetooth_set(struct acpi_ibm_softc *sc, int arg)
|
|
|
|
{
|
|
|
|
int val;
|
|
|
|
|
|
|
|
ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
|
|
|
|
ACPI_SERIAL_ASSERT(ibm);
|
|
|
|
|
|
|
|
if (arg < 0 || arg > 1)
|
|
|
|
return (EINVAL);
|
|
|
|
|
|
|
|
val = (arg == 1) ? sc->wlan_bt_flags | IBM_NAME_MASK_BT :
|
|
|
|
sc->wlan_bt_flags & (~IBM_NAME_MASK_BT);
|
|
|
|
return acpi_SetInteger(sc->handle, IBM_NAME_WLAN_BT_SET, val);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
acpi_ibm_thinklight_set(struct acpi_ibm_softc *sc, int arg)
|
|
|
|
{
|
|
|
|
ACPI_OBJECT Arg;
|
|
|
|
ACPI_OBJECT_LIST Args;
|
|
|
|
ACPI_STATUS status;
|
|
|
|
|
|
|
|
ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
|
|
|
|
ACPI_SERIAL_ASSERT(ibm);
|
|
|
|
|
|
|
|
if (arg < 0 || arg > 1)
|
|
|
|
return (EINVAL);
|
|
|
|
|
|
|
|
if (sc->light_set_supported) {
|
|
|
|
Args.Count = 1;
|
|
|
|
Args.Pointer = &Arg;
|
|
|
|
Arg.Type = ACPI_TYPE_INTEGER;
|
|
|
|
Arg.Integer.Value = arg ? sc->light_cmd_on : sc->light_cmd_off;
|
|
|
|
|
|
|
|
status = AcpiEvaluateObject(sc->light_handle, NULL,
|
|
|
|
&Args, NULL);
|
|
|
|
if (ACPI_SUCCESS(status))
|
|
|
|
sc->light_val = arg;
|
|
|
|
return (status);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2020-01-30 10:40:38 +00:00
|
|
|
/*
|
|
|
|
* Helper function to make a get or set ACPI call to the PrivacyGuard handle.
|
|
|
|
* Only meant to be used internally by the get/set functions below.
|
|
|
|
*/
|
|
|
|
static ACPI_STATUS
|
2020-02-02 19:01:16 +00:00
|
|
|
acpi_ibm_privacyguard_acpi_call(struct acpi_ibm_softc *sc, bool write, int *arg)
|
|
|
|
{
|
2020-01-30 10:40:38 +00:00
|
|
|
ACPI_OBJECT Arg;
|
|
|
|
ACPI_OBJECT_LIST Args;
|
|
|
|
ACPI_STATUS status;
|
|
|
|
ACPI_OBJECT out_obj;
|
|
|
|
ACPI_BUFFER result;
|
|
|
|
|
|
|
|
Arg.Type = ACPI_TYPE_INTEGER;
|
|
|
|
Arg.Integer.Value = (write ? *arg : 0);
|
|
|
|
Args.Count = 1;
|
|
|
|
Args.Pointer = &Arg;
|
|
|
|
result.Length = sizeof(out_obj);
|
|
|
|
result.Pointer = &out_obj;
|
|
|
|
|
|
|
|
status = AcpiEvaluateObject(sc->handle,
|
|
|
|
(write ? IBM_NAME_PRIVACYGUARD_SET : IBM_NAME_PRIVACYGUARD_GET),
|
|
|
|
&Args, &result);
|
|
|
|
if (ACPI_SUCCESS(status) && !write)
|
|
|
|
*arg = out_obj.Integer.Value;
|
|
|
|
|
|
|
|
return (status);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Returns -1 if the device is not present.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
acpi_ibm_privacyguard_get(struct acpi_ibm_softc *sc)
|
|
|
|
{
|
|
|
|
ACPI_STATUS status;
|
|
|
|
int val;
|
|
|
|
|
|
|
|
status = acpi_ibm_privacyguard_acpi_call(sc, false, &val);
|
|
|
|
if (ACPI_SUCCESS(status) &&
|
|
|
|
(val & IBM_FLAG_PRIVACYGUARD_DEVICE_PRESENT))
|
|
|
|
return (val & IBM_FLAG_PRIVACYGUARD_ON);
|
|
|
|
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ACPI_STATUS
|
|
|
|
acpi_ibm_privacyguard_set(struct acpi_ibm_softc *sc, int arg)
|
|
|
|
{
|
|
|
|
if (arg < 0 || arg > 1)
|
|
|
|
return (AE_BAD_PARAMETER);
|
|
|
|
|
|
|
|
return (acpi_ibm_privacyguard_acpi_call(sc, true, &arg));
|
|
|
|
}
|
|
|
|
|
2012-06-23 18:43:54 +00:00
|
|
|
static int
|
|
|
|
acpi_ibm_volume_set(struct acpi_ibm_softc *sc, int arg)
|
|
|
|
{
|
|
|
|
int val, step;
|
|
|
|
UINT64 val_ec;
|
|
|
|
ACPI_OBJECT Arg;
|
|
|
|
ACPI_OBJECT_LIST Args;
|
|
|
|
ACPI_STATUS status;
|
|
|
|
|
|
|
|
ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
|
|
|
|
ACPI_SERIAL_ASSERT(ibm);
|
|
|
|
|
|
|
|
if (arg < 0 || arg > 14)
|
|
|
|
return (EINVAL);
|
|
|
|
|
|
|
|
/* Read the current volume */
|
|
|
|
status = ACPI_EC_READ(sc->ec_dev, IBM_EC_VOLUME, &val_ec, 1);
|
|
|
|
if (ACPI_FAILURE(status))
|
|
|
|
return (status);
|
|
|
|
|
|
|
|
if (sc->cmos_handle) {
|
|
|
|
val = val_ec & IBM_EC_MASK_VOL;
|
|
|
|
|
|
|
|
Args.Count = 1;
|
|
|
|
Args.Pointer = &Arg;
|
|
|
|
Arg.Type = ACPI_TYPE_INTEGER;
|
|
|
|
Arg.Integer.Value = (arg > val) ? IBM_CMOS_VOLUME_UP :
|
|
|
|
IBM_CMOS_VOLUME_DOWN;
|
|
|
|
|
|
|
|
step = (arg > val) ? 1 : -1;
|
|
|
|
for (int i = val; i != arg; i += step) {
|
|
|
|
status = AcpiEvaluateObject(sc->cmos_handle, NULL,
|
|
|
|
&Args, NULL);
|
|
|
|
if (ACPI_FAILURE(status)) {
|
|
|
|
/* Record the last value */
|
|
|
|
if (i != val) {
|
|
|
|
val_ec = i - step +
|
|
|
|
(val_ec & (~IBM_EC_MASK_VOL));
|
|
|
|
ACPI_EC_WRITE(sc->ec_dev, IBM_EC_VOLUME,
|
|
|
|
val_ec, 1);
|
|
|
|
}
|
|
|
|
return (status);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
val_ec = arg + (val_ec & (~IBM_EC_MASK_VOL));
|
|
|
|
return ACPI_EC_WRITE(sc->ec_dev, IBM_EC_VOLUME, val_ec, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
acpi_ibm_mute_set(struct acpi_ibm_softc *sc, int arg)
|
|
|
|
{
|
|
|
|
UINT64 val_ec;
|
|
|
|
ACPI_OBJECT Arg;
|
|
|
|
ACPI_OBJECT_LIST Args;
|
|
|
|
ACPI_STATUS status;
|
|
|
|
|
|
|
|
ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
|
|
|
|
ACPI_SERIAL_ASSERT(ibm);
|
|
|
|
|
|
|
|
if (arg < 0 || arg > 1)
|
|
|
|
return (EINVAL);
|
|
|
|
|
|
|
|
status = ACPI_EC_READ(sc->ec_dev, IBM_EC_VOLUME, &val_ec, 1);
|
|
|
|
if (ACPI_FAILURE(status))
|
|
|
|
return (status);
|
|
|
|
|
|
|
|
if (sc->cmos_handle) {
|
|
|
|
Args.Count = 1;
|
|
|
|
Args.Pointer = &Arg;
|
|
|
|
Arg.Type = ACPI_TYPE_INTEGER;
|
|
|
|
Arg.Integer.Value = IBM_CMOS_VOLUME_MUTE;
|
|
|
|
|
|
|
|
status = AcpiEvaluateObject(sc->cmos_handle, NULL, &Args, NULL);
|
|
|
|
if (ACPI_FAILURE(status))
|
|
|
|
return (status);
|
|
|
|
}
|
|
|
|
|
|
|
|
val_ec = (arg == 1) ? val_ec | IBM_EC_MASK_MUTE :
|
|
|
|
val_ec & (~IBM_EC_MASK_MUTE);
|
|
|
|
return ACPI_EC_WRITE(sc->ec_dev, IBM_EC_VOLUME, val_ec, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
acpi_ibm_eventhandler(struct acpi_ibm_softc *sc, int arg)
|
|
|
|
{
|
|
|
|
int val;
|
|
|
|
UINT64 val_ec;
|
|
|
|
ACPI_STATUS status;
|
|
|
|
|
|
|
|
ACPI_SERIAL_BEGIN(ibm);
|
|
|
|
switch (arg) {
|
|
|
|
case IBM_EVENT_SUSPEND_TO_RAM:
|
|
|
|
power_pm_suspend(POWER_SLEEP_STATE_SUSPEND);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IBM_EVENT_BLUETOOTH:
|
|
|
|
acpi_ibm_bluetooth_set(sc, (sc->wlan_bt_flags == 0));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IBM_EVENT_BRIGHTNESS_UP:
|
|
|
|
case IBM_EVENT_BRIGHTNESS_DOWN:
|
|
|
|
/* Read the current brightness */
|
|
|
|
status = ACPI_EC_READ(sc->ec_dev, IBM_EC_BRIGHTNESS,
|
|
|
|
&val_ec, 1);
|
|
|
|
if (ACPI_FAILURE(status))
|
|
|
|
return;
|
|
|
|
|
|
|
|
val = val_ec & IBM_EC_MASK_BRI;
|
|
|
|
val = (arg == IBM_EVENT_BRIGHTNESS_UP) ? val + 1 : val - 1;
|
|
|
|
acpi_ibm_brightness_set(sc, val);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IBM_EVENT_THINKLIGHT:
|
|
|
|
acpi_ibm_thinklight_set(sc, (sc->light_val == 0));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IBM_EVENT_VOLUME_UP:
|
|
|
|
case IBM_EVENT_VOLUME_DOWN:
|
|
|
|
/* Read the current volume */
|
|
|
|
status = ACPI_EC_READ(sc->ec_dev, IBM_EC_VOLUME, &val_ec, 1);
|
|
|
|
if (ACPI_FAILURE(status))
|
|
|
|
return;
|
|
|
|
|
|
|
|
val = val_ec & IBM_EC_MASK_VOL;
|
|
|
|
val = (arg == IBM_EVENT_VOLUME_UP) ? val + 1 : val - 1;
|
|
|
|
acpi_ibm_volume_set(sc, val);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IBM_EVENT_MUTE:
|
|
|
|
/* Read the current value */
|
|
|
|
status = ACPI_EC_READ(sc->ec_dev, IBM_EC_VOLUME, &val_ec, 1);
|
|
|
|
if (ACPI_FAILURE(status))
|
|
|
|
return;
|
|
|
|
|
|
|
|
val = ((val_ec & IBM_EC_MASK_MUTE) == IBM_EC_MASK_MUTE);
|
|
|
|
acpi_ibm_mute_set(sc, (val == 0));
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
ACPI_SERIAL_END(ibm);
|
|
|
|
}
|
|
|
|
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
static void
|
|
|
|
acpi_ibm_notify(ACPI_HANDLE h, UINT32 notify, void *context)
|
2004-12-09 13:54:29 +00:00
|
|
|
{
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
int event, arg, type;
|
|
|
|
device_t dev = context;
|
2004-12-09 13:54:29 +00:00
|
|
|
struct acpi_ibm_softc *sc = device_get_softc(dev);
|
|
|
|
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
ACPI_FUNCTION_TRACE_U32((char *)(uintptr_t)__func__, notify);
|
2004-12-09 13:54:29 +00:00
|
|
|
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
if (notify != 0x80)
|
2006-08-14 18:38:56 +00:00
|
|
|
device_printf(dev, "Unknown notify\n");
|
2004-12-09 13:54:29 +00:00
|
|
|
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
for (;;) {
|
|
|
|
acpi_GetInteger(acpi_get_handle(dev), IBM_NAME_EVENTS_GET, &event);
|
|
|
|
if (event == 0)
|
|
|
|
break;
|
2004-12-09 13:54:29 +00:00
|
|
|
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
type = (event >> 12) & 0xf;
|
|
|
|
arg = event & 0xfff;
|
|
|
|
switch (type) {
|
|
|
|
case 1:
|
|
|
|
if (!(sc->events_availmask & (1 << (arg - 1)))) {
|
2006-08-14 18:38:56 +00:00
|
|
|
device_printf(dev, "Unknown key %d\n", arg);
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
break;
|
|
|
|
}
|
2004-12-09 13:54:29 +00:00
|
|
|
|
2012-06-23 18:43:54 +00:00
|
|
|
/* Execute event handler */
|
|
|
|
if (sc->handler_events & (1 << (arg - 1)))
|
|
|
|
acpi_ibm_eventhandler(sc, (arg & 0xff));
|
|
|
|
|
Import a mostly rewritten and extended version of acpi_ibm:
- Restructured for easier extensibility and maintainability
- To be more uniform with the other ACPI extras drivers and to better reflect
their actual meaning, some sysctls were moved:
o brightness -> lcd_brightness
o keylight -> thinklight
o enable -> events
o misckey -> hotkey
o avail_mask -> availmask
o key_mask -> eventmask
- New "initialmask" sysctl, which holds the initial eventmask
- The "wlan" sysctl is now read-only, since writing to it didn't have
any effect
- The "version" sysctl was removed, since it seems to be the same (0x100)
on all models I have seen
- Support for more hotkeys by the "hotkey" sysctl
- Improved support of ACPI events. Disabled by default, since it unexpectedly
changes the behaviour of some keys. (on my T41p there are now 24 different
keypress events that get reported)
- write support for: volume, mute, lcd_brightness and thinklight
- led(4) interface for the thinklight [1]
- New sysctls "fan" and "fan_speed" to support reading of fan status and speed
- New sysctl "thermal" to support reading of up to 8 thermal sensors
Reviewed by: philip
Approved by: philip
Submitted by: simon [1]
Inspired by: The Linux ibm_acpi driver by Borislav Deianov
http://ibm-acpi.sourceforge.net/
The ThinkPad Button program (tpb) by Markus Braun
http://www.nongnu.org/tpb/
Thanks to: brueffer, dvl, njl, philip, simon, takawata and the many
testers from freebsd-acpi@ and freebsd-mobile@
2005-06-09 20:17:32 +00:00
|
|
|
/* Notify devd(8) */
|
|
|
|
acpi_UserNotify("IBM", h, (arg & 0xff));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2004-12-09 13:54:29 +00:00
|
|
|
}
|