From: Philippe Gerum <rpm@xenomai.org>
To: "Chen, Hongzhan" <hongzhan.chen@intel.com>
Cc: "xenomai@xenomai.org" <xenomai@xenomai.org>
Subject: Re: [PATCH 3/8] dovetail/clock: implement pipeline_set_timer_shot to trigger tick shot
Date: Thu, 21 Jan 2021 16:36:21 +0100 [thread overview]
Message-ID: <8735yu9ua2.fsf@xenomai.org> (raw)
In-Reply-To: <MWHPR11MB1710D0A798FD868E6A7EA71FF2A30@MWHPR11MB1710.namprd11.prod.outlook.com>
Chen, Hongzhan <hongzhan.chen@intel.com> writes:
>>-----Original Message-----
>>From: Philippe Gerum <rpm@xenomai.org>
>>Sent: Saturday, January 16, 2021 7:56 PM
>>To: Chen, Hongzhan <hongzhan.chen@intel.com>
>>Cc: xenomai@xenomai.org
>>Subject: Re: [PATCH 3/8] dovetail/clock: implement pipeline_set_timer_shot to trigger tick shot
>>
>>
>>The shortlog should mention the subsystem and the pipeline variant to
>>allow for a quick comprehension of the scope; that would be
>>"cobalt/tick: dovetail: ..." in this case.
>>
>>hongzha1 via Xenomai <xenomai@xenomai.org> writes:
>>
>>> Signed-off-by: hongzha1 <hongzhan.chen@intel.com>
>>>
>>> diff --git a/include/cobalt/kernel/dovetail/pipeline/clock.h b/include/cobalt/kernel/dovetail/pipeline/clock.h
>>> index 28d89b44b..db982d969 100644
>>> --- a/include/cobalt/kernel/dovetail/pipeline/clock.h
>>> +++ b/include/cobalt/kernel/dovetail/pipeline/clock.h
>>> @@ -17,17 +17,7 @@ static inline u64 pipeline_read_cycle_counter(void)
>>> return ktime_get_raw_fast_ns();
>>> }
>>>
>>> -static inline void pipeline_set_timer_shot(unsigned long cycles)
>>> -{
>>> - /*
>>> - * N/A. Revisit: xnclock_core_local_shot() should go to the
>>> - * I-pipe section, we do things differently on Dovetail via
>>> - * the proxy tick device. As a consequence,
>>> - * pipeline_set_timer_shot() should not be part of the
>>> - * pipeline interface.
>>> - */
>>> - TODO();
>>> -}
>>> +inline void pipeline_set_timer_shot(unsigned long cycles);
>>>
>>> static inline const char *pipeline_timer_name(void)
>>> {
>>> diff --git a/kernel/cobalt/dovetail/tick.c b/kernel/cobalt/dovetail/tick.c
>>> index 6a196496c..55039f96e 100644
>>> --- a/kernel/cobalt/dovetail/tick.c
>>> +++ b/kernel/cobalt/dovetail/tick.c
>>> @@ -16,6 +16,43 @@ extern struct xnintr nktimer;
>>>
>>> static DEFINE_PER_CPU(struct clock_proxy_device *, proxy_device);
>>>
>>> +inline void pipeline_set_timer_shot(unsigned long cycles)
>>> +{
>>> + /*
>>> + * N/A. Revisit: xnclock_core_local_shot() should go to the
>>> + * I-pipe section, we do things differently on Dovetail via
>>> + * the proxy tick device. As a consequence,
>>> + * pipeline_set_timer_shot() should not be part of the
>>> + * pipeline interface.
>>> + */
>>> + struct clock_proxy_device *dev = __this_cpu_read(proxy_device);
>>> + struct clock_event_device *real_dev = dev->real_device;
>>> + int ret;
>>> + u64 sumcyc;
>>> + ktime_t t;
>>> +
>>> + if (real_dev->features & CLOCK_EVT_FEAT_KTIME) {
>>> + t = ktime_add(cycles, xnclock_core_read_raw());
>>> + real_dev->set_next_ktime(t, real_dev);
>>> + } else {
>>> + if (cycles <= 0)
>>> + cycles = real_dev->min_delta_ns;
>>> + else {
>>> + cycles = min_t(int64_t, cycles,
>>> + real_dev->max_delta_ns);
>>> + cycles = max_t(int64_t, cycles,
>>> + real_dev->min_delta_ns);
>>> + }
>>> + sumcyc = ((u64)cycles * real_dev->mult) >> real_dev->shift;
>>> +
>>> + ret = real_dev->set_next_event(sumcyc, real_dev);
>>> + if (ret) {
>>> + ret = real_dev->set_next_event(real_dev->min_delta_ticks,
>>> + real_dev);
>>> + }
>>> + }
>>> +}
>>> +
>>> static int proxy_set_next_ktime(ktime_t expires,
>>> struct clock_event_device *proxy_dev)
>>> {
>>
>>This patch does not apply cleanly, raising a conflict in
>>dovetail/pipeline/clock.h. Besides, as discussed recently, the comment
>
> The patch actually depends on previous 5 patches you already approved
> to merge. One of them modified dovetail/pipeline/clock.h.
>
> https://xenomai.org/pipermail/xenomai/2021-January/044123.html
> https://xenomai.org/pipermail/xenomai/2021-January/044124.html
> https://xenomai.org/pipermail/xenomai/2021-January/044125.html
> https://xenomai.org/pipermail/xenomai/2021-January/044126.html
> https://xenomai.org/pipermail/xenomai/2021-January/044127.html
>
Correct, my bad. I have four of your patches pending in my queue which I
still need to push to the Dovetail branch. I'll be doing that asap.
>>mentioning the need to revisit the code may not be accurate anymore. You
>
> Thanks for your suggestions, I will refine it though.
>
Thanks,
--
Philippe.
next prev parent reply other threads:[~2021-01-21 15:36 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-01-15 1:16 [PATCH V2 1/8] dovetail/pipeline: implement out-of-band irq management and handling hongzha1
2021-01-15 1:16 ` [PATCH 2/8] dovetail/tick: implement proxy tick device installing and uninstalling hongzha1
2021-01-16 11:42 ` Philippe Gerum
2021-01-15 1:16 ` [PATCH 3/8] dovetail/clock: implement pipeline_set_timer_shot to trigger tick shot hongzha1
2021-01-16 11:56 ` Philippe Gerum
2021-01-19 0:57 ` Chen, Hongzhan
2021-01-21 15:36 ` Philippe Gerum [this message]
2021-01-15 1:16 ` [PATCH V2 4/8] dovetail/clock: implement pipeline_timer_name hongzha1
2021-01-16 12:22 ` Philippe Gerum
2021-01-15 1:16 ` [PATCH 5/8] dovetail/kevents: dovetail: implement handle_ptrace_cont hongzha1
2021-01-16 12:31 ` Philippe Gerum
2021-01-15 1:16 ` [PATCH 6/8] cobalt/timer: pipeline: abstract signal test of XNTSTOP hongzha1
2021-01-16 15:11 ` Philippe Gerum
2021-01-15 1:16 ` hongzha1
2021-01-15 1:16 ` [PATCH 7/8] dovetail/tick: pipeline: impmement pipeline_must_force_program_tick hongzha1
2021-01-16 15:14 ` Philippe Gerum
2021-01-15 1:16 ` [PATCH 8/8] dovetail/kevents: enable back tracing hongzha1
2021-01-16 15:17 ` Philippe Gerum
2021-01-16 11:38 ` [PATCH V2 1/8] dovetail/pipeline: implement out-of-band irq management and handling Philippe Gerum
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=8735yu9ua2.fsf@xenomai.org \
--to=rpm@xenomai.org \
--cc=hongzhan.chen@intel.com \
--cc=xenomai@xenomai.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.