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 | { |
Prabhakar Kushwaha | 997399f | 2013-08-16 14:52:26 +0530 | [diff] [blame] | 13 | unsigned long freq_processor[CONFIG_MAX_CPUS]; |
| 14 | unsigned long freq_systembus; |
| 15 | unsigned long freq_ddrbus; |
| 16 | unsigned long freq_localbus; |
| 17 | unsigned long freq_qe; |
Kumar Gala | 39aaca1 | 2009-03-19 02:46:19 -0500 | [diff] [blame] | 18 | #ifdef CONFIG_SYS_DPAA_FMAN |
Prabhakar Kushwaha | 997399f | 2013-08-16 14:52:26 +0530 | [diff] [blame] | 19 | unsigned long freq_fman[CONFIG_SYS_NUM_FMAN]; |
Kumar Gala | 39aaca1 | 2009-03-19 02:46:19 -0500 | [diff] [blame] | 20 | #endif |
Haiying Wang | 990e1a8 | 2012-10-11 07:13:39 +0000 | [diff] [blame] | 21 | #ifdef CONFIG_SYS_DPAA_QBMAN |
Prabhakar Kushwaha | 997399f | 2013-08-16 14:52:26 +0530 | [diff] [blame] | 22 | unsigned long freq_qman; |
Haiying Wang | 990e1a8 | 2012-10-11 07:13:39 +0000 | [diff] [blame] | 23 | #endif |
Kumar Gala | 39aaca1 | 2009-03-19 02:46:19 -0500 | [diff] [blame] | 24 | #ifdef CONFIG_SYS_DPAA_PME |
Prabhakar Kushwaha | 997399f | 2013-08-16 14:52:26 +0530 | [diff] [blame] | 25 | unsigned long freq_pme; |
Kumar Gala | 39aaca1 | 2009-03-19 02:46:19 -0500 | [diff] [blame] | 26 | #endif |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 27 | } MPC85xx_SYS_INFO; |
| 28 | |
| 29 | #endif /* _ASMLANGUAGE */ |
| 30 | |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 31 | #define RESET_VECTOR 0xfffffffc |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 32 | |
| 33 | #endif /* __E500_H__ */ |