cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

thinkpad_acpi.c (306032B)


      1// SPDX-License-Identifier: GPL-2.0-or-later
      2/*
      3 *  thinkpad_acpi.c - ThinkPad ACPI Extras
      4 *
      5 *  Copyright (C) 2004-2005 Borislav Deianov <borislav@users.sf.net>
      6 *  Copyright (C) 2006-2009 Henrique de Moraes Holschuh <hmh@hmh.eng.br>
      7 */
      8
      9#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
     10
     11#define TPACPI_VERSION "0.26"
     12#define TPACPI_SYSFS_VERSION 0x030000
     13
     14/*
     15 *  Changelog:
     16 *  2007-10-20		changelog trimmed down
     17 *
     18 *  2007-03-27  0.14	renamed to thinkpad_acpi and moved to
     19 *  			drivers/misc.
     20 *
     21 *  2006-11-22	0.13	new maintainer
     22 *  			changelog now lives in git commit history, and will
     23 *  			not be updated further in-file.
     24 *
     25 *  2005-03-17	0.11	support for 600e, 770x
     26 *			    thanks to Jamie Lentin <lentinj@dial.pipex.com>
     27 *
     28 *  2005-01-16	0.9	use MODULE_VERSION
     29 *			    thanks to Henrik Brix Andersen <brix@gentoo.org>
     30 *			fix parameter passing on module loading
     31 *			    thanks to Rusty Russell <rusty@rustcorp.com.au>
     32 *			    thanks to Jim Radford <radford@blackbean.org>
     33 *  2004-11-08	0.8	fix init error case, don't return from a macro
     34 *			    thanks to Chris Wright <chrisw@osdl.org>
     35 */
     36
     37#include <linux/kernel.h>
     38#include <linux/module.h>
     39#include <linux/init.h>
     40#include <linux/types.h>
     41#include <linux/string.h>
     42#include <linux/list.h>
     43#include <linux/mutex.h>
     44#include <linux/sched.h>
     45#include <linux/sched/signal.h>
     46#include <linux/kthread.h>
     47#include <linux/freezer.h>
     48#include <linux/delay.h>
     49#include <linux/slab.h>
     50#include <linux/nvram.h>
     51#include <linux/proc_fs.h>
     52#include <linux/seq_file.h>
     53#include <linux/sysfs.h>
     54#include <linux/backlight.h>
     55#include <linux/bitops.h>
     56#include <linux/fb.h>
     57#include <linux/platform_device.h>
     58#include <linux/hwmon.h>
     59#include <linux/hwmon-sysfs.h>
     60#include <linux/input.h>
     61#include <linux/leds.h>
     62#include <linux/rfkill.h>
     63#include <linux/dmi.h>
     64#include <linux/jiffies.h>
     65#include <linux/workqueue.h>
     66#include <linux/acpi.h>
     67#include <linux/pci.h>
     68#include <linux/power_supply.h>
     69#include <linux/platform_profile.h>
     70#include <sound/core.h>
     71#include <sound/control.h>
     72#include <sound/initval.h>
     73#include <linux/uaccess.h>
     74#include <acpi/battery.h>
     75#include <acpi/video.h>
     76#include <drm/drm_privacy_screen_driver.h>
     77#include "dual_accel_detect.h"
     78
     79/* ThinkPad CMOS commands */
     80#define TP_CMOS_VOLUME_DOWN	0
     81#define TP_CMOS_VOLUME_UP	1
     82#define TP_CMOS_VOLUME_MUTE	2
     83#define TP_CMOS_BRIGHTNESS_UP	4
     84#define TP_CMOS_BRIGHTNESS_DOWN	5
     85#define TP_CMOS_THINKLIGHT_ON	12
     86#define TP_CMOS_THINKLIGHT_OFF	13
     87
     88/* NVRAM Addresses */
     89enum tp_nvram_addr {
     90	TP_NVRAM_ADDR_HK2		= 0x57,
     91	TP_NVRAM_ADDR_THINKLIGHT	= 0x58,
     92	TP_NVRAM_ADDR_VIDEO		= 0x59,
     93	TP_NVRAM_ADDR_BRIGHTNESS	= 0x5e,
     94	TP_NVRAM_ADDR_MIXER		= 0x60,
     95};
     96
     97/* NVRAM bit masks */
     98enum {
     99	TP_NVRAM_MASK_HKT_THINKPAD	= 0x08,
    100	TP_NVRAM_MASK_HKT_ZOOM		= 0x20,
    101	TP_NVRAM_MASK_HKT_DISPLAY	= 0x40,
    102	TP_NVRAM_MASK_HKT_HIBERNATE	= 0x80,
    103	TP_NVRAM_MASK_THINKLIGHT	= 0x10,
    104	TP_NVRAM_MASK_HKT_DISPEXPND	= 0x30,
    105	TP_NVRAM_MASK_HKT_BRIGHTNESS	= 0x20,
    106	TP_NVRAM_MASK_LEVEL_BRIGHTNESS	= 0x0f,
    107	TP_NVRAM_POS_LEVEL_BRIGHTNESS	= 0,
    108	TP_NVRAM_MASK_MUTE		= 0x40,
    109	TP_NVRAM_MASK_HKT_VOLUME	= 0x80,
    110	TP_NVRAM_MASK_LEVEL_VOLUME	= 0x0f,
    111	TP_NVRAM_POS_LEVEL_VOLUME	= 0,
    112};
    113
    114/* Misc NVRAM-related */
    115enum {
    116	TP_NVRAM_LEVEL_VOLUME_MAX = 14,
    117};
    118
    119/* ACPI HIDs */
    120#define TPACPI_ACPI_IBM_HKEY_HID	"IBM0068"
    121#define TPACPI_ACPI_LENOVO_HKEY_HID	"LEN0068"
    122#define TPACPI_ACPI_LENOVO_HKEY_V2_HID	"LEN0268"
    123#define TPACPI_ACPI_EC_HID		"PNP0C09"
    124
    125/* Input IDs */
    126#define TPACPI_HKEY_INPUT_PRODUCT	0x5054 /* "TP" */
    127#define TPACPI_HKEY_INPUT_VERSION	0x4101
    128
    129/* ACPI \WGSV commands */
    130enum {
    131	TP_ACPI_WGSV_GET_STATE		= 0x01, /* Get state information */
    132	TP_ACPI_WGSV_PWR_ON_ON_RESUME	= 0x02, /* Resume WWAN powered on */
    133	TP_ACPI_WGSV_PWR_OFF_ON_RESUME	= 0x03,	/* Resume WWAN powered off */
    134	TP_ACPI_WGSV_SAVE_STATE		= 0x04, /* Save state for S4/S5 */
    135};
    136
    137/* TP_ACPI_WGSV_GET_STATE bits */
    138enum {
    139	TP_ACPI_WGSV_STATE_WWANEXIST	= 0x0001, /* WWAN hw available */
    140	TP_ACPI_WGSV_STATE_WWANPWR	= 0x0002, /* WWAN radio enabled */
    141	TP_ACPI_WGSV_STATE_WWANPWRRES	= 0x0004, /* WWAN state at resume */
    142	TP_ACPI_WGSV_STATE_WWANBIOSOFF	= 0x0008, /* WWAN disabled in BIOS */
    143	TP_ACPI_WGSV_STATE_BLTHEXIST	= 0x0001, /* BLTH hw available */
    144	TP_ACPI_WGSV_STATE_BLTHPWR	= 0x0002, /* BLTH radio enabled */
    145	TP_ACPI_WGSV_STATE_BLTHPWRRES	= 0x0004, /* BLTH state at resume */
    146	TP_ACPI_WGSV_STATE_BLTHBIOSOFF	= 0x0008, /* BLTH disabled in BIOS */
    147	TP_ACPI_WGSV_STATE_UWBEXIST	= 0x0010, /* UWB hw available */
    148	TP_ACPI_WGSV_STATE_UWBPWR	= 0x0020, /* UWB radio enabled */
    149};
    150
    151/* HKEY events */
    152enum tpacpi_hkey_event_t {
    153	/* Hotkey-related */
    154	TP_HKEY_EV_HOTKEY_BASE		= 0x1001, /* first hotkey (FN+F1) */
    155	TP_HKEY_EV_BRGHT_UP		= 0x1010, /* Brightness up */
    156	TP_HKEY_EV_BRGHT_DOWN		= 0x1011, /* Brightness down */
    157	TP_HKEY_EV_KBD_LIGHT		= 0x1012, /* Thinklight/kbd backlight */
    158	TP_HKEY_EV_VOL_UP		= 0x1015, /* Volume up or unmute */
    159	TP_HKEY_EV_VOL_DOWN		= 0x1016, /* Volume down or unmute */
    160	TP_HKEY_EV_VOL_MUTE		= 0x1017, /* Mixer output mute */
    161	TP_HKEY_EV_PRIVACYGUARD_TOGGLE	= 0x130f, /* Toggle priv.guard on/off */
    162
    163	/* Reasons for waking up from S3/S4 */
    164	TP_HKEY_EV_WKUP_S3_UNDOCK	= 0x2304, /* undock requested, S3 */
    165	TP_HKEY_EV_WKUP_S4_UNDOCK	= 0x2404, /* undock requested, S4 */
    166	TP_HKEY_EV_WKUP_S3_BAYEJ	= 0x2305, /* bay ejection req, S3 */
    167	TP_HKEY_EV_WKUP_S4_BAYEJ	= 0x2405, /* bay ejection req, S4 */
    168	TP_HKEY_EV_WKUP_S3_BATLOW	= 0x2313, /* battery empty, S3 */
    169	TP_HKEY_EV_WKUP_S4_BATLOW	= 0x2413, /* battery empty, S4 */
    170
    171	/* Auto-sleep after eject request */
    172	TP_HKEY_EV_BAYEJ_ACK		= 0x3003, /* bay ejection complete */
    173	TP_HKEY_EV_UNDOCK_ACK		= 0x4003, /* undock complete */
    174
    175	/* Misc bay events */
    176	TP_HKEY_EV_OPTDRV_EJ		= 0x3006, /* opt. drive tray ejected */
    177	TP_HKEY_EV_HOTPLUG_DOCK		= 0x4010, /* docked into hotplug dock
    178						     or port replicator */
    179	TP_HKEY_EV_HOTPLUG_UNDOCK	= 0x4011, /* undocked from hotplug
    180						     dock or port replicator */
    181	/*
    182	 * Thinkpad X1 Tablet series devices emit 0x4012 and 0x4013
    183	 * when keyboard cover is attached, detached or folded onto the back
    184	 */
    185	TP_HKEY_EV_KBD_COVER_ATTACH	= 0x4012, /* keyboard cover attached */
    186	TP_HKEY_EV_KBD_COVER_DETACH	= 0x4013, /* keyboard cover detached or folded back */
    187
    188	/* User-interface events */
    189	TP_HKEY_EV_LID_CLOSE		= 0x5001, /* laptop lid closed */
    190	TP_HKEY_EV_LID_OPEN		= 0x5002, /* laptop lid opened */
    191	TP_HKEY_EV_TABLET_TABLET	= 0x5009, /* tablet swivel up */
    192	TP_HKEY_EV_TABLET_NOTEBOOK	= 0x500a, /* tablet swivel down */
    193	TP_HKEY_EV_TABLET_CHANGED	= 0x60c0, /* X1 Yoga (2016):
    194						   * enter/leave tablet mode
    195						   */
    196	TP_HKEY_EV_PEN_INSERTED		= 0x500b, /* tablet pen inserted */
    197	TP_HKEY_EV_PEN_REMOVED		= 0x500c, /* tablet pen removed */
    198	TP_HKEY_EV_BRGHT_CHANGED	= 0x5010, /* backlight control event */
    199
    200	/* Key-related user-interface events */
    201	TP_HKEY_EV_KEY_NUMLOCK		= 0x6000, /* NumLock key pressed */
    202	TP_HKEY_EV_KEY_FN		= 0x6005, /* Fn key pressed? E420 */
    203	TP_HKEY_EV_KEY_FN_ESC           = 0x6060, /* Fn+Esc key pressed X240 */
    204
    205	/* Thermal events */
    206	TP_HKEY_EV_ALARM_BAT_HOT	= 0x6011, /* battery too hot */
    207	TP_HKEY_EV_ALARM_BAT_XHOT	= 0x6012, /* battery critically hot */
    208	TP_HKEY_EV_ALARM_SENSOR_HOT	= 0x6021, /* sensor too hot */
    209	TP_HKEY_EV_ALARM_SENSOR_XHOT	= 0x6022, /* sensor critically hot */
    210	TP_HKEY_EV_THM_TABLE_CHANGED	= 0x6030, /* windows; thermal table changed */
    211	TP_HKEY_EV_THM_CSM_COMPLETED    = 0x6032, /* windows; thermal control set
    212						   * command completed. Related to
    213						   * AML DYTC */
    214	TP_HKEY_EV_THM_TRANSFM_CHANGED  = 0x60F0, /* windows; thermal transformation
    215						   * changed. Related to AML GMTS */
    216
    217	/* AC-related events */
    218	TP_HKEY_EV_AC_CHANGED		= 0x6040, /* AC status changed */
    219
    220	/* Further user-interface events */
    221	TP_HKEY_EV_PALM_DETECTED	= 0x60b0, /* palm hoveres keyboard */
    222	TP_HKEY_EV_PALM_UNDETECTED	= 0x60b1, /* palm removed */
    223
    224	/* Misc */
    225	TP_HKEY_EV_RFKILL_CHANGED	= 0x7000, /* rfkill switch changed */
    226};
    227
    228/****************************************************************************
    229 * Main driver
    230 */
    231
    232#define TPACPI_NAME "thinkpad"
    233#define TPACPI_DESC "ThinkPad ACPI Extras"
    234#define TPACPI_FILE TPACPI_NAME "_acpi"
    235#define TPACPI_URL "http://ibm-acpi.sf.net/"
    236#define TPACPI_MAIL "ibm-acpi-devel@lists.sourceforge.net"
    237
    238#define TPACPI_PROC_DIR "ibm"
    239#define TPACPI_ACPI_EVENT_PREFIX "ibm"
    240#define TPACPI_DRVR_NAME TPACPI_FILE
    241#define TPACPI_DRVR_SHORTNAME "tpacpi"
    242#define TPACPI_HWMON_DRVR_NAME TPACPI_NAME "_hwmon"
    243
    244#define TPACPI_NVRAM_KTHREAD_NAME "ktpacpi_nvramd"
    245#define TPACPI_WORKQUEUE_NAME "ktpacpid"
    246
    247#define TPACPI_MAX_ACPI_ARGS 3
    248
    249/* Debugging printk groups */
    250#define TPACPI_DBG_ALL		0xffff
    251#define TPACPI_DBG_DISCLOSETASK	0x8000
    252#define TPACPI_DBG_INIT		0x0001
    253#define TPACPI_DBG_EXIT		0x0002
    254#define TPACPI_DBG_RFKILL	0x0004
    255#define TPACPI_DBG_HKEY		0x0008
    256#define TPACPI_DBG_FAN		0x0010
    257#define TPACPI_DBG_BRGHT	0x0020
    258#define TPACPI_DBG_MIXER	0x0040
    259
    260#define onoff(status, bit) ((status) & (1 << (bit)) ? "on" : "off")
    261#define enabled(status, bit) ((status) & (1 << (bit)) ? "enabled" : "disabled")
    262#define strlencmp(a, b) (strncmp((a), (b), strlen(b)))
    263
    264
    265/****************************************************************************
    266 * Driver-wide structs and misc. variables
    267 */
    268
    269struct ibm_struct;
    270
    271struct tp_acpi_drv_struct {
    272	const struct acpi_device_id *hid;
    273	struct acpi_driver *driver;
    274
    275	void (*notify) (struct ibm_struct *, u32);
    276	acpi_handle *handle;
    277	u32 type;
    278	struct acpi_device *device;
    279};
    280
    281struct ibm_struct {
    282	char *name;
    283
    284	int (*read) (struct seq_file *);
    285	int (*write) (char *);
    286	void (*exit) (void);
    287	void (*resume) (void);
    288	void (*suspend) (void);
    289	void (*shutdown) (void);
    290
    291	struct list_head all_drivers;
    292
    293	struct tp_acpi_drv_struct *acpi;
    294
    295	struct {
    296		u8 acpi_driver_registered:1;
    297		u8 acpi_notify_installed:1;
    298		u8 proc_created:1;
    299		u8 init_called:1;
    300		u8 experimental:1;
    301	} flags;
    302};
    303
    304struct ibm_init_struct {
    305	char param[32];
    306
    307	int (*init) (struct ibm_init_struct *);
    308	umode_t base_procfs_mode;
    309	struct ibm_struct *data;
    310};
    311
    312/* DMI Quirks */
    313struct quirk_entry {
    314	bool btusb_bug;
    315	u32 s2idle_bug_mmio;
    316};
    317
    318static struct quirk_entry quirk_btusb_bug = {
    319	.btusb_bug = true,
    320};
    321
    322static struct quirk_entry quirk_s2idle_bug = {
    323	.s2idle_bug_mmio = 0xfed80380,
    324};
    325
    326static struct {
    327	u32 bluetooth:1;
    328	u32 hotkey:1;
    329	u32 hotkey_mask:1;
    330	u32 hotkey_wlsw:1;
    331	enum {
    332		TP_HOTKEY_TABLET_NONE = 0,
    333		TP_HOTKEY_TABLET_USES_MHKG,
    334		TP_HOTKEY_TABLET_USES_GMMS,
    335	} hotkey_tablet;
    336	u32 kbdlight:1;
    337	u32 light:1;
    338	u32 light_status:1;
    339	u32 bright_acpimode:1;
    340	u32 bright_unkfw:1;
    341	u32 wan:1;
    342	u32 uwb:1;
    343	u32 fan_ctrl_status_undef:1;
    344	u32 second_fan:1;
    345	u32 second_fan_ctl:1;
    346	u32 beep_needs_two_args:1;
    347	u32 mixer_no_level_control:1;
    348	u32 battery_force_primary:1;
    349	u32 input_device_registered:1;
    350	u32 platform_drv_registered:1;
    351	u32 sensors_pdrv_registered:1;
    352	u32 hotkey_poll_active:1;
    353	u32 has_adaptive_kbd:1;
    354	u32 kbd_lang:1;
    355	struct quirk_entry *quirks;
    356} tp_features;
    357
    358static struct {
    359	u16 hotkey_mask_ff:1;
    360	u16 volume_ctrl_forbidden:1;
    361} tp_warned;
    362
    363struct thinkpad_id_data {
    364	unsigned int vendor;	/* ThinkPad vendor:
    365				 * PCI_VENDOR_ID_IBM/PCI_VENDOR_ID_LENOVO */
    366
    367	char *bios_version_str;	/* Something like 1ZET51WW (1.03z) */
    368	char *ec_version_str;	/* Something like 1ZHT51WW-1.04a */
    369
    370	u32 bios_model;		/* 1Y = 0x3159, 0 = unknown */
    371	u32 ec_model;
    372	u16 bios_release;	/* 1ZETK1WW = 0x4b31, 0 = unknown */
    373	u16 ec_release;
    374
    375	char *model_str;	/* ThinkPad T43 */
    376	char *nummodel_str;	/* 9384A9C for a 9384-A9C model */
    377};
    378static struct thinkpad_id_data thinkpad_id;
    379
    380static enum {
    381	TPACPI_LIFE_INIT = 0,
    382	TPACPI_LIFE_RUNNING,
    383	TPACPI_LIFE_EXITING,
    384} tpacpi_lifecycle;
    385
    386static int experimental;
    387static u32 dbg_level;
    388
    389static struct workqueue_struct *tpacpi_wq;
    390
    391enum led_status_t {
    392	TPACPI_LED_OFF = 0,
    393	TPACPI_LED_ON,
    394	TPACPI_LED_BLINK,
    395};
    396
    397/* tpacpi LED class */
    398struct tpacpi_led_classdev {
    399	struct led_classdev led_classdev;
    400	int led;
    401};
    402
    403/* brightness level capabilities */
    404static unsigned int bright_maxlvl;	/* 0 = unknown */
    405
    406#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
    407static int dbg_wlswemul;
    408static bool tpacpi_wlsw_emulstate;
    409static int dbg_bluetoothemul;
    410static bool tpacpi_bluetooth_emulstate;
    411static int dbg_wwanemul;
    412static bool tpacpi_wwan_emulstate;
    413static int dbg_uwbemul;
    414static bool tpacpi_uwb_emulstate;
    415#endif
    416
    417
    418/*************************************************************************
    419 *  Debugging helpers
    420 */
    421
    422#define dbg_printk(a_dbg_level, format, arg...)				\
    423do {									\
    424	if (dbg_level & (a_dbg_level))					\
    425		printk(KERN_DEBUG pr_fmt("%s: " format),		\
    426		       __func__, ##arg);				\
    427} while (0)
    428
    429#ifdef CONFIG_THINKPAD_ACPI_DEBUG
    430#define vdbg_printk dbg_printk
    431static const char *str_supported(int is_supported);
    432#else
    433static inline const char *str_supported(int is_supported) { return ""; }
    434#define vdbg_printk(a_dbg_level, format, arg...)	\
    435	do { if (0) no_printk(format, ##arg); } while (0)
    436#endif
    437
    438static void tpacpi_log_usertask(const char * const what)
    439{
    440	printk(KERN_DEBUG pr_fmt("%s: access by process with PID %d\n"),
    441	       what, task_tgid_vnr(current));
    442}
    443
    444#define tpacpi_disclose_usertask(what, format, arg...)			\
    445do {									\
    446	if (unlikely((dbg_level & TPACPI_DBG_DISCLOSETASK) &&		\
    447		     (tpacpi_lifecycle == TPACPI_LIFE_RUNNING))) {	\
    448		printk(KERN_DEBUG pr_fmt("%s: PID %d: " format),	\
    449		       what, task_tgid_vnr(current), ## arg);		\
    450	}								\
    451} while (0)
    452
    453/*
    454 * Quirk handling helpers
    455 *
    456 * ThinkPad IDs and versions seen in the field so far are
    457 * two or three characters from the set [0-9A-Z], i.e. base 36.
    458 *
    459 * We use values well outside that range as specials.
    460 */
    461
    462#define TPACPI_MATCH_ANY		0xffffffffU
    463#define TPACPI_MATCH_ANY_VERSION	0xffffU
    464#define TPACPI_MATCH_UNKNOWN		0U
    465
    466/* TPID('1', 'Y') == 0x3159 */
    467#define TPID(__c1, __c2)	(((__c1) << 8) | (__c2))
    468#define TPID3(__c1, __c2, __c3)	(((__c1) << 16) | ((__c2) << 8) | (__c3))
    469#define TPVER TPID
    470
    471#define TPACPI_Q_IBM(__id1, __id2, __quirk)	\
    472	{ .vendor = PCI_VENDOR_ID_IBM,		\
    473	  .bios = TPID(__id1, __id2),		\
    474	  .ec = TPACPI_MATCH_ANY,		\
    475	  .quirks = (__quirk) }
    476
    477#define TPACPI_Q_LNV(__id1, __id2, __quirk)	\
    478	{ .vendor = PCI_VENDOR_ID_LENOVO,	\
    479	  .bios = TPID(__id1, __id2),		\
    480	  .ec = TPACPI_MATCH_ANY,		\
    481	  .quirks = (__quirk) }
    482
    483#define TPACPI_Q_LNV3(__id1, __id2, __id3, __quirk) \
    484	{ .vendor = PCI_VENDOR_ID_LENOVO,	\
    485	  .bios = TPID3(__id1, __id2, __id3),	\
    486	  .ec = TPACPI_MATCH_ANY,		\
    487	  .quirks = (__quirk) }
    488
    489#define TPACPI_QEC_IBM(__id1, __id2, __quirk)	\
    490	{ .vendor = PCI_VENDOR_ID_IBM,		\
    491	  .bios = TPACPI_MATCH_ANY,		\
    492	  .ec = TPID(__id1, __id2),		\
    493	  .quirks = (__quirk) }
    494
    495#define TPACPI_QEC_LNV(__id1, __id2, __quirk)	\
    496	{ .vendor = PCI_VENDOR_ID_LENOVO,	\
    497	  .bios = TPACPI_MATCH_ANY,		\
    498	  .ec = TPID(__id1, __id2),		\
    499	  .quirks = (__quirk) }
    500
    501struct tpacpi_quirk {
    502	unsigned int vendor;
    503	u32 bios;
    504	u32 ec;
    505	unsigned long quirks;
    506};
    507
    508/**
    509 * tpacpi_check_quirks() - search BIOS/EC version on a list
    510 * @qlist:		array of &struct tpacpi_quirk
    511 * @qlist_size:		number of elements in @qlist
    512 *
    513 * Iterates over a quirks list until one is found that matches the
    514 * ThinkPad's vendor, BIOS and EC model.
    515 *
    516 * Returns 0 if nothing matches, otherwise returns the quirks field of
    517 * the matching &struct tpacpi_quirk entry.
    518 *
    519 * The match criteria is: vendor, ec and bios much match.
    520 */
    521static unsigned long __init tpacpi_check_quirks(
    522			const struct tpacpi_quirk *qlist,
    523			unsigned int qlist_size)
    524{
    525	while (qlist_size) {
    526		if ((qlist->vendor == thinkpad_id.vendor ||
    527				qlist->vendor == TPACPI_MATCH_ANY) &&
    528		    (qlist->bios == thinkpad_id.bios_model ||
    529				qlist->bios == TPACPI_MATCH_ANY) &&
    530		    (qlist->ec == thinkpad_id.ec_model ||
    531				qlist->ec == TPACPI_MATCH_ANY))
    532			return qlist->quirks;
    533
    534		qlist_size--;
    535		qlist++;
    536	}
    537	return 0;
    538}
    539
    540static inline bool __pure __init tpacpi_is_lenovo(void)
    541{
    542	return thinkpad_id.vendor == PCI_VENDOR_ID_LENOVO;
    543}
    544
    545static inline bool __pure __init tpacpi_is_ibm(void)
    546{
    547	return thinkpad_id.vendor == PCI_VENDOR_ID_IBM;
    548}
    549
    550/****************************************************************************
    551 ****************************************************************************
    552 *
    553 * ACPI Helpers and device model
    554 *
    555 ****************************************************************************
    556 ****************************************************************************/
    557
    558/*************************************************************************
    559 * ACPI basic handles
    560 */
    561
    562static acpi_handle root_handle;
    563static acpi_handle ec_handle;
    564
    565#define TPACPI_HANDLE(object, parent, paths...)			\
    566	static acpi_handle  object##_handle;			\
    567	static const acpi_handle * const object##_parent __initconst =	\
    568						&parent##_handle; \
    569	static char *object##_paths[] __initdata = { paths }
    570
    571TPACPI_HANDLE(ecrd, ec, "ECRD");	/* 570 */
    572TPACPI_HANDLE(ecwr, ec, "ECWR");	/* 570 */
    573
    574TPACPI_HANDLE(cmos, root, "\\UCMS",	/* R50, R50e, R50p, R51, */
    575					/* T4x, X31, X40 */
    576	   "\\CMOS",		/* A3x, G4x, R32, T23, T30, X22-24, X30 */
    577	   "\\CMS",		/* R40, R40e */
    578	   );			/* all others */
    579
    580TPACPI_HANDLE(hkey, ec, "\\_SB.HKEY",	/* 600e/x, 770e, 770x */
    581	   "^HKEY",		/* R30, R31 */
    582	   "HKEY",		/* all others */
    583	   );			/* 570 */
    584
    585/*************************************************************************
    586 * ACPI helpers
    587 */
    588
    589static int acpi_evalf(acpi_handle handle,
    590		      int *res, char *method, char *fmt, ...)
    591{
    592	char *fmt0 = fmt;
    593	struct acpi_object_list params;
    594	union acpi_object in_objs[TPACPI_MAX_ACPI_ARGS];
    595	struct acpi_buffer result, *resultp;
    596	union acpi_object out_obj;
    597	acpi_status status;
    598	va_list ap;
    599	char res_type;
    600	int success;
    601	int quiet;
    602
    603	if (!*fmt) {
    604		pr_err("acpi_evalf() called with empty format\n");
    605		return 0;
    606	}
    607
    608	if (*fmt == 'q') {
    609		quiet = 1;
    610		fmt++;
    611	} else
    612		quiet = 0;
    613
    614	res_type = *(fmt++);
    615
    616	params.count = 0;
    617	params.pointer = &in_objs[0];
    618
    619	va_start(ap, fmt);
    620	while (*fmt) {
    621		char c = *(fmt++);
    622		switch (c) {
    623		case 'd':	/* int */
    624			in_objs[params.count].integer.value = va_arg(ap, int);
    625			in_objs[params.count++].type = ACPI_TYPE_INTEGER;
    626			break;
    627			/* add more types as needed */
    628		default:
    629			pr_err("acpi_evalf() called with invalid format character '%c'\n",
    630			       c);
    631			va_end(ap);
    632			return 0;
    633		}
    634	}
    635	va_end(ap);
    636
    637	if (res_type != 'v') {
    638		result.length = sizeof(out_obj);
    639		result.pointer = &out_obj;
    640		resultp = &result;
    641	} else
    642		resultp = NULL;
    643
    644	status = acpi_evaluate_object(handle, method, &params, resultp);
    645
    646	switch (res_type) {
    647	case 'd':		/* int */
    648		success = (status == AE_OK &&
    649			   out_obj.type == ACPI_TYPE_INTEGER);
    650		if (success && res)
    651			*res = out_obj.integer.value;
    652		break;
    653	case 'v':		/* void */
    654		success = status == AE_OK;
    655		break;
    656		/* add more types as needed */
    657	default:
    658		pr_err("acpi_evalf() called with invalid format character '%c'\n",
    659		       res_type);
    660		return 0;
    661	}
    662
    663	if (!success && !quiet)
    664		pr_err("acpi_evalf(%s, %s, ...) failed: %s\n",
    665		       method, fmt0, acpi_format_exception(status));
    666
    667	return success;
    668}
    669
    670static int acpi_ec_read(int i, u8 *p)
    671{
    672	int v;
    673
    674	if (ecrd_handle) {
    675		if (!acpi_evalf(ecrd_handle, &v, NULL, "dd", i))
    676			return 0;
    677		*p = v;
    678	} else {
    679		if (ec_read(i, p) < 0)
    680			return 0;
    681	}
    682
    683	return 1;
    684}
    685
    686static int acpi_ec_write(int i, u8 v)
    687{
    688	if (ecwr_handle) {
    689		if (!acpi_evalf(ecwr_handle, NULL, NULL, "vdd", i, v))
    690			return 0;
    691	} else {
    692		if (ec_write(i, v) < 0)
    693			return 0;
    694	}
    695
    696	return 1;
    697}
    698
    699static int issue_thinkpad_cmos_command(int cmos_cmd)
    700{
    701	if (!cmos_handle)
    702		return -ENXIO;
    703
    704	if (!acpi_evalf(cmos_handle, NULL, NULL, "vd", cmos_cmd))
    705		return -EIO;
    706
    707	return 0;
    708}
    709
    710/*************************************************************************
    711 * ACPI device model
    712 */
    713
    714#define TPACPI_ACPIHANDLE_INIT(object) \
    715	drv_acpi_handle_init(#object, &object##_handle, *object##_parent, \
    716		object##_paths, ARRAY_SIZE(object##_paths))
    717
    718static void __init drv_acpi_handle_init(const char *name,
    719			   acpi_handle *handle, const acpi_handle parent,
    720			   char **paths, const int num_paths)
    721{
    722	int i;
    723	acpi_status status;
    724
    725	vdbg_printk(TPACPI_DBG_INIT, "trying to locate ACPI handle for %s\n",
    726		name);
    727
    728	for (i = 0; i < num_paths; i++) {
    729		status = acpi_get_handle(parent, paths[i], handle);
    730		if (ACPI_SUCCESS(status)) {
    731			dbg_printk(TPACPI_DBG_INIT,
    732				   "Found ACPI handle %s for %s\n",
    733				   paths[i], name);
    734			return;
    735		}
    736	}
    737
    738	vdbg_printk(TPACPI_DBG_INIT, "ACPI handle for %s not found\n",
    739		    name);
    740	*handle = NULL;
    741}
    742
    743static acpi_status __init tpacpi_acpi_handle_locate_callback(acpi_handle handle,
    744			u32 level, void *context, void **return_value)
    745{
    746	if (!strcmp(context, "video")) {
    747		struct acpi_device *dev = acpi_fetch_acpi_dev(handle);
    748
    749		if (!dev || strcmp(ACPI_VIDEO_HID, acpi_device_hid(dev)))
    750			return AE_OK;
    751	}
    752
    753	*(acpi_handle *)return_value = handle;
    754
    755	return AE_CTRL_TERMINATE;
    756}
    757
    758static void __init tpacpi_acpi_handle_locate(const char *name,
    759		const char *hid,
    760		acpi_handle *handle)
    761{
    762	acpi_status status;
    763	acpi_handle device_found;
    764
    765	BUG_ON(!name || !handle);
    766	vdbg_printk(TPACPI_DBG_INIT,
    767			"trying to locate ACPI handle for %s, using HID %s\n",
    768			name, hid ? hid : "NULL");
    769
    770	memset(&device_found, 0, sizeof(device_found));
    771	status = acpi_get_devices(hid, tpacpi_acpi_handle_locate_callback,
    772				  (void *)name, &device_found);
    773
    774	*handle = NULL;
    775
    776	if (ACPI_SUCCESS(status)) {
    777		*handle = device_found;
    778		dbg_printk(TPACPI_DBG_INIT,
    779			   "Found ACPI handle for %s\n", name);
    780	} else {
    781		vdbg_printk(TPACPI_DBG_INIT,
    782			    "Could not locate an ACPI handle for %s: %s\n",
    783			    name, acpi_format_exception(status));
    784	}
    785}
    786
    787static void dispatch_acpi_notify(acpi_handle handle, u32 event, void *data)
    788{
    789	struct ibm_struct *ibm = data;
    790
    791	if (tpacpi_lifecycle != TPACPI_LIFE_RUNNING)
    792		return;
    793
    794	if (!ibm || !ibm->acpi || !ibm->acpi->notify)
    795		return;
    796
    797	ibm->acpi->notify(ibm, event);
    798}
    799
    800static int __init setup_acpi_notify(struct ibm_struct *ibm)
    801{
    802	acpi_status status;
    803
    804	BUG_ON(!ibm->acpi);
    805
    806	if (!*ibm->acpi->handle)
    807		return 0;
    808
    809	vdbg_printk(TPACPI_DBG_INIT,
    810		"setting up ACPI notify for %s\n", ibm->name);
    811
    812	ibm->acpi->device = acpi_fetch_acpi_dev(*ibm->acpi->handle);
    813	if (!ibm->acpi->device) {
    814		pr_err("acpi_fetch_acpi_dev(%s) failed\n", ibm->name);
    815		return -ENODEV;
    816	}
    817
    818	ibm->acpi->device->driver_data = ibm;
    819	sprintf(acpi_device_class(ibm->acpi->device), "%s/%s",
    820		TPACPI_ACPI_EVENT_PREFIX,
    821		ibm->name);
    822
    823	status = acpi_install_notify_handler(*ibm->acpi->handle,
    824			ibm->acpi->type, dispatch_acpi_notify, ibm);
    825	if (ACPI_FAILURE(status)) {
    826		if (status == AE_ALREADY_EXISTS) {
    827			pr_notice("another device driver is already handling %s events\n",
    828				  ibm->name);
    829		} else {
    830			pr_err("acpi_install_notify_handler(%s) failed: %s\n",
    831			       ibm->name, acpi_format_exception(status));
    832		}
    833		return -ENODEV;
    834	}
    835	ibm->flags.acpi_notify_installed = 1;
    836	return 0;
    837}
    838
    839static int __init tpacpi_device_add(struct acpi_device *device)
    840{
    841	return 0;
    842}
    843
    844static int __init register_tpacpi_subdriver(struct ibm_struct *ibm)
    845{
    846	int rc;
    847
    848	dbg_printk(TPACPI_DBG_INIT,
    849		"registering %s as an ACPI driver\n", ibm->name);
    850
    851	BUG_ON(!ibm->acpi);
    852
    853	ibm->acpi->driver = kzalloc(sizeof(struct acpi_driver), GFP_KERNEL);
    854	if (!ibm->acpi->driver) {
    855		pr_err("failed to allocate memory for ibm->acpi->driver\n");
    856		return -ENOMEM;
    857	}
    858
    859	sprintf(ibm->acpi->driver->name, "%s_%s", TPACPI_NAME, ibm->name);
    860	ibm->acpi->driver->ids = ibm->acpi->hid;
    861
    862	ibm->acpi->driver->ops.add = &tpacpi_device_add;
    863
    864	rc = acpi_bus_register_driver(ibm->acpi->driver);
    865	if (rc < 0) {
    866		pr_err("acpi_bus_register_driver(%s) failed: %d\n",
    867		       ibm->name, rc);
    868		kfree(ibm->acpi->driver);
    869		ibm->acpi->driver = NULL;
    870	} else if (!rc)
    871		ibm->flags.acpi_driver_registered = 1;
    872
    873	return rc;
    874}
    875
    876
    877/****************************************************************************
    878 ****************************************************************************
    879 *
    880 * Procfs Helpers
    881 *
    882 ****************************************************************************
    883 ****************************************************************************/
    884
    885static int dispatch_proc_show(struct seq_file *m, void *v)
    886{
    887	struct ibm_struct *ibm = m->private;
    888
    889	if (!ibm || !ibm->read)
    890		return -EINVAL;
    891	return ibm->read(m);
    892}
    893
    894static int dispatch_proc_open(struct inode *inode, struct file *file)
    895{
    896	return single_open(file, dispatch_proc_show, pde_data(inode));
    897}
    898
    899static ssize_t dispatch_proc_write(struct file *file,
    900			const char __user *userbuf,
    901			size_t count, loff_t *pos)
    902{
    903	struct ibm_struct *ibm = pde_data(file_inode(file));
    904	char *kernbuf;
    905	int ret;
    906
    907	if (!ibm || !ibm->write)
    908		return -EINVAL;
    909	if (count > PAGE_SIZE - 1)
    910		return -EINVAL;
    911
    912	kernbuf = kmalloc(count + 1, GFP_KERNEL);
    913	if (!kernbuf)
    914		return -ENOMEM;
    915
    916	if (copy_from_user(kernbuf, userbuf, count)) {
    917		kfree(kernbuf);
    918		return -EFAULT;
    919	}
    920
    921	kernbuf[count] = 0;
    922	ret = ibm->write(kernbuf);
    923	if (ret == 0)
    924		ret = count;
    925
    926	kfree(kernbuf);
    927
    928	return ret;
    929}
    930
    931static const struct proc_ops dispatch_proc_ops = {
    932	.proc_open	= dispatch_proc_open,
    933	.proc_read	= seq_read,
    934	.proc_lseek	= seq_lseek,
    935	.proc_release	= single_release,
    936	.proc_write	= dispatch_proc_write,
    937};
    938
    939/****************************************************************************
    940 ****************************************************************************
    941 *
    942 * Device model: input, hwmon and platform
    943 *
    944 ****************************************************************************
    945 ****************************************************************************/
    946
    947static struct platform_device *tpacpi_pdev;
    948static struct platform_device *tpacpi_sensors_pdev;
    949static struct device *tpacpi_hwmon;
    950static struct input_dev *tpacpi_inputdev;
    951static struct mutex tpacpi_inputdev_send_mutex;
    952static LIST_HEAD(tpacpi_all_drivers);
    953
    954#ifdef CONFIG_PM_SLEEP
    955static int tpacpi_suspend_handler(struct device *dev)
    956{
    957	struct ibm_struct *ibm, *itmp;
    958
    959	list_for_each_entry_safe(ibm, itmp,
    960				 &tpacpi_all_drivers,
    961				 all_drivers) {
    962		if (ibm->suspend)
    963			(ibm->suspend)();
    964	}
    965
    966	return 0;
    967}
    968
    969static int tpacpi_resume_handler(struct device *dev)
    970{
    971	struct ibm_struct *ibm, *itmp;
    972
    973	list_for_each_entry_safe(ibm, itmp,
    974				 &tpacpi_all_drivers,
    975				 all_drivers) {
    976		if (ibm->resume)
    977			(ibm->resume)();
    978	}
    979
    980	return 0;
    981}
    982#endif
    983
    984static SIMPLE_DEV_PM_OPS(tpacpi_pm,
    985			 tpacpi_suspend_handler, tpacpi_resume_handler);
    986
    987static void tpacpi_shutdown_handler(struct platform_device *pdev)
    988{
    989	struct ibm_struct *ibm, *itmp;
    990
    991	list_for_each_entry_safe(ibm, itmp,
    992				 &tpacpi_all_drivers,
    993				 all_drivers) {
    994		if (ibm->shutdown)
    995			(ibm->shutdown)();
    996	}
    997}
    998
    999/*************************************************************************
   1000 * sysfs support helpers
   1001 */
   1002
   1003static int parse_strtoul(const char *buf,
   1004		unsigned long max, unsigned long *value)
   1005{
   1006	char *endp;
   1007
   1008	*value = simple_strtoul(skip_spaces(buf), &endp, 0);
   1009	endp = skip_spaces(endp);
   1010	if (*endp || *value > max)
   1011		return -EINVAL;
   1012
   1013	return 0;
   1014}
   1015
   1016static void tpacpi_disable_brightness_delay(void)
   1017{
   1018	if (acpi_evalf(hkey_handle, NULL, "PWMS", "qvd", 0))
   1019		pr_notice("ACPI backlight control delay disabled\n");
   1020}
   1021
   1022static void printk_deprecated_attribute(const char * const what,
   1023					const char * const details)
   1024{
   1025	tpacpi_log_usertask("deprecated sysfs attribute");
   1026	pr_warn("WARNING: sysfs attribute %s is deprecated and will be removed. %s\n",
   1027		what, details);
   1028}
   1029
   1030/*************************************************************************
   1031 * rfkill and radio control support helpers
   1032 */
   1033
   1034/*
   1035 * ThinkPad-ACPI firmware handling model:
   1036 *
   1037 * WLSW (master wireless switch) is event-driven, and is common to all
   1038 * firmware-controlled radios.  It cannot be controlled, just monitored,
   1039 * as expected.  It overrides all radio state in firmware
   1040 *
   1041 * The kernel, a masked-off hotkey, and WLSW can change the radio state
   1042 * (TODO: verify how WLSW interacts with the returned radio state).
   1043 *
   1044 * The only time there are shadow radio state changes, is when
   1045 * masked-off hotkeys are used.
   1046 */
   1047
   1048/*
   1049 * Internal driver API for radio state:
   1050 *
   1051 * int: < 0 = error, otherwise enum tpacpi_rfkill_state
   1052 * bool: true means radio blocked (off)
   1053 */
   1054enum tpacpi_rfkill_state {
   1055	TPACPI_RFK_RADIO_OFF = 0,
   1056	TPACPI_RFK_RADIO_ON
   1057};
   1058
   1059/* rfkill switches */
   1060enum tpacpi_rfk_id {
   1061	TPACPI_RFK_BLUETOOTH_SW_ID = 0,
   1062	TPACPI_RFK_WWAN_SW_ID,
   1063	TPACPI_RFK_UWB_SW_ID,
   1064	TPACPI_RFK_SW_MAX
   1065};
   1066
   1067static const char *tpacpi_rfkill_names[] = {
   1068	[TPACPI_RFK_BLUETOOTH_SW_ID] = "bluetooth",
   1069	[TPACPI_RFK_WWAN_SW_ID] = "wwan",
   1070	[TPACPI_RFK_UWB_SW_ID] = "uwb",
   1071	[TPACPI_RFK_SW_MAX] = NULL
   1072};
   1073
   1074/* ThinkPad-ACPI rfkill subdriver */
   1075struct tpacpi_rfk {
   1076	struct rfkill *rfkill;
   1077	enum tpacpi_rfk_id id;
   1078	const struct tpacpi_rfk_ops *ops;
   1079};
   1080
   1081struct tpacpi_rfk_ops {
   1082	/* firmware interface */
   1083	int (*get_status)(void);
   1084	int (*set_status)(const enum tpacpi_rfkill_state);
   1085};
   1086
   1087static struct tpacpi_rfk *tpacpi_rfkill_switches[TPACPI_RFK_SW_MAX];
   1088
   1089/* Query FW and update rfkill sw state for a given rfkill switch */
   1090static int tpacpi_rfk_update_swstate(const struct tpacpi_rfk *tp_rfk)
   1091{
   1092	int status;
   1093
   1094	if (!tp_rfk)
   1095		return -ENODEV;
   1096
   1097	status = (tp_rfk->ops->get_status)();
   1098	if (status < 0)
   1099		return status;
   1100
   1101	rfkill_set_sw_state(tp_rfk->rfkill,
   1102			    (status == TPACPI_RFK_RADIO_OFF));
   1103
   1104	return status;
   1105}
   1106
   1107/*
   1108 * Sync the HW-blocking state of all rfkill switches,
   1109 * do notice it causes the rfkill core to schedule uevents
   1110 */
   1111static void tpacpi_rfk_update_hwblock_state(bool blocked)
   1112{
   1113	unsigned int i;
   1114	struct tpacpi_rfk *tp_rfk;
   1115
   1116	for (i = 0; i < TPACPI_RFK_SW_MAX; i++) {
   1117		tp_rfk = tpacpi_rfkill_switches[i];
   1118		if (tp_rfk) {
   1119			if (rfkill_set_hw_state(tp_rfk->rfkill,
   1120						blocked)) {
   1121				/* ignore -- we track sw block */
   1122			}
   1123		}
   1124	}
   1125}
   1126
   1127/* Call to get the WLSW state from the firmware */
   1128static int hotkey_get_wlsw(void);
   1129
   1130/* Call to query WLSW state and update all rfkill switches */
   1131static bool tpacpi_rfk_check_hwblock_state(void)
   1132{
   1133	int res = hotkey_get_wlsw();
   1134	int hw_blocked;
   1135
   1136	/* When unknown or unsupported, we have to assume it is unblocked */
   1137	if (res < 0)
   1138		return false;
   1139
   1140	hw_blocked = (res == TPACPI_RFK_RADIO_OFF);
   1141	tpacpi_rfk_update_hwblock_state(hw_blocked);
   1142
   1143	return hw_blocked;
   1144}
   1145
   1146static int tpacpi_rfk_hook_set_block(void *data, bool blocked)
   1147{
   1148	struct tpacpi_rfk *tp_rfk = data;
   1149	int res;
   1150
   1151	dbg_printk(TPACPI_DBG_RFKILL,
   1152		   "request to change radio state to %s\n",
   1153		   blocked ? "blocked" : "unblocked");
   1154
   1155	/* try to set radio state */
   1156	res = (tp_rfk->ops->set_status)(blocked ?
   1157				TPACPI_RFK_RADIO_OFF : TPACPI_RFK_RADIO_ON);
   1158
   1159	/* and update the rfkill core with whatever the FW really did */
   1160	tpacpi_rfk_update_swstate(tp_rfk);
   1161
   1162	return (res < 0) ? res : 0;
   1163}
   1164
   1165static const struct rfkill_ops tpacpi_rfk_rfkill_ops = {
   1166	.set_block = tpacpi_rfk_hook_set_block,
   1167};
   1168
   1169static int __init tpacpi_new_rfkill(const enum tpacpi_rfk_id id,
   1170			const struct tpacpi_rfk_ops *tp_rfkops,
   1171			const enum rfkill_type rfktype,
   1172			const char *name,
   1173			const bool set_default)
   1174{
   1175	struct tpacpi_rfk *atp_rfk;
   1176	int res;
   1177	bool sw_state = false;
   1178	bool hw_state;
   1179	int sw_status;
   1180
   1181	BUG_ON(id >= TPACPI_RFK_SW_MAX || tpacpi_rfkill_switches[id]);
   1182
   1183	atp_rfk = kzalloc(sizeof(struct tpacpi_rfk), GFP_KERNEL);
   1184	if (atp_rfk)
   1185		atp_rfk->rfkill = rfkill_alloc(name,
   1186						&tpacpi_pdev->dev,
   1187						rfktype,
   1188						&tpacpi_rfk_rfkill_ops,
   1189						atp_rfk);
   1190	if (!atp_rfk || !atp_rfk->rfkill) {
   1191		pr_err("failed to allocate memory for rfkill class\n");
   1192		kfree(atp_rfk);
   1193		return -ENOMEM;
   1194	}
   1195
   1196	atp_rfk->id = id;
   1197	atp_rfk->ops = tp_rfkops;
   1198
   1199	sw_status = (tp_rfkops->get_status)();
   1200	if (sw_status < 0) {
   1201		pr_err("failed to read initial state for %s, error %d\n",
   1202		       name, sw_status);
   1203	} else {
   1204		sw_state = (sw_status == TPACPI_RFK_RADIO_OFF);
   1205		if (set_default) {
   1206			/* try to keep the initial state, since we ask the
   1207			 * firmware to preserve it across S5 in NVRAM */
   1208			rfkill_init_sw_state(atp_rfk->rfkill, sw_state);
   1209		}
   1210	}
   1211	hw_state = tpacpi_rfk_check_hwblock_state();
   1212	rfkill_set_hw_state(atp_rfk->rfkill, hw_state);
   1213
   1214	res = rfkill_register(atp_rfk->rfkill);
   1215	if (res < 0) {
   1216		pr_err("failed to register %s rfkill switch: %d\n", name, res);
   1217		rfkill_destroy(atp_rfk->rfkill);
   1218		kfree(atp_rfk);
   1219		return res;
   1220	}
   1221
   1222	tpacpi_rfkill_switches[id] = atp_rfk;
   1223
   1224	pr_info("rfkill switch %s: radio is %sblocked\n",
   1225		name, (sw_state || hw_state) ? "" : "un");
   1226	return 0;
   1227}
   1228
   1229static void tpacpi_destroy_rfkill(const enum tpacpi_rfk_id id)
   1230{
   1231	struct tpacpi_rfk *tp_rfk;
   1232
   1233	BUG_ON(id >= TPACPI_RFK_SW_MAX);
   1234
   1235	tp_rfk = tpacpi_rfkill_switches[id];
   1236	if (tp_rfk) {
   1237		rfkill_unregister(tp_rfk->rfkill);
   1238		rfkill_destroy(tp_rfk->rfkill);
   1239		tpacpi_rfkill_switches[id] = NULL;
   1240		kfree(tp_rfk);
   1241	}
   1242}
   1243
   1244static void printk_deprecated_rfkill_attribute(const char * const what)
   1245{
   1246	printk_deprecated_attribute(what,
   1247			"Please switch to generic rfkill before year 2010");
   1248}
   1249
   1250/* sysfs <radio> enable ------------------------------------------------ */
   1251static ssize_t tpacpi_rfk_sysfs_enable_show(const enum tpacpi_rfk_id id,
   1252					    struct device_attribute *attr,
   1253					    char *buf)
   1254{
   1255	int status;
   1256
   1257	printk_deprecated_rfkill_attribute(attr->attr.name);
   1258
   1259	/* This is in the ABI... */
   1260	if (tpacpi_rfk_check_hwblock_state()) {
   1261		status = TPACPI_RFK_RADIO_OFF;
   1262	} else {
   1263		status = tpacpi_rfk_update_swstate(tpacpi_rfkill_switches[id]);
   1264		if (status < 0)
   1265			return status;
   1266	}
   1267
   1268	return sysfs_emit(buf, "%d\n",
   1269			(status == TPACPI_RFK_RADIO_ON) ? 1 : 0);
   1270}
   1271
   1272static ssize_t tpacpi_rfk_sysfs_enable_store(const enum tpacpi_rfk_id id,
   1273			    struct device_attribute *attr,
   1274			    const char *buf, size_t count)
   1275{
   1276	unsigned long t;
   1277	int res;
   1278
   1279	printk_deprecated_rfkill_attribute(attr->attr.name);
   1280
   1281	if (parse_strtoul(buf, 1, &t))
   1282		return -EINVAL;
   1283
   1284	tpacpi_disclose_usertask(attr->attr.name, "set to %ld\n", t);
   1285
   1286	/* This is in the ABI... */
   1287	if (tpacpi_rfk_check_hwblock_state() && !!t)
   1288		return -EPERM;
   1289
   1290	res = tpacpi_rfkill_switches[id]->ops->set_status((!!t) ?
   1291				TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF);
   1292	tpacpi_rfk_update_swstate(tpacpi_rfkill_switches[id]);
   1293
   1294	return (res < 0) ? res : count;
   1295}
   1296
   1297/* procfs -------------------------------------------------------------- */
   1298static int tpacpi_rfk_procfs_read(const enum tpacpi_rfk_id id, struct seq_file *m)
   1299{
   1300	if (id >= TPACPI_RFK_SW_MAX)
   1301		seq_printf(m, "status:\t\tnot supported\n");
   1302	else {
   1303		int status;
   1304
   1305		/* This is in the ABI... */
   1306		if (tpacpi_rfk_check_hwblock_state()) {
   1307			status = TPACPI_RFK_RADIO_OFF;
   1308		} else {
   1309			status = tpacpi_rfk_update_swstate(
   1310						tpacpi_rfkill_switches[id]);
   1311			if (status < 0)
   1312				return status;
   1313		}
   1314
   1315		seq_printf(m, "status:\t\t%s\n",
   1316				(status == TPACPI_RFK_RADIO_ON) ?
   1317					"enabled" : "disabled");
   1318		seq_printf(m, "commands:\tenable, disable\n");
   1319	}
   1320
   1321	return 0;
   1322}
   1323
   1324static int tpacpi_rfk_procfs_write(const enum tpacpi_rfk_id id, char *buf)
   1325{
   1326	char *cmd;
   1327	int status = -1;
   1328	int res = 0;
   1329
   1330	if (id >= TPACPI_RFK_SW_MAX)
   1331		return -ENODEV;
   1332
   1333	while ((cmd = strsep(&buf, ","))) {
   1334		if (strlencmp(cmd, "enable") == 0)
   1335			status = TPACPI_RFK_RADIO_ON;
   1336		else if (strlencmp(cmd, "disable") == 0)
   1337			status = TPACPI_RFK_RADIO_OFF;
   1338		else
   1339			return -EINVAL;
   1340	}
   1341
   1342	if (status != -1) {
   1343		tpacpi_disclose_usertask("procfs", "attempt to %s %s\n",
   1344				(status == TPACPI_RFK_RADIO_ON) ?
   1345						"enable" : "disable",
   1346				tpacpi_rfkill_names[id]);
   1347		res = (tpacpi_rfkill_switches[id]->ops->set_status)(status);
   1348		tpacpi_rfk_update_swstate(tpacpi_rfkill_switches[id]);
   1349	}
   1350
   1351	return res;
   1352}
   1353
   1354/*************************************************************************
   1355 * thinkpad-acpi driver attributes
   1356 */
   1357
   1358/* interface_version --------------------------------------------------- */
   1359static ssize_t interface_version_show(struct device_driver *drv, char *buf)
   1360{
   1361	return sysfs_emit(buf, "0x%08x\n", TPACPI_SYSFS_VERSION);
   1362}
   1363static DRIVER_ATTR_RO(interface_version);
   1364
   1365/* debug_level --------------------------------------------------------- */
   1366static ssize_t debug_level_show(struct device_driver *drv, char *buf)
   1367{
   1368	return sysfs_emit(buf, "0x%04x\n", dbg_level);
   1369}
   1370
   1371static ssize_t debug_level_store(struct device_driver *drv, const char *buf,
   1372				 size_t count)
   1373{
   1374	unsigned long t;
   1375
   1376	if (parse_strtoul(buf, 0xffff, &t))
   1377		return -EINVAL;
   1378
   1379	dbg_level = t;
   1380
   1381	return count;
   1382}
   1383static DRIVER_ATTR_RW(debug_level);
   1384
   1385/* version ------------------------------------------------------------- */
   1386static ssize_t version_show(struct device_driver *drv, char *buf)
   1387{
   1388	return sysfs_emit(buf, "%s v%s\n",
   1389			TPACPI_DESC, TPACPI_VERSION);
   1390}
   1391static DRIVER_ATTR_RO(version);
   1392
   1393/* --------------------------------------------------------------------- */
   1394
   1395#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
   1396
   1397/* wlsw_emulstate ------------------------------------------------------ */
   1398static ssize_t wlsw_emulstate_show(struct device_driver *drv, char *buf)
   1399{
   1400	return sysfs_emit(buf, "%d\n", !!tpacpi_wlsw_emulstate);
   1401}
   1402
   1403static ssize_t wlsw_emulstate_store(struct device_driver *drv, const char *buf,
   1404				    size_t count)
   1405{
   1406	unsigned long t;
   1407
   1408	if (parse_strtoul(buf, 1, &t))
   1409		return -EINVAL;
   1410
   1411	if (tpacpi_wlsw_emulstate != !!t) {
   1412		tpacpi_wlsw_emulstate = !!t;
   1413		tpacpi_rfk_update_hwblock_state(!t);	/* negative logic */
   1414	}
   1415
   1416	return count;
   1417}
   1418static DRIVER_ATTR_RW(wlsw_emulstate);
   1419
   1420/* bluetooth_emulstate ------------------------------------------------- */
   1421static ssize_t bluetooth_emulstate_show(struct device_driver *drv, char *buf)
   1422{
   1423	return sysfs_emit(buf, "%d\n", !!tpacpi_bluetooth_emulstate);
   1424}
   1425
   1426static ssize_t bluetooth_emulstate_store(struct device_driver *drv,
   1427					 const char *buf, size_t count)
   1428{
   1429	unsigned long t;
   1430
   1431	if (parse_strtoul(buf, 1, &t))
   1432		return -EINVAL;
   1433
   1434	tpacpi_bluetooth_emulstate = !!t;
   1435
   1436	return count;
   1437}
   1438static DRIVER_ATTR_RW(bluetooth_emulstate);
   1439
   1440/* wwan_emulstate ------------------------------------------------- */
   1441static ssize_t wwan_emulstate_show(struct device_driver *drv, char *buf)
   1442{
   1443	return sysfs_emit(buf, "%d\n", !!tpacpi_wwan_emulstate);
   1444}
   1445
   1446static ssize_t wwan_emulstate_store(struct device_driver *drv, const char *buf,
   1447				    size_t count)
   1448{
   1449	unsigned long t;
   1450
   1451	if (parse_strtoul(buf, 1, &t))
   1452		return -EINVAL;
   1453
   1454	tpacpi_wwan_emulstate = !!t;
   1455
   1456	return count;
   1457}
   1458static DRIVER_ATTR_RW(wwan_emulstate);
   1459
   1460/* uwb_emulstate ------------------------------------------------- */
   1461static ssize_t uwb_emulstate_show(struct device_driver *drv, char *buf)
   1462{
   1463	return sysfs_emit(buf, "%d\n", !!tpacpi_uwb_emulstate);
   1464}
   1465
   1466static ssize_t uwb_emulstate_store(struct device_driver *drv, const char *buf,
   1467				   size_t count)
   1468{
   1469	unsigned long t;
   1470
   1471	if (parse_strtoul(buf, 1, &t))
   1472		return -EINVAL;
   1473
   1474	tpacpi_uwb_emulstate = !!t;
   1475
   1476	return count;
   1477}
   1478static DRIVER_ATTR_RW(uwb_emulstate);
   1479#endif
   1480
   1481/*************************************************************************
   1482 * Firmware Data
   1483 */
   1484
   1485/*
   1486 * Table of recommended minimum BIOS versions
   1487 *
   1488 * Reasons for listing:
   1489 *    1. Stable BIOS, listed because the unknown amount of
   1490 *       bugs and bad ACPI behaviour on older versions
   1491 *
   1492 *    2. BIOS or EC fw with known bugs that trigger on Linux
   1493 *
   1494 *    3. BIOS with known reduced functionality in older versions
   1495 *
   1496 *  We recommend the latest BIOS and EC version.
   1497 *  We only support the latest BIOS and EC fw version as a rule.
   1498 *
   1499 *  Sources: IBM ThinkPad Public Web Documents (update changelogs),
   1500 *  Information from users in ThinkWiki
   1501 *
   1502 *  WARNING: we use this table also to detect that the machine is
   1503 *  a ThinkPad in some cases, so don't remove entries lightly.
   1504 */
   1505
   1506#define TPV_Q(__v, __id1, __id2, __bv1, __bv2)		\
   1507	{ .vendor	= (__v),			\
   1508	  .bios		= TPID(__id1, __id2),		\
   1509	  .ec		= TPACPI_MATCH_ANY,		\
   1510	  .quirks	= TPACPI_MATCH_ANY_VERSION << 16 \
   1511			  | TPVER(__bv1, __bv2) }
   1512
   1513#define TPV_Q_X(__v, __bid1, __bid2, __bv1, __bv2,	\
   1514		__eid, __ev1, __ev2)			\
   1515	{ .vendor	= (__v),			\
   1516	  .bios		= TPID(__bid1, __bid2),		\
   1517	  .ec		= __eid,			\
   1518	  .quirks	= TPVER(__ev1, __ev2) << 16	\
   1519			  | TPVER(__bv1, __bv2) }
   1520
   1521#define TPV_QI0(__id1, __id2, __bv1, __bv2) \
   1522	TPV_Q(PCI_VENDOR_ID_IBM, __id1, __id2, __bv1, __bv2)
   1523
   1524/* Outdated IBM BIOSes often lack the EC id string */
   1525#define TPV_QI1(__id1, __id2, __bv1, __bv2, __ev1, __ev2) \
   1526	TPV_Q_X(PCI_VENDOR_ID_IBM, __id1, __id2, 	\
   1527		__bv1, __bv2, TPID(__id1, __id2),	\
   1528		__ev1, __ev2),				\
   1529	TPV_Q_X(PCI_VENDOR_ID_IBM, __id1, __id2, 	\
   1530		__bv1, __bv2, TPACPI_MATCH_UNKNOWN,	\
   1531		__ev1, __ev2)
   1532
   1533/* Outdated IBM BIOSes often lack the EC id string */
   1534#define TPV_QI2(__bid1, __bid2, __bv1, __bv2,		\
   1535		__eid1, __eid2, __ev1, __ev2) 		\
   1536	TPV_Q_X(PCI_VENDOR_ID_IBM, __bid1, __bid2, 	\
   1537		__bv1, __bv2, TPID(__eid1, __eid2),	\
   1538		__ev1, __ev2),				\
   1539	TPV_Q_X(PCI_VENDOR_ID_IBM, __bid1, __bid2, 	\
   1540		__bv1, __bv2, TPACPI_MATCH_UNKNOWN,	\
   1541		__ev1, __ev2)
   1542
   1543#define TPV_QL0(__id1, __id2, __bv1, __bv2) \
   1544	TPV_Q(PCI_VENDOR_ID_LENOVO, __id1, __id2, __bv1, __bv2)
   1545
   1546#define TPV_QL1(__id1, __id2, __bv1, __bv2, __ev1, __ev2) \
   1547	TPV_Q_X(PCI_VENDOR_ID_LENOVO, __id1, __id2, 	\
   1548		__bv1, __bv2, TPID(__id1, __id2),	\
   1549		__ev1, __ev2)
   1550
   1551#define TPV_QL2(__bid1, __bid2, __bv1, __bv2,		\
   1552		__eid1, __eid2, __ev1, __ev2) 		\
   1553	TPV_Q_X(PCI_VENDOR_ID_LENOVO, __bid1, __bid2, 	\
   1554		__bv1, __bv2, TPID(__eid1, __eid2),	\
   1555		__ev1, __ev2)
   1556
   1557static const struct tpacpi_quirk tpacpi_bios_version_qtable[] __initconst = {
   1558	/*  Numeric models ------------------ */
   1559	/*      FW MODEL   BIOS VERS	      */
   1560	TPV_QI0('I', 'M',  '6', '5'),		 /* 570 */
   1561	TPV_QI0('I', 'U',  '2', '6'),		 /* 570E */
   1562	TPV_QI0('I', 'B',  '5', '4'),		 /* 600 */
   1563	TPV_QI0('I', 'H',  '4', '7'),		 /* 600E */
   1564	TPV_QI0('I', 'N',  '3', '6'),		 /* 600E */
   1565	TPV_QI0('I', 'T',  '5', '5'),		 /* 600X */
   1566	TPV_QI0('I', 'D',  '4', '8'),		 /* 770, 770E, 770ED */
   1567	TPV_QI0('I', 'I',  '4', '2'),		 /* 770X */
   1568	TPV_QI0('I', 'O',  '2', '3'),		 /* 770Z */
   1569
   1570	/* A-series ------------------------- */
   1571	/*      FW MODEL   BIOS VERS  EC VERS */
   1572	TPV_QI0('I', 'W',  '5', '9'),		 /* A20m */
   1573	TPV_QI0('I', 'V',  '6', '9'),		 /* A20p */
   1574	TPV_QI0('1', '0',  '2', '6'),		 /* A21e, A22e */
   1575	TPV_QI0('K', 'U',  '3', '6'),		 /* A21e */
   1576	TPV_QI0('K', 'X',  '3', '6'),		 /* A21m, A22m */
   1577	TPV_QI0('K', 'Y',  '3', '8'),		 /* A21p, A22p */
   1578	TPV_QI0('1', 'B',  '1', '7'),		 /* A22e */
   1579	TPV_QI0('1', '3',  '2', '0'),		 /* A22m */
   1580	TPV_QI0('1', 'E',  '7', '3'),		 /* A30/p (0) */
   1581	TPV_QI1('1', 'G',  '4', '1',  '1', '7'), /* A31/p (0) */
   1582	TPV_QI1('1', 'N',  '1', '6',  '0', '7'), /* A31/p (0) */
   1583
   1584	/* G-series ------------------------- */
   1585	/*      FW MODEL   BIOS VERS	      */
   1586	TPV_QI0('1', 'T',  'A', '6'),		 /* G40 */
   1587	TPV_QI0('1', 'X',  '5', '7'),		 /* G41 */
   1588
   1589	/* R-series, T-series --------------- */
   1590	/*      FW MODEL   BIOS VERS  EC VERS */
   1591	TPV_QI0('1', 'C',  'F', '0'),		 /* R30 */
   1592	TPV_QI0('1', 'F',  'F', '1'),		 /* R31 */
   1593	TPV_QI0('1', 'M',  '9', '7'),		 /* R32 */
   1594	TPV_QI0('1', 'O',  '6', '1'),		 /* R40 */
   1595	TPV_QI0('1', 'P',  '6', '5'),		 /* R40 */
   1596	TPV_QI0('1', 'S',  '7', '0'),		 /* R40e */
   1597	TPV_QI1('1', 'R',  'D', 'R',  '7', '1'), /* R50/p, R51,
   1598						    T40/p, T41/p, T42/p (1) */
   1599	TPV_QI1('1', 'V',  '7', '1',  '2', '8'), /* R50e, R51 (1) */
   1600	TPV_QI1('7', '8',  '7', '1',  '0', '6'), /* R51e (1) */
   1601	TPV_QI1('7', '6',  '6', '9',  '1', '6'), /* R52 (1) */
   1602	TPV_QI1('7', '0',  '6', '9',  '2', '8'), /* R52, T43 (1) */
   1603
   1604	TPV_QI0('I', 'Y',  '6', '1'),		 /* T20 */
   1605	TPV_QI0('K', 'Z',  '3', '4'),		 /* T21 */
   1606	TPV_QI0('1', '6',  '3', '2'),		 /* T22 */
   1607	TPV_QI1('1', 'A',  '6', '4',  '2', '3'), /* T23 (0) */
   1608	TPV_QI1('1', 'I',  '7', '1',  '2', '0'), /* T30 (0) */
   1609	TPV_QI1('1', 'Y',  '6', '5',  '2', '9'), /* T43/p (1) */
   1610
   1611	TPV_QL1('7', '9',  'E', '3',  '5', '0'), /* T60/p */
   1612	TPV_QL1('7', 'C',  'D', '2',  '2', '2'), /* R60, R60i */
   1613	TPV_QL1('7', 'E',  'D', '0',  '1', '5'), /* R60e, R60i */
   1614
   1615	/*      BIOS FW    BIOS VERS  EC FW     EC VERS */
   1616	TPV_QI2('1', 'W',  '9', '0',  '1', 'V', '2', '8'), /* R50e (1) */
   1617	TPV_QL2('7', 'I',  '3', '4',  '7', '9', '5', '0'), /* T60/p wide */
   1618
   1619	/* X-series ------------------------- */
   1620	/*      FW MODEL   BIOS VERS  EC VERS */
   1621	TPV_QI0('I', 'Z',  '9', 'D'),		 /* X20, X21 */
   1622	TPV_QI0('1', 'D',  '7', '0'),		 /* X22, X23, X24 */
   1623	TPV_QI1('1', 'K',  '4', '8',  '1', '8'), /* X30 (0) */
   1624	TPV_QI1('1', 'Q',  '9', '7',  '2', '3'), /* X31, X32 (0) */
   1625	TPV_QI1('1', 'U',  'D', '3',  'B', '2'), /* X40 (0) */
   1626	TPV_QI1('7', '4',  '6', '4',  '2', '7'), /* X41 (0) */
   1627	TPV_QI1('7', '5',  '6', '0',  '2', '0'), /* X41t (0) */
   1628
   1629	TPV_QL1('7', 'B',  'D', '7',  '4', '0'), /* X60/s */
   1630	TPV_QL1('7', 'J',  '3', '0',  '1', '3'), /* X60t */
   1631
   1632	/* (0) - older versions lack DMI EC fw string and functionality */
   1633	/* (1) - older versions known to lack functionality */
   1634};
   1635
   1636#undef TPV_QL1
   1637#undef TPV_QL0
   1638#undef TPV_QI2
   1639#undef TPV_QI1
   1640#undef TPV_QI0
   1641#undef TPV_Q_X
   1642#undef TPV_Q
   1643
   1644static void __init tpacpi_check_outdated_fw(void)
   1645{
   1646	unsigned long fwvers;
   1647	u16 ec_version, bios_version;
   1648
   1649	fwvers = tpacpi_check_quirks(tpacpi_bios_version_qtable,
   1650				ARRAY_SIZE(tpacpi_bios_version_qtable));
   1651
   1652	if (!fwvers)
   1653		return;
   1654
   1655	bios_version = fwvers & 0xffffU;
   1656	ec_version = (fwvers >> 16) & 0xffffU;
   1657
   1658	/* note that unknown versions are set to 0x0000 and we use that */
   1659	if ((bios_version > thinkpad_id.bios_release) ||
   1660	    (ec_version > thinkpad_id.ec_release &&
   1661				ec_version != TPACPI_MATCH_ANY_VERSION)) {
   1662		/*
   1663		 * The changelogs would let us track down the exact
   1664		 * reason, but it is just too much of a pain to track
   1665		 * it.  We only list BIOSes that are either really
   1666		 * broken, or really stable to begin with, so it is
   1667		 * best if the user upgrades the firmware anyway.
   1668		 */
   1669		pr_warn("WARNING: Outdated ThinkPad BIOS/EC firmware\n");
   1670		pr_warn("WARNING: This firmware may be missing critical bug fixes and/or important features\n");
   1671	}
   1672}
   1673
   1674static bool __init tpacpi_is_fw_known(void)
   1675{
   1676	return tpacpi_check_quirks(tpacpi_bios_version_qtable,
   1677			ARRAY_SIZE(tpacpi_bios_version_qtable)) != 0;
   1678}
   1679
   1680/****************************************************************************
   1681 ****************************************************************************
   1682 *
   1683 * Subdrivers
   1684 *
   1685 ****************************************************************************
   1686 ****************************************************************************/
   1687
   1688/*************************************************************************
   1689 * thinkpad-acpi metadata subdriver
   1690 */
   1691
   1692static int thinkpad_acpi_driver_read(struct seq_file *m)
   1693{
   1694	seq_printf(m, "driver:\t\t%s\n", TPACPI_DESC);
   1695	seq_printf(m, "version:\t%s\n", TPACPI_VERSION);
   1696	return 0;
   1697}
   1698
   1699static struct ibm_struct thinkpad_acpi_driver_data = {
   1700	.name = "driver",
   1701	.read = thinkpad_acpi_driver_read,
   1702};
   1703
   1704/*************************************************************************
   1705 * Hotkey subdriver
   1706 */
   1707
   1708/*
   1709 * ThinkPad firmware event model
   1710 *
   1711 * The ThinkPad firmware has two main event interfaces: normal ACPI
   1712 * notifications (which follow the ACPI standard), and a private event
   1713 * interface.
   1714 *
   1715 * The private event interface also issues events for the hotkeys.  As
   1716 * the driver gained features, the event handling code ended up being
   1717 * built around the hotkey subdriver.  This will need to be refactored
   1718 * to a more formal event API eventually.
   1719 *
   1720 * Some "hotkeys" are actually supposed to be used as event reports,
   1721 * such as "brightness has changed", "volume has changed", depending on
   1722 * the ThinkPad model and how the firmware is operating.
   1723 *
   1724 * Unlike other classes, hotkey-class events have mask/unmask control on
   1725 * non-ancient firmware.  However, how it behaves changes a lot with the
   1726 * firmware model and version.
   1727 */
   1728
   1729enum {	/* hot key scan codes (derived from ACPI DSDT) */
   1730	TP_ACPI_HOTKEYSCAN_FNF1		= 0,
   1731	TP_ACPI_HOTKEYSCAN_FNF2,
   1732	TP_ACPI_HOTKEYSCAN_FNF3,
   1733	TP_ACPI_HOTKEYSCAN_FNF4,
   1734	TP_ACPI_HOTKEYSCAN_FNF5,
   1735	TP_ACPI_HOTKEYSCAN_FNF6,
   1736	TP_ACPI_HOTKEYSCAN_FNF7,
   1737	TP_ACPI_HOTKEYSCAN_FNF8,
   1738	TP_ACPI_HOTKEYSCAN_FNF9,
   1739	TP_ACPI_HOTKEYSCAN_FNF10,
   1740	TP_ACPI_HOTKEYSCAN_FNF11,
   1741	TP_ACPI_HOTKEYSCAN_FNF12,
   1742	TP_ACPI_HOTKEYSCAN_FNBACKSPACE,
   1743	TP_ACPI_HOTKEYSCAN_FNINSERT,
   1744	TP_ACPI_HOTKEYSCAN_FNDELETE,
   1745	TP_ACPI_HOTKEYSCAN_FNHOME,
   1746	TP_ACPI_HOTKEYSCAN_FNEND,
   1747	TP_ACPI_HOTKEYSCAN_FNPAGEUP,
   1748	TP_ACPI_HOTKEYSCAN_FNPAGEDOWN,
   1749	TP_ACPI_HOTKEYSCAN_FNSPACE,
   1750	TP_ACPI_HOTKEYSCAN_VOLUMEUP,
   1751	TP_ACPI_HOTKEYSCAN_VOLUMEDOWN,
   1752	TP_ACPI_HOTKEYSCAN_MUTE,
   1753	TP_ACPI_HOTKEYSCAN_THINKPAD,
   1754	TP_ACPI_HOTKEYSCAN_UNK1,
   1755	TP_ACPI_HOTKEYSCAN_UNK2,
   1756	TP_ACPI_HOTKEYSCAN_UNK3,
   1757	TP_ACPI_HOTKEYSCAN_UNK4,
   1758	TP_ACPI_HOTKEYSCAN_UNK5,
   1759	TP_ACPI_HOTKEYSCAN_UNK6,
   1760	TP_ACPI_HOTKEYSCAN_UNK7,
   1761	TP_ACPI_HOTKEYSCAN_UNK8,
   1762
   1763	/* Adaptive keyboard keycodes */
   1764	TP_ACPI_HOTKEYSCAN_ADAPTIVE_START,
   1765	TP_ACPI_HOTKEYSCAN_MUTE2        = TP_ACPI_HOTKEYSCAN_ADAPTIVE_START,
   1766	TP_ACPI_HOTKEYSCAN_BRIGHTNESS_ZERO,
   1767	TP_ACPI_HOTKEYSCAN_CLIPPING_TOOL,
   1768	TP_ACPI_HOTKEYSCAN_CLOUD,
   1769	TP_ACPI_HOTKEYSCAN_UNK9,
   1770	TP_ACPI_HOTKEYSCAN_VOICE,
   1771	TP_ACPI_HOTKEYSCAN_UNK10,
   1772	TP_ACPI_HOTKEYSCAN_GESTURES,
   1773	TP_ACPI_HOTKEYSCAN_UNK11,
   1774	TP_ACPI_HOTKEYSCAN_UNK12,
   1775	TP_ACPI_HOTKEYSCAN_UNK13,
   1776	TP_ACPI_HOTKEYSCAN_CONFIG,
   1777	TP_ACPI_HOTKEYSCAN_NEW_TAB,
   1778	TP_ACPI_HOTKEYSCAN_RELOAD,
   1779	TP_ACPI_HOTKEYSCAN_BACK,
   1780	TP_ACPI_HOTKEYSCAN_MIC_DOWN,
   1781	TP_ACPI_HOTKEYSCAN_MIC_UP,
   1782	TP_ACPI_HOTKEYSCAN_MIC_CANCELLATION,
   1783	TP_ACPI_HOTKEYSCAN_CAMERA_MODE,
   1784	TP_ACPI_HOTKEYSCAN_ROTATE_DISPLAY,
   1785
   1786	/* Lenovo extended keymap, starting at 0x1300 */
   1787	TP_ACPI_HOTKEYSCAN_EXTENDED_START,
   1788	/* first new observed key (star, favorites) is 0x1311 */
   1789	TP_ACPI_HOTKEYSCAN_STAR = 69,
   1790	TP_ACPI_HOTKEYSCAN_CLIPPING_TOOL2,
   1791	TP_ACPI_HOTKEYSCAN_CALCULATOR,
   1792	TP_ACPI_HOTKEYSCAN_BLUETOOTH,
   1793	TP_ACPI_HOTKEYSCAN_KEYBOARD,
   1794	TP_ACPI_HOTKEYSCAN_FN_RIGHT_SHIFT, /* Used by "Lenovo Quick Clean" */
   1795	TP_ACPI_HOTKEYSCAN_NOTIFICATION_CENTER,
   1796	TP_ACPI_HOTKEYSCAN_PICKUP_PHONE,
   1797	TP_ACPI_HOTKEYSCAN_HANGUP_PHONE,
   1798
   1799	/* Hotkey keymap size */
   1800	TPACPI_HOTKEY_MAP_LEN
   1801};
   1802
   1803enum {	/* Keys/events available through NVRAM polling */
   1804	TPACPI_HKEY_NVRAM_KNOWN_MASK = 0x00fb88c0U,
   1805	TPACPI_HKEY_NVRAM_GOOD_MASK  = 0x00fb8000U,
   1806};
   1807
   1808enum {	/* Positions of some of the keys in hotkey masks */
   1809	TP_ACPI_HKEY_DISPSWTCH_MASK	= 1 << TP_ACPI_HOTKEYSCAN_FNF7,
   1810	TP_ACPI_HKEY_DISPXPAND_MASK	= 1 << TP_ACPI_HOTKEYSCAN_FNF8,
   1811	TP_ACPI_HKEY_HIBERNATE_MASK	= 1 << TP_ACPI_HOTKEYSCAN_FNF12,
   1812	TP_ACPI_HKEY_BRGHTUP_MASK	= 1 << TP_ACPI_HOTKEYSCAN_FNHOME,
   1813	TP_ACPI_HKEY_BRGHTDWN_MASK	= 1 << TP_ACPI_HOTKEYSCAN_FNEND,
   1814	TP_ACPI_HKEY_KBD_LIGHT_MASK	= 1 << TP_ACPI_HOTKEYSCAN_FNPAGEUP,
   1815	TP_ACPI_HKEY_ZOOM_MASK		= 1 << TP_ACPI_HOTKEYSCAN_FNSPACE,
   1816	TP_ACPI_HKEY_VOLUP_MASK		= 1 << TP_ACPI_HOTKEYSCAN_VOLUMEUP,
   1817	TP_ACPI_HKEY_VOLDWN_MASK	= 1 << TP_ACPI_HOTKEYSCAN_VOLUMEDOWN,
   1818	TP_ACPI_HKEY_MUTE_MASK		= 1 << TP_ACPI_HOTKEYSCAN_MUTE,
   1819	TP_ACPI_HKEY_THINKPAD_MASK	= 1 << TP_ACPI_HOTKEYSCAN_THINKPAD,
   1820};
   1821
   1822enum {	/* NVRAM to ACPI HKEY group map */
   1823	TP_NVRAM_HKEY_GROUP_HK2		= TP_ACPI_HKEY_THINKPAD_MASK |
   1824					  TP_ACPI_HKEY_ZOOM_MASK |
   1825					  TP_ACPI_HKEY_DISPSWTCH_MASK |
   1826					  TP_ACPI_HKEY_HIBERNATE_MASK,
   1827	TP_NVRAM_HKEY_GROUP_BRIGHTNESS	= TP_ACPI_HKEY_BRGHTUP_MASK |
   1828					  TP_ACPI_HKEY_BRGHTDWN_MASK,
   1829	TP_NVRAM_HKEY_GROUP_VOLUME	= TP_ACPI_HKEY_VOLUP_MASK |
   1830					  TP_ACPI_HKEY_VOLDWN_MASK |
   1831					  TP_ACPI_HKEY_MUTE_MASK,
   1832};
   1833
   1834#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
   1835struct tp_nvram_state {
   1836       u16 thinkpad_toggle:1;
   1837       u16 zoom_toggle:1;
   1838       u16 display_toggle:1;
   1839       u16 thinklight_toggle:1;
   1840       u16 hibernate_toggle:1;
   1841       u16 displayexp_toggle:1;
   1842       u16 display_state:1;
   1843       u16 brightness_toggle:1;
   1844       u16 volume_toggle:1;
   1845       u16 mute:1;
   1846
   1847       u8 brightness_level;
   1848       u8 volume_level;
   1849};
   1850
   1851/* kthread for the hotkey poller */
   1852static struct task_struct *tpacpi_hotkey_task;
   1853
   1854/*
   1855 * Acquire mutex to write poller control variables as an
   1856 * atomic block.
   1857 *
   1858 * Increment hotkey_config_change when changing them if you
   1859 * want the kthread to forget old state.
   1860 *
   1861 * See HOTKEY_CONFIG_CRITICAL_START/HOTKEY_CONFIG_CRITICAL_END
   1862 */
   1863static struct mutex hotkey_thread_data_mutex;
   1864static unsigned int hotkey_config_change;
   1865
   1866/*
   1867 * hotkey poller control variables
   1868 *
   1869 * Must be atomic or readers will also need to acquire mutex
   1870 *
   1871 * HOTKEY_CONFIG_CRITICAL_START/HOTKEY_CONFIG_CRITICAL_END
   1872 * should be used only when the changes need to be taken as
   1873 * a block, OR when one needs to force the kthread to forget
   1874 * old state.
   1875 */
   1876static u32 hotkey_source_mask;		/* bit mask 0=ACPI,1=NVRAM */
   1877static unsigned int hotkey_poll_freq = 10; /* Hz */
   1878
   1879#define HOTKEY_CONFIG_CRITICAL_START \
   1880	do { \
   1881		mutex_lock(&hotkey_thread_data_mutex); \
   1882		hotkey_config_change++; \
   1883	} while (0);
   1884#define HOTKEY_CONFIG_CRITICAL_END \
   1885	mutex_unlock(&hotkey_thread_data_mutex);
   1886
   1887#else /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
   1888
   1889#define hotkey_source_mask 0U
   1890#define HOTKEY_CONFIG_CRITICAL_START
   1891#define HOTKEY_CONFIG_CRITICAL_END
   1892
   1893#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
   1894
   1895static struct mutex hotkey_mutex;
   1896
   1897static enum {	/* Reasons for waking up */
   1898	TP_ACPI_WAKEUP_NONE = 0,	/* None or unknown */
   1899	TP_ACPI_WAKEUP_BAYEJ,		/* Bay ejection request */
   1900	TP_ACPI_WAKEUP_UNDOCK,		/* Undock request */
   1901} hotkey_wakeup_reason;
   1902
   1903static int hotkey_autosleep_ack;
   1904
   1905static u32 hotkey_orig_mask;		/* events the BIOS had enabled */
   1906static u32 hotkey_all_mask;		/* all events supported in fw */
   1907static u32 hotkey_adaptive_all_mask;	/* all adaptive events supported in fw */
   1908static u32 hotkey_reserved_mask;	/* events better left disabled */
   1909static u32 hotkey_driver_mask;		/* events needed by the driver */
   1910static u32 hotkey_user_mask;		/* events visible to userspace */
   1911static u32 hotkey_acpi_mask;		/* events enabled in firmware */
   1912
   1913static u16 *hotkey_keycode_map;
   1914
   1915static void tpacpi_driver_event(const unsigned int hkey_event);
   1916static void hotkey_driver_event(const unsigned int scancode);
   1917static void hotkey_poll_setup(const bool may_warn);
   1918
   1919/* HKEY.MHKG() return bits */
   1920#define TP_HOTKEY_TABLET_MASK (1 << 3)
   1921enum {
   1922	TP_ACPI_MULTI_MODE_INVALID	= 0,
   1923	TP_ACPI_MULTI_MODE_UNKNOWN	= 1 << 0,
   1924	TP_ACPI_MULTI_MODE_LAPTOP	= 1 << 1,
   1925	TP_ACPI_MULTI_MODE_TABLET	= 1 << 2,
   1926	TP_ACPI_MULTI_MODE_FLAT		= 1 << 3,
   1927	TP_ACPI_MULTI_MODE_STAND	= 1 << 4,
   1928	TP_ACPI_MULTI_MODE_TENT		= 1 << 5,
   1929	TP_ACPI_MULTI_MODE_STAND_TENT	= 1 << 6,
   1930};
   1931
   1932enum {
   1933	/* The following modes are considered tablet mode for the purpose of
   1934	 * reporting the status to userspace. i.e. in all these modes it makes
   1935	 * sense to disable the laptop input devices such as touchpad and
   1936	 * keyboard.
   1937	 */
   1938	TP_ACPI_MULTI_MODE_TABLET_LIKE	= TP_ACPI_MULTI_MODE_TABLET |
   1939					  TP_ACPI_MULTI_MODE_STAND |
   1940					  TP_ACPI_MULTI_MODE_TENT |
   1941					  TP_ACPI_MULTI_MODE_STAND_TENT,
   1942};
   1943
   1944static int hotkey_get_wlsw(void)
   1945{
   1946	int status;
   1947
   1948	if (!tp_features.hotkey_wlsw)
   1949		return -ENODEV;
   1950
   1951#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
   1952	if (dbg_wlswemul)
   1953		return (tpacpi_wlsw_emulstate) ?
   1954				TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
   1955#endif
   1956
   1957	if (!acpi_evalf(hkey_handle, &status, "WLSW", "d"))
   1958		return -EIO;
   1959
   1960	return (status) ? TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
   1961}
   1962
   1963static int hotkey_gmms_get_tablet_mode(int s, int *has_tablet_mode)
   1964{
   1965	int type = (s >> 16) & 0xffff;
   1966	int value = s & 0xffff;
   1967	int mode = TP_ACPI_MULTI_MODE_INVALID;
   1968	int valid_modes = 0;
   1969
   1970	if (has_tablet_mode)
   1971		*has_tablet_mode = 0;
   1972
   1973	switch (type) {
   1974	case 1:
   1975		valid_modes = TP_ACPI_MULTI_MODE_LAPTOP |
   1976			      TP_ACPI_MULTI_MODE_TABLET |
   1977			      TP_ACPI_MULTI_MODE_STAND_TENT;
   1978		break;
   1979	case 2:
   1980		valid_modes = TP_ACPI_MULTI_MODE_LAPTOP |
   1981			      TP_ACPI_MULTI_MODE_FLAT |
   1982			      TP_ACPI_MULTI_MODE_TABLET |
   1983			      TP_ACPI_MULTI_MODE_STAND |
   1984			      TP_ACPI_MULTI_MODE_TENT;
   1985		break;
   1986	case 3:
   1987		valid_modes = TP_ACPI_MULTI_MODE_LAPTOP |
   1988			      TP_ACPI_MULTI_MODE_FLAT;
   1989		break;
   1990	case 4:
   1991	case 5:
   1992		/* In mode 4, FLAT is not specified as a valid mode. However,
   1993		 * it can be seen at least on the X1 Yoga 2nd Generation.
   1994		 */
   1995		valid_modes = TP_ACPI_MULTI_MODE_LAPTOP |
   1996			      TP_ACPI_MULTI_MODE_FLAT |
   1997			      TP_ACPI_MULTI_MODE_TABLET |
   1998			      TP_ACPI_MULTI_MODE_STAND |
   1999			      TP_ACPI_MULTI_MODE_TENT;
   2000		break;
   2001	default:
   2002		pr_err("Unknown multi mode status type %d with value 0x%04X, please report this to %s\n",
   2003		       type, value, TPACPI_MAIL);
   2004		return 0;
   2005	}
   2006
   2007	if (has_tablet_mode && (valid_modes & TP_ACPI_MULTI_MODE_TABLET_LIKE))
   2008		*has_tablet_mode = 1;
   2009
   2010	switch (value) {
   2011	case 1:
   2012		mode = TP_ACPI_MULTI_MODE_LAPTOP;
   2013		break;
   2014	case 2:
   2015		mode = TP_ACPI_MULTI_MODE_FLAT;
   2016		break;
   2017	case 3:
   2018		mode = TP_ACPI_MULTI_MODE_TABLET;
   2019		break;
   2020	case 4:
   2021		if (type == 1)
   2022			mode = TP_ACPI_MULTI_MODE_STAND_TENT;
   2023		else
   2024			mode = TP_ACPI_MULTI_MODE_STAND;
   2025		break;
   2026	case 5:
   2027		mode = TP_ACPI_MULTI_MODE_TENT;
   2028		break;
   2029	default:
   2030		if (type == 5 && value == 0xffff) {
   2031			pr_warn("Multi mode status is undetected, assuming laptop\n");
   2032			return 0;
   2033		}
   2034	}
   2035
   2036	if (!(mode & valid_modes)) {
   2037		pr_err("Unknown/reserved multi mode value 0x%04X for type %d, please report this to %s\n",
   2038		       value, type, TPACPI_MAIL);
   2039		return 0;
   2040	}
   2041
   2042	return !!(mode & TP_ACPI_MULTI_MODE_TABLET_LIKE);
   2043}
   2044
   2045static int hotkey_get_tablet_mode(int *status)
   2046{
   2047	int s;
   2048
   2049	switch (tp_features.hotkey_tablet) {
   2050	case TP_HOTKEY_TABLET_USES_MHKG:
   2051		if (!acpi_evalf(hkey_handle, &s, "MHKG", "d"))
   2052			return -EIO;
   2053
   2054		*status = ((s & TP_HOTKEY_TABLET_MASK) != 0);
   2055		break;
   2056	case TP_HOTKEY_TABLET_USES_GMMS:
   2057		if (!acpi_evalf(hkey_handle, &s, "GMMS", "dd", 0))
   2058			return -EIO;
   2059
   2060		*status = hotkey_gmms_get_tablet_mode(s, NULL);
   2061		break;
   2062	default:
   2063		break;
   2064	}
   2065
   2066	return 0;
   2067}
   2068
   2069/*
   2070 * Reads current event mask from firmware, and updates
   2071 * hotkey_acpi_mask accordingly.  Also resets any bits
   2072 * from hotkey_user_mask that are unavailable to be
   2073 * delivered (shadow requirement of the userspace ABI).
   2074 *
   2075 * Call with hotkey_mutex held
   2076 */
   2077static int hotkey_mask_get(void)
   2078{
   2079	if (tp_features.hotkey_mask) {
   2080		u32 m = 0;
   2081
   2082		if (!acpi_evalf(hkey_handle, &m, "DHKN", "d"))
   2083			return -EIO;
   2084
   2085		hotkey_acpi_mask = m;
   2086	} else {
   2087		/* no mask support doesn't mean no event support... */
   2088		hotkey_acpi_mask = hotkey_all_mask;
   2089	}
   2090
   2091	/* sync userspace-visible mask */
   2092	hotkey_user_mask &= (hotkey_acpi_mask | hotkey_source_mask);
   2093
   2094	return 0;
   2095}
   2096
   2097static void hotkey_mask_warn_incomplete_mask(void)
   2098{
   2099	/* log only what the user can fix... */
   2100	const u32 wantedmask = hotkey_driver_mask &
   2101		~(hotkey_acpi_mask | hotkey_source_mask) &
   2102		(hotkey_all_mask | TPACPI_HKEY_NVRAM_KNOWN_MASK);
   2103
   2104	if (wantedmask)
   2105		pr_notice("required events 0x%08x not enabled!\n", wantedmask);
   2106}
   2107
   2108/*
   2109 * Set the firmware mask when supported
   2110 *
   2111 * Also calls hotkey_mask_get to update hotkey_acpi_mask.
   2112 *
   2113 * NOTE: does not set bits in hotkey_user_mask, but may reset them.
   2114 *
   2115 * Call with hotkey_mutex held
   2116 */
   2117static int hotkey_mask_set(u32 mask)
   2118{
   2119	int i;
   2120	int rc = 0;
   2121
   2122	const u32 fwmask = mask & ~hotkey_source_mask;
   2123
   2124	if (tp_features.hotkey_mask) {
   2125		for (i = 0; i < 32; i++) {
   2126			if (!acpi_evalf(hkey_handle,
   2127					NULL, "MHKM", "vdd", i + 1,
   2128					!!(mask & (1 << i)))) {
   2129				rc = -EIO;
   2130				break;
   2131			}
   2132		}
   2133	}
   2134
   2135	/*
   2136	 * We *must* make an inconditional call to hotkey_mask_get to
   2137	 * refresh hotkey_acpi_mask and update hotkey_user_mask
   2138	 *
   2139	 * Take the opportunity to also log when we cannot _enable_
   2140	 * a given event.
   2141	 */
   2142	if (!hotkey_mask_get() && !rc && (fwmask & ~hotkey_acpi_mask)) {
   2143		pr_notice("asked for hotkey mask 0x%08x, but firmware forced it to 0x%08x\n",
   2144			  fwmask, hotkey_acpi_mask);
   2145	}
   2146
   2147	if (tpacpi_lifecycle != TPACPI_LIFE_EXITING)
   2148		hotkey_mask_warn_incomplete_mask();
   2149
   2150	return rc;
   2151}
   2152
   2153/*
   2154 * Sets hotkey_user_mask and tries to set the firmware mask
   2155 *
   2156 * Call with hotkey_mutex held
   2157 */
   2158static int hotkey_user_mask_set(const u32 mask)
   2159{
   2160	int rc;
   2161
   2162	/* Give people a chance to notice they are doing something that
   2163	 * is bound to go boom on their users sooner or later */
   2164	if (!tp_warned.hotkey_mask_ff &&
   2165	    (mask == 0xffff || mask == 0xffffff ||
   2166	     mask == 0xffffffff)) {
   2167		tp_warned.hotkey_mask_ff = 1;
   2168		pr_notice("setting the hotkey mask to 0x%08x is likely not the best way to go about it\n",
   2169			  mask);
   2170		pr_notice("please consider using the driver defaults, and refer to up-to-date thinkpad-acpi documentation\n");
   2171	}
   2172
   2173	/* Try to enable what the user asked for, plus whatever we need.
   2174	 * this syncs everything but won't enable bits in hotkey_user_mask */
   2175	rc = hotkey_mask_set((mask | hotkey_driver_mask) & ~hotkey_source_mask);
   2176
   2177	/* Enable the available bits in hotkey_user_mask */
   2178	hotkey_user_mask = mask & (hotkey_acpi_mask | hotkey_source_mask);
   2179
   2180	return rc;
   2181}
   2182
   2183/*
   2184 * Sets the driver hotkey mask.
   2185 *
   2186 * Can be called even if the hotkey subdriver is inactive
   2187 */
   2188static int tpacpi_hotkey_driver_mask_set(const u32 mask)
   2189{
   2190	int rc;
   2191
   2192	/* Do the right thing if hotkey_init has not been called yet */
   2193	if (!tp_features.hotkey) {
   2194		hotkey_driver_mask = mask;
   2195		return 0;
   2196	}
   2197
   2198	mutex_lock(&hotkey_mutex);
   2199
   2200	HOTKEY_CONFIG_CRITICAL_START
   2201	hotkey_driver_mask = mask;
   2202#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
   2203	hotkey_source_mask |= (mask & ~hotkey_all_mask);
   2204#endif
   2205	HOTKEY_CONFIG_CRITICAL_END
   2206
   2207	rc = hotkey_mask_set((hotkey_acpi_mask | hotkey_driver_mask) &
   2208							~hotkey_source_mask);
   2209	hotkey_poll_setup(true);
   2210
   2211	mutex_unlock(&hotkey_mutex);
   2212
   2213	return rc;
   2214}
   2215
   2216static int hotkey_status_get(int *status)
   2217{
   2218	if (!acpi_evalf(hkey_handle, status, "DHKC", "d"))
   2219		return -EIO;
   2220
   2221	return 0;
   2222}
   2223
   2224static int hotkey_status_set(bool enable)
   2225{
   2226	if (!acpi_evalf(hkey_handle, NULL, "MHKC", "vd", enable ? 1 : 0))
   2227		return -EIO;
   2228
   2229	return 0;
   2230}
   2231
   2232static void tpacpi_input_send_tabletsw(void)
   2233{
   2234	int state;
   2235
   2236	if (tp_features.hotkey_tablet &&
   2237	    !hotkey_get_tablet_mode(&state)) {
   2238		mutex_lock(&tpacpi_inputdev_send_mutex);
   2239
   2240		input_report_switch(tpacpi_inputdev,
   2241				    SW_TABLET_MODE, !!state);
   2242		input_sync(tpacpi_inputdev);
   2243
   2244		mutex_unlock(&tpacpi_inputdev_send_mutex);
   2245	}
   2246}
   2247
   2248/* Do NOT call without validating scancode first */
   2249static void tpacpi_input_send_key(const unsigned int scancode)
   2250{
   2251	const unsigned int keycode = hotkey_keycode_map[scancode];
   2252
   2253	if (keycode != KEY_RESERVED) {
   2254		mutex_lock(&tpacpi_inputdev_send_mutex);
   2255
   2256		input_event(tpacpi_inputdev, EV_MSC, MSC_SCAN, scancode);
   2257		input_report_key(tpacpi_inputdev, keycode, 1);
   2258		input_sync(tpacpi_inputdev);
   2259
   2260		input_event(tpacpi_inputdev, EV_MSC, MSC_SCAN, scancode);
   2261		input_report_key(tpacpi_inputdev, keycode, 0);
   2262		input_sync(tpacpi_inputdev);
   2263
   2264		mutex_unlock(&tpacpi_inputdev_send_mutex);
   2265	}
   2266}
   2267
   2268/* Do NOT call without validating scancode first */
   2269static void tpacpi_input_send_key_masked(const unsigned int scancode)
   2270{
   2271	hotkey_driver_event(scancode);
   2272	if (hotkey_user_mask & (1 << scancode))
   2273		tpacpi_input_send_key(scancode);
   2274}
   2275
   2276#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
   2277static struct tp_acpi_drv_struct ibm_hotkey_acpidriver;
   2278
   2279/* Do NOT call without validating scancode first */
   2280static void tpacpi_hotkey_send_key(unsigned int scancode)
   2281{
   2282	tpacpi_input_send_key_masked(scancode);
   2283}
   2284
   2285static void hotkey_read_nvram(struct tp_nvram_state *n, const u32 m)
   2286{
   2287	u8 d;
   2288
   2289	if (m & TP_NVRAM_HKEY_GROUP_HK2) {
   2290		d = nvram_read_byte(TP_NVRAM_ADDR_HK2);
   2291		n->thinkpad_toggle = !!(d & TP_NVRAM_MASK_HKT_THINKPAD);
   2292		n->zoom_toggle = !!(d & TP_NVRAM_MASK_HKT_ZOOM);
   2293		n->display_toggle = !!(d & TP_NVRAM_MASK_HKT_DISPLAY);
   2294		n->hibernate_toggle = !!(d & TP_NVRAM_MASK_HKT_HIBERNATE);
   2295	}
   2296	if (m & TP_ACPI_HKEY_KBD_LIGHT_MASK) {
   2297		d = nvram_read_byte(TP_NVRAM_ADDR_THINKLIGHT);
   2298		n->thinklight_toggle = !!(d & TP_NVRAM_MASK_THINKLIGHT);
   2299	}
   2300	if (m & TP_ACPI_HKEY_DISPXPAND_MASK) {
   2301		d = nvram_read_byte(TP_NVRAM_ADDR_VIDEO);
   2302		n->displayexp_toggle =
   2303				!!(d & TP_NVRAM_MASK_HKT_DISPEXPND);
   2304	}
   2305	if (m & TP_NVRAM_HKEY_GROUP_BRIGHTNESS) {
   2306		d = nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS);
   2307		n->brightness_level = (d & TP_NVRAM_MASK_LEVEL_BRIGHTNESS)
   2308				>> TP_NVRAM_POS_LEVEL_BRIGHTNESS;
   2309		n->brightness_toggle =
   2310				!!(d & TP_NVRAM_MASK_HKT_BRIGHTNESS);
   2311	}
   2312	if (m & TP_NVRAM_HKEY_GROUP_VOLUME) {
   2313		d = nvram_read_byte(TP_NVRAM_ADDR_MIXER);
   2314		n->volume_level = (d & TP_NVRAM_MASK_LEVEL_VOLUME)
   2315				>> TP_NVRAM_POS_LEVEL_VOLUME;
   2316		n->mute = !!(d & TP_NVRAM_MASK_MUTE);
   2317		n->volume_toggle = !!(d & TP_NVRAM_MASK_HKT_VOLUME);
   2318	}
   2319}
   2320
   2321#define TPACPI_COMPARE_KEY(__scancode, __member) \
   2322do { \
   2323	if ((event_mask & (1 << __scancode)) && \
   2324	    oldn->__member != newn->__member) \
   2325		tpacpi_hotkey_send_key(__scancode); \
   2326} while (0)
   2327
   2328#define TPACPI_MAY_SEND_KEY(__scancode) \
   2329do { \
   2330	if (event_mask & (1 << __scancode)) \
   2331		tpacpi_hotkey_send_key(__scancode); \
   2332} while (0)
   2333
   2334static void issue_volchange(const unsigned int oldvol,
   2335			    const unsigned int newvol,
   2336			    const u32 event_mask)
   2337{
   2338	unsigned int i = oldvol;
   2339
   2340	while (i > newvol) {
   2341		TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEDOWN);
   2342		i--;
   2343	}
   2344	while (i < newvol) {
   2345		TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEUP);
   2346		i++;
   2347	}
   2348}
   2349
   2350static void issue_brightnesschange(const unsigned int oldbrt,
   2351				   const unsigned int newbrt,
   2352				   const u32 event_mask)
   2353{
   2354	unsigned int i = oldbrt;
   2355
   2356	while (i > newbrt) {
   2357		TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNEND);
   2358		i--;
   2359	}
   2360	while (i < newbrt) {
   2361		TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNHOME);
   2362		i++;
   2363	}
   2364}
   2365
   2366static void hotkey_compare_and_issue_event(struct tp_nvram_state *oldn,
   2367					   struct tp_nvram_state *newn,
   2368					   const u32 event_mask)
   2369{
   2370
   2371	TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_THINKPAD, thinkpad_toggle);
   2372	TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNSPACE, zoom_toggle);
   2373	TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF7, display_toggle);
   2374	TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF12, hibernate_toggle);
   2375
   2376	TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNPAGEUP, thinklight_toggle);
   2377
   2378	TPACPI_COMPARE_KEY(TP_ACPI_HOTKEYSCAN_FNF8, displayexp_toggle);
   2379
   2380	/*
   2381	 * Handle volume
   2382	 *
   2383	 * This code is supposed to duplicate the IBM firmware behaviour:
   2384	 * - Pressing MUTE issues mute hotkey message, even when already mute
   2385	 * - Pressing Volume up/down issues volume up/down hotkey messages,
   2386	 *   even when already at maximum or minimum volume
   2387	 * - The act of unmuting issues volume up/down notification,
   2388	 *   depending which key was used to unmute
   2389	 *
   2390	 * We are constrained to what the NVRAM can tell us, which is not much
   2391	 * and certainly not enough if more than one volume hotkey was pressed
   2392	 * since the last poll cycle.
   2393	 *
   2394	 * Just to make our life interesting, some newer Lenovo ThinkPads have
   2395	 * bugs in the BIOS and may fail to update volume_toggle properly.
   2396	 */
   2397	if (newn->mute) {
   2398		/* muted */
   2399		if (!oldn->mute ||
   2400		    oldn->volume_toggle != newn->volume_toggle ||
   2401		    oldn->volume_level != newn->volume_level) {
   2402			/* recently muted, or repeated mute keypress, or
   2403			 * multiple presses ending in mute */
   2404			issue_volchange(oldn->volume_level, newn->volume_level,
   2405				event_mask);
   2406			TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_MUTE);
   2407		}
   2408	} else {
   2409		/* unmute */
   2410		if (oldn->mute) {
   2411			/* recently unmuted, issue 'unmute' keypress */
   2412			TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEUP);
   2413		}
   2414		if (oldn->volume_level != newn->volume_level) {
   2415			issue_volchange(oldn->volume_level, newn->volume_level,
   2416				event_mask);
   2417		} else if (oldn->volume_toggle != newn->volume_toggle) {
   2418			/* repeated vol up/down keypress at end of scale ? */
   2419			if (newn->volume_level == 0)
   2420				TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEDOWN);
   2421			else if (newn->volume_level >= TP_NVRAM_LEVEL_VOLUME_MAX)
   2422				TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_VOLUMEUP);
   2423		}
   2424	}
   2425
   2426	/* handle brightness */
   2427	if (oldn->brightness_level != newn->brightness_level) {
   2428		issue_brightnesschange(oldn->brightness_level,
   2429				       newn->brightness_level, event_mask);
   2430	} else if (oldn->brightness_toggle != newn->brightness_toggle) {
   2431		/* repeated key presses that didn't change state */
   2432		if (newn->brightness_level == 0)
   2433			TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNEND);
   2434		else if (newn->brightness_level >= bright_maxlvl
   2435				&& !tp_features.bright_unkfw)
   2436			TPACPI_MAY_SEND_KEY(TP_ACPI_HOTKEYSCAN_FNHOME);
   2437	}
   2438
   2439#undef TPACPI_COMPARE_KEY
   2440#undef TPACPI_MAY_SEND_KEY
   2441}
   2442
   2443/*
   2444 * Polling driver
   2445 *
   2446 * We track all events in hotkey_source_mask all the time, since
   2447 * most of them are edge-based.  We only issue those requested by
   2448 * hotkey_user_mask or hotkey_driver_mask, though.
   2449 */
   2450static int hotkey_kthread(void *data)
   2451{
   2452	struct tp_nvram_state s[2] = { 0 };
   2453	u32 poll_mask, event_mask;
   2454	unsigned int si, so;
   2455	unsigned long t;
   2456	unsigned int change_detector;
   2457	unsigned int poll_freq;
   2458	bool was_frozen;
   2459
   2460	if (tpacpi_lifecycle == TPACPI_LIFE_EXITING)
   2461		goto exit;
   2462
   2463	set_freezable();
   2464
   2465	so = 0;
   2466	si = 1;
   2467	t = 0;
   2468
   2469	/* Initial state for compares */
   2470	mutex_lock(&hotkey_thread_data_mutex);
   2471	change_detector = hotkey_config_change;
   2472	poll_mask = hotkey_source_mask;
   2473	event_mask = hotkey_source_mask &
   2474			(hotkey_driver_mask | hotkey_user_mask);
   2475	poll_freq = hotkey_poll_freq;
   2476	mutex_unlock(&hotkey_thread_data_mutex);
   2477	hotkey_read_nvram(&s[so], poll_mask);
   2478
   2479	while (!kthread_should_stop()) {
   2480		if (t == 0) {
   2481			if (likely(poll_freq))
   2482				t = 1000/poll_freq;
   2483			else
   2484				t = 100;	/* should never happen... */
   2485		}
   2486		t = msleep_interruptible(t);
   2487		if (unlikely(kthread_freezable_should_stop(&was_frozen)))
   2488			break;
   2489
   2490		if (t > 0 && !was_frozen)
   2491			continue;
   2492
   2493		mutex_lock(&hotkey_thread_data_mutex);
   2494		if (was_frozen || hotkey_config_change != change_detector) {
   2495			/* forget old state on thaw or config change */
   2496			si = so;
   2497			t = 0;
   2498			change_detector = hotkey_config_change;
   2499		}
   2500		poll_mask = hotkey_source_mask;
   2501		event_mask = hotkey_source_mask &
   2502				(hotkey_driver_mask | hotkey_user_mask);
   2503		poll_freq = hotkey_poll_freq;
   2504		mutex_unlock(&hotkey_thread_data_mutex);
   2505
   2506		if (likely(poll_mask)) {
   2507			hotkey_read_nvram(&s[si], poll_mask);
   2508			if (likely(si != so)) {
   2509				hotkey_compare_and_issue_event(&s[so], &s[si],
   2510								event_mask);
   2511			}
   2512		}
   2513
   2514		so = si;
   2515		si ^= 1;
   2516	}
   2517
   2518exit:
   2519	return 0;
   2520}
   2521
   2522/* call with hotkey_mutex held */
   2523static void hotkey_poll_stop_sync(void)
   2524{
   2525	if (tpacpi_hotkey_task) {
   2526		kthread_stop(tpacpi_hotkey_task);
   2527		tpacpi_hotkey_task = NULL;
   2528	}
   2529}
   2530
   2531/* call with hotkey_mutex held */
   2532static void hotkey_poll_setup(const bool may_warn)
   2533{
   2534	const u32 poll_driver_mask = hotkey_driver_mask & hotkey_source_mask;
   2535	const u32 poll_user_mask = hotkey_user_mask & hotkey_source_mask;
   2536
   2537	if (hotkey_poll_freq > 0 &&
   2538	    (poll_driver_mask ||
   2539	     (poll_user_mask && tpacpi_inputdev->users > 0))) {
   2540		if (!tpacpi_hotkey_task) {
   2541			tpacpi_hotkey_task = kthread_run(hotkey_kthread,
   2542					NULL, TPACPI_NVRAM_KTHREAD_NAME);
   2543			if (IS_ERR(tpacpi_hotkey_task)) {
   2544				tpacpi_hotkey_task = NULL;
   2545				pr_err("could not create kernel thread for hotkey polling\n");
   2546			}
   2547		}
   2548	} else {
   2549		hotkey_poll_stop_sync();
   2550		if (may_warn && (poll_driver_mask || poll_user_mask) &&
   2551		    hotkey_poll_freq == 0) {
   2552			pr_notice("hot keys 0x%08x and/or events 0x%08x require polling, which is currently disabled\n",
   2553				  poll_user_mask, poll_driver_mask);
   2554		}
   2555	}
   2556}
   2557
   2558static void hotkey_poll_setup_safe(const bool may_warn)
   2559{
   2560	mutex_lock(&hotkey_mutex);
   2561	hotkey_poll_setup(may_warn);
   2562	mutex_unlock(&hotkey_mutex);
   2563}
   2564
   2565/* call with hotkey_mutex held */
   2566static void hotkey_poll_set_freq(unsigned int freq)
   2567{
   2568	if (!freq)
   2569		hotkey_poll_stop_sync();
   2570
   2571	hotkey_poll_freq = freq;
   2572}
   2573
   2574#else /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
   2575
   2576static void hotkey_poll_setup(const bool __unused)
   2577{
   2578}
   2579
   2580static void hotkey_poll_setup_safe(const bool __unused)
   2581{
   2582}
   2583
   2584#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
   2585
   2586static int hotkey_inputdev_open(struct input_dev *dev)
   2587{
   2588	switch (tpacpi_lifecycle) {
   2589	case TPACPI_LIFE_INIT:
   2590	case TPACPI_LIFE_RUNNING:
   2591		hotkey_poll_setup_safe(false);
   2592		return 0;
   2593	case TPACPI_LIFE_EXITING:
   2594		return -EBUSY;
   2595	}
   2596
   2597	/* Should only happen if tpacpi_lifecycle is corrupt */
   2598	BUG();
   2599	return -EBUSY;
   2600}
   2601
   2602static void hotkey_inputdev_close(struct input_dev *dev)
   2603{
   2604	/* disable hotkey polling when possible */
   2605	if (tpacpi_lifecycle != TPACPI_LIFE_EXITING &&
   2606	    !(hotkey_source_mask & hotkey_driver_mask))
   2607		hotkey_poll_setup_safe(false);
   2608}
   2609
   2610/* sysfs hotkey enable ------------------------------------------------- */
   2611static ssize_t hotkey_enable_show(struct device *dev,
   2612			   struct device_attribute *attr,
   2613			   char *buf)
   2614{
   2615	int res, status;
   2616
   2617	printk_deprecated_attribute("hotkey_enable",
   2618			"Hotkey reporting is always enabled");
   2619
   2620	res = hotkey_status_get(&status);
   2621	if (res)
   2622		return res;
   2623
   2624	return sysfs_emit(buf, "%d\n", status);
   2625}
   2626
   2627static ssize_t hotkey_enable_store(struct device *dev,
   2628			    struct device_attribute *attr,
   2629			    const char *buf, size_t count)
   2630{
   2631	unsigned long t;
   2632
   2633	printk_deprecated_attribute("hotkey_enable",
   2634			"Hotkeys can be disabled through hotkey_mask");
   2635
   2636	if (parse_strtoul(buf, 1, &t))
   2637		return -EINVAL;
   2638
   2639	if (t == 0)
   2640		return -EPERM;
   2641
   2642	return count;
   2643}
   2644
   2645static DEVICE_ATTR_RW(hotkey_enable);
   2646
   2647/* sysfs hotkey mask --------------------------------------------------- */
   2648static ssize_t hotkey_mask_show(struct device *dev,
   2649			   struct device_attribute *attr,
   2650			   char *buf)
   2651{
   2652	return sysfs_emit(buf, "0x%08x\n", hotkey_user_mask);
   2653}
   2654
   2655static ssize_t hotkey_mask_store(struct device *dev,
   2656			    struct device_attribute *attr,
   2657			    const char *buf, size_t count)
   2658{
   2659	unsigned long t;
   2660	int res;
   2661
   2662	if (parse_strtoul(buf, 0xffffffffUL, &t))
   2663		return -EINVAL;
   2664
   2665	if (mutex_lock_killable(&hotkey_mutex))
   2666		return -ERESTARTSYS;
   2667
   2668	res = hotkey_user_mask_set(t);
   2669
   2670#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
   2671	hotkey_poll_setup(true);
   2672#endif
   2673
   2674	mutex_unlock(&hotkey_mutex);
   2675
   2676	tpacpi_disclose_usertask("hotkey_mask", "set to 0x%08lx\n", t);
   2677
   2678	return (res) ? res : count;
   2679}
   2680
   2681static DEVICE_ATTR_RW(hotkey_mask);
   2682
   2683/* sysfs hotkey bios_enabled ------------------------------------------- */
   2684static ssize_t hotkey_bios_enabled_show(struct device *dev,
   2685			   struct device_attribute *attr,
   2686			   char *buf)
   2687{
   2688	return sprintf(buf, "0\n");
   2689}
   2690
   2691static DEVICE_ATTR_RO(hotkey_bios_enabled);
   2692
   2693/* sysfs hotkey bios_mask ---------------------------------------------- */
   2694static ssize_t hotkey_bios_mask_show(struct device *dev,
   2695			   struct device_attribute *attr,
   2696			   char *buf)
   2697{
   2698	printk_deprecated_attribute("hotkey_bios_mask",
   2699			"This attribute is useless.");
   2700	return sysfs_emit(buf, "0x%08x\n", hotkey_orig_mask);
   2701}
   2702
   2703static DEVICE_ATTR_RO(hotkey_bios_mask);
   2704
   2705/* sysfs hotkey all_mask ----------------------------------------------- */
   2706static ssize_t hotkey_all_mask_show(struct device *dev,
   2707			   struct device_attribute *attr,
   2708			   char *buf)
   2709{
   2710	return sysfs_emit(buf, "0x%08x\n",
   2711				hotkey_all_mask | hotkey_source_mask);
   2712}
   2713
   2714static DEVICE_ATTR_RO(hotkey_all_mask);
   2715
   2716/* sysfs hotkey all_mask ----------------------------------------------- */
   2717static ssize_t hotkey_adaptive_all_mask_show(struct device *dev,
   2718			   struct device_attribute *attr,
   2719			   char *buf)
   2720{
   2721	return sysfs_emit(buf, "0x%08x\n",
   2722			hotkey_adaptive_all_mask | hotkey_source_mask);
   2723}
   2724
   2725static DEVICE_ATTR_RO(hotkey_adaptive_all_mask);
   2726
   2727/* sysfs hotkey recommended_mask --------------------------------------- */
   2728static ssize_t hotkey_recommended_mask_show(struct device *dev,
   2729					    struct device_attribute *attr,
   2730					    char *buf)
   2731{
   2732	return sysfs_emit(buf, "0x%08x\n",
   2733			(hotkey_all_mask | hotkey_source_mask)
   2734			& ~hotkey_reserved_mask);
   2735}
   2736
   2737static DEVICE_ATTR_RO(hotkey_recommended_mask);
   2738
   2739#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
   2740
   2741/* sysfs hotkey hotkey_source_mask ------------------------------------- */
   2742static ssize_t hotkey_source_mask_show(struct device *dev,
   2743			   struct device_attribute *attr,
   2744			   char *buf)
   2745{
   2746	return sysfs_emit(buf, "0x%08x\n", hotkey_source_mask);
   2747}
   2748
   2749static ssize_t hotkey_source_mask_store(struct device *dev,
   2750			    struct device_attribute *attr,
   2751			    const char *buf, size_t count)
   2752{
   2753	unsigned long t;
   2754	u32 r_ev;
   2755	int rc;
   2756
   2757	if (parse_strtoul(buf, 0xffffffffUL, &t) ||
   2758		((t & ~TPACPI_HKEY_NVRAM_KNOWN_MASK) != 0))
   2759		return -EINVAL;
   2760
   2761	if (mutex_lock_killable(&hotkey_mutex))
   2762		return -ERESTARTSYS;
   2763
   2764	HOTKEY_CONFIG_CRITICAL_START
   2765	hotkey_source_mask = t;
   2766	HOTKEY_CONFIG_CRITICAL_END
   2767
   2768	rc = hotkey_mask_set((hotkey_user_mask | hotkey_driver_mask) &
   2769			~hotkey_source_mask);
   2770	hotkey_poll_setup(true);
   2771
   2772	/* check if events needed by the driver got disabled */
   2773	r_ev = hotkey_driver_mask & ~(hotkey_acpi_mask & hotkey_all_mask)
   2774		& ~hotkey_source_mask & TPACPI_HKEY_NVRAM_KNOWN_MASK;
   2775
   2776	mutex_unlock(&hotkey_mutex);
   2777
   2778	if (rc < 0)
   2779		pr_err("hotkey_source_mask: failed to update the firmware event mask!\n");
   2780
   2781	if (r_ev)
   2782		pr_notice("hotkey_source_mask: some important events were disabled: 0x%04x\n",
   2783			  r_ev);
   2784
   2785	tpacpi_disclose_usertask("hotkey_source_mask", "set to 0x%08lx\n", t);
   2786
   2787	return (rc < 0) ? rc : count;
   2788}
   2789
   2790static DEVICE_ATTR_RW(hotkey_source_mask);
   2791
   2792/* sysfs hotkey hotkey_poll_freq --------------------------------------- */
   2793static ssize_t hotkey_poll_freq_show(struct device *dev,
   2794			   struct device_attribute *attr,
   2795			   char *buf)
   2796{
   2797	return sysfs_emit(buf, "%d\n", hotkey_poll_freq);
   2798}
   2799
   2800static ssize_t hotkey_poll_freq_store(struct device *dev,
   2801			    struct device_attribute *attr,
   2802			    const char *buf, size_t count)
   2803{
   2804	unsigned long t;
   2805
   2806	if (parse_strtoul(buf, 25, &t))
   2807		return -EINVAL;
   2808
   2809	if (mutex_lock_killable(&hotkey_mutex))
   2810		return -ERESTARTSYS;
   2811
   2812	hotkey_poll_set_freq(t);
   2813	hotkey_poll_setup(true);
   2814
   2815	mutex_unlock(&hotkey_mutex);
   2816
   2817	tpacpi_disclose_usertask("hotkey_poll_freq", "set to %lu\n", t);
   2818
   2819	return count;
   2820}
   2821
   2822static DEVICE_ATTR_RW(hotkey_poll_freq);
   2823
   2824#endif /* CONFIG_THINKPAD_ACPI_HOTKEY_POLL */
   2825
   2826/* sysfs hotkey radio_sw (pollable) ------------------------------------ */
   2827static ssize_t hotkey_radio_sw_show(struct device *dev,
   2828			   struct device_attribute *attr,
   2829			   char *buf)
   2830{
   2831	int res;
   2832	res = hotkey_get_wlsw();
   2833	if (res < 0)
   2834		return res;
   2835
   2836	/* Opportunistic update */
   2837	tpacpi_rfk_update_hwblock_state((res == TPACPI_RFK_RADIO_OFF));
   2838
   2839	return sysfs_emit(buf, "%d\n",
   2840			(res == TPACPI_RFK_RADIO_OFF) ? 0 : 1);
   2841}
   2842
   2843static DEVICE_ATTR_RO(hotkey_radio_sw);
   2844
   2845static void hotkey_radio_sw_notify_change(void)
   2846{
   2847	if (tp_features.hotkey_wlsw)
   2848		sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
   2849			     "hotkey_radio_sw");
   2850}
   2851
   2852/* sysfs hotkey tablet mode (pollable) --------------------------------- */
   2853static ssize_t hotkey_tablet_mode_show(struct device *dev,
   2854			   struct device_attribute *attr,
   2855			   char *buf)
   2856{
   2857	int res, s;
   2858	res = hotkey_get_tablet_mode(&s);
   2859	if (res < 0)
   2860		return res;
   2861
   2862	return sysfs_emit(buf, "%d\n", !!s);
   2863}
   2864
   2865static DEVICE_ATTR_RO(hotkey_tablet_mode);
   2866
   2867static void hotkey_tablet_mode_notify_change(void)
   2868{
   2869	if (tp_features.hotkey_tablet)
   2870		sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
   2871			     "hotkey_tablet_mode");
   2872}
   2873
   2874/* sysfs wakeup reason (pollable) -------------------------------------- */
   2875static ssize_t hotkey_wakeup_reason_show(struct device *dev,
   2876			   struct device_attribute *attr,
   2877			   char *buf)
   2878{
   2879	return sysfs_emit(buf, "%d\n", hotkey_wakeup_reason);
   2880}
   2881
   2882static DEVICE_ATTR(wakeup_reason, S_IRUGO, hotkey_wakeup_reason_show, NULL);
   2883
   2884static void hotkey_wakeup_reason_notify_change(void)
   2885{
   2886	sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
   2887		     "wakeup_reason");
   2888}
   2889
   2890/* sysfs wakeup hotunplug_complete (pollable) -------------------------- */
   2891static ssize_t hotkey_wakeup_hotunplug_complete_show(struct device *dev,
   2892			   struct device_attribute *attr,
   2893			   char *buf)
   2894{
   2895	return sysfs_emit(buf, "%d\n", hotkey_autosleep_ack);
   2896}
   2897
   2898static DEVICE_ATTR(wakeup_hotunplug_complete, S_IRUGO,
   2899		   hotkey_wakeup_hotunplug_complete_show, NULL);
   2900
   2901static void hotkey_wakeup_hotunplug_complete_notify_change(void)
   2902{
   2903	sysfs_notify(&tpacpi_pdev->dev.kobj, NULL,
   2904		     "wakeup_hotunplug_complete");
   2905}
   2906
   2907/* sysfs adaptive kbd mode --------------------------------------------- */
   2908
   2909static int adaptive_keyboard_get_mode(void);
   2910static int adaptive_keyboard_set_mode(int new_mode);
   2911
   2912enum ADAPTIVE_KEY_MODE {
   2913	HOME_MODE,
   2914	WEB_BROWSER_MODE,
   2915	WEB_CONFERENCE_MODE,
   2916	FUNCTION_MODE,
   2917	LAYFLAT_MODE
   2918};
   2919
   2920static ssize_t adaptive_kbd_mode_show(struct device *dev,
   2921			   struct device_attribute *attr,
   2922			   char *buf)
   2923{
   2924	int current_mode;
   2925
   2926	current_mode = adaptive_keyboard_get_mode();
   2927	if (current_mode < 0)
   2928		return current_mode;
   2929
   2930	return sysfs_emit(buf, "%d\n", current_mode);
   2931}
   2932
   2933static ssize_t adaptive_kbd_mode_store(struct device *dev,
   2934			    struct device_attribute *attr,
   2935			    const char *buf, size_t count)
   2936{
   2937	unsigned long t;
   2938	int res;
   2939
   2940	if (parse_strtoul(buf, LAYFLAT_MODE, &t))
   2941		return -EINVAL;
   2942
   2943	res = adaptive_keyboard_set_mode(t);
   2944	return (res < 0) ? res : count;
   2945}
   2946
   2947static DEVICE_ATTR_RW(adaptive_kbd_mode);
   2948
   2949static struct attribute *adaptive_kbd_attributes[] = {
   2950	&dev_attr_adaptive_kbd_mode.attr,
   2951	NULL
   2952};
   2953
   2954static umode_t hadaptive_kbd_attr_is_visible(struct kobject *kobj,
   2955					     struct attribute *attr, int n)
   2956{
   2957	return tp_features.has_adaptive_kbd ? attr->mode : 0;
   2958}
   2959
   2960static const struct attribute_group adaptive_kbd_attr_group = {
   2961	.is_visible = hadaptive_kbd_attr_is_visible,
   2962	.attrs = adaptive_kbd_attributes,
   2963};
   2964
   2965/* --------------------------------------------------------------------- */
   2966
   2967static struct attribute *hotkey_attributes[] = {
   2968	&dev_attr_hotkey_enable.attr,
   2969	&dev_attr_hotkey_bios_enabled.attr,
   2970	&dev_attr_hotkey_bios_mask.attr,
   2971	&dev_attr_wakeup_reason.attr,
   2972	&dev_attr_wakeup_hotunplug_complete.attr,
   2973	&dev_attr_hotkey_mask.attr,
   2974	&dev_attr_hotkey_all_mask.attr,
   2975	&dev_attr_hotkey_adaptive_all_mask.attr,
   2976	&dev_attr_hotkey_recommended_mask.attr,
   2977	&dev_attr_hotkey_tablet_mode.attr,
   2978	&dev_attr_hotkey_radio_sw.attr,
   2979#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
   2980	&dev_attr_hotkey_source_mask.attr,
   2981	&dev_attr_hotkey_poll_freq.attr,
   2982#endif
   2983	NULL
   2984};
   2985
   2986static umode_t hotkey_attr_is_visible(struct kobject *kobj,
   2987				      struct attribute *attr, int n)
   2988{
   2989	if (attr == &dev_attr_hotkey_tablet_mode.attr) {
   2990		if (!tp_features.hotkey_tablet)
   2991			return 0;
   2992	} else if (attr == &dev_attr_hotkey_radio_sw.attr) {
   2993		if (!tp_features.hotkey_wlsw)
   2994			return 0;
   2995	}
   2996
   2997	return attr->mode;
   2998}
   2999
   3000static const struct attribute_group hotkey_attr_group = {
   3001	.is_visible = hotkey_attr_is_visible,
   3002	.attrs = hotkey_attributes,
   3003};
   3004
   3005/*
   3006 * Sync both the hw and sw blocking state of all switches
   3007 */
   3008static void tpacpi_send_radiosw_update(void)
   3009{
   3010	int wlsw;
   3011
   3012	/*
   3013	 * We must sync all rfkill controllers *before* issuing any
   3014	 * rfkill input events, or we will race the rfkill core input
   3015	 * handler.
   3016	 *
   3017	 * tpacpi_inputdev_send_mutex works as a synchronization point
   3018	 * for the above.
   3019	 *
   3020	 * We optimize to avoid numerous calls to hotkey_get_wlsw.
   3021	 */
   3022
   3023	wlsw = hotkey_get_wlsw();
   3024
   3025	/* Sync hw blocking state first if it is hw-blocked */
   3026	if (wlsw == TPACPI_RFK_RADIO_OFF)
   3027		tpacpi_rfk_update_hwblock_state(true);
   3028
   3029	/* Sync hw blocking state last if it is hw-unblocked */
   3030	if (wlsw == TPACPI_RFK_RADIO_ON)
   3031		tpacpi_rfk_update_hwblock_state(false);
   3032
   3033	/* Issue rfkill input event for WLSW switch */
   3034	if (!(wlsw < 0)) {
   3035		mutex_lock(&tpacpi_inputdev_send_mutex);
   3036
   3037		input_report_switch(tpacpi_inputdev,
   3038				    SW_RFKILL_ALL, (wlsw > 0));
   3039		input_sync(tpacpi_inputdev);
   3040
   3041		mutex_unlock(&tpacpi_inputdev_send_mutex);
   3042	}
   3043
   3044	/*
   3045	 * this can be unconditional, as we will poll state again
   3046	 * if userspace uses the notify to read data
   3047	 */
   3048	hotkey_radio_sw_notify_change();
   3049}
   3050
   3051static void hotkey_exit(void)
   3052{
   3053#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
   3054	mutex_lock(&hotkey_mutex);
   3055	hotkey_poll_stop_sync();
   3056	mutex_unlock(&hotkey_mutex);
   3057#endif
   3058	dbg_printk(TPACPI_DBG_EXIT | TPACPI_DBG_HKEY,
   3059		   "restoring original HKEY status and mask\n");
   3060	/* yes, there is a bitwise or below, we want the
   3061	 * functions to be called even if one of them fail */
   3062	if (((tp_features.hotkey_mask &&
   3063	      hotkey_mask_set(hotkey_orig_mask)) |
   3064	     hotkey_status_set(false)) != 0)
   3065		pr_err("failed to restore hot key mask to BIOS defaults\n");
   3066}
   3067
   3068static void __init hotkey_unmap(const unsigned int scancode)
   3069{
   3070	if (hotkey_keycode_map[scancode] != KEY_RESERVED) {
   3071		clear_bit(hotkey_keycode_map[scancode],
   3072			  tpacpi_inputdev->keybit);
   3073		hotkey_keycode_map[scancode] = KEY_RESERVED;
   3074	}
   3075}
   3076
   3077/*
   3078 * HKEY quirks:
   3079 *   TPACPI_HK_Q_INIMASK:	Supports FN+F3,FN+F4,FN+F12
   3080 */
   3081
   3082#define	TPACPI_HK_Q_INIMASK	0x0001
   3083
   3084static const struct tpacpi_quirk tpacpi_hotkey_qtable[] __initconst = {
   3085	TPACPI_Q_IBM('I', 'H', TPACPI_HK_Q_INIMASK), /* 600E */
   3086	TPACPI_Q_IBM('I', 'N', TPACPI_HK_Q_INIMASK), /* 600E */
   3087	TPACPI_Q_IBM('I', 'D', TPACPI_HK_Q_INIMASK), /* 770, 770E, 770ED */
   3088	TPACPI_Q_IBM('I', 'W', TPACPI_HK_Q_INIMASK), /* A20m */
   3089	TPACPI_Q_IBM('I', 'V', TPACPI_HK_Q_INIMASK), /* A20p */
   3090	TPACPI_Q_IBM('1', '0', TPACPI_HK_Q_INIMASK), /* A21e, A22e */
   3091	TPACPI_Q_IBM('K', 'U', TPACPI_HK_Q_INIMASK), /* A21e */
   3092	TPACPI_Q_IBM('K', 'X', TPACPI_HK_Q_INIMASK), /* A21m, A22m */
   3093	TPACPI_Q_IBM('K', 'Y', TPACPI_HK_Q_INIMASK), /* A21p, A22p */
   3094	TPACPI_Q_IBM('1', 'B', TPACPI_HK_Q_INIMASK), /* A22e */
   3095	TPACPI_Q_IBM('1', '3', TPACPI_HK_Q_INIMASK), /* A22m */
   3096	TPACPI_Q_IBM('1', 'E', TPACPI_HK_Q_INIMASK), /* A30/p (0) */
   3097	TPACPI_Q_IBM('1', 'C', TPACPI_HK_Q_INIMASK), /* R30 */
   3098	TPACPI_Q_IBM('1', 'F', TPACPI_HK_Q_INIMASK), /* R31 */
   3099	TPACPI_Q_IBM('I', 'Y', TPACPI_HK_Q_INIMASK), /* T20 */
   3100	TPACPI_Q_IBM('K', 'Z', TPACPI_HK_Q_INIMASK), /* T21 */
   3101	TPACPI_Q_IBM('1', '6', TPACPI_HK_Q_INIMASK), /* T22 */
   3102	TPACPI_Q_IBM('I', 'Z', TPACPI_HK_Q_INIMASK), /* X20, X21 */
   3103	TPACPI_Q_IBM('1', 'D', TPACPI_HK_Q_INIMASK), /* X22, X23, X24 */
   3104};
   3105
   3106typedef u16 tpacpi_keymap_entry_t;
   3107typedef tpacpi_keymap_entry_t tpacpi_keymap_t[TPACPI_HOTKEY_MAP_LEN];
   3108
   3109static int hotkey_init_tablet_mode(void)
   3110{
   3111	int in_tablet_mode = 0, res;
   3112	char *type = NULL;
   3113
   3114	if (acpi_evalf(hkey_handle, &res, "GMMS", "qdd", 0)) {
   3115		int has_tablet_mode;
   3116
   3117		in_tablet_mode = hotkey_gmms_get_tablet_mode(res,
   3118							     &has_tablet_mode);
   3119		/*
   3120		 * The Yoga 11e series has 2 accelerometers described by a
   3121		 * BOSC0200 ACPI node. This setup relies on a Windows service
   3122		 * which calls special ACPI methods on this node to report
   3123		 * the laptop/tent/tablet mode to the EC. The bmc150 iio driver
   3124		 * does not support this, so skip the hotkey on these models.
   3125		 */
   3126		if (has_tablet_mode && !dual_accel_detect())
   3127			tp_features.hotkey_tablet = TP_HOTKEY_TABLET_USES_GMMS;
   3128		type = "GMMS";
   3129	} else if (acpi_evalf(hkey_handle, &res, "MHKG", "qd")) {
   3130		/* For X41t, X60t, X61t Tablets... */
   3131		tp_features.hotkey_tablet = TP_HOTKEY_TABLET_USES_MHKG;
   3132		in_tablet_mode = !!(res & TP_HOTKEY_TABLET_MASK);
   3133		type = "MHKG";
   3134	}
   3135
   3136	if (!tp_features.hotkey_tablet)
   3137		return 0;
   3138
   3139	pr_info("Tablet mode switch found (type: %s), currently in %s mode\n",
   3140		type, in_tablet_mode ? "tablet" : "laptop");
   3141
   3142	return in_tablet_mode;
   3143}
   3144
   3145static int __init hotkey_init(struct ibm_init_struct *iibm)
   3146{
   3147	/* Requirements for changing the default keymaps:
   3148	 *
   3149	 * 1. Many of the keys are mapped to KEY_RESERVED for very
   3150	 *    good reasons.  Do not change them unless you have deep
   3151	 *    knowledge on the IBM and Lenovo ThinkPad firmware for
   3152	 *    the various ThinkPad models.  The driver behaves
   3153	 *    differently for KEY_RESERVED: such keys have their
   3154	 *    hot key mask *unset* in mask_recommended, and also
   3155	 *    in the initial hot key mask programmed into the
   3156	 *    firmware at driver load time, which means the firm-
   3157	 *    ware may react very differently if you change them to
   3158	 *    something else;
   3159	 *
   3160	 * 2. You must be subscribed to the linux-thinkpad and
   3161	 *    ibm-acpi-devel mailing lists, and you should read the
   3162	 *    list archives since 2007 if you want to change the
   3163	 *    keymaps.  This requirement exists so that you will
   3164	 *    know the past history of problems with the thinkpad-
   3165	 *    acpi driver keymaps, and also that you will be
   3166	 *    listening to any bug reports;
   3167	 *
   3168	 * 3. Do not send thinkpad-acpi specific patches directly to
   3169	 *    for merging, *ever*.  Send them to the linux-acpi
   3170	 *    mailinglist for comments.  Merging is to be done only
   3171	 *    through acpi-test and the ACPI maintainer.
   3172	 *
   3173	 * If the above is too much to ask, don't change the keymap.
   3174	 * Ask the thinkpad-acpi maintainer to do it, instead.
   3175	 */
   3176
   3177	enum keymap_index {
   3178		TPACPI_KEYMAP_IBM_GENERIC = 0,
   3179		TPACPI_KEYMAP_LENOVO_GENERIC,
   3180	};
   3181
   3182	static const tpacpi_keymap_t tpacpi_keymaps[] __initconst = {
   3183	/* Generic keymap for IBM ThinkPads */
   3184	[TPACPI_KEYMAP_IBM_GENERIC] = {
   3185		/* Scan Codes 0x00 to 0x0B: ACPI HKEY FN+F1..F12 */
   3186		KEY_FN_F1,	KEY_BATTERY,	KEY_COFFEE,	KEY_SLEEP,
   3187		KEY_WLAN,	KEY_FN_F6, KEY_SWITCHVIDEOMODE, KEY_FN_F8,
   3188		KEY_FN_F9,	KEY_FN_F10,	KEY_FN_F11,	KEY_SUSPEND,
   3189
   3190		/* Scan codes 0x0C to 0x1F: Other ACPI HKEY hot keys */
   3191		KEY_UNKNOWN,	/* 0x0C: FN+BACKSPACE */
   3192		KEY_UNKNOWN,	/* 0x0D: FN+INSERT */
   3193		KEY_UNKNOWN,	/* 0x0E: FN+DELETE */
   3194
   3195		/* brightness: firmware always reacts to them */
   3196		KEY_RESERVED,	/* 0x0F: FN+HOME (brightness up) */
   3197		KEY_RESERVED,	/* 0x10: FN+END (brightness down) */
   3198
   3199		/* Thinklight: firmware always react to it */
   3200		KEY_RESERVED,	/* 0x11: FN+PGUP (thinklight toggle) */
   3201
   3202		KEY_UNKNOWN,	/* 0x12: FN+PGDOWN */
   3203		KEY_ZOOM,	/* 0x13: FN+SPACE (zoom) */
   3204
   3205		/* Volume: firmware always react to it and reprograms
   3206		 * the built-in *extra* mixer.  Never map it to control
   3207		 * another mixer by default. */
   3208		KEY_RESERVED,	/* 0x14: VOLUME UP */
   3209		KEY_RESERVED,	/* 0x15: VOLUME DOWN */
   3210		KEY_RESERVED,	/* 0x16: MUTE */
   3211
   3212		KEY_VENDOR,	/* 0x17: Thinkpad/AccessIBM/Lenovo */
   3213
   3214		/* (assignments unknown, please report if found) */
   3215		KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
   3216		KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
   3217
   3218		/* No assignments, only used for Adaptive keyboards. */
   3219		KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
   3220		KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
   3221		KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
   3222		KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
   3223		KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
   3224
   3225		/* No assignment, used for newer Lenovo models */
   3226		KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
   3227		KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
   3228		KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
   3229		KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
   3230		KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
   3231		KEY_UNKNOWN, KEY_UNKNOWN
   3232
   3233		},
   3234
   3235	/* Generic keymap for Lenovo ThinkPads */
   3236	[TPACPI_KEYMAP_LENOVO_GENERIC] = {
   3237		/* Scan Codes 0x00 to 0x0B: ACPI HKEY FN+F1..F12 */
   3238		KEY_FN_F1,	KEY_COFFEE,	KEY_BATTERY,	KEY_SLEEP,
   3239		KEY_WLAN,	KEY_CAMERA, KEY_SWITCHVIDEOMODE, KEY_FN_F8,
   3240		KEY_FN_F9,	KEY_FN_F10,	KEY_FN_F11,	KEY_SUSPEND,
   3241
   3242		/* Scan codes 0x0C to 0x1F: Other ACPI HKEY hot keys */
   3243		KEY_UNKNOWN,	/* 0x0C: FN+BACKSPACE */
   3244		KEY_UNKNOWN,	/* 0x0D: FN+INSERT */
   3245		KEY_UNKNOWN,	/* 0x0E: FN+DELETE */
   3246
   3247		/* These should be enabled --only-- when ACPI video
   3248		 * is disabled (i.e. in "vendor" mode), and are handled
   3249		 * in a special way by the init code */
   3250		KEY_BRIGHTNESSUP,	/* 0x0F: FN+HOME (brightness up) */
   3251		KEY_BRIGHTNESSDOWN,	/* 0x10: FN+END (brightness down) */
   3252
   3253		KEY_RESERVED,	/* 0x11: FN+PGUP (thinklight toggle) */
   3254
   3255		KEY_UNKNOWN,	/* 0x12: FN+PGDOWN */
   3256		KEY_ZOOM,	/* 0x13: FN+SPACE (zoom) */
   3257
   3258		/* Volume: z60/z61, T60 (BIOS version?): firmware always
   3259		 * react to it and reprograms the built-in *extra* mixer.
   3260		 * Never map it to control another mixer by default.
   3261		 *
   3262		 * T60?, T61, R60?, R61: firmware and EC tries to send
   3263		 * these over the regular keyboard, so these are no-ops,
   3264		 * but there are still weird bugs re. MUTE, so do not
   3265		 * change unless you get test reports from all Lenovo
   3266		 * models.  May cause the BIOS to interfere with the
   3267		 * HDA mixer.
   3268		 */
   3269		KEY_RESERVED,	/* 0x14: VOLUME UP */
   3270		KEY_RESERVED,	/* 0x15: VOLUME DOWN */
   3271		KEY_RESERVED,	/* 0x16: MUTE */
   3272
   3273		KEY_VENDOR,	/* 0x17: Thinkpad/AccessIBM/Lenovo */
   3274
   3275		/* (assignments unknown, please report if found) */
   3276		KEY_UNKNOWN, KEY_UNKNOWN,
   3277
   3278		/*
   3279		 * The mic mute button only sends 0x1a.  It does not
   3280		 * automatically mute the mic or change the mute light.
   3281		 */
   3282		KEY_MICMUTE,	/* 0x1a: Mic mute (since ?400 or so) */
   3283
   3284		/* (assignments unknown, please report if found) */
   3285		KEY_UNKNOWN,
   3286
   3287		/* Extra keys in use since the X240 / T440 / T540 */
   3288		KEY_CONFIG, KEY_SEARCH, KEY_SCALE, KEY_FILE,
   3289
   3290		/*
   3291		 * These are the adaptive keyboard keycodes for Carbon X1 2014.
   3292		 * The first item in this list is the Mute button which is
   3293		 * emitted with 0x103 through
   3294		 * adaptive_keyboard_hotkey_notify_hotkey() when the sound
   3295		 * symbol is held.
   3296		 * We'll need to offset those by 0x20.
   3297		 */
   3298		KEY_RESERVED,        /* Mute held, 0x103 */
   3299		KEY_BRIGHTNESS_MIN,  /* Backlight off */
   3300		KEY_RESERVED,        /* Clipping tool */
   3301		KEY_RESERVED,        /* Cloud */
   3302		KEY_RESERVED,
   3303		KEY_VOICECOMMAND,    /* Voice */
   3304		KEY_RESERVED,
   3305		KEY_RESERVED,        /* Gestures */
   3306		KEY_RESERVED,
   3307		KEY_RESERVED,
   3308		KEY_RESERVED,
   3309		KEY_CONFIG,          /* Settings */
   3310		KEY_RESERVED,        /* New tab */
   3311		KEY_REFRESH,         /* Reload */
   3312		KEY_BACK,            /* Back */
   3313		KEY_RESERVED,        /* Microphone down */
   3314		KEY_RESERVED,        /* Microphone up */
   3315		KEY_RESERVED,        /* Microphone cancellation */
   3316		KEY_RESERVED,        /* Camera mode */
   3317		KEY_RESERVED,        /* Rotate display, 0x116 */
   3318
   3319		/*
   3320		 * These are found in 2017 models (e.g. T470s, X270).
   3321		 * The lowest known value is 0x311, which according to
   3322		 * the manual should launch a user defined favorite
   3323		 * application.
   3324		 *
   3325		 * The offset for these is TP_ACPI_HOTKEYSCAN_EXTENDED_START,
   3326		 * corresponding to 0x34.
   3327		 */
   3328
   3329		/* (assignments unknown, please report if found) */
   3330		KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
   3331		KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
   3332		KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
   3333		KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN, KEY_UNKNOWN,
   3334		KEY_UNKNOWN,
   3335
   3336		KEY_BOOKMARKS,			/* Favorite app, 0x311 */
   3337		KEY_SELECTIVE_SCREENSHOT,	/* Clipping tool */
   3338		KEY_CALC,			/* Calculator (above numpad, P52) */
   3339		KEY_BLUETOOTH,			/* Bluetooth */
   3340		KEY_KEYBOARD,			/* Keyboard, 0x315 */
   3341		KEY_FN_RIGHT_SHIFT,		/* Fn + right Shift */
   3342		KEY_NOTIFICATION_CENTER,	/* Notification Center */
   3343		KEY_PICKUP_PHONE,		/* Answer incoming call */
   3344		KEY_HANGUP_PHONE,		/* Decline incoming call */
   3345		},
   3346	};
   3347
   3348	static const struct tpacpi_quirk tpacpi_keymap_qtable[] __initconst = {
   3349		/* Generic maps (fallback) */
   3350		{
   3351		  .vendor = PCI_VENDOR_ID_IBM,
   3352		  .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_ANY,
   3353		  .quirks = TPACPI_KEYMAP_IBM_GENERIC,
   3354		},
   3355		{
   3356		  .vendor = PCI_VENDOR_ID_LENOVO,
   3357		  .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_ANY,
   3358		  .quirks = TPACPI_KEYMAP_LENOVO_GENERIC,
   3359		},
   3360	};
   3361
   3362#define TPACPI_HOTKEY_MAP_SIZE		sizeof(tpacpi_keymap_t)
   3363#define TPACPI_HOTKEY_MAP_TYPESIZE	sizeof(tpacpi_keymap_entry_t)
   3364
   3365	int res, i;
   3366	int status;
   3367	int hkeyv;
   3368	bool radiosw_state  = false;
   3369	bool tabletsw_state = false;
   3370
   3371	unsigned long quirks;
   3372	unsigned long keymap_id;
   3373
   3374	vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
   3375			"initializing hotkey subdriver\n");
   3376
   3377	BUG_ON(!tpacpi_inputdev);
   3378	BUG_ON(tpacpi_inputdev->open != NULL ||
   3379	       tpacpi_inputdev->close != NULL);
   3380
   3381	TPACPI_ACPIHANDLE_INIT(hkey);
   3382	mutex_init(&hotkey_mutex);
   3383
   3384#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
   3385	mutex_init(&hotkey_thread_data_mutex);
   3386#endif
   3387
   3388	/* hotkey not supported on 570 */
   3389	tp_features.hotkey = hkey_handle != NULL;
   3390
   3391	vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
   3392		"hotkeys are %s\n",
   3393		str_supported(tp_features.hotkey));
   3394
   3395	if (!tp_features.hotkey)
   3396		return -ENODEV;
   3397
   3398	quirks = tpacpi_check_quirks(tpacpi_hotkey_qtable,
   3399				     ARRAY_SIZE(tpacpi_hotkey_qtable));
   3400
   3401	tpacpi_disable_brightness_delay();
   3402
   3403	/* mask not supported on 600e/x, 770e, 770x, A21e, A2xm/p,
   3404	   A30, R30, R31, T20-22, X20-21, X22-24.  Detected by checking
   3405	   for HKEY interface version 0x100 */
   3406	if (acpi_evalf(hkey_handle, &hkeyv, "MHKV", "qd")) {
   3407		vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
   3408			    "firmware HKEY interface version: 0x%x\n",
   3409			    hkeyv);
   3410
   3411		switch (hkeyv >> 8) {
   3412		case 1:
   3413			/*
   3414			 * MHKV 0x100 in A31, R40, R40e,
   3415			 * T4x, X31, and later
   3416			 */
   3417
   3418			/* Paranoia check AND init hotkey_all_mask */
   3419			if (!acpi_evalf(hkey_handle, &hotkey_all_mask,
   3420					"MHKA", "qd")) {
   3421				pr_err("missing MHKA handler, please report this to %s\n",
   3422				       TPACPI_MAIL);
   3423				/* Fallback: pre-init for FN+F3,F4,F12 */
   3424				hotkey_all_mask = 0x080cU;
   3425			} else {
   3426				tp_features.hotkey_mask = 1;
   3427			}
   3428			break;
   3429
   3430		case 2:
   3431			/*
   3432			 * MHKV 0x200 in X1, T460s, X260, T560, X1 Tablet (2016)
   3433			 */
   3434
   3435			/* Paranoia check AND init hotkey_all_mask */
   3436			if (!acpi_evalf(hkey_handle, &hotkey_all_mask,
   3437					"MHKA", "dd", 1)) {
   3438				pr_err("missing MHKA handler, please report this to %s\n",
   3439				       TPACPI_MAIL);
   3440				/* Fallback: pre-init for FN+F3,F4,F12 */
   3441				hotkey_all_mask = 0x080cU;
   3442			} else {
   3443				tp_features.hotkey_mask = 1;
   3444			}
   3445
   3446			/*
   3447			 * Check if we have an adaptive keyboard, like on the
   3448			 * Lenovo Carbon X1 2014 (2nd Gen).
   3449			 */
   3450			if (acpi_evalf(hkey_handle, &hotkey_adaptive_all_mask,
   3451				       "MHKA", "dd", 2)) {
   3452				if (hotkey_adaptive_all_mask != 0)
   3453					tp_features.has_adaptive_kbd = true;
   3454			} else {
   3455				tp_features.has_adaptive_kbd = false;
   3456				hotkey_adaptive_all_mask = 0x0U;
   3457			}
   3458			break;
   3459
   3460		default:
   3461			pr_err("unknown version of the HKEY interface: 0x%x\n",
   3462			       hkeyv);
   3463			pr_err("please report this to %s\n", TPACPI_MAIL);
   3464			break;
   3465		}
   3466	}
   3467
   3468	vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
   3469		"hotkey masks are %s\n",
   3470		str_supported(tp_features.hotkey_mask));
   3471
   3472	/* Init hotkey_all_mask if not initialized yet */
   3473	if (!tp_features.hotkey_mask && !hotkey_all_mask &&
   3474	    (quirks & TPACPI_HK_Q_INIMASK))
   3475		hotkey_all_mask = 0x080cU;  /* FN+F12, FN+F4, FN+F3 */
   3476
   3477	/* Init hotkey_acpi_mask and hotkey_orig_mask */
   3478	if (tp_features.hotkey_mask) {
   3479		/* hotkey_source_mask *must* be zero for
   3480		 * the first hotkey_mask_get to return hotkey_orig_mask */
   3481		res = hotkey_mask_get();
   3482		if (res)
   3483			return res;
   3484
   3485		hotkey_orig_mask = hotkey_acpi_mask;
   3486	} else {
   3487		hotkey_orig_mask = hotkey_all_mask;
   3488		hotkey_acpi_mask = hotkey_all_mask;
   3489	}
   3490
   3491#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
   3492	if (dbg_wlswemul) {
   3493		tp_features.hotkey_wlsw = 1;
   3494		radiosw_state = !!tpacpi_wlsw_emulstate;
   3495		pr_info("radio switch emulation enabled\n");
   3496	} else
   3497#endif
   3498	/* Not all thinkpads have a hardware radio switch */
   3499	if (acpi_evalf(hkey_handle, &status, "WLSW", "qd")) {
   3500		tp_features.hotkey_wlsw = 1;
   3501		radiosw_state = !!status;
   3502		pr_info("radio switch found; radios are %s\n",
   3503			enabled(status, 0));
   3504	}
   3505
   3506	tabletsw_state = hotkey_init_tablet_mode();
   3507
   3508	/* Set up key map */
   3509	keymap_id = tpacpi_check_quirks(tpacpi_keymap_qtable,
   3510					ARRAY_SIZE(tpacpi_keymap_qtable));
   3511	BUG_ON(keymap_id >= ARRAY_SIZE(tpacpi_keymaps));
   3512	dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
   3513		   "using keymap number %lu\n", keymap_id);
   3514
   3515	hotkey_keycode_map = kmemdup(&tpacpi_keymaps[keymap_id],
   3516			TPACPI_HOTKEY_MAP_SIZE,	GFP_KERNEL);
   3517	if (!hotkey_keycode_map) {
   3518		pr_err("failed to allocate memory for key map\n");
   3519		return -ENOMEM;
   3520	}
   3521
   3522	input_set_capability(tpacpi_inputdev, EV_MSC, MSC_SCAN);
   3523	tpacpi_inputdev->keycodesize = TPACPI_HOTKEY_MAP_TYPESIZE;
   3524	tpacpi_inputdev->keycodemax = TPACPI_HOTKEY_MAP_LEN;
   3525	tpacpi_inputdev->keycode = hotkey_keycode_map;
   3526	for (i = 0; i < TPACPI_HOTKEY_MAP_LEN; i++) {
   3527		if (hotkey_keycode_map[i] != KEY_RESERVED) {
   3528			input_set_capability(tpacpi_inputdev, EV_KEY,
   3529						hotkey_keycode_map[i]);
   3530		} else {
   3531			if (i < sizeof(hotkey_reserved_mask)*8)
   3532				hotkey_reserved_mask |= 1 << i;
   3533		}
   3534	}
   3535
   3536	if (tp_features.hotkey_wlsw) {
   3537		input_set_capability(tpacpi_inputdev, EV_SW, SW_RFKILL_ALL);
   3538		input_report_switch(tpacpi_inputdev,
   3539				    SW_RFKILL_ALL, radiosw_state);
   3540	}
   3541	if (tp_features.hotkey_tablet) {
   3542		input_set_capability(tpacpi_inputdev, EV_SW, SW_TABLET_MODE);
   3543		input_report_switch(tpacpi_inputdev,
   3544				    SW_TABLET_MODE, tabletsw_state);
   3545	}
   3546
   3547	/* Do not issue duplicate brightness change events to
   3548	 * userspace. tpacpi_detect_brightness_capabilities() must have
   3549	 * been called before this point  */
   3550	if (acpi_video_get_backlight_type() != acpi_backlight_vendor) {
   3551		pr_info("This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver\n");
   3552		pr_notice("Disabling thinkpad-acpi brightness events by default...\n");
   3553
   3554		/* Disable brightness up/down on Lenovo thinkpads when
   3555		 * ACPI is handling them, otherwise it is plain impossible
   3556		 * for userspace to do something even remotely sane */
   3557		hotkey_reserved_mask |=
   3558			(1 << TP_ACPI_HOTKEYSCAN_FNHOME)
   3559			| (1 << TP_ACPI_HOTKEYSCAN_FNEND);
   3560		hotkey_unmap(TP_ACPI_HOTKEYSCAN_FNHOME);
   3561		hotkey_unmap(TP_ACPI_HOTKEYSCAN_FNEND);
   3562	}
   3563
   3564#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
   3565	hotkey_source_mask = TPACPI_HKEY_NVRAM_GOOD_MASK
   3566				& ~hotkey_all_mask
   3567				& ~hotkey_reserved_mask;
   3568
   3569	vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
   3570		    "hotkey source mask 0x%08x, polling freq %u\n",
   3571		    hotkey_source_mask, hotkey_poll_freq);
   3572#endif
   3573
   3574	dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
   3575			"enabling firmware HKEY event interface...\n");
   3576	res = hotkey_status_set(true);
   3577	if (res) {
   3578		hotkey_exit();
   3579		return res;
   3580	}
   3581	res = hotkey_mask_set(((hotkey_all_mask & ~hotkey_reserved_mask)
   3582			       | hotkey_driver_mask)
   3583			      & ~hotkey_source_mask);
   3584	if (res < 0 && res != -ENXIO) {
   3585		hotkey_exit();
   3586		return res;
   3587	}
   3588	hotkey_user_mask = (hotkey_acpi_mask | hotkey_source_mask)
   3589				& ~hotkey_reserved_mask;
   3590	vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
   3591		"initial masks: user=0x%08x, fw=0x%08x, poll=0x%08x\n",
   3592		hotkey_user_mask, hotkey_acpi_mask, hotkey_source_mask);
   3593
   3594	tpacpi_inputdev->open = &hotkey_inputdev_open;
   3595	tpacpi_inputdev->close = &hotkey_inputdev_close;
   3596
   3597	hotkey_poll_setup_safe(true);
   3598
   3599	return 0;
   3600}
   3601
   3602/* Thinkpad X1 Carbon support 5 modes including Home mode, Web browser
   3603 * mode, Web conference mode, Function mode and Lay-flat mode.
   3604 * We support Home mode and Function mode currently.
   3605 *
   3606 * Will consider support rest of modes in future.
   3607 *
   3608 */
   3609static const int adaptive_keyboard_modes[] = {
   3610	HOME_MODE,
   3611/*	WEB_BROWSER_MODE = 2,
   3612	WEB_CONFERENCE_MODE = 3, */
   3613	FUNCTION_MODE
   3614};
   3615
   3616#define DFR_CHANGE_ROW			0x101
   3617#define DFR_SHOW_QUICKVIEW_ROW		0x102
   3618#define FIRST_ADAPTIVE_KEY		0x103
   3619
   3620/* press Fn key a while second, it will switch to Function Mode. Then
   3621 * release Fn key, previous mode be restored.
   3622 */
   3623static bool adaptive_keyboard_mode_is_saved;
   3624static int adaptive_keyboard_prev_mode;
   3625
   3626static int adaptive_keyboard_get_mode(void)
   3627{
   3628	int mode = 0;
   3629
   3630	if (!acpi_evalf(hkey_handle, &mode, "GTRW", "dd", 0)) {
   3631		pr_err("Cannot read adaptive keyboard mode\n");
   3632		return -EIO;
   3633	}
   3634
   3635	return mode;
   3636}
   3637
   3638static int adaptive_keyboard_set_mode(int new_mode)
   3639{
   3640	if (new_mode < 0 ||
   3641		new_mode > LAYFLAT_MODE)
   3642		return -EINVAL;
   3643
   3644	if (!acpi_evalf(hkey_handle, NULL, "STRW", "vd", new_mode)) {
   3645		pr_err("Cannot set adaptive keyboard mode\n");
   3646		return -EIO;
   3647	}
   3648
   3649	return 0;
   3650}
   3651
   3652static int adaptive_keyboard_get_next_mode(int mode)
   3653{
   3654	size_t i;
   3655	size_t max_mode = ARRAY_SIZE(adaptive_keyboard_modes) - 1;
   3656
   3657	for (i = 0; i <= max_mode; i++) {
   3658		if (adaptive_keyboard_modes[i] == mode)
   3659			break;
   3660	}
   3661
   3662	if (i >= max_mode)
   3663		i = 0;
   3664	else
   3665		i++;
   3666
   3667	return adaptive_keyboard_modes[i];
   3668}
   3669
   3670static bool adaptive_keyboard_hotkey_notify_hotkey(unsigned int scancode)
   3671{
   3672	int current_mode = 0;
   3673	int new_mode = 0;
   3674	int keycode;
   3675
   3676	switch (scancode) {
   3677	case DFR_CHANGE_ROW:
   3678		if (adaptive_keyboard_mode_is_saved) {
   3679			new_mode = adaptive_keyboard_prev_mode;
   3680			adaptive_keyboard_mode_is_saved = false;
   3681		} else {
   3682			current_mode = adaptive_keyboard_get_mode();
   3683			if (current_mode < 0)
   3684				return false;
   3685			new_mode = adaptive_keyboard_get_next_mode(
   3686					current_mode);
   3687		}
   3688
   3689		if (adaptive_keyboard_set_mode(new_mode) < 0)
   3690			return false;
   3691
   3692		return true;
   3693
   3694	case DFR_SHOW_QUICKVIEW_ROW:
   3695		current_mode = adaptive_keyboard_get_mode();
   3696		if (current_mode < 0)
   3697			return false;
   3698
   3699		adaptive_keyboard_prev_mode = current_mode;
   3700		adaptive_keyboard_mode_is_saved = true;
   3701
   3702		if (adaptive_keyboard_set_mode (FUNCTION_MODE) < 0)
   3703			return false;
   3704		return true;
   3705
   3706	default:
   3707		if (scancode < FIRST_ADAPTIVE_KEY ||
   3708		    scancode >= FIRST_ADAPTIVE_KEY +
   3709		    TP_ACPI_HOTKEYSCAN_EXTENDED_START -
   3710		    TP_ACPI_HOTKEYSCAN_ADAPTIVE_START) {
   3711			pr_info("Unhandled adaptive keyboard key: 0x%x\n",
   3712				scancode);
   3713			return false;
   3714		}
   3715		keycode = hotkey_keycode_map[scancode - FIRST_ADAPTIVE_KEY +
   3716					     TP_ACPI_HOTKEYSCAN_ADAPTIVE_START];
   3717		if (keycode != KEY_RESERVED) {
   3718			mutex_lock(&tpacpi_inputdev_send_mutex);
   3719
   3720			input_report_key(tpacpi_inputdev, keycode, 1);
   3721			input_sync(tpacpi_inputdev);
   3722
   3723			input_report_key(tpacpi_inputdev, keycode, 0);
   3724			input_sync(tpacpi_inputdev);
   3725
   3726			mutex_unlock(&tpacpi_inputdev_send_mutex);
   3727		}
   3728		return true;
   3729	}
   3730}
   3731
   3732static bool hotkey_notify_extended_hotkey(const u32 hkey)
   3733{
   3734	unsigned int scancode;
   3735
   3736	switch (hkey) {
   3737	case TP_HKEY_EV_PRIVACYGUARD_TOGGLE:
   3738		tpacpi_driver_event(hkey);
   3739		return true;
   3740	}
   3741
   3742	/* Extended keycodes start at 0x300 and our offset into the map
   3743	 * TP_ACPI_HOTKEYSCAN_EXTENDED_START. The calculated scancode
   3744	 * will be positive, but might not be in the correct range.
   3745	 */
   3746	scancode = (hkey & 0xfff) - (0x300 - TP_ACPI_HOTKEYSCAN_EXTENDED_START);
   3747	if (scancode >= TP_ACPI_HOTKEYSCAN_EXTENDED_START &&
   3748	    scancode < TPACPI_HOTKEY_MAP_LEN) {
   3749		tpacpi_input_send_key(scancode);
   3750		return true;
   3751	}
   3752
   3753	return false;
   3754}
   3755
   3756static bool hotkey_notify_hotkey(const u32 hkey,
   3757				 bool *send_acpi_ev,
   3758				 bool *ignore_acpi_ev)
   3759{
   3760	/* 0x1000-0x1FFF: key presses */
   3761	unsigned int scancode = hkey & 0xfff;
   3762	*send_acpi_ev = true;
   3763	*ignore_acpi_ev = false;
   3764
   3765	/*
   3766	 * Original events are in the 0x10XX range, the adaptive keyboard
   3767	 * found in 2014 X1 Carbon emits events are of 0x11XX. In 2017
   3768	 * models, additional keys are emitted through 0x13XX.
   3769	 */
   3770	switch ((hkey >> 8) & 0xf) {
   3771	case 0:
   3772		if (scancode > 0 &&
   3773		    scancode <= TP_ACPI_HOTKEYSCAN_ADAPTIVE_START) {
   3774			/* HKEY event 0x1001 is scancode 0x00 */
   3775			scancode--;
   3776			if (!(hotkey_source_mask & (1 << scancode))) {
   3777				tpacpi_input_send_key_masked(scancode);
   3778				*send_acpi_ev = false;
   3779			} else {
   3780				*ignore_acpi_ev = true;
   3781			}
   3782			return true;
   3783		}
   3784		break;
   3785
   3786	case 1:
   3787		return adaptive_keyboard_hotkey_notify_hotkey(scancode);
   3788
   3789	case 3:
   3790		return hotkey_notify_extended_hotkey(hkey);
   3791	}
   3792
   3793	return false;
   3794}
   3795
   3796static bool hotkey_notify_wakeup(const u32 hkey,
   3797				 bool *send_acpi_ev,
   3798				 bool *ignore_acpi_ev)
   3799{
   3800	/* 0x2000-0x2FFF: Wakeup reason */
   3801	*send_acpi_ev = true;
   3802	*ignore_acpi_ev = false;
   3803
   3804	switch (hkey) {
   3805	case TP_HKEY_EV_WKUP_S3_UNDOCK: /* suspend, undock */
   3806	case TP_HKEY_EV_WKUP_S4_UNDOCK: /* hibernation, undock */
   3807		hotkey_wakeup_reason = TP_ACPI_WAKEUP_UNDOCK;
   3808		*ignore_acpi_ev = true;
   3809		break;
   3810
   3811	case TP_HKEY_EV_WKUP_S3_BAYEJ: /* suspend, bay eject */
   3812	case TP_HKEY_EV_WKUP_S4_BAYEJ: /* hibernation, bay eject */
   3813		hotkey_wakeup_reason = TP_ACPI_WAKEUP_BAYEJ;
   3814		*ignore_acpi_ev = true;
   3815		break;
   3816
   3817	case TP_HKEY_EV_WKUP_S3_BATLOW: /* Battery on critical low level/S3 */
   3818	case TP_HKEY_EV_WKUP_S4_BATLOW: /* Battery on critical low level/S4 */
   3819		pr_alert("EMERGENCY WAKEUP: battery almost empty\n");
   3820		/* how to auto-heal: */
   3821		/* 2313: woke up from S3, go to S4/S5 */
   3822		/* 2413: woke up from S4, go to S5 */
   3823		break;
   3824
   3825	default:
   3826		return false;
   3827	}
   3828
   3829	if (hotkey_wakeup_reason != TP_ACPI_WAKEUP_NONE) {
   3830		pr_info("woke up due to a hot-unplug request...\n");
   3831		hotkey_wakeup_reason_notify_change();
   3832	}
   3833	return true;
   3834}
   3835
   3836static bool hotkey_notify_dockevent(const u32 hkey,
   3837				 bool *send_acpi_ev,
   3838				 bool *ignore_acpi_ev)
   3839{
   3840	/* 0x4000-0x4FFF: dock-related events */
   3841	*send_acpi_ev = true;
   3842	*ignore_acpi_ev = false;
   3843
   3844	switch (hkey) {
   3845	case TP_HKEY_EV_UNDOCK_ACK:
   3846		/* ACPI undock operation completed after wakeup */
   3847		hotkey_autosleep_ack = 1;
   3848		pr_info("undocked\n");
   3849		hotkey_wakeup_hotunplug_complete_notify_change();
   3850		return true;
   3851
   3852	case TP_HKEY_EV_HOTPLUG_DOCK: /* docked to port replicator */
   3853		pr_info("docked into hotplug port replicator\n");
   3854		return true;
   3855	case TP_HKEY_EV_HOTPLUG_UNDOCK: /* undocked from port replicator */
   3856		pr_info("undocked from hotplug port replicator\n");
   3857		return true;
   3858
   3859	/*
   3860	 * Deliberately ignore attaching and detaching the keybord cover to avoid
   3861	 * duplicates from intel-vbtn, which already emits SW_TABLET_MODE events
   3862	 * to userspace.
   3863	 *
   3864	 * Please refer to the following thread for more information and a preliminary
   3865	 * implementation using the GTOP ("Get Tablet OPtions") interface that could be
   3866	 * extended to other attachment options of the ThinkPad X1 Tablet series, such as
   3867	 * the Pico cartridge dock module:
   3868	 * https://lore.kernel.org/platform-driver-x86/38cb8265-1e30-d547-9e12-b4ae290be737@a-kobel.de/
   3869	 */
   3870	case TP_HKEY_EV_KBD_COVER_ATTACH:
   3871	case TP_HKEY_EV_KBD_COVER_DETACH:
   3872		*send_acpi_ev = false;
   3873		*ignore_acpi_ev = true;
   3874		return true;
   3875
   3876	default:
   3877		return false;
   3878	}
   3879}
   3880
   3881static bool hotkey_notify_usrevent(const u32 hkey,
   3882				 bool *send_acpi_ev,
   3883				 bool *ignore_acpi_ev)
   3884{
   3885	/* 0x5000-0x5FFF: human interface helpers */
   3886	*send_acpi_ev = true;
   3887	*ignore_acpi_ev = false;
   3888
   3889	switch (hkey) {
   3890	case TP_HKEY_EV_PEN_INSERTED:  /* X61t: tablet pen inserted into bay */
   3891	case TP_HKEY_EV_PEN_REMOVED:   /* X61t: tablet pen removed from bay */
   3892		return true;
   3893
   3894	case TP_HKEY_EV_TABLET_TABLET:   /* X41t-X61t: tablet mode */
   3895	case TP_HKEY_EV_TABLET_NOTEBOOK: /* X41t-X61t: normal mode */
   3896		tpacpi_input_send_tabletsw();
   3897		hotkey_tablet_mode_notify_change();
   3898		*send_acpi_ev = false;
   3899		return true;
   3900
   3901	case TP_HKEY_EV_LID_CLOSE:	/* Lid closed */
   3902	case TP_HKEY_EV_LID_OPEN:	/* Lid opened */
   3903	case TP_HKEY_EV_BRGHT_CHANGED:	/* brightness changed */
   3904		/* do not propagate these events */
   3905		*ignore_acpi_ev = true;
   3906		return true;
   3907
   3908	default:
   3909		return false;
   3910	}
   3911}
   3912
   3913static void thermal_dump_all_sensors(void);
   3914static void palmsensor_refresh(void);
   3915
   3916static bool hotkey_notify_6xxx(const u32 hkey,
   3917				 bool *send_acpi_ev,
   3918				 bool *ignore_acpi_ev)
   3919{
   3920	/* 0x6000-0x6FFF: thermal alarms/notices and keyboard events */
   3921	*send_acpi_ev = true;
   3922	*ignore_acpi_ev = false;
   3923
   3924	switch (hkey) {
   3925	case TP_HKEY_EV_THM_TABLE_CHANGED:
   3926		pr_debug("EC reports: Thermal Table has changed\n");
   3927		/* recommended action: do nothing, we don't have
   3928		 * Lenovo ATM information */
   3929		return true;
   3930	case TP_HKEY_EV_THM_CSM_COMPLETED:
   3931		pr_debug("EC reports: Thermal Control Command set completed (DYTC)\n");
   3932		/* Thermal event - pass on to event handler */
   3933		tpacpi_driver_event(hkey);
   3934		return true;
   3935	case TP_HKEY_EV_THM_TRANSFM_CHANGED:
   3936		pr_debug("EC reports: Thermal Transformation changed (GMTS)\n");
   3937		/* recommended action: do nothing, we don't have
   3938		 * Lenovo ATM information */
   3939		return true;
   3940	case TP_HKEY_EV_ALARM_BAT_HOT:
   3941		pr_crit("THERMAL ALARM: battery is too hot!\n");
   3942		/* recommended action: warn user through gui */
   3943		break;
   3944	case TP_HKEY_EV_ALARM_BAT_XHOT:
   3945		pr_alert("THERMAL EMERGENCY: battery is extremely hot!\n");
   3946		/* recommended action: immediate sleep/hibernate */
   3947		break;
   3948	case TP_HKEY_EV_ALARM_SENSOR_HOT:
   3949		pr_crit("THERMAL ALARM: a sensor reports something is too hot!\n");
   3950		/* recommended action: warn user through gui, that */
   3951		/* some internal component is too hot */
   3952		break;
   3953	case TP_HKEY_EV_ALARM_SENSOR_XHOT:
   3954		pr_alert("THERMAL EMERGENCY: a sensor reports something is extremely hot!\n");
   3955		/* recommended action: immediate sleep/hibernate */
   3956		break;
   3957	case TP_HKEY_EV_AC_CHANGED:
   3958		/* X120e, X121e, X220, X220i, X220t, X230, T420, T420s, W520:
   3959		 * AC status changed; can be triggered by plugging or
   3960		 * unplugging AC adapter, docking or undocking. */
   3961
   3962		fallthrough;
   3963
   3964	case TP_HKEY_EV_KEY_NUMLOCK:
   3965	case TP_HKEY_EV_KEY_FN:
   3966		/* key press events, we just ignore them as long as the EC
   3967		 * is still reporting them in the normal keyboard stream */
   3968		*send_acpi_ev = false;
   3969		*ignore_acpi_ev = true;
   3970		return true;
   3971
   3972	case TP_HKEY_EV_KEY_FN_ESC:
   3973		/* Get the media key status to force the status LED to update */
   3974		acpi_evalf(hkey_handle, NULL, "GMKS", "v");
   3975		*send_acpi_ev = false;
   3976		*ignore_acpi_ev = true;
   3977		return true;
   3978
   3979	case TP_HKEY_EV_TABLET_CHANGED:
   3980		tpacpi_input_send_tabletsw();
   3981		hotkey_tablet_mode_notify_change();
   3982		*send_acpi_ev = false;
   3983		return true;
   3984
   3985	case TP_HKEY_EV_PALM_DETECTED:
   3986	case TP_HKEY_EV_PALM_UNDETECTED:
   3987		/* palm detected  - pass on to event handler */
   3988		palmsensor_refresh();
   3989		return true;
   3990
   3991	default:
   3992		/* report simply as unknown, no sensor dump */
   3993		return false;
   3994	}
   3995
   3996	thermal_dump_all_sensors();
   3997	return true;
   3998}
   3999
   4000static void hotkey_notify(struct ibm_struct *ibm, u32 event)
   4001{
   4002	u32 hkey;
   4003	bool send_acpi_ev;
   4004	bool ignore_acpi_ev;
   4005	bool known_ev;
   4006
   4007	if (event != 0x80) {
   4008		pr_err("unknown HKEY notification event %d\n", event);
   4009		/* forward it to userspace, maybe it knows how to handle it */
   4010		acpi_bus_generate_netlink_event(
   4011					ibm->acpi->device->pnp.device_class,
   4012					dev_name(&ibm->acpi->device->dev),
   4013					event, 0);
   4014		return;
   4015	}
   4016
   4017	while (1) {
   4018		if (!acpi_evalf(hkey_handle, &hkey, "MHKP", "d")) {
   4019			pr_err("failed to retrieve HKEY event\n");
   4020			return;
   4021		}
   4022
   4023		if (hkey == 0) {
   4024			/* queue empty */
   4025			return;
   4026		}
   4027
   4028		send_acpi_ev = true;
   4029		ignore_acpi_ev = false;
   4030
   4031		switch (hkey >> 12) {
   4032		case 1:
   4033			/* 0x1000-0x1FFF: key presses */
   4034			known_ev = hotkey_notify_hotkey(hkey, &send_acpi_ev,
   4035						 &ignore_acpi_ev);
   4036			break;
   4037		case 2:
   4038			/* 0x2000-0x2FFF: Wakeup reason */
   4039			known_ev = hotkey_notify_wakeup(hkey, &send_acpi_ev,
   4040						 &ignore_acpi_ev);
   4041			break;
   4042		case 3:
   4043			/* 0x3000-0x3FFF: bay-related wakeups */
   4044			switch (hkey) {
   4045			case TP_HKEY_EV_BAYEJ_ACK:
   4046				hotkey_autosleep_ack = 1;
   4047				pr_info("bay ejected\n");
   4048				hotkey_wakeup_hotunplug_complete_notify_change();
   4049				known_ev = true;
   4050				break;
   4051			case TP_HKEY_EV_OPTDRV_EJ:
   4052				/* FIXME: kick libata if SATA link offline */
   4053				known_ev = true;
   4054				break;
   4055			default:
   4056				known_ev = false;
   4057			}
   4058			break;
   4059		case 4:
   4060			/* 0x4000-0x4FFF: dock-related events */
   4061			known_ev = hotkey_notify_dockevent(hkey, &send_acpi_ev,
   4062						&ignore_acpi_ev);
   4063			break;
   4064		case 5:
   4065			/* 0x5000-0x5FFF: human interface helpers */
   4066			known_ev = hotkey_notify_usrevent(hkey, &send_acpi_ev,
   4067						 &ignore_acpi_ev);
   4068			break;
   4069		case 6:
   4070			/* 0x6000-0x6FFF: thermal alarms/notices and
   4071			 *                keyboard events */
   4072			known_ev = hotkey_notify_6xxx(hkey, &send_acpi_ev,
   4073						 &ignore_acpi_ev);
   4074			break;
   4075		case 7:
   4076			/* 0x7000-0x7FFF: misc */
   4077			if (tp_features.hotkey_wlsw &&
   4078					hkey == TP_HKEY_EV_RFKILL_CHANGED) {
   4079				tpacpi_send_radiosw_update();
   4080				send_acpi_ev = 0;
   4081				known_ev = true;
   4082				break;
   4083			}
   4084			fallthrough;	/* to default */
   4085		default:
   4086			known_ev = false;
   4087		}
   4088		if (!known_ev) {
   4089			pr_notice("unhandled HKEY event 0x%04x\n", hkey);
   4090			pr_notice("please report the conditions when this event happened to %s\n",
   4091				  TPACPI_MAIL);
   4092		}
   4093
   4094		/* netlink events */
   4095		if (!ignore_acpi_ev && send_acpi_ev) {
   4096			acpi_bus_generate_netlink_event(
   4097					ibm->acpi->device->pnp.device_class,
   4098					dev_name(&ibm->acpi->device->dev),
   4099					event, hkey);
   4100		}
   4101	}
   4102}
   4103
   4104static void hotkey_suspend(void)
   4105{
   4106	/* Do these on suspend, we get the events on early resume! */
   4107	hotkey_wakeup_reason = TP_ACPI_WAKEUP_NONE;
   4108	hotkey_autosleep_ack = 0;
   4109
   4110	/* save previous mode of adaptive keyboard of X1 Carbon */
   4111	if (tp_features.has_adaptive_kbd) {
   4112		if (!acpi_evalf(hkey_handle, &adaptive_keyboard_prev_mode,
   4113					"GTRW", "dd", 0)) {
   4114			pr_err("Cannot read adaptive keyboard mode.\n");
   4115		}
   4116	}
   4117}
   4118
   4119static void hotkey_resume(void)
   4120{
   4121	tpacpi_disable_brightness_delay();
   4122
   4123	if (hotkey_status_set(true) < 0 ||
   4124	    hotkey_mask_set(hotkey_acpi_mask) < 0)
   4125		pr_err("error while attempting to reset the event firmware interface\n");
   4126
   4127	tpacpi_send_radiosw_update();
   4128	tpacpi_input_send_tabletsw();
   4129	hotkey_tablet_mode_notify_change();
   4130	hotkey_wakeup_reason_notify_change();
   4131	hotkey_wakeup_hotunplug_complete_notify_change();
   4132	hotkey_poll_setup_safe(false);
   4133
   4134	/* restore previous mode of adapive keyboard of X1 Carbon */
   4135	if (tp_features.has_adaptive_kbd) {
   4136		if (!acpi_evalf(hkey_handle, NULL, "STRW", "vd",
   4137					adaptive_keyboard_prev_mode)) {
   4138			pr_err("Cannot set adaptive keyboard mode.\n");
   4139		}
   4140	}
   4141}
   4142
   4143/* procfs -------------------------------------------------------------- */
   4144static int hotkey_read(struct seq_file *m)
   4145{
   4146	int res, status;
   4147
   4148	if (!tp_features.hotkey) {
   4149		seq_printf(m, "status:\t\tnot supported\n");
   4150		return 0;
   4151	}
   4152
   4153	if (mutex_lock_killable(&hotkey_mutex))
   4154		return -ERESTARTSYS;
   4155	res = hotkey_status_get(&status);
   4156	if (!res)
   4157		res = hotkey_mask_get();
   4158	mutex_unlock(&hotkey_mutex);
   4159	if (res)
   4160		return res;
   4161
   4162	seq_printf(m, "status:\t\t%s\n", enabled(status, 0));
   4163	if (hotkey_all_mask) {
   4164		seq_printf(m, "mask:\t\t0x%08x\n", hotkey_user_mask);
   4165		seq_printf(m, "commands:\tenable, disable, reset, <mask>\n");
   4166	} else {
   4167		seq_printf(m, "mask:\t\tnot supported\n");
   4168		seq_printf(m, "commands:\tenable, disable, reset\n");
   4169	}
   4170
   4171	return 0;
   4172}
   4173
   4174static void hotkey_enabledisable_warn(bool enable)
   4175{
   4176	tpacpi_log_usertask("procfs hotkey enable/disable");
   4177	if (!WARN((tpacpi_lifecycle == TPACPI_LIFE_RUNNING || !enable),
   4178		  pr_fmt("hotkey enable/disable functionality has been removed from the driver.  Hotkeys are always enabled.\n")))
   4179		pr_err("Please remove the hotkey=enable module parameter, it is deprecated.  Hotkeys are always enabled.\n");
   4180}
   4181
   4182static int hotkey_write(char *buf)
   4183{
   4184	int res;
   4185	u32 mask;
   4186	char *cmd;
   4187
   4188	if (!tp_features.hotkey)
   4189		return -ENODEV;
   4190
   4191	if (mutex_lock_killable(&hotkey_mutex))
   4192		return -ERESTARTSYS;
   4193
   4194	mask = hotkey_user_mask;
   4195
   4196	res = 0;
   4197	while ((cmd = strsep(&buf, ","))) {
   4198		if (strlencmp(cmd, "enable") == 0) {
   4199			hotkey_enabledisable_warn(1);
   4200		} else if (strlencmp(cmd, "disable") == 0) {
   4201			hotkey_enabledisable_warn(0);
   4202			res = -EPERM;
   4203		} else if (strlencmp(cmd, "reset") == 0) {
   4204			mask = (hotkey_all_mask | hotkey_source_mask)
   4205				& ~hotkey_reserved_mask;
   4206		} else if (sscanf(cmd, "0x%x", &mask) == 1) {
   4207			/* mask set */
   4208		} else if (sscanf(cmd, "%x", &mask) == 1) {
   4209			/* mask set */
   4210		} else {
   4211			res = -EINVAL;
   4212			goto errexit;
   4213		}
   4214	}
   4215
   4216	if (!res) {
   4217		tpacpi_disclose_usertask("procfs hotkey",
   4218			"set mask to 0x%08x\n", mask);
   4219		res = hotkey_user_mask_set(mask);
   4220	}
   4221
   4222errexit:
   4223	mutex_unlock(&hotkey_mutex);
   4224	return res;
   4225}
   4226
   4227static const struct acpi_device_id ibm_htk_device_ids[] = {
   4228	{TPACPI_ACPI_IBM_HKEY_HID, 0},
   4229	{TPACPI_ACPI_LENOVO_HKEY_HID, 0},
   4230	{TPACPI_ACPI_LENOVO_HKEY_V2_HID, 0},
   4231	{"", 0},
   4232};
   4233
   4234static struct tp_acpi_drv_struct ibm_hotkey_acpidriver = {
   4235	.hid = ibm_htk_device_ids,
   4236	.notify = hotkey_notify,
   4237	.handle = &hkey_handle,
   4238	.type = ACPI_DEVICE_NOTIFY,
   4239};
   4240
   4241static struct ibm_struct hotkey_driver_data = {
   4242	.name = "hotkey",
   4243	.read = hotkey_read,
   4244	.write = hotkey_write,
   4245	.exit = hotkey_exit,
   4246	.resume = hotkey_resume,
   4247	.suspend = hotkey_suspend,
   4248	.acpi = &ibm_hotkey_acpidriver,
   4249};
   4250
   4251/*************************************************************************
   4252 * Bluetooth subdriver
   4253 */
   4254
   4255enum {
   4256	/* ACPI GBDC/SBDC bits */
   4257	TP_ACPI_BLUETOOTH_HWPRESENT	= 0x01,	/* Bluetooth hw available */
   4258	TP_ACPI_BLUETOOTH_RADIOSSW	= 0x02,	/* Bluetooth radio enabled */
   4259	TP_ACPI_BLUETOOTH_RESUMECTRL	= 0x04,	/* Bluetooth state at resume:
   4260						   0 = disable, 1 = enable */
   4261};
   4262
   4263enum {
   4264	/* ACPI \BLTH commands */
   4265	TP_ACPI_BLTH_GET_ULTRAPORT_ID	= 0x00, /* Get Ultraport BT ID */
   4266	TP_ACPI_BLTH_GET_PWR_ON_RESUME	= 0x01, /* Get power-on-resume state */
   4267	TP_ACPI_BLTH_PWR_ON_ON_RESUME	= 0x02, /* Resume powered on */
   4268	TP_ACPI_BLTH_PWR_OFF_ON_RESUME	= 0x03,	/* Resume powered off */
   4269	TP_ACPI_BLTH_SAVE_STATE		= 0x05, /* Save state for S4/S5 */
   4270};
   4271
   4272#define TPACPI_RFK_BLUETOOTH_SW_NAME	"tpacpi_bluetooth_sw"
   4273
   4274static int bluetooth_get_status(void)
   4275{
   4276	int status;
   4277
   4278#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
   4279	if (dbg_bluetoothemul)
   4280		return (tpacpi_bluetooth_emulstate) ?
   4281		       TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
   4282#endif
   4283
   4284	if (!acpi_evalf(hkey_handle, &status, "GBDC", "d"))
   4285		return -EIO;
   4286
   4287	return ((status & TP_ACPI_BLUETOOTH_RADIOSSW) != 0) ?
   4288			TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
   4289}
   4290
   4291static int bluetooth_set_status(enum tpacpi_rfkill_state state)
   4292{
   4293	int status;
   4294
   4295	vdbg_printk(TPACPI_DBG_RFKILL,
   4296		"will attempt to %s bluetooth\n",
   4297		(state == TPACPI_RFK_RADIO_ON) ? "enable" : "disable");
   4298
   4299#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
   4300	if (dbg_bluetoothemul) {
   4301		tpacpi_bluetooth_emulstate = (state == TPACPI_RFK_RADIO_ON);
   4302		return 0;
   4303	}
   4304#endif
   4305
   4306	if (state == TPACPI_RFK_RADIO_ON)
   4307		status = TP_ACPI_BLUETOOTH_RADIOSSW
   4308			  | TP_ACPI_BLUETOOTH_RESUMECTRL;
   4309	else
   4310		status = 0;
   4311
   4312	if (!acpi_evalf(hkey_handle, NULL, "SBDC", "vd", status))
   4313		return -EIO;
   4314
   4315	return 0;
   4316}
   4317
   4318/* sysfs bluetooth enable ---------------------------------------------- */
   4319static ssize_t bluetooth_enable_show(struct device *dev,
   4320			   struct device_attribute *attr,
   4321			   char *buf)
   4322{
   4323	return tpacpi_rfk_sysfs_enable_show(TPACPI_RFK_BLUETOOTH_SW_ID,
   4324			attr, buf);
   4325}
   4326
   4327static ssize_t bluetooth_enable_store(struct device *dev,
   4328			    struct device_attribute *attr,
   4329			    const char *buf, size_t count)
   4330{
   4331	return tpacpi_rfk_sysfs_enable_store(TPACPI_RFK_BLUETOOTH_SW_ID,
   4332				attr, buf, count);
   4333}
   4334
   4335static DEVICE_ATTR_RW(bluetooth_enable);
   4336
   4337/* --------------------------------------------------------------------- */
   4338
   4339static struct attribute *bluetooth_attributes[] = {
   4340	&dev_attr_bluetooth_enable.attr,
   4341	NULL
   4342};
   4343
   4344static umode_t bluetooth_attr_is_visible(struct kobject *kobj,
   4345					 struct attribute *attr, int n)
   4346{
   4347	return tp_features.bluetooth ? attr->mode : 0;
   4348}
   4349
   4350static const struct attribute_group bluetooth_attr_group = {
   4351	.is_visible = bluetooth_attr_is_visible,
   4352	.attrs = bluetooth_attributes,
   4353};
   4354
   4355static const struct tpacpi_rfk_ops bluetooth_tprfk_ops = {
   4356	.get_status = bluetooth_get_status,
   4357	.set_status = bluetooth_set_status,
   4358};
   4359
   4360static void bluetooth_shutdown(void)
   4361{
   4362	/* Order firmware to save current state to NVRAM */
   4363	if (!acpi_evalf(NULL, NULL, "\\BLTH", "vd",
   4364			TP_ACPI_BLTH_SAVE_STATE))
   4365		pr_notice("failed to save bluetooth state to NVRAM\n");
   4366	else
   4367		vdbg_printk(TPACPI_DBG_RFKILL,
   4368			"bluetooth state saved to NVRAM\n");
   4369}
   4370
   4371static void bluetooth_exit(void)
   4372{
   4373	tpacpi_destroy_rfkill(TPACPI_RFK_BLUETOOTH_SW_ID);
   4374	bluetooth_shutdown();
   4375}
   4376
   4377static const struct dmi_system_id fwbug_list[] __initconst = {
   4378	{
   4379		.ident = "ThinkPad E485",
   4380		.driver_data = &quirk_btusb_bug,
   4381		.matches = {
   4382			DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
   4383			DMI_MATCH(DMI_BOARD_NAME, "20KU"),
   4384		},
   4385	},
   4386	{
   4387		.ident = "ThinkPad E585",
   4388		.driver_data = &quirk_btusb_bug,
   4389		.matches = {
   4390			DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
   4391			DMI_MATCH(DMI_BOARD_NAME, "20KV"),
   4392		},
   4393	},
   4394	{
   4395		.ident = "ThinkPad A285 - 20MW",
   4396		.driver_data = &quirk_btusb_bug,
   4397		.matches = {
   4398			DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
   4399			DMI_MATCH(DMI_BOARD_NAME, "20MW"),
   4400		},
   4401	},
   4402	{
   4403		.ident = "ThinkPad A285 - 20MX",
   4404		.driver_data = &quirk_btusb_bug,
   4405		.matches = {
   4406			DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
   4407			DMI_MATCH(DMI_BOARD_NAME, "20MX"),
   4408		},
   4409	},
   4410	{
   4411		.ident = "ThinkPad A485 - 20MU",
   4412		.driver_data = &quirk_btusb_bug,
   4413		.matches = {
   4414			DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
   4415			DMI_MATCH(DMI_BOARD_NAME, "20MU"),
   4416		},
   4417	},
   4418	{
   4419		.ident = "ThinkPad A485 - 20MV",
   4420		.driver_data = &quirk_btusb_bug,
   4421		.matches = {
   4422			DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
   4423			DMI_MATCH(DMI_BOARD_NAME, "20MV"),
   4424		},
   4425	},
   4426	{
   4427		.ident = "L14 Gen2 AMD",
   4428		.driver_data = &quirk_s2idle_bug,
   4429		.matches = {
   4430			DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"),
   4431			DMI_MATCH(DMI_PRODUCT_NAME, "20X5"),
   4432		}
   4433	},
   4434	{
   4435		.ident = "T14s Gen2 AMD",
   4436		.driver_data = &quirk_s2idle_bug,
   4437		.matches = {
   4438			DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"),
   4439			DMI_MATCH(DMI_PRODUCT_NAME, "20XF"),
   4440		}
   4441	},
   4442	{
   4443		.ident = "X13 Gen2 AMD",
   4444		.driver_data = &quirk_s2idle_bug,
   4445		.matches = {
   4446			DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"),
   4447			DMI_MATCH(DMI_PRODUCT_NAME, "20XH"),
   4448		}
   4449	},
   4450	{
   4451		.ident = "T14 Gen2 AMD",
   4452		.driver_data = &quirk_s2idle_bug,
   4453		.matches = {
   4454			DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"),
   4455			DMI_MATCH(DMI_PRODUCT_NAME, "20XK"),
   4456		}
   4457	},
   4458	{
   4459		.ident = "T14 Gen1 AMD",
   4460		.driver_data = &quirk_s2idle_bug,
   4461		.matches = {
   4462			DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"),
   4463			DMI_MATCH(DMI_PRODUCT_NAME, "20UD"),
   4464		}
   4465	},
   4466	{
   4467		.ident = "T14 Gen1 AMD",
   4468		.driver_data = &quirk_s2idle_bug,
   4469		.matches = {
   4470			DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"),
   4471			DMI_MATCH(DMI_PRODUCT_NAME, "20UE"),
   4472		}
   4473	},
   4474	{
   4475		.ident = "T14s Gen1 AMD",
   4476		.driver_data = &quirk_s2idle_bug,
   4477		.matches = {
   4478			DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"),
   4479			DMI_MATCH(DMI_PRODUCT_NAME, "20UH"),
   4480		}
   4481	},
   4482	{
   4483		.ident = "P14s Gen1 AMD",
   4484		.driver_data = &quirk_s2idle_bug,
   4485		.matches = {
   4486			DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"),
   4487			DMI_MATCH(DMI_PRODUCT_NAME, "20Y1"),
   4488		}
   4489	},
   4490	{
   4491		.ident = "P14s Gen2 AMD",
   4492		.driver_data = &quirk_s2idle_bug,
   4493		.matches = {
   4494			DMI_MATCH(DMI_BOARD_VENDOR, "LENOVO"),
   4495			DMI_MATCH(DMI_PRODUCT_NAME, "21A0"),
   4496		}
   4497	},
   4498	{}
   4499};
   4500
   4501#ifdef CONFIG_SUSPEND
   4502/*
   4503 * Lenovo laptops from a variety of generations run a SMI handler during the D3->D0
   4504 * transition that occurs specifically when exiting suspend to idle which can cause
   4505 * large delays during resume when the IOMMU translation layer is enabled (the default
   4506 * behavior) for NVME devices:
   4507 *
   4508 * To avoid this firmware problem, skip the SMI handler on these machines before the
   4509 * D0 transition occurs.
   4510 */
   4511static void thinkpad_acpi_amd_s2idle_restore(void)
   4512{
   4513	struct resource *res;
   4514	void __iomem *addr;
   4515	u8 val;
   4516
   4517	res = request_mem_region_muxed(tp_features.quirks->s2idle_bug_mmio, 1,
   4518					"thinkpad_acpi_pm80");
   4519	if (!res)
   4520		return;
   4521
   4522	addr = ioremap(tp_features.quirks->s2idle_bug_mmio, 1);
   4523	if (!addr)
   4524		goto cleanup_resource;
   4525
   4526	val = ioread8(addr);
   4527	iowrite8(val & ~BIT(0), addr);
   4528
   4529	iounmap(addr);
   4530cleanup_resource:
   4531	release_resource(res);
   4532	kfree(res);
   4533}
   4534
   4535static struct acpi_s2idle_dev_ops thinkpad_acpi_s2idle_dev_ops = {
   4536	.restore = thinkpad_acpi_amd_s2idle_restore,
   4537};
   4538#endif
   4539
   4540static const struct pci_device_id fwbug_cards_ids[] __initconst = {
   4541	{ PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x24F3) },
   4542	{ PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x24FD) },
   4543	{ PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x2526) },
   4544	{}
   4545};
   4546
   4547
   4548static int __init have_bt_fwbug(void)
   4549{
   4550	/*
   4551	 * Some AMD based ThinkPads have a firmware bug that calling
   4552	 * "GBDC" will cause bluetooth on Intel wireless cards blocked
   4553	 */
   4554	if (tp_features.quirks && tp_features.quirks->btusb_bug &&
   4555	    pci_dev_present(fwbug_cards_ids)) {
   4556		vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
   4557			FW_BUG "disable bluetooth subdriver for Intel cards\n");
   4558		return 1;
   4559	} else
   4560		return 0;
   4561}
   4562
   4563static int __init bluetooth_init(struct ibm_init_struct *iibm)
   4564{
   4565	int res;
   4566	int status = 0;
   4567
   4568	vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
   4569			"initializing bluetooth subdriver\n");
   4570
   4571	TPACPI_ACPIHANDLE_INIT(hkey);
   4572
   4573	/* bluetooth not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
   4574	   G4x, R30, R31, R40e, R50e, T20-22, X20-21 */
   4575	tp_features.bluetooth = !have_bt_fwbug() && hkey_handle &&
   4576	    acpi_evalf(hkey_handle, &status, "GBDC", "qd");
   4577
   4578	vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
   4579		"bluetooth is %s, status 0x%02x\n",
   4580		str_supported(tp_features.bluetooth),
   4581		status);
   4582
   4583#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
   4584	if (dbg_bluetoothemul) {
   4585		tp_features.bluetooth = 1;
   4586		pr_info("bluetooth switch emulation enabled\n");
   4587	} else
   4588#endif
   4589	if (tp_features.bluetooth &&
   4590	    !(status & TP_ACPI_BLUETOOTH_HWPRESENT)) {
   4591		/* no bluetooth hardware present in system */
   4592		tp_features.bluetooth = 0;
   4593		dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
   4594			   "bluetooth hardware not installed\n");
   4595	}
   4596
   4597	if (!tp_features.bluetooth)
   4598		return -ENODEV;
   4599
   4600	res = tpacpi_new_rfkill(TPACPI_RFK_BLUETOOTH_SW_ID,
   4601				&bluetooth_tprfk_ops,
   4602				RFKILL_TYPE_BLUETOOTH,
   4603				TPACPI_RFK_BLUETOOTH_SW_NAME,
   4604				true);
   4605	return res;
   4606}
   4607
   4608/* procfs -------------------------------------------------------------- */
   4609static int bluetooth_read(struct seq_file *m)
   4610{
   4611	return tpacpi_rfk_procfs_read(TPACPI_RFK_BLUETOOTH_SW_ID, m);
   4612}
   4613
   4614static int bluetooth_write(char *buf)
   4615{
   4616	return tpacpi_rfk_procfs_write(TPACPI_RFK_BLUETOOTH_SW_ID, buf);
   4617}
   4618
   4619static struct ibm_struct bluetooth_driver_data = {
   4620	.name = "bluetooth",
   4621	.read = bluetooth_read,
   4622	.write = bluetooth_write,
   4623	.exit = bluetooth_exit,
   4624	.shutdown = bluetooth_shutdown,
   4625};
   4626
   4627/*************************************************************************
   4628 * Wan subdriver
   4629 */
   4630
   4631enum {
   4632	/* ACPI GWAN/SWAN bits */
   4633	TP_ACPI_WANCARD_HWPRESENT	= 0x01,	/* Wan hw available */
   4634	TP_ACPI_WANCARD_RADIOSSW	= 0x02,	/* Wan radio enabled */
   4635	TP_ACPI_WANCARD_RESUMECTRL	= 0x04,	/* Wan state at resume:
   4636						   0 = disable, 1 = enable */
   4637};
   4638
   4639#define TPACPI_RFK_WWAN_SW_NAME		"tpacpi_wwan_sw"
   4640
   4641static int wan_get_status(void)
   4642{
   4643	int status;
   4644
   4645#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
   4646	if (dbg_wwanemul)
   4647		return (tpacpi_wwan_emulstate) ?
   4648		       TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
   4649#endif
   4650
   4651	if (!acpi_evalf(hkey_handle, &status, "GWAN", "d"))
   4652		return -EIO;
   4653
   4654	return ((status & TP_ACPI_WANCARD_RADIOSSW) != 0) ?
   4655			TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
   4656}
   4657
   4658static int wan_set_status(enum tpacpi_rfkill_state state)
   4659{
   4660	int status;
   4661
   4662	vdbg_printk(TPACPI_DBG_RFKILL,
   4663		"will attempt to %s wwan\n",
   4664		(state == TPACPI_RFK_RADIO_ON) ? "enable" : "disable");
   4665
   4666#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
   4667	if (dbg_wwanemul) {
   4668		tpacpi_wwan_emulstate = (state == TPACPI_RFK_RADIO_ON);
   4669		return 0;
   4670	}
   4671#endif
   4672
   4673	if (state == TPACPI_RFK_RADIO_ON)
   4674		status = TP_ACPI_WANCARD_RADIOSSW
   4675			 | TP_ACPI_WANCARD_RESUMECTRL;
   4676	else
   4677		status = 0;
   4678
   4679	if (!acpi_evalf(hkey_handle, NULL, "SWAN", "vd", status))
   4680		return -EIO;
   4681
   4682	return 0;
   4683}
   4684
   4685/* sysfs wan enable ---------------------------------------------------- */
   4686static ssize_t wan_enable_show(struct device *dev,
   4687			   struct device_attribute *attr,
   4688			   char *buf)
   4689{
   4690	return tpacpi_rfk_sysfs_enable_show(TPACPI_RFK_WWAN_SW_ID,
   4691			attr, buf);
   4692}
   4693
   4694static ssize_t wan_enable_store(struct device *dev,
   4695			    struct device_attribute *attr,
   4696			    const char *buf, size_t count)
   4697{
   4698	return tpacpi_rfk_sysfs_enable_store(TPACPI_RFK_WWAN_SW_ID,
   4699			attr, buf, count);
   4700}
   4701
   4702static DEVICE_ATTR(wwan_enable, S_IWUSR | S_IRUGO,
   4703		   wan_enable_show, wan_enable_store);
   4704
   4705/* --------------------------------------------------------------------- */
   4706
   4707static struct attribute *wan_attributes[] = {
   4708	&dev_attr_wwan_enable.attr,
   4709	NULL
   4710};
   4711
   4712static umode_t wan_attr_is_visible(struct kobject *kobj, struct attribute *attr,
   4713				   int n)
   4714{
   4715	return tp_features.wan ? attr->mode : 0;
   4716}
   4717
   4718static const struct attribute_group wan_attr_group = {
   4719	.is_visible = wan_attr_is_visible,
   4720	.attrs = wan_attributes,
   4721};
   4722
   4723static const struct tpacpi_rfk_ops wan_tprfk_ops = {
   4724	.get_status = wan_get_status,
   4725	.set_status = wan_set_status,
   4726};
   4727
   4728static void wan_shutdown(void)
   4729{
   4730	/* Order firmware to save current state to NVRAM */
   4731	if (!acpi_evalf(NULL, NULL, "\\WGSV", "vd",
   4732			TP_ACPI_WGSV_SAVE_STATE))
   4733		pr_notice("failed to save WWAN state to NVRAM\n");
   4734	else
   4735		vdbg_printk(TPACPI_DBG_RFKILL,
   4736			"WWAN state saved to NVRAM\n");
   4737}
   4738
   4739static void wan_exit(void)
   4740{
   4741	tpacpi_destroy_rfkill(TPACPI_RFK_WWAN_SW_ID);
   4742	wan_shutdown();
   4743}
   4744
   4745static int __init wan_init(struct ibm_init_struct *iibm)
   4746{
   4747	int res;
   4748	int status = 0;
   4749
   4750	vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
   4751			"initializing wan subdriver\n");
   4752
   4753	TPACPI_ACPIHANDLE_INIT(hkey);
   4754
   4755	tp_features.wan = hkey_handle &&
   4756	    acpi_evalf(hkey_handle, &status, "GWAN", "qd");
   4757
   4758	vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
   4759		"wan is %s, status 0x%02x\n",
   4760		str_supported(tp_features.wan),
   4761		status);
   4762
   4763#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
   4764	if (dbg_wwanemul) {
   4765		tp_features.wan = 1;
   4766		pr_info("wwan switch emulation enabled\n");
   4767	} else
   4768#endif
   4769	if (tp_features.wan &&
   4770	    !(status & TP_ACPI_WANCARD_HWPRESENT)) {
   4771		/* no wan hardware present in system */
   4772		tp_features.wan = 0;
   4773		dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
   4774			   "wan hardware not installed\n");
   4775	}
   4776
   4777	if (!tp_features.wan)
   4778		return -ENODEV;
   4779
   4780	res = tpacpi_new_rfkill(TPACPI_RFK_WWAN_SW_ID,
   4781				&wan_tprfk_ops,
   4782				RFKILL_TYPE_WWAN,
   4783				TPACPI_RFK_WWAN_SW_NAME,
   4784				true);
   4785	return res;
   4786}
   4787
   4788/* procfs -------------------------------------------------------------- */
   4789static int wan_read(struct seq_file *m)
   4790{
   4791	return tpacpi_rfk_procfs_read(TPACPI_RFK_WWAN_SW_ID, m);
   4792}
   4793
   4794static int wan_write(char *buf)
   4795{
   4796	return tpacpi_rfk_procfs_write(TPACPI_RFK_WWAN_SW_ID, buf);
   4797}
   4798
   4799static struct ibm_struct wan_driver_data = {
   4800	.name = "wan",
   4801	.read = wan_read,
   4802	.write = wan_write,
   4803	.exit = wan_exit,
   4804	.shutdown = wan_shutdown,
   4805};
   4806
   4807/*************************************************************************
   4808 * UWB subdriver
   4809 */
   4810
   4811enum {
   4812	/* ACPI GUWB/SUWB bits */
   4813	TP_ACPI_UWB_HWPRESENT	= 0x01,	/* UWB hw available */
   4814	TP_ACPI_UWB_RADIOSSW	= 0x02,	/* UWB radio enabled */
   4815};
   4816
   4817#define TPACPI_RFK_UWB_SW_NAME	"tpacpi_uwb_sw"
   4818
   4819static int uwb_get_status(void)
   4820{
   4821	int status;
   4822
   4823#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
   4824	if (dbg_uwbemul)
   4825		return (tpacpi_uwb_emulstate) ?
   4826		       TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
   4827#endif
   4828
   4829	if (!acpi_evalf(hkey_handle, &status, "GUWB", "d"))
   4830		return -EIO;
   4831
   4832	return ((status & TP_ACPI_UWB_RADIOSSW) != 0) ?
   4833			TPACPI_RFK_RADIO_ON : TPACPI_RFK_RADIO_OFF;
   4834}
   4835
   4836static int uwb_set_status(enum tpacpi_rfkill_state state)
   4837{
   4838	int status;
   4839
   4840	vdbg_printk(TPACPI_DBG_RFKILL,
   4841		"will attempt to %s UWB\n",
   4842		(state == TPACPI_RFK_RADIO_ON) ? "enable" : "disable");
   4843
   4844#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
   4845	if (dbg_uwbemul) {
   4846		tpacpi_uwb_emulstate = (state == TPACPI_RFK_RADIO_ON);
   4847		return 0;
   4848	}
   4849#endif
   4850
   4851	if (state == TPACPI_RFK_RADIO_ON)
   4852		status = TP_ACPI_UWB_RADIOSSW;
   4853	else
   4854		status = 0;
   4855
   4856	if (!acpi_evalf(hkey_handle, NULL, "SUWB", "vd", status))
   4857		return -EIO;
   4858
   4859	return 0;
   4860}
   4861
   4862/* --------------------------------------------------------------------- */
   4863
   4864static const struct tpacpi_rfk_ops uwb_tprfk_ops = {
   4865	.get_status = uwb_get_status,
   4866	.set_status = uwb_set_status,
   4867};
   4868
   4869static void uwb_exit(void)
   4870{
   4871	tpacpi_destroy_rfkill(TPACPI_RFK_UWB_SW_ID);
   4872}
   4873
   4874static int __init uwb_init(struct ibm_init_struct *iibm)
   4875{
   4876	int res;
   4877	int status = 0;
   4878
   4879	vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
   4880			"initializing uwb subdriver\n");
   4881
   4882	TPACPI_ACPIHANDLE_INIT(hkey);
   4883
   4884	tp_features.uwb = hkey_handle &&
   4885	    acpi_evalf(hkey_handle, &status, "GUWB", "qd");
   4886
   4887	vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_RFKILL,
   4888		"uwb is %s, status 0x%02x\n",
   4889		str_supported(tp_features.uwb),
   4890		status);
   4891
   4892#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
   4893	if (dbg_uwbemul) {
   4894		tp_features.uwb = 1;
   4895		pr_info("uwb switch emulation enabled\n");
   4896	} else
   4897#endif
   4898	if (tp_features.uwb &&
   4899	    !(status & TP_ACPI_UWB_HWPRESENT)) {
   4900		/* no uwb hardware present in system */
   4901		tp_features.uwb = 0;
   4902		dbg_printk(TPACPI_DBG_INIT,
   4903			   "uwb hardware not installed\n");
   4904	}
   4905
   4906	if (!tp_features.uwb)
   4907		return -ENODEV;
   4908
   4909	res = tpacpi_new_rfkill(TPACPI_RFK_UWB_SW_ID,
   4910				&uwb_tprfk_ops,
   4911				RFKILL_TYPE_UWB,
   4912				TPACPI_RFK_UWB_SW_NAME,
   4913				false);
   4914	return res;
   4915}
   4916
   4917static struct ibm_struct uwb_driver_data = {
   4918	.name = "uwb",
   4919	.exit = uwb_exit,
   4920	.flags.experimental = 1,
   4921};
   4922
   4923/*************************************************************************
   4924 * Video subdriver
   4925 */
   4926
   4927#ifdef CONFIG_THINKPAD_ACPI_VIDEO
   4928
   4929enum video_access_mode {
   4930	TPACPI_VIDEO_NONE = 0,
   4931	TPACPI_VIDEO_570,	/* 570 */
   4932	TPACPI_VIDEO_770,	/* 600e/x, 770e, 770x */
   4933	TPACPI_VIDEO_NEW,	/* all others */
   4934};
   4935
   4936enum {	/* video status flags, based on VIDEO_570 */
   4937	TP_ACPI_VIDEO_S_LCD = 0x01,	/* LCD output enabled */
   4938	TP_ACPI_VIDEO_S_CRT = 0x02,	/* CRT output enabled */
   4939	TP_ACPI_VIDEO_S_DVI = 0x08,	/* DVI output enabled */
   4940};
   4941
   4942enum {  /* TPACPI_VIDEO_570 constants */
   4943	TP_ACPI_VIDEO_570_PHSCMD = 0x87,	/* unknown magic constant :( */
   4944	TP_ACPI_VIDEO_570_PHSMASK = 0x03,	/* PHS bits that map to
   4945						 * video_status_flags */
   4946	TP_ACPI_VIDEO_570_PHS2CMD = 0x8b,	/* unknown magic constant :( */
   4947	TP_ACPI_VIDEO_570_PHS2SET = 0x80,	/* unknown magic constant :( */
   4948};
   4949
   4950static enum video_access_mode video_supported;
   4951static int video_orig_autosw;
   4952
   4953static int video_autosw_get(void);
   4954static int video_autosw_set(int enable);
   4955
   4956TPACPI_HANDLE(vid, root,
   4957	      "\\_SB.PCI.AGP.VGA",	/* 570 */
   4958	      "\\_SB.PCI0.AGP0.VID0",	/* 600e/x, 770x */
   4959	      "\\_SB.PCI0.VID0",	/* 770e */
   4960	      "\\_SB.PCI0.VID",		/* A21e, G4x, R50e, X30, X40 */
   4961	      "\\_SB.PCI0.AGP.VGA",	/* X100e and a few others */
   4962	      "\\_SB.PCI0.AGP.VID",	/* all others */
   4963	);				/* R30, R31 */
   4964
   4965TPACPI_HANDLE(vid2, root, "\\_SB.PCI0.AGPB.VID");	/* G41 */
   4966
   4967static int __init video_init(struct ibm_init_struct *iibm)
   4968{
   4969	int ivga;
   4970
   4971	vdbg_printk(TPACPI_DBG_INIT, "initializing video subdriver\n");
   4972
   4973	TPACPI_ACPIHANDLE_INIT(vid);
   4974	if (tpacpi_is_ibm())
   4975		TPACPI_ACPIHANDLE_INIT(vid2);
   4976
   4977	if (vid2_handle && acpi_evalf(NULL, &ivga, "\\IVGA", "d") && ivga)
   4978		/* G41, assume IVGA doesn't change */
   4979		vid_handle = vid2_handle;
   4980
   4981	if (!vid_handle)
   4982		/* video switching not supported on R30, R31 */
   4983		video_supported = TPACPI_VIDEO_NONE;
   4984	else if (tpacpi_is_ibm() &&
   4985		 acpi_evalf(vid_handle, &video_orig_autosw, "SWIT", "qd"))
   4986		/* 570 */
   4987		video_supported = TPACPI_VIDEO_570;
   4988	else if (tpacpi_is_ibm() &&
   4989		 acpi_evalf(vid_handle, &video_orig_autosw, "^VADL", "qd"))
   4990		/* 600e/x, 770e, 770x */
   4991		video_supported = TPACPI_VIDEO_770;
   4992	else
   4993		/* all others */
   4994		video_supported = TPACPI_VIDEO_NEW;
   4995
   4996	vdbg_printk(TPACPI_DBG_INIT, "video is %s, mode %d\n",
   4997		str_supported(video_supported != TPACPI_VIDEO_NONE),
   4998		video_supported);
   4999
   5000	return (video_supported != TPACPI_VIDEO_NONE) ? 0 : -ENODEV;
   5001}
   5002
   5003static void video_exit(void)
   5004{
   5005	dbg_printk(TPACPI_DBG_EXIT,
   5006		   "restoring original video autoswitch mode\n");
   5007	if (video_autosw_set(video_orig_autosw))
   5008		pr_err("error while trying to restore original video autoswitch mode\n");
   5009}
   5010
   5011static int video_outputsw_get(void)
   5012{
   5013	int status = 0;
   5014	int i;
   5015
   5016	switch (video_supported) {
   5017	case TPACPI_VIDEO_570:
   5018		if (!acpi_evalf(NULL, &i, "\\_SB.PHS", "dd",
   5019				 TP_ACPI_VIDEO_570_PHSCMD))
   5020			return -EIO;
   5021		status = i & TP_ACPI_VIDEO_570_PHSMASK;
   5022		break;
   5023	case TPACPI_VIDEO_770:
   5024		if (!acpi_evalf(NULL, &i, "\\VCDL", "d"))
   5025			return -EIO;
   5026		if (i)
   5027			status |= TP_ACPI_VIDEO_S_LCD;
   5028		if (!acpi_evalf(NULL, &i, "\\VCDC", "d"))
   5029			return -EIO;
   5030		if (i)
   5031			status |= TP_ACPI_VIDEO_S_CRT;
   5032		break;
   5033	case TPACPI_VIDEO_NEW:
   5034		if (!acpi_evalf(NULL, NULL, "\\VUPS", "vd", 1) ||
   5035		    !acpi_evalf(NULL, &i, "\\VCDC", "d"))
   5036			return -EIO;
   5037		if (i)
   5038			status |= TP_ACPI_VIDEO_S_CRT;
   5039
   5040		if (!acpi_evalf(NULL, NULL, "\\VUPS", "vd", 0) ||
   5041		    !acpi_evalf(NULL, &i, "\\VCDL", "d"))
   5042			return -EIO;
   5043		if (i)
   5044			status |= TP_ACPI_VIDEO_S_LCD;
   5045		if (!acpi_evalf(NULL, &i, "\\VCDD", "d"))
   5046			return -EIO;
   5047		if (i)
   5048			status |= TP_ACPI_VIDEO_S_DVI;
   5049		break;
   5050	default:
   5051		return -ENOSYS;
   5052	}
   5053
   5054	return status;
   5055}
   5056
   5057static int video_outputsw_set(int status)
   5058{
   5059	int autosw;
   5060	int res = 0;
   5061
   5062	switch (video_supported) {
   5063	case TPACPI_VIDEO_570:
   5064		res = acpi_evalf(NULL, NULL,
   5065				 "\\_SB.PHS2", "vdd",
   5066				 TP_ACPI_VIDEO_570_PHS2CMD,
   5067				 status | TP_ACPI_VIDEO_570_PHS2SET);
   5068		break;
   5069	case TPACPI_VIDEO_770:
   5070		autosw = video_autosw_get();
   5071		if (autosw < 0)
   5072			return autosw;
   5073
   5074		res = video_autosw_set(1);
   5075		if (res)
   5076			return res;
   5077		res = acpi_evalf(vid_handle, NULL,
   5078				 "ASWT", "vdd", status * 0x100, 0);
   5079		if (!autosw && video_autosw_set(autosw)) {
   5080			pr_err("video auto-switch left enabled due to error\n");
   5081			return -EIO;
   5082		}
   5083		break;
   5084	case TPACPI_VIDEO_NEW:
   5085		res = acpi_evalf(NULL, NULL, "\\VUPS", "vd", 0x80) &&
   5086		      acpi_evalf(NULL, NULL, "\\VSDS", "vdd", status, 1);
   5087		break;
   5088	default:
   5089		return -ENOSYS;
   5090	}
   5091
   5092	return (res) ? 0 : -EIO;
   5093}
   5094
   5095static int video_autosw_get(void)
   5096{
   5097	int autosw = 0;
   5098
   5099	switch (video_supported) {
   5100	case TPACPI_VIDEO_570:
   5101		if (!acpi_evalf(vid_handle, &autosw, "SWIT", "d"))
   5102			return -EIO;
   5103		break;
   5104	case TPACPI_VIDEO_770:
   5105	case TPACPI_VIDEO_NEW:
   5106		if (!acpi_evalf(vid_handle, &autosw, "^VDEE", "d"))
   5107			return -EIO;
   5108		break;
   5109	default:
   5110		return -ENOSYS;
   5111	}
   5112
   5113	return autosw & 1;
   5114}
   5115
   5116static int video_autosw_set(int enable)
   5117{
   5118	if (!acpi_evalf(vid_handle, NULL, "_DOS", "vd", (enable) ? 1 : 0))
   5119		return -EIO;
   5120	return 0;
   5121}
   5122
   5123static int video_outputsw_cycle(void)
   5124{
   5125	int autosw = video_autosw_get();
   5126	int res;
   5127
   5128	if (autosw < 0)
   5129		return autosw;
   5130
   5131	switch (video_supported) {
   5132	case TPACPI_VIDEO_570:
   5133		res = video_autosw_set(1);
   5134		if (res)
   5135			return res;
   5136		res = acpi_evalf(ec_handle, NULL, "_Q16", "v");
   5137		break;
   5138	case TPACPI_VIDEO_770:
   5139	case TPACPI_VIDEO_NEW:
   5140		res = video_autosw_set(1);
   5141		if (res)
   5142			return res;
   5143		res = acpi_evalf(vid_handle, NULL, "VSWT", "v");
   5144		break;
   5145	default:
   5146		return -ENOSYS;
   5147	}
   5148	if (!autosw && video_autosw_set(autosw)) {
   5149		pr_err("video auto-switch left enabled due to error\n");
   5150		return -EIO;
   5151	}
   5152
   5153	return (res) ? 0 : -EIO;
   5154}
   5155
   5156static int video_expand_toggle(void)
   5157{
   5158	switch (video_supported) {
   5159	case TPACPI_VIDEO_570:
   5160		return acpi_evalf(ec_handle, NULL, "_Q17", "v") ?
   5161			0 : -EIO;
   5162	case TPACPI_VIDEO_770:
   5163		return acpi_evalf(vid_handle, NULL, "VEXP", "v") ?
   5164			0 : -EIO;
   5165	case TPACPI_VIDEO_NEW:
   5166		return acpi_evalf(NULL, NULL, "\\VEXP", "v") ?
   5167			0 : -EIO;
   5168	default:
   5169		return -ENOSYS;
   5170	}
   5171	/* not reached */
   5172}
   5173
   5174static int video_read(struct seq_file *m)
   5175{
   5176	int status, autosw;
   5177
   5178	if (video_supported == TPACPI_VIDEO_NONE) {
   5179		seq_printf(m, "status:\t\tnot supported\n");
   5180		return 0;
   5181	}
   5182
   5183	/* Even reads can crash X.org, so... */
   5184	if (!capable(CAP_SYS_ADMIN))
   5185		return -EPERM;
   5186
   5187	status = video_outputsw_get();
   5188	if (status < 0)
   5189		return status;
   5190
   5191	autosw = video_autosw_get();
   5192	if (autosw < 0)
   5193		return autosw;
   5194
   5195	seq_printf(m, "status:\t\tsupported\n");
   5196	seq_printf(m, "lcd:\t\t%s\n", enabled(status, 0));
   5197	seq_printf(m, "crt:\t\t%s\n", enabled(status, 1));
   5198	if (video_supported == TPACPI_VIDEO_NEW)
   5199		seq_printf(m, "dvi:\t\t%s\n", enabled(status, 3));
   5200	seq_printf(m, "auto:\t\t%s\n", enabled(autosw, 0));
   5201	seq_printf(m, "commands:\tlcd_enable, lcd_disable\n");
   5202	seq_printf(m, "commands:\tcrt_enable, crt_disable\n");
   5203	if (video_supported == TPACPI_VIDEO_NEW)
   5204		seq_printf(m, "commands:\tdvi_enable, dvi_disable\n");
   5205	seq_printf(m, "commands:\tauto_enable, auto_disable\n");
   5206	seq_printf(m, "commands:\tvideo_switch, expand_toggle\n");
   5207
   5208	return 0;
   5209}
   5210
   5211static int video_write(char *buf)
   5212{
   5213	char *cmd;
   5214	int enable, disable, status;
   5215	int res;
   5216
   5217	if (video_supported == TPACPI_VIDEO_NONE)
   5218		return -ENODEV;
   5219
   5220	/* Even reads can crash X.org, let alone writes... */
   5221	if (!capable(CAP_SYS_ADMIN))
   5222		return -EPERM;
   5223
   5224	enable = 0;
   5225	disable = 0;
   5226
   5227	while ((cmd = strsep(&buf, ","))) {
   5228		if (strlencmp(cmd, "lcd_enable") == 0) {
   5229			enable |= TP_ACPI_VIDEO_S_LCD;
   5230		} else if (strlencmp(cmd, "lcd_disable") == 0) {
   5231			disable |= TP_ACPI_VIDEO_S_LCD;
   5232		} else if (strlencmp(cmd, "crt_enable") == 0) {
   5233			enable |= TP_ACPI_VIDEO_S_CRT;
   5234		} else if (strlencmp(cmd, "crt_disable") == 0) {
   5235			disable |= TP_ACPI_VIDEO_S_CRT;
   5236		} else if (video_supported == TPACPI_VIDEO_NEW &&
   5237			   strlencmp(cmd, "dvi_enable") == 0) {
   5238			enable |= TP_ACPI_VIDEO_S_DVI;
   5239		} else if (video_supported == TPACPI_VIDEO_NEW &&
   5240			   strlencmp(cmd, "dvi_disable") == 0) {
   5241			disable |= TP_ACPI_VIDEO_S_DVI;
   5242		} else if (strlencmp(cmd, "auto_enable") == 0) {
   5243			res = video_autosw_set(1);
   5244			if (res)
   5245				return res;
   5246		} else if (strlencmp(cmd, "auto_disable") == 0) {
   5247			res = video_autosw_set(0);
   5248			if (res)
   5249				return res;
   5250		} else if (strlencmp(cmd, "video_switch") == 0) {
   5251			res = video_outputsw_cycle();
   5252			if (res)
   5253				return res;
   5254		} else if (strlencmp(cmd, "expand_toggle") == 0) {
   5255			res = video_expand_toggle();
   5256			if (res)
   5257				return res;
   5258		} else
   5259			return -EINVAL;
   5260	}
   5261
   5262	if (enable || disable) {
   5263		status = video_outputsw_get();
   5264		if (status < 0)
   5265			return status;
   5266		res = video_outputsw_set((status & ~disable) | enable);
   5267		if (res)
   5268			return res;
   5269	}
   5270
   5271	return 0;
   5272}
   5273
   5274static struct ibm_struct video_driver_data = {
   5275	.name = "video",
   5276	.read = video_read,
   5277	.write = video_write,
   5278	.exit = video_exit,
   5279};
   5280
   5281#endif /* CONFIG_THINKPAD_ACPI_VIDEO */
   5282
   5283/*************************************************************************
   5284 * Keyboard backlight subdriver
   5285 */
   5286
   5287static enum led_brightness kbdlight_brightness;
   5288static DEFINE_MUTEX(kbdlight_mutex);
   5289
   5290static int kbdlight_set_level(int level)
   5291{
   5292	int ret = 0;
   5293
   5294	if (!hkey_handle)
   5295		return -ENXIO;
   5296
   5297	mutex_lock(&kbdlight_mutex);
   5298
   5299	if (!acpi_evalf(hkey_handle, NULL, "MLCS", "dd", level))
   5300		ret = -EIO;
   5301	else
   5302		kbdlight_brightness = level;
   5303
   5304	mutex_unlock(&kbdlight_mutex);
   5305
   5306	return ret;
   5307}
   5308
   5309static int kbdlight_get_level(void)
   5310{
   5311	int status = 0;
   5312
   5313	if (!hkey_handle)
   5314		return -ENXIO;
   5315
   5316	if (!acpi_evalf(hkey_handle, &status, "MLCG", "dd", 0))
   5317		return -EIO;
   5318
   5319	if (status < 0)
   5320		return status;
   5321
   5322	return status & 0x3;
   5323}
   5324
   5325static bool kbdlight_is_supported(void)
   5326{
   5327	int status = 0;
   5328
   5329	if (!hkey_handle)
   5330		return false;
   5331
   5332	if (!acpi_has_method(hkey_handle, "MLCG")) {
   5333		vdbg_printk(TPACPI_DBG_INIT, "kbdlight MLCG is unavailable\n");
   5334		return false;
   5335	}
   5336
   5337	if (!acpi_evalf(hkey_handle, &status, "MLCG", "qdd", 0)) {
   5338		vdbg_printk(TPACPI_DBG_INIT, "kbdlight MLCG failed\n");
   5339		return false;
   5340	}
   5341
   5342	if (status < 0) {
   5343		vdbg_printk(TPACPI_DBG_INIT, "kbdlight MLCG err: %d\n", status);
   5344		return false;
   5345	}
   5346
   5347	vdbg_printk(TPACPI_DBG_INIT, "kbdlight MLCG returned 0x%x\n", status);
   5348	/*
   5349	 * Guessed test for keyboard backlight:
   5350	 *
   5351	 * Machines with backlight keyboard return:
   5352	 *   b010100000010000000XX - ThinkPad X1 Carbon 3rd
   5353	 *   b110100010010000000XX - ThinkPad x230
   5354	 *   b010100000010000000XX - ThinkPad x240
   5355	 *   b010100000010000000XX - ThinkPad W541
   5356	 * (XX is current backlight level)
   5357	 *
   5358	 * Machines without backlight keyboard return:
   5359	 *   b10100001000000000000 - ThinkPad x230
   5360	 *   b10110001000000000000 - ThinkPad E430
   5361	 *   b00000000000000000000 - ThinkPad E450
   5362	 *
   5363	 * Candidate BITs for detection test (XOR):
   5364	 *   b01000000001000000000
   5365	 *              ^
   5366	 */
   5367	return status & BIT(9);
   5368}
   5369
   5370static int kbdlight_sysfs_set(struct led_classdev *led_cdev,
   5371			enum led_brightness brightness)
   5372{
   5373	return kbdlight_set_level(brightness);
   5374}
   5375
   5376static enum led_brightness kbdlight_sysfs_get(struct led_classdev *led_cdev)
   5377{
   5378	int level;
   5379
   5380	level = kbdlight_get_level();
   5381	if (level < 0)
   5382		return 0;
   5383
   5384	return level;
   5385}
   5386
   5387static struct tpacpi_led_classdev tpacpi_led_kbdlight = {
   5388	.led_classdev = {
   5389		.name		= "tpacpi::kbd_backlight",
   5390		.max_brightness	= 2,
   5391		.flags		= LED_BRIGHT_HW_CHANGED,
   5392		.brightness_set_blocking = &kbdlight_sysfs_set,
   5393		.brightness_get	= &kbdlight_sysfs_get,
   5394	}
   5395};
   5396
   5397static int __init kbdlight_init(struct ibm_init_struct *iibm)
   5398{
   5399	int rc;
   5400
   5401	vdbg_printk(TPACPI_DBG_INIT, "initializing kbdlight subdriver\n");
   5402
   5403	TPACPI_ACPIHANDLE_INIT(hkey);
   5404
   5405	if (!kbdlight_is_supported()) {
   5406		tp_features.kbdlight = 0;
   5407		vdbg_printk(TPACPI_DBG_INIT, "kbdlight is unsupported\n");
   5408		return -ENODEV;
   5409	}
   5410
   5411	kbdlight_brightness = kbdlight_sysfs_get(NULL);
   5412	tp_features.kbdlight = 1;
   5413
   5414	rc = led_classdev_register(&tpacpi_pdev->dev,
   5415				   &tpacpi_led_kbdlight.led_classdev);
   5416	if (rc < 0) {
   5417		tp_features.kbdlight = 0;
   5418		return rc;
   5419	}
   5420
   5421	tpacpi_hotkey_driver_mask_set(hotkey_driver_mask |
   5422				      TP_ACPI_HKEY_KBD_LIGHT_MASK);
   5423	return 0;
   5424}
   5425
   5426static void kbdlight_exit(void)
   5427{
   5428	led_classdev_unregister(&tpacpi_led_kbdlight.led_classdev);
   5429}
   5430
   5431static int kbdlight_set_level_and_update(int level)
   5432{
   5433	int ret;
   5434	struct led_classdev *led_cdev;
   5435
   5436	ret = kbdlight_set_level(level);
   5437	led_cdev = &tpacpi_led_kbdlight.led_classdev;
   5438
   5439	if (ret == 0 && !(led_cdev->flags & LED_SUSPENDED))
   5440		led_cdev->brightness = level;
   5441
   5442	return ret;
   5443}
   5444
   5445static int kbdlight_read(struct seq_file *m)
   5446{
   5447	int level;
   5448
   5449	if (!tp_features.kbdlight) {
   5450		seq_printf(m, "status:\t\tnot supported\n");
   5451	} else {
   5452		level = kbdlight_get_level();
   5453		if (level < 0)
   5454			seq_printf(m, "status:\t\terror %d\n", level);
   5455		else
   5456			seq_printf(m, "status:\t\t%d\n", level);
   5457		seq_printf(m, "commands:\t0, 1, 2\n");
   5458	}
   5459
   5460	return 0;
   5461}
   5462
   5463static int kbdlight_write(char *buf)
   5464{
   5465	char *cmd;
   5466	int res, level = -EINVAL;
   5467
   5468	if (!tp_features.kbdlight)
   5469		return -ENODEV;
   5470
   5471	while ((cmd = strsep(&buf, ","))) {
   5472		res = kstrtoint(cmd, 10, &level);
   5473		if (res < 0)
   5474			return res;
   5475	}
   5476
   5477	if (level >= 3 || level < 0)
   5478		return -EINVAL;
   5479
   5480	return kbdlight_set_level_and_update(level);
   5481}
   5482
   5483static void kbdlight_suspend(void)
   5484{
   5485	struct led_classdev *led_cdev;
   5486
   5487	if (!tp_features.kbdlight)
   5488		return;
   5489
   5490	led_cdev = &tpacpi_led_kbdlight.led_classdev;
   5491	led_update_brightness(led_cdev);
   5492	led_classdev_suspend(led_cdev);
   5493}
   5494
   5495static void kbdlight_resume(void)
   5496{
   5497	if (!tp_features.kbdlight)
   5498		return;
   5499
   5500	led_classdev_resume(&tpacpi_led_kbdlight.led_classdev);
   5501}
   5502
   5503static struct ibm_struct kbdlight_driver_data = {
   5504	.name = "kbdlight",
   5505	.read = kbdlight_read,
   5506	.write = kbdlight_write,
   5507	.suspend = kbdlight_suspend,
   5508	.resume = kbdlight_resume,
   5509	.exit = kbdlight_exit,
   5510};
   5511
   5512/*************************************************************************
   5513 * Light (thinklight) subdriver
   5514 */
   5515
   5516TPACPI_HANDLE(lght, root, "\\LGHT");	/* A21e, A2xm/p, T20-22, X20-21 */
   5517TPACPI_HANDLE(ledb, ec, "LEDB");		/* G4x */
   5518
   5519static int light_get_status(void)
   5520{
   5521	int status = 0;
   5522
   5523	if (tp_features.light_status) {
   5524		if (!acpi_evalf(ec_handle, &status, "KBLT", "d"))
   5525			return -EIO;
   5526		return (!!status);
   5527	}
   5528
   5529	return -ENXIO;
   5530}
   5531
   5532static int light_set_status(int status)
   5533{
   5534	int rc;
   5535
   5536	if (tp_features.light) {
   5537		if (cmos_handle) {
   5538			rc = acpi_evalf(cmos_handle, NULL, NULL, "vd",
   5539					(status) ?
   5540						TP_CMOS_THINKLIGHT_ON :
   5541						TP_CMOS_THINKLIGHT_OFF);
   5542		} else {
   5543			rc = acpi_evalf(lght_handle, NULL, NULL, "vd",
   5544					(status) ? 1 : 0);
   5545		}
   5546		return (rc) ? 0 : -EIO;
   5547	}
   5548
   5549	return -ENXIO;
   5550}
   5551
   5552static int light_sysfs_set(struct led_classdev *led_cdev,
   5553			enum led_brightness brightness)
   5554{
   5555	return light_set_status((brightness != LED_OFF) ?
   5556				TPACPI_LED_ON : TPACPI_LED_OFF);
   5557}
   5558
   5559static enum led_brightness light_sysfs_get(struct led_classdev *led_cdev)
   5560{
   5561	return (light_get_status() == 1) ? LED_FULL : LED_OFF;
   5562}
   5563
   5564static struct tpacpi_led_classdev tpacpi_led_thinklight = {
   5565	.led_classdev = {
   5566		.name		= "tpacpi::thinklight",
   5567		.brightness_set_blocking = &light_sysfs_set,
   5568		.brightness_get	= &light_sysfs_get,
   5569	}
   5570};
   5571
   5572static int __init light_init(struct ibm_init_struct *iibm)
   5573{
   5574	int rc;
   5575
   5576	vdbg_printk(TPACPI_DBG_INIT, "initializing light subdriver\n");
   5577
   5578	if (tpacpi_is_ibm()) {
   5579		TPACPI_ACPIHANDLE_INIT(ledb);
   5580		TPACPI_ACPIHANDLE_INIT(lght);
   5581	}
   5582	TPACPI_ACPIHANDLE_INIT(cmos);
   5583
   5584	/* light not supported on 570, 600e/x, 770e, 770x, G4x, R30, R31 */
   5585	tp_features.light = (cmos_handle || lght_handle) && !ledb_handle;
   5586
   5587	if (tp_features.light)
   5588		/* light status not supported on
   5589		   570, 600e/x, 770e, 770x, G4x, R30, R31, R32, X20 */
   5590		tp_features.light_status =
   5591			acpi_evalf(ec_handle, NULL, "KBLT", "qv");
   5592
   5593	vdbg_printk(TPACPI_DBG_INIT, "light is %s, light status is %s\n",
   5594		str_supported(tp_features.light),
   5595		str_supported(tp_features.light_status));
   5596
   5597	if (!tp_features.light)
   5598		return -ENODEV;
   5599
   5600	rc = led_classdev_register(&tpacpi_pdev->dev,
   5601				   &tpacpi_led_thinklight.led_classdev);
   5602
   5603	if (rc < 0) {
   5604		tp_features.light = 0;
   5605		tp_features.light_status = 0;
   5606	} else  {
   5607		rc = 0;
   5608	}
   5609
   5610	return rc;
   5611}
   5612
   5613static void light_exit(void)
   5614{
   5615	led_classdev_unregister(&tpacpi_led_thinklight.led_classdev);
   5616}
   5617
   5618static int light_read(struct seq_file *m)
   5619{
   5620	int status;
   5621
   5622	if (!tp_features.light) {
   5623		seq_printf(m, "status:\t\tnot supported\n");
   5624	} else if (!tp_features.light_status) {
   5625		seq_printf(m, "status:\t\tunknown\n");
   5626		seq_printf(m, "commands:\ton, off\n");
   5627	} else {
   5628		status = light_get_status();
   5629		if (status < 0)
   5630			return status;
   5631		seq_printf(m, "status:\t\t%s\n", onoff(status, 0));
   5632		seq_printf(m, "commands:\ton, off\n");
   5633	}
   5634
   5635	return 0;
   5636}
   5637
   5638static int light_write(char *buf)
   5639{
   5640	char *cmd;
   5641	int newstatus = 0;
   5642
   5643	if (!tp_features.light)
   5644		return -ENODEV;
   5645
   5646	while ((cmd = strsep(&buf, ","))) {
   5647		if (strlencmp(cmd, "on") == 0) {
   5648			newstatus = 1;
   5649		} else if (strlencmp(cmd, "off") == 0) {
   5650			newstatus = 0;
   5651		} else
   5652			return -EINVAL;
   5653	}
   5654
   5655	return light_set_status(newstatus);
   5656}
   5657
   5658static struct ibm_struct light_driver_data = {
   5659	.name = "light",
   5660	.read = light_read,
   5661	.write = light_write,
   5662	.exit = light_exit,
   5663};
   5664
   5665/*************************************************************************
   5666 * CMOS subdriver
   5667 */
   5668
   5669/* sysfs cmos_command -------------------------------------------------- */
   5670static ssize_t cmos_command_store(struct device *dev,
   5671			    struct device_attribute *attr,
   5672			    const char *buf, size_t count)
   5673{
   5674	unsigned long cmos_cmd;
   5675	int res;
   5676
   5677	if (parse_strtoul(buf, 21, &cmos_cmd))
   5678		return -EINVAL;
   5679
   5680	res = issue_thinkpad_cmos_command(cmos_cmd);
   5681	return (res) ? res : count;
   5682}
   5683
   5684static DEVICE_ATTR_WO(cmos_command);
   5685
   5686static struct attribute *cmos_attributes[] = {
   5687	&dev_attr_cmos_command.attr,
   5688	NULL
   5689};
   5690
   5691static umode_t cmos_attr_is_visible(struct kobject *kobj,
   5692				    struct attribute *attr, int n)
   5693{
   5694	return cmos_handle ? attr->mode : 0;
   5695}
   5696
   5697static const struct attribute_group cmos_attr_group = {
   5698	.is_visible = cmos_attr_is_visible,
   5699	.attrs = cmos_attributes,
   5700};
   5701
   5702/* --------------------------------------------------------------------- */
   5703
   5704static int __init cmos_init(struct ibm_init_struct *iibm)
   5705{
   5706	vdbg_printk(TPACPI_DBG_INIT,
   5707		    "initializing cmos commands subdriver\n");
   5708
   5709	TPACPI_ACPIHANDLE_INIT(cmos);
   5710
   5711	vdbg_printk(TPACPI_DBG_INIT, "cmos commands are %s\n",
   5712		    str_supported(cmos_handle != NULL));
   5713
   5714	return cmos_handle ? 0 : -ENODEV;
   5715}
   5716
   5717static int cmos_read(struct seq_file *m)
   5718{
   5719	/* cmos not supported on 570, 600e/x, 770e, 770x, A21e, A2xm/p,
   5720	   R30, R31, T20-22, X20-21 */
   5721	if (!cmos_handle)
   5722		seq_printf(m, "status:\t\tnot supported\n");
   5723	else {
   5724		seq_printf(m, "status:\t\tsupported\n");
   5725		seq_printf(m, "commands:\t<cmd> (<cmd> is 0-21)\n");
   5726	}
   5727
   5728	return 0;
   5729}
   5730
   5731static int cmos_write(char *buf)
   5732{
   5733	char *cmd;
   5734	int cmos_cmd, res;
   5735
   5736	while ((cmd = strsep(&buf, ","))) {
   5737		if (sscanf(cmd, "%u", &cmos_cmd) == 1 &&
   5738		    cmos_cmd >= 0 && cmos_cmd <= 21) {
   5739			/* cmos_cmd set */
   5740		} else
   5741			return -EINVAL;
   5742
   5743		res = issue_thinkpad_cmos_command(cmos_cmd);
   5744		if (res)
   5745			return res;
   5746	}
   5747
   5748	return 0;
   5749}
   5750
   5751static struct ibm_struct cmos_driver_data = {
   5752	.name = "cmos",
   5753	.read = cmos_read,
   5754	.write = cmos_write,
   5755};
   5756
   5757/*************************************************************************
   5758 * LED subdriver
   5759 */
   5760
   5761enum led_access_mode {
   5762	TPACPI_LED_NONE = 0,
   5763	TPACPI_LED_570,	/* 570 */
   5764	TPACPI_LED_OLD,	/* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */
   5765	TPACPI_LED_NEW,	/* all others */
   5766};
   5767
   5768enum {	/* For TPACPI_LED_OLD */
   5769	TPACPI_LED_EC_HLCL = 0x0c,	/* EC reg to get led to power on */
   5770	TPACPI_LED_EC_HLBL = 0x0d,	/* EC reg to blink a lit led */
   5771	TPACPI_LED_EC_HLMS = 0x0e,	/* EC reg to select led to command */
   5772};
   5773
   5774static enum led_access_mode led_supported;
   5775
   5776static acpi_handle led_handle;
   5777
   5778#define TPACPI_LED_NUMLEDS 16
   5779static struct tpacpi_led_classdev *tpacpi_leds;
   5780static enum led_status_t tpacpi_led_state_cache[TPACPI_LED_NUMLEDS];
   5781static const char * const tpacpi_led_names[TPACPI_LED_NUMLEDS] = {
   5782	/* there's a limit of 19 chars + NULL before 2.6.26 */
   5783	"tpacpi::power",
   5784	"tpacpi:orange:batt",
   5785	"tpacpi:green:batt",
   5786	"tpacpi::dock_active",
   5787	"tpacpi::bay_active",
   5788	"tpacpi::dock_batt",
   5789	"tpacpi::unknown_led",
   5790	"tpacpi::standby",
   5791	"tpacpi::dock_status1",
   5792	"tpacpi::dock_status2",
   5793	"tpacpi::lid_logo_dot",
   5794	"tpacpi::unknown_led3",
   5795	"tpacpi::thinkvantage",
   5796};
   5797#define TPACPI_SAFE_LEDS	0x1481U
   5798
   5799static inline bool tpacpi_is_led_restricted(const unsigned int led)
   5800{
   5801#ifdef CONFIG_THINKPAD_ACPI_UNSAFE_LEDS
   5802	return false;
   5803#else
   5804	return (1U & (TPACPI_SAFE_LEDS >> led)) == 0;
   5805#endif
   5806}
   5807
   5808static int led_get_status(const unsigned int led)
   5809{
   5810	int status;
   5811	enum led_status_t led_s;
   5812
   5813	switch (led_supported) {
   5814	case TPACPI_LED_570:
   5815		if (!acpi_evalf(ec_handle,
   5816				&status, "GLED", "dd", 1 << led))
   5817			return -EIO;
   5818		led_s = (status == 0) ?
   5819				TPACPI_LED_OFF :
   5820				((status == 1) ?
   5821					TPACPI_LED_ON :
   5822					TPACPI_LED_BLINK);
   5823		tpacpi_led_state_cache[led] = led_s;
   5824		return led_s;
   5825	default:
   5826		return -ENXIO;
   5827	}
   5828
   5829	/* not reached */
   5830}
   5831
   5832static int led_set_status(const unsigned int led,
   5833			  const enum led_status_t ledstatus)
   5834{
   5835	/* off, on, blink. Index is led_status_t */
   5836	static const unsigned int led_sled_arg1[] = { 0, 1, 3 };
   5837	static const unsigned int led_led_arg1[] = { 0, 0x80, 0xc0 };
   5838
   5839	int rc = 0;
   5840
   5841	switch (led_supported) {
   5842	case TPACPI_LED_570:
   5843		/* 570 */
   5844		if (unlikely(led > 7))
   5845			return -EINVAL;
   5846		if (unlikely(tpacpi_is_led_restricted(led)))
   5847			return -EPERM;
   5848		if (!acpi_evalf(led_handle, NULL, NULL, "vdd",
   5849				(1 << led), led_sled_arg1[ledstatus]))
   5850			return -EIO;
   5851		break;
   5852	case TPACPI_LED_OLD:
   5853		/* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20 */
   5854		if (unlikely(led > 7))
   5855			return -EINVAL;
   5856		if (unlikely(tpacpi_is_led_restricted(led)))
   5857			return -EPERM;
   5858		rc = ec_write(TPACPI_LED_EC_HLMS, (1 << led));
   5859		if (rc >= 0)
   5860			rc = ec_write(TPACPI_LED_EC_HLBL,
   5861				      (ledstatus == TPACPI_LED_BLINK) << led);
   5862		if (rc >= 0)
   5863			rc = ec_write(TPACPI_LED_EC_HLCL,
   5864				      (ledstatus != TPACPI_LED_OFF) << led);
   5865		break;
   5866	case TPACPI_LED_NEW:
   5867		/* all others */
   5868		if (unlikely(led >= TPACPI_LED_NUMLEDS))
   5869			return -EINVAL;
   5870		if (unlikely(tpacpi_is_led_restricted(led)))
   5871			return -EPERM;
   5872		if (!acpi_evalf(led_handle, NULL, NULL, "vdd",
   5873				led, led_led_arg1[ledstatus]))
   5874			return -EIO;
   5875		break;
   5876	default:
   5877		return -ENXIO;
   5878	}
   5879
   5880	if (!rc)
   5881		tpacpi_led_state_cache[led] = ledstatus;
   5882
   5883	return rc;
   5884}
   5885
   5886static int led_sysfs_set(struct led_classdev *led_cdev,
   5887			enum led_brightness brightness)
   5888{
   5889	struct tpacpi_led_classdev *data = container_of(led_cdev,
   5890			     struct tpacpi_led_classdev, led_classdev);
   5891	enum led_status_t new_state;
   5892
   5893	if (brightness == LED_OFF)
   5894		new_state = TPACPI_LED_OFF;
   5895	else if (tpacpi_led_state_cache[data->led] != TPACPI_LED_BLINK)
   5896		new_state = TPACPI_LED_ON;
   5897	else
   5898		new_state = TPACPI_LED_BLINK;
   5899
   5900	return led_set_status(data->led, new_state);
   5901}
   5902
   5903static int led_sysfs_blink_set(struct led_classdev *led_cdev,
   5904			unsigned long *delay_on, unsigned long *delay_off)
   5905{
   5906	struct tpacpi_led_classdev *data = container_of(led_cdev,
   5907			     struct tpacpi_led_classdev, led_classdev);
   5908
   5909	/* Can we choose the flash rate? */
   5910	if (*delay_on == 0 && *delay_off == 0) {
   5911		/* yes. set them to the hardware blink rate (1 Hz) */
   5912		*delay_on = 500; /* ms */
   5913		*delay_off = 500; /* ms */
   5914	} else if ((*delay_on != 500) || (*delay_off != 500))
   5915		return -EINVAL;
   5916
   5917	return led_set_status(data->led, TPACPI_LED_BLINK);
   5918}
   5919
   5920static enum led_brightness led_sysfs_get(struct led_classdev *led_cdev)
   5921{
   5922	int rc;
   5923
   5924	struct tpacpi_led_classdev *data = container_of(led_cdev,
   5925			     struct tpacpi_led_classdev, led_classdev);
   5926
   5927	rc = led_get_status(data->led);
   5928
   5929	if (rc == TPACPI_LED_OFF || rc < 0)
   5930		rc = LED_OFF;	/* no error handling in led class :( */
   5931	else
   5932		rc = LED_FULL;
   5933
   5934	return rc;
   5935}
   5936
   5937static void led_exit(void)
   5938{
   5939	unsigned int i;
   5940
   5941	for (i = 0; i < TPACPI_LED_NUMLEDS; i++)
   5942		led_classdev_unregister(&tpacpi_leds[i].led_classdev);
   5943
   5944	kfree(tpacpi_leds);
   5945}
   5946
   5947static int __init tpacpi_init_led(unsigned int led)
   5948{
   5949	/* LEDs with no name don't get registered */
   5950	if (!tpacpi_led_names[led])
   5951		return 0;
   5952
   5953	tpacpi_leds[led].led_classdev.brightness_set_blocking = &led_sysfs_set;
   5954	tpacpi_leds[led].led_classdev.blink_set = &led_sysfs_blink_set;
   5955	if (led_supported == TPACPI_LED_570)
   5956		tpacpi_leds[led].led_classdev.brightness_get = &led_sysfs_get;
   5957
   5958	tpacpi_leds[led].led_classdev.name = tpacpi_led_names[led];
   5959	tpacpi_leds[led].led_classdev.flags = LED_RETAIN_AT_SHUTDOWN;
   5960	tpacpi_leds[led].led = led;
   5961
   5962	return led_classdev_register(&tpacpi_pdev->dev, &tpacpi_leds[led].led_classdev);
   5963}
   5964
   5965static const struct tpacpi_quirk led_useful_qtable[] __initconst = {
   5966	TPACPI_Q_IBM('1', 'E', 0x009f), /* A30 */
   5967	TPACPI_Q_IBM('1', 'N', 0x009f), /* A31 */
   5968	TPACPI_Q_IBM('1', 'G', 0x009f), /* A31 */
   5969
   5970	TPACPI_Q_IBM('1', 'I', 0x0097), /* T30 */
   5971	TPACPI_Q_IBM('1', 'R', 0x0097), /* T40, T41, T42, R50, R51 */
   5972	TPACPI_Q_IBM('7', '0', 0x0097), /* T43, R52 */
   5973	TPACPI_Q_IBM('1', 'Y', 0x0097), /* T43 */
   5974	TPACPI_Q_IBM('1', 'W', 0x0097), /* R50e */
   5975	TPACPI_Q_IBM('1', 'V', 0x0097), /* R51 */
   5976	TPACPI_Q_IBM('7', '8', 0x0097), /* R51e */
   5977	TPACPI_Q_IBM('7', '6', 0x0097), /* R52 */
   5978
   5979	TPACPI_Q_IBM('1', 'K', 0x00bf), /* X30 */
   5980	TPACPI_Q_IBM('1', 'Q', 0x00bf), /* X31, X32 */
   5981	TPACPI_Q_IBM('1', 'U', 0x00bf), /* X40 */
   5982	TPACPI_Q_IBM('7', '4', 0x00bf), /* X41 */
   5983	TPACPI_Q_IBM('7', '5', 0x00bf), /* X41t */
   5984
   5985	TPACPI_Q_IBM('7', '9', 0x1f97), /* T60 (1) */
   5986	TPACPI_Q_IBM('7', '7', 0x1f97), /* Z60* (1) */
   5987	TPACPI_Q_IBM('7', 'F', 0x1f97), /* Z61* (1) */
   5988	TPACPI_Q_IBM('7', 'B', 0x1fb7), /* X60 (1) */
   5989
   5990	/* (1) - may have excess leds enabled on MSB */
   5991
   5992	/* Defaults (order matters, keep last, don't reorder!) */
   5993	{ /* Lenovo */
   5994	  .vendor = PCI_VENDOR_ID_LENOVO,
   5995	  .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_ANY,
   5996	  .quirks = 0x1fffU,
   5997	},
   5998	{ /* IBM ThinkPads with no EC version string */
   5999	  .vendor = PCI_VENDOR_ID_IBM,
   6000	  .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_UNKNOWN,
   6001	  .quirks = 0x00ffU,
   6002	},
   6003	{ /* IBM ThinkPads with EC version string */
   6004	  .vendor = PCI_VENDOR_ID_IBM,
   6005	  .bios = TPACPI_MATCH_ANY, .ec = TPACPI_MATCH_ANY,
   6006	  .quirks = 0x00bfU,
   6007	},
   6008};
   6009
   6010static enum led_access_mode __init led_init_detect_mode(void)
   6011{
   6012	acpi_status status;
   6013
   6014	if (tpacpi_is_ibm()) {
   6015		/* 570 */
   6016		status = acpi_get_handle(ec_handle, "SLED", &led_handle);
   6017		if (ACPI_SUCCESS(status))
   6018			return TPACPI_LED_570;
   6019
   6020		/* 600e/x, 770e, 770x, A21e, A2xm/p, T20-22, X20-21 */
   6021		status = acpi_get_handle(ec_handle, "SYSL", &led_handle);
   6022		if (ACPI_SUCCESS(status))
   6023			return TPACPI_LED_OLD;
   6024	}
   6025
   6026	/* most others */
   6027	status = acpi_get_handle(ec_handle, "LED", &led_handle);
   6028	if (ACPI_SUCCESS(status))
   6029		return TPACPI_LED_NEW;
   6030
   6031	/* R30, R31, and unknown firmwares */
   6032	led_handle = NULL;
   6033	return TPACPI_LED_NONE;
   6034}
   6035
   6036static int __init led_init(struct ibm_init_struct *iibm)
   6037{
   6038	unsigned int i;
   6039	int rc;
   6040	unsigned long useful_leds;
   6041
   6042	vdbg_printk(TPACPI_DBG_INIT, "initializing LED subdriver\n");
   6043
   6044	led_supported = led_init_detect_mode();
   6045
   6046	if (led_supported != TPACPI_LED_NONE) {
   6047		useful_leds = tpacpi_check_quirks(led_useful_qtable,
   6048				ARRAY_SIZE(led_useful_qtable));
   6049
   6050		if (!useful_leds) {
   6051			led_handle = NULL;
   6052			led_supported = TPACPI_LED_NONE;
   6053		}
   6054	}
   6055
   6056	vdbg_printk(TPACPI_DBG_INIT, "LED commands are %s, mode %d\n",
   6057		str_supported(led_supported), led_supported);
   6058
   6059	if (led_supported == TPACPI_LED_NONE)
   6060		return -ENODEV;
   6061
   6062	tpacpi_leds = kcalloc(TPACPI_LED_NUMLEDS, sizeof(*tpacpi_leds),
   6063			      GFP_KERNEL);
   6064	if (!tpacpi_leds) {
   6065		pr_err("Out of memory for LED data\n");
   6066		return -ENOMEM;
   6067	}
   6068
   6069	for (i = 0; i < TPACPI_LED_NUMLEDS; i++) {
   6070		tpacpi_leds[i].led = -1;
   6071
   6072		if (!tpacpi_is_led_restricted(i) && test_bit(i, &useful_leds)) {
   6073			rc = tpacpi_init_led(i);
   6074			if (rc < 0) {
   6075				led_exit();
   6076				return rc;
   6077			}
   6078		}
   6079	}
   6080
   6081#ifdef CONFIG_THINKPAD_ACPI_UNSAFE_LEDS
   6082	pr_notice("warning: userspace override of important firmware LEDs is enabled\n");
   6083#endif
   6084	return 0;
   6085}
   6086
   6087#define str_led_status(s) \
   6088	((s) == TPACPI_LED_OFF ? "off" : \
   6089		((s) == TPACPI_LED_ON ? "on" : "blinking"))
   6090
   6091static int led_read(struct seq_file *m)
   6092{
   6093	if (!led_supported) {
   6094		seq_printf(m, "status:\t\tnot supported\n");
   6095		return 0;
   6096	}
   6097	seq_printf(m, "status:\t\tsupported\n");
   6098
   6099	if (led_supported == TPACPI_LED_570) {
   6100		/* 570 */
   6101		int i, status;
   6102		for (i = 0; i < 8; i++) {
   6103			status = led_get_status(i);
   6104			if (status < 0)
   6105				return -EIO;
   6106			seq_printf(m, "%d:\t\t%s\n",
   6107				       i, str_led_status(status));
   6108		}
   6109	}
   6110
   6111	seq_printf(m, "commands:\t<led> on, <led> off, <led> blink (<led> is 0-15)\n");
   6112
   6113	return 0;
   6114}
   6115
   6116static int led_write(char *buf)
   6117{
   6118	char *cmd;
   6119	int led, rc;
   6120	enum led_status_t s;
   6121
   6122	if (!led_supported)
   6123		return -ENODEV;
   6124
   6125	while ((cmd = strsep(&buf, ","))) {
   6126		if (sscanf(cmd, "%d", &led) != 1)
   6127			return -EINVAL;
   6128
   6129		if (led < 0 || led > (TPACPI_LED_NUMLEDS - 1))
   6130			return -ENODEV;
   6131
   6132		if (tpacpi_leds[led].led < 0)
   6133			return -ENODEV;
   6134
   6135		if (strstr(cmd, "off")) {
   6136			s = TPACPI_LED_OFF;
   6137		} else if (strstr(cmd, "on")) {
   6138			s = TPACPI_LED_ON;
   6139		} else if (strstr(cmd, "blink")) {
   6140			s = TPACPI_LED_BLINK;
   6141		} else {
   6142			return -EINVAL;
   6143		}
   6144
   6145		rc = led_set_status(led, s);
   6146		if (rc < 0)
   6147			return rc;
   6148	}
   6149
   6150	return 0;
   6151}
   6152
   6153static struct ibm_struct led_driver_data = {
   6154	.name = "led",
   6155	.read = led_read,
   6156	.write = led_write,
   6157	.exit = led_exit,
   6158};
   6159
   6160/*************************************************************************
   6161 * Beep subdriver
   6162 */
   6163
   6164TPACPI_HANDLE(beep, ec, "BEEP");	/* all except R30, R31 */
   6165
   6166#define TPACPI_BEEP_Q1 0x0001
   6167
   6168static const struct tpacpi_quirk beep_quirk_table[] __initconst = {
   6169	TPACPI_Q_IBM('I', 'M', TPACPI_BEEP_Q1), /* 570 */
   6170	TPACPI_Q_IBM('I', 'U', TPACPI_BEEP_Q1), /* 570E - unverified */
   6171};
   6172
   6173static int __init beep_init(struct ibm_init_struct *iibm)
   6174{
   6175	unsigned long quirks;
   6176
   6177	vdbg_printk(TPACPI_DBG_INIT, "initializing beep subdriver\n");
   6178
   6179	TPACPI_ACPIHANDLE_INIT(beep);
   6180
   6181	vdbg_printk(TPACPI_DBG_INIT, "beep is %s\n",
   6182		str_supported(beep_handle != NULL));
   6183
   6184	quirks = tpacpi_check_quirks(beep_quirk_table,
   6185				     ARRAY_SIZE(beep_quirk_table));
   6186
   6187	tp_features.beep_needs_two_args = !!(quirks & TPACPI_BEEP_Q1);
   6188
   6189	return (beep_handle) ? 0 : -ENODEV;
   6190}
   6191
   6192static int beep_read(struct seq_file *m)
   6193{
   6194	if (!beep_handle)
   6195		seq_printf(m, "status:\t\tnot supported\n");
   6196	else {
   6197		seq_printf(m, "status:\t\tsupported\n");
   6198		seq_printf(m, "commands:\t<cmd> (<cmd> is 0-17)\n");
   6199	}
   6200
   6201	return 0;
   6202}
   6203
   6204static int beep_write(char *buf)
   6205{
   6206	char *cmd;
   6207	int beep_cmd;
   6208
   6209	if (!beep_handle)
   6210		return -ENODEV;
   6211
   6212	while ((cmd = strsep(&buf, ","))) {
   6213		if (sscanf(cmd, "%u", &beep_cmd) == 1 &&
   6214		    beep_cmd >= 0 && beep_cmd <= 17) {
   6215			/* beep_cmd set */
   6216		} else
   6217			return -EINVAL;
   6218		if (tp_features.beep_needs_two_args) {
   6219			if (!acpi_evalf(beep_handle, NULL, NULL, "vdd",
   6220					beep_cmd, 0))
   6221				return -EIO;
   6222		} else {
   6223			if (!acpi_evalf(beep_handle, NULL, NULL, "vd",
   6224					beep_cmd))
   6225				return -EIO;
   6226		}
   6227	}
   6228
   6229	return 0;
   6230}
   6231
   6232static struct ibm_struct beep_driver_data = {
   6233	.name = "beep",
   6234	.read = beep_read,
   6235	.write = beep_write,
   6236};
   6237
   6238/*************************************************************************
   6239 * Thermal subdriver
   6240 */
   6241
   6242enum thermal_access_mode {
   6243	TPACPI_THERMAL_NONE = 0,	/* No thermal support */
   6244	TPACPI_THERMAL_ACPI_TMP07,	/* Use ACPI TMP0-7 */
   6245	TPACPI_THERMAL_ACPI_UPDT,	/* Use ACPI TMP0-7 with UPDT */
   6246	TPACPI_THERMAL_TPEC_8,		/* Use ACPI EC regs, 8 sensors */
   6247	TPACPI_THERMAL_TPEC_16,		/* Use ACPI EC regs, 16 sensors */
   6248};
   6249
   6250enum { /* TPACPI_THERMAL_TPEC_* */
   6251	TP_EC_THERMAL_TMP0 = 0x78,	/* ACPI EC regs TMP 0..7 */
   6252	TP_EC_THERMAL_TMP8 = 0xC0,	/* ACPI EC regs TMP 8..15 */
   6253	TP_EC_FUNCREV      = 0xEF,      /* ACPI EC Functional revision */
   6254	TP_EC_THERMAL_TMP_NA = -128,	/* ACPI EC sensor not available */
   6255
   6256	TPACPI_THERMAL_SENSOR_NA = -128000, /* Sensor not available */
   6257};
   6258
   6259
   6260#define TPACPI_MAX_THERMAL_SENSORS 16	/* Max thermal sensors supported */
   6261struct ibm_thermal_sensors_struct {
   6262	s32 temp[TPACPI_MAX_THERMAL_SENSORS];
   6263};
   6264
   6265static enum thermal_access_mode thermal_read_mode;
   6266static bool thermal_use_labels;
   6267
   6268/* idx is zero-based */
   6269static int thermal_get_sensor(int idx, s32 *value)
   6270{
   6271	int t;
   6272	s8 tmp;
   6273	char tmpi[5];
   6274
   6275	t = TP_EC_THERMAL_TMP0;
   6276
   6277	switch (thermal_read_mode) {
   6278#if TPACPI_MAX_THERMAL_SENSORS >= 16
   6279	case TPACPI_THERMAL_TPEC_16:
   6280		if (idx >= 8 && idx <= 15) {
   6281			t = TP_EC_THERMAL_TMP8;
   6282			idx -= 8;
   6283		}
   6284#endif
   6285		fallthrough;
   6286	case TPACPI_THERMAL_TPEC_8:
   6287		if (idx <= 7) {
   6288			if (!acpi_ec_read(t + idx, &tmp))
   6289				return -EIO;
   6290			*value = tmp * 1000;
   6291			return 0;
   6292		}
   6293		break;
   6294
   6295	case TPACPI_THERMAL_ACPI_UPDT:
   6296		if (idx <= 7) {
   6297			snprintf(tmpi, sizeof(tmpi), "TMP%c", '0' + idx);
   6298			if (!acpi_evalf(ec_handle, NULL, "UPDT", "v"))
   6299				return -EIO;
   6300			if (!acpi_evalf(ec_handle, &t, tmpi, "d"))
   6301				return -EIO;
   6302			*value = (t - 2732) * 100;
   6303			return 0;
   6304		}
   6305		break;
   6306
   6307	case TPACPI_THERMAL_ACPI_TMP07:
   6308		if (idx <= 7) {
   6309			snprintf(tmpi, sizeof(tmpi), "TMP%c", '0' + idx);
   6310			if (!acpi_evalf(ec_handle, &t, tmpi, "d"))
   6311				return -EIO;
   6312			if (t > 127 || t < -127)
   6313				t = TP_EC_THERMAL_TMP_NA;
   6314			*value = t * 1000;
   6315			return 0;
   6316		}
   6317		break;
   6318
   6319	case TPACPI_THERMAL_NONE:
   6320	default:
   6321		return -ENOSYS;
   6322	}
   6323
   6324	return -EINVAL;
   6325}
   6326
   6327static int thermal_get_sensors(struct ibm_thermal_sensors_struct *s)
   6328{
   6329	int res, i;
   6330	int n;
   6331
   6332	n = 8;
   6333	i = 0;
   6334
   6335	if (!s)
   6336		return -EINVAL;
   6337
   6338	if (thermal_read_mode == TPACPI_THERMAL_TPEC_16)
   6339		n = 16;
   6340
   6341	for (i = 0 ; i < n; i++) {
   6342		res = thermal_get_sensor(i, &s->temp[i]);
   6343		if (res)
   6344			return res;
   6345	}
   6346
   6347	return n;
   6348}
   6349
   6350static void thermal_dump_all_sensors(void)
   6351{
   6352	int n, i;
   6353	struct ibm_thermal_sensors_struct t;
   6354
   6355	n = thermal_get_sensors(&t);
   6356	if (n <= 0)
   6357		return;
   6358
   6359	pr_notice("temperatures (Celsius):");
   6360
   6361	for (i = 0; i < n; i++) {
   6362		if (t.temp[i] != TPACPI_THERMAL_SENSOR_NA)
   6363			pr_cont(" %d", (int)(t.temp[i] / 1000));
   6364		else
   6365			pr_cont(" N/A");
   6366	}
   6367
   6368	pr_cont("\n");
   6369}
   6370
   6371/* sysfs temp##_input -------------------------------------------------- */
   6372
   6373static ssize_t thermal_temp_input_show(struct device *dev,
   6374			   struct device_attribute *attr,
   6375			   char *buf)
   6376{
   6377	struct sensor_device_attribute *sensor_attr =
   6378					to_sensor_dev_attr(attr);
   6379	int idx = sensor_attr->index;
   6380	s32 value;
   6381	int res;
   6382
   6383	res = thermal_get_sensor(idx, &value);
   6384	if (res)
   6385		return res;
   6386	if (value == TPACPI_THERMAL_SENSOR_NA)
   6387		return -ENXIO;
   6388
   6389	return sysfs_emit(buf, "%d\n", value);
   6390}
   6391
   6392#define THERMAL_SENSOR_ATTR_TEMP(_idxA, _idxB) \
   6393	 SENSOR_ATTR(temp##_idxA##_input, S_IRUGO, \
   6394		     thermal_temp_input_show, NULL, _idxB)
   6395
   6396static struct sensor_device_attribute sensor_dev_attr_thermal_temp_input[] = {
   6397	THERMAL_SENSOR_ATTR_TEMP(1, 0),
   6398	THERMAL_SENSOR_ATTR_TEMP(2, 1),
   6399	THERMAL_SENSOR_ATTR_TEMP(3, 2),
   6400	THERMAL_SENSOR_ATTR_TEMP(4, 3),
   6401	THERMAL_SENSOR_ATTR_TEMP(5, 4),
   6402	THERMAL_SENSOR_ATTR_TEMP(6, 5),
   6403	THERMAL_SENSOR_ATTR_TEMP(7, 6),
   6404	THERMAL_SENSOR_ATTR_TEMP(8, 7),
   6405	THERMAL_SENSOR_ATTR_TEMP(9, 8),
   6406	THERMAL_SENSOR_ATTR_TEMP(10, 9),
   6407	THERMAL_SENSOR_ATTR_TEMP(11, 10),
   6408	THERMAL_SENSOR_ATTR_TEMP(12, 11),
   6409	THERMAL_SENSOR_ATTR_TEMP(13, 12),
   6410	THERMAL_SENSOR_ATTR_TEMP(14, 13),
   6411	THERMAL_SENSOR_ATTR_TEMP(15, 14),
   6412	THERMAL_SENSOR_ATTR_TEMP(16, 15),
   6413};
   6414
   6415#define THERMAL_ATTRS(X) \
   6416	&sensor_dev_attr_thermal_temp_input[X].dev_attr.attr
   6417
   6418static struct attribute *thermal_temp_input_attr[] = {
   6419	THERMAL_ATTRS(0),
   6420	THERMAL_ATTRS(1),
   6421	THERMAL_ATTRS(2),
   6422	THERMAL_ATTRS(3),
   6423	THERMAL_ATTRS(4),
   6424	THERMAL_ATTRS(5),
   6425	THERMAL_ATTRS(6),
   6426	THERMAL_ATTRS(7),
   6427	THERMAL_ATTRS(8),
   6428	THERMAL_ATTRS(9),
   6429	THERMAL_ATTRS(10),
   6430	THERMAL_ATTRS(11),
   6431	THERMAL_ATTRS(12),
   6432	THERMAL_ATTRS(13),
   6433	THERMAL_ATTRS(14),
   6434	THERMAL_ATTRS(15),
   6435	NULL
   6436};
   6437
   6438static umode_t thermal_attr_is_visible(struct kobject *kobj,
   6439				       struct attribute *attr, int n)
   6440{
   6441	if (thermal_read_mode == TPACPI_THERMAL_NONE)
   6442		return 0;
   6443
   6444	if (attr == THERMAL_ATTRS(8) || attr == THERMAL_ATTRS(9) ||
   6445	    attr == THERMAL_ATTRS(10) || attr == THERMAL_ATTRS(11) ||
   6446	    attr == THERMAL_ATTRS(12) || attr == THERMAL_ATTRS(13) ||
   6447	    attr == THERMAL_ATTRS(14) || attr == THERMAL_ATTRS(15)) {
   6448		if (thermal_read_mode != TPACPI_THERMAL_TPEC_16)
   6449			return 0;
   6450	}
   6451
   6452	return attr->mode;
   6453}
   6454
   6455static const struct attribute_group thermal_attr_group = {
   6456	.is_visible = thermal_attr_is_visible,
   6457	.attrs = thermal_temp_input_attr,
   6458};
   6459
   6460#undef THERMAL_SENSOR_ATTR_TEMP
   6461#undef THERMAL_ATTRS
   6462
   6463static ssize_t temp1_label_show(struct device *dev, struct device_attribute *attr, char *buf)
   6464{
   6465	return sysfs_emit(buf, "CPU\n");
   6466}
   6467static DEVICE_ATTR_RO(temp1_label);
   6468
   6469static ssize_t temp2_label_show(struct device *dev, struct device_attribute *attr, char *buf)
   6470{
   6471	return sysfs_emit(buf, "GPU\n");
   6472}
   6473static DEVICE_ATTR_RO(temp2_label);
   6474
   6475static struct attribute *temp_label_attributes[] = {
   6476	&dev_attr_temp1_label.attr,
   6477	&dev_attr_temp2_label.attr,
   6478	NULL
   6479};
   6480
   6481static umode_t temp_label_attr_is_visible(struct kobject *kobj,
   6482					  struct attribute *attr, int n)
   6483{
   6484	return thermal_use_labels ? attr->mode : 0;
   6485}
   6486
   6487static const struct attribute_group temp_label_attr_group = {
   6488	.is_visible = temp_label_attr_is_visible,
   6489	.attrs = temp_label_attributes,
   6490};
   6491
   6492/* --------------------------------------------------------------------- */
   6493
   6494static int __init thermal_init(struct ibm_init_struct *iibm)
   6495{
   6496	u8 t, ta1, ta2, ver = 0;
   6497	int i;
   6498	int acpi_tmp7;
   6499
   6500	vdbg_printk(TPACPI_DBG_INIT, "initializing thermal subdriver\n");
   6501
   6502	acpi_tmp7 = acpi_evalf(ec_handle, NULL, "TMP7", "qv");
   6503
   6504	if (thinkpad_id.ec_model) {
   6505		/*
   6506		 * Direct EC access mode: sensors at registers
   6507		 * 0x78-0x7F, 0xC0-0xC7.  Registers return 0x00 for
   6508		 * non-implemented, thermal sensors return 0x80 when
   6509		 * not available
   6510		 * The above rule is unfortunately flawed. This has been seen with
   6511		 * 0xC2 (power supply ID) causing thermal control problems.
   6512		 * The EC version can be determined by offset 0xEF and at least for
   6513		 * version 3 the Lenovo firmware team confirmed that registers 0xC0-0xC7
   6514		 * are not thermal registers.
   6515		 */
   6516		if (!acpi_ec_read(TP_EC_FUNCREV, &ver))
   6517			pr_warn("Thinkpad ACPI EC unable to access EC version\n");
   6518
   6519		ta1 = ta2 = 0;
   6520		for (i = 0; i < 8; i++) {
   6521			if (acpi_ec_read(TP_EC_THERMAL_TMP0 + i, &t)) {
   6522				ta1 |= t;
   6523			} else {
   6524				ta1 = 0;
   6525				break;
   6526			}
   6527			if (ver < 3) {
   6528				if (acpi_ec_read(TP_EC_THERMAL_TMP8 + i, &t)) {
   6529					ta2 |= t;
   6530				} else {
   6531					ta1 = 0;
   6532					break;
   6533				}
   6534			}
   6535		}
   6536		if (ta1 == 0) {
   6537			/* This is sheer paranoia, but we handle it anyway */
   6538			if (acpi_tmp7) {
   6539				pr_err("ThinkPad ACPI EC access misbehaving, falling back to ACPI TMPx access mode\n");
   6540				thermal_read_mode = TPACPI_THERMAL_ACPI_TMP07;
   6541			} else {
   6542				pr_err("ThinkPad ACPI EC access misbehaving, disabling thermal sensors access\n");
   6543				thermal_read_mode = TPACPI_THERMAL_NONE;
   6544			}
   6545		} else {
   6546			if (ver >= 3) {
   6547				thermal_read_mode = TPACPI_THERMAL_TPEC_8;
   6548				thermal_use_labels = true;
   6549			} else {
   6550				thermal_read_mode =
   6551					(ta2 != 0) ?
   6552					TPACPI_THERMAL_TPEC_16 : TPACPI_THERMAL_TPEC_8;
   6553			}
   6554		}
   6555	} else if (acpi_tmp7) {
   6556		if (tpacpi_is_ibm() &&
   6557		    acpi_evalf(ec_handle, NULL, "UPDT", "qv")) {
   6558			/* 600e/x, 770e, 770x */
   6559			thermal_read_mode = TPACPI_THERMAL_ACPI_UPDT;
   6560		} else {
   6561			/* IBM/LENOVO DSDT EC.TMPx access, max 8 sensors */
   6562			thermal_read_mode = TPACPI_THERMAL_ACPI_TMP07;
   6563		}
   6564	} else {
   6565		/* temperatures not supported on 570, G4x, R30, R31, R32 */
   6566		thermal_read_mode = TPACPI_THERMAL_NONE;
   6567	}
   6568
   6569	vdbg_printk(TPACPI_DBG_INIT, "thermal is %s, mode %d\n",
   6570		str_supported(thermal_read_mode != TPACPI_THERMAL_NONE),
   6571		thermal_read_mode);
   6572
   6573	return thermal_read_mode != TPACPI_THERMAL_NONE ? 0 : -ENODEV;
   6574}
   6575
   6576static int thermal_read(struct seq_file *m)
   6577{
   6578	int n, i;
   6579	struct ibm_thermal_sensors_struct t;
   6580
   6581	n = thermal_get_sensors(&t);
   6582	if (unlikely(n < 0))
   6583		return n;
   6584
   6585	seq_printf(m, "temperatures:\t");
   6586
   6587	if (n > 0) {
   6588		for (i = 0; i < (n - 1); i++)
   6589			seq_printf(m, "%d ", t.temp[i] / 1000);
   6590		seq_printf(m, "%d\n", t.temp[i] / 1000);
   6591	} else
   6592		seq_printf(m, "not supported\n");
   6593
   6594	return 0;
   6595}
   6596
   6597static struct ibm_struct thermal_driver_data = {
   6598	.name = "thermal",
   6599	.read = thermal_read,
   6600};
   6601
   6602/*************************************************************************
   6603 * Backlight/brightness subdriver
   6604 */
   6605
   6606#define TPACPI_BACKLIGHT_DEV_NAME "thinkpad_screen"
   6607
   6608/*
   6609 * ThinkPads can read brightness from two places: EC HBRV (0x31), or
   6610 * CMOS NVRAM byte 0x5E, bits 0-3.
   6611 *
   6612 * EC HBRV (0x31) has the following layout
   6613 *   Bit 7: unknown function
   6614 *   Bit 6: unknown function
   6615 *   Bit 5: Z: honour scale changes, NZ: ignore scale changes
   6616 *   Bit 4: must be set to zero to avoid problems
   6617 *   Bit 3-0: backlight brightness level
   6618 *
   6619 * brightness_get_raw returns status data in the HBRV layout
   6620 *
   6621 * WARNING: The X61 has been verified to use HBRV for something else, so
   6622 * this should be used _only_ on IBM ThinkPads, and maybe with some careful
   6623 * testing on the very early *60 Lenovo models...
   6624 */
   6625
   6626enum {
   6627	TP_EC_BACKLIGHT = 0x31,
   6628
   6629	/* TP_EC_BACKLIGHT bitmasks */
   6630	TP_EC_BACKLIGHT_LVLMSK = 0x1F,
   6631	TP_EC_BACKLIGHT_CMDMSK = 0xE0,
   6632	TP_EC_BACKLIGHT_MAPSW = 0x20,
   6633};
   6634
   6635enum tpacpi_brightness_access_mode {
   6636	TPACPI_BRGHT_MODE_AUTO = 0,	/* Not implemented yet */
   6637	TPACPI_BRGHT_MODE_EC,		/* EC control */
   6638	TPACPI_BRGHT_MODE_UCMS_STEP,	/* UCMS step-based control */
   6639	TPACPI_BRGHT_MODE_ECNVRAM,	/* EC control w/ NVRAM store */
   6640	TPACPI_BRGHT_MODE_MAX
   6641};
   6642
   6643static struct backlight_device *ibm_backlight_device;
   6644
   6645static enum tpacpi_brightness_access_mode brightness_mode =
   6646		TPACPI_BRGHT_MODE_MAX;
   6647
   6648static unsigned int brightness_enable = 2; /* 2 = auto, 0 = no, 1 = yes */
   6649
   6650static struct mutex brightness_mutex;
   6651
   6652/* NVRAM brightness access,
   6653 * call with brightness_mutex held! */
   6654static unsigned int tpacpi_brightness_nvram_get(void)
   6655{
   6656	u8 lnvram;
   6657
   6658	lnvram = (nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS)
   6659		  & TP_NVRAM_MASK_LEVEL_BRIGHTNESS)
   6660		  >> TP_NVRAM_POS_LEVEL_BRIGHTNESS;
   6661	lnvram &= bright_maxlvl;
   6662
   6663	return lnvram;
   6664}
   6665
   6666static void tpacpi_brightness_checkpoint_nvram(void)
   6667{
   6668	u8 lec = 0;
   6669	u8 b_nvram;
   6670
   6671	if (brightness_mode != TPACPI_BRGHT_MODE_ECNVRAM)
   6672		return;
   6673
   6674	vdbg_printk(TPACPI_DBG_BRGHT,
   6675		"trying to checkpoint backlight level to NVRAM...\n");
   6676
   6677	if (mutex_lock_killable(&brightness_mutex) < 0)
   6678		return;
   6679
   6680	if (unlikely(!acpi_ec_read(TP_EC_BACKLIGHT, &lec)))
   6681		goto unlock;
   6682	lec &= TP_EC_BACKLIGHT_LVLMSK;
   6683	b_nvram = nvram_read_byte(TP_NVRAM_ADDR_BRIGHTNESS);
   6684
   6685	if (lec != ((b_nvram & TP_NVRAM_MASK_LEVEL_BRIGHTNESS)
   6686			     >> TP_NVRAM_POS_LEVEL_BRIGHTNESS)) {
   6687		/* NVRAM needs update */
   6688		b_nvram &= ~(TP_NVRAM_MASK_LEVEL_BRIGHTNESS <<
   6689				TP_NVRAM_POS_LEVEL_BRIGHTNESS);
   6690		b_nvram |= lec;
   6691		nvram_write_byte(b_nvram, TP_NVRAM_ADDR_BRIGHTNESS);
   6692		dbg_printk(TPACPI_DBG_BRGHT,
   6693			   "updated NVRAM backlight level to %u (0x%02x)\n",
   6694			   (unsigned int) lec, (unsigned int) b_nvram);
   6695	} else
   6696		vdbg_printk(TPACPI_DBG_BRGHT,
   6697			   "NVRAM backlight level already is %u (0x%02x)\n",
   6698			   (unsigned int) lec, (unsigned int) b_nvram);
   6699
   6700unlock:
   6701	mutex_unlock(&brightness_mutex);
   6702}
   6703
   6704
   6705/* call with brightness_mutex held! */
   6706static int tpacpi_brightness_get_raw(int *status)
   6707{
   6708	u8 lec = 0;
   6709
   6710	switch (brightness_mode) {
   6711	case TPACPI_BRGHT_MODE_UCMS_STEP:
   6712		*status = tpacpi_brightness_nvram_get();
   6713		return 0;
   6714	case TPACPI_BRGHT_MODE_EC:
   6715	case TPACPI_BRGHT_MODE_ECNVRAM:
   6716		if (unlikely(!acpi_ec_read(TP_EC_BACKLIGHT, &lec)))
   6717			return -EIO;
   6718		*status = lec;
   6719		return 0;
   6720	default:
   6721		return -ENXIO;
   6722	}
   6723}
   6724
   6725/* call with brightness_mutex held! */
   6726/* do NOT call with illegal backlight level value */
   6727static int tpacpi_brightness_set_ec(unsigned int value)
   6728{
   6729	u8 lec = 0;
   6730
   6731	if (unlikely(!acpi_ec_read(TP_EC_BACKLIGHT, &lec)))
   6732		return -EIO;
   6733
   6734	if (unlikely(!acpi_ec_write(TP_EC_BACKLIGHT,
   6735				(lec & TP_EC_BACKLIGHT_CMDMSK) |
   6736				(value & TP_EC_BACKLIGHT_LVLMSK))))
   6737		return -EIO;
   6738
   6739	return 0;
   6740}
   6741
   6742/* call with brightness_mutex held! */
   6743static int tpacpi_brightness_set_ucmsstep(unsigned int value)
   6744{
   6745	int cmos_cmd, inc;
   6746	unsigned int current_value, i;
   6747
   6748	current_value = tpacpi_brightness_nvram_get();
   6749
   6750	if (value == current_value)
   6751		return 0;
   6752
   6753	cmos_cmd = (value > current_value) ?
   6754			TP_CMOS_BRIGHTNESS_UP :
   6755			TP_CMOS_BRIGHTNESS_DOWN;
   6756	inc = (value > current_value) ? 1 : -1;
   6757
   6758	for (i = current_value; i != value; i += inc)
   6759		if (issue_thinkpad_cmos_command(cmos_cmd))
   6760			return -EIO;
   6761
   6762	return 0;
   6763}
   6764
   6765/* May return EINTR which can always be mapped to ERESTARTSYS */
   6766static int brightness_set(unsigned int value)
   6767{
   6768	int res;
   6769
   6770	if (value > bright_maxlvl)
   6771		return -EINVAL;
   6772
   6773	vdbg_printk(TPACPI_DBG_BRGHT,
   6774			"set backlight level to %d\n", value);
   6775
   6776	res = mutex_lock_killable(&brightness_mutex);
   6777	if (res < 0)
   6778		return res;
   6779
   6780	switch (brightness_mode) {
   6781	case TPACPI_BRGHT_MODE_EC:
   6782	case TPACPI_BRGHT_MODE_ECNVRAM:
   6783		res = tpacpi_brightness_set_ec(value);
   6784		break;
   6785	case TPACPI_BRGHT_MODE_UCMS_STEP:
   6786		res = tpacpi_brightness_set_ucmsstep(value);
   6787		break;
   6788	default:
   6789		res = -ENXIO;
   6790	}
   6791
   6792	mutex_unlock(&brightness_mutex);
   6793	return res;
   6794}
   6795
   6796/* sysfs backlight class ----------------------------------------------- */
   6797
   6798static int brightness_update_status(struct backlight_device *bd)
   6799{
   6800	unsigned int level =
   6801		(bd->props.fb_blank == FB_BLANK_UNBLANK &&
   6802		 bd->props.power == FB_BLANK_UNBLANK) ?
   6803				bd->props.brightness : 0;
   6804
   6805	dbg_printk(TPACPI_DBG_BRGHT,
   6806			"backlight: attempt to set level to %d\n",
   6807			level);
   6808
   6809	/* it is the backlight class's job (caller) to handle
   6810	 * EINTR and other errors properly */
   6811	return brightness_set(level);
   6812}
   6813
   6814static int brightness_get(struct backlight_device *bd)
   6815{
   6816	int status, res;
   6817
   6818	res = mutex_lock_killable(&brightness_mutex);
   6819	if (res < 0)
   6820		return 0;
   6821
   6822	res = tpacpi_brightness_get_raw(&status);
   6823
   6824	mutex_unlock(&brightness_mutex);
   6825
   6826	if (res < 0)
   6827		return 0;
   6828
   6829	return status & TP_EC_BACKLIGHT_LVLMSK;
   6830}
   6831
   6832static void tpacpi_brightness_notify_change(void)
   6833{
   6834	backlight_force_update(ibm_backlight_device,
   6835			       BACKLIGHT_UPDATE_HOTKEY);
   6836}
   6837
   6838static const struct backlight_ops ibm_backlight_data = {
   6839	.get_brightness = brightness_get,
   6840	.update_status  = brightness_update_status,
   6841};
   6842
   6843/* --------------------------------------------------------------------- */
   6844
   6845/*
   6846 * Call _BCL method of video device.  On some ThinkPads this will
   6847 * switch the firmware to the ACPI brightness control mode.
   6848 */
   6849
   6850static int __init tpacpi_query_bcl_levels(acpi_handle handle)
   6851{
   6852	struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
   6853	union acpi_object *obj;
   6854	struct acpi_device *device, *child;
   6855	int rc;
   6856
   6857	device = acpi_fetch_acpi_dev(handle);
   6858	if (!device)
   6859		return 0;
   6860
   6861	rc = 0;
   6862	list_for_each_entry(child, &device->children, node) {
   6863		acpi_status status = acpi_evaluate_object(child->handle, "_BCL",
   6864							  NULL, &buffer);
   6865		if (ACPI_FAILURE(status)) {
   6866			buffer.length = ACPI_ALLOCATE_BUFFER;
   6867			continue;
   6868		}
   6869
   6870		obj = (union acpi_object *)buffer.pointer;
   6871		if (!obj || (obj->type != ACPI_TYPE_PACKAGE)) {
   6872			pr_err("Unknown _BCL data, please report this to %s\n",
   6873				TPACPI_MAIL);
   6874			rc = 0;
   6875		} else {
   6876			rc = obj->package.count;
   6877		}
   6878		break;
   6879	}
   6880
   6881	kfree(buffer.pointer);
   6882	return rc;
   6883}
   6884
   6885
   6886/*
   6887 * Returns 0 (no ACPI _BCL or _BCL invalid), or size of brightness map
   6888 */
   6889static unsigned int __init tpacpi_check_std_acpi_brightness_support(void)
   6890{
   6891	acpi_handle video_device;
   6892	int bcl_levels = 0;
   6893
   6894	tpacpi_acpi_handle_locate("video", NULL, &video_device);
   6895	if (video_device)
   6896		bcl_levels = tpacpi_query_bcl_levels(video_device);
   6897
   6898	tp_features.bright_acpimode = (bcl_levels > 0);
   6899
   6900	return (bcl_levels > 2) ? (bcl_levels - 2) : 0;
   6901}
   6902
   6903/*
   6904 * These are only useful for models that have only one possibility
   6905 * of GPU.  If the BIOS model handles both ATI and Intel, don't use
   6906 * these quirks.
   6907 */
   6908#define TPACPI_BRGHT_Q_NOEC	0x0001	/* Must NOT use EC HBRV */
   6909#define TPACPI_BRGHT_Q_EC	0x0002  /* Should or must use EC HBRV */
   6910#define TPACPI_BRGHT_Q_ASK	0x8000	/* Ask for user report */
   6911
   6912static const struct tpacpi_quirk brightness_quirk_table[] __initconst = {
   6913	/* Models with ATI GPUs known to require ECNVRAM mode */
   6914	TPACPI_Q_IBM('1', 'Y', TPACPI_BRGHT_Q_EC),	/* T43/p ATI */
   6915
   6916	/* Models with ATI GPUs that can use ECNVRAM */
   6917	TPACPI_Q_IBM('1', 'R', TPACPI_BRGHT_Q_EC),	/* R50,51 T40-42 */
   6918	TPACPI_Q_IBM('1', 'Q', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
   6919	TPACPI_Q_IBM('7', '6', TPACPI_BRGHT_Q_EC),	/* R52 */
   6920	TPACPI_Q_IBM('7', '8', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
   6921
   6922	/* Models with Intel Extreme Graphics 2 */
   6923	TPACPI_Q_IBM('1', 'U', TPACPI_BRGHT_Q_NOEC),	/* X40 */
   6924	TPACPI_Q_IBM('1', 'V', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
   6925	TPACPI_Q_IBM('1', 'W', TPACPI_BRGHT_Q_ASK|TPACPI_BRGHT_Q_EC),
   6926
   6927	/* Models with Intel GMA900 */
   6928	TPACPI_Q_IBM('7', '0', TPACPI_BRGHT_Q_NOEC),	/* T43, R52 */
   6929	TPACPI_Q_IBM('7', '4', TPACPI_BRGHT_Q_NOEC),	/* X41 */
   6930	TPACPI_Q_IBM('7', '5', TPACPI_BRGHT_Q_NOEC),	/* X41 Tablet */
   6931};
   6932
   6933/*
   6934 * Returns < 0 for error, otherwise sets tp_features.bright_*
   6935 * and bright_maxlvl.
   6936 */
   6937static void __init tpacpi_detect_brightness_capabilities(void)
   6938{
   6939	unsigned int b;
   6940
   6941	vdbg_printk(TPACPI_DBG_INIT,
   6942		    "detecting firmware brightness interface capabilities\n");
   6943
   6944	/* we could run a quirks check here (same table used by
   6945	 * brightness_init) if needed */
   6946
   6947	/*
   6948	 * We always attempt to detect acpi support, so as to switch
   6949	 * Lenovo Vista BIOS to ACPI brightness mode even if we are not
   6950	 * going to publish a backlight interface
   6951	 */
   6952	b = tpacpi_check_std_acpi_brightness_support();
   6953	switch (b) {
   6954	case 16:
   6955		bright_maxlvl = 15;
   6956		break;
   6957	case 8:
   6958	case 0:
   6959		bright_maxlvl = 7;
   6960		break;
   6961	default:
   6962		tp_features.bright_unkfw = 1;
   6963		bright_maxlvl = b - 1;
   6964	}
   6965	pr_debug("detected %u brightness levels\n", bright_maxlvl + 1);
   6966}
   6967
   6968static int __init brightness_init(struct ibm_init_struct *iibm)
   6969{
   6970	struct backlight_properties props;
   6971	int b;
   6972	unsigned long quirks;
   6973
   6974	vdbg_printk(TPACPI_DBG_INIT, "initializing brightness subdriver\n");
   6975
   6976	mutex_init(&brightness_mutex);
   6977
   6978	quirks = tpacpi_check_quirks(brightness_quirk_table,
   6979				ARRAY_SIZE(brightness_quirk_table));
   6980
   6981	/* tpacpi_detect_brightness_capabilities() must have run already */
   6982
   6983	/* if it is unknown, we don't handle it: it wouldn't be safe */
   6984	if (tp_features.bright_unkfw)
   6985		return -ENODEV;
   6986
   6987	if (!brightness_enable) {
   6988		dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_BRGHT,
   6989			   "brightness support disabled by module parameter\n");
   6990		return -ENODEV;
   6991	}
   6992
   6993	if (acpi_video_get_backlight_type() != acpi_backlight_vendor) {
   6994		if (brightness_enable > 1) {
   6995			pr_info("Standard ACPI backlight interface available, not loading native one\n");
   6996			return -ENODEV;
   6997		} else if (brightness_enable == 1) {
   6998			pr_warn("Cannot enable backlight brightness support, ACPI is already handling it.  Refer to the acpi_backlight kernel parameter.\n");
   6999			return -ENODEV;
   7000		}
   7001	} else if (!tp_features.bright_acpimode) {
   7002		pr_notice("ACPI backlight interface not available\n");
   7003		return -ENODEV;
   7004	}
   7005
   7006	pr_notice("ACPI native brightness control enabled\n");
   7007
   7008	/*
   7009	 * Check for module parameter bogosity, note that we
   7010	 * init brightness_mode to TPACPI_BRGHT_MODE_MAX in order to be
   7011	 * able to detect "unspecified"
   7012	 */
   7013	if (brightness_mode > TPACPI_BRGHT_MODE_MAX)
   7014		return -EINVAL;
   7015
   7016	/* TPACPI_BRGHT_MODE_AUTO not implemented yet, just use default */
   7017	if (brightness_mode == TPACPI_BRGHT_MODE_AUTO ||
   7018	    brightness_mode == TPACPI_BRGHT_MODE_MAX) {
   7019		if (quirks & TPACPI_BRGHT_Q_EC)
   7020			brightness_mode = TPACPI_BRGHT_MODE_ECNVRAM;
   7021		else
   7022			brightness_mode = TPACPI_BRGHT_MODE_UCMS_STEP;
   7023
   7024		dbg_printk(TPACPI_DBG_BRGHT,
   7025			   "driver auto-selected brightness_mode=%d\n",
   7026			   brightness_mode);
   7027	}
   7028
   7029	/* Safety */
   7030	if (!tpacpi_is_ibm() &&
   7031	    (brightness_mode == TPACPI_BRGHT_MODE_ECNVRAM ||
   7032	     brightness_mode == TPACPI_BRGHT_MODE_EC))
   7033		return -EINVAL;
   7034
   7035	if (tpacpi_brightness_get_raw(&b) < 0)
   7036		return -ENODEV;
   7037
   7038	memset(&props, 0, sizeof(struct backlight_properties));
   7039	props.type = BACKLIGHT_PLATFORM;
   7040	props.max_brightness = bright_maxlvl;
   7041	props.brightness = b & TP_EC_BACKLIGHT_LVLMSK;
   7042	ibm_backlight_device = backlight_device_register(TPACPI_BACKLIGHT_DEV_NAME,
   7043							 NULL, NULL,
   7044							 &ibm_backlight_data,
   7045							 &props);
   7046	if (IS_ERR(ibm_backlight_device)) {
   7047		int rc = PTR_ERR(ibm_backlight_device);
   7048		ibm_backlight_device = NULL;
   7049		pr_err("Could not register backlight device\n");
   7050		return rc;
   7051	}
   7052	vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_BRGHT,
   7053			"brightness is supported\n");
   7054
   7055	if (quirks & TPACPI_BRGHT_Q_ASK) {
   7056		pr_notice("brightness: will use unverified default: brightness_mode=%d\n",
   7057			  brightness_mode);
   7058		pr_notice("brightness: please report to %s whether it works well or not on your ThinkPad\n",
   7059			  TPACPI_MAIL);
   7060	}
   7061
   7062	/* Added by mistake in early 2007.  Probably useless, but it could
   7063	 * be working around some unknown firmware problem where the value
   7064	 * read at startup doesn't match the real hardware state... so leave
   7065	 * it in place just in case */
   7066	backlight_update_status(ibm_backlight_device);
   7067
   7068	vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_BRGHT,
   7069		    "brightness: registering brightness hotkeys as change notification\n");
   7070	tpacpi_hotkey_driver_mask_set(hotkey_driver_mask
   7071				| TP_ACPI_HKEY_BRGHTUP_MASK
   7072				| TP_ACPI_HKEY_BRGHTDWN_MASK);
   7073	return 0;
   7074}
   7075
   7076static void brightness_suspend(void)
   7077{
   7078	tpacpi_brightness_checkpoint_nvram();
   7079}
   7080
   7081static void brightness_shutdown(void)
   7082{
   7083	tpacpi_brightness_checkpoint_nvram();
   7084}
   7085
   7086static void brightness_exit(void)
   7087{
   7088	if (ibm_backlight_device) {
   7089		vdbg_printk(TPACPI_DBG_EXIT | TPACPI_DBG_BRGHT,
   7090			    "calling backlight_device_unregister()\n");
   7091		backlight_device_unregister(ibm_backlight_device);
   7092	}
   7093
   7094	tpacpi_brightness_checkpoint_nvram();
   7095}
   7096
   7097static int brightness_read(struct seq_file *m)
   7098{
   7099	int level;
   7100
   7101	level = brightness_get(NULL);
   7102	if (level < 0) {
   7103		seq_printf(m, "level:\t\tunreadable\n");
   7104	} else {
   7105		seq_printf(m, "level:\t\t%d\n", level);
   7106		seq_printf(m, "commands:\tup, down\n");
   7107		seq_printf(m, "commands:\tlevel <level> (<level> is 0-%d)\n",
   7108			       bright_maxlvl);
   7109	}
   7110
   7111	return 0;
   7112}
   7113
   7114static int brightness_write(char *buf)
   7115{
   7116	int level;
   7117	int rc;
   7118	char *cmd;
   7119
   7120	level = brightness_get(NULL);
   7121	if (level < 0)
   7122		return level;
   7123
   7124	while ((cmd = strsep(&buf, ","))) {
   7125		if (strlencmp(cmd, "up") == 0) {
   7126			if (level < bright_maxlvl)
   7127				level++;
   7128		} else if (strlencmp(cmd, "down") == 0) {
   7129			if (level > 0)
   7130				level--;
   7131		} else if (sscanf(cmd, "level %d", &level) == 1 &&
   7132			   level >= 0 && level <= bright_maxlvl) {
   7133			/* new level set */
   7134		} else
   7135			return -EINVAL;
   7136	}
   7137
   7138	tpacpi_disclose_usertask("procfs brightness",
   7139			"set level to %d\n", level);
   7140
   7141	/*
   7142	 * Now we know what the final level should be, so we try to set it.
   7143	 * Doing it this way makes the syscall restartable in case of EINTR
   7144	 */
   7145	rc = brightness_set(level);
   7146	if (!rc && ibm_backlight_device)
   7147		backlight_force_update(ibm_backlight_device,
   7148					BACKLIGHT_UPDATE_SYSFS);
   7149	return (rc == -EINTR) ? -ERESTARTSYS : rc;
   7150}
   7151
   7152static struct ibm_struct brightness_driver_data = {
   7153	.name = "brightness",
   7154	.read = brightness_read,
   7155	.write = brightness_write,
   7156	.exit = brightness_exit,
   7157	.suspend = brightness_suspend,
   7158	.shutdown = brightness_shutdown,
   7159};
   7160
   7161/*************************************************************************
   7162 * Volume subdriver
   7163 */
   7164
   7165/*
   7166 * IBM ThinkPads have a simple volume controller with MUTE gating.
   7167 * Very early Lenovo ThinkPads follow the IBM ThinkPad spec.
   7168 *
   7169 * Since the *61 series (and probably also the later *60 series), Lenovo
   7170 * ThinkPads only implement the MUTE gate.
   7171 *
   7172 * EC register 0x30
   7173 *   Bit 6: MUTE (1 mutes sound)
   7174 *   Bit 3-0: Volume
   7175 *   Other bits should be zero as far as we know.
   7176 *
   7177 * This is also stored in CMOS NVRAM, byte 0x60, bit 6 (MUTE), and
   7178 * bits 3-0 (volume).  Other bits in NVRAM may have other functions,
   7179 * such as bit 7 which is used to detect repeated presses of MUTE,
   7180 * and we leave them unchanged.
   7181 *
   7182 * On newer Lenovo ThinkPads, the EC can automatically change the volume
   7183 * in response to user input.  Unfortunately, this rarely works well.
   7184 * The laptop changes the state of its internal MUTE gate and, on some
   7185 * models, sends KEY_MUTE, causing any user code that responds to the
   7186 * mute button to get confused.  The hardware MUTE gate is also
   7187 * unnecessary, since user code can handle the mute button without
   7188 * kernel or EC help.
   7189 *
   7190 * To avoid confusing userspace, we simply disable all EC-based mute
   7191 * and volume controls when possible.
   7192 */
   7193
   7194#ifdef CONFIG_THINKPAD_ACPI_ALSA_SUPPORT
   7195
   7196#define TPACPI_ALSA_DRVNAME  "ThinkPad EC"
   7197#define TPACPI_ALSA_SHRTNAME "ThinkPad Console Audio Control"
   7198#define TPACPI_ALSA_MIXERNAME TPACPI_ALSA_SHRTNAME
   7199
   7200#if SNDRV_CARDS <= 32
   7201#define DEFAULT_ALSA_IDX		~((1 << (SNDRV_CARDS - 3)) - 1)
   7202#else
   7203#define DEFAULT_ALSA_IDX		~((1 << (32 - 3)) - 1)
   7204#endif
   7205static int alsa_index = DEFAULT_ALSA_IDX; /* last three slots */
   7206static char *alsa_id = "ThinkPadEC";
   7207static bool alsa_enable = SNDRV_DEFAULT_ENABLE1;
   7208
   7209struct tpacpi_alsa_data {
   7210	struct snd_card *card;
   7211	struct snd_ctl_elem_id *ctl_mute_id;
   7212	struct snd_ctl_elem_id *ctl_vol_id;
   7213};
   7214
   7215static struct snd_card *alsa_card;
   7216
   7217enum {
   7218	TP_EC_AUDIO = 0x30,
   7219
   7220	/* TP_EC_AUDIO bits */
   7221	TP_EC_AUDIO_MUTESW = 6,
   7222
   7223	/* TP_EC_AUDIO bitmasks */
   7224	TP_EC_AUDIO_LVL_MSK = 0x0F,
   7225	TP_EC_AUDIO_MUTESW_MSK = (1 << TP_EC_AUDIO_MUTESW),
   7226
   7227	/* Maximum volume */
   7228	TP_EC_VOLUME_MAX = 14,
   7229};
   7230
   7231enum tpacpi_volume_access_mode {
   7232	TPACPI_VOL_MODE_AUTO = 0,	/* Not implemented yet */
   7233	TPACPI_VOL_MODE_EC,		/* Pure EC control */
   7234	TPACPI_VOL_MODE_UCMS_STEP,	/* UCMS step-based control: N/A */
   7235	TPACPI_VOL_MODE_ECNVRAM,	/* EC control w/ NVRAM store */
   7236	TPACPI_VOL_MODE_MAX
   7237};
   7238
   7239enum tpacpi_volume_capabilities {
   7240	TPACPI_VOL_CAP_AUTO = 0,	/* Use white/blacklist */
   7241	TPACPI_VOL_CAP_VOLMUTE,		/* Output vol and mute */
   7242	TPACPI_VOL_CAP_MUTEONLY,	/* Output mute only */
   7243	TPACPI_VOL_CAP_MAX
   7244};
   7245
   7246enum tpacpi_mute_btn_mode {
   7247	TP_EC_MUTE_BTN_LATCH  = 0,	/* Mute mutes; up/down unmutes */
   7248	/* We don't know what mode 1 is. */
   7249	TP_EC_MUTE_BTN_NONE   = 2,	/* Mute and up/down are just keys */
   7250	TP_EC_MUTE_BTN_TOGGLE = 3,	/* Mute toggles; up/down unmutes */
   7251};
   7252
   7253static enum tpacpi_volume_access_mode volume_mode =
   7254	TPACPI_VOL_MODE_MAX;
   7255
   7256static enum tpacpi_volume_capabilities volume_capabilities;
   7257static bool volume_control_allowed;
   7258static bool software_mute_requested = true;
   7259static bool software_mute_active;
   7260static int software_mute_orig_mode;
   7261
   7262/*
   7263 * Used to syncronize writers to TP_EC_AUDIO and
   7264 * TP_NVRAM_ADDR_MIXER, as we need to do read-modify-write
   7265 */
   7266static struct mutex volume_mutex;
   7267
   7268static void tpacpi_volume_checkpoint_nvram(void)
   7269{
   7270	u8 lec = 0;
   7271	u8 b_nvram;
   7272	u8 ec_mask;
   7273
   7274	if (volume_mode != TPACPI_VOL_MODE_ECNVRAM)
   7275		return;
   7276	if (!volume_control_allowed)
   7277		return;
   7278	if (software_mute_active)
   7279		return;
   7280
   7281	vdbg_printk(TPACPI_DBG_MIXER,
   7282		"trying to checkpoint mixer state to NVRAM...\n");
   7283
   7284	if (tp_features.mixer_no_level_control)
   7285		ec_mask = TP_EC_AUDIO_MUTESW_MSK;
   7286	else
   7287		ec_mask = TP_EC_AUDIO_MUTESW_MSK | TP_EC_AUDIO_LVL_MSK;
   7288
   7289	if (mutex_lock_killable(&volume_mutex) < 0)
   7290		return;
   7291
   7292	if (unlikely(!acpi_ec_read(TP_EC_AUDIO, &lec)))
   7293		goto unlock;
   7294	lec &= ec_mask;
   7295	b_nvram = nvram_read_byte(TP_NVRAM_ADDR_MIXER);
   7296
   7297	if (lec != (b_nvram & ec_mask)) {
   7298		/* NVRAM needs update */
   7299		b_nvram &= ~ec_mask;
   7300		b_nvram |= lec;
   7301		nvram_write_byte(b_nvram, TP_NVRAM_ADDR_MIXER);
   7302		dbg_printk(TPACPI_DBG_MIXER,
   7303			   "updated NVRAM mixer status to 0x%02x (0x%02x)\n",
   7304			   (unsigned int) lec, (unsigned int) b_nvram);
   7305	} else {
   7306		vdbg_printk(TPACPI_DBG_MIXER,
   7307			   "NVRAM mixer status already is 0x%02x (0x%02x)\n",
   7308			   (unsigned int) lec, (unsigned int) b_nvram);
   7309	}
   7310
   7311unlock:
   7312	mutex_unlock(&volume_mutex);
   7313}
   7314
   7315static int volume_get_status_ec(u8 *status)
   7316{
   7317	u8 s;
   7318
   7319	if (!acpi_ec_read(TP_EC_AUDIO, &s))
   7320		return -EIO;
   7321
   7322	*status = s;
   7323
   7324	dbg_printk(TPACPI_DBG_MIXER, "status 0x%02x\n", s);
   7325
   7326	return 0;
   7327}
   7328
   7329static int volume_get_status(u8 *status)
   7330{
   7331	return volume_get_status_ec(status);
   7332}
   7333
   7334static int volume_set_status_ec(const u8 status)
   7335{
   7336	if (!acpi_ec_write(TP_EC_AUDIO, status))
   7337		return -EIO;
   7338
   7339	dbg_printk(TPACPI_DBG_MIXER, "set EC mixer to 0x%02x\n", status);
   7340
   7341	/*
   7342	 * On X200s, and possibly on others, it can take a while for
   7343	 * reads to become correct.
   7344	 */
   7345	msleep(1);
   7346
   7347	return 0;
   7348}
   7349
   7350static int volume_set_status(const u8 status)
   7351{
   7352	return volume_set_status_ec(status);
   7353}
   7354
   7355/* returns < 0 on error, 0 on no change, 1 on change */
   7356static int __volume_set_mute_ec(const bool mute)
   7357{
   7358	int rc;
   7359	u8 s, n;
   7360
   7361	if (mutex_lock_killable(&volume_mutex) < 0)
   7362		return -EINTR;
   7363
   7364	rc = volume_get_status_ec(&s);
   7365	if (rc)
   7366		goto unlock;
   7367
   7368	n = (mute) ? s | TP_EC_AUDIO_MUTESW_MSK :
   7369		     s & ~TP_EC_AUDIO_MUTESW_MSK;
   7370
   7371	if (n != s) {
   7372		rc = volume_set_status_ec(n);
   7373		if (!rc)
   7374			rc = 1;
   7375	}
   7376
   7377unlock:
   7378	mutex_unlock(&volume_mutex);
   7379	return rc;
   7380}
   7381
   7382static int volume_alsa_set_mute(const bool mute)
   7383{
   7384	dbg_printk(TPACPI_DBG_MIXER, "ALSA: trying to %smute\n",
   7385		   (mute) ? "" : "un");
   7386	return __volume_set_mute_ec(mute);
   7387}
   7388
   7389static int volume_set_mute(const bool mute)
   7390{
   7391	int rc;
   7392
   7393	dbg_printk(TPACPI_DBG_MIXER, "trying to %smute\n",
   7394		   (mute) ? "" : "un");
   7395
   7396	rc = __volume_set_mute_ec(mute);
   7397	return (rc < 0) ? rc : 0;
   7398}
   7399
   7400/* returns < 0 on error, 0 on no change, 1 on change */
   7401static int __volume_set_volume_ec(const u8 vol)
   7402{
   7403	int rc;
   7404	u8 s, n;
   7405
   7406	if (vol > TP_EC_VOLUME_MAX)
   7407		return -EINVAL;
   7408
   7409	if (mutex_lock_killable(&volume_mutex) < 0)
   7410		return -EINTR;
   7411
   7412	rc = volume_get_status_ec(&s);
   7413	if (rc)
   7414		goto unlock;
   7415
   7416	n = (s & ~TP_EC_AUDIO_LVL_MSK) | vol;
   7417
   7418	if (n != s) {
   7419		rc = volume_set_status_ec(n);
   7420		if (!rc)
   7421			rc = 1;
   7422	}
   7423
   7424unlock:
   7425	mutex_unlock(&volume_mutex);
   7426	return rc;
   7427}
   7428
   7429static int volume_set_software_mute(bool startup)
   7430{
   7431	int result;
   7432
   7433	if (!tpacpi_is_lenovo())
   7434		return -ENODEV;
   7435
   7436	if (startup) {
   7437		if (!acpi_evalf(ec_handle, &software_mute_orig_mode,
   7438				"HAUM", "qd"))
   7439			return -EIO;
   7440
   7441		dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
   7442			    "Initial HAUM setting was %d\n",
   7443			    software_mute_orig_mode);
   7444	}
   7445
   7446	if (!acpi_evalf(ec_handle, &result, "SAUM", "qdd",
   7447			(int)TP_EC_MUTE_BTN_NONE))
   7448		return -EIO;
   7449
   7450	if (result != TP_EC_MUTE_BTN_NONE)
   7451		pr_warn("Unexpected SAUM result %d\n",
   7452			result);
   7453
   7454	/*
   7455	 * In software mute mode, the standard codec controls take
   7456	 * precendence, so we unmute the ThinkPad HW switch at
   7457	 * startup.  Just on case there are SAUM-capable ThinkPads
   7458	 * with level controls, set max HW volume as well.
   7459	 */
   7460	if (tp_features.mixer_no_level_control)
   7461		result = volume_set_mute(false);
   7462	else
   7463		result = volume_set_status(TP_EC_VOLUME_MAX);
   7464
   7465	if (result != 0)
   7466		pr_warn("Failed to unmute the HW mute switch\n");
   7467
   7468	return 0;
   7469}
   7470
   7471static void volume_exit_software_mute(void)
   7472{
   7473	int r;
   7474
   7475	if (!acpi_evalf(ec_handle, &r, "SAUM", "qdd", software_mute_orig_mode)
   7476	    || r != software_mute_orig_mode)
   7477		pr_warn("Failed to restore mute mode\n");
   7478}
   7479
   7480static int volume_alsa_set_volume(const u8 vol)
   7481{
   7482	dbg_printk(TPACPI_DBG_MIXER,
   7483		   "ALSA: trying to set volume level to %hu\n", vol);
   7484	return __volume_set_volume_ec(vol);
   7485}
   7486
   7487static void volume_alsa_notify_change(void)
   7488{
   7489	struct tpacpi_alsa_data *d;
   7490
   7491	if (alsa_card && alsa_card->private_data) {
   7492		d = alsa_card->private_data;
   7493		if (d->ctl_mute_id)
   7494			snd_ctl_notify(alsa_card,
   7495					SNDRV_CTL_EVENT_MASK_VALUE,
   7496					d->ctl_mute_id);
   7497		if (d->ctl_vol_id)
   7498			snd_ctl_notify(alsa_card,
   7499					SNDRV_CTL_EVENT_MASK_VALUE,
   7500					d->ctl_vol_id);
   7501	}
   7502}
   7503
   7504static int volume_alsa_vol_info(struct snd_kcontrol *kcontrol,
   7505				struct snd_ctl_elem_info *uinfo)
   7506{
   7507	uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
   7508	uinfo->count = 1;
   7509	uinfo->value.integer.min = 0;
   7510	uinfo->value.integer.max = TP_EC_VOLUME_MAX;
   7511	return 0;
   7512}
   7513
   7514static int volume_alsa_vol_get(struct snd_kcontrol *kcontrol,
   7515				struct snd_ctl_elem_value *ucontrol)
   7516{
   7517	u8 s;
   7518	int rc;
   7519
   7520	rc = volume_get_status(&s);
   7521	if (rc < 0)
   7522		return rc;
   7523
   7524	ucontrol->value.integer.value[0] = s & TP_EC_AUDIO_LVL_MSK;
   7525	return 0;
   7526}
   7527
   7528static int volume_alsa_vol_put(struct snd_kcontrol *kcontrol,
   7529				struct snd_ctl_elem_value *ucontrol)
   7530{
   7531	tpacpi_disclose_usertask("ALSA", "set volume to %ld\n",
   7532				 ucontrol->value.integer.value[0]);
   7533	return volume_alsa_set_volume(ucontrol->value.integer.value[0]);
   7534}
   7535
   7536#define volume_alsa_mute_info snd_ctl_boolean_mono_info
   7537
   7538static int volume_alsa_mute_get(struct snd_kcontrol *kcontrol,
   7539				struct snd_ctl_elem_value *ucontrol)
   7540{
   7541	u8 s;
   7542	int rc;
   7543
   7544	rc = volume_get_status(&s);
   7545	if (rc < 0)
   7546		return rc;
   7547
   7548	ucontrol->value.integer.value[0] =
   7549				(s & TP_EC_AUDIO_MUTESW_MSK) ? 0 : 1;
   7550	return 0;
   7551}
   7552
   7553static int volume_alsa_mute_put(struct snd_kcontrol *kcontrol,
   7554				struct snd_ctl_elem_value *ucontrol)
   7555{
   7556	tpacpi_disclose_usertask("ALSA", "%smute\n",
   7557				 ucontrol->value.integer.value[0] ?
   7558					"un" : "");
   7559	return volume_alsa_set_mute(!ucontrol->value.integer.value[0]);
   7560}
   7561
   7562static struct snd_kcontrol_new volume_alsa_control_vol __initdata = {
   7563	.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
   7564	.name = "Console Playback Volume",
   7565	.index = 0,
   7566	.access = SNDRV_CTL_ELEM_ACCESS_READ,
   7567	.info = volume_alsa_vol_info,
   7568	.get = volume_alsa_vol_get,
   7569};
   7570
   7571static struct snd_kcontrol_new volume_alsa_control_mute __initdata = {
   7572	.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
   7573	.name = "Console Playback Switch",
   7574	.index = 0,
   7575	.access = SNDRV_CTL_ELEM_ACCESS_READ,
   7576	.info = volume_alsa_mute_info,
   7577	.get = volume_alsa_mute_get,
   7578};
   7579
   7580static void volume_suspend(void)
   7581{
   7582	tpacpi_volume_checkpoint_nvram();
   7583}
   7584
   7585static void volume_resume(void)
   7586{
   7587	if (software_mute_active) {
   7588		if (volume_set_software_mute(false) < 0)
   7589			pr_warn("Failed to restore software mute\n");
   7590	} else {
   7591		volume_alsa_notify_change();
   7592	}
   7593}
   7594
   7595static void volume_shutdown(void)
   7596{
   7597	tpacpi_volume_checkpoint_nvram();
   7598}
   7599
   7600static void volume_exit(void)
   7601{
   7602	if (alsa_card) {
   7603		snd_card_free(alsa_card);
   7604		alsa_card = NULL;
   7605	}
   7606
   7607	tpacpi_volume_checkpoint_nvram();
   7608
   7609	if (software_mute_active)
   7610		volume_exit_software_mute();
   7611}
   7612
   7613static int __init volume_create_alsa_mixer(void)
   7614{
   7615	struct snd_card *card;
   7616	struct tpacpi_alsa_data *data;
   7617	struct snd_kcontrol *ctl_vol;
   7618	struct snd_kcontrol *ctl_mute;
   7619	int rc;
   7620
   7621	rc = snd_card_new(&tpacpi_pdev->dev,
   7622			  alsa_index, alsa_id, THIS_MODULE,
   7623			  sizeof(struct tpacpi_alsa_data), &card);
   7624	if (rc < 0 || !card) {
   7625		pr_err("Failed to create ALSA card structures: %d\n", rc);
   7626		return -ENODEV;
   7627	}
   7628
   7629	BUG_ON(!card->private_data);
   7630	data = card->private_data;
   7631	data->card = card;
   7632
   7633	strlcpy(card->driver, TPACPI_ALSA_DRVNAME,
   7634		sizeof(card->driver));
   7635	strlcpy(card->shortname, TPACPI_ALSA_SHRTNAME,
   7636		sizeof(card->shortname));
   7637	snprintf(card->mixername, sizeof(card->mixername), "ThinkPad EC %s",
   7638		 (thinkpad_id.ec_version_str) ?
   7639			thinkpad_id.ec_version_str : "(unknown)");
   7640	snprintf(card->longname, sizeof(card->longname),
   7641		 "%s at EC reg 0x%02x, fw %s", card->shortname, TP_EC_AUDIO,
   7642		 (thinkpad_id.ec_version_str) ?
   7643			thinkpad_id.ec_version_str : "unknown");
   7644
   7645	if (volume_control_allowed) {
   7646		volume_alsa_control_vol.put = volume_alsa_vol_put;
   7647		volume_alsa_control_vol.access =
   7648				SNDRV_CTL_ELEM_ACCESS_READWRITE;
   7649
   7650		volume_alsa_control_mute.put = volume_alsa_mute_put;
   7651		volume_alsa_control_mute.access =
   7652				SNDRV_CTL_ELEM_ACCESS_READWRITE;
   7653	}
   7654
   7655	if (!tp_features.mixer_no_level_control) {
   7656		ctl_vol = snd_ctl_new1(&volume_alsa_control_vol, NULL);
   7657		rc = snd_ctl_add(card, ctl_vol);
   7658		if (rc < 0) {
   7659			pr_err("Failed to create ALSA volume control: %d\n",
   7660			       rc);
   7661			goto err_exit;
   7662		}
   7663		data->ctl_vol_id = &ctl_vol->id;
   7664	}
   7665
   7666	ctl_mute = snd_ctl_new1(&volume_alsa_control_mute, NULL);
   7667	rc = snd_ctl_add(card, ctl_mute);
   7668	if (rc < 0) {
   7669		pr_err("Failed to create ALSA mute control: %d\n", rc);
   7670		goto err_exit;
   7671	}
   7672	data->ctl_mute_id = &ctl_mute->id;
   7673
   7674	rc = snd_card_register(card);
   7675	if (rc < 0) {
   7676		pr_err("Failed to register ALSA card: %d\n", rc);
   7677		goto err_exit;
   7678	}
   7679
   7680	alsa_card = card;
   7681	return 0;
   7682
   7683err_exit:
   7684	snd_card_free(card);
   7685	return -ENODEV;
   7686}
   7687
   7688#define TPACPI_VOL_Q_MUTEONLY	0x0001	/* Mute-only control available */
   7689#define TPACPI_VOL_Q_LEVEL	0x0002  /* Volume control available */
   7690
   7691static const struct tpacpi_quirk volume_quirk_table[] __initconst = {
   7692	/* Whitelist volume level on all IBM by default */
   7693	{ .vendor = PCI_VENDOR_ID_IBM,
   7694	  .bios   = TPACPI_MATCH_ANY,
   7695	  .ec     = TPACPI_MATCH_ANY,
   7696	  .quirks = TPACPI_VOL_Q_LEVEL },
   7697
   7698	/* Lenovo models with volume control (needs confirmation) */
   7699	TPACPI_QEC_LNV('7', 'C', TPACPI_VOL_Q_LEVEL), /* R60/i */
   7700	TPACPI_QEC_LNV('7', 'E', TPACPI_VOL_Q_LEVEL), /* R60e/i */
   7701	TPACPI_QEC_LNV('7', '9', TPACPI_VOL_Q_LEVEL), /* T60/p */
   7702	TPACPI_QEC_LNV('7', 'B', TPACPI_VOL_Q_LEVEL), /* X60/s */
   7703	TPACPI_QEC_LNV('7', 'J', TPACPI_VOL_Q_LEVEL), /* X60t */
   7704	TPACPI_QEC_LNV('7', '7', TPACPI_VOL_Q_LEVEL), /* Z60 */
   7705	TPACPI_QEC_LNV('7', 'F', TPACPI_VOL_Q_LEVEL), /* Z61 */
   7706
   7707	/* Whitelist mute-only on all Lenovo by default */
   7708	{ .vendor = PCI_VENDOR_ID_LENOVO,
   7709	  .bios   = TPACPI_MATCH_ANY,
   7710	  .ec	  = TPACPI_MATCH_ANY,
   7711	  .quirks = TPACPI_VOL_Q_MUTEONLY }
   7712};
   7713
   7714static int __init volume_init(struct ibm_init_struct *iibm)
   7715{
   7716	unsigned long quirks;
   7717	int rc;
   7718
   7719	vdbg_printk(TPACPI_DBG_INIT, "initializing volume subdriver\n");
   7720
   7721	mutex_init(&volume_mutex);
   7722
   7723	/*
   7724	 * Check for module parameter bogosity, note that we
   7725	 * init volume_mode to TPACPI_VOL_MODE_MAX in order to be
   7726	 * able to detect "unspecified"
   7727	 */
   7728	if (volume_mode > TPACPI_VOL_MODE_MAX)
   7729		return -EINVAL;
   7730
   7731	if (volume_mode == TPACPI_VOL_MODE_UCMS_STEP) {
   7732		pr_err("UCMS step volume mode not implemented, please contact %s\n",
   7733		       TPACPI_MAIL);
   7734		return -ENODEV;
   7735	}
   7736
   7737	if (volume_capabilities >= TPACPI_VOL_CAP_MAX)
   7738		return -EINVAL;
   7739
   7740	/*
   7741	 * The ALSA mixer is our primary interface.
   7742	 * When disabled, don't install the subdriver at all
   7743	 */
   7744	if (!alsa_enable) {
   7745		vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
   7746			    "ALSA mixer disabled by parameter, not loading volume subdriver...\n");
   7747		return -ENODEV;
   7748	}
   7749
   7750	quirks = tpacpi_check_quirks(volume_quirk_table,
   7751				     ARRAY_SIZE(volume_quirk_table));
   7752
   7753	switch (volume_capabilities) {
   7754	case TPACPI_VOL_CAP_AUTO:
   7755		if (quirks & TPACPI_VOL_Q_MUTEONLY)
   7756			tp_features.mixer_no_level_control = 1;
   7757		else if (quirks & TPACPI_VOL_Q_LEVEL)
   7758			tp_features.mixer_no_level_control = 0;
   7759		else
   7760			return -ENODEV; /* no mixer */
   7761		break;
   7762	case TPACPI_VOL_CAP_VOLMUTE:
   7763		tp_features.mixer_no_level_control = 0;
   7764		break;
   7765	case TPACPI_VOL_CAP_MUTEONLY:
   7766		tp_features.mixer_no_level_control = 1;
   7767		break;
   7768	default:
   7769		return -ENODEV;
   7770	}
   7771
   7772	if (volume_capabilities != TPACPI_VOL_CAP_AUTO)
   7773		dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
   7774				"using user-supplied volume_capabilities=%d\n",
   7775				volume_capabilities);
   7776
   7777	if (volume_mode == TPACPI_VOL_MODE_AUTO ||
   7778	    volume_mode == TPACPI_VOL_MODE_MAX) {
   7779		volume_mode = TPACPI_VOL_MODE_ECNVRAM;
   7780
   7781		dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
   7782				"driver auto-selected volume_mode=%d\n",
   7783				volume_mode);
   7784	} else {
   7785		dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
   7786				"using user-supplied volume_mode=%d\n",
   7787				volume_mode);
   7788	}
   7789
   7790	vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
   7791			"mute is supported, volume control is %s\n",
   7792			str_supported(!tp_features.mixer_no_level_control));
   7793
   7794	if (software_mute_requested && volume_set_software_mute(true) == 0) {
   7795		software_mute_active = true;
   7796	} else {
   7797		rc = volume_create_alsa_mixer();
   7798		if (rc) {
   7799			pr_err("Could not create the ALSA mixer interface\n");
   7800			return rc;
   7801		}
   7802
   7803		pr_info("Console audio control enabled, mode: %s\n",
   7804			(volume_control_allowed) ?
   7805				"override (read/write)" :
   7806				"monitor (read only)");
   7807	}
   7808
   7809	vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_MIXER,
   7810		"registering volume hotkeys as change notification\n");
   7811	tpacpi_hotkey_driver_mask_set(hotkey_driver_mask
   7812			| TP_ACPI_HKEY_VOLUP_MASK
   7813			| TP_ACPI_HKEY_VOLDWN_MASK
   7814			| TP_ACPI_HKEY_MUTE_MASK);
   7815
   7816	return 0;
   7817}
   7818
   7819static int volume_read(struct seq_file *m)
   7820{
   7821	u8 status;
   7822
   7823	if (volume_get_status(&status) < 0) {
   7824		seq_printf(m, "level:\t\tunreadable\n");
   7825	} else {
   7826		if (tp_features.mixer_no_level_control)
   7827			seq_printf(m, "level:\t\tunsupported\n");
   7828		else
   7829			seq_printf(m, "level:\t\t%d\n",
   7830					status & TP_EC_AUDIO_LVL_MSK);
   7831
   7832		seq_printf(m, "mute:\t\t%s\n",
   7833				onoff(status, TP_EC_AUDIO_MUTESW));
   7834
   7835		if (volume_control_allowed) {
   7836			seq_printf(m, "commands:\tunmute, mute\n");
   7837			if (!tp_features.mixer_no_level_control) {
   7838				seq_printf(m, "commands:\tup, down\n");
   7839				seq_printf(m, "commands:\tlevel <level> (<level> is 0-%d)\n",
   7840					      TP_EC_VOLUME_MAX);
   7841			}
   7842		}
   7843	}
   7844
   7845	return 0;
   7846}
   7847
   7848static int volume_write(char *buf)
   7849{
   7850	u8 s;
   7851	u8 new_level, new_mute;
   7852	int l;
   7853	char *cmd;
   7854	int rc;
   7855
   7856	/*
   7857	 * We do allow volume control at driver startup, so that the
   7858	 * user can set initial state through the volume=... parameter hack.
   7859	 */
   7860	if (!volume_control_allowed && tpacpi_lifecycle != TPACPI_LIFE_INIT) {
   7861		if (unlikely(!tp_warned.volume_ctrl_forbidden)) {
   7862			tp_warned.volume_ctrl_forbidden = 1;
   7863			pr_notice("Console audio control in monitor mode, changes are not allowed\n");
   7864			pr_notice("Use the volume_control=1 module parameter to enable volume control\n");
   7865		}
   7866		return -EPERM;
   7867	}
   7868
   7869	rc = volume_get_status(&s);
   7870	if (rc < 0)
   7871		return rc;
   7872
   7873	new_level = s & TP_EC_AUDIO_LVL_MSK;
   7874	new_mute  = s & TP_EC_AUDIO_MUTESW_MSK;
   7875
   7876	while ((cmd = strsep(&buf, ","))) {
   7877		if (!tp_features.mixer_no_level_control) {
   7878			if (strlencmp(cmd, "up") == 0) {
   7879				if (new_mute)
   7880					new_mute = 0;
   7881				else if (new_level < TP_EC_VOLUME_MAX)
   7882					new_level++;
   7883				continue;
   7884			} else if (strlencmp(cmd, "down") == 0) {
   7885				if (new_mute)
   7886					new_mute = 0;
   7887				else if (new_level > 0)
   7888					new_level--;
   7889				continue;
   7890			} else if (sscanf(cmd, "level %u", &l) == 1 &&
   7891				   l >= 0 && l <= TP_EC_VOLUME_MAX) {
   7892				new_level = l;
   7893				continue;
   7894			}
   7895		}
   7896		if (strlencmp(cmd, "mute") == 0)
   7897			new_mute = TP_EC_AUDIO_MUTESW_MSK;
   7898		else if (strlencmp(cmd, "unmute") == 0)
   7899			new_mute = 0;
   7900		else
   7901			return -EINVAL;
   7902	}
   7903
   7904	if (tp_features.mixer_no_level_control) {
   7905		tpacpi_disclose_usertask("procfs volume", "%smute\n",
   7906					new_mute ? "" : "un");
   7907		rc = volume_set_mute(!!new_mute);
   7908	} else {
   7909		tpacpi_disclose_usertask("procfs volume",
   7910					"%smute and set level to %d\n",
   7911					new_mute ? "" : "un", new_level);
   7912		rc = volume_set_status(new_mute | new_level);
   7913	}
   7914	volume_alsa_notify_change();
   7915
   7916	return (rc == -EINTR) ? -ERESTARTSYS : rc;
   7917}
   7918
   7919static struct ibm_struct volume_driver_data = {
   7920	.name = "volume",
   7921	.read = volume_read,
   7922	.write = volume_write,
   7923	.exit = volume_exit,
   7924	.suspend = volume_suspend,
   7925	.resume = volume_resume,
   7926	.shutdown = volume_shutdown,
   7927};
   7928
   7929#else /* !CONFIG_THINKPAD_ACPI_ALSA_SUPPORT */
   7930
   7931#define alsa_card NULL
   7932
   7933static inline void volume_alsa_notify_change(void)
   7934{
   7935}
   7936
   7937static int __init volume_init(struct ibm_init_struct *iibm)
   7938{
   7939	pr_info("volume: disabled as there is no ALSA support in this kernel\n");
   7940
   7941	return -ENODEV;
   7942}
   7943
   7944static struct ibm_struct volume_driver_data = {
   7945	.name = "volume",
   7946};
   7947
   7948#endif /* CONFIG_THINKPAD_ACPI_ALSA_SUPPORT */
   7949
   7950/*************************************************************************
   7951 * Fan subdriver
   7952 */
   7953
   7954/*
   7955 * FAN ACCESS MODES
   7956 *
   7957 * TPACPI_FAN_RD_ACPI_GFAN:
   7958 * 	ACPI GFAN method: returns fan level
   7959 *
   7960 * 	see TPACPI_FAN_WR_ACPI_SFAN
   7961 * 	EC 0x2f (HFSP) not available if GFAN exists
   7962 *
   7963 * TPACPI_FAN_WR_ACPI_SFAN:
   7964 * 	ACPI SFAN method: sets fan level, 0 (stop) to 7 (max)
   7965 *
   7966 * 	EC 0x2f (HFSP) might be available *for reading*, but do not use
   7967 * 	it for writing.
   7968 *
   7969 * TPACPI_FAN_WR_TPEC:
   7970 * 	ThinkPad EC register 0x2f (HFSP): fan control loop mode
   7971 * 	Supported on almost all ThinkPads
   7972 *
   7973 * 	Fan speed changes of any sort (including those caused by the
   7974 * 	disengaged mode) are usually done slowly by the firmware as the
   7975 * 	maximum amount of fan duty cycle change per second seems to be
   7976 * 	limited.
   7977 *
   7978 * 	Reading is not available if GFAN exists.
   7979 * 	Writing is not available if SFAN exists.
   7980 *
   7981 * 	Bits
   7982 *	 7	automatic mode engaged;
   7983 *  		(default operation mode of the ThinkPad)
   7984 * 		fan level is ignored in this mode.
   7985 *	 6	full speed mode (takes precedence over bit 7);
   7986 *		not available on all thinkpads.  May disable
   7987 *		the tachometer while the fan controller ramps up
   7988 *		the speed (which can take up to a few *minutes*).
   7989 *		Speeds up fan to 100% duty-cycle, which is far above
   7990 *		the standard RPM levels.  It is not impossible that
   7991 *		it could cause hardware damage.
   7992 *	5-3	unused in some models.  Extra bits for fan level
   7993 *		in others, but still useless as all values above
   7994 *		7 map to the same speed as level 7 in these models.
   7995 *	2-0	fan level (0..7 usually)
   7996 *			0x00 = stop
   7997 * 			0x07 = max (set when temperatures critical)
   7998 * 		Some ThinkPads may have other levels, see
   7999 * 		TPACPI_FAN_WR_ACPI_FANS (X31/X40/X41)
   8000 *
   8001 *	FIRMWARE BUG: on some models, EC 0x2f might not be initialized at
   8002 *	boot. Apparently the EC does not initialize it, so unless ACPI DSDT
   8003 *	does so, its initial value is meaningless (0x07).
   8004 *
   8005 *	For firmware bugs, refer to:
   8006 *	https://thinkwiki.org/wiki/Embedded_Controller_Firmware#Firmware_Issues
   8007 *
   8008 * 	----
   8009 *
   8010 *	ThinkPad EC register 0x84 (LSB), 0x85 (MSB):
   8011 *	Main fan tachometer reading (in RPM)
   8012 *
   8013 *	This register is present on all ThinkPads with a new-style EC, and
   8014 *	it is known not to be present on the A21m/e, and T22, as there is
   8015 *	something else in offset 0x84 according to the ACPI DSDT.  Other
   8016 *	ThinkPads from this same time period (and earlier) probably lack the
   8017 *	tachometer as well.
   8018 *
   8019 *	Unfortunately a lot of ThinkPads with new-style ECs but whose firmware
   8020 *	was never fixed by IBM to report the EC firmware version string
   8021 *	probably support the tachometer (like the early X models), so
   8022 *	detecting it is quite hard.  We need more data to know for sure.
   8023 *
   8024 *	FIRMWARE BUG: always read 0x84 first, otherwise incorrect readings
   8025 *	might result.
   8026 *
   8027 *	FIRMWARE BUG: may go stale while the EC is switching to full speed
   8028 *	mode.
   8029 *
   8030 *	For firmware bugs, refer to:
   8031 *	https://thinkwiki.org/wiki/Embedded_Controller_Firmware#Firmware_Issues
   8032 *
   8033 *	----
   8034 *
   8035 *	ThinkPad EC register 0x31 bit 0 (only on select models)
   8036 *
   8037 *	When bit 0 of EC register 0x31 is zero, the tachometer registers
   8038 *	show the speed of the main fan.  When bit 0 of EC register 0x31
   8039 *	is one, the tachometer registers show the speed of the auxiliary
   8040 *	fan.
   8041 *
   8042 *	Fan control seems to affect both fans, regardless of the state
   8043 *	of this bit.
   8044 *
   8045 *	So far, only the firmware for the X60/X61 non-tablet versions
   8046 *	seem to support this (firmware TP-7M).
   8047 *
   8048 * TPACPI_FAN_WR_ACPI_FANS:
   8049 *	ThinkPad X31, X40, X41.  Not available in the X60.
   8050 *
   8051 *	FANS ACPI handle: takes three arguments: low speed, medium speed,
   8052 *	high speed.  ACPI DSDT seems to map these three speeds to levels
   8053 *	as follows: STOP LOW LOW MED MED HIGH HIGH HIGH HIGH
   8054 *	(this map is stored on FAN0..FAN8 as "0,1,1,2,2,3,3,3,3")
   8055 *
   8056 * 	The speeds are stored on handles
   8057 * 	(FANA:FAN9), (FANC:FANB), (FANE:FAND).
   8058 *
   8059 * 	There are three default speed sets, accessible as handles:
   8060 * 	FS1L,FS1M,FS1H; FS2L,FS2M,FS2H; FS3L,FS3M,FS3H
   8061 *
   8062 * 	ACPI DSDT switches which set is in use depending on various
   8063 * 	factors.
   8064 *
   8065 * 	TPACPI_FAN_WR_TPEC is also available and should be used to
   8066 * 	command the fan.  The X31/X40/X41 seems to have 8 fan levels,
   8067 * 	but the ACPI tables just mention level 7.
   8068 */
   8069
   8070enum {					/* Fan control constants */
   8071	fan_status_offset = 0x2f,	/* EC register 0x2f */
   8072	fan_rpm_offset = 0x84,		/* EC register 0x84: LSB, 0x85 MSB (RPM)
   8073					 * 0x84 must be read before 0x85 */
   8074	fan_select_offset = 0x31,	/* EC register 0x31 (Firmware 7M)
   8075					   bit 0 selects which fan is active */
   8076
   8077	TP_EC_FAN_FULLSPEED = 0x40,	/* EC fan mode: full speed */
   8078	TP_EC_FAN_AUTO	    = 0x80,	/* EC fan mode: auto fan control */
   8079
   8080	TPACPI_FAN_LAST_LEVEL = 0x100,	/* Use cached last-seen fan level */
   8081};
   8082
   8083enum fan_status_access_mode {
   8084	TPACPI_FAN_NONE = 0,		/* No fan status or control */
   8085	TPACPI_FAN_RD_ACPI_GFAN,	/* Use ACPI GFAN */
   8086	TPACPI_FAN_RD_TPEC,		/* Use ACPI EC regs 0x2f, 0x84-0x85 */
   8087};
   8088
   8089enum fan_control_access_mode {
   8090	TPACPI_FAN_WR_NONE = 0,		/* No fan control */
   8091	TPACPI_FAN_WR_ACPI_SFAN,	/* Use ACPI SFAN */
   8092	TPACPI_FAN_WR_TPEC,		/* Use ACPI EC reg 0x2f */
   8093	TPACPI_FAN_WR_ACPI_FANS,	/* Use ACPI FANS and EC reg 0x2f */
   8094};
   8095
   8096enum fan_control_commands {
   8097	TPACPI_FAN_CMD_SPEED 	= 0x0001,	/* speed command */
   8098	TPACPI_FAN_CMD_LEVEL 	= 0x0002,	/* level command  */
   8099	TPACPI_FAN_CMD_ENABLE	= 0x0004,	/* enable/disable cmd,
   8100						 * and also watchdog cmd */
   8101};
   8102
   8103static bool fan_control_allowed;
   8104
   8105static enum fan_status_access_mode fan_status_access_mode;
   8106static enum fan_control_access_mode fan_control_access_mode;
   8107static enum fan_control_commands fan_control_commands;
   8108
   8109static u8 fan_control_initial_status;
   8110static u8 fan_control_desired_level;
   8111static u8 fan_control_resume_level;
   8112static int fan_watchdog_maxinterval;
   8113
   8114static struct mutex fan_mutex;
   8115
   8116static void fan_watchdog_fire(struct work_struct *ignored);
   8117static DECLARE_DELAYED_WORK(fan_watchdog_task, fan_watchdog_fire);
   8118
   8119TPACPI_HANDLE(fans, ec, "FANS");	/* X31, X40, X41 */
   8120TPACPI_HANDLE(gfan, ec, "GFAN",	/* 570 */
   8121	   "\\FSPD",		/* 600e/x, 770e, 770x */
   8122	   );			/* all others */
   8123TPACPI_HANDLE(sfan, ec, "SFAN",	/* 570 */
   8124	   "JFNS",		/* 770x-JL */
   8125	   );			/* all others */
   8126
   8127/*
   8128 * Unitialized HFSP quirk: ACPI DSDT and EC fail to initialize the
   8129 * HFSP register at boot, so it contains 0x07 but the Thinkpad could
   8130 * be in auto mode (0x80).
   8131 *
   8132 * This is corrected by any write to HFSP either by the driver, or
   8133 * by the firmware.
   8134 *
   8135 * We assume 0x07 really means auto mode while this quirk is active,
   8136 * as this is far more likely than the ThinkPad being in level 7,
   8137 * which is only used by the firmware during thermal emergencies.
   8138 *
   8139 * Enable for TP-1Y (T43), TP-78 (R51e), TP-76 (R52),
   8140 * TP-70 (T43, R52), which are known to be buggy.
   8141 */
   8142
   8143static void fan_quirk1_setup(void)
   8144{
   8145	if (fan_control_initial_status == 0x07) {
   8146		pr_notice("fan_init: initial fan status is unknown, assuming it is in auto mode\n");
   8147		tp_features.fan_ctrl_status_undef = 1;
   8148	}
   8149}
   8150
   8151static void fan_quirk1_handle(u8 *fan_status)
   8152{
   8153	if (unlikely(tp_features.fan_ctrl_status_undef)) {
   8154		if (*fan_status != fan_control_initial_status) {
   8155			/* something changed the HFSP regisnter since
   8156			 * driver init time, so it is not undefined
   8157			 * anymore */
   8158			tp_features.fan_ctrl_status_undef = 0;
   8159		} else {
   8160			/* Return most likely status. In fact, it
   8161			 * might be the only possible status */
   8162			*fan_status = TP_EC_FAN_AUTO;
   8163		}
   8164	}
   8165}
   8166
   8167/* Select main fan on X60/X61, NOOP on others */
   8168static bool fan_select_fan1(void)
   8169{
   8170	if (tp_features.second_fan) {
   8171		u8 val;
   8172
   8173		if (ec_read(fan_select_offset, &val) < 0)
   8174			return false;
   8175		val &= 0xFEU;
   8176		if (ec_write(fan_select_offset, val) < 0)
   8177			return false;
   8178	}
   8179	return true;
   8180}
   8181
   8182/* Select secondary fan on X60/X61 */
   8183static bool fan_select_fan2(void)
   8184{
   8185	u8 val;
   8186
   8187	if (!tp_features.second_fan)
   8188		return false;
   8189
   8190	if (ec_read(fan_select_offset, &val) < 0)
   8191		return false;
   8192	val |= 0x01U;
   8193	if (ec_write(fan_select_offset, val) < 0)
   8194		return false;
   8195
   8196	return true;
   8197}
   8198
   8199/*
   8200 * Call with fan_mutex held
   8201 */
   8202static void fan_update_desired_level(u8 status)
   8203{
   8204	if ((status &
   8205	     (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) == 0) {
   8206		if (status > 7)
   8207			fan_control_desired_level = 7;
   8208		else
   8209			fan_control_desired_level = status;
   8210	}
   8211}
   8212
   8213static int fan_get_status(u8 *status)
   8214{
   8215	u8 s;
   8216
   8217	/* TODO:
   8218	 * Add TPACPI_FAN_RD_ACPI_FANS ? */
   8219
   8220	switch (fan_status_access_mode) {
   8221	case TPACPI_FAN_RD_ACPI_GFAN: {
   8222		/* 570, 600e/x, 770e, 770x */
   8223		int res;
   8224
   8225		if (unlikely(!acpi_evalf(gfan_handle, &res, NULL, "d")))
   8226			return -EIO;
   8227
   8228		if (likely(status))
   8229			*status = res & 0x07;
   8230
   8231		break;
   8232	}
   8233	case TPACPI_FAN_RD_TPEC:
   8234		/* all except 570, 600e/x, 770e, 770x */
   8235		if (unlikely(!acpi_ec_read(fan_status_offset, &s)))
   8236			return -EIO;
   8237
   8238		if (likely(status)) {
   8239			*status = s;
   8240			fan_quirk1_handle(status);
   8241		}
   8242
   8243		break;
   8244
   8245	default:
   8246		return -ENXIO;
   8247	}
   8248
   8249	return 0;
   8250}
   8251
   8252static int fan_get_status_safe(u8 *status)
   8253{
   8254	int rc;
   8255	u8 s;
   8256
   8257	if (mutex_lock_killable(&fan_mutex))
   8258		return -ERESTARTSYS;
   8259	rc = fan_get_status(&s);
   8260	if (!rc)
   8261		fan_update_desired_level(s);
   8262	mutex_unlock(&fan_mutex);
   8263
   8264	if (rc)
   8265		return rc;
   8266	if (status)
   8267		*status = s;
   8268
   8269	return 0;
   8270}
   8271
   8272static int fan_get_speed(unsigned int *speed)
   8273{
   8274	u8 hi, lo;
   8275
   8276	switch (fan_status_access_mode) {
   8277	case TPACPI_FAN_RD_TPEC:
   8278		/* all except 570, 600e/x, 770e, 770x */
   8279		if (unlikely(!fan_select_fan1()))
   8280			return -EIO;
   8281		if (unlikely(!acpi_ec_read(fan_rpm_offset, &lo) ||
   8282			     !acpi_ec_read(fan_rpm_offset + 1, &hi)))
   8283			return -EIO;
   8284
   8285		if (likely(speed))
   8286			*speed = (hi << 8) | lo;
   8287
   8288		break;
   8289
   8290	default:
   8291		return -ENXIO;
   8292	}
   8293
   8294	return 0;
   8295}
   8296
   8297static int fan2_get_speed(unsigned int *speed)
   8298{
   8299	u8 hi, lo;
   8300	bool rc;
   8301
   8302	switch (fan_status_access_mode) {
   8303	case TPACPI_FAN_RD_TPEC:
   8304		/* all except 570, 600e/x, 770e, 770x */
   8305		if (unlikely(!fan_select_fan2()))
   8306			return -EIO;
   8307		rc = !acpi_ec_read(fan_rpm_offset, &lo) ||
   8308			     !acpi_ec_read(fan_rpm_offset + 1, &hi);
   8309		fan_select_fan1(); /* play it safe */
   8310		if (rc)
   8311			return -EIO;
   8312
   8313		if (likely(speed))
   8314			*speed = (hi << 8) | lo;
   8315
   8316		break;
   8317
   8318	default:
   8319		return -ENXIO;
   8320	}
   8321
   8322	return 0;
   8323}
   8324
   8325static int fan_set_level(int level)
   8326{
   8327	if (!fan_control_allowed)
   8328		return -EPERM;
   8329
   8330	switch (fan_control_access_mode) {
   8331	case TPACPI_FAN_WR_ACPI_SFAN:
   8332		if ((level < 0) || (level > 7))
   8333			return -EINVAL;
   8334
   8335		if (tp_features.second_fan_ctl) {
   8336			if (!fan_select_fan2() ||
   8337			    !acpi_evalf(sfan_handle, NULL, NULL, "vd", level)) {
   8338				pr_warn("Couldn't set 2nd fan level, disabling support\n");
   8339				tp_features.second_fan_ctl = 0;
   8340			}
   8341			fan_select_fan1();
   8342		}
   8343		if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", level))
   8344			return -EIO;
   8345		break;
   8346
   8347	case TPACPI_FAN_WR_ACPI_FANS:
   8348	case TPACPI_FAN_WR_TPEC:
   8349		if (!(level & TP_EC_FAN_AUTO) &&
   8350		    !(level & TP_EC_FAN_FULLSPEED) &&
   8351		    ((level < 0) || (level > 7)))
   8352			return -EINVAL;
   8353
   8354		/* safety net should the EC not support AUTO
   8355		 * or FULLSPEED mode bits and just ignore them */
   8356		if (level & TP_EC_FAN_FULLSPEED)
   8357			level |= 7;	/* safety min speed 7 */
   8358		else if (level & TP_EC_FAN_AUTO)
   8359			level |= 4;	/* safety min speed 4 */
   8360
   8361		if (tp_features.second_fan_ctl) {
   8362			if (!fan_select_fan2() ||
   8363			    !acpi_ec_write(fan_status_offset, level)) {
   8364				pr_warn("Couldn't set 2nd fan level, disabling support\n");
   8365				tp_features.second_fan_ctl = 0;
   8366			}
   8367			fan_select_fan1();
   8368
   8369		}
   8370		if (!acpi_ec_write(fan_status_offset, level))
   8371			return -EIO;
   8372		else
   8373			tp_features.fan_ctrl_status_undef = 0;
   8374		break;
   8375
   8376	default:
   8377		return -ENXIO;
   8378	}
   8379
   8380	vdbg_printk(TPACPI_DBG_FAN,
   8381		"fan control: set fan control register to 0x%02x\n", level);
   8382	return 0;
   8383}
   8384
   8385static int fan_set_level_safe(int level)
   8386{
   8387	int rc;
   8388
   8389	if (!fan_control_allowed)
   8390		return -EPERM;
   8391
   8392	if (mutex_lock_killable(&fan_mutex))
   8393		return -ERESTARTSYS;
   8394
   8395	if (level == TPACPI_FAN_LAST_LEVEL)
   8396		level = fan_control_desired_level;
   8397
   8398	rc = fan_set_level(level);
   8399	if (!rc)
   8400		fan_update_desired_level(level);
   8401
   8402	mutex_unlock(&fan_mutex);
   8403	return rc;
   8404}
   8405
   8406static int fan_set_enable(void)
   8407{
   8408	u8 s;
   8409	int rc;
   8410
   8411	if (!fan_control_allowed)
   8412		return -EPERM;
   8413
   8414	if (mutex_lock_killable(&fan_mutex))
   8415		return -ERESTARTSYS;
   8416
   8417	switch (fan_control_access_mode) {
   8418	case TPACPI_FAN_WR_ACPI_FANS:
   8419	case TPACPI_FAN_WR_TPEC:
   8420		rc = fan_get_status(&s);
   8421		if (rc)
   8422			break;
   8423
   8424		/* Don't go out of emergency fan mode */
   8425		if (s != 7) {
   8426			s &= 0x07;
   8427			s |= TP_EC_FAN_AUTO | 4; /* min fan speed 4 */
   8428		}
   8429
   8430		if (!acpi_ec_write(fan_status_offset, s))
   8431			rc = -EIO;
   8432		else {
   8433			tp_features.fan_ctrl_status_undef = 0;
   8434			rc = 0;
   8435		}
   8436		break;
   8437
   8438	case TPACPI_FAN_WR_ACPI_SFAN:
   8439		rc = fan_get_status(&s);
   8440		if (rc)
   8441			break;
   8442
   8443		s &= 0x07;
   8444
   8445		/* Set fan to at least level 4 */
   8446		s |= 4;
   8447
   8448		if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", s))
   8449			rc = -EIO;
   8450		else
   8451			rc = 0;
   8452		break;
   8453
   8454	default:
   8455		rc = -ENXIO;
   8456	}
   8457
   8458	mutex_unlock(&fan_mutex);
   8459
   8460	if (!rc)
   8461		vdbg_printk(TPACPI_DBG_FAN,
   8462			"fan control: set fan control register to 0x%02x\n",
   8463			s);
   8464	return rc;
   8465}
   8466
   8467static int fan_set_disable(void)
   8468{
   8469	int rc;
   8470
   8471	if (!fan_control_allowed)
   8472		return -EPERM;
   8473
   8474	if (mutex_lock_killable(&fan_mutex))
   8475		return -ERESTARTSYS;
   8476
   8477	rc = 0;
   8478	switch (fan_control_access_mode) {
   8479	case TPACPI_FAN_WR_ACPI_FANS:
   8480	case TPACPI_FAN_WR_TPEC:
   8481		if (!acpi_ec_write(fan_status_offset, 0x00))
   8482			rc = -EIO;
   8483		else {
   8484			fan_control_desired_level = 0;
   8485			tp_features.fan_ctrl_status_undef = 0;
   8486		}
   8487		break;
   8488
   8489	case TPACPI_FAN_WR_ACPI_SFAN:
   8490		if (!acpi_evalf(sfan_handle, NULL, NULL, "vd", 0x00))
   8491			rc = -EIO;
   8492		else
   8493			fan_control_desired_level = 0;
   8494		break;
   8495
   8496	default:
   8497		rc = -ENXIO;
   8498	}
   8499
   8500	if (!rc)
   8501		vdbg_printk(TPACPI_DBG_FAN,
   8502			"fan control: set fan control register to 0\n");
   8503
   8504	mutex_unlock(&fan_mutex);
   8505	return rc;
   8506}
   8507
   8508static int fan_set_speed(int speed)
   8509{
   8510	int rc;
   8511
   8512	if (!fan_control_allowed)
   8513		return -EPERM;
   8514
   8515	if (mutex_lock_killable(&fan_mutex))
   8516		return -ERESTARTSYS;
   8517
   8518	rc = 0;
   8519	switch (fan_control_access_mode) {
   8520	case TPACPI_FAN_WR_ACPI_FANS:
   8521		if (speed >= 0 && speed <= 65535) {
   8522			if (!acpi_evalf(fans_handle, NULL, NULL, "vddd",
   8523					speed, speed, speed))
   8524				rc = -EIO;
   8525		} else
   8526			rc = -EINVAL;
   8527		break;
   8528
   8529	default:
   8530		rc = -ENXIO;
   8531	}
   8532
   8533	mutex_unlock(&fan_mutex);
   8534	return rc;
   8535}
   8536
   8537static void fan_watchdog_reset(void)
   8538{
   8539	if (fan_control_access_mode == TPACPI_FAN_WR_NONE)
   8540		return;
   8541
   8542	if (fan_watchdog_maxinterval > 0 &&
   8543	    tpacpi_lifecycle != TPACPI_LIFE_EXITING)
   8544		mod_delayed_work(tpacpi_wq, &fan_watchdog_task,
   8545			msecs_to_jiffies(fan_watchdog_maxinterval * 1000));
   8546	else
   8547		cancel_delayed_work(&fan_watchdog_task);
   8548}
   8549
   8550static void fan_watchdog_fire(struct work_struct *ignored)
   8551{
   8552	int rc;
   8553
   8554	if (tpacpi_lifecycle != TPACPI_LIFE_RUNNING)
   8555		return;
   8556
   8557	pr_notice("fan watchdog: enabling fan\n");
   8558	rc = fan_set_enable();
   8559	if (rc < 0) {
   8560		pr_err("fan watchdog: error %d while enabling fan, will try again later...\n",
   8561		       rc);
   8562		/* reschedule for later */
   8563		fan_watchdog_reset();
   8564	}
   8565}
   8566
   8567/*
   8568 * SYSFS fan layout: hwmon compatible (device)
   8569 *
   8570 * pwm*_enable:
   8571 * 	0: "disengaged" mode
   8572 * 	1: manual mode
   8573 * 	2: native EC "auto" mode (recommended, hardware default)
   8574 *
   8575 * pwm*: set speed in manual mode, ignored otherwise.
   8576 * 	0 is level 0; 255 is level 7. Intermediate points done with linear
   8577 * 	interpolation.
   8578 *
   8579 * fan*_input: tachometer reading, RPM
   8580 *
   8581 *
   8582 * SYSFS fan layout: extensions
   8583 *
   8584 * fan_watchdog (driver):
   8585 * 	fan watchdog interval in seconds, 0 disables (default), max 120
   8586 */
   8587
   8588/* sysfs fan pwm1_enable ----------------------------------------------- */
   8589static ssize_t fan_pwm1_enable_show(struct device *dev,
   8590				    struct device_attribute *attr,
   8591				    char *buf)
   8592{
   8593	int res, mode;
   8594	u8 status;
   8595
   8596	res = fan_get_status_safe(&status);
   8597	if (res)
   8598		return res;
   8599
   8600	if (status & TP_EC_FAN_FULLSPEED) {
   8601		mode = 0;
   8602	} else if (status & TP_EC_FAN_AUTO) {
   8603		mode = 2;
   8604	} else
   8605		mode = 1;
   8606
   8607	return sysfs_emit(buf, "%d\n", mode);
   8608}
   8609
   8610static ssize_t fan_pwm1_enable_store(struct device *dev,
   8611				     struct device_attribute *attr,
   8612				     const char *buf, size_t count)
   8613{
   8614	unsigned long t;
   8615	int res, level;
   8616
   8617	if (parse_strtoul(buf, 2, &t))
   8618		return -EINVAL;
   8619
   8620	tpacpi_disclose_usertask("hwmon pwm1_enable",
   8621			"set fan mode to %lu\n", t);
   8622
   8623	switch (t) {
   8624	case 0:
   8625		level = TP_EC_FAN_FULLSPEED;
   8626		break;
   8627	case 1:
   8628		level = TPACPI_FAN_LAST_LEVEL;
   8629		break;
   8630	case 2:
   8631		level = TP_EC_FAN_AUTO;
   8632		break;
   8633	case 3:
   8634		/* reserved for software-controlled auto mode */
   8635		return -ENOSYS;
   8636	default:
   8637		return -EINVAL;
   8638	}
   8639
   8640	res = fan_set_level_safe(level);
   8641	if (res == -ENXIO)
   8642		return -EINVAL;
   8643	else if (res < 0)
   8644		return res;
   8645
   8646	fan_watchdog_reset();
   8647
   8648	return count;
   8649}
   8650
   8651static DEVICE_ATTR(pwm1_enable, S_IWUSR | S_IRUGO,
   8652		   fan_pwm1_enable_show, fan_pwm1_enable_store);
   8653
   8654/* sysfs fan pwm1 ------------------------------------------------------ */
   8655static ssize_t fan_pwm1_show(struct device *dev,
   8656			     struct device_attribute *attr,
   8657			     char *buf)
   8658{
   8659	int res;
   8660	u8 status;
   8661
   8662	res = fan_get_status_safe(&status);
   8663	if (res)
   8664		return res;
   8665
   8666	if ((status &
   8667	     (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) != 0)
   8668		status = fan_control_desired_level;
   8669
   8670	if (status > 7)
   8671		status = 7;
   8672
   8673	return sysfs_emit(buf, "%u\n", (status * 255) / 7);
   8674}
   8675
   8676static ssize_t fan_pwm1_store(struct device *dev,
   8677			      struct device_attribute *attr,
   8678			      const char *buf, size_t count)
   8679{
   8680	unsigned long s;
   8681	int rc;
   8682	u8 status, newlevel;
   8683
   8684	if (parse_strtoul(buf, 255, &s))
   8685		return -EINVAL;
   8686
   8687	tpacpi_disclose_usertask("hwmon pwm1",
   8688			"set fan speed to %lu\n", s);
   8689
   8690	/* scale down from 0-255 to 0-7 */
   8691	newlevel = (s >> 5) & 0x07;
   8692
   8693	if (mutex_lock_killable(&fan_mutex))
   8694		return -ERESTARTSYS;
   8695
   8696	rc = fan_get_status(&status);
   8697	if (!rc && (status &
   8698		    (TP_EC_FAN_AUTO | TP_EC_FAN_FULLSPEED)) == 0) {
   8699		rc = fan_set_level(newlevel);
   8700		if (rc == -ENXIO)
   8701			rc = -EINVAL;
   8702		else if (!rc) {
   8703			fan_update_desired_level(newlevel);
   8704			fan_watchdog_reset();
   8705		}
   8706	}
   8707
   8708	mutex_unlock(&fan_mutex);
   8709	return (rc) ? rc : count;
   8710}
   8711
   8712static DEVICE_ATTR(pwm1, S_IWUSR | S_IRUGO, fan_pwm1_show, fan_pwm1_store);
   8713
   8714/* sysfs fan fan1_input ------------------------------------------------ */
   8715static ssize_t fan_fan1_input_show(struct device *dev,
   8716			   struct device_attribute *attr,
   8717			   char *buf)
   8718{
   8719	int res;
   8720	unsigned int speed;
   8721
   8722	res = fan_get_speed(&speed);
   8723	if (res < 0)
   8724		return res;
   8725
   8726	return sysfs_emit(buf, "%u\n", speed);
   8727}
   8728
   8729static DEVICE_ATTR(fan1_input, S_IRUGO, fan_fan1_input_show, NULL);
   8730
   8731/* sysfs fan fan2_input ------------------------------------------------ */
   8732static ssize_t fan_fan2_input_show(struct device *dev,
   8733			   struct device_attribute *attr,
   8734			   char *buf)
   8735{
   8736	int res;
   8737	unsigned int speed;
   8738
   8739	res = fan2_get_speed(&speed);
   8740	if (res < 0)
   8741		return res;
   8742
   8743	return sysfs_emit(buf, "%u\n", speed);
   8744}
   8745
   8746static DEVICE_ATTR(fan2_input, S_IRUGO, fan_fan2_input_show, NULL);
   8747
   8748/* sysfs fan fan_watchdog (hwmon driver) ------------------------------- */
   8749static ssize_t fan_watchdog_show(struct device_driver *drv, char *buf)
   8750{
   8751	return sysfs_emit(buf, "%u\n", fan_watchdog_maxinterval);
   8752}
   8753
   8754static ssize_t fan_watchdog_store(struct device_driver *drv, const char *buf,
   8755				  size_t count)
   8756{
   8757	unsigned long t;
   8758
   8759	if (parse_strtoul(buf, 120, &t))
   8760		return -EINVAL;
   8761
   8762	if (!fan_control_allowed)
   8763		return -EPERM;
   8764
   8765	fan_watchdog_maxinterval = t;
   8766	fan_watchdog_reset();
   8767
   8768	tpacpi_disclose_usertask("fan_watchdog", "set to %lu\n", t);
   8769
   8770	return count;
   8771}
   8772static DRIVER_ATTR_RW(fan_watchdog);
   8773
   8774/* --------------------------------------------------------------------- */
   8775
   8776static struct attribute *fan_attributes[] = {
   8777	&dev_attr_pwm1_enable.attr,
   8778	&dev_attr_pwm1.attr,
   8779	&dev_attr_fan1_input.attr,
   8780	&dev_attr_fan2_input.attr,
   8781	NULL
   8782};
   8783
   8784static umode_t fan_attr_is_visible(struct kobject *kobj, struct attribute *attr,
   8785				   int n)
   8786{
   8787	if (fan_status_access_mode == TPACPI_FAN_NONE &&
   8788	    fan_control_access_mode == TPACPI_FAN_WR_NONE)
   8789		return 0;
   8790
   8791	if (attr == &dev_attr_fan2_input.attr) {
   8792		if (!tp_features.second_fan)
   8793			return 0;
   8794	}
   8795
   8796	return attr->mode;
   8797}
   8798
   8799static const struct attribute_group fan_attr_group = {
   8800	.is_visible = fan_attr_is_visible,
   8801	.attrs = fan_attributes,
   8802};
   8803
   8804static struct attribute *fan_driver_attributes[] = {
   8805	&driver_attr_fan_watchdog.attr,
   8806	NULL
   8807};
   8808
   8809static const struct attribute_group fan_driver_attr_group = {
   8810	.is_visible = fan_attr_is_visible,
   8811	.attrs = fan_driver_attributes,
   8812};
   8813
   8814#define TPACPI_FAN_Q1		0x0001		/* Uninitialized HFSP */
   8815#define TPACPI_FAN_2FAN		0x0002		/* EC 0x31 bit 0 selects fan2 */
   8816#define TPACPI_FAN_2CTL		0x0004		/* selects fan2 control */
   8817#define TPACPI_FAN_NOFAN	0x0008		/* no fan available */
   8818
   8819static const struct tpacpi_quirk fan_quirk_table[] __initconst = {
   8820	TPACPI_QEC_IBM('1', 'Y', TPACPI_FAN_Q1),
   8821	TPACPI_QEC_IBM('7', '8', TPACPI_FAN_Q1),
   8822	TPACPI_QEC_IBM('7', '6', TPACPI_FAN_Q1),
   8823	TPACPI_QEC_IBM('7', '0', TPACPI_FAN_Q1),
   8824	TPACPI_QEC_LNV('7', 'M', TPACPI_FAN_2FAN),
   8825	TPACPI_Q_LNV('N', '1', TPACPI_FAN_2FAN),
   8826	TPACPI_Q_LNV3('N', '1', 'D', TPACPI_FAN_2CTL),	/* P70 */
   8827	TPACPI_Q_LNV3('N', '1', 'E', TPACPI_FAN_2CTL),	/* P50 */
   8828	TPACPI_Q_LNV3('N', '1', 'T', TPACPI_FAN_2CTL),	/* P71 */
   8829	TPACPI_Q_LNV3('N', '1', 'U', TPACPI_FAN_2CTL),	/* P51 */
   8830	TPACPI_Q_LNV3('N', '2', 'C', TPACPI_FAN_2CTL),	/* P52 / P72 */
   8831	TPACPI_Q_LNV3('N', '2', 'N', TPACPI_FAN_2CTL),	/* P53 / P73 */
   8832	TPACPI_Q_LNV3('N', '2', 'E', TPACPI_FAN_2CTL),	/* P1 / X1 Extreme (1st gen) */
   8833	TPACPI_Q_LNV3('N', '2', 'O', TPACPI_FAN_2CTL),	/* P1 / X1 Extreme (2nd gen) */
   8834	TPACPI_Q_LNV3('N', '3', '0', TPACPI_FAN_2CTL),	/* P15 (1st gen) / P15v (1st gen) */
   8835	TPACPI_Q_LNV3('N', '3', '7', TPACPI_FAN_2CTL),  /* T15g (2nd gen) */
   8836	TPACPI_Q_LNV3('N', '1', 'O', TPACPI_FAN_NOFAN),	/* X1 Tablet (2nd gen) */
   8837};
   8838
   8839static int __init fan_init(struct ibm_init_struct *iibm)
   8840{
   8841	unsigned long quirks;
   8842
   8843	vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
   8844			"initializing fan subdriver\n");
   8845
   8846	mutex_init(&fan_mutex);
   8847	fan_status_access_mode = TPACPI_FAN_NONE;
   8848	fan_control_access_mode = TPACPI_FAN_WR_NONE;
   8849	fan_control_commands = 0;
   8850	fan_watchdog_maxinterval = 0;
   8851	tp_features.fan_ctrl_status_undef = 0;
   8852	tp_features.second_fan = 0;
   8853	tp_features.second_fan_ctl = 0;
   8854	fan_control_desired_level = 7;
   8855
   8856	if (tpacpi_is_ibm()) {
   8857		TPACPI_ACPIHANDLE_INIT(fans);
   8858		TPACPI_ACPIHANDLE_INIT(gfan);
   8859		TPACPI_ACPIHANDLE_INIT(sfan);
   8860	}
   8861
   8862	quirks = tpacpi_check_quirks(fan_quirk_table,
   8863				     ARRAY_SIZE(fan_quirk_table));
   8864
   8865	if (quirks & TPACPI_FAN_NOFAN) {
   8866		pr_info("No integrated ThinkPad fan available\n");
   8867		return -ENODEV;
   8868	}
   8869
   8870	if (gfan_handle) {
   8871		/* 570, 600e/x, 770e, 770x */
   8872		fan_status_access_mode = TPACPI_FAN_RD_ACPI_GFAN;
   8873	} else {
   8874		/* all other ThinkPads: note that even old-style
   8875		 * ThinkPad ECs supports the fan control register */
   8876		if (likely(acpi_ec_read(fan_status_offset,
   8877					&fan_control_initial_status))) {
   8878			int res;
   8879			unsigned int speed;
   8880
   8881			fan_status_access_mode = TPACPI_FAN_RD_TPEC;
   8882			if (quirks & TPACPI_FAN_Q1)
   8883				fan_quirk1_setup();
   8884			/* Try and probe the 2nd fan */
   8885			tp_features.second_fan = 1; /* needed for get_speed to work */
   8886			res = fan2_get_speed(&speed);
   8887			if (res >= 0) {
   8888				/* It responded - so let's assume it's there */
   8889				tp_features.second_fan = 1;
   8890				tp_features.second_fan_ctl = 1;
   8891				pr_info("secondary fan control detected & enabled\n");
   8892			} else {
   8893				/* Fan not auto-detected */
   8894				tp_features.second_fan = 0;
   8895				if (quirks & TPACPI_FAN_2FAN) {
   8896					tp_features.second_fan = 1;
   8897					pr_info("secondary fan support enabled\n");
   8898				}
   8899				if (quirks & TPACPI_FAN_2CTL) {
   8900					tp_features.second_fan = 1;
   8901					tp_features.second_fan_ctl = 1;
   8902					pr_info("secondary fan control enabled\n");
   8903				}
   8904			}
   8905		} else {
   8906			pr_err("ThinkPad ACPI EC access misbehaving, fan status and control unavailable\n");
   8907			return -ENODEV;
   8908		}
   8909	}
   8910
   8911	if (sfan_handle) {
   8912		/* 570, 770x-JL */
   8913		fan_control_access_mode = TPACPI_FAN_WR_ACPI_SFAN;
   8914		fan_control_commands |=
   8915		    TPACPI_FAN_CMD_LEVEL | TPACPI_FAN_CMD_ENABLE;
   8916	} else {
   8917		if (!gfan_handle) {
   8918			/* gfan without sfan means no fan control */
   8919			/* all other models implement TP EC 0x2f control */
   8920
   8921			if (fans_handle) {
   8922				/* X31, X40, X41 */
   8923				fan_control_access_mode =
   8924				    TPACPI_FAN_WR_ACPI_FANS;
   8925				fan_control_commands |=
   8926				    TPACPI_FAN_CMD_SPEED |
   8927				    TPACPI_FAN_CMD_LEVEL |
   8928				    TPACPI_FAN_CMD_ENABLE;
   8929			} else {
   8930				fan_control_access_mode = TPACPI_FAN_WR_TPEC;
   8931				fan_control_commands |=
   8932				    TPACPI_FAN_CMD_LEVEL |
   8933				    TPACPI_FAN_CMD_ENABLE;
   8934			}
   8935		}
   8936	}
   8937
   8938	vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
   8939		"fan is %s, modes %d, %d\n",
   8940		str_supported(fan_status_access_mode != TPACPI_FAN_NONE ||
   8941		  fan_control_access_mode != TPACPI_FAN_WR_NONE),
   8942		fan_status_access_mode, fan_control_access_mode);
   8943
   8944	/* fan control master switch */
   8945	if (!fan_control_allowed) {
   8946		fan_control_access_mode = TPACPI_FAN_WR_NONE;
   8947		fan_control_commands = 0;
   8948		dbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_FAN,
   8949			   "fan control features disabled by parameter\n");
   8950	}
   8951
   8952	/* update fan_control_desired_level */
   8953	if (fan_status_access_mode != TPACPI_FAN_NONE)
   8954		fan_get_status_safe(NULL);
   8955
   8956	if (fan_status_access_mode == TPACPI_FAN_NONE &&
   8957	    fan_control_access_mode == TPACPI_FAN_WR_NONE)
   8958		return -ENODEV;
   8959
   8960	return 0;
   8961}
   8962
   8963static void fan_exit(void)
   8964{
   8965	vdbg_printk(TPACPI_DBG_EXIT | TPACPI_DBG_FAN,
   8966		    "cancelling any pending fan watchdog tasks\n");
   8967
   8968	cancel_delayed_work(&fan_watchdog_task);
   8969	flush_workqueue(tpacpi_wq);
   8970}
   8971
   8972static void fan_suspend(void)
   8973{
   8974	int rc;
   8975
   8976	if (!fan_control_allowed)
   8977		return;
   8978
   8979	/* Store fan status in cache */
   8980	fan_control_resume_level = 0;
   8981	rc = fan_get_status_safe(&fan_control_resume_level);
   8982	if (rc)
   8983		pr_notice("failed to read fan level for later restore during resume: %d\n",
   8984			  rc);
   8985
   8986	/* if it is undefined, don't attempt to restore it.
   8987	 * KEEP THIS LAST */
   8988	if (tp_features.fan_ctrl_status_undef)
   8989		fan_control_resume_level = 0;
   8990}
   8991
   8992static void fan_resume(void)
   8993{
   8994	u8 current_level = 7;
   8995	bool do_set = false;
   8996	int rc;
   8997
   8998	/* DSDT *always* updates status on resume */
   8999	tp_features.fan_ctrl_status_undef = 0;
   9000
   9001	if (!fan_control_allowed ||
   9002	    !fan_control_resume_level ||
   9003	    fan_get_status_safe(&current_level))
   9004		return;
   9005
   9006	switch (fan_control_access_mode) {
   9007	case TPACPI_FAN_WR_ACPI_SFAN:
   9008		/* never decrease fan level */
   9009		do_set = (fan_control_resume_level > current_level);
   9010		break;
   9011	case TPACPI_FAN_WR_ACPI_FANS:
   9012	case TPACPI_FAN_WR_TPEC:
   9013		/* never decrease fan level, scale is:
   9014		 * TP_EC_FAN_FULLSPEED > 7 >= TP_EC_FAN_AUTO
   9015		 *
   9016		 * We expect the firmware to set either 7 or AUTO, but we
   9017		 * handle FULLSPEED out of paranoia.
   9018		 *
   9019		 * So, we can safely only restore FULLSPEED or 7, anything
   9020		 * else could slow the fan.  Restoring AUTO is useless, at
   9021		 * best that's exactly what the DSDT already set (it is the
   9022		 * slower it uses).
   9023		 *
   9024		 * Always keep in mind that the DSDT *will* have set the
   9025		 * fans to what the vendor supposes is the best level.  We
   9026		 * muck with it only to speed the fan up.
   9027		 */
   9028		if (fan_control_resume_level != 7 &&
   9029		    !(fan_control_resume_level & TP_EC_FAN_FULLSPEED))
   9030			return;
   9031		else
   9032			do_set = !(current_level & TP_EC_FAN_FULLSPEED) &&
   9033				 (current_level != fan_control_resume_level);
   9034		break;
   9035	default:
   9036		return;
   9037	}
   9038	if (do_set) {
   9039		pr_notice("restoring fan level to 0x%02x\n",
   9040			  fan_control_resume_level);
   9041		rc = fan_set_level_safe(fan_control_resume_level);
   9042		if (rc < 0)
   9043			pr_notice("failed to restore fan level: %d\n", rc);
   9044	}
   9045}
   9046
   9047static int fan_read(struct seq_file *m)
   9048{
   9049	int rc;
   9050	u8 status;
   9051	unsigned int speed = 0;
   9052
   9053	switch (fan_status_access_mode) {
   9054	case TPACPI_FAN_RD_ACPI_GFAN:
   9055		/* 570, 600e/x, 770e, 770x */
   9056		rc = fan_get_status_safe(&status);
   9057		if (rc)
   9058			return rc;
   9059
   9060		seq_printf(m, "status:\t\t%s\n"
   9061			       "level:\t\t%d\n",
   9062			       (status != 0) ? "enabled" : "disabled", status);
   9063		break;
   9064
   9065	case TPACPI_FAN_RD_TPEC:
   9066		/* all except 570, 600e/x, 770e, 770x */
   9067		rc = fan_get_status_safe(&status);
   9068		if (rc)
   9069			return rc;
   9070
   9071		seq_printf(m, "status:\t\t%s\n",
   9072			       (status != 0) ? "enabled" : "disabled");
   9073
   9074		rc = fan_get_speed(&speed);
   9075		if (rc < 0)
   9076			return rc;
   9077
   9078		seq_printf(m, "speed:\t\t%d\n", speed);
   9079
   9080		if (status & TP_EC_FAN_FULLSPEED)
   9081			/* Disengaged mode takes precedence */
   9082			seq_printf(m, "level:\t\tdisengaged\n");
   9083		else if (status & TP_EC_FAN_AUTO)
   9084			seq_printf(m, "level:\t\tauto\n");
   9085		else
   9086			seq_printf(m, "level:\t\t%d\n", status);
   9087		break;
   9088
   9089	case TPACPI_FAN_NONE:
   9090	default:
   9091		seq_printf(m, "status:\t\tnot supported\n");
   9092	}
   9093
   9094	if (fan_control_commands & TPACPI_FAN_CMD_LEVEL) {
   9095		seq_printf(m, "commands:\tlevel <level>");
   9096
   9097		switch (fan_control_access_mode) {
   9098		case TPACPI_FAN_WR_ACPI_SFAN:
   9099			seq_printf(m, " (<level> is 0-7)\n");
   9100			break;
   9101
   9102		default:
   9103			seq_printf(m, " (<level> is 0-7, auto, disengaged, full-speed)\n");
   9104			break;
   9105		}
   9106	}
   9107
   9108	if (fan_control_commands & TPACPI_FAN_CMD_ENABLE)
   9109		seq_printf(m, "commands:\tenable, disable\n"
   9110			       "commands:\twatchdog <timeout> (<timeout> is 0 (off), 1-120 (seconds))\n");
   9111
   9112	if (fan_control_commands & TPACPI_FAN_CMD_SPEED)
   9113		seq_printf(m, "commands:\tspeed <speed> (<speed> is 0-65535)\n");
   9114
   9115	return 0;
   9116}
   9117
   9118static int fan_write_cmd_level(const char *cmd, int *rc)
   9119{
   9120	int level;
   9121
   9122	if (strlencmp(cmd, "level auto") == 0)
   9123		level = TP_EC_FAN_AUTO;
   9124	else if ((strlencmp(cmd, "level disengaged") == 0) ||
   9125			(strlencmp(cmd, "level full-speed") == 0))
   9126		level = TP_EC_FAN_FULLSPEED;
   9127	else if (sscanf(cmd, "level %d", &level) != 1)
   9128		return 0;
   9129
   9130	*rc = fan_set_level_safe(level);
   9131	if (*rc == -ENXIO)
   9132		pr_err("level command accepted for unsupported access mode %d\n",
   9133		       fan_control_access_mode);
   9134	else if (!*rc)
   9135		tpacpi_disclose_usertask("procfs fan",
   9136			"set level to %d\n", level);
   9137
   9138	return 1;
   9139}
   9140
   9141static int fan_write_cmd_enable(const char *cmd, int *rc)
   9142{
   9143	if (strlencmp(cmd, "enable") != 0)
   9144		return 0;
   9145
   9146	*rc = fan_set_enable();
   9147	if (*rc == -ENXIO)
   9148		pr_err("enable command accepted for unsupported access mode %d\n",
   9149		       fan_control_access_mode);
   9150	else if (!*rc)
   9151		tpacpi_disclose_usertask("procfs fan", "enable\n");
   9152
   9153	return 1;
   9154}
   9155
   9156static int fan_write_cmd_disable(const char *cmd, int *rc)
   9157{
   9158	if (strlencmp(cmd, "disable") != 0)
   9159		return 0;
   9160
   9161	*rc = fan_set_disable();
   9162	if (*rc == -ENXIO)
   9163		pr_err("disable command accepted for unsupported access mode %d\n",
   9164		       fan_control_access_mode);
   9165	else if (!*rc)
   9166		tpacpi_disclose_usertask("procfs fan", "disable\n");
   9167
   9168	return 1;
   9169}
   9170
   9171static int fan_write_cmd_speed(const char *cmd, int *rc)
   9172{
   9173	int speed;
   9174
   9175	/* TODO:
   9176	 * Support speed <low> <medium> <high> ? */
   9177
   9178	if (sscanf(cmd, "speed %d", &speed) != 1)
   9179		return 0;
   9180
   9181	*rc = fan_set_speed(speed);
   9182	if (*rc == -ENXIO)
   9183		pr_err("speed command accepted for unsupported access mode %d\n",
   9184		       fan_control_access_mode);
   9185	else if (!*rc)
   9186		tpacpi_disclose_usertask("procfs fan",
   9187			"set speed to %d\n", speed);
   9188
   9189	return 1;
   9190}
   9191
   9192static int fan_write_cmd_watchdog(const char *cmd, int *rc)
   9193{
   9194	int interval;
   9195
   9196	if (sscanf(cmd, "watchdog %d", &interval) != 1)
   9197		return 0;
   9198
   9199	if (interval < 0 || interval > 120)
   9200		*rc = -EINVAL;
   9201	else {
   9202		fan_watchdog_maxinterval = interval;
   9203		tpacpi_disclose_usertask("procfs fan",
   9204			"set watchdog timer to %d\n",
   9205			interval);
   9206	}
   9207
   9208	return 1;
   9209}
   9210
   9211static int fan_write(char *buf)
   9212{
   9213	char *cmd;
   9214	int rc = 0;
   9215
   9216	while (!rc && (cmd = strsep(&buf, ","))) {
   9217		if (!((fan_control_commands & TPACPI_FAN_CMD_LEVEL) &&
   9218		      fan_write_cmd_level(cmd, &rc)) &&
   9219		    !((fan_control_commands & TPACPI_FAN_CMD_ENABLE) &&
   9220		      (fan_write_cmd_enable(cmd, &rc) ||
   9221		       fan_write_cmd_disable(cmd, &rc) ||
   9222		       fan_write_cmd_watchdog(cmd, &rc))) &&
   9223		    !((fan_control_commands & TPACPI_FAN_CMD_SPEED) &&
   9224		      fan_write_cmd_speed(cmd, &rc))
   9225		    )
   9226			rc = -EINVAL;
   9227		else if (!rc)
   9228			fan_watchdog_reset();
   9229	}
   9230
   9231	return rc;
   9232}
   9233
   9234static struct ibm_struct fan_driver_data = {
   9235	.name = "fan",
   9236	.read = fan_read,
   9237	.write = fan_write,
   9238	.exit = fan_exit,
   9239	.suspend = fan_suspend,
   9240	.resume = fan_resume,
   9241};
   9242
   9243/*************************************************************************
   9244 * Mute LED subdriver
   9245 */
   9246
   9247#define TPACPI_LED_MAX		2
   9248
   9249struct tp_led_table {
   9250	acpi_string name;
   9251	int on_value;
   9252	int off_value;
   9253	int state;
   9254};
   9255
   9256static struct tp_led_table led_tables[TPACPI_LED_MAX] = {
   9257	[LED_AUDIO_MUTE] = {
   9258		.name = "SSMS",
   9259		.on_value = 1,
   9260		.off_value = 0,
   9261	},
   9262	[LED_AUDIO_MICMUTE] = {
   9263		.name = "MMTS",
   9264		.on_value = 2,
   9265		.off_value = 0,
   9266	},
   9267};
   9268
   9269static int mute_led_on_off(struct tp_led_table *t, bool state)
   9270{
   9271	acpi_handle temp;
   9272	int output;
   9273
   9274	if (ACPI_FAILURE(acpi_get_handle(hkey_handle, t->name, &temp))) {
   9275		pr_warn("Thinkpad ACPI has no %s interface.\n", t->name);
   9276		return -EIO;
   9277	}
   9278
   9279	if (!acpi_evalf(hkey_handle, &output, t->name, "dd",
   9280			state ? t->on_value : t->off_value))
   9281		return -EIO;
   9282
   9283	t->state = state;
   9284	return state;
   9285}
   9286
   9287static int tpacpi_led_set(int whichled, bool on)
   9288{
   9289	struct tp_led_table *t;
   9290
   9291	t = &led_tables[whichled];
   9292	if (t->state < 0 || t->state == on)
   9293		return t->state;
   9294	return mute_led_on_off(t, on);
   9295}
   9296
   9297static int tpacpi_led_mute_set(struct led_classdev *led_cdev,
   9298			       enum led_brightness brightness)
   9299{
   9300	return tpacpi_led_set(LED_AUDIO_MUTE, brightness != LED_OFF);
   9301}
   9302
   9303static int tpacpi_led_micmute_set(struct led_classdev *led_cdev,
   9304				  enum led_brightness brightness)
   9305{
   9306	return tpacpi_led_set(LED_AUDIO_MICMUTE, brightness != LED_OFF);
   9307}
   9308
   9309static struct led_classdev mute_led_cdev[TPACPI_LED_MAX] = {
   9310	[LED_AUDIO_MUTE] = {
   9311		.name		= "platform::mute",
   9312		.max_brightness = 1,
   9313		.brightness_set_blocking = tpacpi_led_mute_set,
   9314		.default_trigger = "audio-mute",
   9315	},
   9316	[LED_AUDIO_MICMUTE] = {
   9317		.name		= "platform::micmute",
   9318		.max_brightness = 1,
   9319		.brightness_set_blocking = tpacpi_led_micmute_set,
   9320		.default_trigger = "audio-micmute",
   9321	},
   9322};
   9323
   9324static int mute_led_init(struct ibm_init_struct *iibm)
   9325{
   9326	acpi_handle temp;
   9327	int i, err;
   9328
   9329	for (i = 0; i < TPACPI_LED_MAX; i++) {
   9330		struct tp_led_table *t = &led_tables[i];
   9331		if (ACPI_FAILURE(acpi_get_handle(hkey_handle, t->name, &temp))) {
   9332			t->state = -ENODEV;
   9333			continue;
   9334		}
   9335
   9336		mute_led_cdev[i].brightness = ledtrig_audio_get(i);
   9337		err = led_classdev_register(&tpacpi_pdev->dev, &mute_led_cdev[i]);
   9338		if (err < 0) {
   9339			while (i--)
   9340				led_classdev_unregister(&mute_led_cdev[i]);
   9341			return err;
   9342		}
   9343	}
   9344	return 0;
   9345}
   9346
   9347static void mute_led_exit(void)
   9348{
   9349	int i;
   9350
   9351	for (i = 0; i < TPACPI_LED_MAX; i++) {
   9352		led_classdev_unregister(&mute_led_cdev[i]);
   9353		tpacpi_led_set(i, false);
   9354	}
   9355}
   9356
   9357static void mute_led_resume(void)
   9358{
   9359	int i;
   9360
   9361	for (i = 0; i < TPACPI_LED_MAX; i++) {
   9362		struct tp_led_table *t = &led_tables[i];
   9363		if (t->state >= 0)
   9364			mute_led_on_off(t, t->state);
   9365	}
   9366}
   9367
   9368static struct ibm_struct mute_led_driver_data = {
   9369	.name = "mute_led",
   9370	.exit = mute_led_exit,
   9371	.resume = mute_led_resume,
   9372};
   9373
   9374/*
   9375 * Battery Wear Control Driver
   9376 * Contact: Ognjen Galic <smclt30p@gmail.com>
   9377 */
   9378
   9379/* Metadata */
   9380
   9381#define GET_START	"BCTG"
   9382#define SET_START	"BCCS"
   9383#define GET_STOP	"BCSG"
   9384#define SET_STOP	"BCSS"
   9385#define GET_DISCHARGE	"BDSG"
   9386#define SET_DISCHARGE	"BDSS"
   9387#define GET_INHIBIT	"BICG"
   9388#define SET_INHIBIT	"BICS"
   9389
   9390enum {
   9391	BAT_ANY = 0,
   9392	BAT_PRIMARY = 1,
   9393	BAT_SECONDARY = 2
   9394};
   9395
   9396enum {
   9397	/* Error condition bit */
   9398	METHOD_ERR = BIT(31),
   9399};
   9400
   9401enum {
   9402	/* This is used in the get/set helpers */
   9403	THRESHOLD_START,
   9404	THRESHOLD_STOP,
   9405	FORCE_DISCHARGE,
   9406	INHIBIT_CHARGE,
   9407};
   9408
   9409struct tpacpi_battery_data {
   9410	int charge_start;
   9411	int start_support;
   9412	int charge_stop;
   9413	int stop_support;
   9414	unsigned int charge_behaviours;
   9415};
   9416
   9417struct tpacpi_battery_driver_data {
   9418	struct tpacpi_battery_data batteries[3];
   9419	int individual_addressing;
   9420};
   9421
   9422static struct tpacpi_battery_driver_data battery_info;
   9423
   9424/* ACPI helpers/functions/probes */
   9425
   9426/**
   9427 * This evaluates a ACPI method call specific to the battery
   9428 * ACPI extension. The specifics are that an error is marked
   9429 * in the 32rd bit of the response, so we just check that here.
   9430 */
   9431static acpi_status tpacpi_battery_acpi_eval(char *method, int *ret, int param)
   9432{
   9433	int response;
   9434
   9435	if (!acpi_evalf(hkey_handle, &response, method, "dd", param)) {
   9436		acpi_handle_err(hkey_handle, "%s: evaluate failed", method);
   9437		return AE_ERROR;
   9438	}
   9439	if (response & METHOD_ERR) {
   9440		acpi_handle_err(hkey_handle,
   9441				"%s evaluated but flagged as error", method);
   9442		return AE_ERROR;
   9443	}
   9444	*ret = response;
   9445	return AE_OK;
   9446}
   9447
   9448static int tpacpi_battery_get(int what, int battery, int *ret)
   9449{
   9450	switch (what) {
   9451	case THRESHOLD_START:
   9452		if ACPI_FAILURE(tpacpi_battery_acpi_eval(GET_START, ret, battery))
   9453			return -ENODEV;
   9454
   9455		/* The value is in the low 8 bits of the response */
   9456		*ret = *ret & 0xFF;
   9457		return 0;
   9458	case THRESHOLD_STOP:
   9459		if ACPI_FAILURE(tpacpi_battery_acpi_eval(GET_STOP, ret, battery))
   9460			return -ENODEV;
   9461		/* Value is in lower 8 bits */
   9462		*ret = *ret & 0xFF;
   9463		/*
   9464		 * On the stop value, if we return 0 that
   9465		 * does not make any sense. 0 means Default, which
   9466		 * means that charging stops at 100%, so we return
   9467		 * that.
   9468		 */
   9469		if (*ret == 0)
   9470			*ret = 100;
   9471		return 0;
   9472	case FORCE_DISCHARGE:
   9473		if ACPI_FAILURE(tpacpi_battery_acpi_eval(GET_DISCHARGE, ret, battery))
   9474			return -ENODEV;
   9475		/* The force discharge status is in bit 0 */
   9476		*ret = *ret & 0x01;
   9477		return 0;
   9478	case INHIBIT_CHARGE:
   9479		if ACPI_FAILURE(tpacpi_battery_acpi_eval(GET_INHIBIT, ret, battery))
   9480			return -ENODEV;
   9481		/* The inhibit charge status is in bit 0 */
   9482		*ret = *ret & 0x01;
   9483		return 0;
   9484	default:
   9485		pr_crit("wrong parameter: %d", what);
   9486		return -EINVAL;
   9487	}
   9488}
   9489
   9490static int tpacpi_battery_set(int what, int battery, int value)
   9491{
   9492	int param, ret;
   9493	/* The first 8 bits are the value of the threshold */
   9494	param = value;
   9495	/* The battery ID is in bits 8-9, 2 bits */
   9496	param |= battery << 8;
   9497
   9498	switch (what) {
   9499	case THRESHOLD_START:
   9500		if ACPI_FAILURE(tpacpi_battery_acpi_eval(SET_START, &ret, param)) {
   9501			pr_err("failed to set charge threshold on battery %d",
   9502					battery);
   9503			return -ENODEV;
   9504		}
   9505		return 0;
   9506	case THRESHOLD_STOP:
   9507		if ACPI_FAILURE(tpacpi_battery_acpi_eval(SET_STOP, &ret, param)) {
   9508			pr_err("failed to set stop threshold: %d", battery);
   9509			return -ENODEV;
   9510		}
   9511		return 0;
   9512	case FORCE_DISCHARGE:
   9513		/* Force discharge is in bit 0,
   9514		 * break on AC attach is in bit 1 (won't work on some ThinkPads),
   9515		 * battery ID is in bits 8-9, 2 bits.
   9516		 */
   9517		if (ACPI_FAILURE(tpacpi_battery_acpi_eval(SET_DISCHARGE, &ret, param))) {
   9518			pr_err("failed to set force discharge on %d", battery);
   9519			return -ENODEV;
   9520		}
   9521		return 0;
   9522	case INHIBIT_CHARGE:
   9523		/* When setting inhibit charge, we set a default value of
   9524		 * always breaking on AC detach and the effective time is set to
   9525		 * be permanent.
   9526		 * The battery ID is in bits 4-5, 2 bits,
   9527		 * the effective time is in bits 8-23, 2 bytes.
   9528		 * A time of FFFF indicates forever.
   9529		 */
   9530		param = value;
   9531		param |= battery << 4;
   9532		param |= 0xFFFF << 8;
   9533		if (ACPI_FAILURE(tpacpi_battery_acpi_eval(SET_INHIBIT, &ret, param))) {
   9534			pr_err("failed to set inhibit charge on %d", battery);
   9535			return -ENODEV;
   9536		}
   9537		return 0;
   9538	default:
   9539		pr_crit("wrong parameter: %d", what);
   9540		return -EINVAL;
   9541	}
   9542}
   9543
   9544static int tpacpi_battery_set_validate(int what, int battery, int value)
   9545{
   9546	int ret, v;
   9547
   9548	ret = tpacpi_battery_set(what, battery, value);
   9549	if (ret < 0)
   9550		return ret;
   9551
   9552	ret = tpacpi_battery_get(what, battery, &v);
   9553	if (ret < 0)
   9554		return ret;
   9555
   9556	if (v == value)
   9557		return 0;
   9558
   9559	msleep(500);
   9560
   9561	ret = tpacpi_battery_get(what, battery, &v);
   9562	if (ret < 0)
   9563		return ret;
   9564
   9565	if (v == value)
   9566		return 0;
   9567
   9568	return -EIO;
   9569}
   9570
   9571static int tpacpi_battery_probe(int battery)
   9572{
   9573	int ret = 0;
   9574
   9575	memset(&battery_info.batteries[battery], 0,
   9576		sizeof(battery_info.batteries[battery]));
   9577
   9578	/*
   9579	 * 1) Get the current start threshold
   9580	 * 2) Check for support
   9581	 * 3) Get the current stop threshold
   9582	 * 4) Check for support
   9583	 * 5) Get the current force discharge status
   9584	 * 6) Check for support
   9585	 * 7) Get the current inhibit charge status
   9586	 * 8) Check for support
   9587	 */
   9588	if (acpi_has_method(hkey_handle, GET_START)) {
   9589		if ACPI_FAILURE(tpacpi_battery_acpi_eval(GET_START, &ret, battery)) {
   9590			pr_err("Error probing battery %d\n", battery);
   9591			return -ENODEV;
   9592		}
   9593		/* Individual addressing is in bit 9 */
   9594		if (ret & BIT(9))
   9595			battery_info.individual_addressing = true;
   9596		/* Support is marked in bit 8 */
   9597		if (ret & BIT(8))
   9598			battery_info.batteries[battery].start_support = 1;
   9599		else
   9600			return -ENODEV;
   9601		if (tpacpi_battery_get(THRESHOLD_START, battery,
   9602			&battery_info.batteries[battery].charge_start)) {
   9603			pr_err("Error probing battery %d\n", battery);
   9604			return -ENODEV;
   9605		}
   9606	}
   9607	if (acpi_has_method(hkey_handle, GET_STOP)) {
   9608		if ACPI_FAILURE(tpacpi_battery_acpi_eval(GET_STOP, &ret, battery)) {
   9609			pr_err("Error probing battery stop; %d\n", battery);
   9610			return -ENODEV;
   9611		}
   9612		/* Support is marked in bit 8 */
   9613		if (ret & BIT(8))
   9614			battery_info.batteries[battery].stop_support = 1;
   9615		else
   9616			return -ENODEV;
   9617		if (tpacpi_battery_get(THRESHOLD_STOP, battery,
   9618			&battery_info.batteries[battery].charge_stop)) {
   9619			pr_err("Error probing battery stop: %d\n", battery);
   9620			return -ENODEV;
   9621		}
   9622	}
   9623	if (acpi_has_method(hkey_handle, GET_DISCHARGE)) {
   9624		if (ACPI_FAILURE(tpacpi_battery_acpi_eval(GET_DISCHARGE, &ret, battery))) {
   9625			pr_err("Error probing battery discharge; %d\n", battery);
   9626			return -ENODEV;
   9627		}
   9628		/* Support is marked in bit 8 */
   9629		if (ret & BIT(8))
   9630			battery_info.batteries[battery].charge_behaviours |=
   9631				BIT(POWER_SUPPLY_CHARGE_BEHAVIOUR_FORCE_DISCHARGE);
   9632	}
   9633	if (acpi_has_method(hkey_handle, GET_INHIBIT)) {
   9634		if (ACPI_FAILURE(tpacpi_battery_acpi_eval(GET_INHIBIT, &ret, battery))) {
   9635			pr_err("Error probing battery inhibit charge; %d\n", battery);
   9636			return -ENODEV;
   9637		}
   9638		/* Support is marked in bit 5 */
   9639		if (ret & BIT(5))
   9640			battery_info.batteries[battery].charge_behaviours |=
   9641				BIT(POWER_SUPPLY_CHARGE_BEHAVIOUR_INHIBIT_CHARGE);
   9642	}
   9643
   9644	battery_info.batteries[battery].charge_behaviours |=
   9645		BIT(POWER_SUPPLY_CHARGE_BEHAVIOUR_AUTO);
   9646
   9647	pr_info("battery %d registered (start %d, stop %d, behaviours: 0x%x)\n",
   9648		battery,
   9649		battery_info.batteries[battery].charge_start,
   9650		battery_info.batteries[battery].charge_stop,
   9651		battery_info.batteries[battery].charge_behaviours);
   9652
   9653	return 0;
   9654}
   9655
   9656/* General helper functions */
   9657
   9658static int tpacpi_battery_get_id(const char *battery_name)
   9659{
   9660
   9661	if (strcmp(battery_name, "BAT0") == 0 ||
   9662	    tp_features.battery_force_primary)
   9663		return BAT_PRIMARY;
   9664	if (strcmp(battery_name, "BAT1") == 0)
   9665		return BAT_SECONDARY;
   9666	/*
   9667	 * If for some reason the battery is not BAT0 nor is it
   9668	 * BAT1, we will assume it's the default, first battery,
   9669	 * AKA primary.
   9670	 */
   9671	pr_warn("unknown battery %s, assuming primary", battery_name);
   9672	return BAT_PRIMARY;
   9673}
   9674
   9675/* sysfs interface */
   9676
   9677static ssize_t tpacpi_battery_store(int what,
   9678				    struct device *dev,
   9679				    const char *buf, size_t count)
   9680{
   9681	struct power_supply *supply = to_power_supply(dev);
   9682	unsigned long value;
   9683	int battery, rval;
   9684	/*
   9685	 * Some systems have support for more than
   9686	 * one battery. If that is the case,
   9687	 * tpacpi_battery_probe marked that addressing
   9688	 * them individually is supported, so we do that
   9689	 * based on the device struct.
   9690	 *
   9691	 * On systems that are not supported, we assume
   9692	 * the primary as most of the ACPI calls fail
   9693	 * with "Any Battery" as the parameter.
   9694	 */
   9695	if (battery_info.individual_addressing)
   9696		/* BAT_PRIMARY or BAT_SECONDARY */
   9697		battery = tpacpi_battery_get_id(supply->desc->name);
   9698	else
   9699		battery = BAT_PRIMARY;
   9700
   9701	rval = kstrtoul(buf, 10, &value);
   9702	if (rval)
   9703		return rval;
   9704
   9705	switch (what) {
   9706	case THRESHOLD_START:
   9707		if (!battery_info.batteries[battery].start_support)
   9708			return -ENODEV;
   9709		/* valid values are [0, 99] */
   9710		if (value > 99)
   9711			return -EINVAL;
   9712		if (value > battery_info.batteries[battery].charge_stop)
   9713			return -EINVAL;
   9714		if (tpacpi_battery_set(THRESHOLD_START, battery, value))
   9715			return -ENODEV;
   9716		battery_info.batteries[battery].charge_start = value;
   9717		return count;
   9718
   9719	case THRESHOLD_STOP:
   9720		if (!battery_info.batteries[battery].stop_support)
   9721			return -ENODEV;
   9722		/* valid values are [1, 100] */
   9723		if (value < 1 || value > 100)
   9724			return -EINVAL;
   9725		if (value < battery_info.batteries[battery].charge_start)
   9726			return -EINVAL;
   9727		battery_info.batteries[battery].charge_stop = value;
   9728		/*
   9729		 * When 100 is passed to stop, we need to flip
   9730		 * it to 0 as that the EC understands that as
   9731		 * "Default", which will charge to 100%
   9732		 */
   9733		if (value == 100)
   9734			value = 0;
   9735		if (tpacpi_battery_set(THRESHOLD_STOP, battery, value))
   9736			return -EINVAL;
   9737		return count;
   9738	default:
   9739		pr_crit("Wrong parameter: %d", what);
   9740		return -EINVAL;
   9741	}
   9742	return count;
   9743}
   9744
   9745static ssize_t tpacpi_battery_show(int what,
   9746				   struct device *dev,
   9747				   char *buf)
   9748{
   9749	struct power_supply *supply = to_power_supply(dev);
   9750	int ret, battery;
   9751	/*
   9752	 * Some systems have support for more than
   9753	 * one battery. If that is the case,
   9754	 * tpacpi_battery_probe marked that addressing
   9755	 * them individually is supported, so we;
   9756	 * based on the device struct.
   9757	 *
   9758	 * On systems that are not supported, we assume
   9759	 * the primary as most of the ACPI calls fail
   9760	 * with "Any Battery" as the parameter.
   9761	 */
   9762	if (battery_info.individual_addressing)
   9763		/* BAT_PRIMARY or BAT_SECONDARY */
   9764		battery = tpacpi_battery_get_id(supply->desc->name);
   9765	else
   9766		battery = BAT_PRIMARY;
   9767	if (tpacpi_battery_get(what, battery, &ret))
   9768		return -ENODEV;
   9769	return sprintf(buf, "%d\n", ret);
   9770}
   9771
   9772static ssize_t charge_control_start_threshold_show(struct device *device,
   9773				struct device_attribute *attr,
   9774				char *buf)
   9775{
   9776	return tpacpi_battery_show(THRESHOLD_START, device, buf);
   9777}
   9778
   9779static ssize_t charge_control_end_threshold_show(struct device *device,
   9780				struct device_attribute *attr,
   9781				char *buf)
   9782{
   9783	return tpacpi_battery_show(THRESHOLD_STOP, device, buf);
   9784}
   9785
   9786static ssize_t charge_behaviour_show(struct device *dev,
   9787				     struct device_attribute *attr,
   9788				     char *buf)
   9789{
   9790	enum power_supply_charge_behaviour active = POWER_SUPPLY_CHARGE_BEHAVIOUR_AUTO;
   9791	struct power_supply *supply = to_power_supply(dev);
   9792	unsigned int available;
   9793	int ret, battery;
   9794
   9795	battery = tpacpi_battery_get_id(supply->desc->name);
   9796	available = battery_info.batteries[battery].charge_behaviours;
   9797
   9798	if (available & BIT(POWER_SUPPLY_CHARGE_BEHAVIOUR_FORCE_DISCHARGE)) {
   9799		if (tpacpi_battery_get(FORCE_DISCHARGE, battery, &ret))
   9800			return -ENODEV;
   9801		if (ret) {
   9802			active = POWER_SUPPLY_CHARGE_BEHAVIOUR_FORCE_DISCHARGE;
   9803			goto out;
   9804		}
   9805	}
   9806
   9807	if (available & BIT(POWER_SUPPLY_CHARGE_BEHAVIOUR_INHIBIT_CHARGE)) {
   9808		if (tpacpi_battery_get(INHIBIT_CHARGE, battery, &ret))
   9809			return -ENODEV;
   9810		if (ret) {
   9811			active = POWER_SUPPLY_CHARGE_BEHAVIOUR_INHIBIT_CHARGE;
   9812			goto out;
   9813		}
   9814	}
   9815
   9816out:
   9817	return power_supply_charge_behaviour_show(dev, available, active, buf);
   9818}
   9819
   9820static ssize_t charge_control_start_threshold_store(struct device *dev,
   9821				struct device_attribute *attr,
   9822				const char *buf, size_t count)
   9823{
   9824	return tpacpi_battery_store(THRESHOLD_START, dev, buf, count);
   9825}
   9826
   9827static ssize_t charge_control_end_threshold_store(struct device *dev,
   9828				struct device_attribute *attr,
   9829				const char *buf, size_t count)
   9830{
   9831	return tpacpi_battery_store(THRESHOLD_STOP, dev, buf, count);
   9832}
   9833
   9834static ssize_t charge_behaviour_store(struct device *dev,
   9835				      struct device_attribute *attr,
   9836				      const char *buf, size_t count)
   9837{
   9838	struct power_supply *supply = to_power_supply(dev);
   9839	int selected, battery, ret = 0;
   9840	unsigned int available;
   9841
   9842	battery = tpacpi_battery_get_id(supply->desc->name);
   9843	available = battery_info.batteries[battery].charge_behaviours;
   9844	selected = power_supply_charge_behaviour_parse(available, buf);
   9845
   9846	if (selected < 0)
   9847		return selected;
   9848
   9849	switch (selected) {
   9850	case POWER_SUPPLY_CHARGE_BEHAVIOUR_AUTO:
   9851		if (available & BIT(POWER_SUPPLY_CHARGE_BEHAVIOUR_FORCE_DISCHARGE))
   9852			ret = tpacpi_battery_set_validate(FORCE_DISCHARGE, battery, 0);
   9853		if (available & BIT(POWER_SUPPLY_CHARGE_BEHAVIOUR_INHIBIT_CHARGE))
   9854			ret = min(ret, tpacpi_battery_set_validate(INHIBIT_CHARGE, battery, 0));
   9855		if (ret < 0)
   9856			return ret;
   9857		break;
   9858	case POWER_SUPPLY_CHARGE_BEHAVIOUR_FORCE_DISCHARGE:
   9859		if (available & BIT(POWER_SUPPLY_CHARGE_BEHAVIOUR_INHIBIT_CHARGE))
   9860			ret = tpacpi_battery_set_validate(INHIBIT_CHARGE, battery, 0);
   9861		ret = min(ret, tpacpi_battery_set_validate(FORCE_DISCHARGE, battery, 1));
   9862		if (ret < 0)
   9863			return ret;
   9864		break;
   9865	case POWER_SUPPLY_CHARGE_BEHAVIOUR_INHIBIT_CHARGE:
   9866		if (available & BIT(POWER_SUPPLY_CHARGE_BEHAVIOUR_FORCE_DISCHARGE))
   9867			ret = tpacpi_battery_set_validate(FORCE_DISCHARGE, battery, 0);
   9868		ret = min(ret, tpacpi_battery_set_validate(INHIBIT_CHARGE, battery, 1));
   9869		if (ret < 0)
   9870			return ret;
   9871		break;
   9872	default:
   9873		dev_err(dev, "Unexpected charge behaviour: %d\n", selected);
   9874		return -EINVAL;
   9875	}
   9876
   9877	return count;
   9878}
   9879
   9880static DEVICE_ATTR_RW(charge_control_start_threshold);
   9881static DEVICE_ATTR_RW(charge_control_end_threshold);
   9882static DEVICE_ATTR_RW(charge_behaviour);
   9883static struct device_attribute dev_attr_charge_start_threshold = __ATTR(
   9884	charge_start_threshold,
   9885	0644,
   9886	charge_control_start_threshold_show,
   9887	charge_control_start_threshold_store
   9888);
   9889static struct device_attribute dev_attr_charge_stop_threshold = __ATTR(
   9890	charge_stop_threshold,
   9891	0644,
   9892	charge_control_end_threshold_show,
   9893	charge_control_end_threshold_store
   9894);
   9895
   9896static struct attribute *tpacpi_battery_attrs[] = {
   9897	&dev_attr_charge_control_start_threshold.attr,
   9898	&dev_attr_charge_control_end_threshold.attr,
   9899	&dev_attr_charge_start_threshold.attr,
   9900	&dev_attr_charge_stop_threshold.attr,
   9901	&dev_attr_charge_behaviour.attr,
   9902	NULL,
   9903};
   9904
   9905ATTRIBUTE_GROUPS(tpacpi_battery);
   9906
   9907/* ACPI battery hooking */
   9908
   9909static int tpacpi_battery_add(struct power_supply *battery)
   9910{
   9911	int batteryid = tpacpi_battery_get_id(battery->desc->name);
   9912
   9913	if (tpacpi_battery_probe(batteryid))
   9914		return -ENODEV;
   9915	if (device_add_groups(&battery->dev, tpacpi_battery_groups))
   9916		return -ENODEV;
   9917	return 0;
   9918}
   9919
   9920static int tpacpi_battery_remove(struct power_supply *battery)
   9921{
   9922	device_remove_groups(&battery->dev, tpacpi_battery_groups);
   9923	return 0;
   9924}
   9925
   9926static struct acpi_battery_hook battery_hook = {
   9927	.add_battery = tpacpi_battery_add,
   9928	.remove_battery = tpacpi_battery_remove,
   9929	.name = "ThinkPad Battery Extension",
   9930};
   9931
   9932/* Subdriver init/exit */
   9933
   9934static const struct tpacpi_quirk battery_quirk_table[] __initconst = {
   9935	/*
   9936	 * Individual addressing is broken on models that expose the
   9937	 * primary battery as BAT1.
   9938	 */
   9939	TPACPI_Q_LNV('J', '7', true),       /* B5400 */
   9940	TPACPI_Q_LNV('J', 'I', true),       /* Thinkpad 11e */
   9941	TPACPI_Q_LNV3('R', '0', 'B', true), /* Thinkpad 11e gen 3 */
   9942	TPACPI_Q_LNV3('R', '0', 'C', true), /* Thinkpad 13 */
   9943	TPACPI_Q_LNV3('R', '0', 'J', true), /* Thinkpad 13 gen 2 */
   9944	TPACPI_Q_LNV3('R', '0', 'K', true), /* Thinkpad 11e gen 4 celeron BIOS */
   9945};
   9946
   9947static int __init tpacpi_battery_init(struct ibm_init_struct *ibm)
   9948{
   9949	memset(&battery_info, 0, sizeof(battery_info));
   9950
   9951	tp_features.battery_force_primary = tpacpi_check_quirks(
   9952					battery_quirk_table,
   9953					ARRAY_SIZE(battery_quirk_table));
   9954
   9955	battery_hook_register(&battery_hook);
   9956	return 0;
   9957}
   9958
   9959static void tpacpi_battery_exit(void)
   9960{
   9961	battery_hook_unregister(&battery_hook);
   9962}
   9963
   9964static struct ibm_struct battery_driver_data = {
   9965	.name = "battery",
   9966	.exit = tpacpi_battery_exit,
   9967};
   9968
   9969/*************************************************************************
   9970 * LCD Shadow subdriver, for the Lenovo PrivacyGuard feature
   9971 */
   9972
   9973static struct drm_privacy_screen *lcdshadow_dev;
   9974static acpi_handle lcdshadow_get_handle;
   9975static acpi_handle lcdshadow_set_handle;
   9976
   9977static int lcdshadow_set_sw_state(struct drm_privacy_screen *priv,
   9978				  enum drm_privacy_screen_status state)
   9979{
   9980	int output;
   9981
   9982	if (WARN_ON(!mutex_is_locked(&priv->lock)))
   9983		return -EIO;
   9984
   9985	if (!acpi_evalf(lcdshadow_set_handle, &output, NULL, "dd", (int)state))
   9986		return -EIO;
   9987
   9988	priv->hw_state = priv->sw_state = state;
   9989	return 0;
   9990}
   9991
   9992static void lcdshadow_get_hw_state(struct drm_privacy_screen *priv)
   9993{
   9994	int output;
   9995
   9996	if (!acpi_evalf(lcdshadow_get_handle, &output, NULL, "dd", 0))
   9997		return;
   9998
   9999	priv->hw_state = priv->sw_state = output & 0x1;
  10000}
  10001
  10002static const struct drm_privacy_screen_ops lcdshadow_ops = {
  10003	.set_sw_state = lcdshadow_set_sw_state,
  10004	.get_hw_state = lcdshadow_get_hw_state,
  10005};
  10006
  10007static int tpacpi_lcdshadow_init(struct ibm_init_struct *iibm)
  10008{
  10009	acpi_status status1, status2;
  10010	int output;
  10011
  10012	status1 = acpi_get_handle(hkey_handle, "GSSS", &lcdshadow_get_handle);
  10013	status2 = acpi_get_handle(hkey_handle, "SSSS", &lcdshadow_set_handle);
  10014	if (ACPI_FAILURE(status1) || ACPI_FAILURE(status2))
  10015		return 0;
  10016
  10017	if (!acpi_evalf(lcdshadow_get_handle, &output, NULL, "dd", 0))
  10018		return -EIO;
  10019
  10020	if (!(output & 0x10000))
  10021		return 0;
  10022
  10023	lcdshadow_dev = drm_privacy_screen_register(&tpacpi_pdev->dev,
  10024						    &lcdshadow_ops, NULL);
  10025	if (IS_ERR(lcdshadow_dev))
  10026		return PTR_ERR(lcdshadow_dev);
  10027
  10028	return 0;
  10029}
  10030
  10031static void lcdshadow_exit(void)
  10032{
  10033	drm_privacy_screen_unregister(lcdshadow_dev);
  10034}
  10035
  10036static void lcdshadow_resume(void)
  10037{
  10038	if (!lcdshadow_dev)
  10039		return;
  10040
  10041	mutex_lock(&lcdshadow_dev->lock);
  10042	lcdshadow_set_sw_state(lcdshadow_dev, lcdshadow_dev->sw_state);
  10043	mutex_unlock(&lcdshadow_dev->lock);
  10044}
  10045
  10046static int lcdshadow_read(struct seq_file *m)
  10047{
  10048	if (!lcdshadow_dev) {
  10049		seq_puts(m, "status:\t\tnot supported\n");
  10050	} else {
  10051		seq_printf(m, "status:\t\t%d\n", lcdshadow_dev->hw_state);
  10052		seq_puts(m, "commands:\t0, 1\n");
  10053	}
  10054
  10055	return 0;
  10056}
  10057
  10058static int lcdshadow_write(char *buf)
  10059{
  10060	char *cmd;
  10061	int res, state = -EINVAL;
  10062
  10063	if (!lcdshadow_dev)
  10064		return -ENODEV;
  10065
  10066	while ((cmd = strsep(&buf, ","))) {
  10067		res = kstrtoint(cmd, 10, &state);
  10068		if (res < 0)
  10069			return res;
  10070	}
  10071
  10072	if (state >= 2 || state < 0)
  10073		return -EINVAL;
  10074
  10075	mutex_lock(&lcdshadow_dev->lock);
  10076	res = lcdshadow_set_sw_state(lcdshadow_dev, state);
  10077	mutex_unlock(&lcdshadow_dev->lock);
  10078
  10079	drm_privacy_screen_call_notifier_chain(lcdshadow_dev);
  10080
  10081	return res;
  10082}
  10083
  10084static struct ibm_struct lcdshadow_driver_data = {
  10085	.name = "lcdshadow",
  10086	.exit = lcdshadow_exit,
  10087	.resume = lcdshadow_resume,
  10088	.read = lcdshadow_read,
  10089	.write = lcdshadow_write,
  10090};
  10091
  10092/*************************************************************************
  10093 * Thinkpad sensor interfaces
  10094 */
  10095
  10096#define DYTC_CMD_QUERY        0 /* To get DYTC status - enable/revision */
  10097#define DYTC_QUERY_ENABLE_BIT 8  /* Bit        8 - 0 = disabled, 1 = enabled */
  10098#define DYTC_QUERY_SUBREV_BIT 16 /* Bits 16 - 27 - sub revision */
  10099#define DYTC_QUERY_REV_BIT    28 /* Bits 28 - 31 - revision */
  10100
  10101#define DYTC_CMD_GET          2 /* To get current IC function and mode */
  10102#define DYTC_GET_LAPMODE_BIT 17 /* Set when in lapmode */
  10103
  10104#define PALMSENSOR_PRESENT_BIT 0 /* Determine if psensor present */
  10105#define PALMSENSOR_ON_BIT      1 /* psensor status */
  10106
  10107static bool has_palmsensor;
  10108static bool has_lapsensor;
  10109static bool palm_state;
  10110static bool lap_state;
  10111static int dytc_version;
  10112
  10113static int dytc_command(int command, int *output)
  10114{
  10115	acpi_handle dytc_handle;
  10116
  10117	if (ACPI_FAILURE(acpi_get_handle(hkey_handle, "DYTC", &dytc_handle))) {
  10118		/* Platform doesn't support DYTC */
  10119		return -ENODEV;
  10120	}
  10121	if (!acpi_evalf(dytc_handle, output, NULL, "dd", command))
  10122		return -EIO;
  10123	return 0;
  10124}
  10125
  10126static int lapsensor_get(bool *present, bool *state)
  10127{
  10128	int output, err;
  10129
  10130	*present = false;
  10131	err = dytc_command(DYTC_CMD_GET, &output);
  10132	if (err)
  10133		return err;
  10134
  10135	*present = true; /*If we get his far, we have lapmode support*/
  10136	*state = output & BIT(DYTC_GET_LAPMODE_BIT) ? true : false;
  10137	return 0;
  10138}
  10139
  10140static int palmsensor_get(bool *present, bool *state)
  10141{
  10142	acpi_handle psensor_handle;
  10143	int output;
  10144
  10145	*present = false;
  10146	if (ACPI_FAILURE(acpi_get_handle(hkey_handle, "GPSS", &psensor_handle)))
  10147		return -ENODEV;
  10148	if (!acpi_evalf(psensor_handle, &output, NULL, "d"))
  10149		return -EIO;
  10150
  10151	*present = output & BIT(PALMSENSOR_PRESENT_BIT) ? true : false;
  10152	*state = output & BIT(PALMSENSOR_ON_BIT) ? true : false;
  10153	return 0;
  10154}
  10155
  10156static void lapsensor_refresh(void)
  10157{
  10158	bool state;
  10159	int err;
  10160
  10161	if (has_lapsensor) {
  10162		err = lapsensor_get(&has_lapsensor, &state);
  10163		if (err)
  10164			return;
  10165		if (lap_state != state) {
  10166			lap_state = state;
  10167			sysfs_notify(&tpacpi_pdev->dev.kobj, NULL, "dytc_lapmode");
  10168		}
  10169	}
  10170}
  10171
  10172static void palmsensor_refresh(void)
  10173{
  10174	bool state;
  10175	int err;
  10176
  10177	if (has_palmsensor) {
  10178		err = palmsensor_get(&has_palmsensor, &state);
  10179		if (err)
  10180			return;
  10181		if (palm_state != state) {
  10182			palm_state = state;
  10183			sysfs_notify(&tpacpi_pdev->dev.kobj, NULL, "palmsensor");
  10184		}
  10185	}
  10186}
  10187
  10188static ssize_t dytc_lapmode_show(struct device *dev,
  10189					struct device_attribute *attr,
  10190					char *buf)
  10191{
  10192	if (has_lapsensor)
  10193		return sysfs_emit(buf, "%d\n", lap_state);
  10194	return sysfs_emit(buf, "\n");
  10195}
  10196static DEVICE_ATTR_RO(dytc_lapmode);
  10197
  10198static ssize_t palmsensor_show(struct device *dev,
  10199					struct device_attribute *attr,
  10200					char *buf)
  10201{
  10202	if (has_palmsensor)
  10203		return sysfs_emit(buf, "%d\n", palm_state);
  10204	return sysfs_emit(buf, "\n");
  10205}
  10206static DEVICE_ATTR_RO(palmsensor);
  10207
  10208static struct attribute *proxsensor_attributes[] = {
  10209	&dev_attr_dytc_lapmode.attr,
  10210	&dev_attr_palmsensor.attr,
  10211	NULL
  10212};
  10213
  10214static umode_t proxsensor_attr_is_visible(struct kobject *kobj,
  10215					  struct attribute *attr, int n)
  10216{
  10217	if (attr == &dev_attr_dytc_lapmode.attr) {
  10218		/*
  10219		 * Platforms before DYTC version 5 claim to have a lap sensor,
  10220		 * but it doesn't work, so we ignore them.
  10221		 */
  10222		if (!has_lapsensor || dytc_version < 5)
  10223			return 0;
  10224	} else if (attr == &dev_attr_palmsensor.attr) {
  10225		if (!has_palmsensor)
  10226			return 0;
  10227	}
  10228
  10229	return attr->mode;
  10230}
  10231
  10232static const struct attribute_group proxsensor_attr_group = {
  10233	.is_visible = proxsensor_attr_is_visible,
  10234	.attrs = proxsensor_attributes,
  10235};
  10236
  10237static int tpacpi_proxsensor_init(struct ibm_init_struct *iibm)
  10238{
  10239	int palm_err, lap_err;
  10240
  10241	palm_err = palmsensor_get(&has_palmsensor, &palm_state);
  10242	lap_err = lapsensor_get(&has_lapsensor, &lap_state);
  10243	/* If support isn't available for both devices return -ENODEV */
  10244	if ((palm_err == -ENODEV) && (lap_err == -ENODEV))
  10245		return -ENODEV;
  10246	/* Otherwise, if there was an error return it */
  10247	if (palm_err && (palm_err != -ENODEV))
  10248		return palm_err;
  10249	if (lap_err && (lap_err != -ENODEV))
  10250		return lap_err;
  10251
  10252	return 0;
  10253}
  10254
  10255static struct ibm_struct proxsensor_driver_data = {
  10256	.name = "proximity-sensor",
  10257};
  10258
  10259/*************************************************************************
  10260 * DYTC Platform Profile interface
  10261 */
  10262
  10263#define DYTC_CMD_SET          1 /* To enable/disable IC function mode */
  10264#define DYTC_CMD_MMC_GET      8 /* To get current MMC function and mode */
  10265#define DYTC_CMD_RESET    0x1ff /* To reset back to default */
  10266
  10267#define DYTC_CMD_FUNC_CAP     3 /* To get DYTC capabilities */
  10268#define DYTC_FC_MMC           27 /* MMC Mode supported */
  10269#define DYTC_FC_PSC           29 /* PSC Mode supported */
  10270
  10271#define DYTC_GET_FUNCTION_BIT 8  /* Bits  8-11 - function setting */
  10272#define DYTC_GET_MODE_BIT     12 /* Bits 12-15 - mode setting */
  10273
  10274#define DYTC_SET_FUNCTION_BIT 12 /* Bits 12-15 - function setting */
  10275#define DYTC_SET_MODE_BIT     16 /* Bits 16-19 - mode setting */
  10276#define DYTC_SET_VALID_BIT    20 /* Bit     20 - 1 = on, 0 = off */
  10277
  10278#define DYTC_FUNCTION_STD     0  /* Function = 0, standard mode */
  10279#define DYTC_FUNCTION_CQL     1  /* Function = 1, lap mode */
  10280#define DYTC_FUNCTION_MMC     11 /* Function = 11, MMC mode */
  10281#define DYTC_FUNCTION_PSC     13 /* Function = 13, PSC mode */
  10282
  10283#define DYTC_MODE_MMC_PERFORM  2  /* High power mode aka performance */
  10284#define DYTC_MODE_MMC_LOWPOWER 3  /* Low power mode */
  10285#define DYTC_MODE_MMC_BALANCE  0xF  /* Default mode aka balanced */
  10286#define DYTC_MODE_MMC_DEFAULT  0  /* Default mode from MMC_GET, aka balanced */
  10287
  10288#define DYTC_MODE_PSC_LOWPOWER 3  /* Low power mode */
  10289#define DYTC_MODE_PSC_BALANCE  5  /* Default mode aka balanced */
  10290#define DYTC_MODE_PSC_PERFORM  7  /* High power mode aka performance */
  10291
  10292#define DYTC_ERR_MASK       0xF  /* Bits 0-3 in cmd result are the error result */
  10293#define DYTC_ERR_SUCCESS      1  /* CMD completed successful */
  10294
  10295#define DYTC_SET_COMMAND(function, mode, on) \
  10296	(DYTC_CMD_SET | (function) << DYTC_SET_FUNCTION_BIT | \
  10297	 (mode) << DYTC_SET_MODE_BIT | \
  10298	 (on) << DYTC_SET_VALID_BIT)
  10299
  10300#define DYTC_DISABLE_CQL DYTC_SET_COMMAND(DYTC_FUNCTION_CQL, DYTC_MODE_MMC_BALANCE, 0)
  10301#define DYTC_ENABLE_CQL DYTC_SET_COMMAND(DYTC_FUNCTION_CQL, DYTC_MODE_MMC_BALANCE, 1)
  10302
  10303static enum platform_profile_option dytc_current_profile;
  10304static atomic_t dytc_ignore_event = ATOMIC_INIT(0);
  10305static DEFINE_MUTEX(dytc_mutex);
  10306static int dytc_capabilities;
  10307static bool dytc_mmc_get_available;
  10308
  10309static int convert_dytc_to_profile(int dytcmode, enum platform_profile_option *profile)
  10310{
  10311	if (dytc_capabilities & BIT(DYTC_FC_MMC)) {
  10312		switch (dytcmode) {
  10313		case DYTC_MODE_MMC_LOWPOWER:
  10314			*profile = PLATFORM_PROFILE_LOW_POWER;
  10315			break;
  10316		case DYTC_MODE_MMC_DEFAULT:
  10317		case DYTC_MODE_MMC_BALANCE:
  10318			*profile =  PLATFORM_PROFILE_BALANCED;
  10319			break;
  10320		case DYTC_MODE_MMC_PERFORM:
  10321			*profile =  PLATFORM_PROFILE_PERFORMANCE;
  10322			break;
  10323		default: /* Unknown mode */
  10324			return -EINVAL;
  10325		}
  10326		return 0;
  10327	}
  10328	if (dytc_capabilities & BIT(DYTC_FC_PSC)) {
  10329		switch (dytcmode) {
  10330		case DYTC_MODE_PSC_LOWPOWER:
  10331			*profile = PLATFORM_PROFILE_LOW_POWER;
  10332			break;
  10333		case DYTC_MODE_PSC_BALANCE:
  10334			*profile =  PLATFORM_PROFILE_BALANCED;
  10335			break;
  10336		case DYTC_MODE_PSC_PERFORM:
  10337			*profile =  PLATFORM_PROFILE_PERFORMANCE;
  10338			break;
  10339		default: /* Unknown mode */
  10340			return -EINVAL;
  10341		}
  10342	}
  10343	return 0;
  10344}
  10345
  10346static int convert_profile_to_dytc(enum platform_profile_option profile, int *perfmode)
  10347{
  10348	switch (profile) {
  10349	case PLATFORM_PROFILE_LOW_POWER:
  10350		if (dytc_capabilities & BIT(DYTC_FC_MMC))
  10351			*perfmode = DYTC_MODE_MMC_LOWPOWER;
  10352		else if (dytc_capabilities & BIT(DYTC_FC_PSC))
  10353			*perfmode = DYTC_MODE_PSC_LOWPOWER;
  10354		break;
  10355	case PLATFORM_PROFILE_BALANCED:
  10356		if (dytc_capabilities & BIT(DYTC_FC_MMC))
  10357			*perfmode = DYTC_MODE_MMC_BALANCE;
  10358		else if (dytc_capabilities & BIT(DYTC_FC_PSC))
  10359			*perfmode = DYTC_MODE_PSC_BALANCE;
  10360		break;
  10361	case PLATFORM_PROFILE_PERFORMANCE:
  10362		if (dytc_capabilities & BIT(DYTC_FC_MMC))
  10363			*perfmode = DYTC_MODE_MMC_PERFORM;
  10364		else if (dytc_capabilities & BIT(DYTC_FC_PSC))
  10365			*perfmode = DYTC_MODE_PSC_PERFORM;
  10366		break;
  10367	default: /* Unknown profile */
  10368		return -EOPNOTSUPP;
  10369	}
  10370	return 0;
  10371}
  10372
  10373/*
  10374 * dytc_profile_get: Function to register with platform_profile
  10375 * handler. Returns current platform profile.
  10376 */
  10377static int dytc_profile_get(struct platform_profile_handler *pprof,
  10378			    enum platform_profile_option *profile)
  10379{
  10380	*profile = dytc_current_profile;
  10381	return 0;
  10382}
  10383
  10384/*
  10385 * Helper function - check if we are in CQL mode and if we are
  10386 *  -  disable CQL,
  10387 *  - run the command
  10388 *  - enable CQL
  10389 *  If not in CQL mode, just run the command
  10390 */
  10391static int dytc_cql_command(int command, int *output)
  10392{
  10393	int err, cmd_err, dummy;
  10394	int cur_funcmode;
  10395
  10396	/* Determine if we are in CQL mode. This alters the commands we do */
  10397	err = dytc_command(DYTC_CMD_GET, output);
  10398	if (err)
  10399		return err;
  10400
  10401	cur_funcmode = (*output >> DYTC_GET_FUNCTION_BIT) & 0xF;
  10402	/* Check if we're OK to return immediately */
  10403	if ((command == DYTC_CMD_GET) && (cur_funcmode != DYTC_FUNCTION_CQL))
  10404		return 0;
  10405
  10406	if (cur_funcmode == DYTC_FUNCTION_CQL) {
  10407		atomic_inc(&dytc_ignore_event);
  10408		err = dytc_command(DYTC_DISABLE_CQL, &dummy);
  10409		if (err)
  10410			return err;
  10411	}
  10412
  10413	cmd_err = dytc_command(command,	output);
  10414	/* Check return condition after we've restored CQL state */
  10415
  10416	if (cur_funcmode == DYTC_FUNCTION_CQL) {
  10417		err = dytc_command(DYTC_ENABLE_CQL, &dummy);
  10418		if (err)
  10419			return err;
  10420	}
  10421	return cmd_err;
  10422}
  10423
  10424/*
  10425 * dytc_profile_set: Function to register with platform_profile
  10426 * handler. Sets current platform profile.
  10427 */
  10428static int dytc_profile_set(struct platform_profile_handler *pprof,
  10429			    enum platform_profile_option profile)
  10430{
  10431	int perfmode;
  10432	int output;
  10433	int err;
  10434
  10435	err = mutex_lock_interruptible(&dytc_mutex);
  10436	if (err)
  10437		return err;
  10438
  10439	err = convert_profile_to_dytc(profile, &perfmode);
  10440	if (err)
  10441		goto unlock;
  10442
  10443	if (dytc_capabilities & BIT(DYTC_FC_MMC)) {
  10444		if (profile == PLATFORM_PROFILE_BALANCED) {
  10445			/*
  10446			 * To get back to balanced mode we need to issue a reset command.
  10447			 * Note we still need to disable CQL mode before hand and re-enable
  10448			 * it afterwards, otherwise dytc_lapmode gets reset to 0 and stays
  10449			 * stuck at 0 for aprox. 30 minutes.
  10450			 */
  10451			err = dytc_cql_command(DYTC_CMD_RESET, &output);
  10452			if (err)
  10453				goto unlock;
  10454		} else {
  10455			/* Determine if we are in CQL mode. This alters the commands we do */
  10456			err = dytc_cql_command(DYTC_SET_COMMAND(DYTC_FUNCTION_MMC, perfmode, 1),
  10457						&output);
  10458			if (err)
  10459				goto unlock;
  10460		}
  10461	}
  10462	if (dytc_capabilities & BIT(DYTC_FC_PSC)) {
  10463		err = dytc_command(DYTC_SET_COMMAND(DYTC_FUNCTION_PSC, perfmode, 1), &output);
  10464		if (err)
  10465			goto unlock;
  10466	}
  10467	/* Success - update current profile */
  10468	dytc_current_profile = profile;
  10469unlock:
  10470	mutex_unlock(&dytc_mutex);
  10471	return err;
  10472}
  10473
  10474static void dytc_profile_refresh(void)
  10475{
  10476	enum platform_profile_option profile;
  10477	int output, err = 0;
  10478	int perfmode;
  10479
  10480	mutex_lock(&dytc_mutex);
  10481	if (dytc_capabilities & BIT(DYTC_FC_MMC)) {
  10482		if (dytc_mmc_get_available)
  10483			err = dytc_command(DYTC_CMD_MMC_GET, &output);
  10484		else
  10485			err = dytc_cql_command(DYTC_CMD_GET, &output);
  10486	} else if (dytc_capabilities & BIT(DYTC_FC_PSC))
  10487		err = dytc_command(DYTC_CMD_GET, &output);
  10488
  10489	mutex_unlock(&dytc_mutex);
  10490	if (err)
  10491		return;
  10492
  10493	perfmode = (output >> DYTC_GET_MODE_BIT) & 0xF;
  10494	convert_dytc_to_profile(perfmode, &profile);
  10495	if (profile != dytc_current_profile) {
  10496		dytc_current_profile = profile;
  10497		platform_profile_notify();
  10498	}
  10499}
  10500
  10501static struct platform_profile_handler dytc_profile = {
  10502	.profile_get = dytc_profile_get,
  10503	.profile_set = dytc_profile_set,
  10504};
  10505
  10506static int tpacpi_dytc_profile_init(struct ibm_init_struct *iibm)
  10507{
  10508	int err, output;
  10509
  10510	/* Setup supported modes */
  10511	set_bit(PLATFORM_PROFILE_LOW_POWER, dytc_profile.choices);
  10512	set_bit(PLATFORM_PROFILE_BALANCED, dytc_profile.choices);
  10513	set_bit(PLATFORM_PROFILE_PERFORMANCE, dytc_profile.choices);
  10514
  10515	err = dytc_command(DYTC_CMD_QUERY, &output);
  10516	if (err)
  10517		return err;
  10518
  10519	if (output & BIT(DYTC_QUERY_ENABLE_BIT))
  10520		dytc_version = (output >> DYTC_QUERY_REV_BIT) & 0xF;
  10521
  10522	/* Check DYTC is enabled and supports mode setting */
  10523	if (dytc_version < 5)
  10524		return -ENODEV;
  10525
  10526	/* Check what capabilities are supported */
  10527	err = dytc_command(DYTC_CMD_FUNC_CAP, &dytc_capabilities);
  10528	if (err)
  10529		return err;
  10530
  10531	if (dytc_capabilities & BIT(DYTC_FC_MMC)) { /* MMC MODE */
  10532		pr_debug("MMC is supported\n");
  10533		/*
  10534		 * Check if MMC_GET functionality available
  10535		 * Version > 6 and return success from MMC_GET command
  10536		 */
  10537		dytc_mmc_get_available = false;
  10538		if (dytc_version >= 6) {
  10539			err = dytc_command(DYTC_CMD_MMC_GET, &output);
  10540			if (!err && ((output & DYTC_ERR_MASK) == DYTC_ERR_SUCCESS))
  10541				dytc_mmc_get_available = true;
  10542		}
  10543	} else if (dytc_capabilities & BIT(DYTC_FC_PSC)) { /* PSC MODE */
  10544		/* Support for this only works on AMD platforms */
  10545		if (boot_cpu_data.x86_vendor != X86_VENDOR_AMD) {
  10546			dbg_printk(TPACPI_DBG_INIT, "PSC not support on Intel platforms\n");
  10547			return -ENODEV;
  10548		}
  10549		pr_debug("PSC is supported\n");
  10550	} else {
  10551		dbg_printk(TPACPI_DBG_INIT, "No DYTC support available\n");
  10552		return -ENODEV;
  10553	}
  10554
  10555	dbg_printk(TPACPI_DBG_INIT,
  10556			"DYTC version %d: thermal mode available\n", dytc_version);
  10557
  10558	/* Create platform_profile structure and register */
  10559	err = platform_profile_register(&dytc_profile);
  10560	/*
  10561	 * If for some reason platform_profiles aren't enabled
  10562	 * don't quit terminally.
  10563	 */
  10564	if (err)
  10565		return -ENODEV;
  10566
  10567	/* Ensure initial values are correct */
  10568	dytc_profile_refresh();
  10569
  10570	return 0;
  10571}
  10572
  10573static void dytc_profile_exit(void)
  10574{
  10575	platform_profile_remove();
  10576}
  10577
  10578static struct ibm_struct  dytc_profile_driver_data = {
  10579	.name = "dytc-profile",
  10580	.exit = dytc_profile_exit,
  10581};
  10582
  10583/*************************************************************************
  10584 * Keyboard language interface
  10585 */
  10586
  10587struct keyboard_lang_data {
  10588	const char *lang_str;
  10589	int lang_code;
  10590};
  10591
  10592static const struct keyboard_lang_data keyboard_lang_data[] = {
  10593	{"be", 0x080c},
  10594	{"cz", 0x0405},
  10595	{"da", 0x0406},
  10596	{"de", 0x0c07},
  10597	{"en", 0x0000},
  10598	{"es", 0x2c0a},
  10599	{"et", 0x0425},
  10600	{"fr", 0x040c},
  10601	{"fr-ch", 0x100c},
  10602	{"hu", 0x040e},
  10603	{"it", 0x0410},
  10604	{"jp", 0x0411},
  10605	{"nl", 0x0413},
  10606	{"nn", 0x0414},
  10607	{"pl", 0x0415},
  10608	{"pt", 0x0816},
  10609	{"sl", 0x041b},
  10610	{"sv", 0x081d},
  10611	{"tr", 0x041f},
  10612};
  10613
  10614static int set_keyboard_lang_command(int command)
  10615{
  10616	acpi_handle sskl_handle;
  10617	int output;
  10618
  10619	if (ACPI_FAILURE(acpi_get_handle(hkey_handle, "SSKL", &sskl_handle))) {
  10620		/* Platform doesn't support SSKL */
  10621		return -ENODEV;
  10622	}
  10623
  10624	if (!acpi_evalf(sskl_handle, &output, NULL, "dd", command))
  10625		return -EIO;
  10626
  10627	return 0;
  10628}
  10629
  10630static int get_keyboard_lang(int *output)
  10631{
  10632	acpi_handle gskl_handle;
  10633	int kbd_lang;
  10634
  10635	if (ACPI_FAILURE(acpi_get_handle(hkey_handle, "GSKL", &gskl_handle))) {
  10636		/* Platform doesn't support GSKL */
  10637		return -ENODEV;
  10638	}
  10639
  10640	if (!acpi_evalf(gskl_handle, &kbd_lang, NULL, "dd", 0x02000000))
  10641		return -EIO;
  10642
  10643	/*
  10644	 * METHOD_ERR gets returned on devices where there are no special (e.g. '=',
  10645	 * '(' and ')') keys which use layout dependent key-press emulation.
  10646	 */
  10647	if (kbd_lang & METHOD_ERR)
  10648		return -ENODEV;
  10649
  10650	*output = kbd_lang;
  10651
  10652	return 0;
  10653}
  10654
  10655/* sysfs keyboard language entry */
  10656static ssize_t keyboard_lang_show(struct device *dev,
  10657				struct device_attribute *attr,
  10658				char *buf)
  10659{
  10660	int output, err, i, len = 0;
  10661
  10662	err = get_keyboard_lang(&output);
  10663	if (err)
  10664		return err;
  10665
  10666	for (i = 0; i < ARRAY_SIZE(keyboard_lang_data); i++) {
  10667		if (i)
  10668			len += sysfs_emit_at(buf, len, "%s", " ");
  10669
  10670		if (output == keyboard_lang_data[i].lang_code) {
  10671			len += sysfs_emit_at(buf, len, "[%s]", keyboard_lang_data[i].lang_str);
  10672		} else {
  10673			len += sysfs_emit_at(buf, len, "%s", keyboard_lang_data[i].lang_str);
  10674		}
  10675	}
  10676	len += sysfs_emit_at(buf, len, "\n");
  10677
  10678	return len;
  10679}
  10680
  10681static ssize_t keyboard_lang_store(struct device *dev,
  10682				struct device_attribute *attr,
  10683				const char *buf, size_t count)
  10684{
  10685	int err, i;
  10686	bool lang_found = false;
  10687	int lang_code = 0;
  10688
  10689	for (i = 0; i < ARRAY_SIZE(keyboard_lang_data); i++) {
  10690		if (sysfs_streq(buf, keyboard_lang_data[i].lang_str)) {
  10691			lang_code = keyboard_lang_data[i].lang_code;
  10692			lang_found = true;
  10693			break;
  10694		}
  10695	}
  10696
  10697	if (lang_found) {
  10698		lang_code = lang_code | 1 << 24;
  10699
  10700		/* Set language code */
  10701		err = set_keyboard_lang_command(lang_code);
  10702		if (err)
  10703			return err;
  10704	} else {
  10705		dev_err(&tpacpi_pdev->dev, "Unknown Keyboard language. Ignoring\n");
  10706		return -EINVAL;
  10707	}
  10708
  10709	tpacpi_disclose_usertask(attr->attr.name,
  10710			"keyboard language is set to  %s\n", buf);
  10711
  10712	sysfs_notify(&tpacpi_pdev->dev.kobj, NULL, "keyboard_lang");
  10713
  10714	return count;
  10715}
  10716static DEVICE_ATTR_RW(keyboard_lang);
  10717
  10718static struct attribute *kbdlang_attributes[] = {
  10719	&dev_attr_keyboard_lang.attr,
  10720	NULL
  10721};
  10722
  10723static umode_t kbdlang_attr_is_visible(struct kobject *kobj,
  10724				       struct attribute *attr, int n)
  10725{
  10726	return tp_features.kbd_lang ? attr->mode : 0;
  10727}
  10728
  10729static const struct attribute_group kbdlang_attr_group = {
  10730	.is_visible = kbdlang_attr_is_visible,
  10731	.attrs = kbdlang_attributes,
  10732};
  10733
  10734static int tpacpi_kbdlang_init(struct ibm_init_struct *iibm)
  10735{
  10736	int err, output;
  10737
  10738	err = get_keyboard_lang(&output);
  10739	tp_features.kbd_lang = !err;
  10740	return err;
  10741}
  10742
  10743static struct ibm_struct kbdlang_driver_data = {
  10744	.name = "kbdlang",
  10745};
  10746
  10747/*************************************************************************
  10748 * DPRC(Dynamic Power Reduction Control) subdriver, for the Lenovo WWAN
  10749 * and WLAN feature.
  10750 */
  10751#define DPRC_GET_WWAN_ANTENNA_TYPE      0x40000
  10752#define DPRC_WWAN_ANTENNA_TYPE_A_BIT    BIT(4)
  10753#define DPRC_WWAN_ANTENNA_TYPE_B_BIT    BIT(8)
  10754static bool has_antennatype;
  10755static int wwan_antennatype;
  10756
  10757static int dprc_command(int command, int *output)
  10758{
  10759	acpi_handle dprc_handle;
  10760
  10761	if (ACPI_FAILURE(acpi_get_handle(hkey_handle, "DPRC", &dprc_handle))) {
  10762		/* Platform doesn't support DPRC */
  10763		return -ENODEV;
  10764	}
  10765
  10766	if (!acpi_evalf(dprc_handle, output, NULL, "dd", command))
  10767		return -EIO;
  10768
  10769	/*
  10770	 * METHOD_ERR gets returned on devices where few commands are not supported
  10771	 * for example command to get WWAN Antenna type command is not supported on
  10772	 * some devices.
  10773	 */
  10774	if (*output & METHOD_ERR)
  10775		return -ENODEV;
  10776
  10777	return 0;
  10778}
  10779
  10780static int get_wwan_antenna(int *wwan_antennatype)
  10781{
  10782	int output, err;
  10783
  10784	/* Get current Antenna type */
  10785	err = dprc_command(DPRC_GET_WWAN_ANTENNA_TYPE, &output);
  10786	if (err)
  10787		return err;
  10788
  10789	if (output & DPRC_WWAN_ANTENNA_TYPE_A_BIT)
  10790		*wwan_antennatype = 1;
  10791	else if (output & DPRC_WWAN_ANTENNA_TYPE_B_BIT)
  10792		*wwan_antennatype = 2;
  10793	else
  10794		return -ENODEV;
  10795
  10796	return 0;
  10797}
  10798
  10799/* sysfs wwan antenna type entry */
  10800static ssize_t wwan_antenna_type_show(struct device *dev,
  10801					struct device_attribute *attr,
  10802					char *buf)
  10803{
  10804	switch (wwan_antennatype) {
  10805	case 1:
  10806		return sysfs_emit(buf, "type a\n");
  10807	case 2:
  10808		return sysfs_emit(buf, "type b\n");
  10809	default:
  10810		return -ENODATA;
  10811	}
  10812}
  10813static DEVICE_ATTR_RO(wwan_antenna_type);
  10814
  10815static struct attribute *dprc_attributes[] = {
  10816	&dev_attr_wwan_antenna_type.attr,
  10817	NULL
  10818};
  10819
  10820static umode_t dprc_attr_is_visible(struct kobject *kobj,
  10821				    struct attribute *attr, int n)
  10822{
  10823	return has_antennatype ? attr->mode : 0;
  10824}
  10825
  10826static const struct attribute_group dprc_attr_group = {
  10827	.is_visible = dprc_attr_is_visible,
  10828	.attrs = dprc_attributes,
  10829};
  10830
  10831static int tpacpi_dprc_init(struct ibm_init_struct *iibm)
  10832{
  10833	int err;
  10834
  10835	err = get_wwan_antenna(&wwan_antennatype);
  10836	if (err)
  10837		return err;
  10838
  10839	has_antennatype = true;
  10840	return 0;
  10841}
  10842
  10843static struct ibm_struct dprc_driver_data = {
  10844	.name = "dprc",
  10845};
  10846
  10847/* --------------------------------------------------------------------- */
  10848
  10849static struct attribute *tpacpi_driver_attributes[] = {
  10850	&driver_attr_debug_level.attr,
  10851	&driver_attr_version.attr,
  10852	&driver_attr_interface_version.attr,
  10853#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
  10854	&driver_attr_wlsw_emulstate.attr,
  10855	&driver_attr_bluetooth_emulstate.attr,
  10856	&driver_attr_wwan_emulstate.attr,
  10857	&driver_attr_uwb_emulstate.attr,
  10858#endif
  10859	NULL
  10860};
  10861
  10862#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
  10863static umode_t tpacpi_attr_is_visible(struct kobject *kobj,
  10864				      struct attribute *attr, int n)
  10865{
  10866	if (attr == &driver_attr_wlsw_emulstate.attr) {
  10867		if (!dbg_wlswemul)
  10868			return 0;
  10869	} else if (attr == &driver_attr_bluetooth_emulstate.attr) {
  10870		if (!dbg_bluetoothemul)
  10871			return 0;
  10872	} else if (attr == &driver_attr_wwan_emulstate.attr) {
  10873		if (!dbg_wwanemul)
  10874			return 0;
  10875	} else if (attr == &driver_attr_uwb_emulstate.attr) {
  10876		if (!dbg_uwbemul)
  10877			return 0;
  10878	}
  10879
  10880	return attr->mode;
  10881}
  10882#endif
  10883
  10884static const struct attribute_group tpacpi_driver_attr_group = {
  10885#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
  10886	.is_visible = tpacpi_attr_is_visible,
  10887#endif
  10888	.attrs = tpacpi_driver_attributes,
  10889};
  10890
  10891static const struct attribute_group *tpacpi_driver_groups[] = {
  10892	&tpacpi_driver_attr_group,
  10893	NULL,
  10894};
  10895
  10896static const struct attribute_group *tpacpi_groups[] = {
  10897	&adaptive_kbd_attr_group,
  10898	&hotkey_attr_group,
  10899	&bluetooth_attr_group,
  10900	&wan_attr_group,
  10901	&cmos_attr_group,
  10902	&proxsensor_attr_group,
  10903	&kbdlang_attr_group,
  10904	&dprc_attr_group,
  10905	NULL,
  10906};
  10907
  10908static const struct attribute_group *tpacpi_hwmon_groups[] = {
  10909	&thermal_attr_group,
  10910	&temp_label_attr_group,
  10911	&fan_attr_group,
  10912	NULL,
  10913};
  10914
  10915static const struct attribute_group *tpacpi_hwmon_driver_groups[] = {
  10916	&fan_driver_attr_group,
  10917	NULL,
  10918};
  10919
  10920/****************************************************************************
  10921 ****************************************************************************
  10922 *
  10923 * Platform drivers
  10924 *
  10925 ****************************************************************************
  10926 ****************************************************************************/
  10927
  10928static struct platform_driver tpacpi_pdriver = {
  10929	.driver = {
  10930		.name = TPACPI_DRVR_NAME,
  10931		.pm = &tpacpi_pm,
  10932		.groups = tpacpi_driver_groups,
  10933		.dev_groups = tpacpi_groups,
  10934	},
  10935	.shutdown = tpacpi_shutdown_handler,
  10936};
  10937
  10938static struct platform_driver tpacpi_hwmon_pdriver = {
  10939	.driver = {
  10940		.name = TPACPI_HWMON_DRVR_NAME,
  10941		.groups = tpacpi_hwmon_driver_groups,
  10942	},
  10943};
  10944
  10945/****************************************************************************
  10946 ****************************************************************************
  10947 *
  10948 * Infrastructure
  10949 *
  10950 ****************************************************************************
  10951 ****************************************************************************/
  10952
  10953/*
  10954 * HKEY event callout for other subdrivers go here
  10955 * (yes, it is ugly, but it is quick, safe, and gets the job done
  10956 */
  10957static void tpacpi_driver_event(const unsigned int hkey_event)
  10958{
  10959	if (ibm_backlight_device) {
  10960		switch (hkey_event) {
  10961		case TP_HKEY_EV_BRGHT_UP:
  10962		case TP_HKEY_EV_BRGHT_DOWN:
  10963			tpacpi_brightness_notify_change();
  10964		}
  10965	}
  10966	if (alsa_card) {
  10967		switch (hkey_event) {
  10968		case TP_HKEY_EV_VOL_UP:
  10969		case TP_HKEY_EV_VOL_DOWN:
  10970		case TP_HKEY_EV_VOL_MUTE:
  10971			volume_alsa_notify_change();
  10972		}
  10973	}
  10974	if (tp_features.kbdlight && hkey_event == TP_HKEY_EV_KBD_LIGHT) {
  10975		enum led_brightness brightness;
  10976
  10977		mutex_lock(&kbdlight_mutex);
  10978
  10979		/*
  10980		 * Check the brightness actually changed, setting the brightness
  10981		 * through kbdlight_set_level() also triggers this event.
  10982		 */
  10983		brightness = kbdlight_sysfs_get(NULL);
  10984		if (kbdlight_brightness != brightness) {
  10985			kbdlight_brightness = brightness;
  10986			led_classdev_notify_brightness_hw_changed(
  10987				&tpacpi_led_kbdlight.led_classdev, brightness);
  10988		}
  10989
  10990		mutex_unlock(&kbdlight_mutex);
  10991	}
  10992
  10993	if (hkey_event == TP_HKEY_EV_THM_CSM_COMPLETED) {
  10994		lapsensor_refresh();
  10995		/* If we are already accessing DYTC then skip dytc update */
  10996		if (!atomic_add_unless(&dytc_ignore_event, -1, 0))
  10997			dytc_profile_refresh();
  10998	}
  10999
  11000	if (lcdshadow_dev && hkey_event == TP_HKEY_EV_PRIVACYGUARD_TOGGLE) {
  11001		enum drm_privacy_screen_status old_hw_state;
  11002		bool changed;
  11003
  11004		mutex_lock(&lcdshadow_dev->lock);
  11005		old_hw_state = lcdshadow_dev->hw_state;
  11006		lcdshadow_get_hw_state(lcdshadow_dev);
  11007		changed = lcdshadow_dev->hw_state != old_hw_state;
  11008		mutex_unlock(&lcdshadow_dev->lock);
  11009
  11010		if (changed)
  11011			drm_privacy_screen_call_notifier_chain(lcdshadow_dev);
  11012	}
  11013}
  11014
  11015static void hotkey_driver_event(const unsigned int scancode)
  11016{
  11017	tpacpi_driver_event(TP_HKEY_EV_HOTKEY_BASE + scancode);
  11018}
  11019
  11020/* --------------------------------------------------------------------- */
  11021
  11022/* /proc support */
  11023static struct proc_dir_entry *proc_dir;
  11024
  11025/*
  11026 * Module and infrastructure proble, init and exit handling
  11027 */
  11028
  11029static bool force_load;
  11030
  11031#ifdef CONFIG_THINKPAD_ACPI_DEBUG
  11032static const char * __init str_supported(int is_supported)
  11033{
  11034	static char text_unsupported[] __initdata = "not supported";
  11035
  11036	return (is_supported) ? &text_unsupported[4] : &text_unsupported[0];
  11037}
  11038#endif /* CONFIG_THINKPAD_ACPI_DEBUG */
  11039
  11040static void ibm_exit(struct ibm_struct *ibm)
  11041{
  11042	dbg_printk(TPACPI_DBG_EXIT, "removing %s\n", ibm->name);
  11043
  11044	list_del_init(&ibm->all_drivers);
  11045
  11046	if (ibm->flags.acpi_notify_installed) {
  11047		dbg_printk(TPACPI_DBG_EXIT,
  11048			"%s: acpi_remove_notify_handler\n", ibm->name);
  11049		BUG_ON(!ibm->acpi);
  11050		acpi_remove_notify_handler(*ibm->acpi->handle,
  11051					   ibm->acpi->type,
  11052					   dispatch_acpi_notify);
  11053		ibm->flags.acpi_notify_installed = 0;
  11054	}
  11055
  11056	if (ibm->flags.proc_created) {
  11057		dbg_printk(TPACPI_DBG_EXIT,
  11058			"%s: remove_proc_entry\n", ibm->name);
  11059		remove_proc_entry(ibm->name, proc_dir);
  11060		ibm->flags.proc_created = 0;
  11061	}
  11062
  11063	if (ibm->flags.acpi_driver_registered) {
  11064		dbg_printk(TPACPI_DBG_EXIT,
  11065			"%s: acpi_bus_unregister_driver\n", ibm->name);
  11066		BUG_ON(!ibm->acpi);
  11067		acpi_bus_unregister_driver(ibm->acpi->driver);
  11068		kfree(ibm->acpi->driver);
  11069		ibm->acpi->driver = NULL;
  11070		ibm->flags.acpi_driver_registered = 0;
  11071	}
  11072
  11073	if (ibm->flags.init_called && ibm->exit) {
  11074		ibm->exit();
  11075		ibm->flags.init_called = 0;
  11076	}
  11077
  11078	dbg_printk(TPACPI_DBG_INIT, "finished removing %s\n", ibm->name);
  11079}
  11080
  11081static int __init ibm_init(struct ibm_init_struct *iibm)
  11082{
  11083	int ret;
  11084	struct ibm_struct *ibm = iibm->data;
  11085	struct proc_dir_entry *entry;
  11086
  11087	BUG_ON(ibm == NULL);
  11088
  11089	INIT_LIST_HEAD(&ibm->all_drivers);
  11090
  11091	if (ibm->flags.experimental && !experimental)
  11092		return 0;
  11093
  11094	dbg_printk(TPACPI_DBG_INIT,
  11095		"probing for %s\n", ibm->name);
  11096
  11097	if (iibm->init) {
  11098		ret = iibm->init(iibm);
  11099		if (ret > 0 || ret == -ENODEV)
  11100			return 0; /* subdriver functionality not available */
  11101		if (ret)
  11102			return ret;
  11103
  11104		ibm->flags.init_called = 1;
  11105	}
  11106
  11107	if (ibm->acpi) {
  11108		if (ibm->acpi->hid) {
  11109			ret = register_tpacpi_subdriver(ibm);
  11110			if (ret)
  11111				goto err_out;
  11112		}
  11113
  11114		if (ibm->acpi->notify) {
  11115			ret = setup_acpi_notify(ibm);
  11116			if (ret == -ENODEV) {
  11117				pr_notice("disabling subdriver %s\n",
  11118					  ibm->name);
  11119				ret = 0;
  11120				goto err_out;
  11121			}
  11122			if (ret < 0)
  11123				goto err_out;
  11124		}
  11125	}
  11126
  11127	dbg_printk(TPACPI_DBG_INIT,
  11128		"%s installed\n", ibm->name);
  11129
  11130	if (ibm->read) {
  11131		umode_t mode = iibm->base_procfs_mode;
  11132
  11133		if (!mode)
  11134			mode = S_IRUGO;
  11135		if (ibm->write)
  11136			mode |= S_IWUSR;
  11137		entry = proc_create_data(ibm->name, mode, proc_dir,
  11138					 &dispatch_proc_ops, ibm);
  11139		if (!entry) {
  11140			pr_err("unable to create proc entry %s\n", ibm->name);
  11141			ret = -ENODEV;
  11142			goto err_out;
  11143		}
  11144		ibm->flags.proc_created = 1;
  11145	}
  11146
  11147	list_add_tail(&ibm->all_drivers, &tpacpi_all_drivers);
  11148
  11149	return 0;
  11150
  11151err_out:
  11152	dbg_printk(TPACPI_DBG_INIT,
  11153		"%s: at error exit path with result %d\n",
  11154		ibm->name, ret);
  11155
  11156	ibm_exit(ibm);
  11157	return (ret < 0) ? ret : 0;
  11158}
  11159
  11160/* Probing */
  11161
  11162static char __init tpacpi_parse_fw_id(const char * const s,
  11163				      u32 *model, u16 *release)
  11164{
  11165	int i;
  11166
  11167	if (!s || strlen(s) < 8)
  11168		goto invalid;
  11169
  11170	for (i = 0; i < 8; i++)
  11171		if (!((s[i] >= '0' && s[i] <= '9') ||
  11172		      (s[i] >= 'A' && s[i] <= 'Z')))
  11173			goto invalid;
  11174
  11175	/*
  11176	 * Most models: xxyTkkWW (#.##c)
  11177	 * Ancient 570/600 and -SL lacks (#.##c)
  11178	 */
  11179	if (s[3] == 'T' || s[3] == 'N') {
  11180		*model = TPID(s[0], s[1]);
  11181		*release = TPVER(s[4], s[5]);
  11182		return s[2];
  11183
  11184	/* New models: xxxyTkkW (#.##c); T550 and some others */
  11185	} else if (s[4] == 'T' || s[4] == 'N') {
  11186		*model = TPID3(s[0], s[1], s[2]);
  11187		*release = TPVER(s[5], s[6]);
  11188		return s[3];
  11189	}
  11190
  11191invalid:
  11192	return '\0';
  11193}
  11194
  11195static void find_new_ec_fwstr(const struct dmi_header *dm, void *private)
  11196{
  11197	char *ec_fw_string = (char *) private;
  11198	const char *dmi_data = (const char *)dm;
  11199	/*
  11200	 * ThinkPad Embedded Controller Program Table on newer models
  11201	 *
  11202	 * Offset |  Name                | Width  | Description
  11203	 * ----------------------------------------------------
  11204	 *  0x00  | Type                 | BYTE   | 0x8C
  11205	 *  0x01  | Length               | BYTE   |
  11206	 *  0x02  | Handle               | WORD   | Varies
  11207	 *  0x04  | Signature            | BYTEx6 | ASCII for "LENOVO"
  11208	 *  0x0A  | OEM struct offset    | BYTE   | 0x0B
  11209	 *  0x0B  | OEM struct number    | BYTE   | 0x07, for this structure
  11210	 *  0x0C  | OEM struct revision  | BYTE   | 0x01, for this format
  11211	 *  0x0D  | ECP version ID       | STR ID |
  11212	 *  0x0E  | ECP release date     | STR ID |
  11213	 */
  11214
  11215	/* Return if data structure not match */
  11216	if (dm->type != 140 || dm->length < 0x0F ||
  11217	memcmp(dmi_data + 4, "LENOVO", 6) != 0 ||
  11218	dmi_data[0x0A] != 0x0B || dmi_data[0x0B] != 0x07 ||
  11219	dmi_data[0x0C] != 0x01)
  11220		return;
  11221
  11222	/* fwstr is the first 8byte string  */
  11223	strncpy(ec_fw_string, dmi_data + 0x0F, 8);
  11224}
  11225
  11226/* returns 0 - probe ok, or < 0 - probe error.
  11227 * Probe ok doesn't mean thinkpad found.
  11228 * On error, kfree() cleanup on tp->* is not performed, caller must do it */
  11229static int __must_check __init get_thinkpad_model_data(
  11230						struct thinkpad_id_data *tp)
  11231{
  11232	const struct dmi_device *dev = NULL;
  11233	char ec_fw_string[18] = {0};
  11234	char const *s;
  11235	char t;
  11236
  11237	if (!tp)
  11238		return -EINVAL;
  11239
  11240	memset(tp, 0, sizeof(*tp));
  11241
  11242	if (dmi_name_in_vendors("IBM"))
  11243		tp->vendor = PCI_VENDOR_ID_IBM;
  11244	else if (dmi_name_in_vendors("LENOVO"))
  11245		tp->vendor = PCI_VENDOR_ID_LENOVO;
  11246	else
  11247		return 0;
  11248
  11249	s = dmi_get_system_info(DMI_BIOS_VERSION);
  11250	tp->bios_version_str = kstrdup(s, GFP_KERNEL);
  11251	if (s && !tp->bios_version_str)
  11252		return -ENOMEM;
  11253
  11254	/* Really ancient ThinkPad 240X will fail this, which is fine */
  11255	t = tpacpi_parse_fw_id(tp->bios_version_str,
  11256			       &tp->bios_model, &tp->bios_release);
  11257	if (t != 'E' && t != 'C')
  11258		return 0;
  11259
  11260	/*
  11261	 * ThinkPad T23 or newer, A31 or newer, R50e or newer,
  11262	 * X32 or newer, all Z series;  Some models must have an
  11263	 * up-to-date BIOS or they will not be detected.
  11264	 *
  11265	 * See https://thinkwiki.org/wiki/List_of_DMI_IDs
  11266	 */
  11267	while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) {
  11268		if (sscanf(dev->name,
  11269			   "IBM ThinkPad Embedded Controller -[%17c",
  11270			   ec_fw_string) == 1) {
  11271			ec_fw_string[sizeof(ec_fw_string) - 1] = 0;
  11272			ec_fw_string[strcspn(ec_fw_string, " ]")] = 0;
  11273			break;
  11274		}
  11275	}
  11276
  11277	/* Newer ThinkPads have different EC program info table */
  11278	if (!ec_fw_string[0])
  11279		dmi_walk(find_new_ec_fwstr, &ec_fw_string);
  11280
  11281	if (ec_fw_string[0]) {
  11282		tp->ec_version_str = kstrdup(ec_fw_string, GFP_KERNEL);
  11283		if (!tp->ec_version_str)
  11284			return -ENOMEM;
  11285
  11286		t = tpacpi_parse_fw_id(ec_fw_string,
  11287			 &tp->ec_model, &tp->ec_release);
  11288		if (t != 'H') {
  11289			pr_notice("ThinkPad firmware release %s doesn't match the known patterns\n",
  11290				  ec_fw_string);
  11291			pr_notice("please report this to %s\n", TPACPI_MAIL);
  11292		}
  11293	}
  11294
  11295	s = dmi_get_system_info(DMI_PRODUCT_VERSION);
  11296	if (s && !(strncasecmp(s, "ThinkPad", 8) && strncasecmp(s, "Lenovo", 6))) {
  11297		tp->model_str = kstrdup(s, GFP_KERNEL);
  11298		if (!tp->model_str)
  11299			return -ENOMEM;
  11300	} else {
  11301		s = dmi_get_system_info(DMI_BIOS_VENDOR);
  11302		if (s && !(strncasecmp(s, "Lenovo", 6))) {
  11303			tp->model_str = kstrdup(s, GFP_KERNEL);
  11304			if (!tp->model_str)
  11305				return -ENOMEM;
  11306		}
  11307	}
  11308
  11309	s = dmi_get_system_info(DMI_PRODUCT_NAME);
  11310	tp->nummodel_str = kstrdup(s, GFP_KERNEL);
  11311	if (s && !tp->nummodel_str)
  11312		return -ENOMEM;
  11313
  11314	return 0;
  11315}
  11316
  11317static int __init probe_for_thinkpad(void)
  11318{
  11319	int is_thinkpad;
  11320
  11321	if (acpi_disabled)
  11322		return -ENODEV;
  11323
  11324	/* It would be dangerous to run the driver in this case */
  11325	if (!tpacpi_is_ibm() && !tpacpi_is_lenovo())
  11326		return -ENODEV;
  11327
  11328	/*
  11329	 * Non-ancient models have better DMI tagging, but very old models
  11330	 * don't.  tpacpi_is_fw_known() is a cheat to help in that case.
  11331	 */
  11332	is_thinkpad = (thinkpad_id.model_str != NULL) ||
  11333		      (thinkpad_id.ec_model != 0) ||
  11334		      tpacpi_is_fw_known();
  11335
  11336	/* The EC handler is required */
  11337	tpacpi_acpi_handle_locate("ec", TPACPI_ACPI_EC_HID, &ec_handle);
  11338	if (!ec_handle) {
  11339		if (is_thinkpad)
  11340			pr_err("Not yet supported ThinkPad detected!\n");
  11341		return -ENODEV;
  11342	}
  11343
  11344	if (!is_thinkpad && !force_load)
  11345		return -ENODEV;
  11346
  11347	return 0;
  11348}
  11349
  11350static void __init thinkpad_acpi_init_banner(void)
  11351{
  11352	pr_info("%s v%s\n", TPACPI_DESC, TPACPI_VERSION);
  11353	pr_info("%s\n", TPACPI_URL);
  11354
  11355	pr_info("ThinkPad BIOS %s, EC %s\n",
  11356		(thinkpad_id.bios_version_str) ?
  11357			thinkpad_id.bios_version_str : "unknown",
  11358		(thinkpad_id.ec_version_str) ?
  11359			thinkpad_id.ec_version_str : "unknown");
  11360
  11361	BUG_ON(!thinkpad_id.vendor);
  11362
  11363	if (thinkpad_id.model_str)
  11364		pr_info("%s %s, model %s\n",
  11365			(thinkpad_id.vendor == PCI_VENDOR_ID_IBM) ?
  11366				"IBM" : ((thinkpad_id.vendor ==
  11367						PCI_VENDOR_ID_LENOVO) ?
  11368					"Lenovo" : "Unknown vendor"),
  11369			thinkpad_id.model_str,
  11370			(thinkpad_id.nummodel_str) ?
  11371				thinkpad_id.nummodel_str : "unknown");
  11372}
  11373
  11374/* Module init, exit, parameters */
  11375
  11376static struct ibm_init_struct ibms_init[] __initdata = {
  11377	{
  11378		.data = &thinkpad_acpi_driver_data,
  11379	},
  11380	{
  11381		.init = hotkey_init,
  11382		.data = &hotkey_driver_data,
  11383	},
  11384	{
  11385		.init = bluetooth_init,
  11386		.data = &bluetooth_driver_data,
  11387	},
  11388	{
  11389		.init = wan_init,
  11390		.data = &wan_driver_data,
  11391	},
  11392	{
  11393		.init = uwb_init,
  11394		.data = &uwb_driver_data,
  11395	},
  11396#ifdef CONFIG_THINKPAD_ACPI_VIDEO
  11397	{
  11398		.init = video_init,
  11399		.base_procfs_mode = S_IRUSR,
  11400		.data = &video_driver_data,
  11401	},
  11402#endif
  11403	{
  11404		.init = kbdlight_init,
  11405		.data = &kbdlight_driver_data,
  11406	},
  11407	{
  11408		.init = light_init,
  11409		.data = &light_driver_data,
  11410	},
  11411	{
  11412		.init = cmos_init,
  11413		.data = &cmos_driver_data,
  11414	},
  11415	{
  11416		.init = led_init,
  11417		.data = &led_driver_data,
  11418	},
  11419	{
  11420		.init = beep_init,
  11421		.data = &beep_driver_data,
  11422	},
  11423	{
  11424		.init = thermal_init,
  11425		.data = &thermal_driver_data,
  11426	},
  11427	{
  11428		.init = brightness_init,
  11429		.data = &brightness_driver_data,
  11430	},
  11431	{
  11432		.init = volume_init,
  11433		.data = &volume_driver_data,
  11434	},
  11435	{
  11436		.init = fan_init,
  11437		.data = &fan_driver_data,
  11438	},
  11439	{
  11440		.init = mute_led_init,
  11441		.data = &mute_led_driver_data,
  11442	},
  11443	{
  11444		.init = tpacpi_battery_init,
  11445		.data = &battery_driver_data,
  11446	},
  11447	{
  11448		.init = tpacpi_lcdshadow_init,
  11449		.data = &lcdshadow_driver_data,
  11450	},
  11451	{
  11452		.init = tpacpi_proxsensor_init,
  11453		.data = &proxsensor_driver_data,
  11454	},
  11455	{
  11456		.init = tpacpi_dytc_profile_init,
  11457		.data = &dytc_profile_driver_data,
  11458	},
  11459	{
  11460		.init = tpacpi_kbdlang_init,
  11461		.data = &kbdlang_driver_data,
  11462	},
  11463	{
  11464		.init = tpacpi_dprc_init,
  11465		.data = &dprc_driver_data,
  11466	},
  11467};
  11468
  11469static int __init set_ibm_param(const char *val, const struct kernel_param *kp)
  11470{
  11471	unsigned int i;
  11472	struct ibm_struct *ibm;
  11473
  11474	if (!kp || !kp->name || !val)
  11475		return -EINVAL;
  11476
  11477	for (i = 0; i < ARRAY_SIZE(ibms_init); i++) {
  11478		ibm = ibms_init[i].data;
  11479		if (!ibm || !ibm->name)
  11480			continue;
  11481
  11482		if (strcmp(ibm->name, kp->name) == 0 && ibm->write) {
  11483			if (strlen(val) > sizeof(ibms_init[i].param) - 1)
  11484				return -ENOSPC;
  11485			strcpy(ibms_init[i].param, val);
  11486			return 0;
  11487		}
  11488	}
  11489
  11490	return -EINVAL;
  11491}
  11492
  11493module_param(experimental, int, 0444);
  11494MODULE_PARM_DESC(experimental,
  11495		 "Enables experimental features when non-zero");
  11496
  11497module_param_named(debug, dbg_level, uint, 0);
  11498MODULE_PARM_DESC(debug, "Sets debug level bit-mask");
  11499
  11500module_param(force_load, bool, 0444);
  11501MODULE_PARM_DESC(force_load,
  11502		 "Attempts to load the driver even on a mis-identified ThinkPad when true");
  11503
  11504module_param_named(fan_control, fan_control_allowed, bool, 0444);
  11505MODULE_PARM_DESC(fan_control,
  11506		 "Enables setting fan parameters features when true");
  11507
  11508module_param_named(brightness_mode, brightness_mode, uint, 0444);
  11509MODULE_PARM_DESC(brightness_mode,
  11510		 "Selects brightness control strategy: 0=auto, 1=EC, 2=UCMS, 3=EC+NVRAM");
  11511
  11512module_param(brightness_enable, uint, 0444);
  11513MODULE_PARM_DESC(brightness_enable,
  11514		 "Enables backlight control when 1, disables when 0");
  11515
  11516#ifdef CONFIG_THINKPAD_ACPI_ALSA_SUPPORT
  11517module_param_named(volume_mode, volume_mode, uint, 0444);
  11518MODULE_PARM_DESC(volume_mode,
  11519		 "Selects volume control strategy: 0=auto, 1=EC, 2=N/A, 3=EC+NVRAM");
  11520
  11521module_param_named(volume_capabilities, volume_capabilities, uint, 0444);
  11522MODULE_PARM_DESC(volume_capabilities,
  11523		 "Selects the mixer capabilities: 0=auto, 1=volume and mute, 2=mute only");
  11524
  11525module_param_named(volume_control, volume_control_allowed, bool, 0444);
  11526MODULE_PARM_DESC(volume_control,
  11527		 "Enables software override for the console audio control when true");
  11528
  11529module_param_named(software_mute, software_mute_requested, bool, 0444);
  11530MODULE_PARM_DESC(software_mute,
  11531		 "Request full software mute control");
  11532
  11533/* ALSA module API parameters */
  11534module_param_named(index, alsa_index, int, 0444);
  11535MODULE_PARM_DESC(index, "ALSA index for the ACPI EC Mixer");
  11536module_param_named(id, alsa_id, charp, 0444);
  11537MODULE_PARM_DESC(id, "ALSA id for the ACPI EC Mixer");
  11538module_param_named(enable, alsa_enable, bool, 0444);
  11539MODULE_PARM_DESC(enable, "Enable the ALSA interface for the ACPI EC Mixer");
  11540#endif /* CONFIG_THINKPAD_ACPI_ALSA_SUPPORT */
  11541
  11542/* The module parameter can't be read back, that's why 0 is used here */
  11543#define TPACPI_PARAM(feature) \
  11544	module_param_call(feature, set_ibm_param, NULL, NULL, 0); \
  11545	MODULE_PARM_DESC(feature, "Simulates thinkpad-acpi procfs command at module load, see documentation")
  11546
  11547TPACPI_PARAM(hotkey);
  11548TPACPI_PARAM(bluetooth);
  11549TPACPI_PARAM(video);
  11550TPACPI_PARAM(light);
  11551TPACPI_PARAM(cmos);
  11552TPACPI_PARAM(led);
  11553TPACPI_PARAM(beep);
  11554TPACPI_PARAM(brightness);
  11555TPACPI_PARAM(volume);
  11556TPACPI_PARAM(fan);
  11557
  11558#ifdef CONFIG_THINKPAD_ACPI_DEBUGFACILITIES
  11559module_param(dbg_wlswemul, uint, 0444);
  11560MODULE_PARM_DESC(dbg_wlswemul, "Enables WLSW emulation");
  11561module_param_named(wlsw_state, tpacpi_wlsw_emulstate, bool, 0);
  11562MODULE_PARM_DESC(wlsw_state,
  11563		 "Initial state of the emulated WLSW switch");
  11564
  11565module_param(dbg_bluetoothemul, uint, 0444);
  11566MODULE_PARM_DESC(dbg_bluetoothemul, "Enables bluetooth switch emulation");
  11567module_param_named(bluetooth_state, tpacpi_bluetooth_emulstate, bool, 0);
  11568MODULE_PARM_DESC(bluetooth_state,
  11569		 "Initial state of the emulated bluetooth switch");
  11570
  11571module_param(dbg_wwanemul, uint, 0444);
  11572MODULE_PARM_DESC(dbg_wwanemul, "Enables WWAN switch emulation");
  11573module_param_named(wwan_state, tpacpi_wwan_emulstate, bool, 0);
  11574MODULE_PARM_DESC(wwan_state,
  11575		 "Initial state of the emulated WWAN switch");
  11576
  11577module_param(dbg_uwbemul, uint, 0444);
  11578MODULE_PARM_DESC(dbg_uwbemul, "Enables UWB switch emulation");
  11579module_param_named(uwb_state, tpacpi_uwb_emulstate, bool, 0);
  11580MODULE_PARM_DESC(uwb_state,
  11581		 "Initial state of the emulated UWB switch");
  11582#endif
  11583
  11584static void thinkpad_acpi_module_exit(void)
  11585{
  11586	struct ibm_struct *ibm, *itmp;
  11587
  11588	tpacpi_lifecycle = TPACPI_LIFE_EXITING;
  11589
  11590#ifdef CONFIG_SUSPEND
  11591	if (tp_features.quirks && tp_features.quirks->s2idle_bug_mmio)
  11592		acpi_unregister_lps0_dev(&thinkpad_acpi_s2idle_dev_ops);
  11593#endif
  11594	if (tpacpi_hwmon)
  11595		hwmon_device_unregister(tpacpi_hwmon);
  11596	if (tp_features.sensors_pdrv_registered)
  11597		platform_driver_unregister(&tpacpi_hwmon_pdriver);
  11598	if (tp_features.platform_drv_registered)
  11599		platform_driver_unregister(&tpacpi_pdriver);
  11600
  11601	list_for_each_entry_safe_reverse(ibm, itmp,
  11602					 &tpacpi_all_drivers,
  11603					 all_drivers) {
  11604		ibm_exit(ibm);
  11605	}
  11606
  11607	dbg_printk(TPACPI_DBG_INIT, "finished subdriver exit path...\n");
  11608
  11609	if (tpacpi_inputdev) {
  11610		if (tp_features.input_device_registered)
  11611			input_unregister_device(tpacpi_inputdev);
  11612		else
  11613			input_free_device(tpacpi_inputdev);
  11614		kfree(hotkey_keycode_map);
  11615	}
  11616
  11617	if (tpacpi_sensors_pdev)
  11618		platform_device_unregister(tpacpi_sensors_pdev);
  11619	if (tpacpi_pdev)
  11620		platform_device_unregister(tpacpi_pdev);
  11621	if (proc_dir)
  11622		remove_proc_entry(TPACPI_PROC_DIR, acpi_root_dir);
  11623	if (tpacpi_wq)
  11624		destroy_workqueue(tpacpi_wq);
  11625
  11626	kfree(thinkpad_id.bios_version_str);
  11627	kfree(thinkpad_id.ec_version_str);
  11628	kfree(thinkpad_id.model_str);
  11629	kfree(thinkpad_id.nummodel_str);
  11630}
  11631
  11632
  11633static int __init thinkpad_acpi_module_init(void)
  11634{
  11635	const struct dmi_system_id *dmi_id;
  11636	int ret, i;
  11637
  11638	tpacpi_lifecycle = TPACPI_LIFE_INIT;
  11639
  11640	/* Driver-level probe */
  11641
  11642	ret = get_thinkpad_model_data(&thinkpad_id);
  11643	if (ret) {
  11644		pr_err("unable to get DMI data: %d\n", ret);
  11645		thinkpad_acpi_module_exit();
  11646		return ret;
  11647	}
  11648	ret = probe_for_thinkpad();
  11649	if (ret) {
  11650		thinkpad_acpi_module_exit();
  11651		return ret;
  11652	}
  11653
  11654	/* Driver initialization */
  11655
  11656	thinkpad_acpi_init_banner();
  11657	tpacpi_check_outdated_fw();
  11658
  11659	TPACPI_ACPIHANDLE_INIT(ecrd);
  11660	TPACPI_ACPIHANDLE_INIT(ecwr);
  11661
  11662	tpacpi_wq = create_singlethread_workqueue(TPACPI_WORKQUEUE_NAME);
  11663	if (!tpacpi_wq) {
  11664		thinkpad_acpi_module_exit();
  11665		return -ENOMEM;
  11666	}
  11667
  11668	proc_dir = proc_mkdir(TPACPI_PROC_DIR, acpi_root_dir);
  11669	if (!proc_dir) {
  11670		pr_err("unable to create proc dir " TPACPI_PROC_DIR "\n");
  11671		thinkpad_acpi_module_exit();
  11672		return -ENODEV;
  11673	}
  11674
  11675	dmi_id = dmi_first_match(fwbug_list);
  11676	if (dmi_id)
  11677		tp_features.quirks = dmi_id->driver_data;
  11678
  11679	/* Device initialization */
  11680	tpacpi_pdev = platform_device_register_simple(TPACPI_DRVR_NAME, -1,
  11681							NULL, 0);
  11682	if (IS_ERR(tpacpi_pdev)) {
  11683		ret = PTR_ERR(tpacpi_pdev);
  11684		tpacpi_pdev = NULL;
  11685		pr_err("unable to register platform device\n");
  11686		thinkpad_acpi_module_exit();
  11687		return ret;
  11688	}
  11689	tpacpi_sensors_pdev = platform_device_register_simple(
  11690						TPACPI_HWMON_DRVR_NAME,
  11691						-1, NULL, 0);
  11692	if (IS_ERR(tpacpi_sensors_pdev)) {
  11693		ret = PTR_ERR(tpacpi_sensors_pdev);
  11694		tpacpi_sensors_pdev = NULL;
  11695		pr_err("unable to register hwmon platform device\n");
  11696		thinkpad_acpi_module_exit();
  11697		return ret;
  11698	}
  11699
  11700	mutex_init(&tpacpi_inputdev_send_mutex);
  11701	tpacpi_inputdev = input_allocate_device();
  11702	if (!tpacpi_inputdev) {
  11703		thinkpad_acpi_module_exit();
  11704		return -ENOMEM;
  11705	} else {
  11706		/* Prepare input device, but don't register */
  11707		tpacpi_inputdev->name = "ThinkPad Extra Buttons";
  11708		tpacpi_inputdev->phys = TPACPI_DRVR_NAME "/input0";
  11709		tpacpi_inputdev->id.bustype = BUS_HOST;
  11710		tpacpi_inputdev->id.vendor = thinkpad_id.vendor;
  11711		tpacpi_inputdev->id.product = TPACPI_HKEY_INPUT_PRODUCT;
  11712		tpacpi_inputdev->id.version = TPACPI_HKEY_INPUT_VERSION;
  11713		tpacpi_inputdev->dev.parent = &tpacpi_pdev->dev;
  11714	}
  11715
  11716	/* Init subdriver dependencies */
  11717	tpacpi_detect_brightness_capabilities();
  11718
  11719	/* Init subdrivers */
  11720	for (i = 0; i < ARRAY_SIZE(ibms_init); i++) {
  11721		ret = ibm_init(&ibms_init[i]);
  11722		if (ret >= 0 && *ibms_init[i].param)
  11723			ret = ibms_init[i].data->write(ibms_init[i].param);
  11724		if (ret < 0) {
  11725			thinkpad_acpi_module_exit();
  11726			return ret;
  11727		}
  11728	}
  11729
  11730	tpacpi_lifecycle = TPACPI_LIFE_RUNNING;
  11731
  11732	ret = platform_driver_register(&tpacpi_pdriver);
  11733	if (ret) {
  11734		pr_err("unable to register main platform driver\n");
  11735		thinkpad_acpi_module_exit();
  11736		return ret;
  11737	}
  11738	tp_features.platform_drv_registered = 1;
  11739
  11740	ret = platform_driver_register(&tpacpi_hwmon_pdriver);
  11741	if (ret) {
  11742		pr_err("unable to register hwmon platform driver\n");
  11743		thinkpad_acpi_module_exit();
  11744		return ret;
  11745	}
  11746	tp_features.sensors_pdrv_registered = 1;
  11747
  11748	tpacpi_hwmon = hwmon_device_register_with_groups(
  11749		&tpacpi_sensors_pdev->dev, TPACPI_NAME, NULL, tpacpi_hwmon_groups);
  11750	if (IS_ERR(tpacpi_hwmon)) {
  11751		ret = PTR_ERR(tpacpi_hwmon);
  11752		tpacpi_hwmon = NULL;
  11753		pr_err("unable to register hwmon device\n");
  11754		thinkpad_acpi_module_exit();
  11755		return ret;
  11756	}
  11757
  11758	ret = input_register_device(tpacpi_inputdev);
  11759	if (ret < 0) {
  11760		pr_err("unable to register input device\n");
  11761		thinkpad_acpi_module_exit();
  11762		return ret;
  11763	} else {
  11764		tp_features.input_device_registered = 1;
  11765	}
  11766
  11767#ifdef CONFIG_SUSPEND
  11768	if (tp_features.quirks && tp_features.quirks->s2idle_bug_mmio) {
  11769		if (!acpi_register_lps0_dev(&thinkpad_acpi_s2idle_dev_ops))
  11770			pr_info("Using s2idle quirk to avoid %s platform firmware bug\n",
  11771				(dmi_id && dmi_id->ident) ? dmi_id->ident : "");
  11772	}
  11773#endif
  11774	return 0;
  11775}
  11776
  11777MODULE_ALIAS(TPACPI_DRVR_SHORTNAME);
  11778
  11779/*
  11780 * This will autoload the driver in almost every ThinkPad
  11781 * in widespread use.
  11782 *
  11783 * Only _VERY_ old models, like the 240, 240x and 570 lack
  11784 * the HKEY event interface.
  11785 */
  11786MODULE_DEVICE_TABLE(acpi, ibm_htk_device_ids);
  11787
  11788/*
  11789 * DMI matching for module autoloading
  11790 *
  11791 * See https://thinkwiki.org/wiki/List_of_DMI_IDs
  11792 * See https://thinkwiki.org/wiki/BIOS_Upgrade_Downloads
  11793 *
  11794 * Only models listed in thinkwiki will be supported, so add yours
  11795 * if it is not there yet.
  11796 */
  11797#define IBM_BIOS_MODULE_ALIAS(__type) \
  11798	MODULE_ALIAS("dmi:bvnIBM:bvr" __type "ET??WW*")
  11799
  11800/* Ancient thinkpad BIOSes have to be identified by
  11801 * BIOS type or model number, and there are far less
  11802 * BIOS types than model numbers... */
  11803IBM_BIOS_MODULE_ALIAS("I[MU]");		/* 570, 570e */
  11804
  11805MODULE_AUTHOR("Borislav Deianov <borislav@users.sf.net>");
  11806MODULE_AUTHOR("Henrique de Moraes Holschuh <hmh@hmh.eng.br>");
  11807MODULE_DESCRIPTION(TPACPI_DESC);
  11808MODULE_VERSION(TPACPI_VERSION);
  11809MODULE_LICENSE("GPL");
  11810
  11811module_init(thinkpad_acpi_module_init);
  11812module_exit(thinkpad_acpi_module_exit);