summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2008-02-19 15:59:37 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2008-02-19 15:59:37 +0100
commit7b4e9c4a825d8baf2c79ce9d0731fc83bd348434 (patch)
treedd8c99d61e2bdef12f43a10ec4753d7ff8a5c400 /include
parentd5caf5ec5b2e175e47dc6eb4d42249126c8e2c8c (diff)
downloadbarebox-7b4e9c4a825d8baf2c79ce9d0731fc83bd348434.tar.gz
barebox-7b4e9c4a825d8baf2c79ce9d0731fc83bd348434.tar.xz
[i.MX]: Basic board support for the Freescale i.MX27 eval board
Diffstat (limited to 'include')
-rw-r--r--include/configs/imx27ads.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/include/configs/imx27ads.h b/include/configs/imx27ads.h
new file mode 100644
index 0000000000..b30eb5bfd9
--- /dev/null
+++ b/include/configs/imx27ads.h
@@ -0,0 +1,33 @@
+/**
+ * @file
+ * @brief Global defintions for the ARM i.MX27 based pcm038
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; either version 2 of
+ * the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ */
+
+#ifndef __CONFIG_H
+#define __CONFIG_H
+
+/* FIXME: ugly....should be simply part of the BSP file */
+
+#include <asm/mach-types.h>
+
+#define CONFIG_ARCH_NUMBER MACH_TYPE_MX27ADS
+#define CONFIG_BOOT_PARAMS 0xa0000100
+#define CFG_MALLOC_LEN (4096 << 10)
+#define CONFIG_STACKSIZE ( 120 << 10) /* stack size */
+
+#endif /* __CONFIG_H */