diff options
| author | Kumar Gala <[email protected]> | 2009-09-09 11:40:41 -0500 |
|---|---|---|
| committer | Tom Rix <[email protected]> | 2009-10-03 09:04:17 -0500 |
| commit | bbff2d2861a1210cc6ab2a871cdd82f195905b2f (patch) | |
| tree | fd74dde1ffbf7a18afe87d161837a283ef43f0bc /board | |
| parent | 5079ae4a203c8deb6fe58584ef151d5113ea1b54 (diff) | |
ppc/85xx: Introduce RESET_VECTOR_ADDRESS to handle non-standard link address
Some board ports place TEXT_BASE at a location that would cause the
RESET_VECTOR_ADDRESS not to be at 0xfffffffc when we link. By default
we assume RESET_VECTOR_ADDRESS will be 0xfffffffc if the board doesn't
explicitly set it.
Signed-off-by: Kumar Gala <[email protected]>
Acked-by: Wolfgang Denk <[email protected]>
Diffstat (limited to 'board')
| -rw-r--r-- | board/freescale/mpc8536ds/config.mk | 2 | ||||
| -rw-r--r-- | board/freescale/mpc8572ds/config.mk | 2 | ||||
| -rw-r--r-- | board/freescale/p1_p2_rdb/config.mk | 2 | ||||
| -rw-r--r-- | board/freescale/p2020ds/config.mk | 2 |
4 files changed, 8 insertions, 0 deletions
diff --git a/board/freescale/mpc8536ds/config.mk b/board/freescale/mpc8536ds/config.mk index f03087620a3..c1d0525678e 100644 --- a/board/freescale/mpc8536ds/config.mk +++ b/board/freescale/mpc8536ds/config.mk @@ -26,3 +26,5 @@ ifndef TEXT_BASE TEXT_BASE = 0xeff80000 endif + +RESET_VECTOR_ADDRESS = 0xeffffffc diff --git a/board/freescale/mpc8572ds/config.mk b/board/freescale/mpc8572ds/config.mk index 08b61f09ab2..67394c9b718 100644 --- a/board/freescale/mpc8572ds/config.mk +++ b/board/freescale/mpc8572ds/config.mk @@ -26,3 +26,5 @@ ifndef TEXT_BASE TEXT_BASE = 0xeff80000 endif + +RESET_VECTOR_ADDRESS = 0xeffffffc diff --git a/board/freescale/p1_p2_rdb/config.mk b/board/freescale/p1_p2_rdb/config.mk index abd64bbbec0..a56b5366b75 100644 --- a/board/freescale/p1_p2_rdb/config.mk +++ b/board/freescale/p1_p2_rdb/config.mk @@ -27,3 +27,5 @@ ifndef TEXT_BASE TEXT_BASE = 0xeff80000 endif + +RESET_VECTOR_ADDRESS = 0xeffffffc diff --git a/board/freescale/p2020ds/config.mk b/board/freescale/p2020ds/config.mk index 439fa8fca69..4fcd69c5d67 100644 --- a/board/freescale/p2020ds/config.mk +++ b/board/freescale/p2020ds/config.mk @@ -26,3 +26,5 @@ ifndef TEXT_BASE TEXT_BASE = 0xeff80000 endif + +RESET_VECTOR_ADDRESS = 0xeffffffc |
