##// END OF EJS Templates
fsw-0-20...
fsw-0-20 a few minor modifications to take into account redmine issues

File last commit:

r51:b0e1ec810ca1 default
r51:b0e1ec810ca1 default
Show More
grlib_regs.h
93 lines | 3.1 KiB | text/x-c | CLexer
paul
Minor changes in .h inclusion
r45 #ifndef GRLIB_REGS_H_INCLUDED
#define GRLIB_REGS_H_INCLUDED
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5
#define NB_GPTIMER 3
paul@pc-solar1.lab-lpp.local
commit before release
r25 struct apbuart_regs_str{
volatile unsigned int data;
volatile unsigned int status;
volatile unsigned int ctrl;
volatile unsigned int scaler;
volatile unsigned int fifoDebug;
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5 };
paul@pc-solar1.lab-lpp.local
commit before release
r25 struct ahbuart_regs_str{
volatile unsigned int unused;
volatile unsigned int status;
volatile unsigned int ctrl;
volatile unsigned int scaler;
};
struct timer_regs_str
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5 {
volatile unsigned int counter;
volatile unsigned int reload;
volatile unsigned int ctrl;
paul@pc-solar1.lab-lpp.local
commit before release
r25 volatile unsigned int unused;
};
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5 typedef struct timer_regs_str timer_regs_t;
paul@pc-solar1.lab-lpp.local
commit before release
r25 struct gptimer_regs_str
{
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5 volatile unsigned int scaler_value;
volatile unsigned int scaler_reload;
volatile unsigned int conf;
volatile unsigned int unused0;
paul@pc-solar1.lab-lpp.local
commit before release
r25 timer_regs_t timer[NB_GPTIMER];
};
paul@pc-solar1.lab-lpp.local
Naming convention changed...
r5 typedef struct gptimer_regs_str gptimer_regs_t;
paul@pc-solar1.lab-lpp.local
commit before release
r25 struct time_management_regs_str{
volatile int ctrl; // bit 0 forces the load of the coarse_time_load value and resets the fine_time
volatile int coarse_time_load;
paul@pc-solar1.lab-lpp.local
Several TC actions added...
r11 volatile int coarse_time;
paul@pc-solar1.lab-lpp.local
commit before release
r25 volatile int fine_time;
};
paul@pc-solar1.lab-lpp.local
Several TC actions added...
r11 typedef struct time_management_regs_str time_management_regs_t;
paul@pc-solar1.lab-lpp.local
Updates of the ICD taken into account...
r18 struct waveform_picker_regs_str{
volatile int data_shaping; // 0x00 00 *** R1 R0 SP1 SP0 BW
volatile int burst_enable; // 0x04 01 *** burst f2, f1, f0 enable f3, f2, f1, f0
volatile int addr_data_f0; // 0x08 10 ***
volatile int addr_data_f1; // 0x0c 11 ***
volatile int addr_data_f2; // 0x10 100 ***
volatile int addr_data_f3; // 0x14 101 ***
volatile int status; // 0x18 110 ***
volatile int delta_snapshot; // 0x1c 111 ***
volatile int delta_f2_f1; // 0x20 0000 ***
volatile int delta_f2_f0; // 0x24 0001 ***
volatile int nb_burst_available;// 0x28 0010 ***
volatile int nb_snapshot_param; // 0x2c 0011 ***
};
typedef struct waveform_picker_regs_str waveform_picker_regs_t;
paul
fsw-0-20...
r51 struct waveform_picker_regs_str_alt{
volatile int data_shaping; // 0x00 00 *** R1 R0 SP1 SP0 BW
volatile int run_burst_enable; // 0x04 01 *** [run *** burst f2, f1, f0 *** enable f3, f2, f1, f0 ]
volatile int addr_data_f0; // 0x08
volatile int addr_data_f1; // 0x0c
volatile int addr_data_f2; // 0x10
volatile int addr_data_f3; // 0x14
volatile int status; // 0x18
volatile int delta_snapshot; // 0x1c
volatile int delta_f0; // 0x20
volatile int delta_f0_2;
volatile int delta_f1;
volatile int delta_f2;
volatile int nb_data_by_buffer;
volatile int snapshot_param;
volatile int start_date;
};
typedef struct waveform_picker_regs_str_alt waveform_picker_regs_t_alt;
paul
SID corrected in TM_LFR_TC_EXE packets...
r31 struct spectral_matrix_regs_str{
volatile int config;
volatile int status;
volatile int matrixF0_Address0;
volatile int matrixFO_Address1;
volatile int matrixF1_Address;
volatile int matrixF2_Address;
};
typedef struct spectral_matrix_regs_str spectral_matrix_regs_t;
paul
Minor changes in .h inclusion
r45 #endif // GRLIB_REGS_H_INCLUDED