Most tools used for compliance and SBOM generation use SPDX identifiers This change brings us a step closer to an easy SBOM generation. Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
210 lines
5.8 KiB
C
210 lines
5.8 KiB
C
/****************************************************************************
|
|
* sched/sched/sched_processtimer.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 <nuttx/compiler.h>
|
|
#include <time.h>
|
|
|
|
#if CONFIG_RR_INTERVAL > 0
|
|
# include <sched.h>
|
|
# include <nuttx/arch.h>
|
|
#endif
|
|
|
|
#ifdef CONFIG_SYSTEMTICK_HOOK
|
|
# include <nuttx/board.h>
|
|
#endif
|
|
|
|
#include "sched/sched.h"
|
|
#include "wdog/wdog.h"
|
|
#include "clock/clock.h"
|
|
|
|
/****************************************************************************
|
|
* Private Functions
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Name: nxsched_cpu_scheduler
|
|
*
|
|
* Description:
|
|
* Check for operations specific to scheduling policy of the currently
|
|
* active task on one CPU.
|
|
*
|
|
* Input Parameters:
|
|
* cpu - The CPU that we are performing the scheduler operations on.
|
|
*
|
|
* Returned Value:
|
|
* None
|
|
*
|
|
****************************************************************************/
|
|
|
|
#if CONFIG_RR_INTERVAL > 0 || defined(CONFIG_SCHED_SPORADIC)
|
|
static inline void nxsched_cpu_scheduler(int cpu)
|
|
{
|
|
FAR struct tcb_s *rtcb = current_task(cpu);
|
|
|
|
#if CONFIG_RR_INTERVAL > 0
|
|
/* Check if the currently executing task uses round robin scheduling. */
|
|
|
|
if ((rtcb->flags & TCB_FLAG_POLICY_MASK) == TCB_FLAG_SCHED_RR)
|
|
{
|
|
/* Yes, check if the currently executing task has exceeded its
|
|
* timeslice.
|
|
*/
|
|
|
|
nxsched_process_roundrobin(rtcb, 1, false);
|
|
}
|
|
#endif
|
|
|
|
#ifdef CONFIG_SCHED_SPORADIC
|
|
/* Check if the currently executing task uses sporadic scheduling. */
|
|
|
|
if ((rtcb->flags & TCB_FLAG_POLICY_MASK) == TCB_FLAG_SCHED_SPORADIC)
|
|
{
|
|
/* Yes, check if the currently executing task has exceeded its
|
|
* budget.
|
|
*/
|
|
|
|
nxsched_process_sporadic(rtcb, 1, false);
|
|
}
|
|
#endif
|
|
}
|
|
#endif
|
|
|
|
/****************************************************************************
|
|
* Name: nxsched_process_scheduler
|
|
*
|
|
* Description:
|
|
* Check for operations specific to scheduling policy of the currently
|
|
* active task on all configured CPUs.
|
|
*
|
|
* Input Parameters:
|
|
* None
|
|
*
|
|
* Returned Value:
|
|
* None
|
|
*
|
|
****************************************************************************/
|
|
|
|
#if CONFIG_RR_INTERVAL > 0 || defined(CONFIG_SCHED_SPORADIC)
|
|
static inline void nxsched_process_scheduler(void)
|
|
{
|
|
irqstate_t flags;
|
|
int i;
|
|
|
|
/* Single CPU case:
|
|
* For nested interrupts, higher IRQs may interrupt nxsched_cpu_scheduler()
|
|
* but nxsched_cpu_scheduler() requires that interrupts be disabled.
|
|
* We are in ISR context, no meaning we are disabled the interrupts.
|
|
*
|
|
* SMP case:
|
|
* enter_critical_section() does much more than just disable interrupts on
|
|
* the local CPU; it also manages spinlocks to assure the stability of the
|
|
* TCB that we are manipulating.
|
|
*/
|
|
|
|
flags = enter_critical_section();
|
|
|
|
/* Perform scheduler operations on all CPUs */
|
|
|
|
for (i = 0; i < CONFIG_SMP_NCPUS; i++)
|
|
{
|
|
nxsched_cpu_scheduler(i);
|
|
}
|
|
|
|
leave_critical_section(flags);
|
|
}
|
|
#else
|
|
# define nxsched_process_scheduler()
|
|
#endif
|
|
|
|
/****************************************************************************
|
|
* Public Functions
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* System Timer Hooks
|
|
*
|
|
* These are standard interfaces that are exported by the OS
|
|
* for use by the architecture specific logic
|
|
*
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Name: nxsched_process_timer
|
|
*
|
|
* Description:
|
|
* This function handles system timer events.
|
|
* The timer interrupt logic itself is implemented in the
|
|
* architecture specific code, but must call the following OS
|
|
* function periodically -- the calling interval must be
|
|
* USEC_PER_TICK
|
|
*
|
|
* Input Parameters:
|
|
* None
|
|
*
|
|
* Returned Value:
|
|
* None
|
|
*
|
|
****************************************************************************/
|
|
|
|
void nxsched_process_timer(void)
|
|
{
|
|
#ifdef CONFIG_CLOCK_TIMEKEEPING
|
|
/* Process wall time */
|
|
|
|
clock_update_wall_time();
|
|
#endif
|
|
|
|
/* Increment the system time (if in the link) */
|
|
|
|
clock_timer();
|
|
|
|
#ifdef CONFIG_SCHED_CPULOAD_SYSCLK
|
|
/* Perform CPU load measurements (before any timer-initiated context
|
|
* switches can occur)
|
|
*/
|
|
|
|
nxsched_process_cpuload();
|
|
#endif
|
|
|
|
/* Check if the currently executing task has exceeded its
|
|
* timeslice.
|
|
*/
|
|
|
|
nxsched_process_scheduler();
|
|
|
|
/* Process watchdogs */
|
|
|
|
wd_timer(clock_systime_ticks());
|
|
|
|
#ifdef CONFIG_SYSTEMTICK_HOOK
|
|
/* Call out to a user-provided function in order to perform board-specific,
|
|
* custom timer operations.
|
|
*/
|
|
|
|
board_timerhook();
|
|
#endif
|
|
}
|