diff options
author | Tom Rini <trini@konsulko.com> | 2023-05-07 09:44:27 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-05-07 09:44:27 -0400 |
commit | 1917a1a8a8bad28170cd464e5ea61ff0d738310b (patch) | |
tree | 2dab7a37f9e7274e7ecdc7cc6f3e6fd19e90c54b /include | |
parent | ae0772f333a7e76c4fb3771a77117b2f740d7c93 (diff) | |
parent | 0ec8ebef87d78529d1b4f3e7beaced0b9fbea629 (diff) | |
download | u-boot-1917a1a8a8bad28170cd464e5ea61ff0d738310b.tar.gz u-boot-1917a1a8a8bad28170cd464e5ea61ff0d738310b.tar.bz2 u-boot-1917a1a8a8bad28170cd464e5ea61ff0d738310b.zip |
Merge branch 'for-2023.07-2' of https://source.denx.de/u-boot/custodians/u-boot-mpc8xx
This pull request adds misc fixes for cssi boards and activates
CPM relocation in order to enable the use of SCC4 in
QMC (QUICC Multi-Channel) mode.
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/cmpc885.h | 1 | ||||
-rw-r--r-- | include/configs/mcr3000.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/include/configs/cmpc885.h b/include/configs/cmpc885.h index b76230e9a4..545365e112 100644 --- a/include/configs/cmpc885.h +++ b/include/configs/cmpc885.h @@ -9,6 +9,7 @@ /* Definitions for initial stack pointer and data area (in DPRAM) */ #define CFG_SYS_INIT_RAM_ADDR (CONFIG_SYS_IMMR + 0x2800) #define CFG_SYS_INIT_RAM_SIZE (0x2e00 - 0x2800) +#define CFG_SYS_INIT_SP (CONFIG_SYS_IMMR + 0x3c00) /* RAM configuration (note that CFG_SYS_SDRAM_BASE must be zero) */ #define CFG_SYS_SDRAM_BASE 0x00000000 diff --git a/include/configs/mcr3000.h b/include/configs/mcr3000.h index 6b16b050ff..a07761fdbb 100644 --- a/include/configs/mcr3000.h +++ b/include/configs/mcr3000.h @@ -14,6 +14,7 @@ /* Definitions for initial stack pointer and data area (in DPRAM) */ #define CFG_SYS_INIT_RAM_ADDR (CONFIG_SYS_IMMR + 0x2800) #define CFG_SYS_INIT_RAM_SIZE (0x2e00 - 0x2800) +#define CFG_SYS_INIT_SP (CONFIG_SYS_IMMR + 0x3c00) /* RAM configuration (note that CFG_SYS_SDRAM_BASE must be zero) */ #define CFG_SYS_SDRAM_BASE 0x00000000 |