wdenk | 935ecca | 2002-08-06 20:46:37 +0000 | [diff] [blame] | 1 | /*----------------------------------------------------------------------------+ |
| 2 | | |
| 3 | | This source code has been made available to you by IBM on an AS-IS |
| 4 | | basis. Anyone receiving this source is licensed under IBM |
| 5 | | copyrights to use it in any way he or she deems fit, including |
| 6 | | copying it, modifying it, compiling it, and redistributing it either |
| 7 | | with or without modifications. No license under IBM patents or |
| 8 | | patent applications is to be implied by the copyright license. |
| 9 | | |
| 10 | | Any user of this software should understand that IBM cannot provide |
| 11 | | technical support for this software and will not be responsible for |
| 12 | | any consequences resulting from the use of this software. |
| 13 | | |
| 14 | | Any person who transfers this source code or any derivative work |
| 15 | | must include the IBM copyright notice, this paragraph, and the |
| 16 | | preceding two paragraphs in the transferred software. |
| 17 | | |
| 18 | | COPYRIGHT I B M CORPORATION 1999 |
| 19 | | LICENSED MATERIAL - PROGRAM PROPERTY OF I B M |
| 20 | +----------------------------------------------------------------------------*/ |
| 21 | |
| 22 | #ifndef __PPC4XX_H__ |
| 23 | #define __PPC4XX_H__ |
| 24 | |
Rafal Jaworowski | 02032e8 | 2007-06-22 14:58:04 +0200 | [diff] [blame] | 25 | #define EXC_OFF_SYS_RESET 0x0100 /* System reset */ |
| 26 | #define _START_OFFSET (EXC_OFF_SYS_RESET + 0x2000) |
wdenk | 935ecca | 2002-08-06 20:46:37 +0000 | [diff] [blame] | 27 | |
| 28 | #if defined(CONFIG_440) |
| 29 | #include <ppc440.h> |
| 30 | #else |
| 31 | #include <ppc405.h> |
| 32 | #endif |
| 33 | |
| 34 | #endif /* __PPC4XX_H__ */ |