READER¶
DMA DRAM reader.
Allows to check DRAM contents against a predefined pattern using DMA.
Pattern¶
Provides access to RAM to store access pattern: mem_addr and mem_data. The pattern address space can be limited using the data_mask.
For example, having mem_adr filled with [ 0x04, 0x02, 0x03, … ] and mem_data filled with [ 0xff, 0xaa, 0x55, … ] and setting data_mask = 0b01, the pattern [(address, data), …] written will be: [(0x04, 0xff), (0x02, 0xaa), (0x04, 0xff), …] (wraps due to masking).
DRAM memory range that is being accessed can be configured using mem_mask.
To use this module, make sure that ready is 1, then write the desired number of transfers to count. Writing to the start CSR will initialize the operation. When the operation is ongoing ready will be 0.
Reading errors¶
This module allows to check the locations of errors in the memory. It scans the configured memory area and compares the values read to the predefined pattern. If skip_fifo is 0, this module will stop after each error encountered, so that it can be examined. Wait until the error_ready CSR is 1. Then use the CSRs error_offset, error_data and error_expected to examine the errors in the current transfer. To continue reading, write 1 to error_continue CSR. Setting skip_fifo to 1 will disable this behaviour entirely.
The final number of errors can be read from error_count. NOTE: This value represents the number of erroneous DMA transfers.
The current progress can be read from the done CSR.
Register Listing for READER¶
Register |
Address |
---|---|
READER_START¶
Address: 0xf0003000 + 0x0 = 0xf0003000
Write to the register starts the transfer (if ready=1)
READER_READY¶
Address: 0xf0003000 + 0x4 = 0xf0003004
Indicates that the transfer is not ongoing
READER_MODULO¶
Address: 0xf0003000 + 0x8 = 0xf0003008
When set use modulo to calculate DMA transfers address rather than bit masking
READER_COUNT¶
Address: 0xf0003000 + 0xc = 0xf000300c
Desired number of DMA transfers
READER_DONE¶
Address: 0xf0003000 + 0x10 = 0xf0003010
Number of completed DMA transfers
READER_MEM_MASK¶
Address: 0xf0003000 + 0x14 = 0xf0003014
DRAM address mask for DMA transfers
READER_DATA_MASK¶
Address: 0xf0003000 + 0x18 = 0xf0003018
Pattern memory address mask
READER_DATA_DIV¶
Address: 0xf0003000 + 0x1c = 0xf000301c
Pattern memory address divisior-1
READER_INVERTER_DIVISOR_MASK¶
Address: 0xf0003000 + 0x20 = 0xf0003020
Divisor mask for selecting rows for which pattern data gets inverted
READER_INVERTER_SELECTION_MASK¶
Address: 0xf0003000 + 0x24 = 0xf0003024
Selection mask for selecting rows for which pattern data gets inverted
READER_ERROR_COUNT¶
Address: 0xf0003000 + 0x28 = 0xf0003028
Number of errors detected
READER_SKIP_FIFO¶
Address: 0xf0003000 + 0x2c = 0xf000302c
Skip waiting for user to read the errors FIFO
READER_ERROR_OFFSET¶
Address: 0xf0003000 + 0x30 = 0xf0003030
Current offset of the error
READER_ERROR_DATA1¶
Address: 0xf0003000 + 0x34 = 0xf0003034
Bits 32-63 of READER_ERROR_DATA. Erroneous value read from DRAM memory
READER_ERROR_DATA0¶
Address: 0xf0003000 + 0x38 = 0xf0003038
Bits 0-31 of READER_ERROR_DATA.
READER_ERROR_EXPECTED1¶
Address: 0xf0003000 + 0x3c = 0xf000303c
Bits 32-63 of READER_ERROR_EXPECTED. Value expected to be read from DRAM memory
READER_ERROR_EXPECTED0¶
Address: 0xf0003000 + 0x40 = 0xf0003040
Bits 0-31 of READER_ERROR_EXPECTED.
READER_ERROR_READY¶
Address: 0xf0003000 + 0x44 = 0xf0003044
Error detected and ready to read
READER_ERROR_CONTINUE¶
Address: 0xf0003000 + 0x48 = 0xf0003048
Continue reading until the next error