lkml.org 
[lkml]   [2022]   [May]   [17]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
SubjectRe: [PATCH v2 2/2] extcon: Add extcon-regulator driver
From
On 22. 5. 17. 19:07, Zev Weiss wrote:
> On Mon, May 16, 2022 at 08:15:31PM PDT, Chanwoo Choi wrote:
>> Hi Mark, Zev,
>>
>> On 5/17/22 10:03 AM, Zev Weiss wrote:
>>> [Adding Sebastian for drivers/power discussion]
>>>
>>> On Mon, May 09, 2022 at 08:24:16AM PDT, Mark Brown wrote:
>>>> On Mon, May 09, 2022 at 09:24:39PM +0900, Chanwoo Choi wrote:
>>>>> Hi Zev,
>>>>>
>>>>> I checked this patch. But, it doesn't look like the extcon provider
>>>>> driver. Because basically, extcon provider driver need the circuit
>>>>> in order to detect the kind of external connector. But, there are
>>>>> no any code for detection. Just add the specific sysfs attribute
>>>>> for only this driver. It is not standard interface.
>>>>
>>>> OTOH it's something where if I look at the physical system with the
>>>> hardware there's a clearly visible external connector that I can point
>>>> to - it just happens to not support hotplug. It's not clear what other
>>>> system it would sit in, and it seems like an application that displays
>>>> external connections on a system in a UI would be able to do something
>>>> sensible with it.
>>>
>>> Chanwoo, any further thoughts on Mark's reasoning above?
>>>
>>> I certainly understand the reluctance to add an extcon driver that
>>> doesn't really do anything with the extcon API, and I have no idea when
>>> we might end up enhancing it to do something more meaningful with that
>>> API (I don't know of any hardware at the moment that would need it).
>>>
>>> That said, as Mark points out, the hardware *is* ultimately an "external
>>> connector" (if a very simplistic one).
>>>
>>> Do you have any other ideas for where this functionality could go? Greg
>>> wasn't enthusiastic about a previous revision that had it in
>>> drivers/misc -- though now a fair amount of what was in that version is
>>> now going to be in the regulator core, so maybe that could be
>>> reconsidered?
>>>
>>> Or maybe something under drivers/power, though it's not really a supply
>>> or a reset device...drivers/power/output.c or something?
>>>
>>> Personally I don't have any terribly strong opinions on this, I'd just
>>> like to reach a mutually-agreeable consensus on a place for it to live.
>>>
>>
>> After Mark's reply, I considered extcon provider driver without hotplug
>> feature. I think that extcon need to support the following something:
>>
>> 1. Need to specify the type of external connector instead of EXTCON_NONE.
>> 2. extcon subsystem provides the standard sysfs interface
>> for non-hotplug extcon provider driver.
>> 3. User can control the state of external connector via
>> the standard extcon sysfs attributes.
>>
>>
>> For example of extcon provider driver,
>> static const unsigned int supported_cables[] = {
>> EXTCON_USB,
>> EXTCON_NONE,
>> };
>>
>> int extcon_usb_callback(int connector_id, int property_id, int state, void *data) {
>> struct extcon_dev *edev = data;
>>
>> if (id == EXTCON_USB && property_id == EXTCON_NOT_HOTPLUG) {
>> regulator_enable() or regulator_disable()
>> }
>>
>> return 0;
>> }
>>
>> int extcon_provider_probe(...) {
>> edev = devm_extcon_dev_allocate(dev, supported_cables);
>>
>> devm_extcon_dev_register(dev, edev);
>>
>> extcon_set_property_capability(edev, EXTCON_USB, EXTCON_NOT_HOTPLUG);
>> extcon_set_property_callback(edev, EXTCON_USB, extcon_usb_callback);
>>
>> ...
>> }
>>
>> And then user can change the state of each external connector
>> via '/sys/class/extcon/extcon0/cable.0/state'
>> if cable.0 contains the EXTCON_NOT_HOTPLUG property.
>>
>> I'm designing this approach. But it has not yet decided
>> because try to check that this approach is right or not.
>>
>
> Okay, so if I'm understanding correctly we'd be using the extcon
> subsystem's existing attached/detached state to model (and control) the
> on/off state of the power output?

The extcon provides the sysfs interface to control the state of each cable
and then passes the extra role to each extcon provider driver with using
the registered callback. The extcon core don't care the detailed operation
in registered callback. Just provide the interface from sysfs interface
to extcon provider driver and then handle the state of external connector.

In your case, you might enable/disable the regulator on the registered callback
like extcon_usb_callback in example.

>
> That could work for the particular hardware I'm dealing with at the
> moment, though I'd be a bit concerned that conflating the two might
> constrain things in the future if there's some similar but slightly more
> sophisticated hardware we'd want to extend the same driver to support.
> For example on a power connector with some capability for presence
> detection, we might want to be able to support "attached but powered
> off" as a valid state for it to be in -- would the above approach be
> able to do that?

Yes. As I mentioned above, the regulator control is extra role
for the specific extcon provider driver. Any extcon provider driver
without hotplug feature might control the audio volume in the registered
callback like extcon_usb_callback in example. The extra job depends
on the extcon provider driver.

>
>
> Thanks,
> Zev
>


--
Best Regards,
Samsung Electronics
Chanwoo Choi

\
 
 \ /
  Last update: 2022-05-17 20:16    [W:0.053 / U:0.180 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site