blob: e1708b9dc956f01573da0e71c2bf0f4b9a56c628 [file] [log] [blame]
wdenk9c53f402003-10-15 23:53:47 +00001/*
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
11typedef struct
12{
Poonam Aggrwal4baef822009-07-31 12:08:14 +053013 unsigned long freqProcessor[CONFIG_MAX_CPUS];
wdenk9c53f402003-10-15 23:53:47 +000014 unsigned long freqSystemBus;
Kumar Gala07db1702007-12-07 04:59:26 -060015 unsigned long freqDDRBus;
Trent Piepho0b691fc2008-12-03 15:16:37 -080016 unsigned long freqLocalBus;
Haiying Wang61414682009-05-20 12:30:29 -040017 unsigned long freqQE;
Kumar Galadccd9e32009-03-19 02:46:19 -050018#ifdef CONFIG_SYS_DPAA_FMAN
19 unsigned long freqFMan[CONFIG_SYS_NUM_FMAN];
20#endif
21#ifdef CONFIG_SYS_DPAA_PME
22 unsigned long freqPME;
23#endif
wdenk9c53f402003-10-15 23:53:47 +000024} MPC85xx_SYS_INFO;
25
26#endif /* _ASMLANGUAGE */
27
wdenk9c53f402003-10-15 23:53:47 +000028#define RESET_VECTOR 0xfffffffc
wdenk9c53f402003-10-15 23:53:47 +000029
30#endif /* __E500_H__ */