Blame view

include/e500.h 1003 Bytes
42d1f0394   wdenk   * Patches by Xian...
1
2
3
4
5
6
7
8
9
10
11
12
  /*
   * Copyright 2003 Motorola,Inc.
   * Xianghua Xiao(x.xiao@motorola.com)
   */
  
  #ifndef	__E500_H__
  #define __E500_H__
  
  #ifndef __ASSEMBLY__
  
  typedef struct
  {
997399fa4   Prabhakar Kushwaha   powerpc: Fix Came...
13
  	unsigned long freq_processor[CONFIG_MAX_CPUS];
b8bf0adc1   Shaveta Leekha   powerpc/mpc85xx: ...
14
15
16
  #ifdef CONFIG_HETROGENOUS_CLUSTERS
  	unsigned long freq_processor_dsp[CONFIG_MAX_DSP_CPUS];
  #endif
997399fa4   Prabhakar Kushwaha   powerpc: Fix Came...
17
18
19
20
  	unsigned long freq_systembus;
  	unsigned long freq_ddrbus;
  	unsigned long freq_localbus;
  	unsigned long freq_qe;
2d9ca2c72   Yangbo Lu   mmc: fsl_esdhc: A...
21
  	unsigned long freq_sdhc;
39aaca1f6   Kumar Gala   ppc/p4080: Determ...
22
  #ifdef CONFIG_SYS_DPAA_FMAN
997399fa4   Prabhakar Kushwaha   powerpc: Fix Came...
23
  	unsigned long freq_fman[CONFIG_SYS_NUM_FMAN];
39aaca1f6   Kumar Gala   ppc/p4080: Determ...
24
  #endif
990e1a8ce   Haiying Wang   poweprc/85xx: add...
25
  #ifdef CONFIG_SYS_DPAA_QBMAN
997399fa4   Prabhakar Kushwaha   powerpc: Fix Came...
26
  	unsigned long freq_qman;
990e1a8ce   Haiying Wang   poweprc/85xx: add...
27
  #endif
39aaca1f6   Kumar Gala   ppc/p4080: Determ...
28
  #ifdef CONFIG_SYS_DPAA_PME
997399fa4   Prabhakar Kushwaha   powerpc: Fix Came...
29
  	unsigned long freq_pme;
39aaca1f6   Kumar Gala   ppc/p4080: Determ...
30
  #endif
b8bf0adc1   Shaveta Leekha   powerpc/mpc85xx: ...
31
32
33
34
35
36
37
38
  #ifdef CONFIG_SYS_CPRI
  	unsigned long freq_cpri;
  #endif
  #ifdef CONFIG_SYS_MAPLE
  	unsigned long freq_maple;
  	unsigned long freq_maple_ulb;
  	unsigned long freq_maple_etvpe;
  #endif
0c12a1592   vijay rai   powerpc/85xx: Enh...
39
40
41
  #ifdef CONFIG_SYS_FSL_SINGLE_SOURCE_CLK
  	unsigned char diff_sysclk;
  #endif
42d1f0394   wdenk   * Patches by Xian...
42
43
44
  } MPC85xx_SYS_INFO;
  
  #endif  /* _ASMLANGUAGE */
42d1f0394   wdenk   * Patches by Xian...
45
  #define RESET_VECTOR	0xfffffffc
42d1f0394   wdenk   * Patches by Xian...
46
47
  
  #endif	/* __E500_H__ */