Commit f415cb6c authored by Joaquín Ignacio Aramendía's avatar Joaquín Ignacio Aramendía Committed by Guenter Roeck

hwmon: (oxp-sensors) Add AYANEO 2 and Geek models

Add support for handhelds with same EC registers
  - AYANEO 2
  - AYANEO GEEK

All functionality tests succeed on AYANEO 2 by "pastaq" user on Discord
and AYANEO GEEK tested by "oneoc" Discord user.
Signed-off-by: default avatarJoaquín Ignacio Aramendía <samsagax@gmail.com>
Link: https://lore.kernel.org/r/20230426184420.99945-1-samsagax@gmail.comSigned-off-by: default avatarGuenter Roeck <linux@roeck-us.net>
parent b153a0bb
...@@ -25,8 +25,10 @@ Supported devices ...@@ -25,8 +25,10 @@ Supported devices
Currently the driver supports the following handhelds: Currently the driver supports the following handhelds:
- AOK ZOE A1 - AOK ZOE A1
- Aya Neo 2
- Aya Neo AIR - Aya Neo AIR
- Aya Neo AIR Pro - Aya Neo AIR Pro
- Aya Neo Geek
- OneXPlayer AMD - OneXPlayer AMD
- OneXPlayer mini AMD - OneXPlayer mini AMD
- OneXPlayer mini AMD PRO - OneXPlayer mini AMD PRO
......
...@@ -42,8 +42,10 @@ static bool unlock_global_acpi_lock(void) ...@@ -42,8 +42,10 @@ static bool unlock_global_acpi_lock(void)
enum oxp_board { enum oxp_board {
aok_zoe_a1 = 1, aok_zoe_a1 = 1,
aya_neo_2,
aya_neo_air, aya_neo_air,
aya_neo_air_pro, aya_neo_air_pro,
aya_neo_geek,
oxp_mini_amd, oxp_mini_amd,
oxp_mini_amd_pro, oxp_mini_amd_pro,
}; };
...@@ -62,6 +64,13 @@ static const struct dmi_system_id dmi_table[] = { ...@@ -62,6 +64,13 @@ static const struct dmi_system_id dmi_table[] = {
}, },
.driver_data = (void *) &(enum oxp_board) {aok_zoe_a1}, .driver_data = (void *) &(enum oxp_board) {aok_zoe_a1},
}, },
{
.matches = {
DMI_MATCH(DMI_BOARD_VENDOR, "AYANEO"),
DMI_EXACT_MATCH(DMI_BOARD_NAME, "AYANEO 2"),
},
.driver_data = (void *) &(enum oxp_board) {aya_neo_2},
},
{ {
.matches = { .matches = {
DMI_MATCH(DMI_BOARD_VENDOR, "AYANEO"), DMI_MATCH(DMI_BOARD_VENDOR, "AYANEO"),
...@@ -76,6 +85,13 @@ static const struct dmi_system_id dmi_table[] = { ...@@ -76,6 +85,13 @@ static const struct dmi_system_id dmi_table[] = {
}, },
.driver_data = (void *) &(enum oxp_board) {aya_neo_air_pro}, .driver_data = (void *) &(enum oxp_board) {aya_neo_air_pro},
}, },
{
.matches = {
DMI_MATCH(DMI_BOARD_VENDOR, "AYANEO"),
DMI_EXACT_MATCH(DMI_BOARD_NAME, "GEEK"),
},
.driver_data = (void *) &(enum oxp_board) {aya_neo_geek},
},
{ {
.matches = { .matches = {
DMI_MATCH(DMI_BOARD_VENDOR, "ONE-NETBOOK"), DMI_MATCH(DMI_BOARD_VENDOR, "ONE-NETBOOK"),
...@@ -178,8 +194,10 @@ static int oxp_platform_read(struct device *dev, enum hwmon_sensor_types type, ...@@ -178,8 +194,10 @@ static int oxp_platform_read(struct device *dev, enum hwmon_sensor_types type,
if (ret) if (ret)
return ret; return ret;
switch (board) { switch (board) {
case aya_neo_2:
case aya_neo_air: case aya_neo_air:
case aya_neo_air_pro: case aya_neo_air_pro:
case aya_neo_geek:
case oxp_mini_amd: case oxp_mini_amd:
*val = (*val * 255) / 100; *val = (*val * 255) / 100;
break; break;
...@@ -217,8 +235,10 @@ static int oxp_platform_write(struct device *dev, enum hwmon_sensor_types type, ...@@ -217,8 +235,10 @@ static int oxp_platform_write(struct device *dev, enum hwmon_sensor_types type,
if (val < 0 || val > 255) if (val < 0 || val > 255)
return -EINVAL; return -EINVAL;
switch (board) { switch (board) {
case aya_neo_2:
case aya_neo_air: case aya_neo_air:
case aya_neo_air_pro: case aya_neo_air_pro:
case aya_neo_geek:
case oxp_mini_amd: case oxp_mini_amd:
val = (val * 100) / 255; val = (val * 100) / 255;
break; break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment