-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathadc792_lib.c
More file actions
598 lines (504 loc) · 18 KB
/
adc792_lib.c
File metadata and controls
598 lines (504 loc) · 18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
#include <stdio.h>
#include <ctype.h>
#include <fcntl.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <sys/time.h>
#include <time.h>
#include "CAENVMElib.h"
#include "CAENVMEtypes.h"
#include "CAENVMEoslib.h"
#include "adc792_lib.h"
#include <iostream>
#include <vector>
using namespace std;
std::vector<unsigned long> adcaddrs;
void print_adc792_debug_word(uint32_t word)
{
short dt_type = word>>24 & 0x7;
if (dt_type==0)
{
// adc_chan = data>>17 & 0xF; //For 792N [bit 17-20]
short adc_chan = word>>16 & 0x1F; //For 792 [bit 16-20]
unsigned int adc_value = word & 0xFFF; // adc data [bit 0-11]
bool adc_overflow = (word>>12) & 0x1; // overflow bit [bit 12]
bool adc_underthreshold = (word>>13) & 0x1; // under threshold bit [bit 13]
std::cout << "raw " << word << "\tchannel " << adc_chan << "\tvalue " << adc_value << "\toverflow " << adc_overflow << "\tunderthreshold " << adc_underthreshold << std::endl;
}
}
void check_adc792_status_afterRead(int32_t BHandle,int idB)
{
uint32_t address = adcaddrs.at(idB);
uint32_t data;
int status=1;
int caenst = CAENVME_ReadCycle(BHandle,address+adc792_shift.statusreg2,&data,cvA24_U_DATA,cvD16);
status *= (1-caenst);
if(status != 1) {
printf("Could not read statusreg2\n");
}
bool full = data & adc792_bitmask.full;
bool empty = data & adc792_bitmask.empty;
if(full || !empty || status!=1 ) {
std::cout << "FULL " << full << " !EMPTY " << !empty << " STATUS " << status << std::endl;
//Try a dataReset
int dtRst=dataReset792(BHandle,address);
if (dtRst!=1)
{
//Now try a full software reset
softReset792(BHandle,address);
//Reinialize the module
init_adc792(BHandle,idB);
}
}
}
unsigned short init_adc792(int32_t BHandle,int idB) {
int status=1;
unsigned long address;
unsigned long DataLong;
int nZS = 1; int caenst;
adcaddrs.clear();
adcaddrs.push_back(V792N_ADDRESS);
if(NUMADBOARDS >= 2) adcaddrs.push_back(V792N_ADDRESS2);
if(NUMADBOARDS >= 3) adcaddrs.push_back(V792N_ADDRESS3);
//Initialize all the boards
if (idB>adcaddrs.size()-1)
{
std::cout << "ADC CARD requested " << idB << " not available" << std::endl;
return 2;
}
/* QDC Reset */
address = adcaddrs.at(idB) + 0x1000;
caenst = CAENVME_ReadCycle(BHandle,address,&DataLong,cvA24_U_DATA,cvD16);
status *= (1-caenst);
if(status != 1) {
printf("Error READING %d V792N firmware -> address=%lx \n",idB,address);
return status;
}
else {
if(adc792_debug) printf("V792N %d firmware is version: %lx \n",idB,DataLong);
}
//Bit set register
address = adcaddrs.at(idB) + 0x1006;
DataLong = 0x80; //Issue a software reset. To be cleared with bit clear register access
caenst = CAENVME_WriteCycle(BHandle,address,&DataLong,cvA24_U_DATA,cvD16);
status *= (1-caenst);
caenst = CAENVME_ReadCycle(BHandle,address,&DataLong,cvA24_U_DATA,cvD16);
status *= (1-caenst);
if(status != 1) {
printf("Bit Set Register read: %li\n", DataLong);
return status;
}
//Control Register: enable BLK_end
address = adcaddrs.at(idB) + 0x1010;
DataLong = 0x4; //Sets bit 2 to 1 [enable blkend]
caenst = CAENVME_WriteCycle(BHandle,address,&DataLong,cvA24_U_DATA,cvD16);
status *= (1-caenst);
caenst = CAENVME_ReadCycle(BHandle,address,&DataLong,cvA24_U_DATA,cvD16);
status *= (1-caenst);
if(status != 1) {
printf("Bit Set Register read: %li\n", DataLong);
return status;
}
//Bit clear register
address = adcaddrs.at(idB) + 0x1008;
DataLong = 0x80; //Release the software reset.
caenst = CAENVME_WriteCycle(BHandle,address,&DataLong,cvA24_U_DATA,cvD16);
status *= (1-caenst);
caenst = CAENVME_ReadCycle(BHandle,address,&DataLong,cvA24_U_DATA,cvD16);
status *= (1-caenst);
if(status != 1) {
printf("Bit Clear Register read: %li\n", DataLong);
return status;
}
//Bit set register 2
//Enable/disable zero suppression
if(nZS) {
address = adcaddrs.at(idB) + 0x1032;
DataLong = 0x1018; //Disable Zero Suppression + disable overfl
caenst = CAENVME_WriteCycle(BHandle,address,&DataLong,cvA24_U_DATA,cvD16);
status *= (1-caenst);
if(status != 1) {
printf("Could not disable ZS: %li\n", DataLong);
return status;
}
} else {
address = adcaddrs.at(idB) + 0x1032;
DataLong = 0x1008; //Enable Zero Suppression + disable overfl
caenst = CAENVME_WriteCycle(BHandle,address,&DataLong,cvA24_U_DATA,cvD16);
status *= (1-caenst);
if(status != 1) {
printf("Could not enable ZS: %li\n", DataLong);
return status;
}
}
//Set the thresholds.
for(int i=0; i< V792N_CHANNEL; i++) {
// address = adcaddrs.at(idB) + 0x1080 +4*i; //every 4 for V792N
address = adcaddrs.at(idB) + 0x1080 +2*i; //every 2 for V792
if(adc792_debug) printf("Channel %d Address : %lx\n",i,address);
DataLong = 0x0; //Threshold
caenst = CAENVME_WriteCycle(BHandle,address,&DataLong,cvA24_U_DATA,cvD16);
status *= (1-caenst);
if(adc792_debug) printf("Iped register read: %li\n", DataLong);
if(status != 1) {
printf("Threshold register read: %li\n", DataLong);
return status;
}
}
//Set the Iped value to XX value [180, defaults; >60 for coupled channels]
address = adcaddrs.at(idB) + 0x1060;
// status = vme_read_dt(address, &DataLong, AD32, D16);
caenst = CAENVME_ReadCycle(BHandle,address,&DataLong,cvA24_U_DATA,cvD16);
status *= (1-caenst);
// if(adc792_debug) printf("Iped register read: %li\n", DataLong);
// DataLong = 0xFF; //iped value
DataLong = 0x60; //iped value
caenst = CAENVME_WriteCycle(BHandle,address,&DataLong,cvA24_U_DATA,cvD16);
status *= (1-caenst);
printf("Iped register read: %li\n", DataLong);
if(status != 1) {
printf("Iped register read: %li\n", DataLong);
return status;
}
return status;
}
unsigned short dataReset792(int32_t BHandle, int32_t address)
{
unsigned short status = 1;
unsigned short caenst;
unsigned int rst=0x4;
caenst = CAENVME_WriteCycle(BHandle,address+V792N_BIT_SET2,&rst,cvA24_U_DATA,cvD16);
status *= (1-caenst);
caenst = CAENVME_WriteCycle(BHandle,address+V792N_BIT_CLEAR2,&rst,cvA24_U_DATA,cvD16);
status *= (1-caenst);
return status;
}
unsigned short softReset792(int32_t BHandle, int32_t address)
{
unsigned short status = 1;
unsigned short caenst;
unsigned int rst=0x80;
caenst = CAENVME_WriteCycle(BHandle,address+V792N_BIT_SET1,&rst,cvA24_U_DATA,cvD16);
status *= (1-caenst);
caenst = CAENVME_WriteCycle(BHandle,address+V792N_BIT_CLEAR1,&rst,cvA24_U_DATA,cvD16);
status *= (1-caenst);
return status;
}
/*------------------------------------------------------------------*/
vector<int> read_adc792(int32_t BHandle, short int& status)
{
/*
reading of the V792N
returns vector with output
*/
vector<int> adc_val; adc_val.clear(); adc_val.resize(V792N_CHANNEL);
vector<int> outD;
int caenst;
unsigned long address, data, dt_type;
unsigned long evtnum;
unsigned long full,empty, evc_lsb, evc_msb, adc_value, adc_chan;
unsigned int ncha;
bool adc_underthreshold,adc_overflow, adc792_rdy, adc792_busy;
status = 1;
adc792_rdy = 0;
adc792_busy = 0;
/* /\* while (!adc792_rdy || adc792_busy) *\/ */
/* /\* { *\/ */
/* /\* */
//check if the fifo has something inside: use status register 1
address = V792N_ADDRESS + adc792_shift.statusreg1;
//status *= vme_read_dt(address,&data,AD32,D16);
caenst = CAENVME_ReadCycle(BHandle,address,&data,cvA24_U_DATA,cvD16);
status = (1-caenst);
adc792_rdy = data & adc792_bitmask.rdy;
adc792_busy = (data>>2) & adc792_bitmask.rdy;
std::cout << adc792_rdy << "," << adc792_busy << std::endl;
/* // usleep(1); */
//if(adc792_debug) printf("ST (str1) :: %i, %lx, %lx \n",status,address,data&FF); */
/* } */
//Trigger status
address = V792N_ADDRESS + 0x1020;
//status *= vme_read_dt(address,&data,AD32,D16);
caenst = CAENVME_ReadCycle(BHandle,address,&data,cvA24_U_DATA,cvD16);
status *= (1-caenst);
if(adc792_debug) printf("ST (trg1) :: %i, %lx, %lx \n",status,address,data);
//Event counter register
address = V792N_ADDRESS + 0x1024;
// status *= vme_read_dt(address,&data,AD32,D16);
caenst = CAENVME_ReadCycle(BHandle,address,&data,cvA24_U_DATA,cvD16);
status *= (1-caenst);
evc_lsb = data;
address = V792N_ADDRESS + 0x1026;
// status *= vme_read_dt(address,&data,AD32,D16);
caenst = CAENVME_ReadCycle(BHandle,address,&data,cvA24_U_DATA,cvD16);
status *= (1-caenst);
evc_msb = data & 0xFF;
if(adc792_rdy == 1 && adc792_busy == 0) {
/*
Data Ready and board not busy
*/
//Read the Event Header
address = V792N_ADDRESS;
//status = vme_read_dt(address,&data,AD32,D32);
caenst = CAENVME_ReadCycle(BHandle,address,&data,cvA24_U_DATA,cvD32);
status *= (1-caenst);
if ( ! (data>>24) & 0x2 )
{
std::cout << "ADC792 ERROR: NOT BEGIN OF EVENT" << std::endl;
return outD;
}
// if(adc792_debug) printf("Data Header :: %i, %lx, %lx \n",status,address,data);
ncha = data>>8 & 0x3F;
if(adc792_debug) cout<<"BOE:Read "<<ncha<<" channels!"<<endl;
full = 0; empty = 0;
while(!full && !empty) {
//Read MEB for each channel and get the ADC value
address = V792N_ADDRESS;
//status = vme_read_dt(address,&data,AD32,D32);
caenst = CAENVME_ReadCycle(BHandle,address,&data,cvA24_U_DATA,cvD32);
status *= (1-caenst);
// if(adc792_debug) printf("Reading and got:: %i %lx %lx\n", status, data, address);
dt_type = data>>24 & 0x7;
//if(adc792_debug) printf("typ:: %lx\n", dt_type);
if(!(dt_type & 0x7)) {
// adc_chan = data>>17 & 0xF; //For 792N [bit 17-20]
adc_chan = data>>16 & 0x1F; //For 792 [bit 16-20]
adc_value = data & 0xFFF; // adc data [bit 0-11]
adc_overflow = (data>>12) & 0x1; // overflow bit [bit 12]
adc_underthreshold = (data>>13) & 0x1; // under threshold bit [bit 13]
if(adc792_debug) cout<< "ADC data :\tch " << adc_chan<<"\tadc "<< adc_value<<"\tut "<< adc_underthreshold << "\tof " << adc_overflow << endl;
adc_val[adc_chan] = adc_value;
} else if(dt_type & 0x4) {
//EOB
evtnum = data & 0xFFFFFF;
if(adc792_debug) cout<<"EOE: EvtNum "<<evtnum<<endl;
} else if(dt_type & 0x2) {
//Header 1?
if(adc792_debug) cout<<"ADC792 ERROR:: THIS SHOULD NOT HAPPEN!!!"<<endl;
return outD;
} else if(dt_type == 0) {
//Header 0?
if(adc792_debug) cout<<"ADC792 ERROR:: EVENT EMPTY!!"<<endl;
return outD;
}
//Check the status register to check the MEB status
address = V792N_ADDRESS + adc792_shift.statusreg2;
//status = vme_read_dt(address,&data,AD32,D16);
caenst = CAENVME_ReadCycle(BHandle,address,&data,cvA24_U_DATA,cvD16);
status *= (1-caenst);
full = data & adc792_bitmask.full;
empty = data & adc792_bitmask.empty;
if(full) {
cout<<"MEB Full:: "<<full<<" !!!"<<endl;
}
}
//Write event in output vector
for(int iC = 0; iC<(int)adc_val.size(); iC++) {
outD.push_back(adc_val[iC]);
}
}
return outD;
}
vector<int> readFastadc792(int32_t BHandle, int idB, short int& status)
{
/*
Implements Block Transfer Readout of V792N
returns vector with output
*/
int nbytes_tran = 0;
vector<int> outD; outD.clear();
status = 1;
int caenst;
unsigned long data,address;
unsigned int dataV[33]; int wr;
unsigned long adc792_rdy, adc792_busy;
unsigned int ncha, idV;
struct timeval tv;
time_t curt, curt2, tdiff, tdiff1, curt3;
if(idB<0 || idB>NUMADBOARDS-1) {
cout<<" Accssing Board number"<<idB<<" while only "<<NUMADBOARDS<<" are initialized!!! Check your configuration!"<<endl;
status = 0;
return outD;
}
/*
check if the fifo has something inside: use status register 1
*/
if(adc792_debug) {
gettimeofday(&tv, NULL);
curt3=tv.tv_usec;
}
address = adcaddrs.at(idB) + adc792_shift.statusreg1;
//status *= vme_read_dt(address,&data,AD32,D16);
caenst = CAENVME_ReadCycle(BHandle,address,&data,cvA24_U_DATA,cvD16);
status *= (1-caenst);
if(status != 1) {
printf("Could not read statusreg1\n");
return outD;
}
if(adc792_debug) printf("ST (str1) :: %i, %lx, %lx \n",status,address,data);
adc792_rdy = data & adc792_bitmask.rdy;
adc792_busy = data & adc792_bitmask.busy;
//Event counter register
if(adc792_debug) {
gettimeofday(&tv, NULL);
curt=tv.tv_usec;
}
if(adc792_rdy == 1 && adc792_busy == 0) {
/*
Data Ready and board not busy
*/
//Read the Event Header
address = adcaddrs.at(idB);
//status = vme_read_dt(address,&data,AD32,D32);
caenst = CAENVME_ReadCycle(BHandle,address,&data,cvA24_U_DATA,cvD32);
status *= (1-caenst);
if(status != 1) {
printf("Could not read event header\n");
return outD;
}
//I put the header in
outD.push_back((int)data);
if(adc792_debug) printf("Data Header :: %i, %lx, %lx \n",status,address,data);
ncha = data>>8 & 0x3F;
if(adc792_debug) cout<<"Going to Read "<<ncha<<" channels!"<<endl;
//Vector reset
idV = 0; while(idV<ncha+1) { dataV[idV] = 0; idV++; }
wr = sizeof(dataV);
// printf("numchann %d \n",ncha);
//status *= vme_read_blk(address,dataV,wr,AD32,D32);
caenst = CAENVME_BLTReadCycle(BHandle,address,dataV,wr,
cvA24_U_DATA,cvD32,&nbytes_tran);
std::cout << "nBytes transferred " << nbytes_tran << " " << sizeof(dataV) << std::endl;
status *= (1-caenst);
if(status != 1) {
printf("Could not read BLT\n");
return outD;
}
//Vector dump into output
idV = 0; while(idV<ncha+1) {
outD.push_back((int)dataV[idV]);
if (adc792_debug) print_adc792_debug_word(dataV[idV]);
idV++; }
}
check_adc792_status_afterRead(BHandle,idB);
/* } */
if(adc792_debug) {
gettimeofday(&tv, NULL);
curt2=tv.tv_usec;
tdiff = (curt2-curt);
tdiff1 = (curt-curt3);
cout<<"Just BLT "<<curt<<" "<<curt2<<" "<<tdiff<<" "<<tdiff1<<endl;
}
return outD;
}
vector<int> readFastNadc792(int32_t BHandle, int idB, short int& status, int nevts, vector<int> &outW)
{
/*
Implements Block Transfer Readout of V792N
returns vector with output
*/
int nbytes_tran = 0;
vector<int> outD; outD.clear();
status = 1;
int caenst;
unsigned long data,address;
//AS unsigned long dataV[34];
unsigned int dataV[34*nevts]; //each event is composed of 34x32bit words
unsigned int wr;
unsigned long adc792_rdy, adc792_busy;
unsigned int ncha(32), idV; //no ZS reading all 32 channels
if(idB<0 || idB>NUMADBOARDS-1) {
cout<<" Accssing Board number"<<idB<<" while only "<<NUMADBOARDS<<" are initialized!!! Check your configuration!"<<endl;
status = 0;
return outD;
}
/*
check if the fifo has something inside: use status register 1
*/
address = adcaddrs.at(idB) + adc792_shift.statusreg1;
caenst = CAENVME_ReadCycle(BHandle,address,&data,cvA24_U_DATA,cvD16);
status *= (1-caenst);
/* if(adc792_debug) printf("ST (str1) :: %i, %lx, %lx \n",status,address,data); */
adc792_rdy = data & adc792_bitmask.rdy;
adc792_busy = data & adc792_bitmask.busy;
int tmpW;
unsigned long full,empty;
/* //Check the status register to check the MEB status */
/* address = adcaddrs.at(idB) + adc792_shift.statusreg2; */
/* caenst = CAENVME_ReadCycle(BHandle,address,&data,cvA24_U_DATA,cvD16); */
/* status *= (1-caenst); */
/* full = data & adc792_bitmask.full; */
/* empty = data & adc792_bitmask.empty; */
//Event counter register
if(adc792_debug) cout<<" rdy:: "<<adc792_rdy<<" busy:: "<<adc792_busy<<endl;
if(adc792_rdy == 1 && adc792_busy == 0) {
/*
Data Ready and board not busy
*/
tmpW = 0;
full = 0; empty = 0;
//Read the Event Header
address = adcaddrs.at(idB);
//Vector reset
idV = 0; while(idV<(ncha+2)*nevts) { dataV[idV] = 0; idV++; }
wr = (ncha+2)*4*nevts;
// wr = sizeof(dataV);
caenst = CAENVME_BLTReadCycle(BHandle,address,dataV,wr,
cvA24_U_DATA,cvD32,&nbytes_tran);
status *= (1-caenst);
//Vector dump into output
idV = 0; while(idV<(ncha+2)*nevts) {
outD.push_back((int)dataV[idV]);
// if (adc792_debug) print_adc792_debug_word(dataV[idV]);
idV++;
}
/*
int ntry = 100, nt = 0;
while(!empty && nt<ntry) {
//Check the status register to check the MEB status
address = adcaddrs.at(idB);
caenst = CAENVME_BLTReadCycle(BHandle,address,dataV,(ncha+2)*4,
cvA24_U_DATA,cvD32,&nbytes_tran);
status *= (1-caenst);
//Vector dump into output
idV = 0; while(idV<(ncha+2)) {
outD.push_back((int)dataV[idV]);
if (adc792_debug) print_adc792_debug_word(dataV[idV]);
idV++;
}
//Check the status register to check the MEB status
address = adcaddrs.at(idB) + adc792_shift.statusreg2;
caenst = CAENVME_ReadCycle(BHandle,address,&data,cvA24_U_DATA,cvD16);
status *= (1-caenst);
full = data & adc792_bitmask.full;
empty = data & adc792_bitmask.empty;
nt++;
}
if(nt) cout<<" Warning:: needed "<<nt<<" add read to clean up MEB"<<endl;
*/
check_adc792_status_afterRead(BHandle,idB);
}
return outD;
}
int find_adc792_eventSize(std::vector<int>& events,unsigned int evtStart)
{
short dt_type_boe = events.at(evtStart)>>24 & 0x7;
if (dt_type_boe != 2)
{
std::cout << "ADC 792:: NOT AT BEGIN OF EVENT. Data are probably corrupted" << std::endl;
return -1;
}
int channelsReadout = events.at(evtStart)>>8 & 0x3F;
short dt_type_eoe = events.at(evtStart+channelsReadout+1)>>24 & 0x7;
if (dt_type_eoe != 4)
{
std::cout << "ADC 792:: NOT AT END OF EVENT. Data are probably corrupted" << std::endl;
return -1;
}
if (adc792_debug)
{
int evtNum=events.at(evtStart+channelsReadout+1) & 0xFFFFFF;
std::cout << "ADC 792:: EVENT " << evtNum << " has " << channelsReadout << " channels readout"<< std::endl;
}
return channelsReadout+2;
}