mirror of
https://github.com/apache/nuttx.git
synced 2026-05-14 11:28:22 +08:00
ed1cb6f9b8
NuttX provides the wdog module to implement timers for the scheduler. While it is lightweight and efficient, wdog only supports tick-level timers, typically in milliseconds. Although the tick duration can be configured, setting it to microsecond or nanosecond resolution is not practical. Doing so may cause an interrupt storm, where the CPU is constantly occupied handling tick interrupts. To address this limitation, a new hrtimer module is introduced. It coexists with the wdog module, providing both tick-level timers for wdog and high-resolution timers (nanosecond-level) directly to users. Signed-off-by: Chengdong Wang <wangchengdong@lixiang.com>
144 lines
4.4 KiB
C
144 lines
4.4 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 RB-tree, checks if it
|
|
* has expired relative to the current time, removes it from the tree,
|
|
* 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:
|
|
* ts - Pointer to the current high-resolution timestamp.
|
|
*
|
|
* Returned Value:
|
|
* None.
|
|
*
|
|
* Assumptions/Notes:
|
|
* - This function acquires a spinlock to protect the timer RB-tree.
|
|
* - 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;
|
|
uint64_t expired;
|
|
uint32_t period = 0;
|
|
irqstate_t flags;
|
|
|
|
/* Lock the hrtimer RB-tree to protect access */
|
|
|
|
flags = spin_lock_irqsave(&g_hrtimer_spinlock);
|
|
|
|
/* Fetch the earliest active timer */
|
|
|
|
hrtimer = (FAR hrtimer_t *)RB_MIN(hrtimer_tree_s, &g_hrtimer_tree);
|
|
|
|
while (hrtimer != NULL)
|
|
{
|
|
/* Check if the timer has expired */
|
|
|
|
if (!clock_compare(hrtimer->expired, now))
|
|
{
|
|
break;
|
|
}
|
|
|
|
/* Remove the expired timer from the active tree */
|
|
|
|
RB_REMOVE(hrtimer_tree_s, &g_hrtimer_tree, &hrtimer->node);
|
|
|
|
/* Ensure the timer callback is valid */
|
|
|
|
DEBUGASSERT(hrtimer->func != NULL);
|
|
|
|
hrtimer->state = HRTIMER_STATE_RUNNING;
|
|
|
|
spin_unlock_irqrestore(&g_hrtimer_spinlock, flags);
|
|
|
|
/* Invoke the timer callback */
|
|
|
|
period = hrtimer->func(hrtimer);
|
|
|
|
flags = spin_lock_irqsave(&g_hrtimer_spinlock);
|
|
|
|
if ((hrtimer->state == HRTIMER_STATE_CANCELED) || (period == 0))
|
|
{
|
|
/* Timer is canceled or one-shot; mark it inactive */
|
|
|
|
hrtimer->state = HRTIMER_STATE_INACTIVE;
|
|
}
|
|
else
|
|
{
|
|
/* Restart the periodic timer */
|
|
|
|
hrtimer->expired += period;
|
|
hrtimer->state = HRTIMER_STATE_ARMED;
|
|
RB_INSERT(hrtimer_tree_s, &g_hrtimer_tree, &hrtimer->node);
|
|
}
|
|
|
|
/* Fetch the next earliest timer */
|
|
|
|
hrtimer = (FAR hrtimer_t *)RB_MIN(hrtimer_tree_s, &g_hrtimer_tree);
|
|
}
|
|
|
|
/* 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);
|
|
}
|