AML8726-M: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
 
No edit summary
Line 1: Line 1:
=AML8726-M=
[[Category:Devices]]


{| class="infotable line"
= AML8726-M =
! Architecture
 
! '''ARMv7'''
{|
!Architecture
!'''ARMv7'''
|-
|-
| <span class="caps">CPU</span>
|CPU
| <span class="caps">ARM</span> Cortex A-9 (1Ghz)
|ARM Cortex A-9 (1Ghz)
|-
|-
| <span class="caps">RAM</span>
|RAM
| 512MB
|512MB
|-
|-
| <span class="caps">GPU</span>
|GPU
| Mali 400-M
|Mali 400-M
|-
|-
| OpenGL
|OpenGL
| OpenGL ES 2.0
|OpenGL ES 2.0
|-
|-
| Qt 5.0 (eglfs/QPA)
|Qt 5.0 (eglfs/QPA)
| Supported, with OpenGL ES 2.0
|Supported, with OpenGL ES 2.0
|}
|}


==Device Information==
== Device Information ==


The AML8726-M is made by [http://amlogic.com Amlogic Inc] ''[amlogic.com]''.
The AML8726-M is made by &quot;Amlogic Inc&amp;quot;:http://amlogic.com.


* “AML8726-M device is designed for the tablet and <span class="caps">MID</span> applications. It integrates a power <span class="caps">CPU</span>, a 2D/3D graphics subsystem and a state-of-the arts video decoding engine with all major peripherals to form the ultimate multimedia SoC.” [http://www.amlogic.com/product02.htm 1] ''[amlogic.com]'' Amlogic product information
* &quot;AML8726-M device is designed for the tablet and MID applications. It integrates a power CPU, a 2D/3D graphics subsystem and a state-of-the arts video decoding engine with all major peripherals to form the ultimate multimedia SoC.&quot;<br /> &quot;1&amp;quot;:http://www.amlogic.com/product02.htm Amlogic product information


It’s used in the Vivaldi tablet (based on zenithink c71) which uses Plasma Active as it’s UI.
It's used in the Vivaldi tablet (based on zenithink c71) which uses Plasma Active as it's UI.


===Software===
=== Software ===


Amlogic appears to be primarily focusing on Android support for this board. Much of the software stack is documented on their [http://openlinux.amlogic.com/wiki/index.php/Arm openlinux wiki] ''[openlinux.amlogic.com]''. You can download the rootfs from [http://openlinux.amlogic.com/download/linux/ARM/filesystem/ here] ''[openlinux.amlogic.com]'' and the kernel from [http://openlinux.amlogic.com/download/linux/ARM/kernel/ here] ''[openlinux.amlogic.com]''.
Amlogic appears to be primarily focusing on Android support for this board. Much of the software stack is documented on their &quot;openlinux wiki&amp;quot;:http://openlinux.amlogic.com/wiki/index.php/Arm. You can download the rootfs from &quot;here&amp;quot;:http://openlinux.amlogic.com/download/linux/ARM/filesystem/ and the kernel from &quot;here&amp;quot;:http://openlinux.amlogic.com/download/linux/ARM/kernel/.


==Qt5 eglfs/QPA==
== Qt5 eglfs/QPA ==


If you have v-sync problem use this workaround<br />http://forum.qt.io/viewthread/17930/
If you have v-sync problem use this workaround<br />http://forum.qt.io/viewthread/17930/


===Toolchain===
=== Toolchain ===


We are using the Code Soucery 2011.09 release, available here:
We are using the Code Soucery 2011.09 release, available here:
Line 43: Line 45:
https://sourcery.mentor.com/sgpp/lite/arm/portal/release2029
https://sourcery.mentor.com/sgpp/lite/arm/portal/release2029


===Compiling Qt5===
=== Compiling Qt5 ===
 
===Categories:===


* [[:Category:Devices|Devices]]
<code><br />$ mkdir build &amp;&amp; cd build<br />$ export QTSRCDIR=&lt;path_to_qt5&amp;gt; # top level qt5.git and not qtbase<br />$ export TOOLCHAIN_PATH=&lt;path_to_toolchain&amp;gt; # see section above<br />$ export SYSROOT=&lt;path_to_rootfs&amp;gt;<br />$ export PREFIX=&lt;install_path_on_target&amp;gt;<br />$ $QTSRCDIR/configure -device linux-arm-amlogic-8726M-g++ -force-pkg-config <s>device-option CROSS_COMPILE=$TOOLCHAIN_PATH/arm-2010q1/bin/arm-none-linux-gnueabi</s> -sysroot $SYSROOT -prefix $PREFIX -make libs -opensource -confirm-license<br />$ make module-qtbase module-qtdeclarative<br />$ make install # will install Qt into the $SYSROOT/$PREFIX

Revision as of 09:26, 24 February 2015


AML8726-M

Architecture ARMv7
CPU ARM Cortex A-9 (1Ghz)
RAM 512MB
GPU Mali 400-M
OpenGL OpenGL ES 2.0
Qt 5.0 (eglfs/QPA) Supported, with OpenGL ES 2.0

Device Information

The AML8726-M is made by "Amlogic Inc&quot;:http://amlogic.com.

  • "AML8726-M device is designed for the tablet and MID applications. It integrates a power CPU, a 2D/3D graphics subsystem and a state-of-the arts video decoding engine with all major peripherals to form the ultimate multimedia SoC."
    "1&quot;:http://www.amlogic.com/product02.htm Amlogic product information

It's used in the Vivaldi tablet (based on zenithink c71) which uses Plasma Active as it's UI.

Software

Amlogic appears to be primarily focusing on Android support for this board. Much of the software stack is documented on their "openlinux wiki&quot;:http://openlinux.amlogic.com/wiki/index.php/Arm. You can download the rootfs from "here&quot;:http://openlinux.amlogic.com/download/linux/ARM/filesystem/ and the kernel from "here&quot;:http://openlinux.amlogic.com/download/linux/ARM/kernel/.

Qt5 eglfs/QPA

If you have v-sync problem use this workaround
http://forum.qt.io/viewthread/17930/

Toolchain

We are using the Code Soucery 2011.09 release, available here:

https://sourcery.mentor.com/sgpp/lite/arm/portal/release2029

Compiling Qt5


$ mkdir build && cd build
$ export QTSRCDIR=<path_to_qt5&gt; # top level qt5.git and not qtbase
$ export TOOLCHAIN_PATH=<path_to_toolchain&gt; # see section above
$ export SYSROOT=<path_to_rootfs&gt;
$ export PREFIX=<install_path_on_target&gt;
$ $QTSRCDIR/configure -device linux-arm-amlogic-8726M-g++ -force-pkg-config device-option CROSS_COMPILE=$TOOLCHAIN_PATH/arm-2010q1/bin/arm-none-linux-gnueabi -sysroot $SYSROOT -prefix $PREFIX -make libs -opensource -confirm-license
$ make module-qtbase module-qtdeclarative
$ make install # will install Qt into the $SYSROOT/$PREFIX