From: "Ilpo Järvinen" <ilpo.jarvinen@linux.intel.com>
To: Nikita Kravets <teackot@gmail.com>
Cc: platform-driver-x86@vger.kernel.org,
Hans de Goede <hdegoede@redhat.com>,
Aakash Singh <mail@singhaakash.dev>,
Jose Angel Pastrana <japp0005@red.ujaen.es>
Subject: Re: [PATCH v2 3/3] platform/x86: msi-ec: Add more EC configs
Date: Mon, 9 Oct 2023 14:40:53 +0300 (EEST) [thread overview]
Message-ID: <4e788e51-ec7b-4dc2-ed66-419e94514aa9@linux.intel.com> (raw)
In-Reply-To: <20231006175352.1753017-9-teackot@gmail.com>
On Fri, 6 Oct 2023, Nikita Kravets wrote:
> This patch adds configurations for new EC firmware from the downstream
> version of the driver.
>
> Cc: Aakash Singh <mail@singhaakash.dev>
> Cc: Jose Angel Pastrana <japp0005@red.ujaen.es>
> Signed-off-by: Nikita Kravets <teackot@gmail.com>
> ---
> drivers/platform/x86/msi-ec.c | 467 ++++++++++++++++++++++++++++++++++
> 1 file changed, 467 insertions(+)
>
> diff --git a/drivers/platform/x86/msi-ec.c b/drivers/platform/x86/msi-ec.c
> index 3074aee878c1..f19504dbf164 100644
> --- a/drivers/platform/x86/msi-ec.c
> +++ b/drivers/platform/x86/msi-ec.c
> @@ -667,6 +667,467 @@ static struct msi_ec_conf CONF7 __initdata = {
> },
> };
>
> +static const char * const ALLOWED_FW_8[] __initconst = {
> + "14F1EMS1.115",
> + NULL
> +};
> +
> +static struct msi_ec_conf CONF8 __initdata = {
> + .allowed_fw = ALLOWED_FW_8,
> + .charge_control = {
> + .address = 0xd7,
> + .offset_start = 0x8a,
> + .offset_end = 0x80,
> + .range_min = 0x8a,
> + .range_max = 0xe4,
> + },
> + .webcam = {
> + .address = 0x2e,
> + .block_address = MSI_EC_ADDR_UNSUPP,
> + .bit = 1,
> + },
> + .fn_win_swap = {
> + .address = 0xe8,
> + .bit = 4,
> + },
> + .cooler_boost = {
> + .address = 0x98,
> + .bit = 7,
> + },
> + .shift_mode = {
> + .address = 0xd2,
> + .modes = {
> + { SM_ECO_NAME, 0xc2 },
> + { SM_COMFORT_NAME, 0xc1 },
> + { SM_SPORT_NAME, 0xc0 },
> + MSI_EC_MODE_NULL
> + },
> + },
> + .super_battery = {
> + .address = 0xeb,
> + .mask = 0x0f,
> + },
> + .fan_mode = {
> + .address = 0xd4,
> + .modes = {
> + { FM_AUTO_NAME, 0x0d },
> + { FM_SILENT_NAME, 0x1d },
> + { FM_BASIC_NAME, 0x4d },
> + MSI_EC_MODE_NULL
> + },
> + },
> + .cpu = {
> + .rt_temp_address = 0x68,
> + .rt_fan_speed_address = 0x71,
> + .rt_fan_speed_base_min = 0x19,
> + .rt_fan_speed_base_max = 0x37,
> + .bs_fan_speed_address = MSI_EC_ADDR_UNSUPP,
> + .bs_fan_speed_base_min = 0x00,
> + .bs_fan_speed_base_max = 0x0f,
> + },
> + .gpu = {
> + .rt_temp_address = MSI_EC_ADDR_UNKNOWN,
> + .rt_fan_speed_address = MSI_EC_ADDR_UNKNOWN,
> + },
> + .leds = {
> + .micmute_led_address = MSI_EC_ADDR_UNSUPP,
> + .mute_led_address = 0x2d,
> + .bit = 1,
> + },
> + .kbd_bl = {
> + .bl_mode_address = MSI_EC_ADDR_UNKNOWN, // ?
> + .bl_modes = { 0x00, 0x08 }, // ?
> + .max_mode = 1, // ?
> + .bl_state_address = MSI_EC_ADDR_UNSUPP, // not functional
I only too patch 2/3 becase there seems to be some configuration option
which causes // comments to trigger warning (that can be made errors
with another config option) so please use only /* */ comments.
--
i.
next prev parent reply other threads:[~2023-10-09 11:41 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-10-06 17:53 [PATCH v2 0/3] platform/x86: msi-ec: add and fix EC configs Nikita Kravets
2023-10-06 17:53 ` [PATCH v2 1/3] platform/x86: msi-ec: Fix the 3rd config Nikita Kravets
2023-10-09 11:27 ` Ilpo Järvinen
2023-10-11 9:22 ` Hans de Goede
2023-10-06 17:53 ` [PATCH v2 2/3] platform/x86: msi-ec: rename fn_super_swap Nikita Kravets
2023-10-09 11:39 ` Ilpo Järvinen
2023-10-06 17:53 ` [PATCH v2 3/3] platform/x86: msi-ec: Add more EC configs Nikita Kravets
2023-10-09 11:40 ` Ilpo Järvinen [this message]
2023-10-09 11:57 ` Hans de Goede
2023-10-09 12:34 ` Ilpo Järvinen
2023-10-09 12:57 ` Hans de Goede
2023-10-09 13:10 ` Ilpo Järvinen
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=4e788e51-ec7b-4dc2-ed66-419e94514aa9@linux.intel.com \
--to=ilpo.jarvinen@linux.intel.com \
--cc=hdegoede@redhat.com \
--cc=japp0005@red.ujaen.es \
--cc=mail@singhaakash.dev \
--cc=platform-driver-x86@vger.kernel.org \
--cc=teackot@gmail.com \
/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