4AJ.2.1 OMAP4 Panda ES
From OMAPpedia
These Notes are an effort from the community to port the 4AJ.2.1 Release from Texas Instruments to the Panda and Panda ES boards without any warranty of any kind Texas Instruments is not responsible for supporting these notes, it is up to the community. Feel free to use this instructions under your own risk being aware that if you face any issue you have to fix it by yourself
[edit] Introduction
This software has been tested in the following software and hardware environment:
OS Kernel: Linux® 3.0
Android: Android Jelly Bean 4AJ2.1
Toolchain: CodeSourcery compiler version Sourcery G++ Lite 2010q1-202 for ARM GNU/Linux
Reference hardware platforms: TI OMAP4 4430/60 Pandaboard and Pandaboard ES
Build Host OS: Ubuntu
[edit] Current status
- Device is booting up to UI
- HDMI connection: works
- DVI connection: works
- USB Host: works;
- Mouse connected to USB works
- Ethernet: drivers works; UI settings is not working, the issue is fully investigated but not all patches are ready yet
- Audio/Video playback: is not working
- WiFi/Bluetooth: is not working
[edit] Tools & Dependency packages
Pre-requisite packages for building the Android Filesystem (Note: This is with reference to Ubuntu 12.04 64-bit). Ubuntu 64-bit is required for the cross-compilation of Android Ice Cream Sandwich Filesystem.
If you are behind a firewall, you will have to set-up firewall using the instructions in [1].
The following commands will install the correct packages to your server:
sudo apt-get install git-core flex bison gperf libesd0-dev zip libwxgtk2.6-dev zlib1g-dev build-essential tofrodos sudo apt-get install lib32readline6-dev libstdc++6 lib32z1 lib32z1-dev ia32-libs g++-multilib libx11-dev lib32ncurses5-dev
The following commands will install the host compilers needed in your server:
sudo apt-get install gcc-4.4 gcc-4.4-multilib g++-4.4 g++-4.4-multilib cd /usr/bin sudo ln -sf gcc-4.4 gcc sudo ln -sf g++-4.4 g++
Add the partner repositories and install the JDK:
sudo add-apt-repository "deb http://archive.canonical.com/ lucid partner" sudo apt-get update sudo apt-get install sun-java6-jdk
Install repo tool:
mkdir ~/bin -p sudo apt-get install curl curl chmod a+x ~/bin/repo export PATH=~/bin:$PATH
If you do not have sudo rights to your machine, contact your System Administrator for assistance.
Tool Chain for building Kernel and Drivers
The Kernel and Driver sources are built using Sourcery G++ Lite 2010q1-202 for ARM GNU/Linux version (This particular version is needed for the AFS to work properly).
This tool chain can be obtained from [2].
[edit] Downloading Release Software
To obtain Android Filesystem Sources follow:
cdmkdir -p 4AJ.2.1; cd 4AJ.2.1 export YOUR_PATH=`pwd` mkdir -p mydroid; cd mydroid export MYDROID=`pwd` repo init -u git://git.omapzoom.org/platform/omapmanifest.git -b 27.x -m RLS4AJ.2.1_JellyBean.xml repo sync
To obtain Kernel & Driver Sources follow:
cd ${YOUR_PATH} git clone git://git.omapzoom.org/kernel/omap.git kernel/android-3.0 cd kernel/android-3.0 git checkout cda0054a3304d5fb744e4ff26f5f72b4fcf1a572
To obtain U-Boot Sources follow:
cd ${YOUR_PATH} git clone git://git.omapzoom.org/repo/u-boot.git u-boot cd u-boot git checkout a7a88624fb4d9b39c2a308c89d1d5ffb239072a9
To obtain X-loader Sources follow:
cd ${YOUR_PATH} git clone git://git.omapzoom.org/repo/x-loader.git x-loader cd x-loader git checkout 8eb4c159f0eef422dddfa1e0c7954096c107d224
[edit] Release Content
This release has the below content: - A9 source code for accelerating Video
[edit] Patching for Pandaboard Support
[edit] Setting up environment
From your work directory (where your 4AJ.2.1 folder resides):
export YOUR_PATH=`pwd` export MYDROID=${YOUR_PATH}/mydroid
[edit] Patching KERNEL
cd ${YOUR_PATH}/kernel/android-3.0 git fetch http://review.omapzoom.org/kernel/omap refs/changes/88/30588/1 && git cherry-pick FETCH_HEAD git fetch http://review.omapzoom.org/kernel/omap refs/changes/89/30589/1 && git cherry-pick FETCH_HEAD git fetch http://review.omapzoom.org/kernel/omap refs/changes/90/30590/1 && git cherry-pick FETCH_HEAD git fetch http://review.omapzoom.org/kernel/omap refs/changes/91/30591/1 && git cherry-pick FETCH_HEAD git fetch http://review.omapzoom.org/kernel/omap refs/changes/92/30592/1 && git cherry-pick FETCH_HEAD git fetch http://review.omapzoom.org/kernel/omap refs/changes/93/30593/1 && git cherry-pick FETCH_HEAD git fetch http://review.omapzoom.org/kernel/omap refs/changes/94/30594/1 && git cherry-pick FETCH_HEAD git fetch http://review.omapzoom.org/kernel/omap refs/changes/95/30595/1 && git cherry-pick FETCH_HEAD git fetch http://review.omapzoom.org/kernel/omap refs/changes/96/30596/1 && git cherry-pick FETCH_HEAD git fetch http://review.omapzoom.org/kernel/omap refs/changes/97/30597/1 && git cherry-pick FETCH_HEAD
[edit] Patching MYDROID
cd ${MYDROID}/device/ti/panda git fetch http://review.omapzoom.org/device/ti/panda refs/changes/18/30518/1 && git cherry-pick FETCH_HEAD git fetch http://review.omapzoom.org/device/ti/panda refs/changes/19/30519/1 && git cherry-pick FETCH_HEAD git fetch http://review.omapzoom.org/device/ti/panda refs/changes/20/30520/1 && git cherry-pick FETCH_HEAD git fetch http://review.omapzoom.org/device/ti/panda refs/changes/85/30585/2 && git cherry-pick FETCH_HEAD cd ${MYDROID}/device/ti/proprietary-open git fetch http://review.omapzoom.org/device/ti/proprietary-open refs/changes/59/30659/1 && git cherry-pick FETCH_HEAD cd ${MYDROID}/device/ti/common-open git fetch http://review.omapzoom.org/device/ti/common-open refs/changes/60/30660/1 && git cherry-pick FETCH_HEAD cd ${MYDROID}/hardware/ti/wlan git fetch http://review.omapzoom.org/platform/hardware/ti/wlan refs/changes/61/30661/1 && git cherry-pick FETCH_HEAD
[edit] Build Instructions
[edit] Setting up build environment
From your work directory (where your 4AJ.2.1 folder resides):
export YOUR_PATH=`pwd` export PATH=$PATH:/arm-2010q1/bin export MYDROID=${YOUR_PATH}/mydroid mkdir $MYDROID/logs export CROSS_COMPILE=arm-none-linux-gnueabi- export PATH=${YOUR_PATH}/u-boot/tools:$PATH
[edit] Building X-LOADER
cd ${YOUR_PATH}/x-loader make distclean make ARCH=arm omap4430panda_config make ift 2>&1 |tee $MYDROID/logs/x-loader_make.out
[edit] Building U-BOOT
cd ${YOUR_PATH}/u-boot make distclean make ARCH=arm omap4430panda_config make 2>&1 |tee $MYDROID/logs/u-boot_make.out
[edit] Building Kernel
To create kernel uImage you need to add "mkimage" directory path to your "PATH" environment variable:
cd ${YOUR_PATH}/kernel/android-3.0 make ARCH=arm distclean make ARCH=arm panda_defconfig make ARCH=arm uImage 2>&1 |tee $MYDROID/logs/kernel_make.out
[edit] Building Kernel modules
cd ${YOUR_PATH}/kernel/android-3.0 make ARCH=arm modules 2>&1 |tee $MYDROID/logs/kernel_modules.out
[edit] Building WLAN driver
cd $MYDROID/hardware/ti/wlan/mac80211/compat_wl12xx export KERNEL_DIR=${YOUR_PATH}/kernel/android-3.0 export KLIB=${KERNEL_DIR} export KLIB_BUILD=${KERNEL_DIR} make ARCH=arm
The above step will produce the following kernel WLAN modules: compat.ko, cfg80211.ko, mac80211.ko, wl12xx.ko and wl12xx_sdio.ko. These modules are pushed into the /system/lib/modules directory on the system image.
[edit] Building Android Filesystem (AFS) with TI Codecs enabled
In the make step below use the number of cores you have available; i.e. -j4 (for 4 cores) or -j12 (for 12 cores)
cd $MYDROID source build/envsetup.sh lunch full_panda-eng make clean ;#(required for rebuild only) make -j4 2>&1 |tee $MYDROID/logs/android_make.out
[edit] Building AFS with Android Codecs
This release was not verified with Android codecs.
[edit] Building SGX driver
Extract the source code from the tarball if you haven't yet
cd $MYDROID/device/ti/proprietary-open/omap4/sgx_src tar xzf eurasia_km.tgz
cd $MYDROID/device/ti/proprietary-open/omap4/sgx_src/eurasia_km/eurasiacon/build/linux2/omap4430_android export KERNELDIR=${YOUR_PATH}/kernel/android-3.0 make ARCH=arm CROSS_COMPILE=arm-none-linux-gnueabi- TARGET_PRODUCT="blaze_tablet" BUILD=release TARGET_SGX=540 PLATFORM_VERSION=4.0
The above step will produce the following kernel SGX modules: pvrsrvkm_sgx540_120.ko and omaplfb_sgx540_120.ko. These modules are pushed into the /system/lib/modules directory on the system image.
Note that you need to add DISPLAY_CONTROLLER_COMPONENT := dc_omapfb3_linux in eurasia_km/eurasiacon/build/linux2/omap4430_android/Makefile to generate omaplfb_sgx540_120.ko
[edit] Preparing Android binaries
The following binaries maybe are not required by the Panda board.
export BOARD_TYPE="panda" cd $MYDROID/out/target/product/$BOARD_TYPE mkdir -p system/lib/modules cp $MYDROID/hardware/ti/wlan/mac80211/compat_wl12xx/compat/compat.ko system/lib/modules/ cp $MYDROID/hardware/ti/wlan/mac80211/compat_wl12xx/net/wireless/cfg80211.ko system/lib/modules/ cp $MYDROID/hardware/ti/wlan/mac80211/compat_wl12xx/net/mac80211/mac80211.ko system/lib/modules/ cp $MYDROID/hardware/ti/wlan/mac80211/compat_wl12xx/drivers/net/wireless/wl12xx/wl12xx.ko system/lib/modules/ cp $MYDROID/hardware/ti/wlan/mac80211/compat_wl12xx/drivers/net/wireless/wl12xx/wl12xx_sdio.ko system/lib/modules/ cp $MYDROID/out/target/product/$BOARD_TYPE/target/kbuild/omaplfb_sgx540_120.ko system/lib/modules/ cp $MYDROID/out/target/product/$BOARD_TYPE/target/kbuild/pvrsrvkm_sgx540_120.ko system/lib/modules/
[edit] Preparing images
cd $YOUR_PATH mkdir omap4_sd_files_$BOARD_TYPE cd omap4_sd_files_$BOARD_TYPE cp -f $MYDROID/out/host/linux-x86/bin/fastboot . cp -f $MYDROID/out/host/linux-x86/bin/mkbootimg . cp -f $MYDROID/out/host/linux-x86/bin/simg2img . cp -f $MYDROID/out/host/linux-x86/bin/make_ext4fs . cp -f ${YOUR_PATH}/x-loader/MLO . cp -f ${YOUR_PATH}/u-boot/u-boot.bin . cp -f ${YOUR_PATH}/kernel/android-3.0/arch/arm/boot/zImage .
Creating img files:
cd ${MYDROID} find out/target/product/$BOARD_TYPE -name *.img -exec rm -f {} \; make cp -f ${MYDROID}/out/target/product/$BOARD_TYPE/*.img $YOUR_PATH/omap4_sd_files_$BOARD_TYPE
This build should not take too much time and will re-generate a new *.img files.
Now from this new directory we will create the SD images which will be flashed using fastboot protocol (described later). First create boot.img image using kernel image we copied previously:
cd $YOUR_PATH/omap4_sd_files_$BOARD_TYPE $MYDROID/device/ti/support-tools/boot/omap4/umulti2.sh
Now create cache partition:
cd $YOUR_PATH/omap4_sd_files_$BOARD_TYPE dd if=/dev/zero of=./cache.img bs=1048510 count=128 mkfs.ext4 -F cache.img -L cache
[edit] Flashing the OMAP4 Hardware
[edit] First time flashing on SD
If there is no u-boot on your board, you will have to boot using SD card. Copy u-boot.bin and MLO files to an SD card (boot partition) and then boot the target board from this external SD card. Once you boot the board, start fastboot server on the target (Pandaboard).
# fastboot
You should see a message such as:
"Fastboot entered..."
Now from the PC execute following commands to flash MLO and u-boot to SD
sudo ./fastboot oem format sudo ./fastboot flash xloader MLO sudo ./fastboot flash bootloader u-boot.bin sudo ./fastboot reboot
This will create several partitions on your SD card that has specific proposes for the Panda board
For Formatting the SD Card:
See Android Build SD Configuration page
[edit] Not first time flashing on SD
After the SD files are available you then can use the fastboot to upload binaries to your Panda or Panda ES.
Connect the Panda or Panda ES mini USB port to your Linux machine and go to where the SD files are. Previous partitions created will be deleted and SD will be flashed with new u-boot and MLO. You need to boot the board and start fastboot server on the target (Pandaboard) by keeping the USER button press.
You should see a message such as:
"Fastboot entered..."
When running the fastboot the command should be issued as super user then run:
sudo ./fastboot flash xloader MLO sudo ./fastboot flash bootloader u-boot.bin sudo ./fastboot flash boot boot.img sudo ./fastboot flash system system.img sudo ./fastboot flash cache cache.img sudo ./fastboot flash userdata userdata.img sudo ./fastboot reboot
Panda board will boot up on its own with the new image in a few minutes. Until the user interface is ready for use, please avoid interrupting it by pressing any keys etc. This will detect your board and flash the images to the board.
[edit] Resources
[edit] 4AJ.2.1 Release
To get a stable release as base for the porting the 4AJ.2.1 Texas Instrument release for Blaze and Blaze Tablet was considered 4AJ.2.1 OMAP4 Jelly Bean Release Notes
[edit] WLAN Calibration
For optimal Wi-Fi performance calibration of Wi-Fi hardware is mandatory, follow the procedure from http://omappedia.org/wiki/Android_Mac80211#WLAN_Calibration_Instruction