mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-04-16 03:21:04 +02:00
Introduce a new version of the Keystone-II "ddr" command for testing the inline ECC support in the DDRSS bridge available on K3 devices. The ECC hardware support in K3's DDRSS and the test method differ substantially from what we support in the K2 variant of the command. This K3 DDRSS command currently supports only single controller testing. The ECC error injection procedure follows these steps: 1) Flush and disable the data cache. 2) Disable the protected ECC Rx range. 3) Flip a bit in the address. 4) Restore the range to original. 5) Read the modified value (corrected). 6) Re-enable the data cache. This will cause the 1-bit ECC error count to increase while the read will return the corrected value. The K3 version of the command extends the syntax for the "ecc_err" argument by also introducing an argument for range which specifies which range (0, 1, 2) the address is located in. Multi-bit ECC errors are uncorrectable and will lead to a synchronous abort. Signed-off-by: Georgi Vlaev <g-vlaev@ti.com> Signed-off-by: Santhosh Kumar K <s-k6@ti.com> [n-francis@ti.com: Add J7 and multiple-region support, simplify logic] Signed-off-by: Neha Malcom Francis <n-francis@ti.com> Reviewed-by: Udit Kumar <u-kumar1@ti.com>
28 lines
811 B
Plaintext
28 lines
811 B
Plaintext
menu "TI specific command line interface"
|
|
|
|
config CMD_DDR3
|
|
bool "command for verifying DDR features"
|
|
depends on ARCH_KEYSTONE || DRA7XX
|
|
help
|
|
Support for testing ddr3 on TI platforms. This command
|
|
supports memory verification, memory comapre and ecc
|
|
verification if supported.
|
|
|
|
config CMD_DDR4
|
|
bool "command for verifying DDRSS Inline ECC features"
|
|
depends on ARCH_K3
|
|
help
|
|
Support for testing DDRSS on TI platforms. This command supports
|
|
memory verification, memory compare and inline ECC verification
|
|
if supported.
|
|
|
|
config CMD_PD
|
|
bool "command for verifying power domains"
|
|
depends on TI_POWER_DOMAIN
|
|
help
|
|
Debug command for K3 power domains. For this to work, the
|
|
K3 power domain driver must be enabled for the u-boot; by
|
|
default it is only enabled for SPL.
|
|
|
|
endmenu
|