|
@@
-1,1023
+1,1035
|
|
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 )
|
|
|
|
|
351
|
{
|
|
|
|
|
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} };
|
|
|
|
|
354
|
static const int g_pow2[NB_COEFFS]={G0, G1, G2};
|
|
|
|
|
355
|
|
|
|
|
|
356
|
int W;
|
|
|
|
|
357
|
int i;
|
|
|
|
|
358
|
|
|
|
|
|
359
|
W = INIT_INT;
|
|
|
|
|
360
|
i = INIT_INT;
|
|
|
|
|
361
|
|
|
|
|
|
362
|
//Direct-Form-II
|
|
|
|
|
363
|
for ( i = 0; i < NB_COEFFS; i++ )
|
|
|
|
|
364
|
{
|
|
|
|
|
365
|
x = x << g_pow2[ i ];
|
|
|
|
|
366
|
W = ( x - ( a[i][COEFF1] * ctx->W[i][COEFF0] )
|
|
|
|
|
367
|
- ( a[i][COEFF2] * ctx->W[i][COEFF1] ) ) >> g_pow2[ i ];
|
|
|
|
|
368
|
x = ( b[i][COEFF0] * W )
|
|
|
|
|
369
|
+ ( b[i][COEFF1] * ctx->W[i][COEFF0] )
|
|
|
|
|
370
|
+ ( b[i][COEFF2] * ctx->W[i][COEFF1] );
|
|
|
|
|
371
|
x =- ( x >> g_pow2[i] );
|
|
|
|
|
372
|
ctx->W[i][COEFF1] = ctx->W[i][COEFF0];
|
|
|
|
|
373
|
ctx->W[i][COEFF0] = W;
|
|
|
|
|
374
|
}
|
|
|
|
|
375
|
return x;
|
|
|
|
|
376
|
}
|
|
|
|
|
377
|
|
|
350
|
rtems_task avgv_task(rtems_task_argument argument)
|
|
378
|
rtems_task avgv_task(rtems_task_argument argument)
|
|
351
|
{
|
|
379
|
{
|
|
352
|
#define MOVING_AVERAGE 16
|
|
380
|
#define MOVING_AVERAGE 16
|
|
353
|
rtems_status_code status;
|
|
381
|
rtems_status_code status;
|
|
354
|
static int32_t v[MOVING_AVERAGE] = {0};
|
|
382
|
static int32_t v[MOVING_AVERAGE] = {0};
|
|
355
|
static int32_t e1[MOVING_AVERAGE] = {0};
|
|
383
|
static int32_t e1[MOVING_AVERAGE] = {0};
|
|
356
|
static int32_t e2[MOVING_AVERAGE] = {0};
|
|
384
|
static int32_t e2[MOVING_AVERAGE] = {0};
|
|
357
|
static int old_v = 0;
|
|
385
|
static int old_v = 0;
|
|
358
|
static int old_e1 = 0;
|
|
386
|
static int old_e1 = 0;
|
|
359
|
static int old_e2 = 0;
|
|
387
|
static int old_e2 = 0;
|
|
360
|
int32_t current_v;
|
|
388
|
int32_t current_v;
|
|
361
|
int32_t current_e1;
|
|
389
|
int32_t current_e1;
|
|
362
|
int32_t current_e2;
|
|
390
|
int32_t current_e2;
|
|
363
|
int32_t average_v;
|
|
391
|
int32_t average_v;
|
|
364
|
int32_t average_e1;
|
|
392
|
int32_t average_e1;
|
|
365
|
int32_t average_e2;
|
|
393
|
int32_t average_e2;
|
|
366
|
int32_t newValue_v;
|
|
394
|
int32_t newValue_v;
|
|
367
|
int32_t newValue_e1;
|
|
395
|
int32_t newValue_e1;
|
|
368
|
int32_t newValue_e2;
|
|
396
|
int32_t newValue_e2;
|
|
369
|
unsigned char k;
|
|
397
|
unsigned char k;
|
|
370
|
unsigned char indexOfOldValue;
|
|
398
|
unsigned char indexOfOldValue;
|
|
371
|
|
|
399
|
|
|
|
|
|
400
|
static filter_ctx ctx_v = { { {0,0,0}, {0,0,0}, {0,0,0} } };
|
|
|
|
|
401
|
static filter_ctx ctx_e1 = { { {0,0,0}, {0,0,0}, {0,0,0} } };
|
|
|
|
|
402
|
static filter_ctx ctx_e2 = { { {0,0,0}, {0,0,0}, {0,0,0} } };
|
|
|
|
|
403
|
|
|
372
|
BOOT_PRINTF("in AVGV ***\n");
|
|
404
|
BOOT_PRINTF("in AVGV ***\n");
|
|
373
|
|
|
405
|
|
|
374
|
if (rtems_rate_monotonic_ident( name_avgv_rate_monotonic, &AVGV_id) != RTEMS_SUCCESSFUL) {
|
|
406
|
if (rtems_rate_monotonic_ident( name_avgv_rate_monotonic, &AVGV_id) != RTEMS_SUCCESSFUL) {
|
|
375
|
status = rtems_rate_monotonic_create( name_avgv_rate_monotonic, &AVGV_id );
|
|
407
|
status = rtems_rate_monotonic_create( name_avgv_rate_monotonic, &AVGV_id );
|
|
376
|
if( status != RTEMS_SUCCESSFUL ) {
|
|
408
|
if( status != RTEMS_SUCCESSFUL ) {
|
|
377
|
PRINTF1( "rtems_rate_monotonic_create failed with status of %d\n", status );
|
|
409
|
PRINTF1( "rtems_rate_monotonic_create failed with status of %d\n", status );
|
|
378
|
}
|
|
410
|
}
|
|
379
|
}
|
|
411
|
}
|
|
380
|
|
|
412
|
|
|
381
|
status = rtems_rate_monotonic_cancel(AVGV_id);
|
|
413
|
status = rtems_rate_monotonic_cancel(AVGV_id);
|
|
382
|
if( status != RTEMS_SUCCESSFUL ) {
|
|
414
|
if( status != RTEMS_SUCCESSFUL ) {
|
|
383
|
PRINTF1( "ERR *** in AVGV *** rtems_rate_monotonic_cancel(AVGV_id) ***code: %d\n", status );
|
|
415
|
PRINTF1( "ERR *** in AVGV *** rtems_rate_monotonic_cancel(AVGV_id) ***code: %d\n", status );
|
|
384
|
}
|
|
416
|
}
|
|
385
|
else {
|
|
417
|
else {
|
|
386
|
DEBUG_PRINTF("OK *** in AVGV *** rtems_rate_monotonic_cancel(AVGV_id)\n");
|
|
418
|
DEBUG_PRINTF("OK *** in AVGV *** rtems_rate_monotonic_cancel(AVGV_id)\n");
|
|
387
|
}
|
|
419
|
}
|
|
388
|
|
|
420
|
|
|
389
|
// initialize values
|
|
421
|
// initialize values
|
|
390
|
indexOfOldValue = MOVING_AVERAGE - 1;
|
|
422
|
indexOfOldValue = MOVING_AVERAGE - 1;
|
|
391
|
current_v = 0;
|
|
423
|
current_v = 0;
|
|
392
|
current_e1 = 0;
|
|
424
|
current_e1 = 0;
|
|
393
|
current_e2 = 0;
|
|
425
|
current_e2 = 0;
|
|
394
|
average_v = 0;
|
|
426
|
average_v = 0;
|
|
395
|
average_e1 = 0;
|
|
427
|
average_e1 = 0;
|
|
396
|
average_e2 = 0;
|
|
428
|
average_e2 = 0;
|
|
397
|
newValue_v = 0;
|
|
429
|
newValue_v = 0;
|
|
398
|
newValue_e1 = 0;
|
|
430
|
newValue_e1 = 0;
|
|
399
|
newValue_e2 = 0;
|
|
431
|
newValue_e2 = 0;
|
|
400
|
|
|
432
|
|
|
401
|
k = INIT_CHAR;
|
|
433
|
k = INIT_CHAR;
|
|
402
|
|
|
434
|
|
|
403
|
while(1)
|
|
435
|
while(1)
|
|
404
|
{ // launch the rate monotonic task
|
|
436
|
{ // launch the rate monotonic task
|
|
405
|
status = rtems_rate_monotonic_period( AVGV_id, AVGV_PERIOD );
|
|
437
|
status = rtems_rate_monotonic_period( AVGV_id, AVGV_PERIOD );
|
|
406
|
if ( status != RTEMS_SUCCESSFUL )
|
|
438
|
if ( status != RTEMS_SUCCESSFUL )
|
|
407
|
{
|
|
439
|
{
|
|
408
|
PRINTF1( "in AVGV *** ERR period: %d\n", status);
|
|
440
|
PRINTF1( "in AVGV *** ERR period: %d\n", status);
|
|
409
|
}
|
|
441
|
}
|
|
410
|
else
|
|
442
|
else
|
|
411
|
{
|
|
443
|
{
|
|
412
|
current_v = waveform_picker_regs->v;
|
|
444
|
current_v = waveform_picker_regs->v;
|
|
413
|
current_e1 = waveform_picker_regs->e1;
|
|
445
|
current_e1 = waveform_picker_regs->e1;
|
|
414
|
current_e2 = waveform_picker_regs->e2;
|
|
446
|
current_e2 = waveform_picker_regs->e2;
|
|
415
|
if ( (current_v != old_v)
|
|
447
|
if ( (current_v != old_v)
|
|
416
|
|| (current_e1 != old_e1)
|
|
448
|
|| (current_e1 != old_e1)
|
|
417
|
|| (current_e2 != old_e2))
|
|
449
|
|| (current_e2 != old_e2))
|
|
418
|
{
|
|
450
|
{
|
|
419
|
// get new values
|
|
451
|
average_v = filter( current_v, &ctx_v );
|
|
420
|
newValue_v = current_v;
|
|
452
|
average_e1 = filter( current_e1, &ctx_e1 );
|
|
421
|
newValue_e1 = current_e1;
|
|
453
|
average_e2 = filter( current_e2, &ctx_e2 );
|
|
422
|
newValue_e2 = current_e2;
|
|
|
|
|
423
|
|
|
|
|
|
424
|
// compute the moving average
|
|
|
|
|
425
|
average_v = average_v + newValue_v - v[k];
|
|
|
|
|
426
|
average_e1 = average_e1 + newValue_e1 - e1[k];
|
|
|
|
|
427
|
average_e2 = average_e2 + newValue_e2 - e2[k];
|
|
|
|
|
428
|
|
|
|
|
|
429
|
// store new values in buffers
|
|
|
|
|
430
|
v[k] = newValue_v;
|
|
|
|
|
431
|
e1[k] = newValue_e1;
|
|
|
|
|
432
|
e2[k] = newValue_e2;
|
|
|
|
|
433
|
|
|
|
|
|
434
|
if (k == (MOVING_AVERAGE-1))
|
|
|
|
|
435
|
{
|
|
|
|
|
436
|
k = 0;
|
|
|
|
|
437
|
}
|
|
|
|
|
438
|
else
|
|
|
|
|
439
|
{
|
|
|
|
|
440
|
k++;
|
|
|
|
|
441
|
}
|
|
|
|
|
442
|
|
|
454
|
|
|
443
|
//update int16 values
|
|
455
|
//update int16 values
|
|
444
|
hk_lfr_sc_v_f3_as_int16 = (int16_t) (average_v / MOVING_AVERAGE );
|
|
456
|
hk_lfr_sc_v_f3_as_int16 = (int16_t) (average_v / MOVING_AVERAGE );
|
|
445
|
hk_lfr_sc_e1_f3_as_int16 = (int16_t) (average_e1 / MOVING_AVERAGE );
|
|
457
|
hk_lfr_sc_e1_f3_as_int16 = (int16_t) (average_e1 / MOVING_AVERAGE );
|
|
446
|
hk_lfr_sc_e2_f3_as_int16 = (int16_t) (average_e2 / MOVING_AVERAGE );
|
|
458
|
hk_lfr_sc_e2_f3_as_int16 = (int16_t) (average_e2 / MOVING_AVERAGE );
|
|
447
|
}
|
|
459
|
}
|
|
448
|
old_v = current_v;
|
|
460
|
old_v = current_v;
|
|
449
|
old_e1 = current_e1;
|
|
461
|
old_e1 = current_e1;
|
|
450
|
old_e2 = current_e2;
|
|
462
|
old_e2 = current_e2;
|
|
451
|
}
|
|
463
|
}
|
|
452
|
}
|
|
464
|
}
|
|
453
|
|
|
465
|
|
|
454
|
PRINTF("in AVGV *** deleting task\n");
|
|
466
|
PRINTF("in AVGV *** deleting task\n");
|
|
455
|
|
|
467
|
|
|
456
|
status = rtems_task_delete( RTEMS_SELF ); // should not return
|
|
468
|
status = rtems_task_delete( RTEMS_SELF ); // should not return
|
|
457
|
|
|
469
|
|
|
458
|
return;
|
|
470
|
return;
|
|
459
|
}
|
|
471
|
}
|
|
460
|
|
|
472
|
|
|
461
|
rtems_task dumb_task( rtems_task_argument unused )
|
|
473
|
rtems_task dumb_task( rtems_task_argument unused )
|
|
462
|
{
|
|
474
|
{
|
|
463
|
/** This RTEMS taks is used to print messages without affecting the general behaviour of the software.
|
|
475
|
/** This RTEMS taks is used to print messages without affecting the general behaviour of the software.
|
|
464
|
*
|
|
476
|
*
|
|
465
|
* @param unused is the starting argument of the RTEMS task
|
|
477
|
* @param unused is the starting argument of the RTEMS task
|
|
466
|
*
|
|
478
|
*
|
|
467
|
* The DUMB taks waits for RTEMS events and print messages depending on the incoming events.
|
|
479
|
* The DUMB taks waits for RTEMS events and print messages depending on the incoming events.
|
|
468
|
*
|
|
480
|
*
|
|
469
|
*/
|
|
481
|
*/
|
|
470
|
|
|
482
|
|
|
471
|
unsigned int i;
|
|
483
|
unsigned int i;
|
|
472
|
unsigned int intEventOut;
|
|
484
|
unsigned int intEventOut;
|
|
473
|
unsigned int coarse_time = 0;
|
|
485
|
unsigned int coarse_time = 0;
|
|
474
|
unsigned int fine_time = 0;
|
|
486
|
unsigned int fine_time = 0;
|
|
475
|
rtems_event_set event_out;
|
|
487
|
rtems_event_set event_out;
|
|
476
|
|
|
488
|
|
|
477
|
event_out = EVENT_SETS_NONE_PENDING;
|
|
489
|
event_out = EVENT_SETS_NONE_PENDING;
|
|
478
|
|
|
490
|
|
|
479
|
BOOT_PRINTF("in DUMB *** \n")
|
|
491
|
BOOT_PRINTF("in DUMB *** \n")
|
|
480
|
|
|
492
|
|
|
481
|
while(1){
|
|
493
|
while(1){
|
|
482
|
rtems_event_receive(RTEMS_EVENT_0 | RTEMS_EVENT_1 | RTEMS_EVENT_2 | RTEMS_EVENT_3
|
|
494
|
rtems_event_receive(RTEMS_EVENT_0 | RTEMS_EVENT_1 | RTEMS_EVENT_2 | RTEMS_EVENT_3
|
|
483
|
| RTEMS_EVENT_4 | RTEMS_EVENT_5 | RTEMS_EVENT_6 | RTEMS_EVENT_7
|
|
495
|
| RTEMS_EVENT_4 | RTEMS_EVENT_5 | RTEMS_EVENT_6 | RTEMS_EVENT_7
|
|
484
|
| RTEMS_EVENT_8 | RTEMS_EVENT_9 | RTEMS_EVENT_12 | RTEMS_EVENT_13
|
|
496
|
| RTEMS_EVENT_8 | RTEMS_EVENT_9 | RTEMS_EVENT_12 | RTEMS_EVENT_13
|
|
485
|
| RTEMS_EVENT_14,
|
|
497
|
| RTEMS_EVENT_14,
|
|
486
|
RTEMS_WAIT | RTEMS_EVENT_ANY, RTEMS_NO_TIMEOUT, &event_out); // wait for an RTEMS_EVENT
|
|
498
|
RTEMS_WAIT | RTEMS_EVENT_ANY, RTEMS_NO_TIMEOUT, &event_out); // wait for an RTEMS_EVENT
|
|
487
|
intEventOut = (unsigned int) event_out;
|
|
499
|
intEventOut = (unsigned int) event_out;
|
|
488
|
for ( i=0; i<NB_RTEMS_EVENTS; i++)
|
|
500
|
for ( i=0; i<NB_RTEMS_EVENTS; i++)
|
|
489
|
{
|
|
501
|
{
|
|
490
|
if ( ((intEventOut >> i) & 1) != 0)
|
|
502
|
if ( ((intEventOut >> i) & 1) != 0)
|
|
491
|
{
|
|
503
|
{
|
|
492
|
coarse_time = time_management_regs->coarse_time;
|
|
504
|
coarse_time = time_management_regs->coarse_time;
|
|
493
|
fine_time = time_management_regs->fine_time;
|
|
505
|
fine_time = time_management_regs->fine_time;
|
|
494
|
if (i==EVENT_12)
|
|
506
|
if (i==EVENT_12)
|
|
495
|
{
|
|
507
|
{
|
|
496
|
PRINTF1("%s\n", DUMB_MESSAGE_12)
|
|
508
|
PRINTF1("%s\n", DUMB_MESSAGE_12)
|
|
497
|
}
|
|
509
|
}
|
|
498
|
if (i==EVENT_13)
|
|
510
|
if (i==EVENT_13)
|
|
499
|
{
|
|
511
|
{
|
|
500
|
PRINTF1("%s\n", DUMB_MESSAGE_13)
|
|
512
|
PRINTF1("%s\n", DUMB_MESSAGE_13)
|
|
501
|
}
|
|
513
|
}
|
|
502
|
if (i==EVENT_14)
|
|
514
|
if (i==EVENT_14)
|
|
503
|
{
|
|
515
|
{
|
|
504
|
PRINTF1("%s\n", DUMB_MESSAGE_1)
|
|
516
|
PRINTF1("%s\n", DUMB_MESSAGE_1)
|
|
505
|
}
|
|
517
|
}
|
|
506
|
}
|
|
518
|
}
|
|
507
|
}
|
|
519
|
}
|
|
508
|
}
|
|
520
|
}
|
|
509
|
}
|
|
521
|
}
|
|
510
|
|
|
522
|
|
|
511
|
//*****************************
|
|
523
|
//*****************************
|
|
512
|
// init housekeeping parameters
|
|
524
|
// init housekeeping parameters
|
|
513
|
|
|
525
|
|
|
514
|
void init_housekeeping_parameters( void )
|
|
526
|
void init_housekeeping_parameters( void )
|
|
515
|
{
|
|
527
|
{
|
|
516
|
/** This function initialize the housekeeping_packet global variable with default values.
|
|
528
|
/** This function initialize the housekeeping_packet global variable with default values.
|
|
517
|
*
|
|
529
|
*
|
|
518
|
*/
|
|
530
|
*/
|
|
519
|
|
|
531
|
|
|
520
|
unsigned int i = 0;
|
|
532
|
unsigned int i = 0;
|
|
521
|
unsigned char *parameters;
|
|
533
|
unsigned char *parameters;
|
|
522
|
unsigned char sizeOfHK;
|
|
534
|
unsigned char sizeOfHK;
|
|
523
|
|
|
535
|
|
|
524
|
sizeOfHK = sizeof( Packet_TM_LFR_HK_t );
|
|
536
|
sizeOfHK = sizeof( Packet_TM_LFR_HK_t );
|
|
525
|
|
|
537
|
|
|
526
|
parameters = (unsigned char*) &housekeeping_packet;
|
|
538
|
parameters = (unsigned char*) &housekeeping_packet;
|
|
527
|
|
|
539
|
|
|
528
|
for(i = 0; i< sizeOfHK; i++)
|
|
540
|
for(i = 0; i< sizeOfHK; i++)
|
|
529
|
{
|
|
541
|
{
|
|
530
|
parameters[i] = INIT_CHAR;
|
|
542
|
parameters[i] = INIT_CHAR;
|
|
531
|
}
|
|
543
|
}
|
|
532
|
|
|
544
|
|
|
533
|
housekeeping_packet.targetLogicalAddress = CCSDS_DESTINATION_ID;
|
|
545
|
housekeeping_packet.targetLogicalAddress = CCSDS_DESTINATION_ID;
|
|
534
|
housekeeping_packet.protocolIdentifier = CCSDS_PROTOCOLE_ID;
|
|
546
|
housekeeping_packet.protocolIdentifier = CCSDS_PROTOCOLE_ID;
|
|
535
|
housekeeping_packet.reserved = DEFAULT_RESERVED;
|
|
547
|
housekeeping_packet.reserved = DEFAULT_RESERVED;
|
|
536
|
housekeeping_packet.userApplication = CCSDS_USER_APP;
|
|
548
|
housekeeping_packet.userApplication = CCSDS_USER_APP;
|
|
537
|
housekeeping_packet.packetID[0] = (unsigned char) (APID_TM_HK >> SHIFT_1_BYTE);
|
|
549
|
housekeeping_packet.packetID[0] = (unsigned char) (APID_TM_HK >> SHIFT_1_BYTE);
|
|
538
|
housekeeping_packet.packetID[1] = (unsigned char) (APID_TM_HK);
|
|
550
|
housekeeping_packet.packetID[1] = (unsigned char) (APID_TM_HK);
|
|
539
|
housekeeping_packet.packetSequenceControl[0] = TM_PACKET_SEQ_CTRL_STANDALONE;
|
|
551
|
housekeeping_packet.packetSequenceControl[0] = TM_PACKET_SEQ_CTRL_STANDALONE;
|
|
540
|
housekeeping_packet.packetSequenceControl[1] = TM_PACKET_SEQ_CNT_DEFAULT;
|
|
552
|
housekeeping_packet.packetSequenceControl[1] = TM_PACKET_SEQ_CNT_DEFAULT;
|
|
541
|
housekeeping_packet.packetLength[0] = (unsigned char) (PACKET_LENGTH_HK >> SHIFT_1_BYTE);
|
|
553
|
housekeeping_packet.packetLength[0] = (unsigned char) (PACKET_LENGTH_HK >> SHIFT_1_BYTE);
|
|
542
|
housekeeping_packet.packetLength[1] = (unsigned char) (PACKET_LENGTH_HK );
|
|
554
|
housekeeping_packet.packetLength[1] = (unsigned char) (PACKET_LENGTH_HK );
|
|
543
|
housekeeping_packet.spare1_pusVersion_spare2 = DEFAULT_SPARE1_PUSVERSION_SPARE2;
|
|
555
|
housekeeping_packet.spare1_pusVersion_spare2 = DEFAULT_SPARE1_PUSVERSION_SPARE2;
|
|
544
|
housekeeping_packet.serviceType = TM_TYPE_HK;
|
|
556
|
housekeeping_packet.serviceType = TM_TYPE_HK;
|
|
545
|
housekeeping_packet.serviceSubType = TM_SUBTYPE_HK;
|
|
557
|
housekeeping_packet.serviceSubType = TM_SUBTYPE_HK;
|
|
546
|
housekeeping_packet.destinationID = TM_DESTINATION_ID_GROUND;
|
|
558
|
housekeeping_packet.destinationID = TM_DESTINATION_ID_GROUND;
|
|
547
|
housekeeping_packet.sid = SID_HK;
|
|
559
|
housekeeping_packet.sid = SID_HK;
|
|
548
|
|
|
560
|
|
|
549
|
// init status word
|
|
561
|
// init status word
|
|
550
|
housekeeping_packet.lfr_status_word[0] = DEFAULT_STATUS_WORD_BYTE0;
|
|
562
|
housekeeping_packet.lfr_status_word[0] = DEFAULT_STATUS_WORD_BYTE0;
|
|
551
|
housekeeping_packet.lfr_status_word[1] = DEFAULT_STATUS_WORD_BYTE1;
|
|
563
|
housekeeping_packet.lfr_status_word[1] = DEFAULT_STATUS_WORD_BYTE1;
|
|
552
|
// init software version
|
|
564
|
// init software version
|
|
553
|
housekeeping_packet.lfr_sw_version[0] = SW_VERSION_N1;
|
|
565
|
housekeeping_packet.lfr_sw_version[0] = SW_VERSION_N1;
|
|
554
|
housekeeping_packet.lfr_sw_version[1] = SW_VERSION_N2;
|
|
566
|
housekeeping_packet.lfr_sw_version[1] = SW_VERSION_N2;
|
|
555
|
housekeeping_packet.lfr_sw_version[BYTE_2] = SW_VERSION_N3;
|
|
567
|
housekeeping_packet.lfr_sw_version[BYTE_2] = SW_VERSION_N3;
|
|
556
|
housekeeping_packet.lfr_sw_version[BYTE_3] = SW_VERSION_N4;
|
|
568
|
housekeeping_packet.lfr_sw_version[BYTE_3] = SW_VERSION_N4;
|
|
557
|
// init fpga version
|
|
569
|
// init fpga version
|
|
558
|
parameters = (unsigned char *) (REGS_ADDR_VHDL_VERSION);
|
|
570
|
parameters = (unsigned char *) (REGS_ADDR_VHDL_VERSION);
|
|
559
|
housekeeping_packet.lfr_fpga_version[BYTE_0] = parameters[BYTE_1]; // n1
|
|
571
|
housekeeping_packet.lfr_fpga_version[BYTE_0] = parameters[BYTE_1]; // n1
|
|
560
|
housekeeping_packet.lfr_fpga_version[BYTE_1] = parameters[BYTE_2]; // n2
|
|
572
|
housekeeping_packet.lfr_fpga_version[BYTE_1] = parameters[BYTE_2]; // n2
|
|
561
|
housekeeping_packet.lfr_fpga_version[BYTE_2] = parameters[BYTE_3]; // n3
|
|
573
|
housekeeping_packet.lfr_fpga_version[BYTE_2] = parameters[BYTE_3]; // n3
|
|
562
|
|
|
574
|
|
|
563
|
housekeeping_packet.hk_lfr_q_sd_fifo_size = MSG_QUEUE_COUNT_SEND;
|
|
575
|
housekeeping_packet.hk_lfr_q_sd_fifo_size = MSG_QUEUE_COUNT_SEND;
|
|
564
|
housekeeping_packet.hk_lfr_q_rv_fifo_size = MSG_QUEUE_COUNT_RECV;
|
|
576
|
housekeeping_packet.hk_lfr_q_rv_fifo_size = MSG_QUEUE_COUNT_RECV;
|
|
565
|
housekeeping_packet.hk_lfr_q_p0_fifo_size = MSG_QUEUE_COUNT_PRC0;
|
|
577
|
housekeeping_packet.hk_lfr_q_p0_fifo_size = MSG_QUEUE_COUNT_PRC0;
|
|
566
|
housekeeping_packet.hk_lfr_q_p1_fifo_size = MSG_QUEUE_COUNT_PRC1;
|
|
578
|
housekeeping_packet.hk_lfr_q_p1_fifo_size = MSG_QUEUE_COUNT_PRC1;
|
|
567
|
housekeeping_packet.hk_lfr_q_p2_fifo_size = MSG_QUEUE_COUNT_PRC2;
|
|
579
|
housekeeping_packet.hk_lfr_q_p2_fifo_size = MSG_QUEUE_COUNT_PRC2;
|
|
568
|
}
|
|
580
|
}
|
|
569
|
|
|
581
|
|
|
570
|
void increment_seq_counter( unsigned short *packetSequenceControl )
|
|
582
|
void increment_seq_counter( unsigned short *packetSequenceControl )
|
|
571
|
{
|
|
583
|
{
|
|
572
|
/** This function increment the sequence counter passes in argument.
|
|
584
|
/** This function increment the sequence counter passes in argument.
|
|
573
|
*
|
|
585
|
*
|
|
574
|
* The increment does not affect the grouping flag. In case of an overflow, the counter is reset to 0.
|
|
586
|
* The increment does not affect the grouping flag. In case of an overflow, the counter is reset to 0.
|
|
575
|
*
|
|
587
|
*
|
|
576
|
*/
|
|
588
|
*/
|
|
577
|
|
|
589
|
|
|
578
|
unsigned short segmentation_grouping_flag;
|
|
590
|
unsigned short segmentation_grouping_flag;
|
|
579
|
unsigned short sequence_cnt;
|
|
591
|
unsigned short sequence_cnt;
|
|
580
|
|
|
592
|
|
|
581
|
segmentation_grouping_flag = TM_PACKET_SEQ_CTRL_STANDALONE << SHIFT_1_BYTE; // keep bits 7 downto 6
|
|
593
|
segmentation_grouping_flag = TM_PACKET_SEQ_CTRL_STANDALONE << SHIFT_1_BYTE; // keep bits 7 downto 6
|
|
582
|
sequence_cnt = (*packetSequenceControl) & SEQ_CNT_MASK; // [0011 1111 1111 1111]
|
|
594
|
sequence_cnt = (*packetSequenceControl) & SEQ_CNT_MASK; // [0011 1111 1111 1111]
|
|
583
|
|
|
595
|
|
|
584
|
if ( sequence_cnt < SEQ_CNT_MAX)
|
|
596
|
if ( sequence_cnt < SEQ_CNT_MAX)
|
|
585
|
{
|
|
597
|
{
|
|
586
|
sequence_cnt = sequence_cnt + 1;
|
|
598
|
sequence_cnt = sequence_cnt + 1;
|
|
587
|
}
|
|
599
|
}
|
|
588
|
else
|
|
600
|
else
|
|
589
|
{
|
|
601
|
{
|
|
590
|
sequence_cnt = 0;
|
|
602
|
sequence_cnt = 0;
|
|
591
|
}
|
|
603
|
}
|
|
592
|
|
|
604
|
|
|
593
|
*packetSequenceControl = segmentation_grouping_flag | sequence_cnt ;
|
|
605
|
*packetSequenceControl = segmentation_grouping_flag | sequence_cnt ;
|
|
594
|
}
|
|
606
|
}
|
|
595
|
|
|
607
|
|
|
596
|
void getTime( unsigned char *time)
|
|
608
|
void getTime( unsigned char *time)
|
|
597
|
{
|
|
609
|
{
|
|
598
|
/** This function write the current local time in the time buffer passed in argument.
|
|
610
|
/** This function write the current local time in the time buffer passed in argument.
|
|
599
|
*
|
|
611
|
*
|
|
600
|
*/
|
|
612
|
*/
|
|
601
|
|
|
613
|
|
|
602
|
time[0] = (unsigned char) (time_management_regs->coarse_time>>SHIFT_3_BYTES);
|
|
614
|
time[0] = (unsigned char) (time_management_regs->coarse_time>>SHIFT_3_BYTES);
|
|
603
|
time[1] = (unsigned char) (time_management_regs->coarse_time>>SHIFT_2_BYTES);
|
|
615
|
time[1] = (unsigned char) (time_management_regs->coarse_time>>SHIFT_2_BYTES);
|
|
604
|
time[2] = (unsigned char) (time_management_regs->coarse_time>>SHIFT_1_BYTE);
|
|
616
|
time[2] = (unsigned char) (time_management_regs->coarse_time>>SHIFT_1_BYTE);
|
|
605
|
time[3] = (unsigned char) (time_management_regs->coarse_time);
|
|
617
|
time[3] = (unsigned char) (time_management_regs->coarse_time);
|
|
606
|
time[4] = (unsigned char) (time_management_regs->fine_time>>SHIFT_1_BYTE);
|
|
618
|
time[4] = (unsigned char) (time_management_regs->fine_time>>SHIFT_1_BYTE);
|
|
607
|
time[5] = (unsigned char) (time_management_regs->fine_time);
|
|
619
|
time[5] = (unsigned char) (time_management_regs->fine_time);
|
|
608
|
}
|
|
620
|
}
|
|
609
|
|
|
621
|
|
|
610
|
unsigned long long int getTimeAsUnsignedLongLongInt( )
|
|
622
|
unsigned long long int getTimeAsUnsignedLongLongInt( )
|
|
611
|
{
|
|
623
|
{
|
|
612
|
/** This function write the current local time in the time buffer passed in argument.
|
|
624
|
/** This function write the current local time in the time buffer passed in argument.
|
|
613
|
*
|
|
625
|
*
|
|
614
|
*/
|
|
626
|
*/
|
|
615
|
unsigned long long int time;
|
|
627
|
unsigned long long int time;
|
|
616
|
|
|
628
|
|
|
617
|
time = ( (unsigned long long int) (time_management_regs->coarse_time & COARSE_TIME_MASK) << SHIFT_2_BYTES )
|
|
629
|
time = ( (unsigned long long int) (time_management_regs->coarse_time & COARSE_TIME_MASK) << SHIFT_2_BYTES )
|
|
618
|
+ time_management_regs->fine_time;
|
|
630
|
+ time_management_regs->fine_time;
|
|
619
|
|
|
631
|
|
|
620
|
return time;
|
|
632
|
return time;
|
|
621
|
}
|
|
633
|
}
|
|
622
|
|
|
634
|
|
|
623
|
void send_dumb_hk( void )
|
|
635
|
void send_dumb_hk( void )
|
|
624
|
{
|
|
636
|
{
|
|
625
|
Packet_TM_LFR_HK_t dummy_hk_packet;
|
|
637
|
Packet_TM_LFR_HK_t dummy_hk_packet;
|
|
626
|
unsigned char *parameters;
|
|
638
|
unsigned char *parameters;
|
|
627
|
unsigned int i;
|
|
639
|
unsigned int i;
|
|
628
|
rtems_id queue_id;
|
|
640
|
rtems_id queue_id;
|
|
629
|
|
|
641
|
|
|
630
|
queue_id = RTEMS_ID_NONE;
|
|
642
|
queue_id = RTEMS_ID_NONE;
|
|
631
|
|
|
643
|
|
|
632
|
dummy_hk_packet.targetLogicalAddress = CCSDS_DESTINATION_ID;
|
|
644
|
dummy_hk_packet.targetLogicalAddress = CCSDS_DESTINATION_ID;
|
|
633
|
dummy_hk_packet.protocolIdentifier = CCSDS_PROTOCOLE_ID;
|
|
645
|
dummy_hk_packet.protocolIdentifier = CCSDS_PROTOCOLE_ID;
|
|
634
|
dummy_hk_packet.reserved = DEFAULT_RESERVED;
|
|
646
|
dummy_hk_packet.reserved = DEFAULT_RESERVED;
|
|
635
|
dummy_hk_packet.userApplication = CCSDS_USER_APP;
|
|
647
|
dummy_hk_packet.userApplication = CCSDS_USER_APP;
|
|
636
|
dummy_hk_packet.packetID[0] = (unsigned char) (APID_TM_HK >> SHIFT_1_BYTE);
|
|
648
|
dummy_hk_packet.packetID[0] = (unsigned char) (APID_TM_HK >> SHIFT_1_BYTE);
|
|
637
|
dummy_hk_packet.packetID[1] = (unsigned char) (APID_TM_HK);
|
|
649
|
dummy_hk_packet.packetID[1] = (unsigned char) (APID_TM_HK);
|
|
638
|
dummy_hk_packet.packetSequenceControl[0] = TM_PACKET_SEQ_CTRL_STANDALONE;
|
|
650
|
dummy_hk_packet.packetSequenceControl[0] = TM_PACKET_SEQ_CTRL_STANDALONE;
|
|
639
|
dummy_hk_packet.packetSequenceControl[1] = TM_PACKET_SEQ_CNT_DEFAULT;
|
|
651
|
dummy_hk_packet.packetSequenceControl[1] = TM_PACKET_SEQ_CNT_DEFAULT;
|
|
640
|
dummy_hk_packet.packetLength[0] = (unsigned char) (PACKET_LENGTH_HK >> SHIFT_1_BYTE);
|
|
652
|
dummy_hk_packet.packetLength[0] = (unsigned char) (PACKET_LENGTH_HK >> SHIFT_1_BYTE);
|
|
641
|
dummy_hk_packet.packetLength[1] = (unsigned char) (PACKET_LENGTH_HK );
|
|
653
|
dummy_hk_packet.packetLength[1] = (unsigned char) (PACKET_LENGTH_HK );
|
|
642
|
dummy_hk_packet.spare1_pusVersion_spare2 = DEFAULT_SPARE1_PUSVERSION_SPARE2;
|
|
654
|
dummy_hk_packet.spare1_pusVersion_spare2 = DEFAULT_SPARE1_PUSVERSION_SPARE2;
|
|
643
|
dummy_hk_packet.serviceType = TM_TYPE_HK;
|
|
655
|
dummy_hk_packet.serviceType = TM_TYPE_HK;
|
|
644
|
dummy_hk_packet.serviceSubType = TM_SUBTYPE_HK;
|
|
656
|
dummy_hk_packet.serviceSubType = TM_SUBTYPE_HK;
|
|
645
|
dummy_hk_packet.destinationID = TM_DESTINATION_ID_GROUND;
|
|
657
|
dummy_hk_packet.destinationID = TM_DESTINATION_ID_GROUND;
|
|
646
|
dummy_hk_packet.time[0] = (unsigned char) (time_management_regs->coarse_time >> SHIFT_3_BYTES);
|
|
658
|
dummy_hk_packet.time[0] = (unsigned char) (time_management_regs->coarse_time >> SHIFT_3_BYTES);
|
|
647
|
dummy_hk_packet.time[1] = (unsigned char) (time_management_regs->coarse_time >> SHIFT_2_BYTES);
|
|
659
|
dummy_hk_packet.time[1] = (unsigned char) (time_management_regs->coarse_time >> SHIFT_2_BYTES);
|
|
648
|
dummy_hk_packet.time[BYTE_2] = (unsigned char) (time_management_regs->coarse_time >> SHIFT_1_BYTE);
|
|
660
|
dummy_hk_packet.time[BYTE_2] = (unsigned char) (time_management_regs->coarse_time >> SHIFT_1_BYTE);
|
|
649
|
dummy_hk_packet.time[BYTE_3] = (unsigned char) (time_management_regs->coarse_time);
|
|
661
|
dummy_hk_packet.time[BYTE_3] = (unsigned char) (time_management_regs->coarse_time);
|
|
650
|
dummy_hk_packet.time[BYTE_4] = (unsigned char) (time_management_regs->fine_time >> SHIFT_1_BYTE);
|
|
662
|
dummy_hk_packet.time[BYTE_4] = (unsigned char) (time_management_regs->fine_time >> SHIFT_1_BYTE);
|
|
651
|
dummy_hk_packet.time[BYTE_5] = (unsigned char) (time_management_regs->fine_time);
|
|
663
|
dummy_hk_packet.time[BYTE_5] = (unsigned char) (time_management_regs->fine_time);
|
|
652
|
dummy_hk_packet.sid = SID_HK;
|
|
664
|
dummy_hk_packet.sid = SID_HK;
|
|
653
|
|
|
665
|
|
|
654
|
// init status word
|
|
666
|
// init status word
|
|
655
|
dummy_hk_packet.lfr_status_word[0] = INT8_ALL_F;
|
|
667
|
dummy_hk_packet.lfr_status_word[0] = INT8_ALL_F;
|
|
656
|
dummy_hk_packet.lfr_status_word[1] = INT8_ALL_F;
|
|
668
|
dummy_hk_packet.lfr_status_word[1] = INT8_ALL_F;
|
|
657
|
// init software version
|
|
669
|
// init software version
|
|
658
|
dummy_hk_packet.lfr_sw_version[0] = SW_VERSION_N1;
|
|
670
|
dummy_hk_packet.lfr_sw_version[0] = SW_VERSION_N1;
|
|
659
|
dummy_hk_packet.lfr_sw_version[1] = SW_VERSION_N2;
|
|
671
|
dummy_hk_packet.lfr_sw_version[1] = SW_VERSION_N2;
|
|
660
|
dummy_hk_packet.lfr_sw_version[BYTE_2] = SW_VERSION_N3;
|
|
672
|
dummy_hk_packet.lfr_sw_version[BYTE_2] = SW_VERSION_N3;
|
|
661
|
dummy_hk_packet.lfr_sw_version[BYTE_3] = SW_VERSION_N4;
|
|
673
|
dummy_hk_packet.lfr_sw_version[BYTE_3] = SW_VERSION_N4;
|
|
662
|
// init fpga version
|
|
674
|
// init fpga version
|
|
663
|
parameters = (unsigned char *) (REGS_ADDR_WAVEFORM_PICKER + APB_OFFSET_VHDL_REV);
|
|
675
|
parameters = (unsigned char *) (REGS_ADDR_WAVEFORM_PICKER + APB_OFFSET_VHDL_REV);
|
|
664
|
dummy_hk_packet.lfr_fpga_version[BYTE_0] = parameters[BYTE_1]; // n1
|
|
676
|
dummy_hk_packet.lfr_fpga_version[BYTE_0] = parameters[BYTE_1]; // n1
|
|
665
|
dummy_hk_packet.lfr_fpga_version[BYTE_1] = parameters[BYTE_2]; // n2
|
|
677
|
dummy_hk_packet.lfr_fpga_version[BYTE_1] = parameters[BYTE_2]; // n2
|
|
666
|
dummy_hk_packet.lfr_fpga_version[BYTE_2] = parameters[BYTE_3]; // n3
|
|
678
|
dummy_hk_packet.lfr_fpga_version[BYTE_2] = parameters[BYTE_3]; // n3
|
|
667
|
|
|
679
|
|
|
668
|
parameters = (unsigned char *) &dummy_hk_packet.hk_lfr_cpu_load;
|
|
680
|
parameters = (unsigned char *) &dummy_hk_packet.hk_lfr_cpu_load;
|
|
669
|
|
|
681
|
|
|
670
|
for (i=0; i<(BYTE_POS_HK_REACTION_WHEELS_FREQUENCY - BYTE_POS_HK_LFR_CPU_LOAD); i++)
|
|
682
|
for (i=0; i<(BYTE_POS_HK_REACTION_WHEELS_FREQUENCY - BYTE_POS_HK_LFR_CPU_LOAD); i++)
|
|
671
|
{
|
|
683
|
{
|
|
672
|
parameters[i] = INT8_ALL_F;
|
|
684
|
parameters[i] = INT8_ALL_F;
|
|
673
|
}
|
|
685
|
}
|
|
674
|
|
|
686
|
|
|
675
|
get_message_queue_id_send( &queue_id );
|
|
687
|
get_message_queue_id_send( &queue_id );
|
|
676
|
|
|
688
|
|
|
677
|
rtems_message_queue_send( queue_id, &dummy_hk_packet,
|
|
689
|
rtems_message_queue_send( queue_id, &dummy_hk_packet,
|
|
678
|
PACKET_LENGTH_HK + CCSDS_TC_TM_PACKET_OFFSET + CCSDS_PROTOCOLE_EXTRA_BYTES);
|
|
690
|
PACKET_LENGTH_HK + CCSDS_TC_TM_PACKET_OFFSET + CCSDS_PROTOCOLE_EXTRA_BYTES);
|
|
679
|
}
|
|
691
|
}
|
|
680
|
|
|
692
|
|
|
681
|
void get_temperatures( unsigned char *temperatures )
|
|
693
|
void get_temperatures( unsigned char *temperatures )
|
|
682
|
{
|
|
694
|
{
|
|
683
|
unsigned char* temp_scm_ptr;
|
|
695
|
unsigned char* temp_scm_ptr;
|
|
684
|
unsigned char* temp_pcb_ptr;
|
|
696
|
unsigned char* temp_pcb_ptr;
|
|
685
|
unsigned char* temp_fpga_ptr;
|
|
697
|
unsigned char* temp_fpga_ptr;
|
|
686
|
|
|
698
|
|
|
687
|
// SEL1 SEL0
|
|
699
|
// SEL1 SEL0
|
|
688
|
// 0 0 => PCB
|
|
700
|
// 0 0 => PCB
|
|
689
|
// 0 1 => FPGA
|
|
701
|
// 0 1 => FPGA
|
|
690
|
// 1 0 => SCM
|
|
702
|
// 1 0 => SCM
|
|
691
|
|
|
703
|
|
|
692
|
temp_scm_ptr = (unsigned char *) &time_management_regs->temp_scm;
|
|
704
|
temp_scm_ptr = (unsigned char *) &time_management_regs->temp_scm;
|
|
693
|
temp_pcb_ptr = (unsigned char *) &time_management_regs->temp_pcb;
|
|
705
|
temp_pcb_ptr = (unsigned char *) &time_management_regs->temp_pcb;
|
|
694
|
temp_fpga_ptr = (unsigned char *) &time_management_regs->temp_fpga;
|
|
706
|
temp_fpga_ptr = (unsigned char *) &time_management_regs->temp_fpga;
|
|
695
|
|
|
707
|
|
|
696
|
temperatures[ BYTE_0 ] = temp_scm_ptr[ BYTE_2 ];
|
|
708
|
temperatures[ BYTE_0 ] = temp_scm_ptr[ BYTE_2 ];
|
|
697
|
temperatures[ BYTE_1 ] = temp_scm_ptr[ BYTE_3 ];
|
|
709
|
temperatures[ BYTE_1 ] = temp_scm_ptr[ BYTE_3 ];
|
|
698
|
temperatures[ BYTE_2 ] = temp_pcb_ptr[ BYTE_2 ];
|
|
710
|
temperatures[ BYTE_2 ] = temp_pcb_ptr[ BYTE_2 ];
|
|
699
|
temperatures[ BYTE_3 ] = temp_pcb_ptr[ BYTE_3 ];
|
|
711
|
temperatures[ BYTE_3 ] = temp_pcb_ptr[ BYTE_3 ];
|
|
700
|
temperatures[ BYTE_4 ] = temp_fpga_ptr[ BYTE_2 ];
|
|
712
|
temperatures[ BYTE_4 ] = temp_fpga_ptr[ BYTE_2 ];
|
|
701
|
temperatures[ BYTE_5 ] = temp_fpga_ptr[ BYTE_3 ];
|
|
713
|
temperatures[ BYTE_5 ] = temp_fpga_ptr[ BYTE_3 ];
|
|
702
|
}
|
|
714
|
}
|
|
703
|
|
|
715
|
|
|
704
|
void get_v_e1_e2_f3( unsigned char *spacecraft_potential )
|
|
716
|
void get_v_e1_e2_f3( unsigned char *spacecraft_potential )
|
|
705
|
{
|
|
717
|
{
|
|
706
|
unsigned char* v_ptr;
|
|
718
|
unsigned char* v_ptr;
|
|
707
|
unsigned char* e1_ptr;
|
|
719
|
unsigned char* e1_ptr;
|
|
708
|
unsigned char* e2_ptr;
|
|
720
|
unsigned char* e2_ptr;
|
|
709
|
|
|
721
|
|
|
710
|
v_ptr = (unsigned char *) &hk_lfr_sc_v_f3_as_int16;
|
|
722
|
v_ptr = (unsigned char *) &hk_lfr_sc_v_f3_as_int16;
|
|
711
|
e1_ptr = (unsigned char *) &hk_lfr_sc_e1_f3_as_int16;
|
|
723
|
e1_ptr = (unsigned char *) &hk_lfr_sc_e1_f3_as_int16;
|
|
712
|
e2_ptr = (unsigned char *) &hk_lfr_sc_e2_f3_as_int16;
|
|
724
|
e2_ptr = (unsigned char *) &hk_lfr_sc_e2_f3_as_int16;
|
|
713
|
|
|
725
|
|
|
714
|
spacecraft_potential[BYTE_0] = v_ptr[0];
|
|
726
|
spacecraft_potential[BYTE_0] = v_ptr[0];
|
|
715
|
spacecraft_potential[BYTE_1] = v_ptr[1];
|
|
727
|
spacecraft_potential[BYTE_1] = v_ptr[1];
|
|
716
|
spacecraft_potential[BYTE_2] = e1_ptr[0];
|
|
728
|
spacecraft_potential[BYTE_2] = e1_ptr[0];
|
|
717
|
spacecraft_potential[BYTE_3] = e1_ptr[1];
|
|
729
|
spacecraft_potential[BYTE_3] = e1_ptr[1];
|
|
718
|
spacecraft_potential[BYTE_4] = e2_ptr[0];
|
|
730
|
spacecraft_potential[BYTE_4] = e2_ptr[0];
|
|
719
|
spacecraft_potential[BYTE_5] = e2_ptr[1];
|
|
731
|
spacecraft_potential[BYTE_5] = e2_ptr[1];
|
|
720
|
}
|
|
732
|
}
|
|
721
|
|
|
733
|
|
|
722
|
void get_cpu_load( unsigned char *resource_statistics )
|
|
734
|
void get_cpu_load( unsigned char *resource_statistics )
|
|
723
|
{
|
|
735
|
{
|
|
724
|
unsigned char cpu_load;
|
|
736
|
unsigned char cpu_load;
|
|
725
|
|
|
737
|
|
|
726
|
cpu_load = lfr_rtems_cpu_usage_report();
|
|
738
|
cpu_load = lfr_rtems_cpu_usage_report();
|
|
727
|
|
|
739
|
|
|
728
|
// HK_LFR_CPU_LOAD
|
|
740
|
// HK_LFR_CPU_LOAD
|
|
729
|
resource_statistics[0] = cpu_load;
|
|
741
|
resource_statistics[0] = cpu_load;
|
|
730
|
|
|
742
|
|
|
731
|
// HK_LFR_CPU_LOAD_MAX
|
|
743
|
// HK_LFR_CPU_LOAD_MAX
|
|
732
|
if (cpu_load > resource_statistics[1])
|
|
744
|
if (cpu_load > resource_statistics[1])
|
|
733
|
{
|
|
745
|
{
|
|
734
|
resource_statistics[1] = cpu_load;
|
|
746
|
resource_statistics[1] = cpu_load;
|
|
735
|
}
|
|
747
|
}
|
|
736
|
|
|
748
|
|
|
737
|
// CPU_LOAD_AVE
|
|
749
|
// CPU_LOAD_AVE
|
|
738
|
resource_statistics[BYTE_2] = 0;
|
|
750
|
resource_statistics[BYTE_2] = 0;
|
|
739
|
|
|
751
|
|
|
740
|
#ifndef PRINT_TASK_STATISTICS
|
|
752
|
#ifndef PRINT_TASK_STATISTICS
|
|
741
|
rtems_cpu_usage_reset();
|
|
753
|
rtems_cpu_usage_reset();
|
|
742
|
#endif
|
|
754
|
#endif
|
|
743
|
|
|
755
|
|
|
744
|
}
|
|
756
|
}
|
|
745
|
|
|
757
|
|
|
746
|
void set_hk_lfr_sc_potential_flag( bool state )
|
|
758
|
void set_hk_lfr_sc_potential_flag( bool state )
|
|
747
|
{
|
|
759
|
{
|
|
748
|
if (state == true)
|
|
760
|
if (state == true)
|
|
749
|
{
|
|
761
|
{
|
|
750
|
housekeeping_packet.lfr_status_word[1] =
|
|
762
|
housekeeping_packet.lfr_status_word[1] =
|
|
751
|
housekeeping_packet.lfr_status_word[1] | STATUS_WORD_SC_POTENTIAL_FLAG_BIT; // [0100 0000]
|
|
763
|
housekeeping_packet.lfr_status_word[1] | STATUS_WORD_SC_POTENTIAL_FLAG_BIT; // [0100 0000]
|
|
752
|
}
|
|
764
|
}
|
|
753
|
else
|
|
765
|
else
|
|
754
|
{
|
|
766
|
{
|
|
755
|
housekeeping_packet.lfr_status_word[1] =
|
|
767
|
housekeeping_packet.lfr_status_word[1] =
|
|
756
|
housekeeping_packet.lfr_status_word[1] & STATUS_WORD_SC_POTENTIAL_FLAG_MASK; // [1011 1111]
|
|
768
|
housekeeping_packet.lfr_status_word[1] & STATUS_WORD_SC_POTENTIAL_FLAG_MASK; // [1011 1111]
|
|
757
|
}
|
|
769
|
}
|
|
758
|
}
|
|
770
|
}
|
|
759
|
|
|
771
|
|
|
760
|
void set_sy_lfr_pas_filter_enabled( bool state )
|
|
772
|
void set_sy_lfr_pas_filter_enabled( bool state )
|
|
761
|
{
|
|
773
|
{
|
|
762
|
if (state == true)
|
|
774
|
if (state == true)
|
|
763
|
{
|
|
775
|
{
|
|
764
|
housekeeping_packet.lfr_status_word[1] =
|
|
776
|
housekeeping_packet.lfr_status_word[1] =
|
|
765
|
housekeeping_packet.lfr_status_word[1] | STATUS_WORD_PAS_FILTER_ENABLED_BIT; // [0010 0000]
|
|
777
|
housekeeping_packet.lfr_status_word[1] | STATUS_WORD_PAS_FILTER_ENABLED_BIT; // [0010 0000]
|
|
766
|
}
|
|
778
|
}
|
|
767
|
else
|
|
779
|
else
|
|
768
|
{
|
|
780
|
{
|
|
769
|
housekeeping_packet.lfr_status_word[1] =
|
|
781
|
housekeeping_packet.lfr_status_word[1] =
|
|
770
|
housekeeping_packet.lfr_status_word[1] & STATUS_WORD_PAS_FILTER_ENABLED_MASK; // [1101 1111]
|
|
782
|
housekeeping_packet.lfr_status_word[1] & STATUS_WORD_PAS_FILTER_ENABLED_MASK; // [1101 1111]
|
|
771
|
}
|
|
783
|
}
|
|
772
|
}
|
|
784
|
}
|
|
773
|
|
|
785
|
|
|
774
|
void set_sy_lfr_watchdog_enabled( bool state )
|
|
786
|
void set_sy_lfr_watchdog_enabled( bool state )
|
|
775
|
{
|
|
787
|
{
|
|
776
|
if (state == true)
|
|
788
|
if (state == true)
|
|
777
|
{
|
|
789
|
{
|
|
778
|
housekeeping_packet.lfr_status_word[1] =
|
|
790
|
housekeeping_packet.lfr_status_word[1] =
|
|
779
|
housekeeping_packet.lfr_status_word[1] | STATUS_WORD_WATCHDOG_BIT; // [0001 0000]
|
|
791
|
housekeeping_packet.lfr_status_word[1] | STATUS_WORD_WATCHDOG_BIT; // [0001 0000]
|
|
780
|
}
|
|
792
|
}
|
|
781
|
else
|
|
793
|
else
|
|
782
|
{
|
|
794
|
{
|
|
783
|
housekeeping_packet.lfr_status_word[1] =
|
|
795
|
housekeeping_packet.lfr_status_word[1] =
|
|
784
|
housekeeping_packet.lfr_status_word[1] & STATUS_WORD_WATCHDOG_MASK; // [1110 1111]
|
|
796
|
housekeeping_packet.lfr_status_word[1] & STATUS_WORD_WATCHDOG_MASK; // [1110 1111]
|
|
785
|
}
|
|
797
|
}
|
|
786
|
}
|
|
798
|
}
|
|
787
|
|
|
799
|
|
|
788
|
void set_hk_lfr_calib_enable( bool state )
|
|
800
|
void set_hk_lfr_calib_enable( bool state )
|
|
789
|
{
|
|
801
|
{
|
|
790
|
if (state == true)
|
|
802
|
if (state == true)
|
|
791
|
{
|
|
803
|
{
|
|
792
|
housekeeping_packet.lfr_status_word[1] =
|
|
804
|
housekeeping_packet.lfr_status_word[1] =
|
|
793
|
housekeeping_packet.lfr_status_word[1] | STATUS_WORD_CALIB_BIT; // [0000 1000]
|
|
805
|
housekeeping_packet.lfr_status_word[1] | STATUS_WORD_CALIB_BIT; // [0000 1000]
|
|
794
|
}
|
|
806
|
}
|
|
795
|
else
|
|
807
|
else
|
|
796
|
{
|
|
808
|
{
|
|
797
|
housekeeping_packet.lfr_status_word[1] =
|
|
809
|
housekeeping_packet.lfr_status_word[1] =
|
|
798
|
housekeeping_packet.lfr_status_word[1] & STATUS_WORD_CALIB_MASK; // [1111 0111]
|
|
810
|
housekeeping_packet.lfr_status_word[1] & STATUS_WORD_CALIB_MASK; // [1111 0111]
|
|
799
|
}
|
|
811
|
}
|
|
800
|
}
|
|
812
|
}
|
|
801
|
|
|
813
|
|
|
802
|
void set_hk_lfr_reset_cause( enum lfr_reset_cause_t lfr_reset_cause )
|
|
814
|
void set_hk_lfr_reset_cause( enum lfr_reset_cause_t lfr_reset_cause )
|
|
803
|
{
|
|
815
|
{
|
|
804
|
housekeeping_packet.lfr_status_word[1] =
|
|
816
|
housekeeping_packet.lfr_status_word[1] =
|
|
805
|
housekeeping_packet.lfr_status_word[1] & STATUS_WORD_RESET_CAUSE_MASK; // [1111 1000]
|
|
817
|
housekeeping_packet.lfr_status_word[1] & STATUS_WORD_RESET_CAUSE_MASK; // [1111 1000]
|
|
806
|
|
|
818
|
|
|
807
|
housekeeping_packet.lfr_status_word[1] = housekeeping_packet.lfr_status_word[1]
|
|
819
|
housekeeping_packet.lfr_status_word[1] = housekeeping_packet.lfr_status_word[1]
|
|
808
|
| (lfr_reset_cause & STATUS_WORD_RESET_CAUSE_BITS ); // [0000 0111]
|
|
820
|
| (lfr_reset_cause & STATUS_WORD_RESET_CAUSE_BITS ); // [0000 0111]
|
|
809
|
|
|
821
|
|
|
810
|
}
|
|
822
|
}
|
|
811
|
|
|
823
|
|
|
812
|
void increment_hk_counter( unsigned char newValue, unsigned char oldValue, unsigned int *counter )
|
|
824
|
void increment_hk_counter( unsigned char newValue, unsigned char oldValue, unsigned int *counter )
|
|
813
|
{
|
|
825
|
{
|
|
814
|
int delta;
|
|
826
|
int delta;
|
|
815
|
|
|
827
|
|
|
816
|
delta = 0;
|
|
828
|
delta = 0;
|
|
817
|
|
|
829
|
|
|
818
|
if (newValue >= oldValue)
|
|
830
|
if (newValue >= oldValue)
|
|
819
|
{
|
|
831
|
{
|
|
820
|
delta = newValue - oldValue;
|
|
832
|
delta = newValue - oldValue;
|
|
821
|
}
|
|
833
|
}
|
|
822
|
else
|
|
834
|
else
|
|
823
|
{
|
|
835
|
{
|
|
824
|
delta = (CONST_256 - oldValue) + newValue;
|
|
836
|
delta = (CONST_256 - oldValue) + newValue;
|
|
825
|
}
|
|
837
|
}
|
|
826
|
|
|
838
|
|
|
827
|
*counter = *counter + delta;
|
|
839
|
*counter = *counter + delta;
|
|
828
|
}
|
|
840
|
}
|
|
829
|
|
|
841
|
|
|
830
|
void hk_lfr_le_update( void )
|
|
842
|
void hk_lfr_le_update( void )
|
|
831
|
{
|
|
843
|
{
|
|
832
|
static hk_lfr_le_t old_hk_lfr_le = {0};
|
|
844
|
static hk_lfr_le_t old_hk_lfr_le = {0};
|
|
833
|
hk_lfr_le_t new_hk_lfr_le;
|
|
845
|
hk_lfr_le_t new_hk_lfr_le;
|
|
834
|
unsigned int counter;
|
|
846
|
unsigned int counter;
|
|
835
|
|
|
847
|
|
|
836
|
counter = (((unsigned int) housekeeping_packet.hk_lfr_le_cnt[0]) * CONST_256) + housekeeping_packet.hk_lfr_le_cnt[1];
|
|
848
|
counter = (((unsigned int) housekeeping_packet.hk_lfr_le_cnt[0]) * CONST_256) + housekeeping_packet.hk_lfr_le_cnt[1];
|
|
837
|
|
|
849
|
|
|
838
|
// DPU
|
|
850
|
// DPU
|
|
839
|
new_hk_lfr_le.dpu_spw_parity = housekeeping_packet.hk_lfr_dpu_spw_parity;
|
|
851
|
new_hk_lfr_le.dpu_spw_parity = housekeeping_packet.hk_lfr_dpu_spw_parity;
|
|
840
|
new_hk_lfr_le.dpu_spw_disconnect= housekeeping_packet.hk_lfr_dpu_spw_disconnect;
|
|
852
|
new_hk_lfr_le.dpu_spw_disconnect= housekeeping_packet.hk_lfr_dpu_spw_disconnect;
|
|
841
|
new_hk_lfr_le.dpu_spw_escape = housekeeping_packet.hk_lfr_dpu_spw_escape;
|
|
853
|
new_hk_lfr_le.dpu_spw_escape = housekeeping_packet.hk_lfr_dpu_spw_escape;
|
|
842
|
new_hk_lfr_le.dpu_spw_credit = housekeeping_packet.hk_lfr_dpu_spw_credit;
|
|
854
|
new_hk_lfr_le.dpu_spw_credit = housekeeping_packet.hk_lfr_dpu_spw_credit;
|
|
843
|
new_hk_lfr_le.dpu_spw_write_sync= housekeeping_packet.hk_lfr_dpu_spw_write_sync;
|
|
855
|
new_hk_lfr_le.dpu_spw_write_sync= housekeeping_packet.hk_lfr_dpu_spw_write_sync;
|
|
844
|
// TIMECODE
|
|
856
|
// TIMECODE
|
|
845
|
new_hk_lfr_le.timecode_erroneous= housekeeping_packet.hk_lfr_timecode_erroneous;
|
|
857
|
new_hk_lfr_le.timecode_erroneous= housekeeping_packet.hk_lfr_timecode_erroneous;
|
|
846
|
new_hk_lfr_le.timecode_missing = housekeeping_packet.hk_lfr_timecode_missing;
|
|
858
|
new_hk_lfr_le.timecode_missing = housekeeping_packet.hk_lfr_timecode_missing;
|
|
847
|
new_hk_lfr_le.timecode_invalid = housekeeping_packet.hk_lfr_timecode_invalid;
|
|
859
|
new_hk_lfr_le.timecode_invalid = housekeeping_packet.hk_lfr_timecode_invalid;
|
|
848
|
// TIME
|
|
860
|
// TIME
|
|
849
|
new_hk_lfr_le.time_timecode_it = housekeeping_packet.hk_lfr_time_timecode_it;
|
|
861
|
new_hk_lfr_le.time_timecode_it = housekeeping_packet.hk_lfr_time_timecode_it;
|
|
850
|
new_hk_lfr_le.time_not_synchro = housekeeping_packet.hk_lfr_time_not_synchro;
|
|
862
|
new_hk_lfr_le.time_not_synchro = housekeeping_packet.hk_lfr_time_not_synchro;
|
|
851
|
new_hk_lfr_le.time_timecode_ctr = housekeeping_packet.hk_lfr_time_timecode_ctr;
|
|
863
|
new_hk_lfr_le.time_timecode_ctr = housekeeping_packet.hk_lfr_time_timecode_ctr;
|
|
852
|
//AHB
|
|
864
|
//AHB
|
|
853
|
new_hk_lfr_le.ahb_correctable = housekeeping_packet.hk_lfr_ahb_correctable;
|
|
865
|
new_hk_lfr_le.ahb_correctable = housekeeping_packet.hk_lfr_ahb_correctable;
|
|
854
|
// housekeeping_packet.hk_lfr_dpu_spw_rx_ahb => not handled by the grspw driver
|
|
866
|
// housekeeping_packet.hk_lfr_dpu_spw_rx_ahb => not handled by the grspw driver
|
|
855
|
// housekeeping_packet.hk_lfr_dpu_spw_tx_ahb => not handled by the grspw driver
|
|
867
|
// housekeeping_packet.hk_lfr_dpu_spw_tx_ahb => not handled by the grspw driver
|
|
856
|
|
|
868
|
|
|
857
|
// update the le counter
|
|
869
|
// update the le counter
|
|
858
|
// DPU
|
|
870
|
// DPU
|
|
859
|
increment_hk_counter( new_hk_lfr_le.dpu_spw_parity, old_hk_lfr_le.dpu_spw_parity, &counter );
|
|
871
|
increment_hk_counter( new_hk_lfr_le.dpu_spw_parity, old_hk_lfr_le.dpu_spw_parity, &counter );
|
|
860
|
increment_hk_counter( new_hk_lfr_le.dpu_spw_disconnect,old_hk_lfr_le.dpu_spw_disconnect, &counter );
|
|
872
|
increment_hk_counter( new_hk_lfr_le.dpu_spw_disconnect,old_hk_lfr_le.dpu_spw_disconnect, &counter );
|
|
861
|
increment_hk_counter( new_hk_lfr_le.dpu_spw_escape, old_hk_lfr_le.dpu_spw_escape, &counter );
|
|
873
|
increment_hk_counter( new_hk_lfr_le.dpu_spw_escape, old_hk_lfr_le.dpu_spw_escape, &counter );
|
|
862
|
increment_hk_counter( new_hk_lfr_le.dpu_spw_credit, old_hk_lfr_le.dpu_spw_credit, &counter );
|
|
874
|
increment_hk_counter( new_hk_lfr_le.dpu_spw_credit, old_hk_lfr_le.dpu_spw_credit, &counter );
|
|
863
|
increment_hk_counter( new_hk_lfr_le.dpu_spw_write_sync,old_hk_lfr_le.dpu_spw_write_sync, &counter );
|
|
875
|
increment_hk_counter( new_hk_lfr_le.dpu_spw_write_sync,old_hk_lfr_le.dpu_spw_write_sync, &counter );
|
|
864
|
// TIMECODE
|
|
876
|
// TIMECODE
|
|
865
|
increment_hk_counter( new_hk_lfr_le.timecode_erroneous,old_hk_lfr_le.timecode_erroneous, &counter );
|
|
877
|
increment_hk_counter( new_hk_lfr_le.timecode_erroneous,old_hk_lfr_le.timecode_erroneous, &counter );
|
|
866
|
increment_hk_counter( new_hk_lfr_le.timecode_missing, old_hk_lfr_le.timecode_missing, &counter );
|
|
878
|
increment_hk_counter( new_hk_lfr_le.timecode_missing, old_hk_lfr_le.timecode_missing, &counter );
|
|
867
|
increment_hk_counter( new_hk_lfr_le.timecode_invalid, old_hk_lfr_le.timecode_invalid, &counter );
|
|
879
|
increment_hk_counter( new_hk_lfr_le.timecode_invalid, old_hk_lfr_le.timecode_invalid, &counter );
|
|
868
|
// TIME
|
|
880
|
// TIME
|
|
869
|
increment_hk_counter( new_hk_lfr_le.time_timecode_it, old_hk_lfr_le.time_timecode_it, &counter );
|
|
881
|
increment_hk_counter( new_hk_lfr_le.time_timecode_it, old_hk_lfr_le.time_timecode_it, &counter );
|
|
870
|
increment_hk_counter( new_hk_lfr_le.time_not_synchro, old_hk_lfr_le.time_not_synchro, &counter );
|
|
882
|
increment_hk_counter( new_hk_lfr_le.time_not_synchro, old_hk_lfr_le.time_not_synchro, &counter );
|
|
871
|
increment_hk_counter( new_hk_lfr_le.time_timecode_ctr, old_hk_lfr_le.time_timecode_ctr, &counter );
|
|
883
|
increment_hk_counter( new_hk_lfr_le.time_timecode_ctr, old_hk_lfr_le.time_timecode_ctr, &counter );
|
|
872
|
// AHB
|
|
884
|
// AHB
|
|
873
|
increment_hk_counter( new_hk_lfr_le.ahb_correctable, old_hk_lfr_le.ahb_correctable, &counter );
|
|
885
|
increment_hk_counter( new_hk_lfr_le.ahb_correctable, old_hk_lfr_le.ahb_correctable, &counter );
|
|
874
|
|
|
886
|
|
|
875
|
// DPU
|
|
887
|
// DPU
|
|
876
|
old_hk_lfr_le.dpu_spw_parity = new_hk_lfr_le.dpu_spw_parity;
|
|
888
|
old_hk_lfr_le.dpu_spw_parity = new_hk_lfr_le.dpu_spw_parity;
|
|
877
|
old_hk_lfr_le.dpu_spw_disconnect= new_hk_lfr_le.dpu_spw_disconnect;
|
|
889
|
old_hk_lfr_le.dpu_spw_disconnect= new_hk_lfr_le.dpu_spw_disconnect;
|
|
878
|
old_hk_lfr_le.dpu_spw_escape = new_hk_lfr_le.dpu_spw_escape;
|
|
890
|
old_hk_lfr_le.dpu_spw_escape = new_hk_lfr_le.dpu_spw_escape;
|
|
879
|
old_hk_lfr_le.dpu_spw_credit = new_hk_lfr_le.dpu_spw_credit;
|
|
891
|
old_hk_lfr_le.dpu_spw_credit = new_hk_lfr_le.dpu_spw_credit;
|
|
880
|
old_hk_lfr_le.dpu_spw_write_sync= new_hk_lfr_le.dpu_spw_write_sync;
|
|
892
|
old_hk_lfr_le.dpu_spw_write_sync= new_hk_lfr_le.dpu_spw_write_sync;
|
|
881
|
// TIMECODE
|
|
893
|
// TIMECODE
|
|
882
|
old_hk_lfr_le.timecode_erroneous= new_hk_lfr_le.timecode_erroneous;
|
|
894
|
old_hk_lfr_le.timecode_erroneous= new_hk_lfr_le.timecode_erroneous;
|
|
883
|
old_hk_lfr_le.timecode_missing = new_hk_lfr_le.timecode_missing;
|
|
895
|
old_hk_lfr_le.timecode_missing = new_hk_lfr_le.timecode_missing;
|
|
884
|
old_hk_lfr_le.timecode_invalid = new_hk_lfr_le.timecode_invalid;
|
|
896
|
old_hk_lfr_le.timecode_invalid = new_hk_lfr_le.timecode_invalid;
|
|
885
|
// TIME
|
|
897
|
// TIME
|
|
886
|
old_hk_lfr_le.time_timecode_it = new_hk_lfr_le.time_timecode_it;
|
|
898
|
old_hk_lfr_le.time_timecode_it = new_hk_lfr_le.time_timecode_it;
|
|
887
|
old_hk_lfr_le.time_not_synchro = new_hk_lfr_le.time_not_synchro;
|
|
899
|
old_hk_lfr_le.time_not_synchro = new_hk_lfr_le.time_not_synchro;
|
|
888
|
old_hk_lfr_le.time_timecode_ctr = new_hk_lfr_le.time_timecode_ctr;
|
|
900
|
old_hk_lfr_le.time_timecode_ctr = new_hk_lfr_le.time_timecode_ctr;
|
|
889
|
//AHB
|
|
901
|
//AHB
|
|
890
|
old_hk_lfr_le.ahb_correctable = new_hk_lfr_le.ahb_correctable;
|
|
902
|
old_hk_lfr_le.ahb_correctable = new_hk_lfr_le.ahb_correctable;
|
|
891
|
// housekeeping_packet.hk_lfr_dpu_spw_rx_ahb => not handled by the grspw driver
|
|
903
|
// housekeeping_packet.hk_lfr_dpu_spw_rx_ahb => not handled by the grspw driver
|
|
892
|
// housekeeping_packet.hk_lfr_dpu_spw_tx_ahb => not handled by the grspw driver
|
|
904
|
// housekeeping_packet.hk_lfr_dpu_spw_tx_ahb => not handled by the grspw driver
|
|
893
|
|
|
905
|
|
|
894
|
// update housekeeping packet counters, convert unsigned int numbers in 2 bytes numbers
|
|
906
|
// update housekeeping packet counters, convert unsigned int numbers in 2 bytes numbers
|
|
895
|
// LE
|
|
907
|
// LE
|
|
896
|
housekeeping_packet.hk_lfr_le_cnt[0] = (unsigned char) ((counter & BYTE0_MASK) >> SHIFT_1_BYTE);
|
|
908
|
housekeeping_packet.hk_lfr_le_cnt[0] = (unsigned char) ((counter & BYTE0_MASK) >> SHIFT_1_BYTE);
|
|
897
|
housekeeping_packet.hk_lfr_le_cnt[1] = (unsigned char) (counter & BYTE1_MASK);
|
|
909
|
housekeeping_packet.hk_lfr_le_cnt[1] = (unsigned char) (counter & BYTE1_MASK);
|
|
898
|
}
|
|
910
|
}
|
|
899
|
|
|
911
|
|
|
900
|
void hk_lfr_me_update( void )
|
|
912
|
void hk_lfr_me_update( void )
|
|
901
|
{
|
|
913
|
{
|
|
902
|
static hk_lfr_me_t old_hk_lfr_me = {0};
|
|
914
|
static hk_lfr_me_t old_hk_lfr_me = {0};
|
|
903
|
hk_lfr_me_t new_hk_lfr_me;
|
|
915
|
hk_lfr_me_t new_hk_lfr_me;
|
|
904
|
unsigned int counter;
|
|
916
|
unsigned int counter;
|
|
905
|
|
|
917
|
|
|
906
|
counter = (((unsigned int) housekeeping_packet.hk_lfr_me_cnt[0]) * CONST_256) + housekeeping_packet.hk_lfr_me_cnt[1];
|
|
918
|
counter = (((unsigned int) housekeeping_packet.hk_lfr_me_cnt[0]) * CONST_256) + housekeeping_packet.hk_lfr_me_cnt[1];
|
|
907
|
|
|
919
|
|
|
908
|
// get the current values
|
|
920
|
// get the current values
|
|
909
|
new_hk_lfr_me.dpu_spw_early_eop = housekeeping_packet.hk_lfr_dpu_spw_early_eop;
|
|
921
|
new_hk_lfr_me.dpu_spw_early_eop = housekeeping_packet.hk_lfr_dpu_spw_early_eop;
|
|
910
|
new_hk_lfr_me.dpu_spw_invalid_addr = housekeeping_packet.hk_lfr_dpu_spw_invalid_addr;
|
|
922
|
new_hk_lfr_me.dpu_spw_invalid_addr = housekeeping_packet.hk_lfr_dpu_spw_invalid_addr;
|
|
911
|
new_hk_lfr_me.dpu_spw_eep = housekeeping_packet.hk_lfr_dpu_spw_eep;
|
|
923
|
new_hk_lfr_me.dpu_spw_eep = housekeeping_packet.hk_lfr_dpu_spw_eep;
|
|
912
|
new_hk_lfr_me.dpu_spw_rx_too_big = housekeeping_packet.hk_lfr_dpu_spw_rx_too_big;
|
|
924
|
new_hk_lfr_me.dpu_spw_rx_too_big = housekeeping_packet.hk_lfr_dpu_spw_rx_too_big;
|
|
913
|
|
|
925
|
|
|
914
|
// update the me counter
|
|
926
|
// update the me counter
|
|
915
|
increment_hk_counter( new_hk_lfr_me.dpu_spw_early_eop, old_hk_lfr_me.dpu_spw_early_eop, &counter );
|
|
927
|
increment_hk_counter( new_hk_lfr_me.dpu_spw_early_eop, old_hk_lfr_me.dpu_spw_early_eop, &counter );
|
|
916
|
increment_hk_counter( new_hk_lfr_me.dpu_spw_invalid_addr, old_hk_lfr_me.dpu_spw_invalid_addr, &counter );
|
|
928
|
increment_hk_counter( new_hk_lfr_me.dpu_spw_invalid_addr, old_hk_lfr_me.dpu_spw_invalid_addr, &counter );
|
|
917
|
increment_hk_counter( new_hk_lfr_me.dpu_spw_eep, old_hk_lfr_me.dpu_spw_eep, &counter );
|
|
929
|
increment_hk_counter( new_hk_lfr_me.dpu_spw_eep, old_hk_lfr_me.dpu_spw_eep, &counter );
|
|
918
|
increment_hk_counter( new_hk_lfr_me.dpu_spw_rx_too_big, old_hk_lfr_me.dpu_spw_rx_too_big, &counter );
|
|
930
|
increment_hk_counter( new_hk_lfr_me.dpu_spw_rx_too_big, old_hk_lfr_me.dpu_spw_rx_too_big, &counter );
|
|
919
|
|
|
931
|
|
|
920
|
// store the counters for the next time
|
|
932
|
// store the counters for the next time
|
|
921
|
old_hk_lfr_me.dpu_spw_early_eop = new_hk_lfr_me.dpu_spw_early_eop;
|
|
933
|
old_hk_lfr_me.dpu_spw_early_eop = new_hk_lfr_me.dpu_spw_early_eop;
|
|
922
|
old_hk_lfr_me.dpu_spw_invalid_addr = new_hk_lfr_me.dpu_spw_invalid_addr;
|
|
934
|
old_hk_lfr_me.dpu_spw_invalid_addr = new_hk_lfr_me.dpu_spw_invalid_addr;
|
|
923
|
old_hk_lfr_me.dpu_spw_eep = new_hk_lfr_me.dpu_spw_eep;
|
|
935
|
old_hk_lfr_me.dpu_spw_eep = new_hk_lfr_me.dpu_spw_eep;
|
|
924
|
old_hk_lfr_me.dpu_spw_rx_too_big = new_hk_lfr_me.dpu_spw_rx_too_big;
|
|
936
|
old_hk_lfr_me.dpu_spw_rx_too_big = new_hk_lfr_me.dpu_spw_rx_too_big;
|
|
925
|
|
|
937
|
|
|
926
|
// update housekeeping packet counters, convert unsigned int numbers in 2 bytes numbers
|
|
938
|
// update housekeeping packet counters, convert unsigned int numbers in 2 bytes numbers
|
|
927
|
// ME
|
|
939
|
// ME
|
|
928
|
housekeeping_packet.hk_lfr_me_cnt[0] = (unsigned char) ((counter & BYTE0_MASK) >> SHIFT_1_BYTE);
|
|
940
|
housekeeping_packet.hk_lfr_me_cnt[0] = (unsigned char) ((counter & BYTE0_MASK) >> SHIFT_1_BYTE);
|
|
929
|
housekeeping_packet.hk_lfr_me_cnt[1] = (unsigned char) (counter & BYTE1_MASK);
|
|
941
|
housekeeping_packet.hk_lfr_me_cnt[1] = (unsigned char) (counter & BYTE1_MASK);
|
|
930
|
}
|
|
942
|
}
|
|
931
|
|
|
943
|
|
|
932
|
void hk_lfr_le_me_he_update()
|
|
944
|
void hk_lfr_le_me_he_update()
|
|
933
|
{
|
|
945
|
{
|
|
934
|
|
|
946
|
|
|
935
|
unsigned int hk_lfr_he_cnt;
|
|
947
|
unsigned int hk_lfr_he_cnt;
|
|
936
|
|
|
948
|
|
|
937
|
hk_lfr_he_cnt = (((unsigned int) housekeeping_packet.hk_lfr_he_cnt[0]) * 256) + housekeeping_packet.hk_lfr_he_cnt[1];
|
|
949
|
hk_lfr_he_cnt = (((unsigned int) housekeeping_packet.hk_lfr_he_cnt[0]) * 256) + housekeeping_packet.hk_lfr_he_cnt[1];
|
|
938
|
|
|
950
|
|
|
939
|
//update the low severity error counter
|
|
951
|
//update the low severity error counter
|
|
940
|
hk_lfr_le_update( );
|
|
952
|
hk_lfr_le_update( );
|
|
941
|
|
|
953
|
|
|
942
|
//update the medium severity error counter
|
|
954
|
//update the medium severity error counter
|
|
943
|
hk_lfr_me_update();
|
|
955
|
hk_lfr_me_update();
|
|
944
|
|
|
956
|
|
|
945
|
//update the high severity error counter
|
|
957
|
//update the high severity error counter
|
|
946
|
hk_lfr_he_cnt = 0;
|
|
958
|
hk_lfr_he_cnt = 0;
|
|
947
|
|
|
959
|
|
|
948
|
// update housekeeping packet counters, convert unsigned int numbers in 2 bytes numbers
|
|
960
|
// update housekeeping packet counters, convert unsigned int numbers in 2 bytes numbers
|
|
949
|
// HE
|
|
961
|
// HE
|
|
950
|
housekeeping_packet.hk_lfr_he_cnt[0] = (unsigned char) ((hk_lfr_he_cnt & BYTE0_MASK) >> SHIFT_1_BYTE);
|
|
962
|
housekeeping_packet.hk_lfr_he_cnt[0] = (unsigned char) ((hk_lfr_he_cnt & BYTE0_MASK) >> SHIFT_1_BYTE);
|
|
951
|
housekeeping_packet.hk_lfr_he_cnt[1] = (unsigned char) (hk_lfr_he_cnt & BYTE1_MASK);
|
|
963
|
housekeeping_packet.hk_lfr_he_cnt[1] = (unsigned char) (hk_lfr_he_cnt & BYTE1_MASK);
|
|
952
|
|
|
964
|
|
|
953
|
}
|
|
965
|
}
|
|
954
|
|
|
966
|
|
|
955
|
void set_hk_lfr_time_not_synchro()
|
|
967
|
void set_hk_lfr_time_not_synchro()
|
|
956
|
{
|
|
968
|
{
|
|
957
|
static unsigned char synchroLost = 1;
|
|
969
|
static unsigned char synchroLost = 1;
|
|
958
|
int synchronizationBit;
|
|
970
|
int synchronizationBit;
|
|
959
|
|
|
971
|
|
|
960
|
// get the synchronization bit
|
|
972
|
// get the synchronization bit
|
|
961
|
synchronizationBit =
|
|
973
|
synchronizationBit =
|
|
962
|
(time_management_regs->coarse_time & VAL_LFR_SYNCHRONIZED) >> BIT_SYNCHRONIZATION; // 1000 0000 0000 0000
|
|
974
|
(time_management_regs->coarse_time & VAL_LFR_SYNCHRONIZED) >> BIT_SYNCHRONIZATION; // 1000 0000 0000 0000
|
|
963
|
|
|
975
|
|
|
964
|
switch (synchronizationBit)
|
|
976
|
switch (synchronizationBit)
|
|
965
|
{
|
|
977
|
{
|
|
966
|
case 0:
|
|
978
|
case 0:
|
|
967
|
if (synchroLost == 1)
|
|
979
|
if (synchroLost == 1)
|
|
968
|
{
|
|
980
|
{
|
|
969
|
synchroLost = 0;
|
|
981
|
synchroLost = 0;
|
|
970
|
}
|
|
982
|
}
|
|
971
|
break;
|
|
983
|
break;
|
|
972
|
case 1:
|
|
984
|
case 1:
|
|
973
|
if (synchroLost == 0 )
|
|
985
|
if (synchroLost == 0 )
|
|
974
|
{
|
|
986
|
{
|
|
975
|
synchroLost = 1;
|
|
987
|
synchroLost = 1;
|
|
976
|
increase_unsigned_char_counter(&housekeeping_packet.hk_lfr_time_not_synchro);
|
|
988
|
increase_unsigned_char_counter(&housekeeping_packet.hk_lfr_time_not_synchro);
|
|
977
|
update_hk_lfr_last_er_fields( RID_LE_LFR_TIME, CODE_NOT_SYNCHRO );
|
|
989
|
update_hk_lfr_last_er_fields( RID_LE_LFR_TIME, CODE_NOT_SYNCHRO );
|
|
978
|
}
|
|
990
|
}
|
|
979
|
break;
|
|
991
|
break;
|
|
980
|
default:
|
|
992
|
default:
|
|
981
|
PRINTF1("in hk_lfr_time_not_synchro *** unexpected value for synchronizationBit = %d\n", synchronizationBit);
|
|
993
|
PRINTF1("in hk_lfr_time_not_synchro *** unexpected value for synchronizationBit = %d\n", synchronizationBit);
|
|
982
|
break;
|
|
994
|
break;
|
|
983
|
}
|
|
995
|
}
|
|
984
|
|
|
996
|
|
|
985
|
}
|
|
997
|
}
|
|
986
|
|
|
998
|
|
|
987
|
void set_hk_lfr_ahb_correctable() // CRITICITY L
|
|
999
|
void set_hk_lfr_ahb_correctable() // CRITICITY L
|
|
988
|
{
|
|
1000
|
{
|
|
989
|
/** This function builds the error counter hk_lfr_ahb_correctable using the statistics provided
|
|
1001
|
/** This function builds the error counter hk_lfr_ahb_correctable using the statistics provided
|
|
990
|
* by the Cache Control Register (ASI 2, offset 0) and in the Register Protection Control Register (ASR16) on the
|
|
1002
|
* by the Cache Control Register (ASI 2, offset 0) and in the Register Protection Control Register (ASR16) on the
|
|
991
|
* detected errors in the cache, in the integer unit and in the floating point unit.
|
|
1003
|
* detected errors in the cache, in the integer unit and in the floating point unit.
|
|
992
|
*
|
|
1004
|
*
|
|
993
|
* @param void
|
|
1005
|
* @param void
|
|
994
|
*
|
|
1006
|
*
|
|
995
|
* @return void
|
|
1007
|
* @return void
|
|
996
|
*
|
|
1008
|
*
|
|
997
|
* All errors are summed to set the value of the hk_lfr_ahb_correctable counter.
|
|
1009
|
* All errors are summed to set the value of the hk_lfr_ahb_correctable counter.
|
|
998
|
*
|
|
1010
|
*
|
|
999
|
*/
|
|
1011
|
*/
|
|
1000
|
|
|
1012
|
|
|
1001
|
unsigned int ahb_correctable;
|
|
1013
|
unsigned int ahb_correctable;
|
|
1002
|
unsigned int instructionErrorCounter;
|
|
1014
|
unsigned int instructionErrorCounter;
|
|
1003
|
unsigned int dataErrorCounter;
|
|
1015
|
unsigned int dataErrorCounter;
|
|
1004
|
unsigned int fprfErrorCounter;
|
|
1016
|
unsigned int fprfErrorCounter;
|
|
1005
|
unsigned int iurfErrorCounter;
|
|
1017
|
unsigned int iurfErrorCounter;
|
|
1006
|
|
|
1018
|
|
|
1007
|
instructionErrorCounter = 0;
|
|
1019
|
instructionErrorCounter = 0;
|
|
1008
|
dataErrorCounter = 0;
|
|
1020
|
dataErrorCounter = 0;
|
|
1009
|
fprfErrorCounter = 0;
|
|
1021
|
fprfErrorCounter = 0;
|
|
1010
|
iurfErrorCounter = 0;
|
|
1022
|
iurfErrorCounter = 0;
|
|
1011
|
|
|
1023
|
|
|
1012
|
CCR_getInstructionAndDataErrorCounters( &instructionErrorCounter, &dataErrorCounter);
|
|
1024
|
CCR_getInstructionAndDataErrorCounters( &instructionErrorCounter, &dataErrorCounter);
|
|
1013
|
ASR16_get_FPRF_IURF_ErrorCounters( &fprfErrorCounter, &iurfErrorCounter);
|
|
1025
|
ASR16_get_FPRF_IURF_ErrorCounters( &fprfErrorCounter, &iurfErrorCounter);
|
|
1014
|
|
|
1026
|
|
|
1015
|
ahb_correctable = instructionErrorCounter
|
|
1027
|
ahb_correctable = instructionErrorCounter
|
|
1016
|
+ dataErrorCounter
|
|
1028
|
+ dataErrorCounter
|
|
1017
|
+ fprfErrorCounter
|
|
1029
|
+ fprfErrorCounter
|
|
1018
|
+ iurfErrorCounter
|
|
1030
|
+ iurfErrorCounter
|
|
1019
|
+ housekeeping_packet.hk_lfr_ahb_correctable;
|
|
1031
|
+ housekeeping_packet.hk_lfr_ahb_correctable;
|
|
1020
|
|
|
1032
|
|
|
1021
|
housekeeping_packet.hk_lfr_ahb_correctable = (unsigned char) (ahb_correctable & INT8_ALL_F); // [1111 1111]
|
|
1033
|
housekeeping_packet.hk_lfr_ahb_correctable = (unsigned char) (ahb_correctable & INT8_ALL_F); // [1111 1111]
|
|
1022
|
|
|
1034
|
|
|
1023
|
}
|
|
1035
|
}
|