# CMS Ph2 ACF (Acquisition & Control Framework)
### Contains:
- A middleware API layer, implemented in C++, which wraps the firmware calls and handshakes into abstracted functions
- A C++ object-based library describing the system components (CBCs, RD53, Hybrids, Boards) and their properties (values, status)
### A short guide to write the GoldenImage to the SD card
1. Connect the SD card
2. Download the golden firmware from https://indico.cern.ch/event/842824/attachments/1920624/3178547/sdgoldenimage.img
3. `sudo fdisk -l` - find the name of the SD card (for example, /dev/mmcblk0)
4. `sudo chmod 744 /dev/sd_card_name` - to be able to play with it
5. `./imgtool /dev/sd_card_name format Firmware` - to format the SD card
6. Go to the folder were you saved the sdgoldenimage.img file
7. `dd if=sdgoldenimage.img of=/dev/sd_card_name bs=512` - to write the image to the SD card
8. Once the previous command is done, you can list the SD card: `./imgtool /dev/sd_card_name list` - there should be a GoldenImage.bin, with 20MB block size
9. Insert the SD card into the FC7
Use the guide (https://gitlab.cern.ch/cms_tk_ph2/d19c-firmware/blob/master/doc/IPAddress_Tutorial.md) to find the MAC address of the FC7 (Wireshark option) and to set the proper IP
More informations can be found at https://indico.cern.ch/event/842824/attachments/1920624/3177632/PreparingFC7.pdf
## Middleware for the Inner-Tracker (IT) system
```diff
+ Last change made to this section: 14/12/2020
```
**Suggested software and firmware versions:**
- Software git branch / tag : `master` / `IT-v3.9.9`
- Firmware tag: `3.4`
- Mattermost forum: `cms-it-daq` (https://mattermost.web.cern.ch/cms-it-daq/)
**FC7 setup:**
1. Install `wireshark` in order to figure out which is the MAC address of your FC7 board (`sudo yum install wireshark`, then run `sudo tshark -i ethernet_card`, where `ethernet_card` is the name of the ethernet card of your PC to which the FC7 is connected to)
2. In `/etc/ethers` put `mac_address fc7.board.1` and in `/etc/hosts` put `192.168.1.80 fc7.board.1`
3. Restart the network: `sudo /etc/init.d/network restart`
4. Install the rarpd daemon (version for CENTOS6 should work just fine even for CENTOS7): `sudo yum install rarp_file_name.rpm` from https://centos.pkgs.org/6/epel-x86_64/rarpd-ss981107-42.el6.x86_64.rpm.html
5. Start the rarpd daemon: `sudo systemctl start rarpd` or `rarp -e -A` (to start rarpd automatically after bootstrap: `sudo systemctl enable rarpd`)
More details on the hardware needed to setup the system can be bound here: https://espace.cern.ch/Tracker-Upgrade/DAQ/SitePages/Home.aspx
**Firmware setup:**
1. Check whether the DIP switches on FC7 board are setup for the use of a microSD card (`out-in-in-in-out-in-in-in`)
2. Insert a microSD card in the PC and run `/sbin/fdisk -l` to understand to which dev it's attached to (`/dev/sd_card_name`)
3. Upload a golden firmware* on the microSD card (read FC7 manual or run `dd if=sdgoldenimage.img of=/dev/sd_card_name bs=512`)
4. Download the proper IT firmware version from https://gitlab.cern.ch/cmstkph2-IT/d19c-firmware/-/releases
5. Plug the microSD card in the FC7
6. From Ph2_ACF use the command `fpgaconfig` to upload the proper IT firmware (see instructions: `IT-DAQ setup and run` before running this command)
*A golden firmware is any stable firmware either from IT or OT, and it's needed just to initialize the IPbus communication at bootstrap (in order to create and image of the microSD card you can use the command: `dd if=/dev/sd_card_name conv=sync,noerror bs=128K | gzip -c > sdgoldenimage.img.gz`)
A golden firmware can be downloaded from here: https://cernbox.cern.ch/index.php/s/5tUCio08PEfTf0a
A detailed manual about the firmware can be found here: https://gitlab.cern.ch/cmstkph2-IT/d19c-firmware/blob/master/doc/IT-uDTC_fw_manual_v1.0.pdf
**IT-DAQ setup and run:**
1. `sudo yum install pugixml-devel` (if necesary run `sudo yum install epel-release` before point 1.)
2. Install: `boost` by running `sudo yum install boost-devel`, `CERN ROOT` from https://root.cern.ch, and `IPbus` from http://ipbus.web.cern.ch/ipbus (either using `sudo yum` or from source)
3. Checkout the DAQ code from git: `git clone https://gitlab.cern.ch/cmsinnertracker/Ph2_ACF.git`
4. `cd Ph2_ACF; source setup.sh; mkdir myBuild; cd myBuild; cmake ..; make -j4; cd ..`
5. `mkdir choose_a_name`
6. `cp settings/RD53Files/CMSIT_RD53.txt choose_a_name`
7. `cp settings/CMSIT.xml choose_a_name`
8. `cd choose_a_name`
9. Edit the file `CMSIT.xml` in case you want to change some parameters needed for the calibrations or for configuring the chip
10. Run the command: `CMSITminiDAQ -f CMSIT.xml -r` to reset the FC7 (just once)
11. Run the command: `CMSITminiDAQ -f CMSIT.xml -c name_of_the_calibration` (or `CMSITminiDAQ --help` for help)
**N.B.:** a skeleton/template file to build your own IT mini DAQ can be found in `src/templateCMSITminiDAQ.cc`
**Basic list of commands for the `fpgaconfig` program (run from the `choose_a_name` directory):**
- Run the command: `fpgaconfig -c CMSIT.xml -l` to check which firmware is on the microSD card
- Run the command: `fpgaconfig -c CMSIT.xml -f firmware_file_name_on_the_PC -i firmware_file_name_on_the_microSD` to upload a new firmware to the microSD card
- Run the command: `fpgaconfig -c CMSIT.xml -i firmware_file_name_on_the_microSD` to load a new firmware from the microSD card to the FPGA
- Run the command: `fpgaconfig --help` for help
The program `CMSITminiDAQ` is the portal for all calibrations and for data taking.
Through `CMSITminiDAQ`, and with the right command line option, you can run the following scans/ calibrations/ operation mode:
```
1. Latency scan
2. PixelAlive
3. Noise scan
4. SCurve scan
5. Gain scan
6. Threshold equalization
7. Gain optimization
8. Threshold minimization
9. Threshold adjustment
10. Injection delay scan
11. Clock delay scan
12. Physics
```
Here you can find a detailed description of the various calibrations: https://cernbox.cern.ch/index.php/s/O07UiVaX3wKiZ78
It might be useful to create one `CMSIT.xml` file for each "set" of calibrations. In the following it's reported the suggested sequence of calibrations, implemented in bash shell script:
```
#!/bin/bash
if [ $# -ne 1 ]
then
echo "You should provide one, and only one, argument [step1, step2, step3, step4, step5, help]"
elif [ $1 == "step1" ]
then
CMSITminiDAQ -f CMSIT_noise.xml -c noise # Masks noisy pixels
echo "noise" >> calibDone.txt
CMSITminiDAQ -f CMSIT_scurve.xml -c pixelalive # Masks dead pixels
echo "pixelalive" >> calibDone.txt
CMSITminiDAQ -f CMSIT_noise.xml -c thrmin
echo "thrmin" >> calibDone.txt
echo "Choose whether to accept new threshold (i.e. copy it into the xml file(s))"
read -p "Press any key to continue... " -n1 -s
echo
elif [ $1 == "step2" ]
then
CMSITminiDAQ -f CMSIT_scurve.xml -c threqu
echo "scurve" >> calibDone.txt
echo "threqu" >> calibDone.txt
CMSITminiDAQ -f CMSIT_scurve.xml -c scurve
echo "scurve" >> calibDone.txt
CMSITminiDAQ -f CMSIT_noise.xml -c noise # Masks noisy pixels @ new threshold
echo "noise" >> calibDone.txt
CMSITminiDAQ -f CMSIT_noise.xml -c thrmin
echo "thrmin" >> calibDone.txt
echo "Choose whether to accept new threshold (i.e. copy it into the xml file(s))"
read -p "Press any key to continue... " -n1 -s
echo
elif [ $1 == "step3" ]
then
CMSITminiDAQ -f CMSIT_scurve.xml -c scurve
echo "scurve" >> calibDone.txt
CMSITminiDAQ -f CMSIT_gain.xml -c gain
echo "gain" >> calibDone.txt
CMSITminiDAQ -f CMSIT_gain.xml -c gainopt
echo "gainopt" >> calibDone.txt
echo "Choose whether to accept new Krummenacher current (i.e. copy it into the xml file(s))"
echo "- Set nTRIGxEvent = 1 and DoFast = 1 in the xml file(s)"
echo "- Set VCAL_HIGH to MIP value in the xml file(s)"
read -p "Press any key to continue... " -n1 -s
echo
elif [ $1 == "step4" ]
then
CMSITminiDAQ -f CMSIT_scurve.xml -c injdelay
echo "latency" >> calibDone.txt
echo "injdelay" >> calibDone.txt
echo "Choose whether to accept new LATENCY_CONFIG and INJECTION_SELECT (i.e. copy them into the xml file(s))"
echo "- Set DoFast to whatever value you prefer in the xml files(s)"
read -p "Press any key to continue... " -n1 -s
echo
elif [ $1 == "step5" ]
then
CMSITminiDAQ -f CMSIT_scurve.xml -c scurve
echo "scurve" >> calibDone.txt
elif [ $1 == "help" ]
then
echo "Available options are:"
echo "- step1 [noise + pixelalive + thrmin]"
echo "- step2 [(pixelalive)threqu + scurve + noise + thrmin]"
echo "- step3 [scurve + gain + gainopt]"
echo "- step4 [(latency)injdelay]"
echo "- step5 [scurve]"
else
echo "Argument not recognized: $1"
fi
```
**N.B.:** steps **4** and **5** are meant to measure the so called "in-time threshold", to be compared with the threshold measured at step **3**, which is the so called "absoulte threshold"
### ~=-=~ End of Inner-Tracker section ~=-=~
### Setup
Firmware for the FC7 can be found in /firmware. Since the "old" FMC flavour is deprecated, only new FMCs (both connectors on the same side) are supported.
You'll need Xilinx Vivado and a Xilinx Platform Cable USB II (http://uk.farnell.com/xilinx/hw-usb-ii-g/platform-cable-configuration-prog/dp/1649384)
For more information on the firmware, please check the doc directory of https://gitlab.cern.ch/cms_tk_ph2/d19c-firmware
### Gitlab CI setup for Developers (required to submit merge requests!!!)
1. Add predefined variables
i. from your fork go to `Ph2_ACF > settings > CI/CD`
ii. expand the `Variables` section
iii. click the `Add variable` button
- add key: USER_NAME and value:
iv. click the `Add variable` button
- select the flag `Mask variable`
- add key: USER_PASS and value:
e.g encode "thisword": printf "thisword" | base64
2. Enable shared Runners (if not enabled)
i. from `settings > CI/CD` expand the `Runners` section
ii. click the `Allow shared Runners` button
3. Enable specific Runners (if not enabled)
i. from `settings > CI/CD` expand the `Runners` section
ii. in the section `Available specific runners` click button `Enable for this project` for the Ph2_ACF runner with the `FNAL`
### clang-format (required to submit merge requests!!!)
1. install 7.0 llvm toolset:
$> yum install llvm-toolset-7.0
2. if you already sourced the environment, you should be able to run the command to format the Ph2_ACF (to be done before each merge request!!!):
$> formatAll
### Setup on CC7 (scroll down for instructions on setting up on SLC6)
1. Check which version of gcc is installed on your CC7, it should be > 4.8 (could be the default on CC7):
$> gcc --version
2. On CC7 you also need to install boost v1.53 headers (default on this system) and pugixml as they don't ship with uHAL any more:
$> sudo yum install boost-devel
$> sudo yum install pugixml-devel
2. Install uHAL. SW tested with uHAL version up to 2.7.1
Follow instructions from
https://ipbus.web.cern.ch/ipbus/doc/user/html/software/install/yum.html
3. Install CERN ROOT
$> sudo yum install root
$> sudo yum install root-net-http root-net-httpsniff root-graf3d-gl root-physics root-montecarlo-eg root-graf3d-eve root-geom libusb-devel xorg-x11-xauth.x86_64
5. Install CMAKE > 2.8:
$> sudo yum install cmake
### Setup on SLC6
1. Install a gcc compiler version > 4.8 - on scientific linux you can obtain this by installing devtoolset-2 or devtoolset-2.1:
$> sudo wget -O /etc/yum.repos.d/slc6-devtoolset.repo http://linuxsoft.cern.ch/cern/devtoolset/slc6-devtoolset.repo
$> sudo yum install devtoolset-2
$> . /opt/rh/devtoolset-2/enable # add this to your .bashrc
$> sudo ln -s /opt/rh/devtoolset-2/root/usr/bin/* /usr/local/bin/
$> hash -r
This should give you a more recent gcc (e.g. gcc 4.8.2)
$> gcc --version
Alternatively you can use a gcc version > 4.8 from AFS
2. Install uHAL. The uHAL version should be 2.5 or lower. Version 2.6 does not work with the middleware at the moment!
First create a new ipbus repo for yum:
$> sudo cat > /etc/yum.repos.d/ipbus-sw.repo << EOF
$> [ipbus-sw-base]
$> name=IPbus software repository
$> baseurl=http://www.cern.ch/ipbus/sw/release/2.5/centos7_x86_64/base/RPMS
$> enabled=1
$> gpgcheck=0
$> [ipbus-sw-updates]
$> name=IPbus software repository updates
$> baseurl=http://www.cern.ch/ipbus/sw/release/2.5/centos7_x86_64/updates/RPMS
$> enabled=1
$> gpgcheck=0
Then install uHAL as follows:
$> sudo yum clean all
$> sudo yum groupinstall uhal
3. Install CERN ROOT version 5.34.32 [Instructions](http://root.cern.ch/drupal/content/installing-root-source) - make sure to use "fixed location installation" when building yourself. If root is installed on a CERN computer of virtual machine you can use:
$> sudo yum install root
$> sudo yum install root-net-http root-graf3d-gl root-physics root-montecarlo-eg root-graf3d-eve root-geom libusb-devel xorg-x11-xauth.x86_64
4. Install CMAKE > 2.8. On SLC6 the default is cmake 2.8
$> sudo yum install cmake
### The Ph2_ACF software
Follow these instructions to install and compile the libraries:
(provided you installed the latest version of gcc, µHal, mentioned above).
1. Clone the GitHub repo and run cmake
$> git clone https://:@gitlab.cern.ch:8443/fravera/Ph2_ACF.git
$> cd Ph2_ACF
$> source setup.sh
$> cd build
$> cmake ..
2. Do a `make -jN` in the build/ directory or alternatively do `make -C build/ -jN` in the Ph2_ACF root directory.
3. Don't forget to `source setup.sh` to set all the environment variables correctly.
4. Launch
$> systemtest --help
command if you want to test the parsing of the HWDescription.xml file.
5. Launch
$> datatest --help
command if you want to test if you can correctly read data
6. Launch
$> calibrate --help
to calibrate a hybrid,
$> hybridtest --help
to test a hybird's I2C registers and input channel connectivity
$> cmtest --help
to run the CM noise study
$> pulseshape --help
to measure the analog pulseshape of the cbc
$> configure --help
to apply a configuration to the CBCs
7. Launch
$> commission --help
to do latency & threshold scans
8. Launch
$> fpgaconfig --help
to upload a new FW image to the GLIB
9. Launch
$> miniDAQ --help
to save binary data from the GLIB to file
10. Launch
$> miniDQM --help
to run the DQM code from the June '15 beamtest
### Nota Bene
When you write a register in the Glib or the Cbc, the corresponding map of the HWDescription object in memory is also updated, so that you always have an exact replica of the HW Status in the memory.
Register values are:
- 8-bit unsigend integers for the CBCs that should be edited in hex notation, i.e. '0xFF'
- 32-bit unsigned integers for the GLIB: decimal values
For debugging purpose, you can activate DEV_FLAG in the sources or in the Makefile and also activate the uHal log in RegManager.cc.
### External clock and trigger
Please see the D19C FW [documentation](https://gitlab.cern.ch/cms_tk_ph2/d19c-firmware/blob/master/doc/Middleware_Short_Guide.md) for instructions on how to use external clock and trigger with the various FMCs (DIO5 and CBC3 FMC)
### Example HWDescription.xml file with DIO5 support
```xml
0x22
250
3
0
0
0
3
1
1
0
0
50
200
400
1
1
1
50
200
10
1
1
0
4
99
1
0
0
0
0
194
0
1
0
0
0
1
50
1
0
0
0
1
50
0
1
50
2
0
0x78
0x50
50
0x00
0
1
0x78
2
0
```
### Known issues
uHAL exceptions and UDP timeouts when reading larger packet sizes from the GLIB board: this can happen for some users (cause not yet identified) but can be circumvented by changing the line
"ipbusudp-2.0://192.168.000.175:50001"
in the connections.xml file to
"chtcp-2.0://localhost:10203?target=192.168.000.175:50001"
and then launching the CACTUS control hub by the command:
`/opt/cactus/bin/controlhub_start`
This uses TCP protocol instead of UDP which accounts for packet loss but decreases the performance.
### Support, suggestions?
For any support/suggestions, mail to fabio.raveraSPAMNOT@cern.ch, mauro.dinardoSPAMNOT@cern.ch
### Firmware repository for OT tracker:
https://udtc-ot-firmware.web.cern.ch/