WIP FPC-III support
[linux/fpc-iii.git] / drivers / platform / x86 / intel-smartconnect.c
blob64c2dc93472f474869b98e418ac1a67bb74d5559
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3 * Copyright 2013 Matthew Garrett <mjg59@srcf.ucam.org>
4 */
6 #include <linux/acpi.h>
7 #include <linux/module.h>
9 MODULE_LICENSE("GPL");
11 static int smartconnect_acpi_init(struct acpi_device *acpi)
13 unsigned long long value;
14 acpi_status status;
16 status = acpi_evaluate_integer(acpi->handle, "GAOS", NULL, &value);
17 if (ACPI_FAILURE(status))
18 return -EINVAL;
20 if (value & 0x1) {
21 dev_info(&acpi->dev, "Disabling Intel Smart Connect\n");
22 status = acpi_execute_simple_method(acpi->handle, "SAOS", 0);
25 return 0;
28 static const struct acpi_device_id smartconnect_ids[] = {
29 {"INT33A0", 0},
30 {"", 0}
32 MODULE_DEVICE_TABLE(acpi, smartconnect_ids);
34 static struct acpi_driver smartconnect_driver = {
35 .owner = THIS_MODULE,
36 .name = "intel_smart_connect",
37 .class = "intel_smart_connect",
38 .ids = smartconnect_ids,
39 .ops = {
40 .add = smartconnect_acpi_init,
44 module_acpi_driver(smartconnect_driver);