Commit b82b38a4 authored by Derek J. Clark's avatar Derek J. Clark Committed by Guenter Roeck

hwmon: (oxp-sensors) Add support for multiple new devices.

Add support for the OrangePi NEO-01. It uses different registers for PWM
manual mode, set PWM, and read fan speed than previous devices. Valid PWM
input and duty cycle is 1-244, we scale this from 1-255 to maintain
compatibility with the existing interface.

Add OneXPlayer 2 series, OneXFly, and X1 series models. The 2/X1 series use
new registers for turbo button takeover and read fan speed. X1 has an Intel
variant so change the CPU detection at init to only check for the affected
devices. While at it, adjust formatting of some constants and reorder all
cases alphabetically for consistency. Rename OXP_OLD constants to OXP_MINI
for disambiguation. Update code comments for clarity.

Add support for AYANEO models 2S, AIR 1S, Flip series, GEEK 1S, and KUN.
Signed-off-by: default avatarDerek J. Clark <derekjohn.clark@gmail.com>
Tested-by: default avatarKevin Greenberg <kdgreenberg234@protonmail.com>
Tested-by: default avatarJoshua Tam <csinaction@pm.me>
Tested-by: default avatarParth Menon <parthasarathymenon@gmail.com>
Tested-by: default avatarPhilip Müller <philm@manjaro.org>
Reported-by: default avatarkernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202408160329.TLNbIwRC-lkp@intel.com/
Message-ID: <20240822183525.27289-2-derekjohn.clark@gmail.com>
Signed-off-by: default avatarGuenter Roeck <linux@roeck-us.net>
parent 0830d3bb
...@@ -10,41 +10,59 @@ Authors: ...@@ -10,41 +10,59 @@ Authors:
Description: Description:
------------ ------------
Handheld devices from One Netbook and Aya Neo provide fan readings and fan Handheld devices from OneNetbook, AOKZOE, AYANEO, And OrangePi provide fan
control through their embedded controllers. readings and fan control through their embedded controllers.
Currently only supports AMD boards from One X Player, AOK ZOE, and some Aya Currently supports OneXPlayer devices, AOKZOE, AYANEO, and OrangePi
Neo devices. One X Player Intel boards could be supported if we could figure handheld devices. AYANEO devices preceding the AIR and OneXPlayer devices
out the EC registers and values to write to since the EC layout and model is preceding the Mini A07 are not supportable as the EC model is different
different. Aya Neo devices preceding the AIR may not be supportable as the EC and do not have manual control capabilities.
model is different and do not appear to have manual control capabilities.
Some models have a toggle for changing the behaviour of the "Turbo/Silent" Some OneXPlayer and AOKZOE models have a toggle for changing the behaviour
button of the device. It will change the key event that it triggers with of the "Turbo/Silent" button of the device. It will change the key event
a flip of the `tt_toggle` attribute. See below for boards that support this that it triggers with a flip of the `tt_toggle` attribute. See below for
function. boards that support this function.
Supported devices Supported devices
----------------- -----------------
Currently the driver supports the following handhelds: Currently the driver supports the following handhelds:
- AOK ZOE A1 - AOKZOE A1
- AOK ZOE A1 PRO - AOKZOE A1 PRO
- Aya Neo 2 - AYANEO 2
- Aya Neo AIR - AYANEO 2S
- Aya Neo AIR Plus (Mendocino) - AYANEO AIR
- Aya Neo AIR Pro - AYANEO AIR 1S
- Aya Neo Geek - AYANEO AIR Plus (Mendocino)
- AYANEO AIR Pro
- AYANEO Flip DS
- AYANEO Flip KB
- AYANEO Geek
- AYANEO Geek 1S
- AYANEO KUN
- OneXPlayer 2
- OneXPlayer 2 Pro
- OneXPlayer AMD - OneXPlayer AMD
- OneXPlayer mini AMD - OneXPlayer mini AMD
- OneXPlayer mini AMD PRO - OneXPlayer mini AMD PRO
- OneXPlayer OneXFly
- OneXPlayer X1 A
- OneXPlayer X1 i
- OneXPlayer X1 mini
- OrangePi NEO-01
"Turbo/Silent" button behaviour toggle is only supported on: "Turbo/Silent" button behaviour toggle is only supported on:
- AOK ZOE A1 - AOK ZOE A1
- AOK ZOE A1 PRO - AOK ZOE A1 PRO
- OneXPlayer 2
- OneXPlayer 2 Pro
- OneXPlayer mini AMD (only with updated alpha BIOS) - OneXPlayer mini AMD (only with updated alpha BIOS)
- OneXPlayer mini AMD PRO - OneXPlayer mini AMD PRO
- OneXPlayer OneXFly
- OneXPlayer X1 A
- OneXPlayer X1 i
- OneXPlayer X1 mini
Sysfs entries Sysfs entries
------------- -------------
......
This diff is collapsed.
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