summaryrefslogtreecommitdiffstats
path: root/include/configs/motionpro.h
diff options
context:
space:
mode:
authorBartlomiej Sieka <tur@semihalf.com>2007-05-08 10:23:56 +0200
committerBartlomiej Sieka <tur@semihalf.com>2007-05-08 10:23:56 +0200
commitfa5c2ba123b1bf88455bfc21db5e786ca045029d (patch)
tree8f61d581085851e1a01c586e52b8b11ca17ce49b /include/configs/motionpro.h
parent06241d50a3ab1b20a0b08baeeaffcaa23ae4b839 (diff)
downloadtalos-obmc-uboot-fa5c2ba123b1bf88455bfc21db5e786ca045029d.tar.gz
talos-obmc-uboot-fa5c2ba123b1bf88455bfc21db5e786ca045029d.zip
[Motion-PRO] Add ATA support. Add CF-booting commands to the default
environment.
Diffstat (limited to 'include/configs/motionpro.h')
-rw-r--r--include/configs/motionpro.h25
1 files changed, 23 insertions, 2 deletions
diff --git a/include/configs/motionpro.h b/include/configs/motionpro.h
index 74ba800cbf..989a534e68 100644
--- a/include/configs/motionpro.h
+++ b/include/configs/motionpro.h
@@ -30,7 +30,6 @@
* High Level Configuration Options
*/
-
/* CPU and board */
#define CONFIG_MPC5xxx 1 /* This is an MPC5xxx CPU */
#define CONFIG_MPC5200 1 /* More exactly a MPC5200 */
@@ -49,7 +48,9 @@
CFG_CMD_MII | \
CFG_CMD_BEDBUG | \
CFG_CMD_NET | \
- CFG_CMD_PING)
+ CFG_CMD_PING | \
+ CFG_CMD_IDE | \
+ CFG_CMD_FAT)
/* this must be included AFTER the definition of CONFIG_COMMANDS (if any) */
#include <cmd_confdefs.h>
@@ -104,11 +105,13 @@
"kernel_addr=200000\0" \
"fdt_addr=400000\0" \
"ramdisk_addr=500000\0" \
+ "multi_image_addr=800000\0" \
"rootpath=/opt/eldk-4.1/ppc_6xx\0" \
"u-boot=/tftpboot/motionpro/u-boot.bin\0" \
"bootfile=/tftpboot/motionpro/uImage\0" \
"fdt_file=/tftpboot/motionpro/motionpro.dtb\0" \
"ramdisk_file=/tftpboot/motionpro/uRamdisk\0" \
+ "multi_image_file=kernel+initrd+dtb.img\0" \
"load=tftp $(u-boot_addr) $(u-boot)\0" \
"update=prot off fff00000 fff3ffff; era fff00000 fff3ffff; " \
"cp.b $(u-boot_addr) fff00000 $(filesize);" \
@@ -116,6 +119,7 @@
"ramargs=setenv bootargs root=/dev/ram rw\0" \
"nfsargs=setenv bootargs root=/dev/nfs rw " \
"nfsroot=$(serverip):$(rootpath)\0" \
+ "fat_args=setenv bootargs rw\0" \
"addip=setenv bootargs $(bootargs) " \
"ip=$(ipaddr):$(serverip):$(gatewayip):" \
"$(netmask):$(hostname):$(netdev):off panic=1 " \
@@ -128,6 +132,9 @@
"tftp $(ramdisk_addr) $(ramdisk_file); " \
"run ramargs addip; " \
"bootm $(kernel_addr) $(ramdisk_addr) $(fdt_addr)\0" \
+ "fat_multi=run fat_args addip; fatload ide 0:1 " \
+ "${multi_image_addr} ${multi_image_file}; " \
+ "bootm ${multi_image_addr}\0" \
""
#define CONFIG_BOOTCOMMAND "run net_nfs"
@@ -252,6 +259,20 @@
/*
+ * IDE/ATA configuration
+ */
+#define CFG_ATA_BASE_ADDR MPC5XXX_ATA
+#define CFG_IDE_MAXBUS 1
+#define CFG_IDE_MAXDEVICE 1
+#define CONFIG_IDE_PREINIT
+
+#define CFG_ATA_DATA_OFFSET 0x0060
+#define CFG_ATA_REG_OFFSET CFG_ATA_DATA_OFFSET
+#define CFG_ATA_STRIDE 4
+#define CONFIG_DOS_PARTITION
+
+
+/*
* Environment settings
*/
#define CFG_ENV_IS_IN_FLASH 1
OpenPOWER on IntegriCloud