diff options
author | Scott Wood <scottwood@freescale.com> | 2015-04-07 20:20:00 -0500 |
---|---|---|
committer | York Sun <yorksun@freescale.com> | 2015-04-20 10:15:29 -0700 |
commit | 96d2bb952bbf2e5a14f6ad668312cbce3cc4485a (patch) | |
tree | 9fdff82fc4915b0911f5aa2247243d3ac7a4908b /include/mpc85xx.h | |
parent | 4913229ed6c668d3127ecd7bf9dea7900844fb82 (diff) | |
download | u-boot-96d2bb952bbf2e5a14f6ad668312cbce3cc4485a.tar.gz |
powerpc/mpc85xx: Don't relocate exception vectors
Booke does not require exception vectors to be located at address zero.
U-Boot was doing so anyway, simply because that's how it had been done
on other PPC. The downside of this is that once the OS is loaded to
address zero, the exception vectors have been overwritten -- which
makes it difficult to diagnose a crash that happens after that point.
The IVOR setup and trap entry code is simplified somewhat as a result.
Also, there is no longer a need to align individual exceptions on 0x100
byte boundaries.
Signed-off-by: Scott Wood <scottwood@freescale.com>
Reviewed-by: York Sun <yorksun@freescale.com>
Diffstat (limited to 'include/mpc85xx.h')
-rw-r--r-- | include/mpc85xx.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/mpc85xx.h b/include/mpc85xx.h index 11d898527b..3753e47edf 100644 --- a/include/mpc85xx.h +++ b/include/mpc85xx.h @@ -6,10 +6,6 @@ #ifndef __MPC85xx_H__ #define __MPC85xx_H__ -/* define for common ppc_asm.tmpl */ -#define EXC_OFF_SYS_RESET 0x100 /* System reset */ -#define _START_OFFSET 0 - #if defined(CONFIG_E500) #include <e500.h> #endif |