diff options
author | Simon Goldschmidt <simon.k.r.goldschmidt@gmail.com> | 2019-07-10 22:09:14 +0200 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2019-07-21 12:45:01 +0200 |
commit | b94655a4b7c8ced797c7d759a62eb2b5ba3ddb94 (patch) | |
tree | 5d01e90584ada1b00ff8fd721427cd47d19b6bfd /include/configs/socfpga_stratix10_socdk.h | |
parent | 0de815356474912ef5bef9a69f0327a5a93bb2c2 (diff) |
arm: socfpga: fix 3 boards missing env var "socfpga_legacy_reset_compat"
This fixes 3 boards that don't use CONFIG_EXTRA_ENV_SETTINGS from
socfpga_common.h. They need to enable reset manager compatibility
mode unless all peripheral drivers in Linux support reset handling.
Fixes: commit 4b2e32efa4e7 ("arm: socfpga: gen5: deassert peripheral reset by default")
Signed-off-by: Simon Goldschmidt <simon.k.r.goldschmidt@gmail.com>
Reported-by: Wolfgang Grandegger <wg@aries-embedded.de>
Diffstat (limited to 'include/configs/socfpga_stratix10_socdk.h')
-rw-r--r-- | include/configs/socfpga_stratix10_socdk.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/configs/socfpga_stratix10_socdk.h b/include/configs/socfpga_stratix10_socdk.h index 8d2971c6e2..90ad8172e2 100644 --- a/include/configs/socfpga_stratix10_socdk.h +++ b/include/configs/socfpga_stratix10_socdk.h @@ -113,7 +113,8 @@ unsigned int cm_get_qspi_controller_clk_hz(void); "scriptaddr=0x02100000\0" \ "scriptfile=u-boot.scr\0" \ "fatscript=if fatload mmc 0:1 ${scriptaddr} ${scriptfile};" \ - "then source ${scriptaddr}; fi\0" + "then source ${scriptaddr}; fi\0" \ + "socfpga_legacy_reset_compat=1\0" /* * Generic Interrupt Controller Definitions |