
Pull x86 platform driver updates from Andy Shevchenko: "Gathered a bunch of x86 platform driver changes. It's rather big, since includes two big refactors and completely new driver: - ASUS WMI driver got a big refactoring in order to support the TUF Gaming laptops. Besides that, the regression with backlight being permanently off on various EeePC laptops has been fixed. - Accelerometer on HP ProBook 450 G0 shows wrong measurements due to X axis being inverted. This has been fixed. - Intel PMC core driver has been extended to be ACPI enumerated if the DSDT provides device with _HID "INT33A1". This allows to convert the driver to be pure platform and support new hardware purely based on ACPI DSDT. - From now on the Intel Speed Select Technology is supported thru a corresponding driver. This driver provides an access to the features of the ISST, such as Performance Profile, Core Power, Base frequency and Turbo Frequency. - Mellanox platform drivers has been refactored and now extended to support more systems, including new coming ones. - The OLPC XO-1.75 platform is now supported. - CB4063 Beckhoff Automation board is using PMC clocks, provided via pmc_atom driver, for ethernet controllers in a way that they can't be managed by the clock driver. The quirk has been extended to cover this case. - Touchscreen on Chuwi Hi10 Plus tablet has been enabled. Meanwhile the information of Chuwi Hi10 Air has been fixed to cover more models based on the same platform. - Xiaomi notebooks have WMI interface enabled. Thus, the driver to support it has been provided. It required some extension of the generic WMI library, which allows to propagate opaque context to the ->probe() of the individual drivers. This release includes debugfs clean up from Greg KH for several drivers that drop return code check and make debugfs absence or failure non-fatal. Also miscellaneous fixes here and there, mostly for Acer WMI and various Intel drivers" * tag 'platform-drivers-x86-v5.3-1' of git://git.infradead.org/linux-platform-drivers-x86: (74 commits) platform/x86: Fix PCENGINES_APU2 Kconfig warning tools/power/x86/intel-speed-select: Add .gitignore file platform/x86: mlx-platform: Fix error handling in mlxplat_init() platform/x86: intel_pmc_core: Attach using APCI HID "INT33A1" platform/x86: intel_pmc_core: transform Pkg C-state residency from TSC ticks into microseconds platform/x86: asus-wmi: Use dev_get_drvdata() Documentation/ABI: Add new attribute for mlxreg-io sysfs interfaces platform/x86: mlx-platform: Add more reset cause attributes platform/x86: mlx-platform: Modify DMI matching order platform/x86: mlx-platform: Add regmap structure for the next generation systems platform/x86: mlx-platform: Change API for i2c-mlxcpld driver activation platform/x86: mlx-platform: Move regmap initialization before all drivers activation MAINTAINERS: Update for Intel Speed Select Technology tools/power/x86: A tool to validate Intel Speed Select commands platform/x86: ISST: Restore state on resume platform/x86: ISST: Add Intel Speed Select PUNIT MSR interface platform/x86: ISST: Add Intel Speed Select mailbox interface via MSRs platform/x86: ISST: Add Intel Speed Select mailbox interface via PCI platform/x86: ISST: Add Intel Speed Select mmio interface platform/x86: ISST: Add IOCTL to Translate Linux logical CPU to PUNIT CPU number ...
207 lines
4.7 KiB
C
207 lines
4.7 KiB
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* Dell WMI descriptor driver
|
|
*
|
|
* Copyright (C) 2017 Dell Inc. All Rights Reserved.
|
|
*/
|
|
|
|
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
|
|
|
#include <linux/acpi.h>
|
|
#include <linux/list.h>
|
|
#include <linux/module.h>
|
|
#include <linux/wmi.h>
|
|
#include "dell-wmi-descriptor.h"
|
|
|
|
#define DELL_WMI_DESCRIPTOR_GUID "8D9DDCBC-A997-11DA-B012-B622A1EF5492"
|
|
|
|
struct descriptor_priv {
|
|
struct list_head list;
|
|
u32 interface_version;
|
|
u32 size;
|
|
u32 hotfix;
|
|
};
|
|
static int descriptor_valid = -EPROBE_DEFER;
|
|
static LIST_HEAD(wmi_list);
|
|
static DEFINE_MUTEX(list_mutex);
|
|
|
|
int dell_wmi_get_descriptor_valid(void)
|
|
{
|
|
if (!wmi_has_guid(DELL_WMI_DESCRIPTOR_GUID))
|
|
return -ENODEV;
|
|
|
|
return descriptor_valid;
|
|
}
|
|
EXPORT_SYMBOL_GPL(dell_wmi_get_descriptor_valid);
|
|
|
|
bool dell_wmi_get_interface_version(u32 *version)
|
|
{
|
|
struct descriptor_priv *priv;
|
|
bool ret = false;
|
|
|
|
mutex_lock(&list_mutex);
|
|
priv = list_first_entry_or_null(&wmi_list,
|
|
struct descriptor_priv,
|
|
list);
|
|
if (priv) {
|
|
*version = priv->interface_version;
|
|
ret = true;
|
|
}
|
|
mutex_unlock(&list_mutex);
|
|
return ret;
|
|
}
|
|
EXPORT_SYMBOL_GPL(dell_wmi_get_interface_version);
|
|
|
|
bool dell_wmi_get_size(u32 *size)
|
|
{
|
|
struct descriptor_priv *priv;
|
|
bool ret = false;
|
|
|
|
mutex_lock(&list_mutex);
|
|
priv = list_first_entry_or_null(&wmi_list,
|
|
struct descriptor_priv,
|
|
list);
|
|
if (priv) {
|
|
*size = priv->size;
|
|
ret = true;
|
|
}
|
|
mutex_unlock(&list_mutex);
|
|
return ret;
|
|
}
|
|
EXPORT_SYMBOL_GPL(dell_wmi_get_size);
|
|
|
|
bool dell_wmi_get_hotfix(u32 *hotfix)
|
|
{
|
|
struct descriptor_priv *priv;
|
|
bool ret = false;
|
|
|
|
mutex_lock(&list_mutex);
|
|
priv = list_first_entry_or_null(&wmi_list,
|
|
struct descriptor_priv,
|
|
list);
|
|
if (priv) {
|
|
*hotfix = priv->hotfix;
|
|
ret = true;
|
|
}
|
|
mutex_unlock(&list_mutex);
|
|
return ret;
|
|
}
|
|
EXPORT_SYMBOL_GPL(dell_wmi_get_hotfix);
|
|
|
|
/*
|
|
* Descriptor buffer is 128 byte long and contains:
|
|
*
|
|
* Name Offset Length Value
|
|
* Vendor Signature 0 4 "DELL"
|
|
* Object Signature 4 4 " WMI"
|
|
* WMI Interface Version 8 4 <version>
|
|
* WMI buffer length 12 4 <length>
|
|
* WMI hotfix number 16 4 <hotfix>
|
|
*/
|
|
static int dell_wmi_descriptor_probe(struct wmi_device *wdev,
|
|
const void *context)
|
|
{
|
|
union acpi_object *obj = NULL;
|
|
struct descriptor_priv *priv;
|
|
u32 *buffer;
|
|
int ret;
|
|
|
|
obj = wmidev_block_query(wdev, 0);
|
|
if (!obj) {
|
|
dev_err(&wdev->dev, "failed to read Dell WMI descriptor\n");
|
|
ret = -EIO;
|
|
goto out;
|
|
}
|
|
|
|
if (obj->type != ACPI_TYPE_BUFFER) {
|
|
dev_err(&wdev->dev, "Dell descriptor has wrong type\n");
|
|
ret = -EINVAL;
|
|
descriptor_valid = ret;
|
|
goto out;
|
|
}
|
|
|
|
/* Although it's not technically a failure, this would lead to
|
|
* unexpected behavior
|
|
*/
|
|
if (obj->buffer.length != 128) {
|
|
dev_err(&wdev->dev,
|
|
"Dell descriptor buffer has unexpected length (%d)\n",
|
|
obj->buffer.length);
|
|
ret = -EINVAL;
|
|
descriptor_valid = ret;
|
|
goto out;
|
|
}
|
|
|
|
buffer = (u32 *)obj->buffer.pointer;
|
|
|
|
if (strncmp(obj->string.pointer, "DELL WMI", 8) != 0) {
|
|
dev_err(&wdev->dev, "Dell descriptor buffer has invalid signature (%8ph)\n",
|
|
buffer);
|
|
ret = -EINVAL;
|
|
descriptor_valid = ret;
|
|
goto out;
|
|
}
|
|
descriptor_valid = 0;
|
|
|
|
if (buffer[2] != 0 && buffer[2] != 1)
|
|
dev_warn(&wdev->dev, "Dell descriptor buffer has unknown version (%lu)\n",
|
|
(unsigned long) buffer[2]);
|
|
|
|
priv = devm_kzalloc(&wdev->dev, sizeof(struct descriptor_priv),
|
|
GFP_KERNEL);
|
|
|
|
if (!priv) {
|
|
ret = -ENOMEM;
|
|
goto out;
|
|
}
|
|
|
|
priv->interface_version = buffer[2];
|
|
priv->size = buffer[3];
|
|
priv->hotfix = buffer[4];
|
|
ret = 0;
|
|
dev_set_drvdata(&wdev->dev, priv);
|
|
mutex_lock(&list_mutex);
|
|
list_add_tail(&priv->list, &wmi_list);
|
|
mutex_unlock(&list_mutex);
|
|
|
|
dev_dbg(&wdev->dev, "Detected Dell WMI interface version %lu, buffer size %lu, hotfix %lu\n",
|
|
(unsigned long) priv->interface_version,
|
|
(unsigned long) priv->size,
|
|
(unsigned long) priv->hotfix);
|
|
|
|
out:
|
|
kfree(obj);
|
|
return ret;
|
|
}
|
|
|
|
static int dell_wmi_descriptor_remove(struct wmi_device *wdev)
|
|
{
|
|
struct descriptor_priv *priv = dev_get_drvdata(&wdev->dev);
|
|
|
|
mutex_lock(&list_mutex);
|
|
list_del(&priv->list);
|
|
mutex_unlock(&list_mutex);
|
|
return 0;
|
|
}
|
|
|
|
static const struct wmi_device_id dell_wmi_descriptor_id_table[] = {
|
|
{ .guid_string = DELL_WMI_DESCRIPTOR_GUID },
|
|
{ },
|
|
};
|
|
|
|
static struct wmi_driver dell_wmi_descriptor_driver = {
|
|
.driver = {
|
|
.name = "dell-wmi-descriptor",
|
|
},
|
|
.probe = dell_wmi_descriptor_probe,
|
|
.remove = dell_wmi_descriptor_remove,
|
|
.id_table = dell_wmi_descriptor_id_table,
|
|
};
|
|
|
|
module_wmi_driver(dell_wmi_descriptor_driver);
|
|
|
|
MODULE_DEVICE_TABLE(wmi, dell_wmi_descriptor_id_table);
|
|
MODULE_AUTHOR("Mario Limonciello <mario.limonciello@dell.com>");
|
|
MODULE_DESCRIPTION("Dell WMI descriptor driver");
|
|
MODULE_LICENSE("GPL");
|