summaryrefslogtreecommitdiffstats
path: root/board
diff options
context:
space:
mode:
authorJagan Teki <jagan@amarulasolutions.com>2018-10-26 18:33:57 +0530
committerThomas Petazzoni <thomas.petazzoni@bootlin.com>2018-11-01 14:21:32 +0100
commitacdad6d742ca9eabd7a7b6e57a217897117e65e1 (patch)
treecbb8b8edc7fcb335fdbe37b79cf475b96985fb01 /board
parentbf8e55fd08fd1ed55efa3d32c91ae71e43350038 (diff)
downloadbuildroot-acdad6d742ca9eabd7a7b6e57a217897117e65e1.tar.gz
buildroot-acdad6d742ca9eabd7a7b6e57a217897117e65e1.zip
configs/amarula_a64_relic: new defconfig
Add initial support for Amarula A64-Relic board with below features: - U-Boot 2018.07 - Linux 4.17.0-rc6 - Default packages from buildroot Signed-off-by: Jagan Teki <jagan@amarulasolutions.com> [Thomas: add missing BR2_TARGET_UBOOT_NEEDS_PYLIBFDT=y and BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y options.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Diffstat (limited to 'board')
-rw-r--r--board/amarula/a64-relic/extlinux.conf4
-rw-r--r--board/amarula/a64-relic/genimage.cfg10
-rwxr-xr-xboard/amarula/a64-relic/post-build.sh4
-rw-r--r--board/amarula/a64-relic/readme.txt81
4 files changed, 99 insertions, 0 deletions
diff --git a/board/amarula/a64-relic/extlinux.conf b/board/amarula/a64-relic/extlinux.conf
new file mode 100644
index 0000000000..9f469846bc
--- /dev/null
+++ b/board/amarula/a64-relic/extlinux.conf
@@ -0,0 +1,4 @@
+label linux-4.17.0-rc3
+ kernel /Image
+ devicetree /sun50i-a64-amarula-relic.dtb
+ append console=ttyS0,115200 earlyprintk root=/dev/mmcblk1p4 rootwait
diff --git a/board/amarula/a64-relic/genimage.cfg b/board/amarula/a64-relic/genimage.cfg
new file mode 100644
index 0000000000..002b6bb4d1
--- /dev/null
+++ b/board/amarula/a64-relic/genimage.cfg
@@ -0,0 +1,10 @@
+image boot.vfat {
+ vfat {
+ files = {
+ "Image",
+ "sun50i-a64-amarula-relic.dtb",
+ "extlinux"
+ }
+ }
+ size = 64M
+}
diff --git a/board/amarula/a64-relic/post-build.sh b/board/amarula/a64-relic/post-build.sh
new file mode 100755
index 0000000000..ec20fca7d9
--- /dev/null
+++ b/board/amarula/a64-relic/post-build.sh
@@ -0,0 +1,4 @@
+#!/bin/sh
+BOARD_DIR="$(dirname $0)"
+
+install -m 0644 -D $BOARD_DIR/extlinux.conf $BINARIES_DIR/extlinux/extlinux.conf
diff --git a/board/amarula/a64-relic/readme.txt b/board/amarula/a64-relic/readme.txt
new file mode 100644
index 0000000000..f4d29e4597
--- /dev/null
+++ b/board/amarula/a64-relic/readme.txt
@@ -0,0 +1,81 @@
+Amarula A64 Relic
+================
+
+Amarula A64-Relic is an Allwinner A64 based IoT device, which supports:
+- Allwinner A64 Cortex-A53
+- Mali-400MP2 GPU
+- AXP803 PMIC
+- 1GB DDR3 RAM
+- 8GB eMMC
+- AP6330 Wifi/BLE
+- MIPI-DSI
+- CSI: OV5640 sensor
+- USB OTG
+- 12V DC power supply
+
+Wiki link:
+https://openedev.amarulasolutions.com/display/ODWIKI/Amarual+A64-Relic
+
+Build
+=====
+
+ $ make amarula_a64_relic_defconfig
+
+ $ make
+
+build files at output/images/:
+ - sunxi-spl.bin
+ - u-boot.itb
+ - Image
+ - sun50i-a64-amarula-relic.dtb
+ - boot.vfat
+ - rootfs.ext4
+
+Write eMMC
+=========
+
+The board comes with an operating system preloaded on the eMMC.
+To replace it with the Buildroot-built system, take the following
+steps
+
+1. Connect the board UART with host and open minicom(ttyUSBx/115200N8)
+
+2. Supply 12V DC for power-on the board.
+
+3. Interrupt U-Boot by pressing enter
+
+4. Create GPT partitions
+ => mmc dev 1
+ => gpt write mmc 1 $partitions
+
+5. Connect the board USB-OTG with USB slot on the host.
+
+6. Initiate fastboot
+ => fastboot 0
+
+7. Write images from host onto eMMC using fastboot
+ $ cd output/images
+ $ sudo fastboot -i 0x1f3a flash loader1 sunxi-spl.bin
+ $ sudo fastboot -i 0x1f3a flash loader2 u-boot.itb
+ $ sudo fastboot -i 0x1f3a flash esp boot.vfat
+ $ sudo fastboot -i 0x1f3a flash system rootfs.ext4
+
+Update eMMC during Development
+==============================
+
+During development, reflashing the entire filesystem image at every
+change is time consuming. A useful alternative is to directly access
+over USB the filesystem stored on the eMMC, using the USB Mass Storage
+capability of U-Boot. To achieve this:
+
+1. Build U-Boot by enabling UMS
+ $ make uboot-menuconfig
+ (select CONFIG_CMD_USB_MASS_STORAGE=y)
+
+2. Follow all 6 steps from 'Write eMMC' and mount eMMC on host
+ => mmc dev 1
+ => ums 0 mmc 1
+
+--
+Jagan Teki <jagan@amarulasolutions.com>
+29-Jun-2018
OpenPOWER on IntegriCloud