public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Andres Salomon <dilinger@queued.net>
To: "Pali Rohár" <pali@kernel.org>
Cc: "Armin Wolf" <W_Armin@gmx.de>,
	linux-kernel@vger.kernel.org,
	platform-driver-x86@vger.kernel.org,
	"Matthew Garrett" <mjg59@srcf.ucam.org>,
	"Sebastian Reichel" <sre@kernel.org>,
	"Hans de Goede" <hdegoede@redhat.com>,
	"Ilpo Järvinen" <ilpo.jarvinen@linux.intel.com>,
	linux-pm@vger.kernel.org, Dell.Client.Kernel@dell.com
Subject: Re: [PATCH v2 1/2] platform/x86:dell-laptop: Add knobs to change battery charge settings
Date: Fri, 26 Jul 2024 00:25:38 -0400	[thread overview]
Message-ID: <20240726002538.558a4a97@5400> (raw)
In-Reply-To: <20240726000409.ejnvqkzco664q3zb@pali>

On Fri, 26 Jul 2024 02:04:09 +0200
Pali Rohár <pali@kernel.org> wrote:

> On Friday 26 July 2024 01:48:50 Armin Wolf wrote:
> > Am 26.07.24 um 00:15 schrieb Pali Rohár:
> >   
> > > On Thursday 25 July 2024 16:24:57 Andres Salomon wrote:  
> > > > On Thu, 25 Jul 2024 01:01:58 +0200
> > > > Pali Rohár <pali@kernel.org> wrote:
> > > >   
> > > > > On Wednesday 24 July 2024 18:23:18 Andres Salomon wrote:  
[...]
> > > > > 
> > > > > The issue here is: how to tell kernel that the particular
> > > > > dell_battery_hook has to be bound with the primary battery?
> > > > >   
> > > > So from userspace, we've got the expectation that multiple batteries
> > > > would show up as /sys/class/power_supply/BAT0, /sys/class/power_supply/BAT1,
> > > > and so on.  
> > > Yes, I hope so.
> > >   
> > > > The current BAT0 entry shows things like 'capacity' even without this
> > > > patch, and we're just piggybacking off of that to add charge_type and
> > > > other entries. So there shouldn't be any confusion there, agreed?  
> > > I have not looked at the battery_hook_register() code yet (seems that I
> > > would have to properly read it and understand it). But does it mean that
> > > battery_hook_register() is adding hook just for "BAT0"?
> > > 
> > > What I mean: cannot that hook be registered to "BAT1" too? Because if
> > > yes then we should prevent it. Otherwise this hook which is for "Dell
> > > Primary Battery" could be registered also for secondary battery "BAT1".
> > > (I hope that now it is more clear what I mean).  
> > 
> > Hi,
> > 
> > the battery hook is being registered to all ACPI batteries present on a given system,
> > so you need to do some manual filtering when .add_battery() is called.  
> 
> Ok. So it means that the filtering based on the primary battery in
> add_battery callback is needed.
> 

Thanks for the explanations. Seems simple enough to fix that, as some of
the other drivers are checking battery->desc->name for "BAT0".


One thing that I keep coming back to, and was reinforced as I looked at
include/linux/power_supply.h; the generic power supply charge_type has
values that are very close to Dells, but with different names. I could
shoehorn them in, though, with the following mappings:

POWER_SUPPLY_CHARGE_TYPE_FAST,         => "express" (aka ExpressCharge)
POWER_SUPPLY_CHARGE_TYPE_STANDARD,     => "standard"
POWER_SUPPLY_CHARGE_TYPE_ADAPTIVE,     => "adaptive"
POWER_SUPPLY_CHARGE_TYPE_CUSTOM,       => "custom"
POWER_SUPPLY_CHARGE_TYPE_LONGLIFE,     => "primarily_ac"

The main difference is that Primarily AC is described and documented as
slightly different than Long Life, but I suspect the result is roughly
the same thing. And the naming "Fast" and "Long Life" wouldn't match the
BIOS naming of "ExpressCharge" and "Primarily AC".

Until now I've opted to match the BIOS naming, but I'm curious what others
think before I send V3 of the patches.


-- 
I'm available for contract & employment work, see:
https://spindle.queued.net/~dilinger/resume-tech.pdf

  reply	other threads:[~2024-07-26  4:25 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-07-24  2:05 [PATCH v2 1/2] platform/x86:dell-laptop: Add knobs to change battery charge settings Andres Salomon
2024-07-24  2:07 ` [PATCH v2 2/2] platform/x86:dell-laptop: remove duplicate code w/ battery function Andres Salomon
2024-07-24 20:50   ` Pali Rohár
2024-07-24 20:34 ` [PATCH v2 1/2] platform/x86:dell-laptop: Add knobs to change battery charge settings Pali Rohár
2024-07-24 20:45   ` Pali Rohár
2024-07-24 22:23     ` Andres Salomon
2024-07-24 23:01       ` Pali Rohár
2024-07-25 20:24         ` Andres Salomon
2024-07-25 22:15           ` Pali Rohár
2024-07-25 23:48             ` Armin Wolf
2024-07-26  0:04               ` Pali Rohár
2024-07-26  4:25                 ` Andres Salomon [this message]
2024-07-26 18:42                   ` Armin Wolf
2024-07-26 18:46                     ` Armin Wolf
2024-08-07 21:28                       ` Andres Salomon
2024-08-07 21:44                         ` Pali Rohár
2024-08-07 22:05                           ` Andres Salomon
2024-08-07 23:51                             ` Sebastian Reichel
2024-08-11  5:28                 ` Armin Wolf
2024-08-12 13:54 ` Hans de Goede

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=20240726002538.558a4a97@5400 \
    --to=dilinger@queued.net \
    --cc=Dell.Client.Kernel@dell.com \
    --cc=W_Armin@gmx.de \
    --cc=hdegoede@redhat.com \
    --cc=ilpo.jarvinen@linux.intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=mjg59@srcf.ucam.org \
    --cc=pali@kernel.org \
    --cc=platform-driver-x86@vger.kernel.org \
    --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