diff options
author | Tom Rini <trini@konsulko.com> | 2021-02-26 07:55:16 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-02-26 07:55:16 -0500 |
commit | 99bebbd5b2750fc128d8054213bdd6007dd6436c (patch) | |
tree | 0b074459411ad3db8c735a990fabf4e983254ac5 /drivers/ddr/marvell/a38x/ddr3_training_db.c | |
parent | d9bc92f5548e3325402e9d6c7bce3fb2de079b9b (diff) | |
parent | 2f0c18b1584129d8386f5a18390996f6bea78065 (diff) |
Merge https://gitlab.denx.de/u-boot/custodians/u-boot-marvell
- turris_mox: Enhancements, mostlly defconfig changes (Pali)
- pci-aardvark: Set Max Payload Size and Max Read Request Size
to 512 bytes (Pali)
- pci_mvebu: Minor cleanup and refactoring (Marek)
- Upgrade A38x DDR3 training to version 14.0.0 (Marek)
Diffstat (limited to 'drivers/ddr/marvell/a38x/ddr3_training_db.c')
-rw-r--r-- | drivers/ddr/marvell/a38x/ddr3_training_db.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/ddr/marvell/a38x/ddr3_training_db.c b/drivers/ddr/marvell/a38x/ddr3_training_db.c index b2f11a83996..6aa7b6069e8 100644 --- a/drivers/ddr/marvell/a38x/ddr3_training_db.c +++ b/drivers/ddr/marvell/a38x/ddr3_training_db.c @@ -833,6 +833,9 @@ u32 pattern_table_get_word(u32 dev_num, enum hws_pattern type, u8 index) pattern = pattern_table_get_isi_word16(index); break; default: + if (((int)type == 29) || ((int)type == 30)) + break; + printf("error: %s: unsupported pattern type [%d] found\n", __func__, (int)type); pattern = 0; |