mirror of
https://github.com/wessel-novacustom/clevo-keyboard.git
synced 2024-11-15 03:34:01 +01:00
Split v1 three profile feature to include leds only version extra
This commit is contained in:
parent
d848111bb7
commit
4903b89239
|
@ -454,7 +454,7 @@ static long uniwill_ioctl_interface(struct file *file, unsigned int cmd, unsigne
|
||||||
result = 0;
|
result = 0;
|
||||||
if (uw_feats->uniwill_profile_v1_two_profs)
|
if (uw_feats->uniwill_profile_v1_two_profs)
|
||||||
result = 2;
|
result = 2;
|
||||||
else if (uw_feats->uniwill_profile_v1_three_profs)
|
else if (uw_feats->uniwill_profile_v1_three_profs || uw_feats->uniwill_profile_v1_three_profs_leds_only)
|
||||||
result = 3;
|
result = 3;
|
||||||
copy_result = copy_to_user((void *) arg, &result, sizeof(result));
|
copy_result = copy_to_user((void *) arg, &result, sizeof(result));
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -59,6 +59,7 @@ struct uniwill_device_features_t {
|
||||||
bool uniwill_profile_v1;
|
bool uniwill_profile_v1;
|
||||||
bool uniwill_profile_v1_two_profs;
|
bool uniwill_profile_v1_two_profs;
|
||||||
bool uniwill_profile_v1_three_profs;
|
bool uniwill_profile_v1_three_profs;
|
||||||
|
bool uniwill_profile_v1_three_profs_leds_only;
|
||||||
/**
|
/**
|
||||||
* Two or three configurable TDP values. Generally two for
|
* Two or three configurable TDP values. Generally two for
|
||||||
* low power/more mobile devices and three for heavier workstations
|
* low power/more mobile devices and three for heavier workstations
|
||||||
|
|
|
@ -202,13 +202,18 @@ struct uniwill_device_features_t *uniwill_get_device_features(void)
|
||||||
|| dmi_match(DMI_BOARD_NAME, "POLARIS1701A2060")
|
|| dmi_match(DMI_BOARD_NAME, "POLARIS1701A2060")
|
||||||
|| dmi_match(DMI_BOARD_NAME, "POLARIS1701I1650TI")
|
|| dmi_match(DMI_BOARD_NAME, "POLARIS1701I1650TI")
|
||||||
|| dmi_match(DMI_BOARD_NAME, "POLARIS1701I2060")
|
|| dmi_match(DMI_BOARD_NAME, "POLARIS1701I2060")
|
||||||
|
;
|
||||||
|
|
||||||
|
uw_feats->uniwill_profile_v1_three_profs_leds_only = false
|
||||||
// Devices where profile mainly controls power profile LED status
|
// Devices where profile mainly controls power profile LED status
|
||||||
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 18, 0)
|
||||||
|| dmi_match(DMI_PRODUCT_SKU, "POLARIS1XA02")
|
|| dmi_match(DMI_PRODUCT_SKU, "POLARIS1XA02")
|
||||||
|| dmi_match(DMI_PRODUCT_SKU, "POLARIS1XI02")
|
|| dmi_match(DMI_PRODUCT_SKU, "POLARIS1XI02")
|
||||||
|| dmi_match(DMI_PRODUCT_SKU, "POLARIS1XA03")
|
|| dmi_match(DMI_PRODUCT_SKU, "POLARIS1XA03")
|
||||||
|| dmi_match(DMI_PRODUCT_SKU, "POLARIS1XI03")
|
|| dmi_match(DMI_PRODUCT_SKU, "POLARIS1XI03")
|
||||||
|| dmi_match(DMI_PRODUCT_SKU, "STELLARIS1XI03")
|
|| dmi_match(DMI_PRODUCT_SKU, "STELLARIS1XI03")
|
||||||
|| dmi_match(DMI_PRODUCT_SKU, "STELLARIS1XA03")
|
|| dmi_match(DMI_PRODUCT_SKU, "STELLARIS1XA03")
|
||||||
|
#endif
|
||||||
;
|
;
|
||||||
|
|
||||||
uw_feats->uniwill_profile_v1 =
|
uw_feats->uniwill_profile_v1 =
|
||||||
|
@ -799,7 +804,7 @@ static int uniwill_keyboard_probe(struct platform_device *dev)
|
||||||
u8 data;
|
u8 data;
|
||||||
int status;
|
int status;
|
||||||
|
|
||||||
uniwill_get_device_features();
|
struct uniwill_device_features_t *uw_feats = uniwill_get_device_features();
|
||||||
|
|
||||||
// FIXME Hard set balanced profile until we have implemented a way to
|
// FIXME Hard set balanced profile until we have implemented a way to
|
||||||
// switch it while tuxedo_io is loaded
|
// switch it while tuxedo_io is loaded
|
||||||
|
|
Loading…
Reference in a new issue