Blame view

include/e500.h 626 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
14
15
16
17
  	unsigned long freq_processor[CONFIG_MAX_CPUS];
  	unsigned long freq_systembus;
  	unsigned long freq_ddrbus;
  	unsigned long freq_localbus;
  	unsigned long freq_qe;
39aaca1f6   Kumar Gala   ppc/p4080: Determ...
18
  #ifdef CONFIG_SYS_DPAA_FMAN
997399fa4   Prabhakar Kushwaha   powerpc: Fix Came...
19
  	unsigned long freq_fman[CONFIG_SYS_NUM_FMAN];
39aaca1f6   Kumar Gala   ppc/p4080: Determ...
20
  #endif
990e1a8ce   Haiying Wang   poweprc/85xx: add...
21
  #ifdef CONFIG_SYS_DPAA_QBMAN
997399fa4   Prabhakar Kushwaha   powerpc: Fix Came...
22
  	unsigned long freq_qman;
990e1a8ce   Haiying Wang   poweprc/85xx: add...
23
  #endif
39aaca1f6   Kumar Gala   ppc/p4080: Determ...
24
  #ifdef CONFIG_SYS_DPAA_PME
997399fa4   Prabhakar Kushwaha   powerpc: Fix Came...
25
  	unsigned long freq_pme;
39aaca1f6   Kumar Gala   ppc/p4080: Determ...
26
  #endif
42d1f0394   wdenk   * Patches by Xian...
27
28
29
  } MPC85xx_SYS_INFO;
  
  #endif  /* _ASMLANGUAGE */
42d1f0394   wdenk   * Patches by Xian...
30
  #define RESET_VECTOR	0xfffffffc
42d1f0394   wdenk   * Patches by Xian...
31
32
  
  #endif	/* __E500_H__ */