source: firmware/FAD/doc/memory_manager.tex@ 10144

Last change on this file since 10144 was 10144, checked in by neise, 14 years ago
  • Property svn:executable set to *
File size: 12.0 KB
Line 
1\documentclass[a4paper,twoside]{article}
2
3\setlength{\topmargin}{0mm} %1 inch is always there!
4\setlength{\oddsidemargin}{0mm} %1 inch is always there!
5\setlength{\evensidemargin}{0mm} %1 inch is always there!
6
7\setlength{\textwidth}{16cm}
8\setlength{\textheight}{25cm}
9
10
11\setlength{\headheight}{0mm}
12\setlength{\headsep}{0mm}
13
14\usepackage[T1]{fontenc}
15\usepackage[utf8]{inputenc}
16
17\usepackage{graphicx} % for pictures
18\usepackage{float} % for figures (english)
19\restylefloat{figure}
20\restylefloat{table}
21
22\usepackage{arydshln}
23
24\title{FAD Data Generation}
25\author{D. Neise}
26\date{08.02.2011}
27
28\begin{document}
29
30\maketitle
31\tableofcontents
32\newpage
33
34
35\section{data order in 64bit address space}
36
37When data is input into Data-RAM by the DataGenerator, the data is fed in as words of 64bit.
38
39Each Event constists of an EventHeader, the so called ChannelData, and a small EventFooter.
40Figure (\ref{64bitRAM}) shows how the data is stored as 64bit words in the DataRAM.
41Assume the Event Start-Address beeing {\tt 0x2000} and each package of ChannelData consists 100 samples.
42\\ \\
43%\emph{Erklaeren, dass auch wenn nur ein channel kleiner ist, die selbe Anzahl Daten versendet wird.}
44
45
46\begin{table}[htbp]
47\begin{tabular}{||l||l|l|l|l||l||}
48\hline
49address & word 3 & word 2 & word 1 & word 0 & description \\
50\hline
510x2000 & 0x0000 & version & length & 0xFB01 & Header \\
520x2001 & 0x0000 & TRG ID 45 & EVT cntr 10 & EVT cntr 32 & Externl trigger ID\\
530x2002 & 0x0000 & TRG ID 45 & EVT cntr 10 & EVT cntr 32 & Internal trigger ID\\
540x2003 & 0x0000 & 0x0000 & 0x0000 & 0x0(cid)8(bid) & Board ID \\
550x2004 & Temp 3 & Temp 2 & Temp 1 & Temp 0 & Temperatures \\
560x2005 & DAC 3 & DAC 2 & DAC 1 & DAC 0 & DAC values part 1 \\
570x2006 & DAC 7 & DAC 6 & DAC 5 & DAC 4 & DAC values part 2 \\
58\hline
590x2007 & 0x0030 & 0x0020 & 0x0010 & 0x0000 & chip-n-channel ID (group 0) \\
600x2008 & trg pos 3 & trg pos 2 & trg pos 1 & trg pos 0 & DRS stop positions \\
610x2009 & ROI 3 & ROI 2 & ROI 1 & ROI 0 & width of region of interest \\
620x200A & data adc3 & data adc2 & data adc1 & data adc0 & ADC Data start of ROI \\
630x20.. &&&&& ... \\
640x206D & data adc3 & data adc2 & data adc1 & data adc0 & ADC Data end of ROI \\
65\hline
660x206E & 0x0031 & 0x0021 & 0x0011 & 0x0001 & chip-n-channel ID (group 1) \\
670x206F & trg pos 3 & trg pos 2 & trg pos 1 & trg pos 0 & DRS stop positions \\
680x2070 & ROI 3 & ROI 2 & ROI 1 & ROI 0 & width of region of interest \\
690x2071 & data adc3 & data adc2 & data adc1 & data adc0 & ADC Data start of ROI \\
700x20.. &&&&& ... \\
710x20D4 & data adc3 & data adc2 & data adc1 & data adc0 & ADC Data end of ROI \\
72\hline
730x20.. &&&&& ... \\
74\hline
750x233F & 0x0039 & 0x0029 & 0x0019 & 0x0009 & chip-n-channel ID (group 9) \\
760x2340 & trg pos 3 & trg pos 2 & trg pos 1 & trg pos 0 & DRS stop positions \\
770x2341 & ROI 3 & ROI 2 & ROI 1 & ROI 0 & width of region of interest \\
780x2342 & data adc3 & data adc2 & data adc1 & data adc0 & ADC Data start of ROI \\
790x23.. &&&&& ... \\
800x23A5 & data adc3 & data adc2 & data adc1 & data adc0 & ADC Data end of ROI \\
81\hline
820x23A6 & 0x0000 & 0x0000 & 0x04FE & 0x4242 & FOOTER \\
83\hline
84\end {tabular}
85
86\caption{word order of event in Data RAM. 64bit addressing. As of 08.02.2011}
87\label{64bitRAM}
88\end{table}
89
90
91During DRS readout and data digitzation, the Trigger ID is coming in through RS485 interface from FTM board.
92The Trigger ID reciption takes about $40 {\mu}$s. Therefor the 2 words containing Trigger information in the EventHeader are
93left empty in the first place. The digitazed analog data is read in as quickly as possible. Only after finishing the Readout,
94the Trigger ID is filled into the EventHeader.
95Then the EventFooter is added and the Readout is finished.
96
97\newpage
98\section{data order in 16bit address space}
99
100After an Event is stored in data RAM, is is ready to be read out by {\tt w5300 modul.vhd}.
101Since the FIFOs of FADs W5300 ethernet controller are of 16bit width, data is read out of the dataRAM
102as 16bit words. Empty 16bit words are left out.
103
104The following table shows how the data is ordered inside data RAM, when accessed in 16bit address space
105
106\begin{table}[htbp]
107\begin{tabular}{|l|l|l|}
108\hline
109address & 16bit word & description \\
110\hline
1110x8000 & 0xFB01 & Start Flag - fix value \\
1120x8001 & 0xllll & package length in 16bit words \\
1130x8002 & 0xvvvv & version - deduced from SVN revision number \\
1140x8004 & EVT cntr 32 & trigger ID upper word \\
1150x8005 & EVT cntr 10 & trigger ID lower word \\
1160x8006 & 0xAA55 & trigger type and CRC-fake \\
1170x8008 & EVT cntr 32 & trigger ID upper word \\
1180x8009 & EVT cntr 10 & trigger ID lower word \\
1190x800A & 0xAA55 & trigger type and CRC-fake \\
1200x800C & 0x0(cid)8(bid) & Board ID \\
1210x8010 & 0xttt0 & temperature sensor next to DRS 0 \\
1220x8011 & 0xttt1 & temperature sensor next to DRS 1 \\
1230x8012 & 0xttt2 & temperature sensor next to DRS 2 \\
1240x8013 & 0xttt3 & temperature sensor next to DRS 3 \\
1250x8014 & 0xdac0 & setting of DAC channel A \\
1260x8015 & 0xdac1 & setting of DAC channel B \\
1270x8016 & 0xdac2 & setting of DAC channel C \\
1280x8017 & 0xdac3 & setting of DAC channel D \\
1290x8018 & 0xdac4 & setting of DAC channel E \\
1300x8019 & 0xdac5 & setting of DAC channel F \\
1310x801A & 0xdac6 & setting of DAC channel G \\
1320x801B & 0xdac7 & setting of DAC channel H \\
133\hline
1340x801C & 0x0000 & DRS 0 - channel 0 \\
1350x8020 & trg pos 0 & DRS 0 stop position \\
1360x8024 & ROI 00 & ROI width of this channel \\
1370x8028 & adc data 0& ADC data start \\
1380x8... & ... & ...data ... \\
1390x81B4 & adc data ROI-1 & ADC data stop\\
140\hline
1410x801D & 0x0010 & DRS 1 - channel 0 \\
1420x8021 & trg pos 1 & DRS 1 stop position \\
1430x8025 & ROI 10 & ROI width of this channel \\
1440x8029 & adc data 0& ADC data start \\
1450x8... & ... & ...data ... \\
1460x81B5 & adc data ROI-1 & ADC data stop\\
147\hline
1480x8... & ... & ...data ... \\
149\hline
1500x8CFC & 0x0039 & DRS 3 - channel 9 \\
1510x8D03 & trg pos 3 & DRS 3 stop position \\
1520x8D07 & ROI 39 & ROI width of this channel \\
1530x8D0B & adc data 0& ADC data start \\
1540x8... & ... & ...data ... \\
1550x8E97 & adc data ROI-1 & ADC data stop\\
156\hline
1570x8E98 & 0x4242 & packet CRC-fake \\
1580x8E99 & 0x04FE & End Flag \\
159\hline
160\end {tabular}
161
162\caption{word order of event in Data RAM. 16bit addressing. As of 08.02.2011}
163\label{16bitRAM}
164\end{table}
165
166As one can see, the way of reading out of the RAM changes, from header to data section and again when data section ends.
167When reading the header, the addresses are increased by 1 usually and only jumps, when empty words show up in the RAM.
168One can picture it as if reading the words in each line from right to left, sometimes jumping over zeroes.
169When reading out the data sections, the words are read out as columns, i.e. addresses are incremented by 4 usually. One column is read until the data of a channel is completely read out, then either the next DRS chip is read out, which means to decrease the address or, if one group of channels was finished, the next group starts, which means address is increased by 1 only.
170The footer consisting of the CRC-16 (when finally implemented) and the end package flag is again read out by reading each word from right to left.
171
172
173\newpage
174\section{NEW data order}
175
176Some data is going to be added to the Event header changing the data order like this.
177
178\begin{table}[htbp]
179\begin{tabular}{||l||l|l|l|l||}
180\hline
181address & word 3 & word 2 & word 1 & word 0 \\
182\hline
1830x2000 & 12bit status + PLLLOCK & version & length & 0xFB01 \\
1840x2001 & 0xT1T0 & 0xT3T2 & 0xT5T4 & 0x00T6 \\
1850x2002 & REFCLK cntr 10 & REFCLK cntr 32 & EVT cntr 10 & EVT cntr 32 \\
1860x2003 & TRG-GEN-DIV & TRG-GEN-No & DCM-PS-STATUS & 0x0(cid)8(bid) \\
1870x2004 & more status & more status & time10 & time32 \\
1880x2005 & Temp 3 & Temp 2 & Temp 1 & Temp 0 \\
1890x2006 & DAC 3 & DAC 2 & DAC 1 & DAC 0 \\
1900x2007 & DAC 7 & DAC 6 & DAC 5 & DAC 4 \\
191\hline
1920x2007 & 0x0030 & 0x0020 & 0x0010 & 0x0000 \\
1930x2008 & trg pos 3 & trg pos 2 & trg pos 1 & trg pos 0 \\
1940x2009 & ROI 3 & ROI 2 & ROI 1 & ROI 0 \\
1950x200A & data adc3 & data adc2 & data adc1 & data adc0 \\
1960x20.. &&&& ... \\
1970x206D & data adc3 & data adc2 & data adc1 & data adc0 \\
198\hline
1990x20.. &&&& ... \\
200\hline
2010x233F & 0x0039 & 0x0029 & 0x0019 & 0x0009 \\
2020x2340 & trg pos 3 & trg pos 2 & trg pos 1 & trg pos 0 \\
2030x2341 & ROI 3 & ROI 2 & ROI 1 & ROI 0 \\
2040x2342 & data adc3 & data adc2 & data adc1 & data adc0 \\
2050x23.. &&&& ... \\
2060x23A5 & data adc3 & data adc2 & data adc1 & data adc0 \\
207\hline
2080x23A6 & 0x0000 & 0x0000 & 0x04FE & 0x4242\\
209\hline
210\end {tabular}
211
212\caption{NEW word order of event in Data RAM. 64bit addressing. As of > 08.02.2011}
213\label{new64bitRAM}
214\end{table}
215
216\newpage
217Which in turn changes the the word order in the 16bit address space like this
218\begin{table}[htbp]
219\begin{tabular}{|l|l|l|}
220\hline
221address & 16bit word & description \\
222\hline
2230x8000 & 0xFB01 & Start Flag - fix value \\
2240x8001 & 0xllll & package length in 16bit words \\
2250x8002 & 0xvvvv & version - deduced from SVN revision number \\
2260x8003 & 0xsssP & 12 bits for status - TBD - 4 bit showing PLLLCK status \\ \hdashline
2270x8004 & 0x00T6 & FTM trigger ID byte 6 : CRC \\
2280x8005 & 0xT5T4 & ... bytes 5 and 4 : Type 2 and Type 1\\
2290x8006 & 0xT3T2 & ... bytes 3 and 2 : TRG number high word \\
2300x8007 & 0xT1T0 & ... bytes 1 and 0 : TRG number low word \\ \hdashline
2310x8008 & 0xev32 & FAD event counter high word \\
2320x8009 & 0xev10 & FAD event counter low word -- should be equal to T3T2T1T0\\
2330x800A & 0xRC32 & REFCLK counter high word \\
2340x800B & 0xRC10 & REFCLK counter low word \\ \hdashline
2350x800C & 0x0(cid)8(bid) & Board ID \\
2360x800D & DCM-PS & status of ADC clock phase shifter , value and locked-bit\\
2370x800E & TRG-GEN-No& Number of Triggers to generare, when 'trigger continous' issued \\
2380x800F & TRG-GEN-DIV& continous trigger generator clock prescaler \\ \hdashline
2390x8010 & timer32 & timer high word \\
2400x8011 & timer10 & timer low word \\
2410x8012 & more status1 & reserved for status info; high word \\
2420x8013 & more status0 & reserved for status info; low word \\ \hdashline
2430x8014 & 0xttt0 & temperature sensor next to DRS 0 \\
2440x8015 & 0xttt1 & temperature sensor next to DRS 1 \\
2450x8016 & 0xttt2 & temperature sensor next to DRS 2 \\
2460x8017 & 0xttt3 & temperature sensor next to DRS 3 \\ \hdashline
2470x8018 & 0xdac0 & setting of DAC channel A \\
2480x8019 & 0xdac1 & setting of DAC channel B \\
2490x801A & 0xdac2 & setting of DAC channel C \\
2500x801B & 0xdac3 & setting of DAC channel D \\ \hdashline
2510x801C & 0xdac4 & setting of DAC channel E \\
2520x801D & 0xdac5 & setting of DAC channel F \\
2530x801E & 0xdac6 & setting of DAC channel G \\
2540x801F & 0xdac7 & setting of DAC channel H \\
255\hline
2560x8... & ... & ...data ... \\
257\hline
258
259\end {tabular}
260\caption{word order of event in Data RAM. 16bit addressing. As of > 08.02.2011}
261\label{16bitRAM}
262\end{table}
263
264This new order has several advantages apart from the additional information included.
265All data may be treated as 64bit aligned. And the data readout process does not have to jump over word during data sending.
266
267\newpage
268\subsection{new {\tt FADFormat.h}}
269
270\begin{verbatim}
271typedef struct {
272 // ------------------------------
273 unsigned short start_package_flag;
274 unsigned short package_length;
275 unsigned short version_no;
276 unsinged short PLLLCK;
277 // ------------------------------
278 unsigned short trigger_crc;
279 unsigned short tigger_type;
280 unsigned long trigger_id;
281 // ------------------------------
282 unsigned long fad_evt_counter;
283 unsigned long REFCLK_frequency;
284 // ------------------------------
285 unsigned short board_id;
286 unsigned short adc_clock_phase_shift;
287 unsgined short number_of_triggers_to_generate;
288 unsigned short trigger_generator_prescaler;
289 // ------------------------------
290 unsigned long time;
291 unsigned long fad_status;
292 // ------------------------------
293 short drs_temperature[NTemp];
294 // ------------------------------
295 unsigned short dac[NDAC];
296 // ------------------------------
297} __attribute__((__packed__)) PEVNT_HEADER;
298
299typedef struct {
300 unsigned short id;
301 unsigned short start_cell;
302 unsigned short roi;
303 unsigned short adc_data[];
304} __attribute__((__packed__)) PCHANNEL;
305
306typedef struct {
307 unsigned short package_crc;
308 unsigned short end_package_flag;
309} __attribute__((__packed__)) PEVNT_FOOTER;
310\end{verbatim}
311
312
313\end{document}
Note: See TracBrowser for help on using the repository browser.