From: Sebastian Reichel <sre@kernel.org>
To: Hans de Goede <hdegoede@redhat.com>
Cc: Liam Breck <liam@networkimprov.net>,
Andy Shevchenko <andriy.shevchenko@linux.intel.com>,
Tony Lindgren <tony@atomide.com>,
linux-pm@vger.kernel.org, Liam Breck <kernel@networkimprov.net>
Subject: Re: [04/15] power: supply: bq24190_charger: Add no_register_reset pdata flag
Date: Mon, 20 Mar 2017 06:27:15 +0100 [thread overview]
Message-ID: <20170320052715.hrgaxsxwdrv7ynbu@earth> (raw)
In-Reply-To: <12321f48-def6-33cb-1df5-853ecc8f1061@redhat.com>
[-- Attachment #1: Type: text/plain, Size: 4675 bytes --]
Hi,
On Sun, Mar 19, 2017 at 10:42:00AM +0100, Hans de Goede wrote:
> On 19-03-17 09:22, Hans de Goede wrote:
> > > Then consider the pseudo-driver concept. That would be generally
> > > useful for any charger/gauge pairing. Both drivers would provide
> > > callbacks to it.
> >
> > So your rejecting a patch which adds 30 lines of code for some
> > vague generic pseudo-driver concept without offering any design
> > direction on what such a concept would look like and without taking
> > into account that so far this seems to be a one-of problem.
>
> I still think the pseudo-driver idea is a bad idea. Having 1 driver
> which somehow combines things from 2 drivers without clear semantics
> feels wrong.
Apart from being ugly, that does not work anyways, how should the
drivers know when its ok to expose their info to userspace and when
its not.
> As said before I think your suggested solution lacks any
> design direction, I've been thinking about this a bit more and
> I've come up with an alternative solution with clearly defined
> goals and semantics.
>
> We want one driver which is solidly in control of the charger
> since getting that wrong is quite bad and we want to extend
> the information it is exporting to userspace in the form of
> power_supply properties with some extra info.
>
> So taking that as a starting point and generalizing that,
> I think that if we want we can make something more generic then
> my original patch for this. My idea is to introduce something
> called a power_supply_properties_provider, with an API
> like this:
Thanks for thinking about this. From what I can see it should
be enough to just avoid exposing a battery device at all in
the charger driver, though. It does not really provide useful
information anyways.
> typedef int (*power_supply_properties_provider_get_property_t)(
> enum power_supply_property prop, union power_supply_propval *val,
> void *driver_data);
>
> struct power_supply_properties_provider;
>
> struct power_supply_properties_provider *
> power_supply_properties_provider_register(
> const char *name,
> power_supply_properties_provider_get_property_t get_property,
> const enum power_supply_property *properties,
> size_t num_properties,
> void *driver_data);
>
> void power_supply_properties_provider_unregister(
> struct power_supply_properties_provider *pspp);
>
> struct power_supply_properties_provider *
> power_supply_properties_provider_get(const char *name);
>
> void power_supply_properties_provider_put(
> struct power_supply_properties_provider *pspp);
>
> int power_supply_properties_provider_merge_properties(
> struct power_supply_properties_provider *pspp,
> const enum power_supply_property *properties,
> size_t num_properties,
> enum power_supply_property **merged_properties_ret,
> size_t *merged_num_properties_ret);
>
> int power_supply_properties_provider_get_property(
> struct power_supply_properties_provider *pspp,
> enum power_supply_property prop,
> union power_supply_propval *val);
>
> So in this case the faul-gauge driver would call
> power_supply_properties_provider_register() from probe and
> power_supply_properties_provider_unregister() from remove.
>
> The struct power_supply_properties_provider will be ref-counted
> so that it will stick around after unregister in case any
> consumers who have gotten a ref through
> power_supply_properties_provider_get can still call
> power_supply_properties_provider_get_property, which after
> unregister will simply always return -ENXIO.
>
> A driver wanting to use extra properties like bq24190_charger
> will call power_supply_properties_provider_get (with a name
> provided through platform_data), use a dynamically allocated
> struct power_supply_desc and fill the properties of that
> using power_supply_properties_provider_merge_properties
> to merge its own properties with the
> power_supply_properties_provider's properties and in its
> get_property method have a default label which calls
> power_supply_properties_provider_get_property.
>
> This would still add quite a bit more code then my original
> patch for what may very well end up being a one-of solution,
> but I guess we may encounter this problem more often and
> this will offer a nice generic and clean way for dealing
> with adding extra info from other sources to a power_supply
> driver, so I'm happy to turn this idea / design into working
> code if people like this better then my original patch.
>
> Liam, Sebastian what do you think of the above proposal?
>
> Regards,
>
> Hans
>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
next prev parent reply other threads:[~2017-03-20 5:27 UTC|newest]
Thread overview: 89+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-03-17 9:55 [PATCH 00/15] Add Intel Cherry Trail Whiskey Cove PMIC support Hans de Goede
2017-03-17 9:55 ` [PATCH 01/15] mfd: Add Cherry Trail Whiskey Cove PMIC driver Hans de Goede
2017-03-17 17:00 ` Andy Shevchenko
2017-03-20 10:41 ` Lee Jones
2017-03-20 12:55 ` Andy Shevchenko
2017-03-17 9:55 ` [PATCH 02/15] ACPI / PMIC: Add opregion driver for Intel CHT Whiskey Cove PMIC Hans de Goede
2017-03-17 9:55 ` [PATCH 03/15] extcon: cht-wc: Add Intel Cherry Trail Whiskey Cove PMIC extcon driver Hans de Goede
2017-03-17 17:18 ` Andy Shevchenko
2017-03-20 18:08 ` Hans de Goede
2017-03-20 1:33 ` Chanwoo Choi
2017-03-20 13:00 ` Andy Shevchenko
2017-03-21 3:54 ` Chanwoo Choi
2017-03-21 5:21 ` Chanwoo Choi
2017-03-21 6:27 ` Chanwoo Choi
2017-03-20 19:57 ` Hans de Goede
2017-03-21 5:16 ` Chanwoo Choi
2017-03-23 15:22 ` Hans de Goede
2017-03-17 9:55 ` [PATCH 04/15] power: supply: bq24190_charger: Add no_register_reset pdata flag Hans de Goede
2017-03-17 17:20 ` Andy Shevchenko
2017-03-18 7:10 ` [04/15] " Liam Breck
2017-03-18 14:13 ` Hans de Goede
2017-03-18 18:51 ` Liam Breck
2017-03-18 22:51 ` Hans de Goede
2017-03-19 0:57 ` Liam Breck
2017-03-19 8:22 ` Hans de Goede
2017-03-19 9:42 ` Hans de Goede
2017-03-20 5:27 ` Sebastian Reichel [this message]
2017-03-20 13:54 ` Hans de Goede
2017-03-20 17:04 ` Hans de Goede
2017-03-20 17:51 ` Liam Breck
2017-03-20 18:01 ` Hans de Goede
2017-03-20 18:19 ` Liam Breck
2017-03-20 19:22 ` Hans de Goede
2017-03-20 21:14 ` Sebastian Reichel
2017-03-20 21:34 ` Liam Breck
2017-03-20 22:01 ` Hans de Goede
2017-03-20 21:15 ` Liam Breck
2017-03-19 14:54 ` Andy Shevchenko
2017-03-19 18:13 ` Hans de Goede
2017-03-17 9:55 ` [PATCH 05/15] power: supply: bq24190_charger: Limit charging voltage to 4.3V Hans de Goede
2017-03-18 7:10 ` [05/15] " Liam Breck
2017-03-18 14:24 ` Hans de Goede
2017-03-18 19:01 ` Liam Breck
2017-03-17 9:55 ` [PATCH 06/15] power: supply: bq24190_charger: Use i2c-core irq-mapping code Hans de Goede
2017-03-17 17:24 ` Andy Shevchenko
2017-03-20 4:46 ` Sebastian Reichel
2017-03-18 7:10 ` [06/15] " Liam Breck
2017-03-18 14:16 ` Hans de Goede
2017-03-17 9:55 ` [PATCH 07/15] power: supply: bq24190_charger: Add support for bq24192[i] Hans de Goede
2017-03-18 7:10 ` [07/15] " Liam Breck
2017-03-18 14:30 ` Hans de Goede
2017-03-18 19:10 ` Liam Breck
2017-03-18 22:55 ` Hans de Goede
2017-03-17 9:55 ` [PATCH 08/15] power: supply: bq24190_charger: Add support for external fuel gauge Hans de Goede
2017-03-18 7:10 ` [08/15] " Liam Breck
2017-03-18 14:31 ` Hans de Goede
2017-03-18 19:18 ` Liam Breck
2017-03-18 23:02 ` Hans de Goede
2017-03-19 1:01 ` Liam Breck
2017-03-19 3:52 ` Liam Breck
2017-03-17 9:55 ` [PATCH 09/15] power: supply: bq24190_charger: Add voltage_max_design prop to battery Hans de Goede
2017-03-18 7:10 ` [09/15] " Liam Breck
2017-03-18 14:34 ` Hans de Goede
2017-03-18 19:34 ` Liam Breck
2017-03-18 23:10 ` Hans de Goede
2017-03-20 5:12 ` [PATCH 09/15] " Sebastian Reichel
2017-03-17 9:55 ` [PATCH 10/15] power: supply: bq24190_charger: Use extcon to determine ilimit, 5v boost Hans de Goede
2017-03-17 17:33 ` Andy Shevchenko
2017-03-20 22:38 ` Hans de Goede
2017-03-18 7:10 ` [10/15] " Liam Breck
2017-03-18 14:42 ` Hans de Goede
2017-03-18 19:57 ` Liam Breck
2017-03-18 23:11 ` Hans de Goede
2017-03-20 4:52 ` [PATCH 10/15] " Sebastian Reichel
2017-03-17 9:55 ` [PATCH 11/15] i2c: core: Allow getting ACPI info by index Hans de Goede
2017-03-17 17:35 ` Andy Shevchenko
2017-03-17 9:55 ` [PATCH 12/15] i2c: core: Add new i2c_acpi_new_device helper function Hans de Goede
2017-03-17 17:37 ` Andy Shevchenko
2017-03-22 15:59 ` Hans de Goede
2017-03-17 9:55 ` [PATCH 13/15] i2c: core: Allow drivers to specify index for irq to get from of / ACPI Hans de Goede
2017-03-17 17:41 ` Andy Shevchenko
2017-03-20 8:55 ` kbuild test robot
2017-03-17 9:55 ` [PATCH 14/15] power: supply: Add driver for Cherry Trail Whiskey Cove PMIC Fuel Gauge Hans de Goede
2017-03-17 17:58 ` Andy Shevchenko
2017-03-22 17:03 ` Hans de Goede
2017-03-20 5:07 ` Sebastian Reichel
2017-03-17 9:55 ` [PATCH 15/15] i2c-cht-wc: Add Intel Cherry Trail Whiskey Cove SMBUS controller driver Hans de Goede
2017-03-17 18:22 ` Andy Shevchenko
2017-03-23 13:58 ` 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=20170320052715.hrgaxsxwdrv7ynbu@earth \
--to=sre@kernel.org \
--cc=andriy.shevchenko@linux.intel.com \
--cc=hdegoede@redhat.com \
--cc=kernel@networkimprov.net \
--cc=liam@networkimprov.net \
--cc=linux-pm@vger.kernel.org \
--cc=tony@atomide.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