mvebu: add ClearFog Base support
authorMarko Ratkaj <marko.ratkaj@sartura.hr>
Thu, 6 Apr 2017 18:13:31 +0000 (20:13 +0200)
committerLuka Perkov <luka.perkov@sartura.hr>
Sat, 13 May 2017 22:34:03 +0000 (00:34 +0200)
Add support for SolidRun ClearFog Base board.

The base model is a smaller version of ClearFog Pro without
the DSA switch, replacing it with a second copper gigabit
port, and only one PCIe socket.

Signed-off-by: Marko Ratkaj <marko.ratkaj@sartura.hr>
package/boot/uboot-mvebu/Makefile
target/linux/mvebu/base-files/etc/board.d/02_network
target/linux/mvebu/base-files/lib/mvebu.sh
target/linux/mvebu/base-files/lib/upgrade/platform.sh
target/linux/mvebu/image/Makefile
target/linux/mvebu/image/cfbase-boot.script [new file with mode: 0644]

index 1f2361caf0e25c0cef180b0a31a66ff6bfcb3d8a..a20c4b4f2db5059dc609d9121f6a82ecd7d9e434 100644 (file)
@@ -23,7 +23,7 @@ endef
 
 define U-Boot/clearfog
   NAME:=SolidRun ClearFog A1
-  BUILD_DEVICES:=armada-388-clearfog-pro
+  BUILD_DEVICES:=armada-388-clearfog-base armada-388-clearfog-pro
   UBOOT_IMAGE:=u-boot-spl.kwb
 endef
 
index 68231e004a8b0d42971d789afee707e5e32b1489..aea6224891de9082b0e1c3ed08a9882322ae7da0 100755 (executable)
@@ -33,6 +33,9 @@ armada-388-clearfog-pro)
                ucidef_add_switch "switch0" \
                        "0:lan:5" "1:lan:4" "2:lan:3" "3:lan:2" "4:lan:1" "5u@eth0" "6:lan:6"
        ;;
+armada-388-clearfog-base)
+       ucidef_set_interfaces_lan_wan "eth0" "eth1"
+       ;;
 *)
        ucidef_set_interface_lan "eth0"
        ;;
index 0fcc82d034477f879b71623caa50aad7297fe90c..ecf3d44848c19748300c6d91446b430e2c97878c 100755 (executable)
@@ -56,6 +56,9 @@ mvebu_board_detect() {
        *"SolidRun Clearfog Pro A1")
                name="armada-388-clearfog-pro"
                ;;
+       *"SolidRun Clearfog Base A1")
+               name="armada-388-clearfog-base"
+               ;;
        esac
 
        [ -z "$name" ] && name="unknown"
index 6db25448d6d4b3316184d688c7ff98940982c34e..12e5bdcf7c4341ca4e4876bd4ac39fd512a81870 100755 (executable)
@@ -22,6 +22,9 @@ platform_do_upgrade() {
        armada-388-clearfog-pro)
                platform_do_upgrade_clearfog "$ARGV"
                ;;
+       armada-388-clearfog-base)
+               platform_do_upgrade_clearfog "$ARGV"
+               ;;
        *)
                default_do_upgrade "$ARGV"
                ;;
index dcbf4a67b37983181773f13f6cde0f06a8a0cc7f..f112bb9a1e2327e717afe46dffc01bc364b151ab 100644 (file)
@@ -28,6 +28,11 @@ define Build/boot-scr-cfpro
        mkimage -A arm -O linux -T script -C none -a 0 -e 0 -d cfpro-boot.script $@.bootscript
 endef
 
+define Build/boot-scr-cfbase
+       rm -f $@.bootscript
+       mkimage -A arm -O linux -T script -C none -a 0 -e 0 -d cfbase-boot.script $@.bootscript
+endef
+
 define Build/boot-img
        rm -f $@.boot
        mkfs.fat -C $@.boot 16384
@@ -182,6 +187,21 @@ define Device/armada-388-clearfog-pro
 endef
 TARGET_DEVICES += armada-388-clearfog-pro
 
+define Device/armada-388-clearfog-base
+  KERNEL_INSTALL := 1
+  KERNEL := dtb | kernel-bin
+  DEVICE_TITLE := SolidRun ClearFog Base
+  DEVICE_PACKAGES := \
+         kmod-nls-cp437 kmod-nls-iso8859-1 \
+         mkf2fs e2fsprogs kmod-fs-vfat kmod-fuse kmod-fs-f2fs \
+         kmod-ata-core kmod-ata-ahci kmod-ata-marvell-sata kmod-scsi-core kmod-scsi-generic \
+         kmod-button-hotplug kmod-gpio-button-hotplug
+  IMAGES := sdcard.img.gz
+  IMAGE/sdcard.img.gz := boot-scr-cfbase | boot-img | sdcard-img | gzip
+  IMAGE_NAME = $$(IMAGE_PREFIX)-$$(2)
+endef
+TARGET_DEVICES += armada-388-clearfog-base
+
 define Device/globalscale-mirabox
   $(Device/NAND-512K)
   DEVICE_DTS := armada-370-mirabox
diff --git a/target/linux/mvebu/image/cfbase-boot.script b/target/linux/mvebu/image/cfbase-boot.script
new file mode 100644 (file)
index 0000000..3043d26
--- /dev/null
@@ -0,0 +1,7 @@
+setenv bootargs console=ttyS0,115200n8 root=/dev/mmcblk0p2 rootfstype=squashfs rootwait overlay=/dev/mmcblk0p3
+setenv fdt_high 0x07a12000
+
+fatload mmc 0:1 0x02000000 zImage
+fatload mmc 0:1 0x05F00000 armada-388-clearfog-base.dtb
+
+bootz 0x02000000 - 0x05F00000