From: "Ilpo Järvinen" <ilpo.jarvinen@linux.intel.com>
To: platform-driver-x86@vger.kernel.org,
Antheas Kapenekakis <lkml@antheas.dev>
Cc: linux-hwmon@vger.kernel.org, linux-doc@vger.kernel.org,
linux-pm@vger.kernel.org, Guenter Roeck <linux@roeck-us.net>,
Jean Delvare <jdelvare@suse.com>,
Jonathan Corbet <corbet@lwn.net>,
Joaquin Ignacio Aramendia <samsagax@gmail.com>,
Derek J Clark <derekjohn.clark@gmail.com>,
Kevin Greenberg <kdgreenberg234@protonmail.com>,
Joshua Tam <csinaction@pm.me>,
Parth Menon <parthasarathymenon@gmail.com>,
Eileen <eileen@one-netbook.com>,
linux-kernel@vger.kernel.org, sre@kernel.org,
linux@weissschuh.net, hdegoede@redhat.com,
mario.limonciello@amd.com
Subject: Re: [PATCH v10 00/16] hwmon: (oxpsensors) Add devices, features, fix ABI and move to platform/x86
Date: Fri, 25 Apr 2025 16:50:59 +0300 [thread overview]
Message-ID: <174558905993.2965.3080490340204327476.b4-ty@linux.intel.com> (raw)
In-Reply-To: <20250425111821.88746-1-lkml@antheas.dev>
On Fri, 25 Apr 2025 13:18:05 +0200, Antheas Kapenekakis wrote:
> This four part series updates the oxpsensors module to bring it in line
> with its Windows OneXPlayer counterpart. First, it adds support for all
> 2024, 2025 OneXPlayer handhelds and their special variants. Then, it moves
> the module to platform/x86 to allow for including more EC features.
>
> Then, it adds the new charge limiting and bypass features that were first
> introduced in the X1 and retrofit to older OneXFly variants and for
> controlling the turbo led found in the X1 models. For Bypass, it adds a new
> charge_behaviour variant called inhibit-charge-s0.
>
> [...]
Thank you for your contribution, it has been applied to my local
review-ilpo-next branch. Note it will show up in the public
platform-drivers-x86/review-ilpo-next branch only once I've pushed my
local branch there, which might take a while.
The list of commits applied:
[01/16] hwmon: (oxp-sensors) Distinguish the X1 variants
commit: 217d55ca13d22ba6af7e96ac2d28c2ef6927fc54
[02/16] hwmon: (oxp-sensors) Add all OneXFly variants
commit: 9f4c9ec158fa8fa4afcdbcbff9c9a9a900dc9c2f
[03/16] platform/x86: oxpec: Move hwmon/oxp-sensors to platform/x86
commit: fe812896e55d0d8e2a45bcf994cadc80fe912fb5
[04/16] ABI: testing: sysfs-class-oxp: add missing documentation
commit: 05f8e5928bfd37416380e8e0994c5f4fd1b615c8
[05/16] ABI: testing: sysfs-class-oxp: add tt_led attribute documentation
commit: 7ba14e4eec62985ae2021ef7e06d537b8e4c8712
[06/16] platform/x86: oxpec: Rename ec group to tt_toggle
commit: 8e1963b9d84a3db10cdd2a807dc3fe401837d228
[07/16] platform/x86: oxpec: Add turbo led support to X1 devices
commit: 5485a80150ff03b6784bfbb194858244ae5f991d
[08/16] platform/x86: oxpec: Move pwm_enable read to its own function
commit: aa682cff3097dfa2370298ecebd33ff1fb64bab8
[09/16] platform/x86: oxpec: Move pwm value read/write to separate functions
commit: 0ba0d67b0608c15b407491712af1c2a3d5140492
[10/16] platform/x86: oxpec: Move fan speed read to separate function
commit: 653feeccdd2eb1dfe44923f4c0bbf50a948c7a07
[11/16] platform/x86: oxpec: Adhere to sysfs-class-hwmon and enable pwm on 2
commit: 7dea472a8b2814013213f4fed290f5f86c6cc7cb
[12/16] platform/x86: oxpec: Follow reverse xmas convention for tt_toggle
commit: bb9854e9819ae5c29602d4985313cde2d07f6847
[13/16] power: supply: add inhibit-charge-awake to charge_behaviour
commit: 468182a839f88fecab915792cbb98ad7328be266
[14/16] platform/x86: oxpec: Add charge threshold and behaviour to OneXPlayer
commit: 202593d1e86bf3ccb1c1091713760b6f44641718
[15/16] platform/x86: oxpec: Rename rval to ret in tt_toggle
commit: 57c775a990a742f7cc2650a5cbfc103d6b4a015d
[16/16] platform/x86: oxpec: Convert defines to using tabs
commit: f5612600314bcce86934318601501e2d8301176d
--
i.
prev parent reply other threads:[~2025-04-25 13:51 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-04-25 11:18 [PATCH v10 00/16] hwmon: (oxpsensors) Add devices, features, fix ABI and move to platform/x86 Antheas Kapenekakis
2025-04-25 11:18 ` [PATCH v10 01/16] hwmon: (oxp-sensors) Distinguish the X1 variants Antheas Kapenekakis
2025-04-25 11:18 ` [PATCH v10 02/16] hwmon: (oxp-sensors) Add all OneXFly variants Antheas Kapenekakis
2025-04-25 11:18 ` [PATCH v10 03/16] platform/x86: oxpec: Move hwmon/oxp-sensors to platform/x86 Antheas Kapenekakis
2025-04-25 11:18 ` [PATCH v10 04/16] ABI: testing: sysfs-class-oxp: add missing documentation Antheas Kapenekakis
2025-04-25 11:18 ` [PATCH v10 05/16] ABI: testing: sysfs-class-oxp: add tt_led attribute documentation Antheas Kapenekakis
2025-04-25 11:18 ` [PATCH v10 06/16] platform/x86: oxpec: Rename ec group to tt_toggle Antheas Kapenekakis
2025-04-25 11:18 ` [PATCH v10 07/16] platform/x86: oxpec: Add turbo led support to X1 devices Antheas Kapenekakis
2025-04-25 11:18 ` [PATCH v10 08/16] platform/x86: oxpec: Move pwm_enable read to its own function Antheas Kapenekakis
2025-04-25 11:18 ` [PATCH v10 09/16] platform/x86: oxpec: Move pwm value read/write to separate functions Antheas Kapenekakis
2025-04-25 11:18 ` [PATCH v10 10/16] platform/x86: oxpec: Move fan speed read to separate function Antheas Kapenekakis
2025-04-25 11:18 ` [PATCH v10 11/16] platform/x86: oxpec: Adhere to sysfs-class-hwmon and enable pwm on 2 Antheas Kapenekakis
2025-04-25 11:18 ` [PATCH v10 12/16] platform/x86: oxpec: Follow reverse xmas convention for tt_toggle Antheas Kapenekakis
2025-04-25 11:18 ` [PATCH v10 13/16] power: supply: add inhibit-charge-awake to charge_behaviour Antheas Kapenekakis
2025-04-25 11:18 ` [PATCH v10 14/16] platform/x86: oxpec: Add charge threshold and behaviour to OneXPlayer Antheas Kapenekakis
2025-04-25 11:18 ` [PATCH v10 15/16] platform/x86: oxpec: Rename rval to ret in tt_toggle Antheas Kapenekakis
2025-04-25 11:18 ` [PATCH v10 16/16] platform/x86: oxpec: Convert defines to using tabs Antheas Kapenekakis
2025-04-25 13:50 ` Ilpo Järvinen [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=174558905993.2965.3080490340204327476.b4-ty@linux.intel.com \
--to=ilpo.jarvinen@linux.intel.com \
--cc=corbet@lwn.net \
--cc=csinaction@pm.me \
--cc=derekjohn.clark@gmail.com \
--cc=eileen@one-netbook.com \
--cc=hdegoede@redhat.com \
--cc=jdelvare@suse.com \
--cc=kdgreenberg234@protonmail.com \
--cc=linux-doc@vger.kernel.org \
--cc=linux-hwmon@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=linux@roeck-us.net \
--cc=linux@weissschuh.net \
--cc=lkml@antheas.dev \
--cc=mario.limonciello@amd.com \
--cc=parthasarathymenon@gmail.com \
--cc=platform-driver-x86@vger.kernel.org \
--cc=samsagax@gmail.com \
--cc=sre@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox