2014-06-18 10:08:12 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Copyright (C) 2010-2013 OpenWrt.org
|
|
|
|
#
|
|
|
|
|
|
|
|
IMX6_BOARD_NAME=
|
|
|
|
IMX6_MODEL=
|
|
|
|
|
imx6: Add support for Toradex Apalis family of CoMs
This patch adds support for the following computer on modules (CoM) from
Toradex[A]:
Apalis iMX6 Quad 2GB IT - i.MX 6Quad 800MHz, 2GB DDR3, 4GB eMMC
-40° to +85° C Temp
Apalis iMX6 Quad 1GB - i.MX 6Quad 1GHz, 1GB DDR3, 4GB eMMC
0° to +70° C Temp
Apalis iMX6 Dual 1GB IT - i.MX 6Dual 800MHz, 1GB DDR3, 4GB eMMC
-40° to +85° C Temp
Apalis iMX6 Dual 512MB - i.MX 6Dual 1GHz, 512MB DDR3, 4GB eMMC
0° to +70° C Temp
I've developed and tested it on Quad 2GB IT v1.1A and Dual 512MB v1.1A
CoMs, using Ixora[B] carrier board v1.0A, but it should hopefuly work on
Eval[C] board as well.
A. https://www.toradex.com/computer-on-modules/apalis-arm-family/nxp-freescale-imx-6
B. https://www.toradex.com/products/carrier-board/ixora-carrier-board
C. https://www.toradex.com/products/carrier-board/apalis-evaluation-board
Flashing/recovery instructions:
1. Download and compile imx_loader for OpenWrt from
https://github.com/ynezz/imx_loader
2. Enter recovery mode as desribed in
https://developer.toradex.com/knowledge-base/imx-recovery-mode
3. Connect board via USB to the host computer, check that it's connected
by lsusb:
15a2:0054 Freescale Semiconductor, Inc. i.MX 6Dual/6Quad SystemOnChip
in RecoveryMode
4. Copy following OpenWrt images to imx_loader directory:
SPL
u-boot.img
u-boot-with-spl.imx
openwrt-imx6-apalis-recovery.scr
openwrt-imx6-apalis-squashfs.combined.bin
5. Run imx_usb in imx_loader directory
Signed-off-by: Petr Štetiar <ynezz@true.cz>
2018-11-23 09:33:24 +00:00
|
|
|
rootpartuuid() {
|
|
|
|
local cmdline=$(cat /proc/cmdline)
|
|
|
|
local bootpart=${cmdline##*root=}
|
|
|
|
bootpart=${bootpart%% *}
|
|
|
|
local uuid=${bootpart#PARTUUID=}
|
|
|
|
echo ${uuid%-02}
|
|
|
|
}
|
|
|
|
|
|
|
|
bootdev_from_uuid() {
|
|
|
|
blkid | grep "PTUUID=\"$(rootpartuuid)\"" | cut -d : -f1
|
|
|
|
}
|
|
|
|
|
|
|
|
bootpart_from_uuid() {
|
|
|
|
blkid | grep $(rootpartuuid)-01 | cut -d : -f1
|
|
|
|
}
|
|
|
|
|
|
|
|
rootpart_from_uuid() {
|
|
|
|
blkid | grep $(rootpartuuid)-02 | cut -d : -f1
|
|
|
|
}
|
|
|
|
|
|
|
|
apalis_mount_boot() {
|
|
|
|
mkdir -p /boot
|
|
|
|
[ -f /boot/uImage ] || {
|
|
|
|
mount -o rw,noatime $(bootpart_from_uuid) /boot > /dev/null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-18 10:08:12 +00:00
|
|
|
imx6_board_detect() {
|
|
|
|
local machine
|
|
|
|
local name
|
|
|
|
|
|
|
|
machine=$(cat /proc/device-tree/model)
|
|
|
|
|
|
|
|
case "$machine" in
|
|
|
|
"Gateworks Ventana i.MX6 DualLite/Solo GW51XX" |\
|
|
|
|
"Gateworks Ventana i.MX6 Dual/Quad GW51XX")
|
|
|
|
name="gw51xx"
|
|
|
|
;;
|
|
|
|
|
|
|
|
"Gateworks Ventana i.MX6 DualLite/Solo GW52XX" |\
|
|
|
|
"Gateworks Ventana i.MX6 Dual/Quad GW52XX")
|
|
|
|
name="gw52xx"
|
|
|
|
;;
|
|
|
|
|
|
|
|
"Gateworks Ventana i.MX6 DualLite/Solo GW53XX" |\
|
|
|
|
"Gateworks Ventana i.MX6 Dual/Quad GW53XX")
|
|
|
|
name="gw53xx"
|
|
|
|
;;
|
|
|
|
|
|
|
|
"Gateworks Ventana i.MX6 DualLite/Solo GW54XX" |\
|
|
|
|
"Gateworks Ventana i.MX6 Dual/Quad GW54XX" |\
|
|
|
|
"Gateworks Ventana GW5400-A")
|
|
|
|
name="gw54xx"
|
|
|
|
;;
|
|
|
|
|
2015-11-18 21:35:09 +00:00
|
|
|
"Gateworks Ventana i.MX6 Dual/Quad GW551X" |\
|
2017-05-15 16:21:39 +00:00
|
|
|
"Gateworks Ventana i.MX6 DualLite/Solo GW551X")
|
2015-11-18 21:35:09 +00:00
|
|
|
name="gw551x"
|
|
|
|
;;
|
|
|
|
|
2014-08-11 20:35:13 +00:00
|
|
|
"Gateworks Ventana i.MX6 DualLite/Solo GW552X" |\
|
|
|
|
"Gateworks Ventana i.MX6 Dual/Quad GW552X")
|
|
|
|
name="gw552x"
|
|
|
|
;;
|
|
|
|
|
2017-04-20 21:51:37 +00:00
|
|
|
"Gateworks Ventana i.MX6 DualLite/Solo GW553X" |\
|
|
|
|
"Gateworks Ventana i.MX6 Dual/Quad GW553X")
|
|
|
|
name="gw553x"
|
|
|
|
;;
|
|
|
|
|
2017-03-10 15:01:12 +00:00
|
|
|
"Gateworks Ventana i.MX6 DualLite/Solo GW5904" |\
|
|
|
|
"Gateworks Ventana i.MX6 Dual/Quad GW5904")
|
|
|
|
name="gw5904"
|
|
|
|
;;
|
|
|
|
|
2018-07-09 09:09:53 +00:00
|
|
|
"SolidRun Cubox-i Solo/DualLite" |\
|
|
|
|
"SolidRun Cubox-i Dual/Quad")
|
|
|
|
name="cubox-i"
|
|
|
|
;;
|
|
|
|
|
imx6: Add support for Toradex Apalis family of CoMs
This patch adds support for the following computer on modules (CoM) from
Toradex[A]:
Apalis iMX6 Quad 2GB IT - i.MX 6Quad 800MHz, 2GB DDR3, 4GB eMMC
-40° to +85° C Temp
Apalis iMX6 Quad 1GB - i.MX 6Quad 1GHz, 1GB DDR3, 4GB eMMC
0° to +70° C Temp
Apalis iMX6 Dual 1GB IT - i.MX 6Dual 800MHz, 1GB DDR3, 4GB eMMC
-40° to +85° C Temp
Apalis iMX6 Dual 512MB - i.MX 6Dual 1GHz, 512MB DDR3, 4GB eMMC
0° to +70° C Temp
I've developed and tested it on Quad 2GB IT v1.1A and Dual 512MB v1.1A
CoMs, using Ixora[B] carrier board v1.0A, but it should hopefuly work on
Eval[C] board as well.
A. https://www.toradex.com/computer-on-modules/apalis-arm-family/nxp-freescale-imx-6
B. https://www.toradex.com/products/carrier-board/ixora-carrier-board
C. https://www.toradex.com/products/carrier-board/apalis-evaluation-board
Flashing/recovery instructions:
1. Download and compile imx_loader for OpenWrt from
https://github.com/ynezz/imx_loader
2. Enter recovery mode as desribed in
https://developer.toradex.com/knowledge-base/imx-recovery-mode
3. Connect board via USB to the host computer, check that it's connected
by lsusb:
15a2:0054 Freescale Semiconductor, Inc. i.MX 6Dual/6Quad SystemOnChip
in RecoveryMode
4. Copy following OpenWrt images to imx_loader directory:
SPL
u-boot.img
u-boot-with-spl.imx
openwrt-imx6-apalis-recovery.scr
openwrt-imx6-apalis-squashfs.combined.bin
5. Run imx_usb in imx_loader directory
Signed-off-by: Petr Štetiar <ynezz@true.cz>
2018-11-23 09:33:24 +00:00
|
|
|
"Toradex Apalis iMX6Q/D Module on Ixora Carrier Board" |\
|
|
|
|
"Toradex Apalis iMX6Q/D Module on Ixora Carrier Board V1.1")
|
|
|
|
name="apalis,ixora"
|
|
|
|
;;
|
|
|
|
|
|
|
|
"Toradex Apalis iMX6Q/D Module on Apalis Evaluation Board")
|
|
|
|
name="apalis,eval"
|
|
|
|
;;
|
|
|
|
|
2014-06-18 10:08:12 +00:00
|
|
|
"Wandboard i.MX6 Dual Lite Board")
|
2014-06-18 16:34:23 +00:00
|
|
|
name="wandboard"
|
2014-06-18 10:08:12 +00:00
|
|
|
;;
|
|
|
|
|
|
|
|
*)
|
|
|
|
name="generic"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
[ -z "$IMX6_BOARD_NAME" ] && IMX6_BOARD_NAME="$name"
|
|
|
|
[ -z "$IMX6_MODEL" ] && IMX6_MODEL="$machine"
|
|
|
|
|
|
|
|
[ -e "/tmp/sysinfo/" ] || mkdir -p "/tmp/sysinfo/"
|
|
|
|
|
|
|
|
echo "$IMX6_BOARD_NAME" > /tmp/sysinfo/board_name
|
|
|
|
echo "$IMX6_MODEL" > /tmp/sysinfo/model
|
|
|
|
}
|