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]; |
Shaveta Leekha | b8bf0ad | 2015-01-19 12:46:54 +0530 | [diff] [blame] | 14 | #ifdef CONFIG_HETROGENOUS_CLUSTERS |
| 15 | unsigned long freq_processor_dsp[CONFIG_MAX_DSP_CPUS]; |
| 16 | #endif |
Prabhakar Kushwaha | 997399f | 2013-08-16 14:52:26 +0530 | [diff] [blame] | 17 | unsigned long freq_systembus; |
| 18 | unsigned long freq_ddrbus; |
| 19 | unsigned long freq_localbus; |
| 20 | unsigned long freq_qe; |
Kumar Gala | 39aaca1 | 2009-03-19 02:46:19 -0500 | [diff] [blame] | 21 | #ifdef CONFIG_SYS_DPAA_FMAN |
Tom Rini | cdc5ed8 | 2022-11-16 13:10:29 -0500 | [diff] [blame] | 22 | unsigned long freq_fman[CFG_SYS_NUM_FMAN]; |
Kumar Gala | 39aaca1 | 2009-03-19 02:46:19 -0500 | [diff] [blame] | 23 | #endif |
Haiying Wang | 990e1a8 | 2012-10-11 07:13:39 +0000 | [diff] [blame] | 24 | #ifdef CONFIG_SYS_DPAA_QBMAN |
Prabhakar Kushwaha | 997399f | 2013-08-16 14:52:26 +0530 | [diff] [blame] | 25 | unsigned long freq_qman; |
Haiying Wang | 990e1a8 | 2012-10-11 07:13:39 +0000 | [diff] [blame] | 26 | #endif |
Kumar Gala | 39aaca1 | 2009-03-19 02:46:19 -0500 | [diff] [blame] | 27 | #ifdef CONFIG_SYS_DPAA_PME |
Prabhakar Kushwaha | 997399f | 2013-08-16 14:52:26 +0530 | [diff] [blame] | 28 | unsigned long freq_pme; |
Kumar Gala | 39aaca1 | 2009-03-19 02:46:19 -0500 | [diff] [blame] | 29 | #endif |
Shaveta Leekha | b8bf0ad | 2015-01-19 12:46:54 +0530 | [diff] [blame] | 30 | #ifdef CONFIG_SYS_CPRI |
| 31 | unsigned long freq_cpri; |
| 32 | #endif |
| 33 | #ifdef CONFIG_SYS_MAPLE |
| 34 | unsigned long freq_maple; |
| 35 | unsigned long freq_maple_ulb; |
| 36 | unsigned long freq_maple_etvpe; |
| 37 | #endif |
vijay rai | 0c12a15 | 2014-04-15 11:34:12 +0530 | [diff] [blame] | 38 | #ifdef CONFIG_SYS_FSL_SINGLE_SOURCE_CLK |
| 39 | unsigned char diff_sysclk; |
| 40 | #endif |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 41 | } MPC85xx_SYS_INFO; |
| 42 | |
| 43 | #endif /* _ASMLANGUAGE */ |
| 44 | |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 45 | #define RESET_VECTOR 0xfffffffc |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 46 | |
| 47 | #endif /* __E500_H__ */ |