source: rtems/cpukit/score/src/coretodset.c @ 2256946

5
Last change on this file since 2256946 was 2256946, checked in by Sebastian Huber <sebastian.huber@…>, on 10/06/17 at 13:30:47

score: Use struct timespec for TOD

Use the timestamps only for uptime based values. Use struct timespec
for the absolute time values (TOD).

Update #2740.

  • Property mode set to 100644
File size: 1.1 KB
RevLine 
[1b475860]1/**
2 * @file
3 *
4 * @brief Set Time of Day Given a Timestamp
5 *
6 * @ingroup ScoreTOD
[412dbff6]7 */
8
9/*  COPYRIGHT (c) 1989-2007.
[93b4e6ef]10 *  On-Line Applications Research Corporation (OAR).
11 *
12 *  The license and distribution terms for this file may be
13 *  found in the file LICENSE in this distribution or at
[c499856]14 *  http://www.rtems.org/license/LICENSE.
[93b4e6ef]15 */
16
[a8eed23]17#if HAVE_CONFIG_H
18#include "config.h"
19#endif
20
[f031df0e]21#include <rtems/score/todimpl.h>
[1ef8e4a8]22#include <rtems/score/assert.h>
[4b48ece0]23#include <rtems/score/watchdogimpl.h>
[93b4e6ef]24
[3888771]25void _TOD_Set(
[2256946]26  const struct timespec *tod,
27  ISR_lock_Context      *lock_context
[93b4e6ef]28)
29{
[2256946]30  struct bintime  tod_as_bintime;
[03b900d]31  uint64_t        tod_as_ticks;
32  uint32_t        cpu_count;
33  uint32_t        cpu_index;
[c16bcc0]34
[1ef8e4a8]35  _Assert( _API_Mutex_Is_owner( _Once_Mutex ) );
[93b4e6ef]36
[2256946]37  timespec2bintime( tod, &tod_as_bintime );
38  _Timecounter_Set_clock( &tod_as_bintime, lock_context );
[a211a732]39
[2256946]40  tod_as_ticks = _Watchdog_Ticks_from_timespec( tod );
[03b900d]41  cpu_count = _SMP_Get_processor_count();
[a211a732]42
[03b900d]43  for ( cpu_index = 0 ; cpu_index < cpu_count ; ++cpu_index ) {
44    Per_CPU_Control *cpu = _Per_CPU_Get_by_index( cpu_index );
[c16bcc0]45
[03b900d]46    _Watchdog_Per_CPU_tickle_absolute( cpu, tod_as_ticks );
47  }
[93b4e6ef]48
[7cd2484]49  _TOD.is_set = true;
[93b4e6ef]50}
Note: See TracBrowser for help on using the repository browser.