mirror of
https://github.com/apache/nuttx.git
synced 2026-05-13 10:38:40 +08:00
3538d805fc
Several code comments in the hrtimer subsystem have become outdated following recent implementation changes. This patch updates them to accurately describe the current code behavior and algorithms. Signed-off-by: Chengdong Wang <wangcd91@gmail.com>
165 lines
4.6 KiB
C
165 lines
4.6 KiB
C
/****************************************************************************
|
|
* sched/hrtimer/hrtimer_process.c
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
* this work for additional information regarding copyright ownership. The
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
* "License"); you may not use this file except in compliance with the
|
|
* License. You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
* License for the specific language governing permissions and limitations
|
|
* under the License.
|
|
*
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Included Files
|
|
****************************************************************************/
|
|
|
|
#include <nuttx/config.h>
|
|
#include <assert.h>
|
|
#include <nuttx/arch.h>
|
|
#include <nuttx/clock.h>
|
|
|
|
#include "hrtimer/hrtimer.h"
|
|
|
|
/****************************************************************************
|
|
* Public Functions
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Name: hrtimer_process
|
|
*
|
|
* Description:
|
|
* Process all expired high-resolution timers. This function repeatedly
|
|
* retrieves the earliest timer from the active timer container, checks
|
|
* if it has expired relative to the current time, removes it from the
|
|
* container, and invokes its callback function. Processing continues
|
|
* until:
|
|
*
|
|
* 1. No additional timers have expired, or
|
|
* 2. The active timer set is empty.
|
|
*
|
|
* After all expired timers are processed, the next expiration event is
|
|
* scheduled based on:
|
|
*
|
|
* - The earliest remaining timer, or
|
|
* - A fallback expiration (current time + HRTIMER_DEFAULT_INCREMENT)
|
|
* if no timers remain.
|
|
*
|
|
* Input Parameters:
|
|
* now - Current high-resolution timestamp.
|
|
*
|
|
* Returned Value:
|
|
* None.
|
|
*
|
|
* Assumptions/Notes:
|
|
* - This function acquires a spinlock to protect the timer container.
|
|
* - Timer callbacks are invoked with interrupts enabled
|
|
* to avoid deadlocks.
|
|
* - DEBUGASSERT ensures that timer callbacks are valid.
|
|
****************************************************************************/
|
|
|
|
void hrtimer_process(uint64_t now)
|
|
{
|
|
FAR hrtimer_t *hrtimer;
|
|
irqstate_t flags;
|
|
hrtimer_entry_t func;
|
|
uint64_t expired;
|
|
uint64_t period;
|
|
#ifdef CONFIG_SMP
|
|
int cpu = this_cpu();
|
|
#endif
|
|
|
|
/* Lock the hrtimer container to protect access */
|
|
|
|
flags = spin_lock_irqsave(&g_hrtimer_spinlock);
|
|
|
|
/* Fetch the earliest active timer */
|
|
|
|
hrtimer = hrtimer_get_first();
|
|
|
|
while (hrtimer != NULL)
|
|
{
|
|
func = hrtimer->func;
|
|
|
|
/* Ensure the timer callback is valid */
|
|
|
|
DEBUGASSERT(func != NULL);
|
|
|
|
expired = hrtimer->expired;
|
|
|
|
/* Check if the timer has expired */
|
|
|
|
if (!clock_compare(expired, now))
|
|
{
|
|
break;
|
|
}
|
|
|
|
/* Remove the expired timer from the timer container */
|
|
|
|
hrtimer_remove(hrtimer);
|
|
|
|
#ifdef CONFIG_SMP
|
|
g_hrtimer_running[cpu] = hrtimer;
|
|
#endif
|
|
/* Leave critical section before invoking the callback */
|
|
|
|
spin_unlock_irqrestore(&g_hrtimer_spinlock, flags);
|
|
|
|
/* Invoke the timer callback */
|
|
|
|
period = func(hrtimer, expired);
|
|
|
|
/* Re-enter critical section to update timer state */
|
|
|
|
flags = spin_lock_irqsave(&g_hrtimer_spinlock);
|
|
|
|
#ifdef CONFIG_SMP
|
|
g_hrtimer_running[cpu] = NULL;
|
|
#endif
|
|
|
|
/* If the timer is periodic and has not been rearmed or
|
|
* cancelled concurrently,
|
|
* compute next expiration and reinsert into container
|
|
*/
|
|
|
|
if (period > 0 && hrtimer->expired == expired)
|
|
{
|
|
hrtimer->expired += period;
|
|
|
|
/* Ensure no overflow occurs */
|
|
|
|
DEBUGASSERT(hrtimer->expired > period);
|
|
|
|
hrtimer->func = func;
|
|
hrtimer_insert(hrtimer);
|
|
}
|
|
|
|
/* Fetch the next earliest timer */
|
|
|
|
hrtimer = hrtimer_get_first();
|
|
}
|
|
|
|
/* Schedule the next timer expiration */
|
|
|
|
if (hrtimer != NULL)
|
|
{
|
|
/* Start timer for the next earliest expiration */
|
|
|
|
(void)hrtimer_starttimer(hrtimer->expired);
|
|
}
|
|
|
|
/* Leave critical section */
|
|
|
|
spin_unlock_irqrestore(&g_hrtimer_spinlock, flags);
|
|
}
|