Blame view

include/e500.h 977 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;
39aaca1f6   Kumar Gala   ppc/p4080: Determ...
21
  #ifdef CONFIG_SYS_DPAA_FMAN
997399fa4   Prabhakar Kushwaha   powerpc: Fix Came...
22
  	unsigned long freq_fman[CONFIG_SYS_NUM_FMAN];
39aaca1f6   Kumar Gala   ppc/p4080: Determ...
23
  #endif
990e1a8ce   Haiying Wang   poweprc/85xx: add...
24
  #ifdef CONFIG_SYS_DPAA_QBMAN
997399fa4   Prabhakar Kushwaha   powerpc: Fix Came...
25
  	unsigned long freq_qman;
990e1a8ce   Haiying Wang   poweprc/85xx: add...
26
  #endif
39aaca1f6   Kumar Gala   ppc/p4080: Determ...
27
  #ifdef CONFIG_SYS_DPAA_PME
997399fa4   Prabhakar Kushwaha   powerpc: Fix Came...
28
  	unsigned long freq_pme;
39aaca1f6   Kumar Gala   ppc/p4080: Determ...
29
  #endif
b8bf0adc1   Shaveta Leekha   powerpc/mpc85xx: ...
30
31
32
33
34
35
36
37
  #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...
38
39
40
  #ifdef CONFIG_SYS_FSL_SINGLE_SOURCE_CLK
  	unsigned char diff_sysclk;
  #endif
42d1f0394   wdenk   * Patches by Xian...
41
42
43
  } MPC85xx_SYS_INFO;
  
  #endif  /* _ASMLANGUAGE */
42d1f0394   wdenk   * Patches by Xian...
44
  #define RESET_VECTOR	0xfffffffc
42d1f0394   wdenk   * Patches by Xian...
45
46
  
  #endif	/* __E500_H__ */