wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2003 Motorola,Inc. |
| 3 | * Xianghua Xiao(x.xiao@motorola.com) |
| 4 | */ |
| 5 | |
| 6 | #ifndef __E500_H__ |
| 7 | #define __E500_H__ |
| 8 | |
| 9 | #ifndef __ASSEMBLY__ |
| 10 | |
| 11 | typedef struct |
| 12 | { |
Poonam Aggrwal | 0e87098 | 2009-07-31 12:08:14 +0530 | [diff] [blame] | 13 | unsigned long freqProcessor[CONFIG_MAX_CPUS]; |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 14 | unsigned long freqSystemBus; |
Kumar Gala | d435793 | 2007-12-07 04:59:26 -0600 | [diff] [blame] | 15 | unsigned long freqDDRBus; |
Trent Piepho | ada591d | 2008-12-03 15:16:37 -0800 | [diff] [blame] | 16 | unsigned long freqLocalBus; |
Haiying Wang | b3d7f20 | 2009-05-20 12:30:29 -0400 | [diff] [blame] | 17 | unsigned long freqQE; |
Kumar Gala | 39aaca1 | 2009-03-19 02:46:19 -0500 | [diff] [blame] | 18 | #ifdef CONFIG_SYS_DPAA_FMAN |
| 19 | unsigned long freqFMan[CONFIG_SYS_NUM_FMAN]; |
| 20 | #endif |
| 21 | #ifdef CONFIG_SYS_DPAA_PME |
| 22 | unsigned long freqPME; |
| 23 | #endif |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 24 | } MPC85xx_SYS_INFO; |
| 25 | |
| 26 | #endif /* _ASMLANGUAGE */ |
| 27 | |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 28 | #define RESET_VECTOR 0xfffffffc |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 29 | |
| 30 | #endif /* __E500_H__ */ |