2020-12-07 16:47:34 +01:00
|
|
|
/*!
|
2021-05-19 18:21:36 +02:00
|
|
|
* Copyright (c) 2019-2021 TUXEDO Computers GmbH <tux@tuxedocomputers.com>
|
2020-12-07 16:47:34 +01:00
|
|
|
*
|
2020-12-09 12:42:00 +01:00
|
|
|
* This file is part of tuxedo-io.
|
2020-12-07 16:47:34 +01:00
|
|
|
*
|
2020-12-09 12:42:00 +01:00
|
|
|
* tuxedo-io is free software: you can redistribute it and/or modify
|
2020-12-07 16:47:34 +01:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This software is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this software. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/device.h>
|
|
|
|
#include <linux/ioctl.h>
|
|
|
|
#include <linux/fs.h>
|
|
|
|
#include <linux/cdev.h>
|
|
|
|
#include <linux/uaccess.h>
|
|
|
|
#include <linux/delay.h>
|
|
|
|
#include "../clevo_interfaces.h"
|
2021-09-17 20:16:39 +02:00
|
|
|
#include "../uniwill_interfaces.h"
|
2020-12-07 16:47:34 +01:00
|
|
|
#include "tuxedo_io_ioctl.h"
|
|
|
|
|
|
|
|
MODULE_DESCRIPTION("Hardware interface for TUXEDO laptops");
|
|
|
|
MODULE_AUTHOR("TUXEDO Computers GmbH <tux@tuxedocomputers.com>");
|
2021-06-24 13:07:00 +02:00
|
|
|
MODULE_VERSION("0.2.4");
|
2020-12-07 16:47:34 +01:00
|
|
|
MODULE_LICENSE("GPL");
|
|
|
|
|
|
|
|
MODULE_ALIAS_CLEVO_INTERFACES();
|
|
|
|
MODULE_ALIAS("wmi:" CLEVO_WMI_METHOD_GUID);
|
|
|
|
MODULE_ALIAS("wmi:" UNIWILL_WMI_MGMT_GUID_BA);
|
|
|
|
MODULE_ALIAS("wmi:" UNIWILL_WMI_MGMT_GUID_BB);
|
|
|
|
MODULE_ALIAS("wmi:" UNIWILL_WMI_MGMT_GUID_BC);
|
|
|
|
|
|
|
|
// Initialized in module init, global for ioctl interface
|
|
|
|
static u32 id_check_clevo;
|
|
|
|
static u32 id_check_uniwill;
|
|
|
|
|
|
|
|
static u32 clevo_identify(void)
|
|
|
|
{
|
2020-12-08 09:30:27 +01:00
|
|
|
return clevo_get_active_interface_id(NULL) == 0 ? 1 : 0;
|
2020-12-07 16:47:34 +01:00
|
|
|
}
|
|
|
|
|
2021-09-18 00:30:00 +02:00
|
|
|
static u32 uniwill_identify(void)
|
|
|
|
{
|
|
|
|
return uniwill_get_active_interface_id(NULL) == 0 ? 1 : 0;
|
|
|
|
}
|
|
|
|
|
2020-12-07 16:47:34 +01:00
|
|
|
/*static int fop_open(struct inode *inode, struct file *file)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int fop_release(struct inode *inode, struct file *file)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}*/
|
|
|
|
|
|
|
|
static long clevo_ioctl_interface(struct file *file, unsigned int cmd, unsigned long arg)
|
|
|
|
{
|
|
|
|
u32 result = 0, status;
|
|
|
|
u32 copy_result;
|
|
|
|
u32 argument = (u32) arg;
|
2020-12-08 15:48:18 +01:00
|
|
|
|
2021-05-19 18:21:36 +02:00
|
|
|
u32 clevo_arg;
|
|
|
|
|
2020-12-08 15:48:18 +01:00
|
|
|
const char str_no_if[] = "";
|
|
|
|
char *str_clevo_if;
|
2020-12-07 16:47:34 +01:00
|
|
|
|
|
|
|
switch (cmd) {
|
2020-12-08 15:50:25 +01:00
|
|
|
case R_CL_HW_IF_STR:
|
2020-12-08 15:48:18 +01:00
|
|
|
if (clevo_get_active_interface_id(&str_clevo_if) == 0) {
|
|
|
|
copy_result = copy_to_user((char *) arg, str_clevo_if, strlen(str_clevo_if) + 1);
|
|
|
|
} else {
|
|
|
|
copy_result = copy_to_user((char *) arg, str_no_if, strlen(str_no_if) + 1);
|
|
|
|
}
|
|
|
|
break;
|
2020-12-08 15:50:25 +01:00
|
|
|
case R_CL_FANINFO1:
|
2020-12-07 16:47:34 +01:00
|
|
|
status = clevo_evaluate_method(CLEVO_CMD_GET_FANINFO1, 0, &result);
|
|
|
|
copy_result = copy_to_user((int32_t *) arg, &result, sizeof(result));
|
|
|
|
break;
|
2020-12-08 15:50:25 +01:00
|
|
|
case R_CL_FANINFO2:
|
2020-12-07 16:47:34 +01:00
|
|
|
status = clevo_evaluate_method(CLEVO_CMD_GET_FANINFO2, 0, &result);
|
|
|
|
copy_result = copy_to_user((int32_t *) arg, &result, sizeof(result));
|
|
|
|
break;
|
2020-12-08 15:50:25 +01:00
|
|
|
case R_CL_FANINFO3:
|
2020-12-07 16:47:34 +01:00
|
|
|
status = clevo_evaluate_method(CLEVO_CMD_GET_FANINFO3, 0, &result);
|
|
|
|
copy_result = copy_to_user((int32_t *) arg, &result, sizeof(result));
|
|
|
|
break;
|
2020-12-08 15:50:25 +01:00
|
|
|
/*case R_CL_FANINFO4:
|
2020-12-07 16:47:34 +01:00
|
|
|
status = clevo_evaluate_method(CLEVO_CMD_GET_FANINFO4, 0);
|
|
|
|
copy_to_user((int32_t *) arg, &result, sizeof(result));
|
|
|
|
break;*/
|
2020-12-08 15:50:25 +01:00
|
|
|
case R_CL_WEBCAM_SW:
|
2020-12-07 16:47:34 +01:00
|
|
|
status = clevo_evaluate_method(CLEVO_CMD_GET_WEBCAM_SW, 0, &result);
|
|
|
|
copy_result = copy_to_user((int32_t *) arg, &result, sizeof(result));
|
|
|
|
break;
|
2020-12-08 15:50:25 +01:00
|
|
|
case R_CL_FLIGHTMODE_SW:
|
2020-12-07 16:47:34 +01:00
|
|
|
status = clevo_evaluate_method(CLEVO_CMD_GET_FLIGHTMODE_SW, 0, &result);
|
|
|
|
copy_result = copy_to_user((int32_t *) arg, &result, sizeof(result));
|
|
|
|
break;
|
2020-12-08 15:50:25 +01:00
|
|
|
case R_CL_TOUCHPAD_SW:
|
2020-12-07 16:47:34 +01:00
|
|
|
status = clevo_evaluate_method(CLEVO_CMD_GET_TOUCHPAD_SW, 0, &result);
|
|
|
|
copy_result = copy_to_user((int32_t *) arg, &result, sizeof(result));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (cmd) {
|
2020-12-08 15:50:25 +01:00
|
|
|
case W_CL_FANSPEED:
|
2020-12-07 16:47:34 +01:00
|
|
|
copy_result = copy_from_user(&argument, (int32_t *) arg, sizeof(argument));
|
|
|
|
clevo_evaluate_method(CLEVO_CMD_SET_FANSPEED_VALUE, argument, &result);
|
|
|
|
// Note: Delay needed to let hardware catch up with the written value.
|
|
|
|
// No known ready flag. If the value is read too soon, the old value
|
|
|
|
// will still be read out.
|
|
|
|
// (Theoretically needed for other methods as well.)
|
|
|
|
// Can it be lower? 50ms is too low
|
|
|
|
msleep(100);
|
|
|
|
break;
|
2020-12-08 15:50:25 +01:00
|
|
|
case W_CL_FANAUTO:
|
2020-12-07 16:47:34 +01:00
|
|
|
copy_result = copy_from_user(&argument, (int32_t *) arg, sizeof(argument));
|
|
|
|
clevo_evaluate_method(CLEVO_CMD_SET_FANSPEED_AUTO, argument, &result);
|
|
|
|
break;
|
2020-12-08 15:50:25 +01:00
|
|
|
case W_CL_WEBCAM_SW:
|
2020-12-07 16:47:34 +01:00
|
|
|
copy_result = copy_from_user(&argument, (int32_t *) arg, sizeof(argument));
|
|
|
|
status = clevo_evaluate_method(CLEVO_CMD_GET_WEBCAM_SW, 0, &result);
|
|
|
|
// Only set status if it isn't already the right value
|
|
|
|
// (workaround for old and/or buggy WMI interfaces that toggle on write)
|
|
|
|
if ((argument & 0x01) != (result & 0x01)) {
|
|
|
|
clevo_evaluate_method(CLEVO_CMD_SET_WEBCAM_SW, argument, &result);
|
|
|
|
}
|
|
|
|
break;
|
2020-12-08 15:50:25 +01:00
|
|
|
case W_CL_FLIGHTMODE_SW:
|
2020-12-07 16:47:34 +01:00
|
|
|
copy_result = copy_from_user(&argument, (int32_t *) arg, sizeof(argument));
|
|
|
|
clevo_evaluate_method(CLEVO_CMD_SET_FLIGHTMODE_SW, argument, &result);
|
|
|
|
break;
|
2020-12-08 15:50:25 +01:00
|
|
|
case W_CL_TOUCHPAD_SW:
|
2020-12-07 16:47:34 +01:00
|
|
|
copy_result = copy_from_user(&argument, (int32_t *) arg, sizeof(argument));
|
|
|
|
clevo_evaluate_method(CLEVO_CMD_SET_TOUCHPAD_SW, argument, &result);
|
|
|
|
break;
|
2021-05-19 18:21:36 +02:00
|
|
|
case W_CL_PERF_PROFILE:
|
|
|
|
copy_result = copy_from_user(&argument, (int32_t *) arg, sizeof(argument));
|
|
|
|
clevo_arg = (CLEVO_OPT_SUBCMD_SET_PERF_PROF << 0x18) | (argument & 0xff);
|
|
|
|
clevo_evaluate_method(CLEVO_CMD_OPT, clevo_arg, &result);
|
|
|
|
break;
|
2020-12-07 16:47:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-09-28 19:23:16 +02:00
|
|
|
static int has_universal_ec_fan_control(void) {
|
|
|
|
int ret;
|
|
|
|
u8 data;
|
|
|
|
|
2022-09-29 15:15:14 +02:00
|
|
|
ret = uniwill_read_ec_ram(0x078e, &data);
|
2022-09-28 19:23:16 +02:00
|
|
|
if (ret < 0) {
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
return (data >> 6) & 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool fans_initialized = false;
|
|
|
|
|
|
|
|
static int uw_init_fan(void) {
|
|
|
|
int i;
|
|
|
|
|
|
|
|
u16 addr_use_custom_fan_table_0 = 0x07c5;
|
|
|
|
u16 addr_use_custom_fan_table_1 = 0x07c6;
|
|
|
|
u8 offset_use_custom_fan_table_0 = 7;
|
|
|
|
u8 offset_use_custom_fan_table_1 = 2;
|
|
|
|
u8 value_use_custom_fan_table_0;
|
|
|
|
u8 value_use_custom_fan_table_1;
|
|
|
|
u16 addr_cpu_custom_fan_table_end_temp = 0x0f00;
|
|
|
|
u16 addr_cpu_custom_fan_table_start_temp = 0x0f10;
|
|
|
|
u16 addr_cpu_custom_fan_table_fan_speed = 0x0f20;
|
|
|
|
u16 addr_gpu_custom_fan_table_end_temp = 0x0f30;
|
|
|
|
u16 addr_gpu_custom_fan_table_start_temp = 0x0f40;
|
|
|
|
u16 addr_gpu_custom_fan_table_fan_speed = 0x0f50;
|
|
|
|
|
|
|
|
if (!fans_initialized && (has_universal_ec_fan_control() == 1)) {
|
|
|
|
uniwill_read_ec_ram(addr_use_custom_fan_table_0, &value_use_custom_fan_table_0);
|
|
|
|
uniwill_read_ec_ram(addr_use_custom_fan_table_1, &value_use_custom_fan_table_1);
|
|
|
|
|
|
|
|
if (!((value_use_custom_fan_table_0 >> offset_use_custom_fan_table_0) & 1)) {
|
|
|
|
uniwill_write_ec_ram(addr_use_custom_fan_table_0, value_use_custom_fan_table_0 + (1 << offset_use_custom_fan_table_0));
|
|
|
|
}
|
|
|
|
if (!((value_use_custom_fan_table_1 >> offset_use_custom_fan_table_1) & 1)) {
|
|
|
|
uniwill_write_ec_ram(addr_use_custom_fan_table_1, value_use_custom_fan_table_1 + (1 << offset_use_custom_fan_table_1));
|
|
|
|
}
|
|
|
|
|
|
|
|
uniwill_write_ec_ram(addr_cpu_custom_fan_table_end_temp, 0xff);
|
|
|
|
uniwill_write_ec_ram(addr_cpu_custom_fan_table_start_temp, 0x00);
|
|
|
|
uniwill_write_ec_ram(addr_cpu_custom_fan_table_fan_speed, 0x00);
|
|
|
|
uniwill_write_ec_ram(addr_gpu_custom_fan_table_end_temp, 0xff);
|
|
|
|
uniwill_write_ec_ram(addr_gpu_custom_fan_table_start_temp, 0x00);
|
|
|
|
uniwill_write_ec_ram(addr_gpu_custom_fan_table_fan_speed, 0x00);
|
|
|
|
for (i = 0x1; i <= 0xf; ++i) {
|
|
|
|
uniwill_write_ec_ram(addr_cpu_custom_fan_table_end_temp + i, 0xff);
|
|
|
|
uniwill_write_ec_ram(addr_cpu_custom_fan_table_start_temp + i, 0xff);
|
|
|
|
uniwill_write_ec_ram(addr_cpu_custom_fan_table_fan_speed + i, 0x00);
|
|
|
|
uniwill_write_ec_ram(addr_gpu_custom_fan_table_end_temp + i, 0xff);
|
|
|
|
uniwill_write_ec_ram(addr_gpu_custom_fan_table_start_temp + i, 0xff);
|
|
|
|
uniwill_write_ec_ram(addr_gpu_custom_fan_table_fan_speed + i, 0x00);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fans_initialized = true;
|
|
|
|
|
|
|
|
return 0; // TODO Sensefull error handling
|
|
|
|
}
|
|
|
|
|
2021-09-18 00:03:49 +02:00
|
|
|
static u32 uw_set_fan(u32 fan_index, u8 fan_speed)
|
|
|
|
{
|
|
|
|
u32 i;
|
|
|
|
u8 mode_data;
|
|
|
|
u16 addr_fan0 = 0x1804;
|
|
|
|
u16 addr_fan1 = 0x1809;
|
|
|
|
u16 addr_for_fan;
|
|
|
|
|
2022-09-28 19:23:16 +02:00
|
|
|
u16 addr_cpu_custom_fan_table_fan_speed = 0x0f20;
|
|
|
|
u16 addr_gpu_custom_fan_table_fan_speed = 0x0f50;
|
|
|
|
|
|
|
|
if (has_universal_ec_fan_control() == 1) {
|
|
|
|
uw_init_fan();
|
|
|
|
|
|
|
|
// TODO Disable full fan mode
|
|
|
|
|
|
|
|
if (fan_index == 0)
|
|
|
|
addr_for_fan = addr_cpu_custom_fan_table_fan_speed;
|
|
|
|
else if (fan_index == 1)
|
|
|
|
addr_for_fan = addr_gpu_custom_fan_table_fan_speed;
|
|
|
|
else
|
|
|
|
return -EINVAL;
|
2021-09-18 00:03:49 +02:00
|
|
|
|
|
|
|
uniwill_write_ec_ram(addr_for_fan, fan_speed & 0xff);
|
|
|
|
}
|
2022-09-28 19:23:16 +02:00
|
|
|
else { // old workaround using full fan mode
|
|
|
|
if (fan_index == 0)
|
|
|
|
addr_for_fan = addr_fan0;
|
|
|
|
else if (fan_index == 1)
|
|
|
|
addr_for_fan = addr_fan1;
|
|
|
|
else
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
// Check current mode
|
|
|
|
uniwill_read_ec_ram(0x0751, &mode_data);
|
|
|
|
if (!(mode_data & 0x40)) {
|
|
|
|
// If not "full fan mode" (i.e. 0x40 bit set) switch to it (required for fancontrol)
|
|
|
|
uniwill_write_ec_ram(0x0751, mode_data | 0x40);
|
|
|
|
// Attempt to write both fans as quick as possible before complete ramp-up
|
|
|
|
pr_debug("prevent ramp-up start\n");
|
|
|
|
for (i = 0; i < 10; ++i) {
|
|
|
|
uniwill_write_ec_ram(addr_fan0, fan_speed & 0xff);
|
|
|
|
uniwill_write_ec_ram(addr_fan1, fan_speed & 0xff);
|
|
|
|
msleep(10);
|
|
|
|
}
|
|
|
|
pr_debug("prevent ramp-up done\n");
|
|
|
|
} else {
|
|
|
|
// Otherwise just set the chosen fan
|
|
|
|
uniwill_write_ec_ram(addr_for_fan, fan_speed & 0xff);
|
|
|
|
}
|
|
|
|
}
|
2021-09-18 00:03:49 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static u32 uw_set_fan_auto(void)
|
|
|
|
{
|
|
|
|
u8 mode_data;
|
|
|
|
// Get current mode
|
|
|
|
uniwill_read_ec_ram(0x0751, &mode_data);
|
|
|
|
// Switch off "full fan mode" (i.e. unset 0x40 bit)
|
|
|
|
uniwill_write_ec_ram(0x0751, mode_data & 0xbf);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-12-07 16:47:34 +01:00
|
|
|
static long uniwill_ioctl_interface(struct file *file, unsigned int cmd, unsigned long arg)
|
|
|
|
{
|
|
|
|
u32 result = 0;
|
|
|
|
u32 copy_result;
|
|
|
|
u32 argument;
|
2021-09-17 22:06:37 +02:00
|
|
|
u8 byte_data;
|
2021-09-18 00:30:00 +02:00
|
|
|
const char str_no_if[] = "";
|
|
|
|
char *str_uniwill_if;
|
2020-12-07 16:47:34 +01:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
2021-10-18 20:03:02 +02:00
|
|
|
union uw_ec_read_return reg_read_return;
|
|
|
|
union uw_ec_write_return reg_write_return;
|
2020-12-07 16:47:34 +01:00
|
|
|
u32 uw_arg[10];
|
|
|
|
u32 uw_result[10];
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < 10; ++i) {
|
|
|
|
uw_result[i] = 0xdeadbeef;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
switch (cmd) {
|
2021-09-18 00:30:00 +02:00
|
|
|
case R_UW_HW_IF_STR:
|
|
|
|
if (uniwill_get_active_interface_id(&str_uniwill_if) == 0) {
|
|
|
|
copy_result = copy_to_user((char *) arg, str_uniwill_if, strlen(str_uniwill_if) + 1);
|
|
|
|
} else {
|
|
|
|
copy_result = copy_to_user((char *) arg, str_no_if, strlen(str_no_if) + 1);
|
|
|
|
}
|
|
|
|
break;
|
2020-12-07 16:47:34 +01:00
|
|
|
case R_UW_FANSPEED:
|
2021-09-17 22:06:37 +02:00
|
|
|
uniwill_read_ec_ram(0x1804, &byte_data);
|
|
|
|
result = byte_data;
|
2020-12-07 16:47:34 +01:00
|
|
|
copy_result = copy_to_user((void *) arg, &result, sizeof(result));
|
|
|
|
break;
|
|
|
|
case R_UW_FANSPEED2:
|
2021-09-17 22:06:37 +02:00
|
|
|
uniwill_read_ec_ram(0x1809, &byte_data);
|
|
|
|
result = byte_data;
|
2020-12-07 16:47:34 +01:00
|
|
|
copy_result = copy_to_user((void *) arg, &result, sizeof(result));
|
|
|
|
break;
|
|
|
|
case R_UW_FAN_TEMP:
|
2021-09-17 22:06:37 +02:00
|
|
|
uniwill_read_ec_ram(0x043e, &byte_data);
|
|
|
|
result = byte_data;
|
2020-12-07 16:47:34 +01:00
|
|
|
copy_result = copy_to_user((void *) arg, &result, sizeof(result));
|
|
|
|
break;
|
|
|
|
case R_UW_FAN_TEMP2:
|
2021-09-17 22:06:37 +02:00
|
|
|
uniwill_read_ec_ram(0x044f, &byte_data);
|
|
|
|
result = byte_data;
|
2020-12-07 16:47:34 +01:00
|
|
|
copy_result = copy_to_user((void *) arg, &result, sizeof(result));
|
|
|
|
break;
|
|
|
|
case R_UW_MODE:
|
2021-09-17 22:06:37 +02:00
|
|
|
uniwill_read_ec_ram(0x0751, &byte_data);
|
|
|
|
result = byte_data;
|
2020-12-07 16:47:34 +01:00
|
|
|
copy_result = copy_to_user((void *) arg, &result, sizeof(result));
|
|
|
|
break;
|
|
|
|
case R_UW_MODE_ENABLE:
|
2021-09-17 22:06:37 +02:00
|
|
|
uniwill_read_ec_ram(0x0741, &byte_data);
|
|
|
|
result = byte_data;
|
2020-12-07 16:47:34 +01:00
|
|
|
copy_result = copy_to_user((void *) arg, &result, sizeof(result));
|
|
|
|
break;
|
|
|
|
#ifdef DEBUG
|
|
|
|
case R_TF_BC:
|
|
|
|
copy_result = copy_from_user(&uw_arg, (void *) arg, sizeof(uw_arg));
|
2021-09-17 22:06:37 +02:00
|
|
|
reg_read_return.dword = 0;
|
|
|
|
result = uniwill_read_ec_ram((uw_arg[1] << 8) | uw_arg[0], ®_read_return.bytes.data_low);
|
|
|
|
copy_result = copy_to_user((void *) arg, ®_read_return.dword, sizeof(reg_read_return.dword));
|
2020-12-21 17:18:08 +01:00
|
|
|
// pr_info("R_TF_BC args [%0#2x, %0#2x, %0#2x, %0#2x]\n", uw_arg[0], uw_arg[1], uw_arg[2], uw_arg[3]);
|
2021-09-17 22:06:37 +02:00
|
|
|
/*if (uniwill_ec_direct) {
|
2020-12-07 16:47:34 +01:00
|
|
|
result = uw_ec_read_addr_direct(uw_arg[0], uw_arg[1], ®_read_return);
|
|
|
|
copy_result = copy_to_user((void *) arg, ®_read_return.dword, sizeof(reg_read_return.dword));
|
|
|
|
} else {
|
|
|
|
result = uw_wmi_ec_evaluate(uw_arg[0], uw_arg[1], uw_arg[2], uw_arg[3], 1, uw_result);
|
|
|
|
copy_result = copy_to_user((void *) arg, &uw_result, sizeof(uw_result));
|
2021-09-17 22:06:37 +02:00
|
|
|
}*/
|
2020-12-07 16:47:34 +01:00
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (cmd) {
|
|
|
|
case W_UW_FANSPEED:
|
|
|
|
// Get fan speed argument
|
|
|
|
copy_result = copy_from_user(&argument, (int32_t *) arg, sizeof(argument));
|
2020-12-21 13:38:31 +01:00
|
|
|
uw_set_fan(0, argument);
|
2020-12-07 16:47:34 +01:00
|
|
|
break;
|
|
|
|
case W_UW_FANSPEED2:
|
|
|
|
// Get fan speed argument
|
|
|
|
copy_result = copy_from_user(&argument, (int32_t *) arg, sizeof(argument));
|
2020-12-21 13:38:31 +01:00
|
|
|
uw_set_fan(1, argument);
|
2020-12-07 16:47:34 +01:00
|
|
|
break;
|
|
|
|
case W_UW_MODE:
|
|
|
|
copy_result = copy_from_user(&argument, (int32_t *) arg, sizeof(argument));
|
2021-09-17 22:06:37 +02:00
|
|
|
uniwill_write_ec_ram(0x0751, argument & 0xff);
|
2020-12-07 16:47:34 +01:00
|
|
|
break;
|
|
|
|
case W_UW_MODE_ENABLE:
|
|
|
|
// Note: Is for the moment set and cleared on init/exit of module (uniwill mode)
|
|
|
|
/*
|
|
|
|
copy_result = copy_from_user(&argument, (int32_t *) arg, sizeof(argument));
|
2021-09-17 22:06:37 +02:00
|
|
|
uniwill_write_ec_ram(0x0741, argument & 0x01);
|
2020-12-07 16:47:34 +01:00
|
|
|
*/
|
|
|
|
break;
|
2021-09-18 00:13:42 +02:00
|
|
|
case W_UW_FANAUTO:
|
2021-02-19 21:33:30 +01:00
|
|
|
uw_set_fan_auto();
|
|
|
|
break;
|
2020-12-07 16:47:34 +01:00
|
|
|
#ifdef DEBUG
|
|
|
|
case W_TF_BC:
|
2021-09-17 22:06:37 +02:00
|
|
|
reg_write_return.dword = 0;
|
2020-12-07 16:47:34 +01:00
|
|
|
copy_result = copy_from_user(&uw_arg, (void *) arg, sizeof(uw_arg));
|
2021-09-17 22:06:37 +02:00
|
|
|
uniwill_write_ec_ram((uw_arg[1] << 8) | uw_arg[0], uw_arg[2]);
|
|
|
|
copy_result = copy_to_user((void *) arg, ®_write_return.dword, sizeof(reg_write_return.dword));
|
|
|
|
/*if (uniwill_ec_direct) {
|
2020-12-07 16:47:34 +01:00
|
|
|
result = uw_ec_write_addr_direct(uw_arg[0], uw_arg[1], uw_arg[2], uw_arg[3], ®_write_return);
|
|
|
|
copy_result = copy_to_user((void *) arg, ®_write_return.dword, sizeof(reg_write_return.dword));
|
|
|
|
} else {
|
|
|
|
result = uw_wmi_ec_evaluate(uw_arg[0], uw_arg[1], uw_arg[2], uw_arg[3], 0, uw_result);
|
|
|
|
copy_result = copy_to_user((void *) arg, &uw_result, sizeof(uw_result));
|
|
|
|
reg_write_return.dword = uw_result[0];
|
2021-09-17 22:06:37 +02:00
|
|
|
}*/
|
2020-12-07 16:47:34 +01:00
|
|
|
/*pr_info("data_high %0#2x\n", reg_write_return.bytes.data_high);
|
|
|
|
pr_info("data_low %0#2x\n", reg_write_return.bytes.data_low);
|
|
|
|
pr_info("addr_high %0#2x\n", reg_write_return.bytes.addr_high);
|
|
|
|
pr_info("addr_low %0#2x\n", reg_write_return.bytes.addr_low);*/
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static long fop_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
|
|
|
|
{
|
|
|
|
u32 status;
|
|
|
|
// u32 result = 0;
|
|
|
|
u32 copy_result;
|
|
|
|
|
|
|
|
const char *module_version = THIS_MODULE->version;
|
|
|
|
switch (cmd) {
|
|
|
|
case R_MOD_VERSION:
|
|
|
|
copy_result = copy_to_user((char *) arg, module_version, strlen(module_version) + 1);
|
|
|
|
break;
|
|
|
|
// Hardware id checks, 1 = positive, 0 = negative
|
|
|
|
case R_HWCHECK_CL:
|
|
|
|
id_check_clevo = clevo_identify();
|
|
|
|
copy_result = copy_to_user((void *) arg, (void *) &id_check_clevo, sizeof(id_check_clevo));
|
|
|
|
break;
|
|
|
|
case R_HWCHECK_UW:
|
2021-10-04 14:55:48 +02:00
|
|
|
id_check_uniwill = uniwill_identify();
|
2020-12-07 16:47:34 +01:00
|
|
|
copy_result = copy_to_user((void *) arg, (void *) &id_check_uniwill, sizeof(id_check_uniwill));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
status = clevo_ioctl_interface(file, cmd, arg);
|
|
|
|
if (status != 0) return status;
|
|
|
|
status = uniwill_ioctl_interface(file, cmd, arg);
|
|
|
|
if (status != 0) return status;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct file_operations fops_dev = {
|
|
|
|
.owner = THIS_MODULE,
|
|
|
|
.unlocked_ioctl = fop_ioctl
|
2021-09-18 00:13:42 +02:00
|
|
|
// .open = fop_open,
|
|
|
|
// .release = fop_release
|
2020-12-07 16:47:34 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct class *tuxedo_io_device_class;
|
|
|
|
dev_t tuxedo_io_device_handle;
|
|
|
|
|
|
|
|
static struct cdev tuxedo_io_cdev;
|
|
|
|
|
|
|
|
static int __init tuxedo_io_init(void)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
|
|
|
// Hardware identification
|
|
|
|
id_check_clevo = clevo_identify();
|
2021-09-18 00:30:00 +02:00
|
|
|
id_check_uniwill = uniwill_identify();
|
2020-12-07 16:47:34 +01:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
if (id_check_clevo == 0 && id_check_uniwill == 0) {
|
2021-10-04 14:55:48 +02:00
|
|
|
pr_debug("No matching hardware found on module load\n");
|
2020-12-07 16:47:34 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
err = alloc_chrdev_region(&tuxedo_io_device_handle, 0, 1, "tuxedo_io_cdev");
|
|
|
|
if (err != 0) {
|
|
|
|
pr_err("Failed to allocate chrdev region\n");
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
cdev_init(&tuxedo_io_cdev, &fops_dev);
|
|
|
|
err = (cdev_add(&tuxedo_io_cdev, tuxedo_io_device_handle, 1));
|
|
|
|
if (err < 0) {
|
|
|
|
pr_err("Failed to add cdev\n");
|
|
|
|
unregister_chrdev_region(tuxedo_io_device_handle, 1);
|
|
|
|
}
|
|
|
|
tuxedo_io_device_class = class_create(THIS_MODULE, "tuxedo_io");
|
|
|
|
device_create(tuxedo_io_device_class, NULL, tuxedo_io_device_handle, NULL, "tuxedo_io");
|
|
|
|
pr_debug("Module init successful\n");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __exit tuxedo_io_exit(void)
|
|
|
|
{
|
|
|
|
device_destroy(tuxedo_io_device_class, tuxedo_io_device_handle);
|
|
|
|
class_destroy(tuxedo_io_device_class);
|
|
|
|
cdev_del(&tuxedo_io_cdev);
|
|
|
|
unregister_chrdev_region(tuxedo_io_device_handle, 1);
|
|
|
|
pr_debug("Module exit\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
module_init(tuxedo_io_init);
|
|
|
|
module_exit(tuxedo_io_exit);
|