\newcommand{\spectable} { \begin{table}[h] \centering \begin{threeparttable} \caption{Recommended Operating Conditions} \begin{tabularx}{0.85\textwidth}{l | c c c | c | X} \thickhline \textbf{Parameter} & \textbf{Min.} & \textbf{Typ.} & \textbf{Max.} & \textbf{Unit} & \textbf{Conditions} \\ \hline Clock input & & & & &\\ \hspace{3mm} Input frequency & & 125 & & MHz & Si5324 synthesizer bypassed \\ \cline{2-6} % 100R termination & 100/350/600 mV differential input after the transformer. & \multicolumn{3} {c|}{10/80/100/125} & MHz & RTIO clock synthesized from input \\ \cline{2-6} \hspace{3mm} Power & -9 & 1.5 & 5.5 & dBm & \\ \hline Power supply rating & \multicolumn{4}{c|}{12V, 5A} & \\ \thickhline \end{tabularx} \end{threeparttable} \end{table} Power is to be supplied either through the barrel connector in the front panel (size 5.5 mm OD, 2.5 mm ID) or the Molex connector at the back of the card (compatible with e.g. Sinara 1106 EEM AC Power Module). It is passed on to daughtercards through the EEM connections. Locking barrel connectors are supported. } \newcommand{\artiqsection} { \section{Firmware/ARTIQ} ARTIQ is open-source and can be found in the repository \url{https://github.com/m-labs/artiq}. Orders of Sinara hardware are normally preflashed with suitable firmware and gateware binaries. Long-term support for ARTIQ systems can also be purchased, including updated binaries through AFWS (the ARTIQ Firmware Service). } \newcommand{\noteondrtio}[1]{ \subsection{Note on distributed RTIO (DRTIO)} DRTIO is the time and data transfer system which allows ARTIQ RTIO channels to be distributed among several core device carrier boards, synchronized and controlled by a central master device. The system itself is described in more detail in the ARTIQ documentation\footnote{\label{manual-drtio}\url{https://m-labs.hk/artiq/manual/drtio.html}}. Within ARTIQ, core devices, including #1, can take one of three roles: \begin{enumerate}%[topsep=2pt, itemsep=2pt] \item \textbf{Master} \\ A DRTIO system must contain one DRTIO master. It controls its own local RTIO channels and the downstream DRTIO satellite(s). It requires a direct network connection to the host machine. It may make downstream connections to satellites. \item \textbf{Satellite} \\ Other core devices in a DRTIO system are DRTIO satellites. They require an upstream connection to one other core device, master or satellite, through which communications are carried to the master. They may make further downstream connections to other satellites. They may control their local RTIO channels directly through subkernels or simply pass on communications from the master. \item \textbf{Standalone}\\ When run in a non-distributed ARTIQ configuration, with a single central core device but without satellites, that core device is known as standalone. \end{enumerate} } \newcommand{\clockingsection}[2]{ \section{Clock Routing} \subsection{Standalone/Master} The RTIO clock is typically synthesized by the Si5324 clock multiplier and distributed by the ADCLK948 clock fanout buffer to both the #2 and the MMCX connectors. Alternatively, an external reference can be supplied through the front panel SMA connector. It is then buffered in the #2 and sent to the Si5324 for clock synthesis. #1 supports a set of RTIO clock options: \begin{table}[H] \centering \begin{tabular}{|c|c|c|} \hline RTIO frequency & Configuration & Clock generation \\ \hline 100 MHz & \texttt{int\char`_100} & internal crystal oscillator using PLL, 100 MHz output \\ \hline \multirow{5}{*}{125 MHz} & \texttt{int\char`_125} & internal crystal oscillator using PLL, 125 MHz output (default) \\ \cline{2-3} & \texttt{ext0\char`_synth0\char`_10to125} & external 10 MHz reference using PLL, 125 MHz output \\ \cline{2-3} & \texttt{ext0\char`_synth0\char`_80to125} & external 80 MHz reference using PLL, 125 MHz output \\ \cline{2-3} & \texttt{ext0\char`_synth0\char`_100to125} & external 100 MHz reference using PLL, 125 MHz output \\ \cline{2-3} & \texttt{ext0\char`_synth0\char`_125to125} & external 125 MHz reference using PLL, 125 MHz output \\ \hline \end{tabular} \end{table} The clock synthesizer may also be bypassed, using the \texttt{ext0\char`_bypass} option, which will accept a RTIO clock directly supplied to the SMA connector. The resulting signal is then routed to both the RTIO system and downstream satellites. Clocking options in a running system should be configured by setting the value of the \texttt{rtio\char`_clock} key to the desired configuration through the ARTIQ \texttt{artiq\char`_coremgmt} command. For example, a RTIO frequency of 125MHz will be synthesized from an external 10 MHz signal after issuing the following command: \begin{center} \texttt{artiq\_coremgmt config write -s rtio\_clock ext0\_synth0\_10to125} \end{center} and rebooting. \subsection{Satellite} The RTIO clock is recovered from the SFP transceiver connected to the upstream device. The resulting signal is then cleaned up by the Si5324 and routed to both the RTIO system and downstream satellites. \subsection{WRPLL} #1 can be configured to use WRPLL, a clock recovery method making use of White Rabbit's DDMTD (Digital Dual Mixer Time Difference) and the card's Si549 oscillators, both to lock the main RTIO clock and to lock satellite clocks to master. } \newcommand{\coresysdesc}{ % again including the minted JSON snippet through a macro isn't practical where the \texttt{peripherals} list contains the corresponding entries for peripherals (daughtercards) in use. For all accepted keys and values, see the JSON schema \texttt{coredevice\_generic.schema.json} in the ARTIQ repository.\footnote{\url{https://github.com/m-labs/artiq/blob/release-8/artiq/coredevice/coredevice_generic.schema.json}}. } \newcommand{\coredevicecode}[1] { \codesection{#1} \subsection{Direct Memory Access (DMA)} Instead of directly emitting RTIO events, sequences of RTIO events can be recorded in advance and stored in the local SDRAM. The event sequence can then be replayed at a specified timestamp. This is of special advantage in cases where RTIO events are too closely placed to be generated as they are executed, as events can be replayed at a higher speed than the on-FPGA CPU alone is capable of. The following example records an LED event sequence and replays it twice consecutively using \texttt{CoreDMA}. When run, the LED should blink twice. \inputcolorboxminted{firstline=10,lastline=29}{examples/dma.py} Stored waveforms can be referenced and replayed in different kernels, but cannot be retrieved and must be regenerated if the core device is rebooted. \subsection{Dataset manipulation with core device cache} Experiments may require values computed or found in previously executed kernels. To avoid invoking an RPC or sacrificing the pre-computation in \texttt{prepare()} stage, data can be stored in the core device cache. The following code snippets describe two experiments, in which the data from the first experiment is cached. The data is then retrieved and printed in hexadecimal form in the second experiment. \inputcolorboxminted{firstline=9,lastline=16}{examples/cache.py} \inputcolorboxminted{firstline=24,lastline=35}{examples/cache.py} Similar to DMA, cached data is no longer retrievable once the core device has been rebooted. }