In this lab, we extend the Lab 19 single-channel readout design into a multichannel setup by creating a sub-design that can be instantiated multiple times in the top-level schematic. This approach greatly simplifies maintenance and reuse of repeated channel logic.
1. Overview
- We create a sub-design called
core_block
that implements the processing chain for a single channel (trigger, baseline restore, QDC, etc.). - The top-level design then instantiates this
core_block
sub-design multiple times—one for each ADC channel. - We will route the outputs (DATAPACK, DV, etc.) from each channel into a Round Robin Arbiter (as in Lab 19), which in turn feeds a List block for data storage.
- Additional signals (like MONITOR) are fed into an Oscilloscope block for real-time visualization.
By turning the single-channel logic into a sub-design, we only build and maintain the logic once. Then, in the top-level design, we simply specify how many copies (channels) we need.
2. Creating the core_block
Sub-Design
2.1 New Sub-Design
- From the main project, click the “plus” button (
+
) to create a new page/sub-design. - Rename it to
core_block
.
Example Sub-Design Icon
2.2 Replicate the Single-Channel Logic
Inside core_block
:
- Import or recreate the single-channel chain from Lab 19. That typically includes:
- A Trigger LE Hyst block (or similar trigger).
- A Baseline Restorer block.
- A QDC (Charge-to-Digital Converter) block.
- Any needed constants or registers.
In Lab 19, these were directly in the main design. Now we move them into the sub-design.
Single-Channel Logic Example
3. Making the Sub-Design Ports
We replace the direct connections (e.g., from an Analog Pin) with ports that allow signals to be passed in and out of core_block
.
3.1 Input Ports
- DATA_IN (Array Port)
16-bit wide. Each channel in the top-level will have its own analog input. - THRESHOLD (Common Port)
16-bit wide. A single threshold value applies to all channels (if desired). - INT_SAMPLES (Common Port)
16-bit wide. Integration length for the QDC. - GAIN (Common Port)
16-bit wide. Gain factor. - ANALOG_OFFSET (Common Port)
16-bit wide. Offset or pedestal correction.
Defining Ports
When creating each port, you can specify:
- Number of Bits: e.g., 16 for the analog data, threshold, gain, etc.
- Multichannel Behaviour: Choose ARRAY for signals that differ for each channel, or COMMON for signals that are shared across all channels.
3.2 Output Ports
From the single-channel chain, we make the following outputs:
- DATAPACK (Array or single wide bus)
Typically 56 bits, combining integrated result, optional timestamp, channel ID, etc. - DV (Data Valid)
A 1-bit signal indicating valid data is present inDATAPACK
. - MONITOR (Analog or processed signal)
This is the input signal minus the baseline, often used for debug or display. - INT_MON (Integration Monitor)
A digital 1-bit signal that goes high during QDC integration. - TRIGGER (Trigger Active)
A digital 1-bit signal that goes high when the trigger is active.
Sub-Design Schematic Entries
4. Top-Level Design
After saving the core_block
design, double-click on the top page (or “Top”).
4.1 Placing the Sub-Design
- From the Toolbox, select Sub-design → Multichannel Sub-Design.
- Insert the
core_block
sub-design into your main schematic. - In the properties dialog, choose the number of channels. For example, 2.
A single “composite block” now appears in the main schematic, representing two identical channels. Each channel has its own DATA_IN port, while THRESHOLD, GAIN, etc. are shared.
Example: Two-Channel Sub-Design
4.2 Connecting Signals
- Analog Input
- If you have two ADC channels (A0, A1), connect each to the
DATA_IN
[0..1] ports of the sub-design.
- If you have two ADC channels (A0, A1), connect each to the
- Threshold, Dwell, Gain
- These are common parameters, so you only have one line or register for each, connected to the sub-design’s common port.
- DATAPACK / DV
- From the sub-design, each channel’s
DATAPACK
andDV
lines go into a Round Robin Arbiter to handle multichannel data readout.
- From the sub-design, each channel’s
- Arbiter
- The arbiter outputs a single DATA line and a DV line that get stored into a List block.
- List block
- Collects data from the arbiter in FIFO fashion. This is the same concept as Lab 19.
- Oscilloscope
- Connect any signals of interest (e.g.,
MONITOR
,TRIGGER
,INT_MON
) to scope channels so you can visualize them live.
- Connect any signals of interest (e.g.,
Top-Level Schematic Example
By replicating channels in the sub-design, you avoid copying/pasting the same logic for each channel. Instead, the sub-design is parameterized with ARRAY ports for per-channel signals and COMMON ports for shared configuration parameters.
5. Testing the Multichannel Design
- Generate or Synthesize your firmware project.
- Program the device with your new design.
- Configure the threshold, dwell, gain, etc., in the Resource Explorer table (or via register writes).
- Provide test signals to each ADC channel (A0, A1, etc.).
- Observe the waveforms on the Oscilloscope (monitoring
MONITOR
,TRIGGER
,INT_MON
, etc.). - Trigger the readout: data from both channels should appear in the List memory after passing through the Round Robin Arbiter.
At this point, you have a multichannel design that is functionally equivalent to the previous Lab 19 design but uses sub-design principles for clean, scalable architecture.
6. Readout data
Repeat the steps from Lab 19 to read out the data from the List block. You can use the same Resource Explorer and HxD tools to download and decode the data.
7. Conclusion
- We created a
core_block
sub-design that encapsulates one channel’s trigger, baseline restoration, and QDC functions. - We instantiated multiple copies of this sub-design in the top-level schematic, using ARRAY ports for per-channel inputs and COMMON ports for shared configuration.
- We used a Round Robin Arbiter to combine data from multiple channels into a single output stream.
- The approach is cleaner and more maintainable than manually duplicating each channel’s blocks.
This concludes Lab 20 on Multichannel Design using sub-design blocks. You can extend this technique to any number of channels, each referencing the same core logic.