Difference between revisions of "IoTGateway/BSP/Android/ABV2 User Guide iMX6"

From ESS-WIKI
Jump to: navigation, search
(To create a bootable SD card)
m (Winston.huang moved page ABV2 User Guide iMX6 to IoTGateway/BSP/Android/ABV2 User Guide iMX6 without leaving a redirect: appropriate directory hierarchy)
 
(22 intermediate revisions by the same user not shown)
Line 75: Line 75:
 
:::'''hardware/imx/''' : HAL (Hardware Abstraction Layer)  
 
:::'''hardware/imx/''' : HAL (Hardware Abstraction Layer)  
 
::'''image/''' : all built images located in  
 
::'''image/''' : all built images located in  
::'''scripts/''' : to simplify building process (Please refer to [] & [] for details)  
+
::'''scripts/''' : to simplify building process (Please refer to [[#Build_Instructions|1.4]] & [[#Boot_up_from_SD_card_or_eMMC|1.5]] for details)
  
 
===<span style="color:#0070c0;">Naming Rule</span>===
 
===<span style="color:#0070c0;">Naming Rule</span>===
Line 148: Line 148:
 
:Boot up from SD card
 
:Boot up from SD card
 
:Perform the following commands in debug console
 
:Perform the following commands in debug console
::<code># cd /mk_inand</code>
+
::<code># cd /data/mkimage/scripts</code>
::<code># ./mksd-linux.sh /dev/mmcblk0</code>
+
::<code># sh ./mksd-android.sh <span style="color:purple;">'''${MMC_DEVICE}'''</span></code>
:press y followed by Enter, if following message shows up:
+
:Remove SD card, then target board can boot up from onboard eMMC.
::[[File:all_data_will_be_destroyed.png]]
+
 
:While "[Done]" shows up means the transferring is finished.
+
=Software Functionality=
 +
==<span style="color:#0070c0;">Serial Port Test</span>==
 +
===<span style="color:#0070c0;">Serial Port Setup</span>===
 +
#Click "Serial Port"
 +
#:[[File:imx6ABV1_APP_serialport.png|800px]]
 +
#Click "Setup"
 +
#:[[File:imx6ABV1_serialport_setup.png|800px]]
 +
#Click "Device" , and choose the used device(e.g. ttymxc1)
 +
#:[[File:imx6ABV1_serialport_setup_device_1.png]]
 +
#Click "Baud rate" , and choose the used baudrate(e.g. 115200)
 +
#:[[File:imx6ABV1_serialport_setup_device_2.png]]
 +
 
 +
===<span style="color:#0070c0;">Console Test</span>===
 +
#Open one serial console.
 +
#Click "Console"
 +
#:[[File:imx6ABV1_console.png|800px]]
 +
#:Typing some characters (e.g. "This is a test. 123456789ABCDEF") then pressing Enter in serial console, the identical message will shows up in reception block as below:
 +
#:[[File:imx6ABV1_console_serialport.png]]
 +
#:On the other hand, typing some message (ex. "MESSAGE from Android") in emission block, the identical message will shows up in serial console as below:
 +
#:[[File:imx6ABV1_console_message_from.png]]
 +
 
 +
===<span style="color:#0070c0;">Loopback Test</span>===
 +
#Plug loopback device into COM2
 +
#Click "Loopback"
 +
#:The loopback test result will show up as below
 +
#:[[File:imx6ABV1_loopback.png|800px]]
 +
 
 +
===<span style="color:#0070c0;">Send01010101 Test</span>===
 +
#Open one serial console.
 +
#Click Send01010101 .
 +
#:The character "U" (b'01010101) will show up continuously as below:
 +
#:[[File:imx6ABV1_send01010101.png]]
 +
 
 +
==<span style="color:#0070c0;">Display Output Option</span>==
 +
 
 +
===<span style="color:#0070c0;">Single HDMI Display</span>===
 +
:Perform the following command in u-boot:
 +
::<code>> setenv bootargs 'console=ttymxc0,115200 androidboot.console=ttymxc0 vmalloc=400M init=/init video=mxcfb0:dev=hdmi,1920x1080M@60,bpp=32 video=mxcfb1:off video=mxcfb2:off video=mxcfb3:off fbmem=28M androidboot.hardware=freescale'</code>
 +
::<code>> saveenv </code>
 +
::<code>> reset </code>
 +
 
 +
===<span style="color:#0070c0;">Single VGA Display</span>===
 +
:Perform the following command in u-boot:
 +
::<code>> setenv bootargs 'console=ttymxc0,115200 androidboot.console=ttymxc0 vmalloc=400M init=/init video=mxcfb0:dev=lcd,1920x1080M@60,bpp=32 video=mxcfb1:off video=mxcfb2:off video=mxcfb3:off fbmem=28M androidboot.hardware=freescale'</code>
 +
::<code>> saveenv </code>
 +
::<code>> reset </code>
 +
 
 +
===<span style="color:#0070c0;">Single LVDS Display</span>===
 +
:Perform the following command in u-boot:
 +
::<code>> setenv bootargs 'console=ttymxc0,115200 androidboot.console=ttymxc0 vmalloc=400M init=/init video=mxcfb0:dev=ldb,1024x768M@60,bpp=24 video=mxcfb1:off video=mxcfb2:off video=mxcfb3:off fbmem=28M androidboot.hardware=freescale'</code>
 +
::<code>> saveenv </code>
 +
::<code>> reset </code>
 +
 
 +
===<span style="color:#0070c0;">Dual Display</span>===
 +
:For example of HDMI & VGA, Perform the following command in u-boot:
 +
::<code>> setenv bootargs 'console=ttymxc0,115200 androidboot.console=ttymxc0 vmalloc=400M init=/init video=mxcfb0:dev=hdmi,1920x1080M@60,bpp=32 video=mxcfb1:dev=lcd,1920x1080M@60,bpp=32 video=mxcfb2:off video=mxcfb3:off fbmem=28M,28M androidboot.hardware=freescale'</code>
 +
::<code>> saveenv </code>
 +
::<code>> reset </code>
 +
 
 +
==<span style="color:#0070c0;">Network Setup==
 +
===<span style="color:#0070c0;">Wi-Fi</span>===
 +
#Click "Settings"
 +
#:[[File:imx6ABV1_APP_settings.png|800px]]
 +
#Turn Wi-Fi on
 +
#:[[File:imx6ABV1_settings_wifi_on.png|800px]]
 +
#Choose ESSID (e.g. ESSD Testing )
 +
#:[[File:imx6ABV1_settings_wifi_choose_ESSID.png|800px]]
 +
#Input correct password
 +
#:[[File:imx6ABV1_settings_wifi_password.png]]
 +
#Wi-Fi Authenticating/Connecting/Obtaining IP address
 +
#:[[File:imx6ABV1_settings_wifi_authenticating.png|800px]]
 +
#:[[File:imx6ABV1_settings_wifi_connecting.png|800px]]
 +
#:[[File:imx6ABV1_settings_wifi_obtaining_ip.png|800px]]
 +
#Wi-Fi connected
 +
#:[[File:imx6ABV1_settings_wifi_connected.png|800px]]
 +
 
 +
===<span style="color:#0070c0;">Ethernet</span>===
 +
#Click "Settings" / "Ethernet configuration" , then Turn on Ethernet
 +
#:[[File:imx6ABV1_settings_ethernet_config.png|800px]]
 +
#Click "Ethernet configuration"
 +
#:[[File:imx6ABV1_settings_ethernet_config_next_level.png|800px]]
 +
#Choose Connection Type (DHCP or Static IP)
 +
#:[[File:imx6ABV1_settings_ethernet_config_dhcp.png||400px]][[File:imx6ABV1_settings_ethernet_config_static.png|400px]]
 +
 
 +
==<span style="color:#0070c0;">To update system==
 +
#Refer to 1.4.6 to build OTA package.
 +
#Plug SD card that contains OTA package(update.zip) into SD slot.
 +
#Click "Settings" / "About tablet" / "Addition system updates" :
 +
#:[[File:imx6ABV1_settings_addition_system_updates.png|800px]]
 +
#Wait for one moment, system will reboot for updating
 +
#:[[File:imx6ABV1_poweroff.png|800px]]
 +
#It will take some time to update.
 +
 
 +
=System Recovery=
 +
Please refer to [[#To_create_a_bootable_SD_card|1.5.1]] & [[#To_transfer_whole_system_to_onboard_eMMC|1.5.2]] to create a bootable SD card and transfer whole system to on-board eMMC.

Latest revision as of 04:04, 29 September 2016

Android BSP User Guide for iMX6 series

Getting Started

Prerequisites

All operations in this guide are based on Ubuntu 12.04 LTS 64bit only.
First please install Ubuntu 12.04 LTS 64bit* with minimum 2GB memory.
* ubuntu-12.04.1-desktop-amd64.iso

To install required packages

Please login and perform the following commands:

$ sudo apt-get install ssh
$ sudo apt-get install ia32-libs libx11-dev:i386 libreadline6-dev:i386 \
libgl1-mesa-glx:i386 zlib1g-dev:i386 uuid-dev:i386 liblzo2-dev:i386 \ 
libncurses5-dev:i386
$ sudo apt-get install \
bison build-essential ccache dpkg flex gcc g++ gettext intltool \
libarchive-zip-perl libfreetype6-dev libdbus-glib-1-dev liborbit2-dev \
libxml2-dev libx11-dev libgtk2.0-dev liblzo2-2 libtool m4 \
patch rpm tcl uboot-mkimage uuid zlib1g zlib1g-dev \
git gnupg flex bison gperf build-essential  zip \
curl libc6-dev libncurses5-dev x11proto-core-dev libx11-dev:i386 \
libreadline6-dev:i386 libgl1-mesa-glx:i386 libgl1-mesa-dev g++-multilib \
mingw32 tofrodos python-markdown libxml2-utils xsltproc zlib1g-dev:i386 \
gcc-4.6 g++-4.6 cpp-4.6 gcc-4.6-multilib uuid-dev liblzo2-dev \
uboot-mkimage libarchive-zip-perl \
wget git-core unzip texinfo gawk diffstat build-essential chrpath \
sed cvs subversion coreutils texi2html \
docbook-utils python-pysqlite2 help2man make gcc g++ \
desktop-file-utils libgl1-mesa-dev libglu1-mesa-dev mercurial \
autoconf automake groff curl lzop asciidoc xterm
$ sudo apt-get install libncurses5-dev:i386 liblzo2-dev:i386 uuid-dev:i386
$ sudo ln -s /usr/lib/i386-linux-gnu/mesa/libGL.so.1 /usr/lib/i386-linux-gnu/libGL.so
$ tar zcvf ~/usr_lib_i386-linux-gnu_for_Building_Android_KK.tar.gz \
/usr/lib/i386-linux-gnu/{libuuid.a,libuuid.so,liblzo2.so,liblzo2.a}
$ sudo apt-get install uuid-dev liblzo2-dev
$ sudo tar zxvf ~/usr_lib_i386-linux-gnu_for_Building_Android_KK.tar.gz -C /

To install JDK

Please download "jdk-6u45-linux-x64.bin" manually, put it to directory ~/FILES/ and perform the following commands:

$ cd /usr/lib
$ sudo ~/FILES/jdk-6u45-linux-x64.bin
$ sudo mkdir jvm
$ cd jvm
$ sudo mv ../jdk1.6.0_45 .
$ cd jdk1.6.0_45/
$ sudo update-alternatives --install /usr/bin/java    java    /usr/lib/jvm/jdk1.6.0_45/jre/bin/java    2
$ sudo update-alternatives --install /usr/bin/javac   javac   /usr/lib/jvm/jdk1.6.0_45/bin/javac   2
$ sudo update-alternatives --install /usr/bin/jar     jar     /usr/lib/jvm/jdk1.6.0_45/bin/jar     2
$ sudo update-alternatives --install /usr/bin/javap   javap   /usr/lib/jvm/jdk1.6.0_45/bin/javap   2
$ sudo update-alternatives --install /usr/bin/javadoc javadoc /usr/lib/jvm/jdk1.6.0_45/bin/javadoc 2
$ sudo update-alternatives --config javap
$ sudo update-alternatives --config javadoc
$ sudo update-alternatives --config java
$ sudo update-alternatives --config javac
$ sudo update-alternatives --config jar
$ cd ~/
$ sudo sh -c "echo "JAVA_HOME=/usr/lib/jvm/jdk1.6.0_45" >> /etc/environment"

Introducing BSP

The BSP contains cross toolchain, linux kernel source code, u-boot source code, Android root file system and some scripts. It is consist of three top folders: "android", "image", "scripts".

Overview

The description of some important folders as below:
android/
prebuilt/gcc/linux-x86/host/ : cross toolchain
bootable/bootloader/uboot-imx/ : u-boot source code
kernel_imx/ : linux kernel source code
device/
fsl/ : Android device related settings
fsl-proprietary/ : modules & firmware(e.g. WiFi, GPU)
hardware/imx/ : HAL (Hardware Abstraction Layer)
image/ : all built images located in
scripts/ : to simplify building process (Please refer to 1.4 & 1.5 for details)

Naming Rule

It is consist of the model name followed by "AB" plus version number, for example, 4410ABV2080 which "4410" stands for RSB-4410, "AB" is acronym of Android BSP, "V2080" stands for Version 2.080; other model names list below:
"3420" stands for ROM-3420
"5420" stands for ROM-5420
"7420" stands for ROM-7420
"DS31" stands for UBC-DS31
"U220" stands for UBC-220

Conventions

${BOARD} : target board name (list below)

rsb_4410 / rom_3420 / rom_5420 / rom_7420 / ubc_ds31 / ubc_200

${BSPHOME} : the directory that BSP tarball extacted to

${SD_DEVICE} : device name of SD card in Ubuntu (e.g. /dev/sdf)

${MMC_DEVICE} : device name of on-board eMMC in Android (e.g. /dev/block/mmcblk0)

debug console / serial console

serial terminal program (e.g. minicom, putty, teraterm ...) that serial port is configured to 115200 8N1

terminal console

terminal program (e.g. gnome-terminal, xfce4-terminal ...)

Build Instructions

To build everything

Perform one of the following commands in terminal console
  • engineer version (default option)
$ cd ${BSPHOME}/scripts
$ ./mk_android.sh ${BOARD}
  • user version
$ cd ${BSPHOME}/scripts
$ ./mk_android.sh ${BOARD} user

To build boot loader

Perform the following command in terminal console
$ cd ${BSPHOME}/scripts
$ ./mk_bootloader.sh ${BOARD}

To build boot image

Perform the following command in terminal console
$ cd ${BSPHOME}/scripts
$ ./mk_bootimg.sh ${BOARD}

To build recovery image

Perform the following command in terminal console
$ cd ${BSPHOME}/scripts
$ ./mk_recoveryimg.sh ${BOARD}

To build system image

Perform the following command in terminal console
$ cd ${BSPHOME}/scripts
$ ./mk_systemimg.sh ${BOARD}

To build OTA image

Perform the following command in terminal console
$ cd ${BSPHOME}/scripts
$ ./mk_otapackage.sh ${BOARD}
and the OTA package, update.zip, is located in the following directory
../android/out/target/product/${BOARD}.

Boot up from SD card or eMMC

To create a bootable SD card

Perform the following command in terminal console
$ cd ${BSPHOME}/scripts
$ ./mksd-android.sh ${SD_DEVICE}

To transfer whole system to onboard eMMC

Boot up from SD card
Perform the following commands in debug console
# cd /data/mkimage/scripts
# sh ./mksd-android.sh ${MMC_DEVICE}
Remove SD card, then target board can boot up from onboard eMMC.

Software Functionality

Serial Port Test

Serial Port Setup

  1. Click "Serial Port"
    Imx6ABV1 APP serialport.png
  2. Click "Setup"
    Imx6ABV1 serialport setup.png
  3. Click "Device" , and choose the used device(e.g. ttymxc1)
    Imx6ABV1 serialport setup device 1.png
  4. Click "Baud rate" , and choose the used baudrate(e.g. 115200)
    Imx6ABV1 serialport setup device 2.png

Console Test

  1. Open one serial console.
  2. Click "Console"
    Imx6ABV1 console.png
    Typing some characters (e.g. "This is a test. 123456789ABCDEF") then pressing Enter in serial console, the identical message will shows up in reception block as below:
    Imx6ABV1 console serialport.png
    On the other hand, typing some message (ex. "MESSAGE from Android") in emission block, the identical message will shows up in serial console as below:
    Imx6ABV1 console message from.png

Loopback Test

  1. Plug loopback device into COM2
  2. Click "Loopback"
    The loopback test result will show up as below
    Imx6ABV1 loopback.png

Send01010101 Test

  1. Open one serial console.
  2. Click Send01010101 .
    The character "U" (b'01010101) will show up continuously as below:
    Imx6ABV1 send01010101.png

Display Output Option

Single HDMI Display

Perform the following command in u-boot:
> setenv bootargs 'console=ttymxc0,115200 androidboot.console=ttymxc0 vmalloc=400M init=/init video=mxcfb0:dev=hdmi,1920x1080M@60,bpp=32 video=mxcfb1:off video=mxcfb2:off video=mxcfb3:off fbmem=28M androidboot.hardware=freescale'
> saveenv
> reset

Single VGA Display

Perform the following command in u-boot:
> setenv bootargs 'console=ttymxc0,115200 androidboot.console=ttymxc0 vmalloc=400M init=/init video=mxcfb0:dev=lcd,1920x1080M@60,bpp=32 video=mxcfb1:off video=mxcfb2:off video=mxcfb3:off fbmem=28M androidboot.hardware=freescale'
> saveenv
> reset

Single LVDS Display

Perform the following command in u-boot:
> setenv bootargs 'console=ttymxc0,115200 androidboot.console=ttymxc0 vmalloc=400M init=/init video=mxcfb0:dev=ldb,1024x768M@60,bpp=24 video=mxcfb1:off video=mxcfb2:off video=mxcfb3:off fbmem=28M androidboot.hardware=freescale'
> saveenv
> reset

Dual Display

For example of HDMI & VGA, Perform the following command in u-boot:
> setenv bootargs 'console=ttymxc0,115200 androidboot.console=ttymxc0 vmalloc=400M init=/init video=mxcfb0:dev=hdmi,1920x1080M@60,bpp=32 video=mxcfb1:dev=lcd,1920x1080M@60,bpp=32 video=mxcfb2:off video=mxcfb3:off fbmem=28M,28M androidboot.hardware=freescale'
> saveenv
> reset

Network Setup

Wi-Fi

  1. Click "Settings"
    Imx6ABV1 APP settings.png
  2. Turn Wi-Fi on
    Imx6ABV1 settings wifi on.png
  3. Choose ESSID (e.g. ESSD Testing )
    Imx6ABV1 settings wifi choose ESSID.png
  4. Input correct password
    Imx6ABV1 settings wifi password.png
  5. Wi-Fi Authenticating/Connecting/Obtaining IP address
    Imx6ABV1 settings wifi authenticating.png
    Imx6ABV1 settings wifi connecting.png
    Imx6ABV1 settings wifi obtaining ip.png
  6. Wi-Fi connected
    Imx6ABV1 settings wifi connected.png

Ethernet

  1. Click "Settings" / "Ethernet configuration" , then Turn on Ethernet
    Imx6ABV1 settings ethernet config.png
  2. Click "Ethernet configuration"
    Imx6ABV1 settings ethernet config next level.png
  3. Choose Connection Type (DHCP or Static IP)
    Imx6ABV1 settings ethernet config dhcp.pngImx6ABV1 settings ethernet config static.png

To update system

  1. Refer to 1.4.6 to build OTA package.
  2. Plug SD card that contains OTA package(update.zip) into SD slot.
  3. Click "Settings" / "About tablet" / "Addition system updates" :
    Imx6ABV1 settings addition system updates.png
  4. Wait for one moment, system will reboot for updating
    Imx6ABV1 poweroff.png
  5. It will take some time to update.

System Recovery

Please refer to 1.5.1 & 1.5.2 to create a bootable SD card and transfer whole system to on-board eMMC.