Project
Loading...
Searching...
No Matches
RDHUtils.cxx
Go to the documentation of this file.
1// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3// All rights not expressly granted are reserved.
4//
5// This software is distributed under the terms of the GNU General Public
6// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7//
8// In applying this license CERN does not waive the privileges and immunities
9// granted to it by virtue of its status as an Intergovernmental Organization
10// or submit itself to any jurisdiction.
11
12#include "Framework/Logger.h"
15#include <fairlogger/Logger.h>
16#include <bitset>
17#include <cassert>
18#include <exception>
19
20using namespace o2::raw;
21using namespace o2::header;
22
23//=================================================
24
25//_________________________________________________
27{
28 std::bitset<32> trb(rdh.triggerType);
29 LOGF(info, "EP:%d CRU:0x%04x Link:%-3d FEEID:0x%04x HBOrb:%-9u TrOrb:%-9u Trg:%32s HBBC:%-4d TrBC:%-4d Packet:%-3d Page:%-5d Stop:%d Par:%-5d DetFld:0x%04x MemSize:%-4d OffsNext:%-4d prio.:%d BL:%-5d HS:%-2d HV:%d",
30 int(rdh.endPointID), int(rdh.cruID), int(rdh.linkID), int(rdh.feeId),
31 rdh.heartbeatOrbit, rdh.triggerOrbit, trb.to_string().c_str(), int(rdh.heartbeatBC), int(rdh.triggerBC),
32 int(rdh.packetCounter), int(rdh.pageCnt), int(rdh.stop), int(rdh.par), int(rdh.detectorField), int(rdh.memorySize),
33 int(rdh.offsetToNext), int(rdh.priority), int(rdh.blockLength), int(rdh.headerSize), int(rdh.version));
34}
35
36//_________________________________________________
38{
39 std::bitset<32> trb(rdh.triggerType);
40 LOGF(info, "EP:%d CRU:0x%04x Link:%-3d FEEID:0x%04x Orbit:%-9u BC:%-4d Stop:%d Page:%-5d Packet:%-3d Trg:%32s Par:%-5d DetFld:0x%04x MemSize:%-5d OffsNext:%-5d prio.:%d HS:%-2d HV:%d",
41 int(rdh.endPointID), int(rdh.cruID), int(rdh.linkID), int(rdh.feeId), rdh.orbit, int(rdh.bunchCrossing), int(rdh.stop), int(rdh.pageCnt),
42 int(rdh.packetCounter), trb.to_string().c_str(), int(rdh.detectorPAR), int(rdh.detectorField), int(rdh.memorySize),
43 int(rdh.offsetToNext), int(rdh.priority), int(rdh.headerSize), int(rdh.version));
44}
45
46//_________________________________________________
48{
49 std::bitset<32> trb(rdh.triggerType);
50 LOGF(info, "EP:%d CRU:0x%04x Link:%-3d FEEID:0x%04x SrcID:%s[%d] Orbit:%-9u BC:%-4d DataFormat:%-2d Stop:%d Page:%-5d Packet:%-3d Trg:%32s Par:%-5d DetFld:0x%04x MemSize:%-5d OffsNext:%-5d prio.:%d HS:%-2d HV:%d",
51 int(rdh.endPointID), int(rdh.cruID), int(rdh.linkID), int(rdh.feeId), DAQID::DAQtoO2(rdh.sourceID).str, int(rdh.sourceID), rdh.orbit, int(rdh.bunchCrossing), int(rdh.dataFormat), int(rdh.stop), int(rdh.pageCnt), int(rdh.packetCounter),
52 trb.to_string().c_str(), int(rdh.detectorPAR), int(rdh.detectorField), int(rdh.memorySize), int(rdh.offsetToNext), int(rdh.priority), int(rdh.headerSize), int(rdh.version));
53}
54
55//_________________________________________________
57{
58 std::bitset<32> trb(rdh.triggerType);
59 LOGF(info, "EP:%d CRU:0x%04x Link:%-3d FEEID:0x%04x SrcID:%s[%d] Orbit:%-9u BC:%-4d Stop:%d Page:%-5d Packet:%-3d Trg:%32s Par:%-5d DetFld:0x%04x MemSize:%-5d OffsNext:%-5d prio.:%d HS:%-2d HV:%d",
60 int(rdh.endPointID), int(rdh.cruID), int(rdh.linkID), int(rdh.feeId), DAQID::DAQtoO2(rdh.sourceID).str, int(rdh.sourceID), rdh.orbit, int(rdh.bunchCrossing), int(rdh.stop), int(rdh.pageCnt),
61 int(rdh.packetCounter), trb.to_string().c_str(), int(rdh.detectorPAR), int(rdh.detectorField), int(rdh.memorySize), int(rdh.offsetToNext), int(rdh.priority), int(rdh.headerSize), int(rdh.version));
62}
63
64//_________________________________________________
65void RDHUtils::printRDH(const void* rdhP)
66{
67 int version = getVersion(rdhP);
68 switch (version) {
69 case 3:
70 case 4:
71 printRDH(*reinterpret_cast<const RAWDataHeaderV4*>(rdhP));
72 break;
73 case 5:
74 printRDH(*reinterpret_cast<const RAWDataHeaderV5*>(rdhP));
75 break;
76 case 6:
77 printRDH(*reinterpret_cast<const RAWDataHeaderV6*>(rdhP));
78 break;
79 case 7:
80 printRDH(*reinterpret_cast<const RAWDataHeaderV7*>(rdhP));
81 break;
82 default:
83 LOG(error) << "Unexpected RDH version " << version << " from";
84 dumpRDH(rdhP);
85 throw std::runtime_error("invalid RDH provided");
86 break;
87 };
88}
89
90//_________________________________________________
91void RDHUtils::dumpRDH(const void* rdhP)
92{
93 const uint32_t* w32 = reinterpret_cast<const uint32_t*>(rdhP);
94 for (int i = 0; i < 4; i++) {
95 int l = 4 * i;
96 LOGF(info, "[rdh%d] 0x%08x 0x%08x 0x%08x 0x%08x", i, w32[l + 3], w32[l + 2], w32[l + 1], w32[l]);
97 }
98}
99
100//_________________________________________________
101bool RDHUtils::checkRDH(const void* rdhP, bool verbose, bool checkZeros)
102{
103 int version = getVersion(rdhP);
104 bool ok = true;
105 switch (version) {
106 case 7:
107 ok = checkRDH(*reinterpret_cast<const RAWDataHeaderV7*>(rdhP), verbose, checkZeros);
108 break;
109 case 6:
110 ok = checkRDH(*reinterpret_cast<const RAWDataHeaderV6*>(rdhP), verbose, checkZeros);
111 break;
112 case 3:
113 case 4:
114 ok = checkRDH(*reinterpret_cast<const RAWDataHeaderV4*>(rdhP), verbose, checkZeros);
115 break;
116 case 5:
117 ok = checkRDH(*reinterpret_cast<const RAWDataHeaderV5*>(rdhP), verbose, checkZeros);
118 break;
119 default:
120 ok = false;
121 if (verbose) {
122 LOG(alarm) << "Unexpected RDH version " << version << " from";
123 }
124 break;
125 };
126 if (!ok && verbose) {
127 dumpRDH(rdhP);
128 }
129 return ok;
130}
131
132//_____________________________________________________________________
133bool RDHUtils::checkRDH(const RAWDataHeaderV4& rdh, bool verbose, bool checkZeros)
134{
135 // check if rdh conforms with RDH4 fields
136 bool ok = true;
137 if (rdh.version != 4 && rdh.version != 3) {
138 if (verbose) {
139 LOG(alarm) << "RDH version 4 is expected instead of " << int(rdh.version);
140 }
141 ok = false;
142 }
143 if (rdh.headerSize != 64) {
144 if (verbose) {
145 LOG(alarm) << "RDH with header size of 64 B is expected instead of " << int(rdh.headerSize);
146 }
147 ok = false;
148 }
149 if (rdh.memorySize < 64 || rdh.offsetToNext < 64 || rdh.memorySize > MAXCRUPage || rdh.offsetToNext > MAXCRUPage) {
150 if (verbose) {
151 LOG(alarm) << "RDH expected to have memorySize/offsetToNext in 64 : 8192 bytes range instead of "
152 << int(rdh.memorySize) << '/' << int(rdh.offsetToNext);
153 }
154 ok = false;
155 }
156 if (checkZeros && (rdh.zero0 || rdh.word3 || rdh.zero41 || rdh.zero42 || rdh.word5 || rdh.zero6 || rdh.word7)) {
157 if (verbose) {
158 LOG(alarm) << "Some reserved fields of RDH v4 are not empty";
159 }
160 ok = false;
161 }
162 if (!ok && verbose) {
163 dumpRDH(rdh);
164 }
165 return ok;
166}
167
168//_____________________________________________________________________
169bool RDHUtils::checkRDH(const RAWDataHeaderV5& rdh, bool verbose, bool checkZeros)
170{
171 // check if rdh conforms with RDH5 fields
172 bool ok = true;
173 if (rdh.version != 5) {
174 if (verbose) {
175 LOG(alarm) << "RDH version 5 is expected instead of " << int(rdh.version);
176 }
177 ok = false;
178 }
179 if (rdh.headerSize != 64) {
180 if (verbose) {
181 LOG(alarm) << "RDH with header size of 64 B is expected instead of " << int(rdh.headerSize);
182 }
183 ok = false;
184 }
185 if (rdh.memorySize < 64 || rdh.offsetToNext < 64) {
186 if (verbose) {
187 LOG(alarm) << "RDH expected to have memory size and offset to next >= 64 B instead of "
188 << int(rdh.memorySize) << '/' << int(rdh.offsetToNext);
189 }
190 ok = false;
191 }
192 if (checkZeros && (rdh.zero0 || rdh.word3 || rdh.zero4 || rdh.word5 || rdh.zero6 || rdh.word7)) {
193 if (verbose) {
194 LOG(alarm) << "Some reserved fields of RDH v5 are not empty";
195 }
196 ok = false;
197 }
198 if (!ok && verbose) {
199 dumpRDH(rdh);
200 }
201 return ok;
202}
203
204//_____________________________________________________________________
205bool RDHUtils::checkRDH(const RAWDataHeaderV6& rdh, bool verbose, bool checkZeros)
206{
207 // check if rdh conforms with RDH6 fields
208 bool ok = true;
209 if (rdh.version != 6) {
210 if (verbose) {
211 LOG(alarm) << "RDH version 6 is expected instead of " << int(rdh.version);
212 }
213 ok = false;
214 }
215 if (rdh.headerSize != 64) {
216 if (verbose) {
217 LOG(alarm) << "RDH with header size of 64 B is expected instead of " << int(rdh.headerSize);
218 }
219 ok = false;
220 }
221 if (rdh.memorySize < 64 || rdh.offsetToNext < 64) {
222 if (verbose) {
223 LOG(alarm) << "RDH expected to have memory size and offset to next >= 64 B instead of "
224 << int(rdh.memorySize) << '/' << int(rdh.offsetToNext);
225 }
226 ok = false;
227 }
228 if (checkZeros && (rdh.zero0 || rdh.word3 || rdh.zero4 || rdh.word5 || rdh.zero6 || rdh.word7)) {
229 if (verbose) {
230 LOG(alarm) << "Some reserved fields of RDH v6 are not empty";
231 }
232 ok = false;
233 }
234 if (!ok && verbose) {
235 dumpRDH(rdh);
236 }
237 return ok;
238}
239
240//_____________________________________________________________________
241bool RDHUtils::checkRDH(const RAWDataHeaderV7& rdh, bool verbose, bool checkZeros)
242{
243 // check if rdh conforms with RDH7 fields
244 bool ok = true;
245 if (rdh.version != 7) {
246 if (verbose) {
247 LOG(alarm) << "RDH version 7 is expected instead of " << int(rdh.version);
248 }
249 ok = false;
250 }
251 if (rdh.headerSize != 64) {
252 if (verbose) {
253 LOG(alarm) << "RDH with header size of 64 B is expected instead of " << int(rdh.headerSize);
254 }
255 ok = false;
256 }
257 if (rdh.memorySize < 64 || rdh.offsetToNext < 64) {
258 if (verbose) {
259 LOG(alarm) << "RDH expected to have memory size and offset to next >= 64 B instead of "
260 << int(rdh.memorySize) << '/' << int(rdh.offsetToNext);
261 }
262 ok = false;
263 }
264 if (checkZeros && (rdh.zero0 || rdh.zero3 || rdh.zero4 || rdh.word5 || rdh.zero6 || rdh.word7)) {
265 if (verbose) {
266 LOG(alarm) << "Some reserved fields of RDH v7 are not empty";
267 }
268 ok = false;
269 }
270 if (!ok && verbose) {
271 dumpRDH(rdh);
272 }
273 return ok;
274}
275
279uint32_t RDHUtils::fletcher32(const uint16_t* data, int len)
280{
281 uint32_t c0, c1;
282 // We similarly solve for n > 0 and n * (n+1) / 2 * (2^16-1) < (2^32-1) here.
283 // On modern computers, using a 64-bit c0/c1 could allow a group size of 23726746.
284 for (c0 = c1 = 0; len > 0; len -= 360) {
285 int blocklen = len < 360 ? len : 360;
286 for (int i = 0; i < blocklen; ++i) {
287 c0 = c0 + *data++;
288 c1 = c1 + c0;
289 }
290 c0 = c0 % 65535;
291 c1 = c1 % 65535;
292 }
293 return (c1 << 16 | c0);
294}
295
297void RDHUtils::processError(int v, const char* field)
298{
299 LOG(alarm) << "Wrong field " << field << " for RDHv" << v;
300 throw std::runtime_error("wrong RDH field accessed");
301}
int32_t i
bool const GPUTPCGMMerger::trackCluster * c1
uint32_t version
Definition RawData.h:8
static constexpr o2::header::DataOrigin DAQtoO2(ID daq)
Definition DAQID.h:65
const GLdouble * v
Definition glcorearb.h:832
GLboolean * data
Definition glcorearb.h:298
GLenum GLenum GLsizei len
Definition glcorearb.h:4232
O2 data header classes and API, v0.1.
Definition DetID.h:49
uint8_t endPointID
bit 112 to 123: CRU ID
uint8_t linkID
bit 80 to 95: memory size
uint64_t stop
bit 48 to 63: par
uint64_t pageCnt
bit 0 to 7: stop code
uint64_t zero0
bit 48 to 55: priority bit
uint64_t priority
bit 32 to 47: FEE identifier
uint64_t zero42
bit 48 to 59: heartbeat BC ID
uint64_t blockLength
bit 8 to 15: header size
uint16_t cruID
bit 104 to 111: packet counter
uint64_t triggerType
bit 60 to 63: zeroed
uint8_t packetCounter
bit 96 to 103: link id
uint64_t zero6
bit 8 to 23: pages counter
uint64_t heartbeatBC
bit 44 to 47: zeroed
uint64_t headerSize
bit 0 to 7: header version
uint64_t feeId
bit 16 to 31: block length
uint64_t zero41
bit 32 to 43: trigger BC ID
uint32_t heartbeatOrbit
bit 0 to 31: trigger orbit
uint32_t memorySize
bit 64 to 79: offset to next packet in memory
uint64_t par
bit 32 to 47: detector field
uint64_t pageCnt
bit 0 to 31: trigger type
uint32_t endPointID
bit 112 to 123: CRU ID
uint64_t priority
bit 16 to 31: FEE identifier
uint32_t memorySize
bit 64 to 79: offset to next packet in memory
uint64_t stop
bit 32 to 47: pages counter
uint64_t detectorPAR
bit 0 to 31: detector field
uint32_t linkID
bit 80 to 95: memory size
uint32_t packetCounter
bit 96 to 103: link id
uint64_t zero0
bit 32 to 39: priority bit
uint64_t zero6
bit 32 to 47: detector PAR (Pause and Reset)
uint64_t feeId
bit 8 to 15: header size
uint64_t headerSize
bit 0 to 7: header version
uint32_t orbit
bit 12 to 31: reserved
uint16_t cruID
bit 104 to 111: packet counter
uint64_t zero4
bit 48 to 53: stop code
uint32_t endPointID
bit 112 to 123: CRU ID
uint32_t packetCounter
bit 96 to 103: link id
uint32_t orbit
bit 12 to 31: reserved
uint32_t linkID
bit 80 to 95: memory size
uint64_t stop
bit 32 to 47: pages counter
uint64_t sourceID
bit 32 to 39: priority bit
uint64_t feeId
bit 8 to 15: header size
uint64_t headerSize
bit 0 to 7: header version
uint64_t zero6
bit 32 to 47: detector PAR (Pause and Reset)
uint64_t zero0
bit 40 to 47: source ID
uint64_t priority
bit 16 to 31: FEE identifier
uint64_t detectorPAR
bit 0 to 31: detector field
uint64_t pageCnt
bit 0 to 31: trigger type
uint32_t memorySize
bit 64 to 79: offset to next packet in memory
uint16_t cruID
bit 104 to 111: packet counter
uint64_t zero4
bit 48 to 53: stop code
uint32_t orbit
bit 12 to 31: reserved
uint32_t endPointID
bit 112 to 123: CRU ID
uint64_t zero6
bit 32 to 47: detector PAR (Pause and Reset)
uint32_t packetCounter
bit 96 to 103: link id
uint64_t detectorPAR
bit 0 to 31: detector field
uint64_t sourceID
bit 32 to 39: priority bit
uint32_t linkID
bit 80 to 95: memory size
uint16_t cruID
bit 104 to 111: packet counter
uint64_t stop
bit 32 to 47: pages counter
uint32_t memorySize
bit 64 to 79: offset to next packet in memory
uint64_t headerSize
bit 0 to 7: header version
uint64_t zero4
bit 48 to 53: stop code
uint64_t priority
bit 16 to 31: FEE identifier
uint64_t zero0
bit 40 to 47: source ID
uint64_t feeId
bit 8 to 15: header size
uint64_t pageCnt
bit 0 to 31: trigger type
static constexpr int MAXCRUPage
Definition RDHUtils.h:53
static void printRDH(const RDHv4 &rdh)
Definition RDHUtils.cxx:26
static bool checkRDH(const RDHv4 &rdh, bool verbose=true, bool checkZeros=false)
Definition RDHUtils.cxx:133
static void dumpRDH(const H &rdh, NOTPTR(H))
Definition RDHUtils.h:669
static constexpr int getVersion()
get numeric version of the RDH
Definition RDHUtils.h:58
LOG(info)<< "Compressed in "<< sw.CpuTime()<< " s"