board: add mx53evk target, only initial boot tested

Signed-off-by: Robert Nelson <robertcnelson@gmail.com>
pull/8/head
Robert Nelson 13 years ago
parent 5f42b37de9
commit dadf0252aa

@ -598,7 +598,7 @@ function boot_uenv_txt_template {
__EOF__ __EOF__
;; ;;
igepv2|crane|panda|panda_es|mx53loco) igepv2|crane|panda|panda_es|mx51evk|mx53loco)
cat >> ${TEMPDIR}/bootscripts/netinstall.cmd <<-__EOF__ cat >> ${TEMPDIR}/bootscripts/netinstall.cmd <<-__EOF__
deviceargs=setenv device_args deviceargs=setenv device_args
loaduimage=run xyz_mmcboot; run deviceargs; run mmcargs; bootm \${address_uimage} \${address_uinitrd} loaduimage=run xyz_mmcboot; run deviceargs; run mmcargs; bootm \${address_uimage} \${address_uinitrd}
@ -1447,16 +1447,13 @@ function is_omap {
unset KMS_VIDEOB unset KMS_VIDEOB
} }
function is_imx53 { function is_imx {
IS_IMX=1 IS_IMX=1
UIMAGE_ADDR="0x70800000" SERIAL_CONSOLE="${SERIAL},115200"
UINITRD_ADDR="0x72100000" SUBARCH="imx"
SERIAL_CONSOLE="${SERIAL},115200" VIDEO_CONSOLE="console=tty0"
ZRELADD="0x70008000" VIDEO_FB="mxcdi1fb"
SUBARCH="imx" VIDEO_TIMING="RGB24,1280x720M@60"
VIDEO_CONSOLE="console=tty0"
VIDEO_FB="mxcdi1fb"
VIDEO_TIMING="RGB24,1280x720M@60"
} }
function check_uboot_type { function check_uboot_type {
@ -1574,6 +1571,19 @@ function check_uboot_type {
SERIAL="ttyO2" SERIAL="ttyO2"
is_omap is_omap
BETA_KERNEL=1
SERIAL_MODE=1
;;
mx51evk)
SYSTEM="mx51evk"
DO_UBOOT=1
DD_UBOOT=1
BOOTLOADER="MX51EVK"
SERIAL="ttymxc0"
is_imx
ZRELADD="0x90008000"
UIMAGE_ADDR="0x90800000"
UINITRD_ADDR="0x92100000"
BETA_KERNEL=1 BETA_KERNEL=1
SERIAL_MODE=1 SERIAL_MODE=1
;; ;;
@ -1583,7 +1593,10 @@ function check_uboot_type {
DD_UBOOT=1 DD_UBOOT=1
BOOTLOADER="MX53LOCO" BOOTLOADER="MX53LOCO"
SERIAL="ttymxc0" SERIAL="ttymxc0"
is_imx53 is_imx
ZRELADD="0x70008000"
UIMAGE_ADDR="0x70800000"
UINITRD_ADDR="0x72100000"
;; ;;
*) *)
IN_VALID_UBOOT=1 IN_VALID_UBOOT=1

Loading…
Cancel
Save