From: Armin Wolf <W_Armin@gmx.de>
To: Kurt Borja <kuurtb@gmail.com>
Cc: hdegoede@redhat.com, ilpo.jarvinen@linux.intel.com,
linux-kernel@vger.kernel.org,
platform-driver-x86@vger.kernel.org
Subject: Re: [PATCH v10 4/5] alienware-wmi: added force module parameters
Date: Wed, 30 Oct 2024 00:13:45 +0100 [thread overview]
Message-ID: <677c9b97-8eef-4001-a276-e9bc68538b81@gmx.de> (raw)
In-Reply-To: <20241029135354.5937-2-kuurtb@gmail.com>
Am 29.10.24 um 14:53 schrieb Kurt Borja:
> Added force_platform_profile and force_gmode unsafe module parameters,
> allowing users to force `thermal` and `gmode` quirks respectively.
>
> Signed-off-by: Kurt Borja <kuurtb@gmail.com>
> ---
> v10:
> - Introduced
> ---
> drivers/platform/x86/dell/alienware-wmi.c | 18 ++++++++++++++++++
> 1 file changed, 18 insertions(+)
>
> diff --git a/drivers/platform/x86/dell/alienware-wmi.c b/drivers/platform/x86/dell/alienware-wmi.c
> index 1d62c2ce7..91f0e09d0 100644
> --- a/drivers/platform/x86/dell/alienware-wmi.c
> +++ b/drivers/platform/x86/dell/alienware-wmi.c
> @@ -42,6 +42,14 @@ MODULE_LICENSE("GPL");
> MODULE_ALIAS("wmi:" LEGACY_CONTROL_GUID);
> MODULE_ALIAS("wmi:" WMAX_CONTROL_GUID);
>
> +static bool force_platform_profile;
> +module_param_unsafe(force_platform_profile, bool, 0);
> +MODULE_PARM_DESC(force_platform_profile, "Forces auto-detecting thermal profiles without checking if WMI thermal backend is available");
> +
> +static bool force_gmode;
> +module_param_unsafe(force_gmode, bool, 0);
> +MODULE_PARM_DESC(force_gmode, "Forces G-Mode when performance profile is selected");
> +
> enum INTERFACE_FLAGS {
> LEGACY,
> WMAX,
> @@ -1075,6 +1083,16 @@ static int __init alienware_wmi_init(void)
> if (quirks == NULL)
> quirks = &quirk_unknown;
>
> + if (force_platform_profile)
> + quirks->thermal = true;
> +
> + if (force_gmode) {
> + if (quirks->thermal)
> + quirks->gmode = true;
> + else
> + pr_warn("alienware-wmi: force_gmode requieres platform profile support");
Please drop the "alienware-wmi:" prefix, it should get added automatically.
With that being fixed:
Reviewed-by: Armin Wolf <W_Armin@gmx.de>
> + }
> +
> ret = platform_driver_register(&platform_driver);
> if (ret)
> goto fail_platform_driver;
next prev parent reply other threads:[~2024-10-29 23:13 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-29 13:51 [PATCH v10 0/5] Dell AWCC platform_profile support Kurt Borja
2024-10-29 13:52 ` [PATCH v10 1/5] alienware-wmi: fixed indentation and clean up Kurt Borja
2024-10-29 13:53 ` [PATCH v10 2/5] alienware-wmi: alienware_wmax_command() is now input size agnostic Kurt Borja
2024-10-29 13:53 ` [PATCH v10 3/5] alienware-wmi: added platform profile support Kurt Borja
2024-10-29 15:44 ` Ilpo Järvinen
2024-10-29 15:59 ` Kurt Borja
2024-10-29 17:06 ` Ilpo Järvinen
2024-10-29 23:11 ` Armin Wolf
2024-10-30 0:02 ` Kurt Borja
2024-10-29 13:53 ` [PATCH v10 4/5] alienware-wmi: added force module parameters Kurt Borja
2024-10-29 23:13 ` Armin Wolf [this message]
2024-10-30 0:03 ` Kurt Borja
2024-10-29 13:54 ` [PATCH v10 5/5] alienware-wmi: WMAX interface documentation Kurt Borja
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=677c9b97-8eef-4001-a276-e9bc68538b81@gmx.de \
--to=w_armin@gmx.de \
--cc=hdegoede@redhat.com \
--cc=ilpo.jarvinen@linux.intel.com \
--cc=kuurtb@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=platform-driver-x86@vger.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
all inboxes | Powered by JetHome®