summaryrefslogtreecommitdiff
path: root/include/common.h
diff options
context:
space:
mode:
authorRafal Jaworowski <raj@semihalf.com>2007-07-27 14:43:59 +0200
committerRafal Jaworowski <raj@semihalf.com>2007-07-27 14:43:59 +0200
commit8993e54b6f397973794f3d6f47d3b3c0c98dd4f6 (patch)
treec5ce1d56f002d132d527f66afc9a35adb077b56f /include/common.h
parent1863cfb7b100ba0ee3401799457a01dc058745f8 (diff)
[ADS5121] Support for the ADS5121 board
The following MPC5121e subsystems are supported: - low-level CPU init - NOR Boot Flash (common CFI driver) - DDR SDRAM - FEC - I2C - Watchdog Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com> Signed-off-by: Rafal Jaworowski <raj@semihalf.com> Signed-off-by: Jan Wrobel <wrr@semihalf.com>
Diffstat (limited to 'include/common.h')
-rw-r--r--include/common.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/include/common.h b/include/common.h
index 23f93907e..d823733b6 100644
--- a/include/common.h
+++ b/include/common.h
@@ -1,5 +1,5 @@
/*
- * (C) Copyright 2000-2004
+ * (C) Copyright 2000-2007
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
*
* See file CREDITS for list of people who contributed to this
@@ -65,6 +65,9 @@ typedef volatile unsigned char vu_char;
#include <asm/5xx_immap.h>
#elif defined(CONFIG_MPC5xxx)
#include <mpc5xxx.h>
+#elif defined(CONFIG_MPC512X)
+#include <mpc512x.h>
+#include <asm/immap_512x.h>
#elif defined(CONFIG_MPC8220)
#include <asm/immap_8220.h>
#elif defined(CONFIG_8260)
@@ -448,6 +451,9 @@ int prt_8260_clks (void);
#elif defined(CONFIG_MPC5xxx)
int prt_mpc5xxx_clks (void);
#endif
+#if defined(CONFIG_MPC512x)
+int prt_mpc512xxx_clks (void);
+#endif
#if defined(CONFIG_MPC8220)
int prt_mpc8220_clks (void);
#endif