##// END OF EJS Templates
Removed unused function and implemented scrubbing perriod counter...
jeandet -
r389:74df79cc7806 No PWD scrub with... draft
parent child
Show More
@@ -1,157 +1,156
1 #ifndef FSW_MISC_H_INCLUDED
1 #ifndef FSW_MISC_H_INCLUDED
2 #define FSW_MISC_H_INCLUDED
2 #define FSW_MISC_H_INCLUDED
3
3
4 #include <rtems.h>
4 #include <rtems.h>
5 #include <stdio.h>
5 #include <stdio.h>
6 #include <grspw.h>
6 #include <grspw.h>
7 #include <grlib_regs.h>
7 #include <grlib_regs.h>
8
8
9 #include "fsw_params.h"
9 #include "fsw_params.h"
10 #include "fsw_spacewire.h"
10 #include "fsw_spacewire.h"
11 #include "lfr_cpu_usage_report.h"
11 #include "lfr_cpu_usage_report.h"
12
12
13 #define WATCHDOG_LOOP_PRINTF 10
13 #define WATCHDOG_LOOP_PRINTF 10
14 #define WATCHDOG_LOOP_DEBUG 3
14 #define WATCHDOG_LOOP_DEBUG 3
15
15
16 #define NB_RTEMS_EVENTS 32
16 #define NB_RTEMS_EVENTS 32
17 #define EVENT_12 12
17 #define EVENT_12 12
18 #define EVENT_13 13
18 #define EVENT_13 13
19 #define EVENT_14 14
19 #define EVENT_14 14
20 #define DUMB_MESSAGE_1 "in DUMB *** timecode_irq_handler"
20 #define DUMB_MESSAGE_1 "in DUMB *** timecode_irq_handler"
21 #define DUMB_MESSAGE_12 "WATCHDOG timer"
21 #define DUMB_MESSAGE_12 "WATCHDOG timer"
22 #define DUMB_MESSAGE_13 "TIMECODE timer"
22 #define DUMB_MESSAGE_13 "TIMECODE timer"
23
23
24 enum lfr_reset_cause_t{
24 enum lfr_reset_cause_t{
25 UNKNOWN_CAUSE,
25 UNKNOWN_CAUSE,
26 POWER_ON,
26 POWER_ON,
27 TC_RESET,
27 TC_RESET,
28 WATCHDOG,
28 WATCHDOG,
29 ERROR_RESET,
29 ERROR_RESET,
30 UNEXP_RESET
30 UNEXP_RESET
31 };
31 };
32
32
33 typedef struct{
33 typedef struct{
34 unsigned char dpu_spw_parity;
34 unsigned char dpu_spw_parity;
35 unsigned char dpu_spw_disconnect;
35 unsigned char dpu_spw_disconnect;
36 unsigned char dpu_spw_escape;
36 unsigned char dpu_spw_escape;
37 unsigned char dpu_spw_credit;
37 unsigned char dpu_spw_credit;
38 unsigned char dpu_spw_write_sync;
38 unsigned char dpu_spw_write_sync;
39 unsigned char timecode_erroneous;
39 unsigned char timecode_erroneous;
40 unsigned char timecode_missing;
40 unsigned char timecode_missing;
41 unsigned char timecode_invalid;
41 unsigned char timecode_invalid;
42 unsigned char time_timecode_it;
42 unsigned char time_timecode_it;
43 unsigned char time_not_synchro;
43 unsigned char time_not_synchro;
44 unsigned char time_timecode_ctr;
44 unsigned char time_timecode_ctr;
45 unsigned char ahb_correctable;
45 unsigned char ahb_correctable;
46 } hk_lfr_le_t;
46 } hk_lfr_le_t;
47
47
48 typedef struct{
48 typedef struct{
49 unsigned char dpu_spw_early_eop;
49 unsigned char dpu_spw_early_eop;
50 unsigned char dpu_spw_invalid_addr;
50 unsigned char dpu_spw_invalid_addr;
51 unsigned char dpu_spw_eep;
51 unsigned char dpu_spw_eep;
52 unsigned char dpu_spw_rx_too_big;
52 unsigned char dpu_spw_rx_too_big;
53 } hk_lfr_me_t;
53 } hk_lfr_me_t;
54
54
55 #define B00 196
55 #define B00 196
56 #define B01 196
56 #define B01 196
57 #define B02 0
57 #define B02 0
58 #define B10 131
58 #define B10 131
59 #define B11 -244
59 #define B11 -244
60 #define B12 131
60 #define B12 131
61 #define B20 161
61 #define B20 161
62 #define B21 -314
62 #define B21 -314
63 #define B22 161
63 #define B22 161
64
64
65 #define A00 1
65 #define A00 1
66 #define A01 -925
66 #define A01 -925
67 #define A02 0
67 #define A02 0
68 #define A10 1
68 #define A10 1
69 #define A11 -947
69 #define A11 -947
70 #define A12 439
70 #define A12 439
71 #define A20 1
71 #define A20 1
72 #define A21 -993
72 #define A21 -993
73 #define A22 486
73 #define A22 486
74
74
75 #define GAIN_B0 12
75 #define GAIN_B0 12
76 #define GAIN_B1 11
76 #define GAIN_B1 11
77 #define GAIN_B2 10
77 #define GAIN_B2 10
78
78
79 #define GAIN_A0 10
79 #define GAIN_A0 10
80 #define GAIN_A1 9
80 #define GAIN_A1 9
81 #define GAIN_A2 9
81 #define GAIN_A2 9
82
82
83 #define NB_COEFFS 3
83 #define NB_COEFFS 3
84 #define COEFF0 0
84 #define COEFF0 0
85 #define COEFF1 1
85 #define COEFF1 1
86 #define COEFF2 2
86 #define COEFF2 2
87
87
88 typedef struct filter_ctx
88 typedef struct filter_ctx
89 {
89 {
90 int W[NB_COEFFS][NB_COEFFS];
90 int W[NB_COEFFS][NB_COEFFS];
91 }filter_ctx;
91 }filter_ctx;
92
92
93 extern gptimer_regs_t *gptimer_regs;
93 extern gptimer_regs_t *gptimer_regs;
94 extern void ASR16_get_FPRF_IURF_ErrorCounters( unsigned int*, unsigned int* );
94 extern void ASR16_get_FPRF_IURF_ErrorCounters( unsigned int*, unsigned int* );
95 extern void CCR_getInstructionAndDataErrorCounters( unsigned int*, unsigned int* );
95 extern void CCR_getInstructionAndDataErrorCounters( unsigned int*, unsigned int* );
96
96
97 extern rtems_name name_hk_rate_monotonic; // name of the HK rate monotonic
97 extern rtems_name name_hk_rate_monotonic; // name of the HK rate monotonic
98 extern rtems_id HK_id;// id of the HK rate monotonic period
98 extern rtems_id HK_id;// id of the HK rate monotonic period
99 extern rtems_name name_avgv_rate_monotonic; // name of the AVGV rate monotonic
99 extern rtems_name name_avgv_rate_monotonic; // name of the AVGV rate monotonic
100 extern rtems_id AVGV_id;// id of the AVGV rate monotonic period
100 extern rtems_id AVGV_id;// id of the AVGV rate monotonic period
101
101
102 void timer_configure( unsigned char timer, unsigned int clock_divider,
102 void timer_configure( unsigned char timer, unsigned int clock_divider,
103 unsigned char interrupt_level, rtems_isr (*timer_isr)() );
103 unsigned char interrupt_level, rtems_isr (*timer_isr)() );
104 void timer_start( unsigned char timer );
104 void timer_start( unsigned char timer );
105 void timer_stop( unsigned char timer );
105 void timer_stop( unsigned char timer );
106 void timer_set_clock_divider(unsigned char timer, unsigned int clock_divider);
106 void timer_set_clock_divider(unsigned char timer, unsigned int clock_divider);
107
107
108 // WATCHDOG
108 // WATCHDOG
109 rtems_isr watchdog_isr( rtems_vector_number vector );
109 rtems_isr watchdog_isr( rtems_vector_number vector );
110 void watchdog_configure(void);
110 void watchdog_configure(void);
111 void watchdog_stop(void);
111 void watchdog_stop(void);
112 void watchdog_reload(void);
112 void watchdog_reload(void);
113 void watchdog_start(void);
113 void watchdog_start(void);
114
114
115 // SERIAL LINK
115 // SERIAL LINK
116 int send_console_outputs_on_apbuart_port( void );
116 int send_console_outputs_on_apbuart_port( void );
117 int enable_apbuart_transmitter( void );
117 int enable_apbuart_transmitter( void );
118 void set_apbuart_scaler_reload_register(unsigned int regs, unsigned int value);
118 void set_apbuart_scaler_reload_register(unsigned int regs, unsigned int value);
119
119
120 // RTEMS TASKS
120 // RTEMS TASKS
121 rtems_task load_task( rtems_task_argument argument );
121 rtems_task load_task( rtems_task_argument argument );
122 rtems_task hous_task( rtems_task_argument argument );
122 rtems_task hous_task( rtems_task_argument argument );
123 rtems_task avgv_task( rtems_task_argument argument );
123 rtems_task avgv_task( rtems_task_argument argument );
124 rtems_task dumb_task( rtems_task_argument unused );
124 rtems_task dumb_task( rtems_task_argument unused );
125 rtems_task scrubbing_task( rtems_task_argument unused );
125 rtems_task scrubbing_task( rtems_task_argument unused );
126 rtems_task calibration_sweep_task( rtems_task_argument unused );
126 rtems_task calibration_sweep_task( rtems_task_argument unused );
127
127
128 void init_housekeeping_parameters( void );
128 void init_housekeeping_parameters( void );
129 void increment_seq_counter(unsigned short *packetSequenceControl);
129 void increment_seq_counter(unsigned short *packetSequenceControl);
130 void getTime( unsigned char *time);
130 void getTime( unsigned char *time);
131 unsigned long long int getTimeAsUnsignedLongLongInt( );
131 unsigned long long int getTimeAsUnsignedLongLongInt( );
132 void send_dumb_hk( void );
133 void get_temperatures( unsigned char *temperatures );
132 void get_temperatures( unsigned char *temperatures );
134 void get_v_e1_e2_f3( unsigned char *spacecraft_potential );
133 void get_v_e1_e2_f3( unsigned char *spacecraft_potential );
135 void get_cpu_load( unsigned char *resource_statistics );
134 void get_cpu_load( unsigned char *resource_statistics );
136 void set_hk_lfr_sc_potential_flag( bool state );
135 void set_hk_lfr_sc_potential_flag( bool state );
137 void set_sy_lfr_pas_filter_enabled( bool state );
136 void set_sy_lfr_pas_filter_enabled( bool state );
138 void set_sy_lfr_watchdog_enabled( bool state );
137 void set_sy_lfr_watchdog_enabled( bool state );
139 void set_hk_lfr_calib_enable( bool state );
138 void set_hk_lfr_calib_enable( bool state );
140 void set_hk_lfr_reset_cause( enum lfr_reset_cause_t lfr_reset_cause );
139 void set_hk_lfr_reset_cause( enum lfr_reset_cause_t lfr_reset_cause );
141 void hk_lfr_le_me_he_update();
140 void hk_lfr_le_me_he_update();
142 void set_hk_lfr_time_not_synchro();
141 void set_hk_lfr_time_not_synchro();
143
142
144 extern int sched_yield( void );
143 extern int sched_yield( void );
145 extern void rtems_cpu_usage_reset();
144 extern void rtems_cpu_usage_reset();
146 extern ring_node *current_ring_node_f3;
145 extern ring_node *current_ring_node_f3;
147 extern ring_node *ring_node_to_send_cwf_f3;
146 extern ring_node *ring_node_to_send_cwf_f3;
148 extern ring_node waveform_ring_f3[];
147 extern ring_node waveform_ring_f3[];
149 extern unsigned short sequenceCounterHK;
148 extern unsigned short sequenceCounterHK;
150
149
151 extern unsigned char hk_lfr_q_sd_fifo_size_max;
150 extern unsigned char hk_lfr_q_sd_fifo_size_max;
152 extern unsigned char hk_lfr_q_rv_fifo_size_max;
151 extern unsigned char hk_lfr_q_rv_fifo_size_max;
153 extern unsigned char hk_lfr_q_p0_fifo_size_max;
152 extern unsigned char hk_lfr_q_p0_fifo_size_max;
154 extern unsigned char hk_lfr_q_p1_fifo_size_max;
153 extern unsigned char hk_lfr_q_p1_fifo_size_max;
155 extern unsigned char hk_lfr_q_p2_fifo_size_max;
154 extern unsigned char hk_lfr_q_p2_fifo_size_max;
156
155
157 #endif // FSW_MISC_H_INCLUDED
156 #endif // FSW_MISC_H_INCLUDED
@@ -1,44 +1,39
1 set(rtems_dir /opt/rtems-4.10/)
1 set(rtems_dir /opt/rtems-4.10/)
2
2
3 set(CMAKE_SYSTEM_NAME rtems)
3 set(CMAKE_SYSTEM_NAME rtems)
4 set(CMAKE_C_COMPILER ${rtems_dir}/bin/sparc-rtems-gcc)
4 set(CMAKE_C_COMPILER ${rtems_dir}/bin/sparc-rtems-gcc)
5 set(CMAKE_CXX_COMPILER ${rtems_dir}/bin/sparc-rtems-g++)
5 set(CMAKE_CXX_COMPILER ${rtems_dir}/bin/sparc-rtems-g++)
6 set(CMAKE_LINKER ${rtems_dir}/bin/sparc-rtems-g++)
6 set(CMAKE_LINKER ${rtems_dir}/bin/sparc-rtems-g++)
7 SET(CMAKE_EXE_LINKER_FLAGS "-static")
7 SET(CMAKE_EXE_LINKER_FLAGS "-static")
8 option(fix-b2bst "Activate -mfix-b2bst switch to mitigate \"LEON3FT Stale Cache Entry After Store with Data Tag Parity Error\" errata, GRLIB-TN-0009" ON)
8 option(fix-b2bst "Activate -mfix-b2bst switch to mitigate \"LEON3FT Stale Cache Entry After Store with Data Tag Parity Error\" errata, GRLIB-TN-0009" ON)
9
9
10 option(Coverage "Enables code coverage" OFF)
10 option(Coverage "Enables code coverage" OFF)
11
11
12
12
13 set(CMAKE_C_FLAGS_RELEASE "-O3")
13 set(CMAKE_C_FLAGS_RELEASE "-O3")
14 set(CMAKE_C_FLAGS_DEBUG "-O0")
14 set(CMAKE_C_FLAGS_DEBUG "-O0")
15
15
16
16
17 if(fix-b2bst)
17 if(fix-b2bst)
18 set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -mfix-b2bst")
18 set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -mfix-b2bst")
19 set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -mfix-b2bst")
19 set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -mfix-b2bst")
20 endif()
20 endif()
21
21
22 #if(Coverage)
23 # set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -fprofile-arcs -ftest-coverage")
24 # set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -fprofile-arcs -ftest-coverage")
25 #endif()
26
27
22
28 set(CMAKE_C_LINK_EXECUTABLE "<CMAKE_LINKER> <FLAGS> -Xlinker -Map=<TARGET>.map <CMAKE_CXX_LINK_FLAGS> <LINK_FLAGS> <OBJECTS> -o <TARGET> <LINK_LIBRARIES>")
23 set(CMAKE_C_LINK_EXECUTABLE "<CMAKE_LINKER> <FLAGS> -Xlinker -Map=<TARGET>.map <CMAKE_CXX_LINK_FLAGS> <LINK_FLAGS> <OBJECTS> -o <TARGET> <LINK_LIBRARIES>")
29
24
30 include_directories("${rtems_dir}/sparc-rtems/leon3/lib/include")
25 include_directories("${rtems_dir}/sparc-rtems/leon3/lib/include")
31
26
32 function (check_b2bst target bin)
27 function (check_b2bst target bin)
33 add_custom_command(TARGET ${target}
28 add_custom_command(TARGET ${target}
34 POST_BUILD
29 POST_BUILD
35 COMMAND ${rtems_dir}/bin/sparc-rtems-objdump -d ${bin}/${target} | ${CMAKE_SOURCE_DIR}/sparc/leon3ft-b2bst-scan.tcl
30 COMMAND ${rtems_dir}/bin/sparc-rtems-objdump -d ${bin}/${target} | ${CMAKE_SOURCE_DIR}/sparc/leon3ft-b2bst-scan.tcl
36 )
31 )
37 endfunction()
32 endfunction()
38
33
39 function (build_srec target bin rev)
34 function (build_srec target bin rev)
40 add_custom_command(TARGET ${target}
35 add_custom_command(TARGET ${target}
41 POST_BUILD
36 POST_BUILD
42 COMMAND ${rtems_dir}/bin/sparc-rtems-objcopy -j .data -F srec ${bin}/${target} RpwLfrApp_XXXX_data_rev-${rev}.srec && ${rtems_dir}/bin/sparc-rtems-objcopy -j .text -F srec ${bin}/${target} RpwLfrApp_XXXX_text_rev-${rev}.srec
37 COMMAND ${rtems_dir}/bin/sparc-rtems-objcopy -j .data -F srec ${bin}/${target} RpwLfrApp_XXXX_data_rev-${rev}.srec && ${rtems_dir}/bin/sparc-rtems-objcopy -j .text -F srec ${bin}/${target} RpwLfrApp_XXXX_text_rev-${rev}.srec
43 )
38 )
44 endfunction()
39 endfunction()
@@ -1,125 +1,130
1 cmake_minimum_required (VERSION 2.6)
1 cmake_minimum_required (VERSION 2.6)
2 project (fsw)
2 project (fsw)
3
3
4 include(sparc-rtems)
4 include(sparc-rtems)
5 include(cppcheck)
5 include(cppcheck)
6
6
7 include_directories("../header"
7 include_directories("../header"
8 "../header/lfr_common_headers"
8 "../header/lfr_common_headers"
9 "../header/processing"
9 "../header/processing"
10 "../LFR_basic-parameters"
10 "../LFR_basic-parameters"
11 "../src")
11 "../src")
12
12
13 set(SOURCES wf_handler.c
13 set(SOURCES wf_handler.c
14 tc_handler.c
14 tc_handler.c
15 fsw_misc.c
15 fsw_misc.c
16 fsw_init.c
16 fsw_init.c
17 fsw_globals.c
17 fsw_globals.c
18 fsw_spacewire.c
18 fsw_spacewire.c
19 tc_load_dump_parameters.c
19 tc_load_dump_parameters.c
20 tm_lfr_tc_exe.c
20 tm_lfr_tc_exe.c
21 tc_acceptance.c
21 tc_acceptance.c
22 processing/fsw_processing.c
22 processing/fsw_processing.c
23 processing/avf0_prc0.c
23 processing/avf0_prc0.c
24 processing/avf1_prc1.c
24 processing/avf1_prc1.c
25 processing/avf2_prc2.c
25 processing/avf2_prc2.c
26 lfr_cpu_usage_report.c
26 lfr_cpu_usage_report.c
27 ${LFR_BP_SRC}
27 ${LFR_BP_SRC}
28 ../header/wf_handler.h
28 ../header/wf_handler.h
29 ../header/tc_handler.h
29 ../header/tc_handler.h
30 ../header/grlib_regs.h
30 ../header/grlib_regs.h
31 ../header/fsw_misc.h
31 ../header/fsw_misc.h
32 ../header/fsw_init.h
32 ../header/fsw_init.h
33 ../header/fsw_spacewire.h
33 ../header/fsw_spacewire.h
34 ../header/tc_load_dump_parameters.h
34 ../header/tc_load_dump_parameters.h
35 ../header/tm_lfr_tc_exe.h
35 ../header/tm_lfr_tc_exe.h
36 ../header/tc_acceptance.h
36 ../header/tc_acceptance.h
37 ../header/processing/fsw_processing.h
37 ../header/processing/fsw_processing.h
38 ../header/processing/avf0_prc0.h
38 ../header/processing/avf0_prc0.h
39 ../header/processing/avf1_prc1.h
39 ../header/processing/avf1_prc1.h
40 ../header/processing/avf2_prc2.h
40 ../header/processing/avf2_prc2.h
41 ../header/fsw_params_wf_handler.h
41 ../header/fsw_params_wf_handler.h
42 ../header/lfr_cpu_usage_report.h
42 ../header/lfr_cpu_usage_report.h
43 ../header/lfr_common_headers/ccsds_types.h
43 ../header/lfr_common_headers/ccsds_types.h
44 ../header/lfr_common_headers/fsw_params.h
44 ../header/lfr_common_headers/fsw_params.h
45 ../header/lfr_common_headers/fsw_params_nb_bytes.h
45 ../header/lfr_common_headers/fsw_params_nb_bytes.h
46 ../header/lfr_common_headers/fsw_params_processing.h
46 ../header/lfr_common_headers/fsw_params_processing.h
47 ../header/lfr_common_headers/tm_byte_positions.h
47 ../header/lfr_common_headers/tm_byte_positions.h
48 ../LFR_basic-parameters/basic_parameters.h
48 ../LFR_basic-parameters/basic_parameters.h
49 ../LFR_basic-parameters/basic_parameters_params.h
49 ../LFR_basic-parameters/basic_parameters_params.h
50 ../header/GscMemoryLPP.hpp
50 ../header/GscMemoryLPP.hpp
51 )
51 )
52
52
53
53
54 option(FSW_verbose "Enable verbose LFR" OFF)
54 option(FSW_verbose "Enable verbose LFR" OFF)
55 option(FSW_boot_messages "Enable LFR boot messages" OFF)
55 option(FSW_boot_messages "Enable LFR boot messages" OFF)
56 option(FSW_debug_messages "Enable LFR debug messages" OFF)
56 option(FSW_debug_messages "Enable LFR debug messages" OFF)
57 option(FSW_cpu_usage_report "Enable LFR cpu usage report" OFF)
57 option(FSW_cpu_usage_report "Enable LFR cpu usage report" OFF)
58 option(FSW_stack_report "Enable LFR stack report" OFF)
58 option(FSW_stack_report "Enable LFR stack report" OFF)
59 option(FSW_vhdl_dev "?" OFF)
59 option(FSW_vhdl_dev "?" OFF)
60 option(FSW_lpp_dpu_destid "Set to debug at LPP" OFF)
60 option(FSW_lpp_dpu_destid "Set to debug at LPP" OFF)
61 option(FSW_debug_watchdog "Enable debug watchdog" OFF)
61 option(FSW_debug_watchdog "Enable debug watchdog" OFF)
62 option(FSW_debug_tch "?" OFF)
62 option(FSW_debug_tch "?" OFF)
63 option(FSW_Instrument_Scrubbing "Enable scrubbing counter" OFF)
63
64
64 set(SW_VERSION_N1 "3" CACHE STRING "Choose N1 FSW Version." FORCE)
65 set(SW_VERSION_N1 "3" CACHE STRING "Choose N1 FSW Version." FORCE)
65 set(SW_VERSION_N2 "2" CACHE STRING "Choose N2 FSW Version." FORCE)
66 set(SW_VERSION_N2 "2" CACHE STRING "Choose N2 FSW Version." FORCE)
66 set(SW_VERSION_N3 "0" CACHE STRING "Choose N3 FSW Version." FORCE)
67 set(SW_VERSION_N3 "0" CACHE STRING "Choose N3 FSW Version." FORCE)
67 set(SW_VERSION_N4 "20" CACHE STRING "Choose N4 FSW Version." FORCE)
68 set(SW_VERSION_N4 "20" CACHE STRING "Choose N4 FSW Version." FORCE)
68
69
69 if(FSW_verbose)
70 if(FSW_verbose)
70 add_definitions(-DPRINT_MESSAGES_ON_CONSOLE)
71 add_definitions(-DPRINT_MESSAGES_ON_CONSOLE)
71 endif()
72 endif()
72 if(FSW_boot_messages)
73 if(FSW_boot_messages)
73 add_definitions(-DBOOT_MESSAGES)
74 add_definitions(-DBOOT_MESSAGES)
74 endif()
75 endif()
75 if(FSW_debug_messages)
76 if(FSW_debug_messages)
76 add_definitions(-DDEBUG_MESSAGES)
77 add_definitions(-DDEBUG_MESSAGES)
77 endif()
78 endif()
78 if(FSW_cpu_usage_report)
79 if(FSW_cpu_usage_report)
79 add_definitions(-DPRINT_TASK_STATISTICS)
80 add_definitions(-DPRINT_TASK_STATISTICS)
80 endif()
81 endif()
81 if(FSW_stack_report)
82 if(FSW_stack_report)
82 add_definitions(-DPRINT_STACK_REPORT)
83 add_definitions(-DPRINT_STACK_REPORT)
83 endif()
84 endif()
84 if(FSW_vhdl_dev)
85 if(FSW_vhdl_dev)
85 add_definitions(-DVHDL_DEV)
86 add_definitions(-DVHDL_DEV)
86 endif()
87 endif()
87 if(FSW_lpp_dpu_destid)
88 if(FSW_lpp_dpu_destid)
88 add_definitions(-DLPP_DPU_DESTID)
89 add_definitions(-DLPP_DPU_DESTID)
89 endif()
90 endif()
90 if(FSW_debug_watchdog)
91 if(FSW_debug_watchdog)
91 add_definitions(-DDEBUG_WATCHDOG)
92 add_definitions(-DDEBUG_WATCHDOG)
92 endif()
93 endif()
93 if(FSW_debug_tch)
94 if(FSW_debug_tch)
94 add_definitions(-DDEBUG_TCH)
95 add_definitions(-DDEBUG_TCH)
95 endif()
96 endif()
96
97
97
98
98
99
99 add_definitions(-DMSB_FIRST_TCH)
100 add_definitions(-DMSB_FIRST_TCH)
100
101
101 add_definitions(-DSWVERSION=-1-0)
102 add_definitions(-DSWVERSION=-1-0)
102 add_definitions(-DSW_VERSION_N1=${SW_VERSION_N1})
103 add_definitions(-DSW_VERSION_N1=${SW_VERSION_N1})
103 add_definitions(-DSW_VERSION_N2=${SW_VERSION_N2})
104 add_definitions(-DSW_VERSION_N2=${SW_VERSION_N2})
104 add_definitions(-DSW_VERSION_N3=${SW_VERSION_N3})
105 add_definitions(-DSW_VERSION_N3=${SW_VERSION_N3})
105 add_definitions(-DSW_VERSION_N4=${SW_VERSION_N4})
106 add_definitions(-DSW_VERSION_N4=${SW_VERSION_N4})
106
107
107 add_executable(fsw ${SOURCES})
108 add_executable(fsw ${SOURCES})
108
109
110 if(FSW_Instrument_Scrubbing)
111 add_definitions(-DENABLE_SCRUBBING_COUNTER)
112 endif()
113
109 if(Coverage)
114 if(Coverage)
110 target_link_libraries(fsw gcov)
115 target_link_libraries(fsw gcov)
111 SET_TARGET_PROPERTIES(fsw PROPERTIES COMPILE_FLAGS "-fprofile-arcs -ftest-coverage")
116 SET_TARGET_PROPERTIES(fsw PROPERTIES COMPILE_FLAGS "-fprofile-arcs -ftest-coverage")
112 endif()
117 endif()
113
118
114
119
115 if(fix-b2bst)
120 if(fix-b2bst)
116 check_b2bst(fsw ${CMAKE_CURRENT_BINARY_DIR})
121 check_b2bst(fsw ${CMAKE_CURRENT_BINARY_DIR})
117 endif()
122 endif()
118
123
119 if(NOT FSW_lpp_dpu_destid)
124 if(NOT FSW_lpp_dpu_destid)
120 build_srec(fsw ${CMAKE_CURRENT_BINARY_DIR} "${SW_VERSION_N1}-${SW_VERSION_N2}-${SW_VERSION_N3}-${SW_VERSION_N4}")
125 build_srec(fsw ${CMAKE_CURRENT_BINARY_DIR} "${SW_VERSION_N1}-${SW_VERSION_N2}-${SW_VERSION_N3}-${SW_VERSION_N4}")
121 endif()
126 endif()
122
127
123
128
124 add_test_cppcheck(fsw STYLE UNUSED_FUNCTIONS POSSIBLE_ERROR MISSING_INCLUDE)
129 add_test_cppcheck(fsw STYLE UNUSED_FUNCTIONS POSSIBLE_ERROR MISSING_INCLUDE)
125
130
@@ -1,1103 +1,1054
1 /** General usage functions and RTEMS tasks.
1 /** General usage functions and RTEMS tasks.
2 *
2 *
3 * @file
3 * @file
4 * @author P. LEROY
4 * @author P. LEROY
5 *
5 *
6 */
6 */
7
7
8 #include "fsw_misc.h"
8 #include "fsw_misc.h"
9
9
10 int16_t hk_lfr_sc_v_f3_as_int16 = 0;
10 int16_t hk_lfr_sc_v_f3_as_int16 = 0;
11 int16_t hk_lfr_sc_e1_f3_as_int16 = 0;
11 int16_t hk_lfr_sc_e1_f3_as_int16 = 0;
12 int16_t hk_lfr_sc_e2_f3_as_int16 = 0;
12 int16_t hk_lfr_sc_e2_f3_as_int16 = 0;
13
13
14 void timer_configure(unsigned char timer, unsigned int clock_divider,
14 void timer_configure(unsigned char timer, unsigned int clock_divider,
15 unsigned char interrupt_level, rtems_isr (*timer_isr)() )
15 unsigned char interrupt_level, rtems_isr (*timer_isr)() )
16 {
16 {
17 /** This function configures a GPTIMER timer instantiated in the VHDL design.
17 /** This function configures a GPTIMER timer instantiated in the VHDL design.
18 *
18 *
19 * @param gptimer_regs points to the APB registers of the GPTIMER IP core.
19 * @param gptimer_regs points to the APB registers of the GPTIMER IP core.
20 * @param timer is the number of the timer in the IP core (several timers can be instantiated).
20 * @param timer is the number of the timer in the IP core (several timers can be instantiated).
21 * @param clock_divider is the divider of the 1 MHz clock that will be configured.
21 * @param clock_divider is the divider of the 1 MHz clock that will be configured.
22 * @param interrupt_level is the interrupt level that the timer drives.
22 * @param interrupt_level is the interrupt level that the timer drives.
23 * @param timer_isr is the interrupt subroutine that will be attached to the IRQ driven by the timer.
23 * @param timer_isr is the interrupt subroutine that will be attached to the IRQ driven by the timer.
24 *
24 *
25 * Interrupt levels are described in the SPARC documentation sparcv8.pdf p.76
25 * Interrupt levels are described in the SPARC documentation sparcv8.pdf p.76
26 *
26 *
27 */
27 */
28
28
29 rtems_status_code status;
29 rtems_status_code status;
30 rtems_isr_entry old_isr_handler;
30 rtems_isr_entry old_isr_handler;
31
31
32 old_isr_handler = NULL;
32 old_isr_handler = NULL;
33
33
34 gptimer_regs->timer[timer].ctrl = INIT_CHAR; // reset the control register
34 gptimer_regs->timer[timer].ctrl = INIT_CHAR; // reset the control register
35
35
36 status = rtems_interrupt_catch( timer_isr, interrupt_level, &old_isr_handler) ; // see sparcv8.pdf p.76 for interrupt levels
36 status = rtems_interrupt_catch( timer_isr, interrupt_level, &old_isr_handler) ; // see sparcv8.pdf p.76 for interrupt levels
37 if (status!=RTEMS_SUCCESSFUL)
37 if (status!=RTEMS_SUCCESSFUL)
38 {
38 {
39 PRINTF("in configure_timer *** ERR rtems_interrupt_catch\n")
39 PRINTF("in configure_timer *** ERR rtems_interrupt_catch\n")
40 }
40 }
41
41
42 timer_set_clock_divider( timer, clock_divider);
42 timer_set_clock_divider( timer, clock_divider);
43 }
43 }
44
44
45 void timer_start(unsigned char timer)
45 void timer_start(unsigned char timer)
46 {
46 {
47 /** This function starts a GPTIMER timer.
47 /** This function starts a GPTIMER timer.
48 *
48 *
49 * @param gptimer_regs points to the APB registers of the GPTIMER IP core.
49 * @param gptimer_regs points to the APB registers of the GPTIMER IP core.
50 * @param timer is the number of the timer in the IP core (several timers can be instantiated).
50 * @param timer is the number of the timer in the IP core (several timers can be instantiated).
51 *
51 *
52 */
52 */
53
53
54 gptimer_regs->timer[timer].ctrl = gptimer_regs->timer[timer].ctrl | GPTIMER_CLEAR_IRQ;
54 gptimer_regs->timer[timer].ctrl = gptimer_regs->timer[timer].ctrl | GPTIMER_CLEAR_IRQ;
55 gptimer_regs->timer[timer].ctrl = gptimer_regs->timer[timer].ctrl | GPTIMER_LD;
55 gptimer_regs->timer[timer].ctrl = gptimer_regs->timer[timer].ctrl | GPTIMER_LD;
56 gptimer_regs->timer[timer].ctrl = gptimer_regs->timer[timer].ctrl | GPTIMER_EN;
56 gptimer_regs->timer[timer].ctrl = gptimer_regs->timer[timer].ctrl | GPTIMER_EN;
57 gptimer_regs->timer[timer].ctrl = gptimer_regs->timer[timer].ctrl | GPTIMER_RS;
57 gptimer_regs->timer[timer].ctrl = gptimer_regs->timer[timer].ctrl | GPTIMER_RS;
58 gptimer_regs->timer[timer].ctrl = gptimer_regs->timer[timer].ctrl | GPTIMER_IE;
58 gptimer_regs->timer[timer].ctrl = gptimer_regs->timer[timer].ctrl | GPTIMER_IE;
59 }
59 }
60
60
61 void timer_stop(unsigned char timer)
61 void timer_stop(unsigned char timer)
62 {
62 {
63 /** This function stops a GPTIMER timer.
63 /** This function stops a GPTIMER timer.
64 *
64 *
65 * @param gptimer_regs points to the APB registers of the GPTIMER IP core.
65 * @param gptimer_regs points to the APB registers of the GPTIMER IP core.
66 * @param timer is the number of the timer in the IP core (several timers can be instantiated).
66 * @param timer is the number of the timer in the IP core (several timers can be instantiated).
67 *
67 *
68 */
68 */
69
69
70 gptimer_regs->timer[timer].ctrl = gptimer_regs->timer[timer].ctrl & GPTIMER_EN_MASK;
70 gptimer_regs->timer[timer].ctrl = gptimer_regs->timer[timer].ctrl & GPTIMER_EN_MASK;
71 gptimer_regs->timer[timer].ctrl = gptimer_regs->timer[timer].ctrl & GPTIMER_IE_MASK;
71 gptimer_regs->timer[timer].ctrl = gptimer_regs->timer[timer].ctrl & GPTIMER_IE_MASK;
72 gptimer_regs->timer[timer].ctrl = gptimer_regs->timer[timer].ctrl | GPTIMER_CLEAR_IRQ;
72 gptimer_regs->timer[timer].ctrl = gptimer_regs->timer[timer].ctrl | GPTIMER_CLEAR_IRQ;
73 }
73 }
74
74
75 void timer_set_clock_divider(unsigned char timer, unsigned int clock_divider)
75 void timer_set_clock_divider(unsigned char timer, unsigned int clock_divider)
76 {
76 {
77 /** This function sets the clock divider of a GPTIMER timer.
77 /** This function sets the clock divider of a GPTIMER timer.
78 *
78 *
79 * @param gptimer_regs points to the APB registers of the GPTIMER IP core.
79 * @param gptimer_regs points to the APB registers of the GPTIMER IP core.
80 * @param timer is the number of the timer in the IP core (several timers can be instantiated).
80 * @param timer is the number of the timer in the IP core (several timers can be instantiated).
81 * @param clock_divider is the divider of the 1 MHz clock that will be configured.
81 * @param clock_divider is the divider of the 1 MHz clock that will be configured.
82 *
82 *
83 */
83 */
84
84
85 gptimer_regs->timer[timer].reload = clock_divider; // base clock frequency is 1 MHz
85 gptimer_regs->timer[timer].reload = clock_divider; // base clock frequency is 1 MHz
86 }
86 }
87
87
88 // WATCHDOG
88 // WATCHDOG
89
89
90 rtems_isr watchdog_isr( rtems_vector_number vector )
90 rtems_isr watchdog_isr( rtems_vector_number vector )
91 {
91 {
92 rtems_status_code status_code;
92 rtems_status_code status_code;
93
93
94 status_code = rtems_event_send( Task_id[TASKID_DUMB], RTEMS_EVENT_12 );
94 status_code = rtems_event_send( Task_id[TASKID_DUMB], RTEMS_EVENT_12 );
95
95
96 PRINTF("watchdog_isr *** this is the end, exit(0)\n");
96 PRINTF("watchdog_isr *** this is the end, exit(0)\n");
97
97
98 exit(0);
98 exit(0);
99 }
99 }
100
100
101 void watchdog_configure(void)
101 void watchdog_configure(void)
102 {
102 {
103 /** This function configure the watchdog.
103 /** This function configure the watchdog.
104 *
104 *
105 * @param gptimer_regs points to the APB registers of the GPTIMER IP core.
105 * @param gptimer_regs points to the APB registers of the GPTIMER IP core.
106 * @param timer is the number of the timer in the IP core (several timers can be instantiated).
106 * @param timer is the number of the timer in the IP core (several timers can be instantiated).
107 *
107 *
108 * The watchdog is a timer provided by the GPTIMER IP core of the GRLIB.
108 * The watchdog is a timer provided by the GPTIMER IP core of the GRLIB.
109 *
109 *
110 */
110 */
111
111
112 LEON_Mask_interrupt( IRQ_GPTIMER_WATCHDOG ); // mask gptimer/watchdog interrupt during configuration
112 LEON_Mask_interrupt( IRQ_GPTIMER_WATCHDOG ); // mask gptimer/watchdog interrupt during configuration
113
113
114 timer_configure( TIMER_WATCHDOG, CLKDIV_WATCHDOG, IRQ_SPARC_GPTIMER_WATCHDOG, watchdog_isr );
114 timer_configure( TIMER_WATCHDOG, CLKDIV_WATCHDOG, IRQ_SPARC_GPTIMER_WATCHDOG, watchdog_isr );
115
115
116 LEON_Clear_interrupt( IRQ_GPTIMER_WATCHDOG ); // clear gptimer/watchdog interrupt
116 LEON_Clear_interrupt( IRQ_GPTIMER_WATCHDOG ); // clear gptimer/watchdog interrupt
117 }
117 }
118
118
119 void watchdog_stop(void)
119 void watchdog_stop(void)
120 {
120 {
121 LEON_Mask_interrupt( IRQ_GPTIMER_WATCHDOG ); // mask gptimer/watchdog interrupt line
121 LEON_Mask_interrupt( IRQ_GPTIMER_WATCHDOG ); // mask gptimer/watchdog interrupt line
122 timer_stop( TIMER_WATCHDOG );
122 timer_stop( TIMER_WATCHDOG );
123 LEON_Clear_interrupt( IRQ_GPTIMER_WATCHDOG ); // clear gptimer/watchdog interrupt
123 LEON_Clear_interrupt( IRQ_GPTIMER_WATCHDOG ); // clear gptimer/watchdog interrupt
124 }
124 }
125
125
126 void watchdog_reload(void)
126 void watchdog_reload(void)
127 {
127 {
128 /** This function reloads the watchdog timer counter with the timer reload value.
128 /** This function reloads the watchdog timer counter with the timer reload value.
129 *
129 *
130 * @param void
130 * @param void
131 *
131 *
132 * @return void
132 * @return void
133 *
133 *
134 */
134 */
135
135
136 gptimer_regs->timer[TIMER_WATCHDOG].ctrl = gptimer_regs->timer[TIMER_WATCHDOG].ctrl | GPTIMER_LD;
136 gptimer_regs->timer[TIMER_WATCHDOG].ctrl = gptimer_regs->timer[TIMER_WATCHDOG].ctrl | GPTIMER_LD;
137 }
137 }
138
138
139 void watchdog_start(void)
139 void watchdog_start(void)
140 {
140 {
141 /** This function starts the watchdog timer.
141 /** This function starts the watchdog timer.
142 *
142 *
143 * @param gptimer_regs points to the APB registers of the GPTIMER IP core.
143 * @param gptimer_regs points to the APB registers of the GPTIMER IP core.
144 * @param timer is the number of the timer in the IP core (several timers can be instantiated).
144 * @param timer is the number of the timer in the IP core (several timers can be instantiated).
145 *
145 *
146 */
146 */
147
147
148 LEON_Clear_interrupt( IRQ_GPTIMER_WATCHDOG );
148 LEON_Clear_interrupt( IRQ_GPTIMER_WATCHDOG );
149
149
150 gptimer_regs->timer[TIMER_WATCHDOG].ctrl = gptimer_regs->timer[TIMER_WATCHDOG].ctrl | GPTIMER_CLEAR_IRQ;
150 gptimer_regs->timer[TIMER_WATCHDOG].ctrl = gptimer_regs->timer[TIMER_WATCHDOG].ctrl | GPTIMER_CLEAR_IRQ;
151 gptimer_regs->timer[TIMER_WATCHDOG].ctrl = gptimer_regs->timer[TIMER_WATCHDOG].ctrl | GPTIMER_LD;
151 gptimer_regs->timer[TIMER_WATCHDOG].ctrl = gptimer_regs->timer[TIMER_WATCHDOG].ctrl | GPTIMER_LD;
152 gptimer_regs->timer[TIMER_WATCHDOG].ctrl = gptimer_regs->timer[TIMER_WATCHDOG].ctrl | GPTIMER_EN;
152 gptimer_regs->timer[TIMER_WATCHDOG].ctrl = gptimer_regs->timer[TIMER_WATCHDOG].ctrl | GPTIMER_EN;
153 gptimer_regs->timer[TIMER_WATCHDOG].ctrl = gptimer_regs->timer[TIMER_WATCHDOG].ctrl | GPTIMER_IE;
153 gptimer_regs->timer[TIMER_WATCHDOG].ctrl = gptimer_regs->timer[TIMER_WATCHDOG].ctrl | GPTIMER_IE;
154
154
155 LEON_Unmask_interrupt( IRQ_GPTIMER_WATCHDOG );
155 LEON_Unmask_interrupt( IRQ_GPTIMER_WATCHDOG );
156
156
157 }
157 }
158
158
159 int enable_apbuart_transmitter( void ) // set the bit 1, TE Transmitter Enable to 1 in the APBUART control register
159 int enable_apbuart_transmitter( void ) // set the bit 1, TE Transmitter Enable to 1 in the APBUART control register
160 {
160 {
161 struct apbuart_regs_str *apbuart_regs = (struct apbuart_regs_str *) REGS_ADDR_APBUART;
161 struct apbuart_regs_str *apbuart_regs = (struct apbuart_regs_str *) REGS_ADDR_APBUART;
162
162
163 apbuart_regs->ctrl = APBUART_CTRL_REG_MASK_TE;
163 apbuart_regs->ctrl = APBUART_CTRL_REG_MASK_TE;
164
164
165 return 0;
165 return 0;
166 }
166 }
167
167
168 void set_apbuart_scaler_reload_register(unsigned int regs, unsigned int value)
168 void set_apbuart_scaler_reload_register(unsigned int regs, unsigned int value)
169 {
169 {
170 /** This function sets the scaler reload register of the apbuart module
170 /** This function sets the scaler reload register of the apbuart module
171 *
171 *
172 * @param regs is the address of the apbuart registers in memory
172 * @param regs is the address of the apbuart registers in memory
173 * @param value is the value that will be stored in the scaler register
173 * @param value is the value that will be stored in the scaler register
174 *
174 *
175 * The value shall be set by the software to get data on the serial interface.
175 * The value shall be set by the software to get data on the serial interface.
176 *
176 *
177 */
177 */
178
178
179 struct apbuart_regs_str *apbuart_regs = (struct apbuart_regs_str *) regs;
179 struct apbuart_regs_str *apbuart_regs = (struct apbuart_regs_str *) regs;
180
180
181 apbuart_regs->scaler = value;
181 apbuart_regs->scaler = value;
182
182
183 BOOT_PRINTF1("OK *** apbuart port scaler reload register set to 0x%x\n", value)
183 BOOT_PRINTF1("OK *** apbuart port scaler reload register set to 0x%x\n", value)
184 }
184 }
185
185
186 //************
186 //************
187 // RTEMS TASKS
187 // RTEMS TASKS
188
188
189 rtems_task load_task(rtems_task_argument argument)
189 rtems_task load_task(rtems_task_argument argument)
190 {
190 {
191 BOOT_PRINTF("in LOAD *** \n")
191 BOOT_PRINTF("in LOAD *** \n")
192
192
193 rtems_status_code status;
193 rtems_status_code status;
194 unsigned int i;
194 unsigned int i;
195 unsigned int j;
195 unsigned int j;
196 rtems_name name_watchdog_rate_monotonic; // name of the watchdog rate monotonic
196 rtems_name name_watchdog_rate_monotonic; // name of the watchdog rate monotonic
197 rtems_id watchdog_period_id; // id of the watchdog rate monotonic period
197 rtems_id watchdog_period_id; // id of the watchdog rate monotonic period
198
198
199 watchdog_period_id = RTEMS_ID_NONE;
199 watchdog_period_id = RTEMS_ID_NONE;
200
200
201 name_watchdog_rate_monotonic = rtems_build_name( 'L', 'O', 'A', 'D' );
201 name_watchdog_rate_monotonic = rtems_build_name( 'L', 'O', 'A', 'D' );
202
202
203 status = rtems_rate_monotonic_create( name_watchdog_rate_monotonic, &watchdog_period_id );
203 status = rtems_rate_monotonic_create( name_watchdog_rate_monotonic, &watchdog_period_id );
204 if( status != RTEMS_SUCCESSFUL ) {
204 if( status != RTEMS_SUCCESSFUL ) {
205 PRINTF1( "in LOAD *** rtems_rate_monotonic_create failed with status of %d\n", status )
205 PRINTF1( "in LOAD *** rtems_rate_monotonic_create failed with status of %d\n", status )
206 }
206 }
207
207
208 i = 0;
208 i = 0;
209 j = 0;
209 j = 0;
210
210
211 watchdog_configure();
211 watchdog_configure();
212
212
213 watchdog_start();
213 watchdog_start();
214
214
215 set_sy_lfr_watchdog_enabled( true );
215 set_sy_lfr_watchdog_enabled( true );
216
216
217 while(1){
217 while(1){
218 status = rtems_rate_monotonic_period( watchdog_period_id, WATCHDOG_PERIOD );
218 status = rtems_rate_monotonic_period( watchdog_period_id, WATCHDOG_PERIOD );
219 watchdog_reload();
219 watchdog_reload();
220 i = i + 1;
220 i = i + 1;
221 if ( i == WATCHDOG_LOOP_PRINTF )
221 if ( i == WATCHDOG_LOOP_PRINTF )
222 {
222 {
223 i = 0;
223 i = 0;
224 j = j + 1;
224 j = j + 1;
225 PRINTF1("%d\n", j)
225 PRINTF1("%d\n", j)
226 }
226 }
227 #ifdef DEBUG_WATCHDOG
227 #ifdef DEBUG_WATCHDOG
228 if (j == WATCHDOG_LOOP_DEBUG )
228 if (j == WATCHDOG_LOOP_DEBUG )
229 {
229 {
230 status = rtems_task_delete(RTEMS_SELF);
230 status = rtems_task_delete(RTEMS_SELF);
231 }
231 }
232 #endif
232 #endif
233 }
233 }
234 }
234 }
235
235
236 rtems_task hous_task(rtems_task_argument argument)
236 rtems_task hous_task(rtems_task_argument argument)
237 {
237 {
238 rtems_status_code status;
238 rtems_status_code status;
239 rtems_status_code spare_status;
239 rtems_status_code spare_status;
240 rtems_id queue_id;
240 rtems_id queue_id;
241 rtems_rate_monotonic_period_status period_status;
241 rtems_rate_monotonic_period_status period_status;
242 bool isSynchronized;
242 bool isSynchronized;
243
243
244 queue_id = RTEMS_ID_NONE;
244 queue_id = RTEMS_ID_NONE;
245 memset(&period_status, 0, sizeof(rtems_rate_monotonic_period_status));
245 memset(&period_status, 0, sizeof(rtems_rate_monotonic_period_status));
246 isSynchronized = false;
246 isSynchronized = false;
247
247
248 status = get_message_queue_id_send( &queue_id );
248 status = get_message_queue_id_send( &queue_id );
249 if (status != RTEMS_SUCCESSFUL)
249 if (status != RTEMS_SUCCESSFUL)
250 {
250 {
251 PRINTF1("in HOUS *** ERR get_message_queue_id_send %d\n", status)
251 PRINTF1("in HOUS *** ERR get_message_queue_id_send %d\n", status)
252 }
252 }
253
253
254 BOOT_PRINTF("in HOUS ***\n");
254 BOOT_PRINTF("in HOUS ***\n");
255
255
256 if (rtems_rate_monotonic_ident( name_hk_rate_monotonic, &HK_id) != RTEMS_SUCCESSFUL) {
256 if (rtems_rate_monotonic_ident( name_hk_rate_monotonic, &HK_id) != RTEMS_SUCCESSFUL) {
257 status = rtems_rate_monotonic_create( name_hk_rate_monotonic, &HK_id );
257 status = rtems_rate_monotonic_create( name_hk_rate_monotonic, &HK_id );
258 if( status != RTEMS_SUCCESSFUL ) {
258 if( status != RTEMS_SUCCESSFUL ) {
259 PRINTF1( "rtems_rate_monotonic_create failed with status of %d\n", status );
259 PRINTF1( "rtems_rate_monotonic_create failed with status of %d\n", status );
260 }
260 }
261 }
261 }
262
262
263 status = rtems_rate_monotonic_cancel(HK_id);
263 status = rtems_rate_monotonic_cancel(HK_id);
264 if( status != RTEMS_SUCCESSFUL ) {
264 if( status != RTEMS_SUCCESSFUL ) {
265 PRINTF1( "ERR *** in HOUS *** rtems_rate_monotonic_cancel(HK_id) ***code: %d\n", status );
265 PRINTF1( "ERR *** in HOUS *** rtems_rate_monotonic_cancel(HK_id) ***code: %d\n", status );
266 }
266 }
267 else {
267 else {
268 DEBUG_PRINTF("OK *** in HOUS *** rtems_rate_monotonic_cancel(HK_id)\n");
268 DEBUG_PRINTF("OK *** in HOUS *** rtems_rate_monotonic_cancel(HK_id)\n");
269 }
269 }
270
270
271 // startup phase
271 // startup phase
272 status = rtems_rate_monotonic_period( HK_id, SY_LFR_TIME_SYN_TIMEOUT_in_ticks );
272 status = rtems_rate_monotonic_period( HK_id, SY_LFR_TIME_SYN_TIMEOUT_in_ticks );
273 status = rtems_rate_monotonic_get_status( HK_id, &period_status );
273 status = rtems_rate_monotonic_get_status( HK_id, &period_status );
274 DEBUG_PRINTF1("startup HK, HK_id status = %d\n", period_status.state)
274 DEBUG_PRINTF1("startup HK, HK_id status = %d\n", period_status.state)
275 while( (period_status.state != RATE_MONOTONIC_EXPIRED)
275 while( (period_status.state != RATE_MONOTONIC_EXPIRED)
276 && (isSynchronized == false) ) // after SY_LFR_TIME_SYN_TIMEOUT ms, starts HK anyway
276 && (isSynchronized == false) ) // after SY_LFR_TIME_SYN_TIMEOUT ms, starts HK anyway
277 {
277 {
278 if ((time_management_regs->coarse_time & VAL_LFR_SYNCHRONIZED) == INT32_ALL_0) // check time synchronization
278 if ((time_management_regs->coarse_time & VAL_LFR_SYNCHRONIZED) == INT32_ALL_0) // check time synchronization
279 {
279 {
280 isSynchronized = true;
280 isSynchronized = true;
281 }
281 }
282 else
282 else
283 {
283 {
284 status = rtems_rate_monotonic_get_status( HK_id, &period_status );
284 status = rtems_rate_monotonic_get_status( HK_id, &period_status );
285
285
286 status = rtems_task_wake_after( HK_SYNC_WAIT ); // wait HK_SYNCH_WAIT 100 ms = 10 * 10 ms
286 status = rtems_task_wake_after( HK_SYNC_WAIT ); // wait HK_SYNCH_WAIT 100 ms = 10 * 10 ms
287 }
287 }
288 }
288 }
289 status = rtems_rate_monotonic_cancel(HK_id);
289 status = rtems_rate_monotonic_cancel(HK_id);
290 DEBUG_PRINTF1("startup HK, HK_id status = %d\n", period_status.state)
290 DEBUG_PRINTF1("startup HK, HK_id status = %d\n", period_status.state)
291
291
292 set_hk_lfr_reset_cause( POWER_ON );
292 set_hk_lfr_reset_cause( POWER_ON );
293
293
294 while(1){ // launch the rate monotonic task
294 while(1){ // launch the rate monotonic task
295 status = rtems_rate_monotonic_period( HK_id, HK_PERIOD );
295 status = rtems_rate_monotonic_period( HK_id, HK_PERIOD );
296 if ( status != RTEMS_SUCCESSFUL ) {
296 if ( status != RTEMS_SUCCESSFUL ) {
297 PRINTF1( "in HOUS *** ERR period: %d\n", status);
297 PRINTF1( "in HOUS *** ERR period: %d\n", status);
298 spare_status = rtems_event_send( Task_id[TASKID_DUMB], RTEMS_EVENT_6 );
298 spare_status = rtems_event_send( Task_id[TASKID_DUMB], RTEMS_EVENT_6 );
299 }
299 }
300 else {
300 else {
301 housekeeping_packet.packetSequenceControl[BYTE_0] = (unsigned char) (sequenceCounterHK >> SHIFT_1_BYTE);
301 housekeeping_packet.packetSequenceControl[BYTE_0] = (unsigned char) (sequenceCounterHK >> SHIFT_1_BYTE);
302 housekeeping_packet.packetSequenceControl[BYTE_1] = (unsigned char) (sequenceCounterHK );
302 housekeeping_packet.packetSequenceControl[BYTE_1] = (unsigned char) (sequenceCounterHK );
303 increment_seq_counter( &sequenceCounterHK );
303 increment_seq_counter( &sequenceCounterHK );
304
304
305 housekeeping_packet.time[BYTE_0] = (unsigned char) (time_management_regs->coarse_time >> SHIFT_3_BYTES);
305 housekeeping_packet.time[BYTE_0] = (unsigned char) (time_management_regs->coarse_time >> SHIFT_3_BYTES);
306 housekeeping_packet.time[BYTE_1] = (unsigned char) (time_management_regs->coarse_time >> SHIFT_2_BYTES);
306 housekeeping_packet.time[BYTE_1] = (unsigned char) (time_management_regs->coarse_time >> SHIFT_2_BYTES);
307 housekeeping_packet.time[BYTE_2] = (unsigned char) (time_management_regs->coarse_time >> SHIFT_1_BYTE);
307 housekeeping_packet.time[BYTE_2] = (unsigned char) (time_management_regs->coarse_time >> SHIFT_1_BYTE);
308 housekeeping_packet.time[BYTE_3] = (unsigned char) (time_management_regs->coarse_time);
308 housekeeping_packet.time[BYTE_3] = (unsigned char) (time_management_regs->coarse_time);
309 housekeeping_packet.time[BYTE_4] = (unsigned char) (time_management_regs->fine_time >> SHIFT_1_BYTE);
309 housekeeping_packet.time[BYTE_4] = (unsigned char) (time_management_regs->fine_time >> SHIFT_1_BYTE);
310 housekeeping_packet.time[BYTE_5] = (unsigned char) (time_management_regs->fine_time);
310 housekeeping_packet.time[BYTE_5] = (unsigned char) (time_management_regs->fine_time);
311
311
312 spacewire_update_hk_lfr_link_state( &housekeeping_packet.lfr_status_word[0] );
312 spacewire_update_hk_lfr_link_state( &housekeeping_packet.lfr_status_word[0] );
313
313
314 spacewire_read_statistics();
314 spacewire_read_statistics();
315
315
316 update_hk_with_grspw_stats();
316 update_hk_with_grspw_stats();
317
317
318 set_hk_lfr_time_not_synchro();
318 set_hk_lfr_time_not_synchro();
319
319
320 housekeeping_packet.hk_lfr_q_sd_fifo_size_max = hk_lfr_q_sd_fifo_size_max;
320 housekeeping_packet.hk_lfr_q_sd_fifo_size_max = hk_lfr_q_sd_fifo_size_max;
321 housekeeping_packet.hk_lfr_q_rv_fifo_size_max = hk_lfr_q_rv_fifo_size_max;
321 housekeeping_packet.hk_lfr_q_rv_fifo_size_max = hk_lfr_q_rv_fifo_size_max;
322 housekeeping_packet.hk_lfr_q_p0_fifo_size_max = hk_lfr_q_p0_fifo_size_max;
322 housekeeping_packet.hk_lfr_q_p0_fifo_size_max = hk_lfr_q_p0_fifo_size_max;
323 housekeeping_packet.hk_lfr_q_p1_fifo_size_max = hk_lfr_q_p1_fifo_size_max;
323 housekeeping_packet.hk_lfr_q_p1_fifo_size_max = hk_lfr_q_p1_fifo_size_max;
324 housekeeping_packet.hk_lfr_q_p2_fifo_size_max = hk_lfr_q_p2_fifo_size_max;
324 housekeeping_packet.hk_lfr_q_p2_fifo_size_max = hk_lfr_q_p2_fifo_size_max;
325
325
326 housekeeping_packet.sy_lfr_common_parameters_spare = parameter_dump_packet.sy_lfr_common_parameters_spare;
326 housekeeping_packet.sy_lfr_common_parameters_spare = parameter_dump_packet.sy_lfr_common_parameters_spare;
327 housekeeping_packet.sy_lfr_common_parameters = parameter_dump_packet.sy_lfr_common_parameters;
327 housekeeping_packet.sy_lfr_common_parameters = parameter_dump_packet.sy_lfr_common_parameters;
328 get_temperatures( housekeeping_packet.hk_lfr_temp_scm );
328 get_temperatures( housekeeping_packet.hk_lfr_temp_scm );
329 get_v_e1_e2_f3( housekeeping_packet.hk_lfr_sc_v_f3 );
329 get_v_e1_e2_f3( housekeeping_packet.hk_lfr_sc_v_f3 );
330 get_cpu_load( (unsigned char *) &housekeeping_packet.hk_lfr_cpu_load );
330 get_cpu_load( (unsigned char *) &housekeeping_packet.hk_lfr_cpu_load );
331
331
332 hk_lfr_le_me_he_update();
332 hk_lfr_le_me_he_update();
333
333
334 // SEND PACKET
334 // SEND PACKET
335 status = rtems_message_queue_send( queue_id, &housekeeping_packet,
335 status = rtems_message_queue_send( queue_id, &housekeeping_packet,
336 PACKET_LENGTH_HK + CCSDS_TC_TM_PACKET_OFFSET + CCSDS_PROTOCOLE_EXTRA_BYTES);
336 PACKET_LENGTH_HK + CCSDS_TC_TM_PACKET_OFFSET + CCSDS_PROTOCOLE_EXTRA_BYTES);
337 if (status != RTEMS_SUCCESSFUL) {
337 if (status != RTEMS_SUCCESSFUL) {
338 PRINTF1("in HOUS *** ERR send: %d\n", status)
338 PRINTF1("in HOUS *** ERR send: %d\n", status)
339 }
339 }
340 }
340 }
341 }
341 }
342
342
343 PRINTF("in HOUS *** deleting task\n")
343 PRINTF("in HOUS *** deleting task\n")
344
344
345 status = rtems_task_delete( RTEMS_SELF ); // should not return
345 status = rtems_task_delete( RTEMS_SELF ); // should not return
346
346
347 return;
347 return;
348 }
348 }
349
349
350 int filter( int x, filter_ctx* ctx )
350 int filter( int x, filter_ctx* ctx )
351 {
351 {
352 static const int b[NB_COEFFS][NB_COEFFS]={ {B00, B01, B02}, {B10, B11, B12}, {B20, B21, B22} };
352 static const int b[NB_COEFFS][NB_COEFFS]={ {B00, B01, B02}, {B10, B11, B12}, {B20, B21, B22} };
353 static const int a[NB_COEFFS][NB_COEFFS]={ {A00, A01, A02}, {A10, A11, A12}, {A20, A21, A22} };
353 static const int a[NB_COEFFS][NB_COEFFS]={ {A00, A01, A02}, {A10, A11, A12}, {A20, A21, A22} };
354 static const int b_gain[NB_COEFFS]={GAIN_B0, GAIN_B1, GAIN_B2};
354 static const int b_gain[NB_COEFFS]={GAIN_B0, GAIN_B1, GAIN_B2};
355 static const int a_gain[NB_COEFFS]={GAIN_A0, GAIN_A1, GAIN_A2};
355 static const int a_gain[NB_COEFFS]={GAIN_A0, GAIN_A1, GAIN_A2};
356
356
357 int_fast32_t W;
357 int_fast32_t W;
358 int i;
358 int i;
359
359
360 W = INIT_INT;
360 W = INIT_INT;
361 i = INIT_INT;
361 i = INIT_INT;
362
362
363 //Direct-Form-II
363 //Direct-Form-II
364 for ( i = 0; i < NB_COEFFS; i++ )
364 for ( i = 0; i < NB_COEFFS; i++ )
365 {
365 {
366 x = x << a_gain[i];
366 x = x << a_gain[i];
367 W = (x - ( a[i][COEFF1] * ctx->W[i][COEFF0] )
367 W = (x - ( a[i][COEFF1] * ctx->W[i][COEFF0] )
368 - ( a[i][COEFF2] * ctx->W[i][COEFF1] ) ) >> a_gain[i];
368 - ( a[i][COEFF2] * ctx->W[i][COEFF1] ) ) >> a_gain[i];
369 x = ( b[i][COEFF0] * W )
369 x = ( b[i][COEFF0] * W )
370 + ( b[i][COEFF1] * ctx->W[i][COEFF0] )
370 + ( b[i][COEFF1] * ctx->W[i][COEFF0] )
371 + ( b[i][COEFF2] * ctx->W[i][COEFF1] );
371 + ( b[i][COEFF2] * ctx->W[i][COEFF1] );
372 x = x >> b_gain[i];
372 x = x >> b_gain[i];
373 ctx->W[i][1] = ctx->W[i][0];
373 ctx->W[i][1] = ctx->W[i][0];
374 ctx->W[i][0] = W;
374 ctx->W[i][0] = W;
375 }
375 }
376 return x;
376 return x;
377 }
377 }
378
378
379 rtems_task avgv_task(rtems_task_argument argument)
379 rtems_task avgv_task(rtems_task_argument argument)
380 {
380 {
381 #define MOVING_AVERAGE 16
381 #define MOVING_AVERAGE 16
382 rtems_status_code status;
382 rtems_status_code status;
383 static int32_t v[MOVING_AVERAGE] = {0};
383 static int32_t v[MOVING_AVERAGE] = {0};
384 static int32_t e1[MOVING_AVERAGE] = {0};
384 static int32_t e1[MOVING_AVERAGE] = {0};
385 static int32_t e2[MOVING_AVERAGE] = {0};
385 static int32_t e2[MOVING_AVERAGE] = {0};
386 static int old_v = 0;
386 static int old_v = 0;
387 static int old_e1 = 0;
387 static int old_e1 = 0;
388 static int old_e2 = 0;
388 static int old_e2 = 0;
389 int32_t current_v;
389 int32_t current_v;
390 int32_t current_e1;
390 int32_t current_e1;
391 int32_t current_e2;
391 int32_t current_e2;
392 int32_t average_v;
392 int32_t average_v;
393 int32_t average_e1;
393 int32_t average_e1;
394 int32_t average_e2;
394 int32_t average_e2;
395 int32_t newValue_v;
395 int32_t newValue_v;
396 int32_t newValue_e1;
396 int32_t newValue_e1;
397 int32_t newValue_e2;
397 int32_t newValue_e2;
398 unsigned char k;
398 unsigned char k;
399 unsigned char indexOfOldValue;
399 unsigned char indexOfOldValue;
400
400
401 static filter_ctx ctx_v = { { {0,0,0}, {0,0,0}, {0,0,0} } };
401 static filter_ctx ctx_v = { { {0,0,0}, {0,0,0}, {0,0,0} } };
402 static filter_ctx ctx_e1 = { { {0,0,0}, {0,0,0}, {0,0,0} } };
402 static filter_ctx ctx_e1 = { { {0,0,0}, {0,0,0}, {0,0,0} } };
403 static filter_ctx ctx_e2 = { { {0,0,0}, {0,0,0}, {0,0,0} } };
403 static filter_ctx ctx_e2 = { { {0,0,0}, {0,0,0}, {0,0,0} } };
404
404
405 BOOT_PRINTF("in AVGV ***\n");
405 BOOT_PRINTF("in AVGV ***\n");
406
406
407 if (rtems_rate_monotonic_ident( name_avgv_rate_monotonic, &AVGV_id) != RTEMS_SUCCESSFUL) {
407 if (rtems_rate_monotonic_ident( name_avgv_rate_monotonic, &AVGV_id) != RTEMS_SUCCESSFUL) {
408 status = rtems_rate_monotonic_create( name_avgv_rate_monotonic, &AVGV_id );
408 status = rtems_rate_monotonic_create( name_avgv_rate_monotonic, &AVGV_id );
409 if( status != RTEMS_SUCCESSFUL ) {
409 if( status != RTEMS_SUCCESSFUL ) {
410 PRINTF1( "rtems_rate_monotonic_create failed with status of %d\n", status );
410 PRINTF1( "rtems_rate_monotonic_create failed with status of %d\n", status );
411 }
411 }
412 }
412 }
413
413
414 status = rtems_rate_monotonic_cancel(AVGV_id);
414 status = rtems_rate_monotonic_cancel(AVGV_id);
415 if( status != RTEMS_SUCCESSFUL ) {
415 if( status != RTEMS_SUCCESSFUL ) {
416 PRINTF1( "ERR *** in AVGV *** rtems_rate_monotonic_cancel(AVGV_id) ***code: %d\n", status );
416 PRINTF1( "ERR *** in AVGV *** rtems_rate_monotonic_cancel(AVGV_id) ***code: %d\n", status );
417 }
417 }
418 else {
418 else {
419 DEBUG_PRINTF("OK *** in AVGV *** rtems_rate_monotonic_cancel(AVGV_id)\n");
419 DEBUG_PRINTF("OK *** in AVGV *** rtems_rate_monotonic_cancel(AVGV_id)\n");
420 }
420 }
421
421
422 // initialize values
422 // initialize values
423 indexOfOldValue = MOVING_AVERAGE - 1;
423 indexOfOldValue = MOVING_AVERAGE - 1;
424 current_v = 0;
424 current_v = 0;
425 current_e1 = 0;
425 current_e1 = 0;
426 current_e2 = 0;
426 current_e2 = 0;
427 average_v = 0;
427 average_v = 0;
428 average_e1 = 0;
428 average_e1 = 0;
429 average_e2 = 0;
429 average_e2 = 0;
430 newValue_v = 0;
430 newValue_v = 0;
431 newValue_e1 = 0;
431 newValue_e1 = 0;
432 newValue_e2 = 0;
432 newValue_e2 = 0;
433
433
434 k = INIT_CHAR;
434 k = INIT_CHAR;
435
435
436 while(1)
436 while(1)
437 { // launch the rate monotonic task
437 { // launch the rate monotonic task
438 status = rtems_rate_monotonic_period( AVGV_id, AVGV_PERIOD );
438 status = rtems_rate_monotonic_period( AVGV_id, AVGV_PERIOD );
439 if ( status != RTEMS_SUCCESSFUL )
439 if ( status != RTEMS_SUCCESSFUL )
440 {
440 {
441 PRINTF1( "in AVGV *** ERR period: %d\n", status);
441 PRINTF1( "in AVGV *** ERR period: %d\n", status);
442 }
442 }
443 else
443 else
444 {
444 {
445 current_v = waveform_picker_regs->v;
445 current_v = waveform_picker_regs->v;
446 current_e1 = waveform_picker_regs->e1;
446 current_e1 = waveform_picker_regs->e1;
447 current_e2 = waveform_picker_regs->e2;
447 current_e2 = waveform_picker_regs->e2;
448 if ( (current_v != old_v)
448 if ( (current_v != old_v)
449 || (current_e1 != old_e1)
449 || (current_e1 != old_e1)
450 || (current_e2 != old_e2))
450 || (current_e2 != old_e2))
451 {
451 {
452 average_v = filter( current_v, &ctx_v );
452 average_v = filter( current_v, &ctx_v );
453 average_e1 = filter( current_e1, &ctx_e1 );
453 average_e1 = filter( current_e1, &ctx_e1 );
454 average_e2 = filter( current_e2, &ctx_e2 );
454 average_e2 = filter( current_e2, &ctx_e2 );
455
455
456 //update int16 values
456 //update int16 values
457 hk_lfr_sc_v_f3_as_int16 = (int16_t) average_v;
457 hk_lfr_sc_v_f3_as_int16 = (int16_t) average_v;
458 hk_lfr_sc_e1_f3_as_int16 = (int16_t) average_e1;
458 hk_lfr_sc_e1_f3_as_int16 = (int16_t) average_e1;
459 hk_lfr_sc_e2_f3_as_int16 = (int16_t) average_e2;
459 hk_lfr_sc_e2_f3_as_int16 = (int16_t) average_e2;
460 }
460 }
461 old_v = current_v;
461 old_v = current_v;
462 old_e1 = current_e1;
462 old_e1 = current_e1;
463 old_e2 = current_e2;
463 old_e2 = current_e2;
464 }
464 }
465 }
465 }
466
466
467 PRINTF("in AVGV *** deleting task\n");
467 PRINTF("in AVGV *** deleting task\n");
468
468
469 status = rtems_task_delete( RTEMS_SELF ); // should not return
469 status = rtems_task_delete( RTEMS_SELF ); // should not return
470
470
471 return;
471 return;
472 }
472 }
473
473
474 rtems_task dumb_task( rtems_task_argument unused )
474 rtems_task dumb_task( rtems_task_argument unused )
475 {
475 {
476 /** This RTEMS taks is used to print messages without affecting the general behaviour of the software.
476 /** This RTEMS taks is used to print messages without affecting the general behaviour of the software.
477 *
477 *
478 * @param unused is the starting argument of the RTEMS task
478 * @param unused is the starting argument of the RTEMS task
479 *
479 *
480 * The DUMB taks waits for RTEMS events and print messages depending on the incoming events.
480 * The DUMB taks waits for RTEMS events and print messages depending on the incoming events.
481 *
481 *
482 */
482 */
483
483
484 unsigned int i;
484 unsigned int i;
485 unsigned int intEventOut;
485 unsigned int intEventOut;
486 unsigned int coarse_time = 0;
486 unsigned int coarse_time = 0;
487 unsigned int fine_time = 0;
487 unsigned int fine_time = 0;
488 rtems_event_set event_out;
488 rtems_event_set event_out;
489
489
490 event_out = EVENT_SETS_NONE_PENDING;
490 event_out = EVENT_SETS_NONE_PENDING;
491
491
492 BOOT_PRINTF("in DUMB *** \n")
492 BOOT_PRINTF("in DUMB *** \n")
493
493
494 while(1){
494 while(1){
495 rtems_event_receive(RTEMS_EVENT_0 | RTEMS_EVENT_1 | RTEMS_EVENT_2 | RTEMS_EVENT_3
495 rtems_event_receive(RTEMS_EVENT_0 | RTEMS_EVENT_1 | RTEMS_EVENT_2 | RTEMS_EVENT_3
496 | RTEMS_EVENT_4 | RTEMS_EVENT_5 | RTEMS_EVENT_6 | RTEMS_EVENT_7
496 | RTEMS_EVENT_4 | RTEMS_EVENT_5 | RTEMS_EVENT_6 | RTEMS_EVENT_7
497 | RTEMS_EVENT_8 | RTEMS_EVENT_9 | RTEMS_EVENT_12 | RTEMS_EVENT_13
497 | RTEMS_EVENT_8 | RTEMS_EVENT_9 | RTEMS_EVENT_12 | RTEMS_EVENT_13
498 | RTEMS_EVENT_14,
498 | RTEMS_EVENT_14,
499 RTEMS_WAIT | RTEMS_EVENT_ANY, RTEMS_NO_TIMEOUT, &event_out); // wait for an RTEMS_EVENT
499 RTEMS_WAIT | RTEMS_EVENT_ANY, RTEMS_NO_TIMEOUT, &event_out); // wait for an RTEMS_EVENT
500 intEventOut = (unsigned int) event_out;
500 intEventOut = (unsigned int) event_out;
501 for ( i=0; i<NB_RTEMS_EVENTS; i++)
501 for ( i=0; i<NB_RTEMS_EVENTS; i++)
502 {
502 {
503 if ( ((intEventOut >> i) & 1) != 0)
503 if ( ((intEventOut >> i) & 1) != 0)
504 {
504 {
505 coarse_time = time_management_regs->coarse_time;
505 coarse_time = time_management_regs->coarse_time;
506 fine_time = time_management_regs->fine_time;
506 fine_time = time_management_regs->fine_time;
507 if (i==EVENT_12)
507 if (i==EVENT_12)
508 {
508 {
509 PRINTF1("%s\n", DUMB_MESSAGE_12)
509 PRINTF1("%s\n", DUMB_MESSAGE_12)
510 }
510 }
511 if (i==EVENT_13)
511 if (i==EVENT_13)
512 {
512 {
513 PRINTF1("%s\n", DUMB_MESSAGE_13)
513 PRINTF1("%s\n", DUMB_MESSAGE_13)
514 }
514 }
515 if (i==EVENT_14)
515 if (i==EVENT_14)
516 {
516 {
517 PRINTF1("%s\n", DUMB_MESSAGE_1)
517 PRINTF1("%s\n", DUMB_MESSAGE_1)
518 }
518 }
519 }
519 }
520 }
520 }
521 }
521 }
522 }
522 }
523
523
524 rtems_task scrubbing_task( rtems_task_argument unused )
524 rtems_task scrubbing_task( rtems_task_argument unused )
525 {
525 {
526 /** This RTEMS taks is used to avoid entering IDLE task and also scrub memory to increase scubbing frequency.
526 /** This RTEMS taks is used to avoid entering IDLE task and also scrub memory to increase scubbing frequency.
527 *
527 *
528 * @param unused is the starting argument of the RTEMS task
528 * @param unused is the starting argument of the RTEMS task
529 *
529 *
530 * The scrubbing reads continuously memory when no other tasks are ready.
530 * The scrubbing reads continuously memory when no other tasks are ready.
531 *
531 *
532 */
532 */
533
533
534 BOOT_PRINTF("in SCRUBBING *** \n");
534 BOOT_PRINTF("in SCRUBBING *** \n");
535 volatile int i=0;
535 volatile int i=0;
536 volatile float valuef = 1.;
536 volatile float valuef = 1.;
537 volatile uint32_t* RAM=(uint32_t*)0x40000000;
537 volatile uint32_t* RAM=(uint32_t*)0x40000000;
538 volatile uint32_t value;
538 volatile uint32_t value;
539 #ifdef ENABLE_SCRUBBING_COUNTER
540 housekeeping_packet.lfr_fpga_version[BYTE_0] = 0;
541 #endif
539 while(1){
542 while(1){
540 i=(i+1)%(1024*1024);
543 i=(i+1)%(1024*1024);
541 valuef += 10.f*(float)RAM[i];
544 valuef += 10.f*(float)RAM[i];
545 #ifdef ENABLE_SCRUBBING_COUNTER
546 if(i==0)
547 {
548 housekeeping_packet.lfr_fpga_version[BYTE_0] += 1;
549 }
550 #endif
542 }
551 }
543 }
552 }
544
553
545 rtems_task calibration_sweep_task( rtems_task_argument unused )
554 rtems_task calibration_sweep_task( rtems_task_argument unused )
546 {
555 {
547 /** This RTEMS taks is used to change calibration signal smapling frequency between snapshots.
556 /** This RTEMS taks is used to change calibration signal smapling frequency between snapshots.
548 *
557 *
549 * @param unused is the starting argument of the RTEMS task
558 * @param unused is the starting argument of the RTEMS task
550 *
559 *
551 * If calibration is enabled, this task will divide by two the calibration signal smapling frequency between snapshots.
560 * If calibration is enabled, this task will divide by two the calibration signal smapling frequency between snapshots.
552 * When minimum sampling frequency is reach it will jump to maximum sampling frequency to loop indefinitely.
561 * When minimum sampling frequency is reach it will jump to maximum sampling frequency to loop indefinitely.
553 *
562 *
554 */
563 */
555 rtems_event_set event_out;
564 rtems_event_set event_out;
556 BOOT_PRINTF("in calibration sweep *** \n");
565 BOOT_PRINTF("in calibration sweep *** \n");
557 rtems_interval ticks_per_seconds = rtems_clock_get_ticks_per_second();
566 rtems_interval ticks_per_seconds = rtems_clock_get_ticks_per_second();
558 while(1){
567 while(1){
559 // Waiting for next F0 snapshot
568 // Waiting for next F0 snapshot
560 rtems_event_receive(RTEMS_EVENT_CAL_SWEEP_WAKE, RTEMS_WAIT, RTEMS_NO_TIMEOUT, &event_out);
569 rtems_event_receive(RTEMS_EVENT_CAL_SWEEP_WAKE, RTEMS_WAIT, RTEMS_NO_TIMEOUT, &event_out);
561 if(time_management_regs->calDACCtrl & BIT_CAL_ENABLE)
570 if(time_management_regs->calDACCtrl & BIT_CAL_ENABLE)
562 {
571 {
563 unsigned int delta_snapshot;
572 unsigned int delta_snapshot;
564 delta_snapshot = (parameter_dump_packet.sy_lfr_n_swf_p[0] * CONST_256)
573 delta_snapshot = (parameter_dump_packet.sy_lfr_n_swf_p[0] * CONST_256)
565 + parameter_dump_packet.sy_lfr_n_swf_p[1];
574 + parameter_dump_packet.sy_lfr_n_swf_p[1];
566 // We are woken almost in the center of a snapshot -> let's wait for sy_lfr_n_swf_p / 2
575 // We are woken almost in the center of a snapshot -> let's wait for sy_lfr_n_swf_p / 2
567 rtems_task_wake_after( ticks_per_seconds * delta_snapshot / 2);
576 rtems_task_wake_after( ticks_per_seconds * delta_snapshot / 2);
568 if(time_management_regs->calDivisor >= CAL_F_DIVISOR_MAX){
577 if(time_management_regs->calDivisor >= CAL_F_DIVISOR_MAX){
569 time_management_regs->calDivisor = CAL_F_DIVISOR_MIN;
578 time_management_regs->calDivisor = CAL_F_DIVISOR_MIN;
570 }
579 }
571 else{
580 else{
572 time_management_regs->calDivisor *= 2;
581 time_management_regs->calDivisor *= 2;
573 }
582 }
574 }
583 }
575
584
576
585
577
586
578 }
587 }
579
588
580 }
589 }
581
590
582
591
583 //*****************************
592 //*****************************
584 // init housekeeping parameters
593 // init housekeeping parameters
585
594
586 void init_housekeeping_parameters( void )
595 void init_housekeeping_parameters( void )
587 {
596 {
588 /** This function initialize the housekeeping_packet global variable with default values.
597 /** This function initialize the housekeeping_packet global variable with default values.
589 *
598 *
590 */
599 */
591
600
592 unsigned int i = 0;
601 unsigned int i = 0;
593 unsigned char *parameters;
602 unsigned char *parameters;
594 unsigned char sizeOfHK;
603 unsigned char sizeOfHK;
595
604
596 sizeOfHK = sizeof( Packet_TM_LFR_HK_t );
605 sizeOfHK = sizeof( Packet_TM_LFR_HK_t );
597
606
598 parameters = (unsigned char*) &housekeeping_packet;
607 parameters = (unsigned char*) &housekeeping_packet;
599
608
600 for(i = 0; i< sizeOfHK; i++)
609 for(i = 0; i< sizeOfHK; i++)
601 {
610 {
602 parameters[i] = INIT_CHAR;
611 parameters[i] = INIT_CHAR;
603 }
612 }
604
613
605 housekeeping_packet.targetLogicalAddress = CCSDS_DESTINATION_ID;
614 housekeeping_packet.targetLogicalAddress = CCSDS_DESTINATION_ID;
606 housekeeping_packet.protocolIdentifier = CCSDS_PROTOCOLE_ID;
615 housekeeping_packet.protocolIdentifier = CCSDS_PROTOCOLE_ID;
607 housekeeping_packet.reserved = DEFAULT_RESERVED;
616 housekeeping_packet.reserved = DEFAULT_RESERVED;
608 housekeeping_packet.userApplication = CCSDS_USER_APP;
617 housekeeping_packet.userApplication = CCSDS_USER_APP;
609 housekeeping_packet.packetID[0] = (unsigned char) (APID_TM_HK >> SHIFT_1_BYTE);
618 housekeeping_packet.packetID[0] = (unsigned char) (APID_TM_HK >> SHIFT_1_BYTE);
610 housekeeping_packet.packetID[1] = (unsigned char) (APID_TM_HK);
619 housekeeping_packet.packetID[1] = (unsigned char) (APID_TM_HK);
611 housekeeping_packet.packetSequenceControl[0] = TM_PACKET_SEQ_CTRL_STANDALONE;
620 housekeeping_packet.packetSequenceControl[0] = TM_PACKET_SEQ_CTRL_STANDALONE;
612 housekeeping_packet.packetSequenceControl[1] = TM_PACKET_SEQ_CNT_DEFAULT;
621 housekeeping_packet.packetSequenceControl[1] = TM_PACKET_SEQ_CNT_DEFAULT;
613 housekeeping_packet.packetLength[0] = (unsigned char) (PACKET_LENGTH_HK >> SHIFT_1_BYTE);
622 housekeeping_packet.packetLength[0] = (unsigned char) (PACKET_LENGTH_HK >> SHIFT_1_BYTE);
614 housekeeping_packet.packetLength[1] = (unsigned char) (PACKET_LENGTH_HK );
623 housekeeping_packet.packetLength[1] = (unsigned char) (PACKET_LENGTH_HK );
615 housekeeping_packet.spare1_pusVersion_spare2 = DEFAULT_SPARE1_PUSVERSION_SPARE2;
624 housekeeping_packet.spare1_pusVersion_spare2 = DEFAULT_SPARE1_PUSVERSION_SPARE2;
616 housekeeping_packet.serviceType = TM_TYPE_HK;
625 housekeeping_packet.serviceType = TM_TYPE_HK;
617 housekeeping_packet.serviceSubType = TM_SUBTYPE_HK;
626 housekeeping_packet.serviceSubType = TM_SUBTYPE_HK;
618 housekeeping_packet.destinationID = TM_DESTINATION_ID_GROUND;
627 housekeeping_packet.destinationID = TM_DESTINATION_ID_GROUND;
619 housekeeping_packet.sid = SID_HK;
628 housekeeping_packet.sid = SID_HK;
620
629
621 // init status word
630 // init status word
622 housekeeping_packet.lfr_status_word[0] = DEFAULT_STATUS_WORD_BYTE0;
631 housekeeping_packet.lfr_status_word[0] = DEFAULT_STATUS_WORD_BYTE0;
623 housekeeping_packet.lfr_status_word[1] = DEFAULT_STATUS_WORD_BYTE1;
632 housekeeping_packet.lfr_status_word[1] = DEFAULT_STATUS_WORD_BYTE1;
624 // init software version
633 // init software version
625 housekeeping_packet.lfr_sw_version[0] = SW_VERSION_N1;
634 housekeeping_packet.lfr_sw_version[0] = SW_VERSION_N1;
626 housekeeping_packet.lfr_sw_version[1] = SW_VERSION_N2;
635 housekeeping_packet.lfr_sw_version[1] = SW_VERSION_N2;
627 housekeeping_packet.lfr_sw_version[BYTE_2] = SW_VERSION_N3;
636 housekeeping_packet.lfr_sw_version[BYTE_2] = SW_VERSION_N3;
628 housekeeping_packet.lfr_sw_version[BYTE_3] = SW_VERSION_N4;
637 housekeeping_packet.lfr_sw_version[BYTE_3] = SW_VERSION_N4;
629 // init fpga version
638 // init fpga version
630 parameters = (unsigned char *) (REGS_ADDR_VHDL_VERSION);
639 parameters = (unsigned char *) (REGS_ADDR_VHDL_VERSION);
631 housekeeping_packet.lfr_fpga_version[BYTE_0] = parameters[BYTE_1]; // n1
640 housekeeping_packet.lfr_fpga_version[BYTE_0] = parameters[BYTE_1]; // n1
632 housekeeping_packet.lfr_fpga_version[BYTE_1] = parameters[BYTE_2]; // n2
641 housekeeping_packet.lfr_fpga_version[BYTE_1] = parameters[BYTE_2]; // n2
633 housekeeping_packet.lfr_fpga_version[BYTE_2] = parameters[BYTE_3]; // n3
642 housekeeping_packet.lfr_fpga_version[BYTE_2] = parameters[BYTE_3]; // n3
634
643
635 housekeeping_packet.hk_lfr_q_sd_fifo_size = MSG_QUEUE_COUNT_SEND;
644 housekeeping_packet.hk_lfr_q_sd_fifo_size = MSG_QUEUE_COUNT_SEND;
636 housekeeping_packet.hk_lfr_q_rv_fifo_size = MSG_QUEUE_COUNT_RECV;
645 housekeeping_packet.hk_lfr_q_rv_fifo_size = MSG_QUEUE_COUNT_RECV;
637 housekeeping_packet.hk_lfr_q_p0_fifo_size = MSG_QUEUE_COUNT_PRC0;
646 housekeeping_packet.hk_lfr_q_p0_fifo_size = MSG_QUEUE_COUNT_PRC0;
638 housekeeping_packet.hk_lfr_q_p1_fifo_size = MSG_QUEUE_COUNT_PRC1;
647 housekeeping_packet.hk_lfr_q_p1_fifo_size = MSG_QUEUE_COUNT_PRC1;
639 housekeeping_packet.hk_lfr_q_p2_fifo_size = MSG_QUEUE_COUNT_PRC2;
648 housekeeping_packet.hk_lfr_q_p2_fifo_size = MSG_QUEUE_COUNT_PRC2;
640 }
649 }
641
650
642 void increment_seq_counter( unsigned short *packetSequenceControl )
651 void increment_seq_counter( unsigned short *packetSequenceControl )
643 {
652 {
644 /** This function increment the sequence counter passes in argument.
653 /** This function increment the sequence counter passes in argument.
645 *
654 *
646 * The increment does not affect the grouping flag. In case of an overflow, the counter is reset to 0.
655 * The increment does not affect the grouping flag. In case of an overflow, the counter is reset to 0.
647 *
656 *
648 */
657 */
649
658
650 unsigned short segmentation_grouping_flag;
659 unsigned short segmentation_grouping_flag;
651 unsigned short sequence_cnt;
660 unsigned short sequence_cnt;
652
661
653 segmentation_grouping_flag = TM_PACKET_SEQ_CTRL_STANDALONE << SHIFT_1_BYTE; // keep bits 7 downto 6
662 segmentation_grouping_flag = TM_PACKET_SEQ_CTRL_STANDALONE << SHIFT_1_BYTE; // keep bits 7 downto 6
654 sequence_cnt = (*packetSequenceControl) & SEQ_CNT_MASK; // [0011 1111 1111 1111]
663 sequence_cnt = (*packetSequenceControl) & SEQ_CNT_MASK; // [0011 1111 1111 1111]
655
664
656 if ( sequence_cnt < SEQ_CNT_MAX)
665 if ( sequence_cnt < SEQ_CNT_MAX)
657 {
666 {
658 sequence_cnt = sequence_cnt + 1;
667 sequence_cnt = sequence_cnt + 1;
659 }
668 }
660 else
669 else
661 {
670 {
662 sequence_cnt = 0;
671 sequence_cnt = 0;
663 }
672 }
664
673
665 *packetSequenceControl = segmentation_grouping_flag | sequence_cnt ;
674 *packetSequenceControl = segmentation_grouping_flag | sequence_cnt ;
666 }
675 }
667
676
668 void getTime( unsigned char *time)
677 void getTime( unsigned char *time)
669 {
678 {
670 /** This function write the current local time in the time buffer passed in argument.
679 /** This function write the current local time in the time buffer passed in argument.
671 *
680 *
672 */
681 */
673
682
674 time[0] = (unsigned char) (time_management_regs->coarse_time>>SHIFT_3_BYTES);
683 time[0] = (unsigned char) (time_management_regs->coarse_time>>SHIFT_3_BYTES);
675 time[1] = (unsigned char) (time_management_regs->coarse_time>>SHIFT_2_BYTES);
684 time[1] = (unsigned char) (time_management_regs->coarse_time>>SHIFT_2_BYTES);
676 time[2] = (unsigned char) (time_management_regs->coarse_time>>SHIFT_1_BYTE);
685 time[2] = (unsigned char) (time_management_regs->coarse_time>>SHIFT_1_BYTE);
677 time[3] = (unsigned char) (time_management_regs->coarse_time);
686 time[3] = (unsigned char) (time_management_regs->coarse_time);
678 time[4] = (unsigned char) (time_management_regs->fine_time>>SHIFT_1_BYTE);
687 time[4] = (unsigned char) (time_management_regs->fine_time>>SHIFT_1_BYTE);
679 time[5] = (unsigned char) (time_management_regs->fine_time);
688 time[5] = (unsigned char) (time_management_regs->fine_time);
680 }
689 }
681
690
682 unsigned long long int getTimeAsUnsignedLongLongInt( )
691 unsigned long long int getTimeAsUnsignedLongLongInt( )
683 {
692 {
684 /** This function write the current local time in the time buffer passed in argument.
693 /** This function write the current local time in the time buffer passed in argument.
685 *
694 *
686 */
695 */
687 unsigned long long int time;
696 unsigned long long int time;
688
697
689 time = ( (unsigned long long int) (time_management_regs->coarse_time & COARSE_TIME_MASK) << SHIFT_2_BYTES )
698 time = ( (unsigned long long int) (time_management_regs->coarse_time & COARSE_TIME_MASK) << SHIFT_2_BYTES )
690 + time_management_regs->fine_time;
699 + time_management_regs->fine_time;
691
700
692 return time;
701 return time;
693 }
702 }
694
703
695 void send_dumb_hk( void )
696 {
697 Packet_TM_LFR_HK_t dummy_hk_packet;
698 unsigned char *parameters;
699 unsigned int i;
700 rtems_id queue_id;
701
702 queue_id = RTEMS_ID_NONE;
703
704 dummy_hk_packet.targetLogicalAddress = CCSDS_DESTINATION_ID;
705 dummy_hk_packet.protocolIdentifier = CCSDS_PROTOCOLE_ID;
706 dummy_hk_packet.reserved = DEFAULT_RESERVED;
707 dummy_hk_packet.userApplication = CCSDS_USER_APP;
708 dummy_hk_packet.packetID[0] = (unsigned char) (APID_TM_HK >> SHIFT_1_BYTE);
709 dummy_hk_packet.packetID[1] = (unsigned char) (APID_TM_HK);
710 dummy_hk_packet.packetSequenceControl[0] = TM_PACKET_SEQ_CTRL_STANDALONE;
711 dummy_hk_packet.packetSequenceControl[1] = TM_PACKET_SEQ_CNT_DEFAULT;
712 dummy_hk_packet.packetLength[0] = (unsigned char) (PACKET_LENGTH_HK >> SHIFT_1_BYTE);
713 dummy_hk_packet.packetLength[1] = (unsigned char) (PACKET_LENGTH_HK );
714 dummy_hk_packet.spare1_pusVersion_spare2 = DEFAULT_SPARE1_PUSVERSION_SPARE2;
715 dummy_hk_packet.serviceType = TM_TYPE_HK;
716 dummy_hk_packet.serviceSubType = TM_SUBTYPE_HK;
717 dummy_hk_packet.destinationID = TM_DESTINATION_ID_GROUND;
718 dummy_hk_packet.time[0] = (unsigned char) (time_management_regs->coarse_time >> SHIFT_3_BYTES);
719 dummy_hk_packet.time[1] = (unsigned char) (time_management_regs->coarse_time >> SHIFT_2_BYTES);
720 dummy_hk_packet.time[BYTE_2] = (unsigned char) (time_management_regs->coarse_time >> SHIFT_1_BYTE);
721 dummy_hk_packet.time[BYTE_3] = (unsigned char) (time_management_regs->coarse_time);
722 dummy_hk_packet.time[BYTE_4] = (unsigned char) (time_management_regs->fine_time >> SHIFT_1_BYTE);
723 dummy_hk_packet.time[BYTE_5] = (unsigned char) (time_management_regs->fine_time);
724 dummy_hk_packet.sid = SID_HK;
725
726 // init status word
727 dummy_hk_packet.lfr_status_word[0] = INT8_ALL_F;
728 dummy_hk_packet.lfr_status_word[1] = INT8_ALL_F;
729 // init software version
730 dummy_hk_packet.lfr_sw_version[0] = SW_VERSION_N1;
731 dummy_hk_packet.lfr_sw_version[1] = SW_VERSION_N2;
732 dummy_hk_packet.lfr_sw_version[BYTE_2] = SW_VERSION_N3;
733 dummy_hk_packet.lfr_sw_version[BYTE_3] = SW_VERSION_N4;
734 // init fpga version
735 parameters = (unsigned char *) (REGS_ADDR_WAVEFORM_PICKER + APB_OFFSET_VHDL_REV);
736 dummy_hk_packet.lfr_fpga_version[BYTE_0] = parameters[BYTE_1]; // n1
737 dummy_hk_packet.lfr_fpga_version[BYTE_1] = parameters[BYTE_2]; // n2
738 dummy_hk_packet.lfr_fpga_version[BYTE_2] = parameters[BYTE_3]; // n3
739
740 parameters = (unsigned char *) &dummy_hk_packet.hk_lfr_cpu_load;
741
742 for (i=0; i<(BYTE_POS_HK_REACTION_WHEELS_FREQUENCY - BYTE_POS_HK_LFR_CPU_LOAD); i++)
743 {
744 parameters[i] = INT8_ALL_F;
745 }
746
747 get_message_queue_id_send( &queue_id );
748
749 rtems_message_queue_send( queue_id, &dummy_hk_packet,
750 PACKET_LENGTH_HK + CCSDS_TC_TM_PACKET_OFFSET + CCSDS_PROTOCOLE_EXTRA_BYTES);
751 }
752
753 void get_temperatures( unsigned char *temperatures )
704 void get_temperatures( unsigned char *temperatures )
754 {
705 {
755 unsigned char* temp_scm_ptr;
706 unsigned char* temp_scm_ptr;
756 unsigned char* temp_pcb_ptr;
707 unsigned char* temp_pcb_ptr;
757 unsigned char* temp_fpga_ptr;
708 unsigned char* temp_fpga_ptr;
758
709
759 // SEL1 SEL0
710 // SEL1 SEL0
760 // 0 0 => PCB
711 // 0 0 => PCB
761 // 0 1 => FPGA
712 // 0 1 => FPGA
762 // 1 0 => SCM
713 // 1 0 => SCM
763
714
764 temp_scm_ptr = (unsigned char *) &time_management_regs->temp_scm;
715 temp_scm_ptr = (unsigned char *) &time_management_regs->temp_scm;
765 temp_pcb_ptr = (unsigned char *) &time_management_regs->temp_pcb;
716 temp_pcb_ptr = (unsigned char *) &time_management_regs->temp_pcb;
766 temp_fpga_ptr = (unsigned char *) &time_management_regs->temp_fpga;
717 temp_fpga_ptr = (unsigned char *) &time_management_regs->temp_fpga;
767
718
768 temperatures[ BYTE_0 ] = temp_scm_ptr[ BYTE_2 ];
719 temperatures[ BYTE_0 ] = temp_scm_ptr[ BYTE_2 ];
769 temperatures[ BYTE_1 ] = temp_scm_ptr[ BYTE_3 ];
720 temperatures[ BYTE_1 ] = temp_scm_ptr[ BYTE_3 ];
770 temperatures[ BYTE_2 ] = temp_pcb_ptr[ BYTE_2 ];
721 temperatures[ BYTE_2 ] = temp_pcb_ptr[ BYTE_2 ];
771 temperatures[ BYTE_3 ] = temp_pcb_ptr[ BYTE_3 ];
722 temperatures[ BYTE_3 ] = temp_pcb_ptr[ BYTE_3 ];
772 temperatures[ BYTE_4 ] = temp_fpga_ptr[ BYTE_2 ];
723 temperatures[ BYTE_4 ] = temp_fpga_ptr[ BYTE_2 ];
773 temperatures[ BYTE_5 ] = temp_fpga_ptr[ BYTE_3 ];
724 temperatures[ BYTE_5 ] = temp_fpga_ptr[ BYTE_3 ];
774 }
725 }
775
726
776 void get_v_e1_e2_f3( unsigned char *spacecraft_potential )
727 void get_v_e1_e2_f3( unsigned char *spacecraft_potential )
777 {
728 {
778 unsigned char* v_ptr;
729 unsigned char* v_ptr;
779 unsigned char* e1_ptr;
730 unsigned char* e1_ptr;
780 unsigned char* e2_ptr;
731 unsigned char* e2_ptr;
781
732
782 v_ptr = (unsigned char *) &hk_lfr_sc_v_f3_as_int16;
733 v_ptr = (unsigned char *) &hk_lfr_sc_v_f3_as_int16;
783 e1_ptr = (unsigned char *) &hk_lfr_sc_e1_f3_as_int16;
734 e1_ptr = (unsigned char *) &hk_lfr_sc_e1_f3_as_int16;
784 e2_ptr = (unsigned char *) &hk_lfr_sc_e2_f3_as_int16;
735 e2_ptr = (unsigned char *) &hk_lfr_sc_e2_f3_as_int16;
785
736
786 spacecraft_potential[BYTE_0] = v_ptr[0];
737 spacecraft_potential[BYTE_0] = v_ptr[0];
787 spacecraft_potential[BYTE_1] = v_ptr[1];
738 spacecraft_potential[BYTE_1] = v_ptr[1];
788 spacecraft_potential[BYTE_2] = e1_ptr[0];
739 spacecraft_potential[BYTE_2] = e1_ptr[0];
789 spacecraft_potential[BYTE_3] = e1_ptr[1];
740 spacecraft_potential[BYTE_3] = e1_ptr[1];
790 spacecraft_potential[BYTE_4] = e2_ptr[0];
741 spacecraft_potential[BYTE_4] = e2_ptr[0];
791 spacecraft_potential[BYTE_5] = e2_ptr[1];
742 spacecraft_potential[BYTE_5] = e2_ptr[1];
792 }
743 }
793
744
794 void get_cpu_load( unsigned char *resource_statistics )
745 void get_cpu_load( unsigned char *resource_statistics )
795 {
746 {
796 #define LOAD_AVG_SIZE 60
747 #define LOAD_AVG_SIZE 60
797 static unsigned char cpu_load_hist[LOAD_AVG_SIZE]={0};
748 static unsigned char cpu_load_hist[LOAD_AVG_SIZE]={0};
798 static char old_avg_pos=0;
749 static char old_avg_pos=0;
799 static unsigned int cpu_load_avg;
750 static unsigned int cpu_load_avg;
800 unsigned char cpu_load;
751 unsigned char cpu_load;
801
752
802 cpu_load = lfr_rtems_cpu_usage_report();
753 cpu_load = lfr_rtems_cpu_usage_report();
803
754
804 // HK_LFR_CPU_LOAD
755 // HK_LFR_CPU_LOAD
805 resource_statistics[0] = cpu_load;
756 resource_statistics[0] = cpu_load;
806
757
807 // HK_LFR_CPU_LOAD_MAX
758 // HK_LFR_CPU_LOAD_MAX
808 if (cpu_load > resource_statistics[1])
759 if (cpu_load > resource_statistics[1])
809 {
760 {
810 resource_statistics[1] = cpu_load;
761 resource_statistics[1] = cpu_load;
811 }
762 }
812
763
813 cpu_load_avg = cpu_load_avg - (unsigned int)cpu_load_hist[(int)old_avg_pos] + (unsigned int)cpu_load;
764 cpu_load_avg = cpu_load_avg - (unsigned int)cpu_load_hist[(int)old_avg_pos] + (unsigned int)cpu_load;
814 cpu_load_hist[(int)old_avg_pos] = cpu_load;
765 cpu_load_hist[(int)old_avg_pos] = cpu_load;
815 old_avg_pos += 1;
766 old_avg_pos += 1;
816 old_avg_pos %= LOAD_AVG_SIZE;
767 old_avg_pos %= LOAD_AVG_SIZE;
817 // CPU_LOAD_AVE
768 // CPU_LOAD_AVE
818 resource_statistics[BYTE_2] = (unsigned char)(cpu_load_avg / LOAD_AVG_SIZE);
769 resource_statistics[BYTE_2] = (unsigned char)(cpu_load_avg / LOAD_AVG_SIZE);
819 // this will change the way LFR compute usage
770 // this will change the way LFR compute usage
820 #ifndef PRINT_TASK_STATISTICS
771 #ifndef PRINT_TASK_STATISTICS
821 rtems_cpu_usage_reset();
772 rtems_cpu_usage_reset();
822 #endif
773 #endif
823
774
824 }
775 }
825
776
826 void set_hk_lfr_sc_potential_flag( bool state )
777 void set_hk_lfr_sc_potential_flag( bool state )
827 {
778 {
828 if (state == true)
779 if (state == true)
829 {
780 {
830 housekeeping_packet.lfr_status_word[1] =
781 housekeeping_packet.lfr_status_word[1] =
831 housekeeping_packet.lfr_status_word[1] | STATUS_WORD_SC_POTENTIAL_FLAG_BIT; // [0100 0000]
782 housekeeping_packet.lfr_status_word[1] | STATUS_WORD_SC_POTENTIAL_FLAG_BIT; // [0100 0000]
832 }
783 }
833 else
784 else
834 {
785 {
835 housekeeping_packet.lfr_status_word[1] =
786 housekeeping_packet.lfr_status_word[1] =
836 housekeeping_packet.lfr_status_word[1] & STATUS_WORD_SC_POTENTIAL_FLAG_MASK; // [1011 1111]
787 housekeeping_packet.lfr_status_word[1] & STATUS_WORD_SC_POTENTIAL_FLAG_MASK; // [1011 1111]
837 }
788 }
838 }
789 }
839
790
840 void set_sy_lfr_pas_filter_enabled( bool state )
791 void set_sy_lfr_pas_filter_enabled( bool state )
841 {
792 {
842 if (state == true)
793 if (state == true)
843 {
794 {
844 housekeeping_packet.lfr_status_word[1] =
795 housekeeping_packet.lfr_status_word[1] =
845 housekeeping_packet.lfr_status_word[1] | STATUS_WORD_PAS_FILTER_ENABLED_BIT; // [0010 0000]
796 housekeeping_packet.lfr_status_word[1] | STATUS_WORD_PAS_FILTER_ENABLED_BIT; // [0010 0000]
846 }
797 }
847 else
798 else
848 {
799 {
849 housekeeping_packet.lfr_status_word[1] =
800 housekeeping_packet.lfr_status_word[1] =
850 housekeeping_packet.lfr_status_word[1] & STATUS_WORD_PAS_FILTER_ENABLED_MASK; // [1101 1111]
801 housekeeping_packet.lfr_status_word[1] & STATUS_WORD_PAS_FILTER_ENABLED_MASK; // [1101 1111]
851 }
802 }
852 }
803 }
853
804
854 void set_sy_lfr_watchdog_enabled( bool state )
805 void set_sy_lfr_watchdog_enabled( bool state )
855 {
806 {
856 if (state == true)
807 if (state == true)
857 {
808 {
858 housekeeping_packet.lfr_status_word[1] =
809 housekeeping_packet.lfr_status_word[1] =
859 housekeeping_packet.lfr_status_word[1] | STATUS_WORD_WATCHDOG_BIT; // [0001 0000]
810 housekeeping_packet.lfr_status_word[1] | STATUS_WORD_WATCHDOG_BIT; // [0001 0000]
860 }
811 }
861 else
812 else
862 {
813 {
863 housekeeping_packet.lfr_status_word[1] =
814 housekeeping_packet.lfr_status_word[1] =
864 housekeeping_packet.lfr_status_word[1] & STATUS_WORD_WATCHDOG_MASK; // [1110 1111]
815 housekeeping_packet.lfr_status_word[1] & STATUS_WORD_WATCHDOG_MASK; // [1110 1111]
865 }
816 }
866 }
817 }
867
818
868 void set_hk_lfr_calib_enable( bool state )
819 void set_hk_lfr_calib_enable( bool state )
869 {
820 {
870 if (state == true)
821 if (state == true)
871 {
822 {
872 housekeeping_packet.lfr_status_word[1] =
823 housekeeping_packet.lfr_status_word[1] =
873 housekeeping_packet.lfr_status_word[1] | STATUS_WORD_CALIB_BIT; // [0000 1000]
824 housekeeping_packet.lfr_status_word[1] | STATUS_WORD_CALIB_BIT; // [0000 1000]
874 }
825 }
875 else
826 else
876 {
827 {
877 housekeeping_packet.lfr_status_word[1] =
828 housekeeping_packet.lfr_status_word[1] =
878 housekeeping_packet.lfr_status_word[1] & STATUS_WORD_CALIB_MASK; // [1111 0111]
829 housekeeping_packet.lfr_status_word[1] & STATUS_WORD_CALIB_MASK; // [1111 0111]
879 }
830 }
880 }
831 }
881
832
882 void set_hk_lfr_reset_cause( enum lfr_reset_cause_t lfr_reset_cause )
833 void set_hk_lfr_reset_cause( enum lfr_reset_cause_t lfr_reset_cause )
883 {
834 {
884 housekeeping_packet.lfr_status_word[1] =
835 housekeeping_packet.lfr_status_word[1] =
885 housekeeping_packet.lfr_status_word[1] & STATUS_WORD_RESET_CAUSE_MASK; // [1111 1000]
836 housekeeping_packet.lfr_status_word[1] & STATUS_WORD_RESET_CAUSE_MASK; // [1111 1000]
886
837
887 housekeeping_packet.lfr_status_word[1] = housekeeping_packet.lfr_status_word[1]
838 housekeeping_packet.lfr_status_word[1] = housekeeping_packet.lfr_status_word[1]
888 | (lfr_reset_cause & STATUS_WORD_RESET_CAUSE_BITS ); // [0000 0111]
839 | (lfr_reset_cause & STATUS_WORD_RESET_CAUSE_BITS ); // [0000 0111]
889
840
890 }
841 }
891
842
892 void increment_hk_counter( unsigned char newValue, unsigned char oldValue, unsigned int *counter )
843 void increment_hk_counter( unsigned char newValue, unsigned char oldValue, unsigned int *counter )
893 {
844 {
894 int delta;
845 int delta;
895
846
896 delta = 0;
847 delta = 0;
897
848
898 if (newValue >= oldValue)
849 if (newValue >= oldValue)
899 {
850 {
900 delta = newValue - oldValue;
851 delta = newValue - oldValue;
901 }
852 }
902 else
853 else
903 {
854 {
904 delta = (CONST_256 - oldValue) + newValue;
855 delta = (CONST_256 - oldValue) + newValue;
905 }
856 }
906
857
907 *counter = *counter + delta;
858 *counter = *counter + delta;
908 }
859 }
909
860
910 void hk_lfr_le_update( void )
861 void hk_lfr_le_update( void )
911 {
862 {
912 static hk_lfr_le_t old_hk_lfr_le = {0};
863 static hk_lfr_le_t old_hk_lfr_le = {0};
913 hk_lfr_le_t new_hk_lfr_le;
864 hk_lfr_le_t new_hk_lfr_le;
914 unsigned int counter;
865 unsigned int counter;
915
866
916 counter = (((unsigned int) housekeeping_packet.hk_lfr_le_cnt[0]) * CONST_256) + housekeeping_packet.hk_lfr_le_cnt[1];
867 counter = (((unsigned int) housekeeping_packet.hk_lfr_le_cnt[0]) * CONST_256) + housekeeping_packet.hk_lfr_le_cnt[1];
917
868
918 // DPU
869 // DPU
919 new_hk_lfr_le.dpu_spw_parity = housekeeping_packet.hk_lfr_dpu_spw_parity;
870 new_hk_lfr_le.dpu_spw_parity = housekeeping_packet.hk_lfr_dpu_spw_parity;
920 new_hk_lfr_le.dpu_spw_disconnect= housekeeping_packet.hk_lfr_dpu_spw_disconnect;
871 new_hk_lfr_le.dpu_spw_disconnect= housekeeping_packet.hk_lfr_dpu_spw_disconnect;
921 new_hk_lfr_le.dpu_spw_escape = housekeeping_packet.hk_lfr_dpu_spw_escape;
872 new_hk_lfr_le.dpu_spw_escape = housekeeping_packet.hk_lfr_dpu_spw_escape;
922 new_hk_lfr_le.dpu_spw_credit = housekeeping_packet.hk_lfr_dpu_spw_credit;
873 new_hk_lfr_le.dpu_spw_credit = housekeeping_packet.hk_lfr_dpu_spw_credit;
923 new_hk_lfr_le.dpu_spw_write_sync= housekeeping_packet.hk_lfr_dpu_spw_write_sync;
874 new_hk_lfr_le.dpu_spw_write_sync= housekeeping_packet.hk_lfr_dpu_spw_write_sync;
924 // TIMECODE
875 // TIMECODE
925 new_hk_lfr_le.timecode_erroneous= housekeeping_packet.hk_lfr_timecode_erroneous;
876 new_hk_lfr_le.timecode_erroneous= housekeeping_packet.hk_lfr_timecode_erroneous;
926 new_hk_lfr_le.timecode_missing = housekeeping_packet.hk_lfr_timecode_missing;
877 new_hk_lfr_le.timecode_missing = housekeeping_packet.hk_lfr_timecode_missing;
927 new_hk_lfr_le.timecode_invalid = housekeeping_packet.hk_lfr_timecode_invalid;
878 new_hk_lfr_le.timecode_invalid = housekeeping_packet.hk_lfr_timecode_invalid;
928 // TIME
879 // TIME
929 new_hk_lfr_le.time_timecode_it = housekeeping_packet.hk_lfr_time_timecode_it;
880 new_hk_lfr_le.time_timecode_it = housekeeping_packet.hk_lfr_time_timecode_it;
930 new_hk_lfr_le.time_not_synchro = housekeeping_packet.hk_lfr_time_not_synchro;
881 new_hk_lfr_le.time_not_synchro = housekeeping_packet.hk_lfr_time_not_synchro;
931 new_hk_lfr_le.time_timecode_ctr = housekeeping_packet.hk_lfr_time_timecode_ctr;
882 new_hk_lfr_le.time_timecode_ctr = housekeeping_packet.hk_lfr_time_timecode_ctr;
932 //AHB
883 //AHB
933 new_hk_lfr_le.ahb_correctable = housekeeping_packet.hk_lfr_ahb_correctable;
884 new_hk_lfr_le.ahb_correctable = housekeeping_packet.hk_lfr_ahb_correctable;
934 // housekeeping_packet.hk_lfr_dpu_spw_rx_ahb => not handled by the grspw driver
885 // housekeeping_packet.hk_lfr_dpu_spw_rx_ahb => not handled by the grspw driver
935 // housekeeping_packet.hk_lfr_dpu_spw_tx_ahb => not handled by the grspw driver
886 // housekeeping_packet.hk_lfr_dpu_spw_tx_ahb => not handled by the grspw driver
936
887
937 // update the le counter
888 // update the le counter
938 // DPU
889 // DPU
939 increment_hk_counter( new_hk_lfr_le.dpu_spw_parity, old_hk_lfr_le.dpu_spw_parity, &counter );
890 increment_hk_counter( new_hk_lfr_le.dpu_spw_parity, old_hk_lfr_le.dpu_spw_parity, &counter );
940 increment_hk_counter( new_hk_lfr_le.dpu_spw_disconnect,old_hk_lfr_le.dpu_spw_disconnect, &counter );
891 increment_hk_counter( new_hk_lfr_le.dpu_spw_disconnect,old_hk_lfr_le.dpu_spw_disconnect, &counter );
941 increment_hk_counter( new_hk_lfr_le.dpu_spw_escape, old_hk_lfr_le.dpu_spw_escape, &counter );
892 increment_hk_counter( new_hk_lfr_le.dpu_spw_escape, old_hk_lfr_le.dpu_spw_escape, &counter );
942 increment_hk_counter( new_hk_lfr_le.dpu_spw_credit, old_hk_lfr_le.dpu_spw_credit, &counter );
893 increment_hk_counter( new_hk_lfr_le.dpu_spw_credit, old_hk_lfr_le.dpu_spw_credit, &counter );
943 increment_hk_counter( new_hk_lfr_le.dpu_spw_write_sync,old_hk_lfr_le.dpu_spw_write_sync, &counter );
894 increment_hk_counter( new_hk_lfr_le.dpu_spw_write_sync,old_hk_lfr_le.dpu_spw_write_sync, &counter );
944 // TIMECODE
895 // TIMECODE
945 increment_hk_counter( new_hk_lfr_le.timecode_erroneous,old_hk_lfr_le.timecode_erroneous, &counter );
896 increment_hk_counter( new_hk_lfr_le.timecode_erroneous,old_hk_lfr_le.timecode_erroneous, &counter );
946 increment_hk_counter( new_hk_lfr_le.timecode_missing, old_hk_lfr_le.timecode_missing, &counter );
897 increment_hk_counter( new_hk_lfr_le.timecode_missing, old_hk_lfr_le.timecode_missing, &counter );
947 increment_hk_counter( new_hk_lfr_le.timecode_invalid, old_hk_lfr_le.timecode_invalid, &counter );
898 increment_hk_counter( new_hk_lfr_le.timecode_invalid, old_hk_lfr_le.timecode_invalid, &counter );
948 // TIME
899 // TIME
949 increment_hk_counter( new_hk_lfr_le.time_timecode_it, old_hk_lfr_le.time_timecode_it, &counter );
900 increment_hk_counter( new_hk_lfr_le.time_timecode_it, old_hk_lfr_le.time_timecode_it, &counter );
950 increment_hk_counter( new_hk_lfr_le.time_not_synchro, old_hk_lfr_le.time_not_synchro, &counter );
901 increment_hk_counter( new_hk_lfr_le.time_not_synchro, old_hk_lfr_le.time_not_synchro, &counter );
951 increment_hk_counter( new_hk_lfr_le.time_timecode_ctr, old_hk_lfr_le.time_timecode_ctr, &counter );
902 increment_hk_counter( new_hk_lfr_le.time_timecode_ctr, old_hk_lfr_le.time_timecode_ctr, &counter );
952 // AHB
903 // AHB
953 increment_hk_counter( new_hk_lfr_le.ahb_correctable, old_hk_lfr_le.ahb_correctable, &counter );
904 increment_hk_counter( new_hk_lfr_le.ahb_correctable, old_hk_lfr_le.ahb_correctable, &counter );
954
905
955 // DPU
906 // DPU
956 old_hk_lfr_le.dpu_spw_parity = new_hk_lfr_le.dpu_spw_parity;
907 old_hk_lfr_le.dpu_spw_parity = new_hk_lfr_le.dpu_spw_parity;
957 old_hk_lfr_le.dpu_spw_disconnect= new_hk_lfr_le.dpu_spw_disconnect;
908 old_hk_lfr_le.dpu_spw_disconnect= new_hk_lfr_le.dpu_spw_disconnect;
958 old_hk_lfr_le.dpu_spw_escape = new_hk_lfr_le.dpu_spw_escape;
909 old_hk_lfr_le.dpu_spw_escape = new_hk_lfr_le.dpu_spw_escape;
959 old_hk_lfr_le.dpu_spw_credit = new_hk_lfr_le.dpu_spw_credit;
910 old_hk_lfr_le.dpu_spw_credit = new_hk_lfr_le.dpu_spw_credit;
960 old_hk_lfr_le.dpu_spw_write_sync= new_hk_lfr_le.dpu_spw_write_sync;
911 old_hk_lfr_le.dpu_spw_write_sync= new_hk_lfr_le.dpu_spw_write_sync;
961 // TIMECODE
912 // TIMECODE
962 old_hk_lfr_le.timecode_erroneous= new_hk_lfr_le.timecode_erroneous;
913 old_hk_lfr_le.timecode_erroneous= new_hk_lfr_le.timecode_erroneous;
963 old_hk_lfr_le.timecode_missing = new_hk_lfr_le.timecode_missing;
914 old_hk_lfr_le.timecode_missing = new_hk_lfr_le.timecode_missing;
964 old_hk_lfr_le.timecode_invalid = new_hk_lfr_le.timecode_invalid;
915 old_hk_lfr_le.timecode_invalid = new_hk_lfr_le.timecode_invalid;
965 // TIME
916 // TIME
966 old_hk_lfr_le.time_timecode_it = new_hk_lfr_le.time_timecode_it;
917 old_hk_lfr_le.time_timecode_it = new_hk_lfr_le.time_timecode_it;
967 old_hk_lfr_le.time_not_synchro = new_hk_lfr_le.time_not_synchro;
918 old_hk_lfr_le.time_not_synchro = new_hk_lfr_le.time_not_synchro;
968 old_hk_lfr_le.time_timecode_ctr = new_hk_lfr_le.time_timecode_ctr;
919 old_hk_lfr_le.time_timecode_ctr = new_hk_lfr_le.time_timecode_ctr;
969 //AHB
920 //AHB
970 old_hk_lfr_le.ahb_correctable = new_hk_lfr_le.ahb_correctable;
921 old_hk_lfr_le.ahb_correctable = new_hk_lfr_le.ahb_correctable;
971 // housekeeping_packet.hk_lfr_dpu_spw_rx_ahb => not handled by the grspw driver
922 // housekeeping_packet.hk_lfr_dpu_spw_rx_ahb => not handled by the grspw driver
972 // housekeeping_packet.hk_lfr_dpu_spw_tx_ahb => not handled by the grspw driver
923 // housekeeping_packet.hk_lfr_dpu_spw_tx_ahb => not handled by the grspw driver
973
924
974 // update housekeeping packet counters, convert unsigned int numbers in 2 bytes numbers
925 // update housekeeping packet counters, convert unsigned int numbers in 2 bytes numbers
975 // LE
926 // LE
976 housekeeping_packet.hk_lfr_le_cnt[0] = (unsigned char) ((counter & BYTE0_MASK) >> SHIFT_1_BYTE);
927 housekeeping_packet.hk_lfr_le_cnt[0] = (unsigned char) ((counter & BYTE0_MASK) >> SHIFT_1_BYTE);
977 housekeeping_packet.hk_lfr_le_cnt[1] = (unsigned char) (counter & BYTE1_MASK);
928 housekeeping_packet.hk_lfr_le_cnt[1] = (unsigned char) (counter & BYTE1_MASK);
978 }
929 }
979
930
980 void hk_lfr_me_update( void )
931 void hk_lfr_me_update( void )
981 {
932 {
982 static hk_lfr_me_t old_hk_lfr_me = {0};
933 static hk_lfr_me_t old_hk_lfr_me = {0};
983 hk_lfr_me_t new_hk_lfr_me;
934 hk_lfr_me_t new_hk_lfr_me;
984 unsigned int counter;
935 unsigned int counter;
985
936
986 counter = (((unsigned int) housekeeping_packet.hk_lfr_me_cnt[0]) * CONST_256) + housekeeping_packet.hk_lfr_me_cnt[1];
937 counter = (((unsigned int) housekeeping_packet.hk_lfr_me_cnt[0]) * CONST_256) + housekeeping_packet.hk_lfr_me_cnt[1];
987
938
988 // get the current values
939 // get the current values
989 new_hk_lfr_me.dpu_spw_early_eop = housekeeping_packet.hk_lfr_dpu_spw_early_eop;
940 new_hk_lfr_me.dpu_spw_early_eop = housekeeping_packet.hk_lfr_dpu_spw_early_eop;
990 new_hk_lfr_me.dpu_spw_invalid_addr = housekeeping_packet.hk_lfr_dpu_spw_invalid_addr;
941 new_hk_lfr_me.dpu_spw_invalid_addr = housekeeping_packet.hk_lfr_dpu_spw_invalid_addr;
991 new_hk_lfr_me.dpu_spw_eep = housekeeping_packet.hk_lfr_dpu_spw_eep;
942 new_hk_lfr_me.dpu_spw_eep = housekeeping_packet.hk_lfr_dpu_spw_eep;
992 new_hk_lfr_me.dpu_spw_rx_too_big = housekeeping_packet.hk_lfr_dpu_spw_rx_too_big;
943 new_hk_lfr_me.dpu_spw_rx_too_big = housekeeping_packet.hk_lfr_dpu_spw_rx_too_big;
993
944
994 // update the me counter
945 // update the me counter
995 increment_hk_counter( new_hk_lfr_me.dpu_spw_early_eop, old_hk_lfr_me.dpu_spw_early_eop, &counter );
946 increment_hk_counter( new_hk_lfr_me.dpu_spw_early_eop, old_hk_lfr_me.dpu_spw_early_eop, &counter );
996 increment_hk_counter( new_hk_lfr_me.dpu_spw_invalid_addr, old_hk_lfr_me.dpu_spw_invalid_addr, &counter );
947 increment_hk_counter( new_hk_lfr_me.dpu_spw_invalid_addr, old_hk_lfr_me.dpu_spw_invalid_addr, &counter );
997 increment_hk_counter( new_hk_lfr_me.dpu_spw_eep, old_hk_lfr_me.dpu_spw_eep, &counter );
948 increment_hk_counter( new_hk_lfr_me.dpu_spw_eep, old_hk_lfr_me.dpu_spw_eep, &counter );
998 increment_hk_counter( new_hk_lfr_me.dpu_spw_rx_too_big, old_hk_lfr_me.dpu_spw_rx_too_big, &counter );
949 increment_hk_counter( new_hk_lfr_me.dpu_spw_rx_too_big, old_hk_lfr_me.dpu_spw_rx_too_big, &counter );
999
950
1000 // store the counters for the next time
951 // store the counters for the next time
1001 old_hk_lfr_me.dpu_spw_early_eop = new_hk_lfr_me.dpu_spw_early_eop;
952 old_hk_lfr_me.dpu_spw_early_eop = new_hk_lfr_me.dpu_spw_early_eop;
1002 old_hk_lfr_me.dpu_spw_invalid_addr = new_hk_lfr_me.dpu_spw_invalid_addr;
953 old_hk_lfr_me.dpu_spw_invalid_addr = new_hk_lfr_me.dpu_spw_invalid_addr;
1003 old_hk_lfr_me.dpu_spw_eep = new_hk_lfr_me.dpu_spw_eep;
954 old_hk_lfr_me.dpu_spw_eep = new_hk_lfr_me.dpu_spw_eep;
1004 old_hk_lfr_me.dpu_spw_rx_too_big = new_hk_lfr_me.dpu_spw_rx_too_big;
955 old_hk_lfr_me.dpu_spw_rx_too_big = new_hk_lfr_me.dpu_spw_rx_too_big;
1005
956
1006 // update housekeeping packet counters, convert unsigned int numbers in 2 bytes numbers
957 // update housekeeping packet counters, convert unsigned int numbers in 2 bytes numbers
1007 // ME
958 // ME
1008 housekeeping_packet.hk_lfr_me_cnt[0] = (unsigned char) ((counter & BYTE0_MASK) >> SHIFT_1_BYTE);
959 housekeeping_packet.hk_lfr_me_cnt[0] = (unsigned char) ((counter & BYTE0_MASK) >> SHIFT_1_BYTE);
1009 housekeeping_packet.hk_lfr_me_cnt[1] = (unsigned char) (counter & BYTE1_MASK);
960 housekeeping_packet.hk_lfr_me_cnt[1] = (unsigned char) (counter & BYTE1_MASK);
1010 }
961 }
1011
962
1012 void hk_lfr_le_me_he_update()
963 void hk_lfr_le_me_he_update()
1013 {
964 {
1014
965
1015 unsigned int hk_lfr_he_cnt;
966 unsigned int hk_lfr_he_cnt;
1016
967
1017 hk_lfr_he_cnt = (((unsigned int) housekeeping_packet.hk_lfr_he_cnt[0]) * 256) + housekeeping_packet.hk_lfr_he_cnt[1];
968 hk_lfr_he_cnt = (((unsigned int) housekeeping_packet.hk_lfr_he_cnt[0]) * 256) + housekeeping_packet.hk_lfr_he_cnt[1];
1018
969
1019 //update the low severity error counter
970 //update the low severity error counter
1020 hk_lfr_le_update( );
971 hk_lfr_le_update( );
1021
972
1022 //update the medium severity error counter
973 //update the medium severity error counter
1023 hk_lfr_me_update();
974 hk_lfr_me_update();
1024
975
1025 //update the high severity error counter
976 //update the high severity error counter
1026 hk_lfr_he_cnt = 0;
977 hk_lfr_he_cnt = 0;
1027
978
1028 // update housekeeping packet counters, convert unsigned int numbers in 2 bytes numbers
979 // update housekeeping packet counters, convert unsigned int numbers in 2 bytes numbers
1029 // HE
980 // HE
1030 housekeeping_packet.hk_lfr_he_cnt[0] = (unsigned char) ((hk_lfr_he_cnt & BYTE0_MASK) >> SHIFT_1_BYTE);
981 housekeeping_packet.hk_lfr_he_cnt[0] = (unsigned char) ((hk_lfr_he_cnt & BYTE0_MASK) >> SHIFT_1_BYTE);
1031 housekeeping_packet.hk_lfr_he_cnt[1] = (unsigned char) (hk_lfr_he_cnt & BYTE1_MASK);
982 housekeeping_packet.hk_lfr_he_cnt[1] = (unsigned char) (hk_lfr_he_cnt & BYTE1_MASK);
1032
983
1033 }
984 }
1034
985
1035 void set_hk_lfr_time_not_synchro()
986 void set_hk_lfr_time_not_synchro()
1036 {
987 {
1037 static unsigned char synchroLost = 1;
988 static unsigned char synchroLost = 1;
1038 int synchronizationBit;
989 int synchronizationBit;
1039
990
1040 // get the synchronization bit
991 // get the synchronization bit
1041 synchronizationBit =
992 synchronizationBit =
1042 (time_management_regs->coarse_time & VAL_LFR_SYNCHRONIZED) >> BIT_SYNCHRONIZATION; // 1000 0000 0000 0000
993 (time_management_regs->coarse_time & VAL_LFR_SYNCHRONIZED) >> BIT_SYNCHRONIZATION; // 1000 0000 0000 0000
1043
994
1044 switch (synchronizationBit)
995 switch (synchronizationBit)
1045 {
996 {
1046 case 0:
997 case 0:
1047 if (synchroLost == 1)
998 if (synchroLost == 1)
1048 {
999 {
1049 synchroLost = 0;
1000 synchroLost = 0;
1050 }
1001 }
1051 break;
1002 break;
1052 case 1:
1003 case 1:
1053 if (synchroLost == 0 )
1004 if (synchroLost == 0 )
1054 {
1005 {
1055 synchroLost = 1;
1006 synchroLost = 1;
1056 increase_unsigned_char_counter(&housekeeping_packet.hk_lfr_time_not_synchro);
1007 increase_unsigned_char_counter(&housekeeping_packet.hk_lfr_time_not_synchro);
1057 update_hk_lfr_last_er_fields( RID_LE_LFR_TIME, CODE_NOT_SYNCHRO );
1008 update_hk_lfr_last_er_fields( RID_LE_LFR_TIME, CODE_NOT_SYNCHRO );
1058 }
1009 }
1059 break;
1010 break;
1060 default:
1011 default:
1061 PRINTF1("in hk_lfr_time_not_synchro *** unexpected value for synchronizationBit = %d\n", synchronizationBit);
1012 PRINTF1("in hk_lfr_time_not_synchro *** unexpected value for synchronizationBit = %d\n", synchronizationBit);
1062 break;
1013 break;
1063 }
1014 }
1064
1015
1065 }
1016 }
1066
1017
1067 void set_hk_lfr_ahb_correctable() // CRITICITY L
1018 void set_hk_lfr_ahb_correctable() // CRITICITY L
1068 {
1019 {
1069 /** This function builds the error counter hk_lfr_ahb_correctable using the statistics provided
1020 /** This function builds the error counter hk_lfr_ahb_correctable using the statistics provided
1070 * by the Cache Control Register (ASI 2, offset 0) and in the Register Protection Control Register (ASR16) on the
1021 * by the Cache Control Register (ASI 2, offset 0) and in the Register Protection Control Register (ASR16) on the
1071 * detected errors in the cache, in the integer unit and in the floating point unit.
1022 * detected errors in the cache, in the integer unit and in the floating point unit.
1072 *
1023 *
1073 * @param void
1024 * @param void
1074 *
1025 *
1075 * @return void
1026 * @return void
1076 *
1027 *
1077 * All errors are summed to set the value of the hk_lfr_ahb_correctable counter.
1028 * All errors are summed to set the value of the hk_lfr_ahb_correctable counter.
1078 *
1029 *
1079 */
1030 */
1080
1031
1081 unsigned int ahb_correctable;
1032 unsigned int ahb_correctable;
1082 unsigned int instructionErrorCounter;
1033 unsigned int instructionErrorCounter;
1083 unsigned int dataErrorCounter;
1034 unsigned int dataErrorCounter;
1084 unsigned int fprfErrorCounter;
1035 unsigned int fprfErrorCounter;
1085 unsigned int iurfErrorCounter;
1036 unsigned int iurfErrorCounter;
1086
1037
1087 instructionErrorCounter = 0;
1038 instructionErrorCounter = 0;
1088 dataErrorCounter = 0;
1039 dataErrorCounter = 0;
1089 fprfErrorCounter = 0;
1040 fprfErrorCounter = 0;
1090 iurfErrorCounter = 0;
1041 iurfErrorCounter = 0;
1091
1042
1092 CCR_getInstructionAndDataErrorCounters( &instructionErrorCounter, &dataErrorCounter);
1043 CCR_getInstructionAndDataErrorCounters( &instructionErrorCounter, &dataErrorCounter);
1093 ASR16_get_FPRF_IURF_ErrorCounters( &fprfErrorCounter, &iurfErrorCounter);
1044 ASR16_get_FPRF_IURF_ErrorCounters( &fprfErrorCounter, &iurfErrorCounter);
1094
1045
1095 ahb_correctable = instructionErrorCounter
1046 ahb_correctable = instructionErrorCounter
1096 + dataErrorCounter
1047 + dataErrorCounter
1097 + fprfErrorCounter
1048 + fprfErrorCounter
1098 + iurfErrorCounter
1049 + iurfErrorCounter
1099 + housekeeping_packet.hk_lfr_ahb_correctable;
1050 + housekeeping_packet.hk_lfr_ahb_correctable;
1100
1051
1101 housekeeping_packet.hk_lfr_ahb_correctable = (unsigned char) (ahb_correctable & INT8_ALL_F); // [1111 1111]
1052 housekeeping_packet.hk_lfr_ahb_correctable = (unsigned char) (ahb_correctable & INT8_ALL_F); // [1111 1111]
1102
1053
1103 }
1054 }
General Comments 0
You need to be logged in to leave comments. Login now