diff options
author | Daniel Schwierzeck <daniel.schwierzeck@gmail.com> | 2016-02-14 18:52:57 +0100 |
---|---|---|
committer | Daniel Schwierzeck <daniel.schwierzeck@gmail.com> | 2016-11-30 16:07:17 +0100 |
commit | af3971f81ac0fc344461cf86af682ecf1ebe18a8 (patch) | |
tree | 4640b601c078899eeec23c22f66c043d09f8a2c1 /arch/mips/mach-ath79/Kconfig | |
parent | 6b29a395b62965eef6b5065d3a526a8588a92038 (diff) | |
download | u-boot-imx-af3971f81ac0fc344461cf86af682ecf1ebe18a8.zip u-boot-imx-af3971f81ac0fc344461cf86af682ecf1ebe18a8.tar.gz u-boot-imx-af3971f81ac0fc344461cf86af682ecf1ebe18a8.tar.bz2 |
MIPS: make inclusion of ROM exception vectors configurable
This adds a compile time option to include code for static
exception vectors. Static exception vectors are only needed,
when the U-Boot entry point is equal to the CPU reset exception
vector address. For instance this is the case when U-Boot is
used as ROM in Qemu or booted from parallel NOR flash. When
U-Boot is booted from RAM (e.g. loaded there by SPL), the
exception vectors need to be setup dynamically, which is done
in follow-up commits.
Signed-off-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
Diffstat (limited to 'arch/mips/mach-ath79/Kconfig')
-rw-r--r-- | arch/mips/mach-ath79/Kconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/mips/mach-ath79/Kconfig b/arch/mips/mach-ath79/Kconfig index 7d483aa..d982b0f 100644 --- a/arch/mips/mach-ath79/Kconfig +++ b/arch/mips/mach-ath79/Kconfig @@ -9,6 +9,7 @@ config SOC_AR933X select SUPPORTS_BIG_ENDIAN select SUPPORTS_CPU_MIPS32_R1 select SUPPORTS_CPU_MIPS32_R2 + select ROM_EXCEPTION_VECTORS select MIPS_TUNE_24KC help This supports QCA/Atheros ar933x family SOCs. @@ -27,6 +28,7 @@ config SOC_QCA953X select SUPPORTS_BIG_ENDIAN select SUPPORTS_CPU_MIPS32_R1 select SUPPORTS_CPU_MIPS32_R2 + select ROM_EXCEPTION_VECTORS select MIPS_TUNE_24KC help This supports QCA/Atheros qca953x family SOCs. |