mirror of
https://github.com/torvalds/linux.git
synced 2026-03-14 00:56:20 +01:00
platform-drivers-x86 for v6.15-2
Fixes:
- thinkpad_acpi:
- Fix NULL pointer dereferences while probing
- Disable ACPI fan access for T495* and E560
- ISST: Correct command storage data length
The following is an automated shortlog grouped by driver:
ISST:
- Correct command storage data length
MAINTAINERS:
- consistently use my dedicated email address
thinkpad_acpi:
- disable ACPI fan access for T495* and E560
- Fix NULL pointer dereferences while probing
-----BEGIN PGP SIGNATURE-----
iHUEABYIAB0WIQSCSUwRdwTNL2MhaBlZrE9hU+XOMQUCZ+/vRQAKCRBZrE9hU+XO
MStcAQDEc8URl/7qYzOV226aWHL3XeKIkb3XkFNn1klwbHAIIwD+KwNy3amvaeRX
fTNEvNngWO2jjjCSoUITgZGsLp8XcgU=
=YLB+
-----END PGP SIGNATURE-----
Merge tag 'platform-drivers-x86-v6.15-2' of git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86
Pull x86 platform driver fixes from Ilpo Järvinen:
- thinkpad_acpi:
- Fix NULL pointer dereferences while probing
- Disable ACPI fan access for T495* and E560
- ISST: Correct command storage data length
* tag 'platform-drivers-x86-v6.15-2' of git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86:
MAINTAINERS: consistently use my dedicated email address
platform/x86: ISST: Correct command storage data length
platform/x86: thinkpad_acpi: disable ACPI fan access for T495* and E560
platform/x86: thinkpad_acpi: Fix NULL pointer dereferences while probing
This commit is contained in:
commit
7ebd68d978
4 changed files with 34 additions and 15 deletions
|
|
@ -5544,12 +5544,12 @@ F: Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
|
|||
F: sound/soc/codecs/cros_ec_codec.*
|
||||
|
||||
CHROMEOS EC CHARGE CONTROL
|
||||
M: Thomas Weißschuh <thomas@weissschuh.net>
|
||||
M: Thomas Weißschuh <linux@weissschuh.net>
|
||||
S: Maintained
|
||||
F: drivers/power/supply/cros_charge-control.c
|
||||
|
||||
CHROMEOS EC HARDWARE MONITORING
|
||||
M: Thomas Weißschuh <thomas@weissschuh.net>
|
||||
M: Thomas Weißschuh <linux@weissschuh.net>
|
||||
L: chrome-platform@lists.linux.dev
|
||||
L: linux-hwmon@vger.kernel.org
|
||||
S: Maintained
|
||||
|
|
@ -5557,7 +5557,7 @@ F: Documentation/hwmon/cros_ec_hwmon.rst
|
|||
F: drivers/hwmon/cros_ec_hwmon.c
|
||||
|
||||
CHROMEOS EC LED DRIVER
|
||||
M: Thomas Weißschuh <thomas@weissschuh.net>
|
||||
M: Thomas Weißschuh <linux@weissschuh.net>
|
||||
S: Maintained
|
||||
F: drivers/leds/leds-cros_ec.c
|
||||
|
||||
|
|
@ -10021,7 +10021,7 @@ F: Documentation/hwmon/gigabyte_waterforce.rst
|
|||
F: drivers/hwmon/gigabyte_waterforce.c
|
||||
|
||||
GIGABYTE WMI DRIVER
|
||||
M: Thomas Weißschuh <thomas@weissschuh.net>
|
||||
M: Thomas Weißschuh <linux@weissschuh.net>
|
||||
L: platform-driver-x86@vger.kernel.org
|
||||
S: Maintained
|
||||
F: drivers/platform/x86/gigabyte-wmi.c
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
/*
|
||||
* Copyright (C) 2021 Thomas Weißschuh <thomas@weissschuh.net>
|
||||
* Copyright (C) 2021 Thomas Weißschuh <linux@weissschuh.net>
|
||||
*/
|
||||
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
||||
|
||||
|
|
@ -159,6 +159,6 @@ static struct wmi_driver gigabyte_wmi_driver = {
|
|||
module_wmi_driver(gigabyte_wmi_driver);
|
||||
|
||||
MODULE_DEVICE_TABLE(wmi, gigabyte_wmi_id_table);
|
||||
MODULE_AUTHOR("Thomas Weißschuh <thomas@weissschuh.net>");
|
||||
MODULE_AUTHOR("Thomas Weißschuh <linux@weissschuh.net>");
|
||||
MODULE_DESCRIPTION("Gigabyte WMI temperature driver");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
|
|
|||
|
|
@ -84,7 +84,7 @@ static DECLARE_HASHTABLE(isst_hash, 8);
|
|||
static DEFINE_MUTEX(isst_hash_lock);
|
||||
|
||||
static int isst_store_new_cmd(int cmd, u32 cpu, int mbox_cmd_type, u32 param,
|
||||
u32 data)
|
||||
u64 data)
|
||||
{
|
||||
struct isst_cmd *sst_cmd;
|
||||
|
||||
|
|
|
|||
|
|
@ -367,6 +367,7 @@ static struct {
|
|||
u32 beep_needs_two_args:1;
|
||||
u32 mixer_no_level_control:1;
|
||||
u32 battery_force_primary:1;
|
||||
u32 platform_drv_registered:1;
|
||||
u32 hotkey_poll_active:1;
|
||||
u32 has_adaptive_kbd:1;
|
||||
u32 kbd_lang:1;
|
||||
|
|
@ -8793,6 +8794,7 @@ static const struct attribute_group fan_driver_attr_group = {
|
|||
#define TPACPI_FAN_NS 0x0010 /* For EC with non-Standard register addresses */
|
||||
#define TPACPI_FAN_DECRPM 0x0020 /* For ECFW's with RPM in register as decimal */
|
||||
#define TPACPI_FAN_TPR 0x0040 /* Fan speed is in Ticks Per Revolution */
|
||||
#define TPACPI_FAN_NOACPI 0x0080 /* Don't use ACPI methods even if detected */
|
||||
|
||||
static const struct tpacpi_quirk fan_quirk_table[] __initconst = {
|
||||
TPACPI_QEC_IBM('1', 'Y', TPACPI_FAN_Q1),
|
||||
|
|
@ -8823,6 +8825,9 @@ static const struct tpacpi_quirk fan_quirk_table[] __initconst = {
|
|||
TPACPI_Q_LNV3('N', '1', 'O', TPACPI_FAN_NOFAN), /* X1 Tablet (2nd gen) */
|
||||
TPACPI_Q_LNV3('R', '0', 'Q', TPACPI_FAN_DECRPM),/* L480 */
|
||||
TPACPI_Q_LNV('8', 'F', TPACPI_FAN_TPR), /* ThinkPad x120e */
|
||||
TPACPI_Q_LNV3('R', '0', '0', TPACPI_FAN_NOACPI),/* E560 */
|
||||
TPACPI_Q_LNV3('R', '1', '2', TPACPI_FAN_NOACPI),/* T495 */
|
||||
TPACPI_Q_LNV3('R', '1', '3', TPACPI_FAN_NOACPI),/* T495s */
|
||||
};
|
||||
|
||||
static int __init fan_init(struct ibm_init_struct *iibm)
|
||||
|
|
@ -8874,6 +8879,13 @@ static int __init fan_init(struct ibm_init_struct *iibm)
|
|||
tp_features.fan_ctrl_status_undef = 1;
|
||||
}
|
||||
|
||||
if (quirks & TPACPI_FAN_NOACPI) {
|
||||
/* E560, T495, T495s */
|
||||
pr_info("Ignoring buggy ACPI fan access method\n");
|
||||
fang_handle = NULL;
|
||||
fanw_handle = NULL;
|
||||
}
|
||||
|
||||
if (gfan_handle) {
|
||||
/* 570, 600e/x, 770e, 770x */
|
||||
fan_status_access_mode = TPACPI_FAN_RD_ACPI_GFAN;
|
||||
|
|
@ -11820,10 +11832,10 @@ static void thinkpad_acpi_module_exit(void)
|
|||
platform_device_unregister(tpacpi_sensors_pdev);
|
||||
}
|
||||
|
||||
if (tpacpi_pdev) {
|
||||
if (tp_features.platform_drv_registered)
|
||||
platform_driver_unregister(&tpacpi_pdriver);
|
||||
if (tpacpi_pdev)
|
||||
platform_device_unregister(tpacpi_pdev);
|
||||
}
|
||||
|
||||
if (proc_dir)
|
||||
remove_proc_entry(TPACPI_PROC_DIR, acpi_root_dir);
|
||||
|
|
@ -11893,9 +11905,8 @@ static int __init tpacpi_pdriver_probe(struct platform_device *pdev)
|
|||
|
||||
static int __init tpacpi_hwmon_pdriver_probe(struct platform_device *pdev)
|
||||
{
|
||||
tpacpi_hwmon = devm_hwmon_device_register_with_groups(
|
||||
&tpacpi_sensors_pdev->dev, TPACPI_NAME, NULL, tpacpi_hwmon_groups);
|
||||
|
||||
tpacpi_hwmon = devm_hwmon_device_register_with_groups(&pdev->dev, TPACPI_NAME,
|
||||
NULL, tpacpi_hwmon_groups);
|
||||
if (IS_ERR(tpacpi_hwmon))
|
||||
pr_err("unable to register hwmon device\n");
|
||||
|
||||
|
|
@ -11965,16 +11976,24 @@ static int __init thinkpad_acpi_module_init(void)
|
|||
tp_features.quirks = dmi_id->driver_data;
|
||||
|
||||
/* Device initialization */
|
||||
tpacpi_pdev = platform_create_bundle(&tpacpi_pdriver, tpacpi_pdriver_probe,
|
||||
NULL, 0, NULL, 0);
|
||||
tpacpi_pdev = platform_device_register_simple(TPACPI_DRVR_NAME, PLATFORM_DEVID_NONE,
|
||||
NULL, 0);
|
||||
if (IS_ERR(tpacpi_pdev)) {
|
||||
ret = PTR_ERR(tpacpi_pdev);
|
||||
tpacpi_pdev = NULL;
|
||||
pr_err("unable to register platform device/driver bundle\n");
|
||||
pr_err("unable to register platform device\n");
|
||||
thinkpad_acpi_module_exit();
|
||||
return ret;
|
||||
}
|
||||
|
||||
ret = platform_driver_probe(&tpacpi_pdriver, tpacpi_pdriver_probe);
|
||||
if (ret) {
|
||||
pr_err("unable to register main platform driver\n");
|
||||
thinkpad_acpi_module_exit();
|
||||
return ret;
|
||||
}
|
||||
tp_features.platform_drv_registered = 1;
|
||||
|
||||
tpacpi_sensors_pdev = platform_create_bundle(&tpacpi_hwmon_pdriver,
|
||||
tpacpi_hwmon_pdriver_probe,
|
||||
NULL, 0, NULL, 0);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue