From: Jacek Anaszewski <jacek.anaszewski@gmail.com>
To: Pavel Machek <pavel@ucw.cz>
Cc: Bjorn Andersson <bjorn.andersson@linaro.org>,
Baolin Wang <baolin.wang@linaro.org>,
rteysseyre@gmail.com, broonie@kernel.org,
linus.walleij@linaro.org, linux-leds@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v8 1/2] leds: core: Introduce LED pattern trigger
Date: Thu, 13 Sep 2018 21:37:20 +0200 [thread overview]
Message-ID: <48df13cd-af36-7753-8469-54d67937b54d@gmail.com> (raw)
In-Reply-To: <20180912204156.GA15541@amd>
On 09/12/2018 10:41 PM, Pavel Machek wrote:
> Hi!
>
>>>>> No, we are not back to full circle.
>>>>>
>>>>> Or at least we should not be.
>>>>>
>>>>> Yes, hw_pattern can have some limitation pattern does not, but if you
>>>>> take values from hw_pattern file and put them into pattern file, you
>>>>> should get the same pattern (with more power being consumed). And that
>>>>> property is kind of important for me, because it should keep the ABI
>>>>> reasonable.
>>>>
>>>> If you looked at what we agreed on with Baolin, you'd realize
>>>> that this property is in no way preserved.
>>>> This is what the whole story is about - we're introducing hw_pattern
>>>> because of difficulties in describing breathing pattern by a series
>>>> of [brightness delta_t] tuples.
>>>>
>>>> And Bjorn presented another example. I'm inclined to leave the
>>>> definition of hw_pattern semantics to the LED class drivers,
>>>> and allow them to create related sysfs files.
>>>
>>> Please lets not do that.
>>>
>>> We already have drivers that do that and it is complete
>>> nightmare. Some take binary code for the tiny CPU driving the LED.
>>>
>>> What exactly is the problem? [brightness delta_t] can describe
>>
>> You wrote:
>>
>> <quote>
>> Yes, hw_pattern can have some limitation pattern does not, but if you
>> take values from hw_pattern file and put them into pattern file, you
>> should get the same pattern (with more power being consumed).
>> </quote>
>>
>> The problem is that we decided to introduce hw_pattern to
>> to take away from drivers a responsibility for translating
>> a series of tuples, approximating the brightness curve,
>> to the values that can be written to the hardware registers.
>>
>> Because this is what would need to be done to check if hw can support
>> given series of tuples and activate it. Actually with this approach
>> we wouldn't need hw_pattern at all, since pattern alone would do.
>> But implementation thereof is what we could call a nightmare.
>>
>> What follows, your claim from the quotation is inaccurate:
>> values from hw_pattern written to the pattern file will not
>> produce the same pattern, at least in case of what was proposed
>> in [0] for drivers/leds/leds-sc27xx-bltc.c.
>
> That sounds easy, see below.
>
>>> anything single LED can do in finite time. You are right, that
>>> [brightness delta_t] sequence may get rather long, and it may be hard
>>> to turn that sequence into parameters. Are there any _interesting_
>>> sequences hardware can do but [brightness delta_t] can not store
>>> reasonably?
>>
>> Please propose the implementation of pattern_set for
>> drivers/leds/leds-sc27xx-bltc.c breathing pattern, that will
>> setup breathing mode basing on the values from tuples.
>>
>> Use Baolin's patch [0] for a reference of what hardware expects.
>>
>> [0] https://lore.kernel.org/patchwork/patch/984246/
>
> Yep, so we change documentation to require
>
> 0 rise_duration brightness high_duration brightness fall_duration 0 low_duration"
>
> ...and we are done; at least as long as user writes expected pattern
> to the file.
>
> I'd actually like to see this at begining of function:
> if (pattern[0].brightness != 0)
> return -EINVAL;
> if (pattern[2].brightness != 0)
> return -EINVAL;
> if (pattern[3].brightness != 0)
> return -EINVAL;
> if (pattern[1].brightness != pattern[2].brightness)
> return -EINVAL;
>
> ..so if user writes something unexpected, he gets the error back.
>
> What am I missing?
I suppose that breathing pattern means smooth rise and fall of
brightness. I'd even say that it should be a non-linear function.
I'm not sure if you noticed my quotation of your statement from the
previous message, because the modification you proposed doesn't
introduce any novelty to the related matter.
The difference between pattern and discussed hw_pattern
semantics is that:
- hw_pattern semantics for leds-sc27xx-bltc.c requires only four
tuples to setup the breathing pattern.
- the same four tuples written to the pattern file would result
in four brightness changes
--
Best regards,
Jacek Anaszewski
prev parent reply other threads:[~2018-09-13 19:37 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-09-04 11:01 [PATCH v8 1/2] leds: core: Introduce LED pattern trigger Baolin Wang
2018-09-04 11:01 ` [PATCH v8 2/2] leds: sc27xx: Add pattern_set/clear interfaces for LED controller Baolin Wang
2018-09-04 20:19 ` Jacek Anaszewski
2018-09-05 2:43 ` Baolin Wang
2018-09-05 6:52 ` Baolin Wang
2018-09-08 5:02 ` [PATCH v8 1/2] leds: core: Introduce LED pattern trigger Bjorn Andersson
2018-09-08 20:19 ` Jacek Anaszewski
2018-09-09 13:38 ` Baolin Wang
2018-09-10 21:20 ` Pavel Machek
2018-09-11 1:22 ` Baolin Wang
2018-09-10 21:19 ` Pavel Machek
2018-09-11 18:43 ` Jacek Anaszewski
2018-09-12 19:18 ` Pavel Machek
2018-09-12 20:18 ` Jacek Anaszewski
2018-09-12 20:41 ` Pavel Machek
2018-09-13 19:37 ` Jacek Anaszewski [this message]
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=48df13cd-af36-7753-8469-54d67937b54d@gmail.com \
--to=jacek.anaszewski@gmail.com \
--cc=baolin.wang@linaro.org \
--cc=bjorn.andersson@linaro.org \
--cc=broonie@kernel.org \
--cc=linus.walleij@linaro.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-leds@vger.kernel.org \
--cc=pavel@ucw.cz \
--cc=rteysseyre@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;
as well as URLs for NNTP newsgroup(s).