2004-01-04 16:28:35 +00:00
|
|
|
/*
|
|
|
|
* A collection of structures, addresses, and values associated with
|
2006-03-12 00:55:43 +00:00
|
|
|
* the Motorola MPC885ADS board. Values common to all FADS family boards
|
2004-01-04 16:28:35 +00:00
|
|
|
* are in board/fads/fads.h
|
|
|
|
*
|
2006-03-12 00:55:43 +00:00
|
|
|
* Copyright (C) 2003-2004 Arabella Software Ltd.
|
2004-01-04 16:28:35 +00:00
|
|
|
* Yuli Barcohen <yuli@arabellasw.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CONFIG_H
|
|
|
|
#define __CONFIG_H
|
|
|
|
|
2006-03-12 00:55:43 +00:00
|
|
|
#define CONFIG_MPC885ADS 1 /* MPC885ADS board */
|
2004-01-04 16:28:35 +00:00
|
|
|
#define CONFIG_FADS 1 /* We are FADS compatible (more or less) */
|
|
|
|
|
2006-03-12 00:55:43 +00:00
|
|
|
#define CONFIG_MPC885 1 /* MPC885 CPU (Duet family) */
|
2004-01-04 16:28:35 +00:00
|
|
|
|
2010-10-06 07:05:45 +00:00
|
|
|
#define CONFIG_SYS_TEXT_BASE 0xFE000000
|
|
|
|
|
2006-03-12 00:55:43 +00:00
|
|
|
#define CONFIG_8xx_CONS_SMC1 1 /* Console is on SMC1 */
|
2004-01-04 16:28:35 +00:00
|
|
|
#undef CONFIG_8xx_CONS_SMC2
|
|
|
|
#undef CONFIG_8xx_CONS_NONE
|
|
|
|
#define CONFIG_BAUDRATE 38400
|
|
|
|
|
2006-03-12 00:55:43 +00:00
|
|
|
#define CONFIG_8xx_OSCLK 10000000 /* 10 MHz oscillator on EXTCLK */
|
|
|
|
#define CONFIG_8xx_CPUCLK_DEFAULT 50000000
|
2008-10-16 13:01:15 +00:00
|
|
|
#define CONFIG_SYS_8xx_CPUCLK_MIN 40000000
|
|
|
|
#define CONFIG_SYS_8xx_CPUCLK_MAX 133000000
|
2004-01-04 16:28:35 +00:00
|
|
|
|
|
|
|
#define CONFIG_SDRAM_50MHZ 1
|
|
|
|
|
2008-08-06 12:05:38 +00:00
|
|
|
#include "../../board/fads/fads.h"
|
2004-01-04 16:28:35 +00:00
|
|
|
|
2008-10-16 13:01:15 +00:00
|
|
|
#define CONFIG_SYS_OR5_PRELIM 0xFFFF8110 /* 64Kbyte address space */
|
|
|
|
#define CONFIG_SYS_BR5_PRELIM (CONFIG_SYS_PHYDEV_ADDR | BR_PS_8 | BR_V)
|
2004-01-04 16:28:35 +00:00
|
|
|
|
2005-09-25 22:53:02 +00:00
|
|
|
#define CONFIG_HAS_ETH1
|
|
|
|
|
2004-01-04 16:28:35 +00:00
|
|
|
#endif /* __CONFIG_H */
|