summaryrefslogtreecommitdiffstats
path: root/board/kosagi/novena/boot.cmd
diff options
context:
space:
mode:
Diffstat (limited to 'board/kosagi/novena/boot.cmd')
-rw-r--r--board/kosagi/novena/boot.cmd20
1 files changed, 20 insertions, 0 deletions
diff --git a/board/kosagi/novena/boot.cmd b/board/kosagi/novena/boot.cmd
new file mode 100644
index 000000000..96c4763c4
--- /dev/null
+++ b/board/kosagi/novena/boot.cmd
@@ -0,0 +1,20 @@
+# Flip on USB power
+i2c dev 1
+i2c mw 08 66 48
+
+# Set CPU voltage to 1.2V (rather than the default of 1.375V)
+i2c mw 08 20 26
+
+mmc dev 1
+if fatload mmc 1 0x12000000 uImage-novena.bin
+then
+ fatload mmc 1 0x11ff0000 uImage-novena.dtb
+ setenv bootargs console=${console},${baudrate} root=${mmcroot}
+ setenv bootargs console=ttymxc1,115200 earlyprintk root=/dev/mmcblk1p2 rootwait rootfstype=ext4
+else
+ mmc dev 0
+ fatload mmc 0 0x12000000 uImage-novena.bin
+ fatload mmc 0 0x11ff0000 uImage-novena.dtb
+ setenv bootargs console=ttymxc1,115200 earlyprintk root=/dev/mmcblk0p2 rootwait rootfstype=ext4
+fi
+bootm 0x12000000 - 0x11ff0000