1996-12-02 22:36:28 +00:00
|
|
|
/*
|
|
|
|
|
* This routine initializes the Real Time Clock Counter Timer which is
|
|
|
|
|
* part of the MEC on the ERC32 CPU.
|
|
|
|
|
*
|
|
|
|
|
* The tick frequency is directly programmed to the configured number of
|
|
|
|
|
* microseconds per tick.
|
2014-10-12 13:58:23 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*
|
2008-05-07 17:40:52 +00:00
|
|
|
* COPYRIGHT (c) 1989-2008.
|
1996-12-02 22:36:28 +00:00
|
|
|
* On-Line Applications Research Corporation (OAR).
|
|
|
|
|
*
|
1997-10-08 15:45:54 +00:00
|
|
|
* The license and distribution terms for this file may be
|
|
|
|
|
* found in the file LICENSE in this distribution or at
|
2014-03-21 08:10:47 +11:00
|
|
|
* http://www.rtems.org/license/LICENSE.
|
1996-12-02 22:36:28 +00:00
|
|
|
*
|
|
|
|
|
* Ported to ERC32 implementation of the SPARC by On-Line Applications
|
2004-04-21 10:43:04 +00:00
|
|
|
* Research Corporation (OAR) under contract to the European Space
|
1996-12-02 22:36:28 +00:00
|
|
|
* Agency (ESA).
|
|
|
|
|
*
|
2004-04-21 10:43:04 +00:00
|
|
|
* ERC32 modifications of respective RTEMS file: COPYRIGHT (c) 1995.
|
1996-12-02 22:36:28 +00:00
|
|
|
* European Space Agency.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <bsp.h>
|
2021-06-22 15:40:39 +02:00
|
|
|
#include <rtems/irq-extension.h>
|
2018-05-03 13:03:27 +02:00
|
|
|
#include <rtems/sysinit.h>
|
2015-04-01 15:33:25 +02:00
|
|
|
#include <rtems/timecounter.h>
|
2016-06-22 13:45:02 +02:00
|
|
|
#include <rtems/score/sparcimpl.h>
|
2006-11-16 16:31:32 +00:00
|
|
|
|
1996-12-02 22:36:28 +00:00
|
|
|
extern int CLOCK_SPEED;
|
|
|
|
|
|
2018-05-03 13:03:27 +02:00
|
|
|
#define ERC32_REAL_TIME_CLOCK_FREQUENCY 1000000
|
2015-04-01 15:33:25 +02:00
|
|
|
|
2018-05-03 13:03:27 +02:00
|
|
|
static struct timecounter erc32_tc;
|
2015-04-01 15:33:25 +02:00
|
|
|
|
2018-05-03 13:03:27 +02:00
|
|
|
static void erc32_clock_init( void )
|
2015-04-01 15:33:25 +02:00
|
|
|
{
|
2018-05-03 13:03:27 +02:00
|
|
|
struct timecounter *tc;
|
|
|
|
|
|
|
|
|
|
tc = &erc32_tc;
|
|
|
|
|
tc->tc_get_timecount = _SPARC_Get_timecount_clock;
|
|
|
|
|
tc->tc_counter_mask = 0xffffffff;
|
|
|
|
|
tc->tc_frequency = ERC32_REAL_TIME_CLOCK_FREQUENCY;
|
|
|
|
|
tc->tc_quality = RTEMS_TIMECOUNTER_QUALITY_CLOCK_DRIVER;
|
|
|
|
|
rtems_timecounter_install(tc);
|
2015-04-01 15:33:25 +02:00
|
|
|
}
|
|
|
|
|
|
2018-05-03 13:03:27 +02:00
|
|
|
uint32_t _CPU_Counter_frequency(void)
|
2007-03-28 19:58:12 +00:00
|
|
|
{
|
2018-05-03 13:03:27 +02:00
|
|
|
return ERC32_REAL_TIME_CLOCK_FREQUENCY;
|
2007-03-28 19:58:12 +00:00
|
|
|
}
|
|
|
|
|
|
2018-05-03 13:03:27 +02:00
|
|
|
static void erc32_clock_at_tick( void )
|
2015-12-23 07:29:47 +01:00
|
|
|
{
|
2018-05-03 13:03:27 +02:00
|
|
|
SPARC_Counter *counter;
|
|
|
|
|
rtems_interrupt_level level;
|
2015-12-23 07:29:47 +01:00
|
|
|
|
2018-05-03 13:03:27 +02:00
|
|
|
counter = &_SPARC_Counter_mutable;
|
|
|
|
|
rtems_interrupt_local_disable(level);
|
|
|
|
|
|
|
|
|
|
ERC32_Clear_interrupt( ERC32_INTERRUPT_REAL_TIME_CLOCK );
|
|
|
|
|
counter->accumulated += counter->interval;
|
|
|
|
|
|
|
|
|
|
rtems_interrupt_local_enable(level);
|
2015-04-01 15:33:25 +02:00
|
|
|
}
|
2007-03-28 19:58:12 +00:00
|
|
|
|
2018-05-03 13:03:27 +02:00
|
|
|
static void erc32_clock_initialize_early( void )
|
2014-02-24 12:45:00 +01:00
|
|
|
{
|
2018-05-03 13:03:27 +02:00
|
|
|
SPARC_Counter *counter;
|
|
|
|
|
|
|
|
|
|
/* approximately 1 us per countdown */
|
|
|
|
|
ERC32_MEC.Real_Time_Clock_Scalar = CLOCK_SPEED - 1;
|
|
|
|
|
ERC32_MEC.Real_Time_Clock_Counter =
|
|
|
|
|
rtems_configuration_get_microseconds_per_tick();
|
|
|
|
|
ERC32_MEC_Set_Real_Time_Clock_Timer_Control(
|
|
|
|
|
ERC32_MEC_TIMER_COUNTER_ENABLE_COUNTING |
|
|
|
|
|
ERC32_MEC_TIMER_COUNTER_LOAD_SCALER |
|
|
|
|
|
ERC32_MEC_TIMER_COUNTER_LOAD_COUNTER
|
|
|
|
|
);
|
|
|
|
|
ERC32_MEC_Set_Real_Time_Clock_Timer_Control(
|
|
|
|
|
ERC32_MEC_TIMER_COUNTER_ENABLE_COUNTING |
|
|
|
|
|
ERC32_MEC_TIMER_COUNTER_RELOAD_AT_ZERO
|
2016-06-20 10:08:39 +02:00
|
|
|
);
|
2018-05-23 14:17:25 +02:00
|
|
|
|
2018-05-03 13:03:27 +02:00
|
|
|
counter = &_SPARC_Counter_mutable;
|
|
|
|
|
counter->read_isr_disabled = _SPARC_Counter_read_clock_isr_disabled;
|
|
|
|
|
counter->read = _SPARC_Counter_read_clock;
|
|
|
|
|
counter->counter_register = &ERC32_MEC.Real_Time_Clock_Counter,
|
|
|
|
|
counter->pending_register = &ERC32_MEC.Interrupt_Pending;
|
|
|
|
|
counter->pending_mask = UINT32_C(1) << ERC32_INTERRUPT_REAL_TIME_CLOCK;
|
|
|
|
|
counter->accumulated = rtems_configuration_get_microseconds_per_tick();
|
|
|
|
|
counter->interval = rtems_configuration_get_microseconds_per_tick();
|
2014-02-24 12:45:00 +01:00
|
|
|
}
|
|
|
|
|
|
2018-05-03 13:03:27 +02:00
|
|
|
RTEMS_SYSINIT_ITEM(
|
|
|
|
|
erc32_clock_initialize_early,
|
|
|
|
|
RTEMS_SYSINIT_CPU_COUNTER,
|
|
|
|
|
RTEMS_SYSINIT_ORDER_FIRST
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* The Real Time Clock Counter Timer uses this trap type.
|
|
|
|
|
*/
|
|
|
|
|
#define CLOCK_VECTOR ERC32_TRAP_TYPE( ERC32_INTERRUPT_REAL_TIME_CLOCK )
|
|
|
|
|
|
|
|
|
|
#define Clock_driver_support_install_isr( _new ) \
|
2021-06-22 15:40:39 +02:00
|
|
|
(void) rtems_interrupt_handler_install( \
|
|
|
|
|
ERC32_INTERRUPT_REAL_TIME_CLOCK, \
|
|
|
|
|
"Clock", \
|
|
|
|
|
RTEMS_INTERRUPT_SHARED, \
|
|
|
|
|
_new, \
|
|
|
|
|
NULL \
|
|
|
|
|
)
|
2018-05-03 13:03:27 +02:00
|
|
|
|
|
|
|
|
#define Clock_driver_support_set_interrupt_affinity( _online_processors ) \
|
2006-11-16 16:31:32 +00:00
|
|
|
do { \
|
2018-05-03 13:03:27 +02:00
|
|
|
(void) _online_processors; \
|
2006-11-16 16:31:32 +00:00
|
|
|
} while (0)
|
|
|
|
|
|
2018-05-03 13:03:27 +02:00
|
|
|
#define Clock_driver_support_at_tick() erc32_clock_at_tick()
|
|
|
|
|
|
|
|
|
|
#define Clock_driver_support_initialize_hardware() erc32_clock_init()
|
2015-04-01 15:33:25 +02:00
|
|
|
|
2018-04-19 06:35:52 +02:00
|
|
|
#include "../../../shared/dev/clock/clockimpl.h"
|
2004-04-21 10:43:04 +00:00
|
|
|
|
2016-06-22 13:45:02 +02:00
|
|
|
SPARC_COUNTER_DEFINITION;
|