xref: /openbmc/u-boot/include/e500.h (revision 35546f6f2014282cc4f9772324b5588bd44a2938)
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  {
13  	unsigned long freq_processor[CONFIG_MAX_CPUS];
14  #ifdef CONFIG_HETROGENOUS_CLUSTERS
15  	unsigned long freq_processor_dsp[CONFIG_MAX_DSP_CPUS];
16  #endif
17  	unsigned long freq_systembus;
18  	unsigned long freq_ddrbus;
19  	unsigned long freq_localbus;
20  	unsigned long freq_qe;
21  	unsigned long freq_sdhc;
22  #ifdef CONFIG_SYS_DPAA_FMAN
23  	unsigned long freq_fman[CONFIG_SYS_NUM_FMAN];
24  #endif
25  #ifdef CONFIG_SYS_DPAA_QBMAN
26  	unsigned long freq_qman;
27  #endif
28  #ifdef CONFIG_SYS_DPAA_PME
29  	unsigned long freq_pme;
30  #endif
31  #ifdef CONFIG_SYS_CPRI
32  	unsigned long freq_cpri;
33  #endif
34  #ifdef CONFIG_SYS_MAPLE
35  	unsigned long freq_maple;
36  	unsigned long freq_maple_ulb;
37  	unsigned long freq_maple_etvpe;
38  #endif
39  #ifdef CONFIG_SYS_FSL_SINGLE_SOURCE_CLK
40  	unsigned char diff_sysclk;
41  #endif
42  } MPC85xx_SYS_INFO;
43  
44  #endif  /* _ASMLANGUAGE */
45  
46  #define RESET_VECTOR	0xfffffffc
47  
48  #endif	/* __E500_H__ */
49