Difference between revisions of "The bootloader U-Boot"

From IGEP - ISEE Wiki

Jump to: navigation, search
Line 9: Line 9:
 
<span style="color: #000000;">That means that U-Boot is necessary to perform a certain task, but it's nothing you want to throw any significant resources at. Typically U-Boot is stored in relatively small NOR flash memory, which is expensive compared to the much larger NAND devices often used to store the operating system and the application.</span>
 
<span style="color: #000000;">That means that U-Boot is necessary to perform a certain task, but it's nothing you want to throw any significant resources at. Typically U-Boot is stored in relatively small NOR flash memory, which is expensive compared to the much larger NAND devices often used to store the operating system and the application.</span>
  
=How to cross compile the U-Boot=
 
<span style="color: #000000;">In order to compile and build the U-Boot for IGEP PROCESSOR BOARDS you should set the CROSS_COMPILE variable. Set this to the prefix of your toolchain (including the trailing dash "-"). So if your toolchain is invoked as say '''arm-linux-gnueabi-gcc''', just chop off that trailing gcc and that's what you use: arm-linux-gnueabihf-.</span>
 
  
<span style="color: #000000;">As example, once you've downloaded the u-boot source, you should follow these steps:</span>
 
 
<span style="color: #002d87;">make CROSS_COMPILE=[cross compiler] [board config]
 
make CROSS_COMPILE=[cross compiler]</span>
 
<span style="color: #000000;">The result will be a MLO and a u-boot.img file. You can install these files, for example, in the boot partition of a SD-card.</span>
 
  
 
==Necessary package==
 
==Necessary package==
Line 33: Line 26:
  
 
==Download & Prepare your U-BOOT==
 
==Download & Prepare your U-BOOT==
===<span dir="auto">U-Boot '''Freescale-NXP iMX6''' Series</span>===
+
We will relate the commercial names with their technical names. In order to send a clear message and not get confussions.
{| class="contenttable sortable" style="width: 886px;"
 
|- style="height: 22px;"
 
! style="width: 871px; height: 22px; text-align: center; vertical-align: middle;" colspan="2"|
 
====Downloading binary files====
 
|- style="height: 44px;"
 
! style="background-color: #ffffff;"|'''<span id="Clone_the_u-boot_repo" class="mw-headline">Clone the u-boot repo</span>'''
 
| style="width: 603px; height: 44px;"|
 
<span style="color: #000000;">Clone the u-boot repository using git address:</span><br /><span style="color: #002d87;">$ git clone git@git.isee.biz:arm-boot/u-boot-imx.git </span>
 
  
<span style="color: #000000;">or</span><br /><span style="color: #002d87;">$ git clone</span> [https://git.isee.biz/arm-boot/u-boot-imx.git https://git.isee.biz/arm-boot/u-boot-imx.git]
+
In addition, will be a distintion between NXP products ( IGEP SMARC iMX6) and Texas products.
  
|- style="height: 89px;"
+
{| class="contenttable sortable"
! style="background-color: #ffffff;"|'''<span id="Checkout_u-boot_repo" class="mw-headline">Checkout u-boot repo </span>'''
+
|-
| style="width: 603px; height: 89px;"|
+
!|'''Commercial Name'''
<span style="color: #000000;">Go to the u-boot-imx directory and checkout the version 2015.04.y as:</span>
+
!|'''Technical name'''
 
+
|-
<span style="color: #002d87;">$ cd u-boot-imx</span><br /><span style="color: #002d87;">$ git checkout remotes/origin/isee_imx_v2017.03_4.9.11_1.0.0_ga -b isee_imx_v2017.03_4.9.11_1.0.0_ga</span>
+
| style="background-color: #f2f2f2; text-align: center;" colspan="2"|'''Texas instruments'''
 
+
|-
|}
+
||IGEPv2
 
+
||<span style="color: #002d87;">IGEP0020, DM3730</span>
{| class="contenttable sortable" style="width: 884px;"
+
|-
 +
||IGEP COM MODULE
 +
||<span style="color: #002d87;">IGEP0030, DM3730</span>
 +
|-
 +
||IGEP COM PROTON
 +
||<span style="color: #002d87;">IGEP0032, OMAP3530</span>
 +
|-
 +
||IGEP COM AQUILA
 +
||<span style="color: #002d87;">IGEP0033, AM335x</span>
 +
|-
 +
||IGEPv5
 +
||<span style="color: #002d87;">IGEP0050, OMAP5</span>
 +
|-
 +
||IGEP SMARC AM335x
 +
||<span style="color: #002d87;">IGEP0034, AM335x</span>
 +
|-
 +
||IGEP SMARC AM335x Lite
 +
||<span style="color: #002d87;">IGEP0034, Lite, AM335x</span>
 +
|-
 +
| style="background-color: #f2f2f2; text-align: center;" colspan="2"|'''Freescale-NXP'''
 
|-
 
|-
! style="width: 858px; text-align: center; vertical-align: middle;" colspan="2"|
+
||IGEP SMARC iMX6 Solo
====<span id="Set_the_board_configuration" class="mw-headline">Set the board</span><span id="Set_the_board_configuration" class="mw-headline"> configuratio</span><span id="Set_the_board_configuration" class="mw-headline">n</span>====
+
||<span style="color: #002d87;">IGEP0046, IMX6XX</span>
 
|-
 
|-
| style="background-color: #ffffff; width: 267px;"|'''IGEP0046 SMARC Quad'''
+
||IGEP SMARC iMX6 Dual Lite
| style="width: 598px;"|<span style="color: #002d87;">$ make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- igep0046_imx6dl_2G_defconfig</span>
+
||<span style="color: #002d87;">IGEP0046, iMX6DL</span>
 
|-
 
|-
| style="background-color: #ffffff; width: 267px;"|'''IGEP0046 SMARC Dual lite'''
+
||IGEP SMARC iMX6 Dual
| style="width: 598px;"|<span style="color: #002d87;">$ make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- igep0046_imx6q_2G_defconfig</span>
+
||<span style="color: #002d87;">IGEP0046, iMX6XX</span>
 
|-
 
|-
| style="background-color: #ffffff; width: 267px;"|'''IGEP0046 SMARC Solo'''
+
||IGEP SMARC iMX6 Quad
| style="width: 598px;"|<span style="color: #002d87;">$ make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- xxxxx</span>
+
||<span style="color: #002d87;">IGEP0046, iMX6Q</span>
 
|}
 
|}
 
====<span id="Build_u-boot" class="mw-headline">Build u-boot</span>====
 
<span class="mw-headline">You can build u-boot executing this command:</span>
 
 
<span style="color: #002d87;"><code><span style="color: #002d87;">$</span> <span style="color: #002d87;">make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf-</span></code></span>
 
 
 
 
  
  
 
===<span dir="auto">U-Boot '''Texas Instruments''' Series</span>===
 
===<span dir="auto">U-Boot '''Texas Instruments''' Series</span>===
<div id="bodyContent" class="clearfix"></div>
+
<div class="clearfix">First we will download the U-Boot file for be able to make the configuration.</div>
 +
<div class="clearfix"></div>
 
<div class="clearfix">
 
<div class="clearfix">
{| class="contenttable sortable" style="width: 886px;"
+
{| class="contenttable sortable" style="width: 882px;"
 
|- style="height: 28.0313px;"
 
|- style="height: 28.0313px;"
 
! style="width: 854px; height: 28.0313px; text-align: center; vertical-align: middle;" colspan="2"|
 
! style="width: 854px; height: 28.0313px; text-align: center; vertical-align: middle;" colspan="2"|
 
====Downloading binary files====
 
====Downloading binary files====
 
|- style="height: 31px;"
 
|- style="height: 31px;"
! style="background-color: #ffffff; height: 31px; width: 341px;"|'''<span id="Clone_the_u-boot_repo" class="mw-headline">Clone the u-boot repo</span>'''
+
! style="background-color: #ffffff; height: 31px; width: 214px;"|'''<span id="Clone_the_u-boot_repo" class="mw-headline">Clone the u-boot repo</span>'''
| style="width: 513px; height: 31px;"|
+
| style="width: 640px; height: 31px;"|
Clone the u-boot repository using git address:<br /><span style="color: #002d87;">$ git clone @git.isee.biz:arm-boot/u-boot-arm.git</span><br />or
+
Clone the u-boot repository using git address:
  
$ git clone [https://git.isee.biz/arm-boot/u-boot-arm.git https://git.isee.biz/arm-boot/u-boot-arm.git]
+
<span style="color: #002d87;">$ git clone @git.isee.biz:arm-boot/u-boot-arm.git</span>
 +
or
  
 +
<span style="color: #002d87;">@@@PRE1@@@nbsp;git clone</span> <a class="external bs-external-link bs-protocol-https" title="https://git.isee.biz/arm-boot/u-boot-arm.git" href="https://git.isee.biz/arm-boot/u-boot-arm.git" data-bs-type="external_link" data-bs-wikitext="https://git.isee.biz/arm-boot/u-boot-arm.git%20https://git.isee.biz/arm-boot/u-boot-arm.git">https://git.isee.biz/arm-boot/u-boot-arm.git</a>
 
|- style="height: 110px;"
 
|- style="height: 110px;"
! style="background-color: #ffffff; height: 110px; width: 341px;"|'''<span id="Checkout_u-boot_repo" class="mw-headline">Checkout u-boot repo </span>'''
+
! style="background-color: #ffffff; height: 110px; width: 214px;"|'''<span id="Checkout_u-boot_repo" class="mw-headline">Checkout u-boot repo </span>'''
| style="width: 513px; height: 110px;"|
+
| style="width: 640px; height: 110px;"|
 
Go to the u-boot-arm directory and checkout the isee_v2017.03 as:
 
Go to the u-boot-arm directory and checkout the isee_v2017.03 as:
  
<span style="color: #002d87;">$ cd u-boot-arm</span>
+
<span style="color: #002d87;">$ cd u-boot-arm<br>$ git checkout remotes/origin/isee_v2017.03 -b isee_v2017.03</span>
 +
|}
 +
 
 +
Once we have downloaded we will execute the file called '''defconfig,''' that it variates in function of each module. It's recommended to make a clean of console... 
  
<span style="color: #002d87;">$ git checkout remotes/origin/isee_v2017.03 -b isee_v2017.03</span>
+
$ make distclean
  
|}</div>
+
</div>
{| class="contenttable sortable" style="width: 869px;"
+
{| class="contenttable sortable" style="width: 888px; height: 441px;"
 
|-
 
|-
! style="width: 853px; text-align: center; vertical-align: middle;" colspan="2"|
+
! style="width: 862px; text-align: center; vertical-align: middle;" colspan="2"|
====<span id="Set_the_board_configuration" class="mw-headline">Set the board</span><span id="Set_the_board_configuration" class="mw-headline"> configuratio</span><span id="Set_the_board_configuration" class="mw-headline">n</span>====
+
====<span id="Set_the_board_configuration" class="mw-headline">Set the board</span><span id="Set_the_board_configuration" class="mw-headline"> configuratio</span><span id="Set_the_board_configuration" class="mw-headline">n(Prepare your U-BOOT)</span>====
 
|-
 
|-
! style="background-color: #ffffff; width: 350px;"|IGEP COM AQUILA RB11 (256MB RAM)
+
! style="background-color: #ffffff; width: 209px;"|IGEPv2
| style="width: 503px;"|<span style="color: #002d87;">$ make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- am335x_igep0033_defconfig</span>
+
| style="width: 644px;"|
 +
<span style="color: #002d87;">$ make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- igep0020_defconfig</span>
 
|-
 
|-
! style="background-color: #ffffff; width: 350px;"|IGEP COM PROTON OMAP3530 (IGEP0032)
+
! style="background-color: #ffffff; width: 209px;"|IGEP COM Module 
| style="width: 503px;"|<span style="color: #002d87;">$ make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- igep0032_defconfig</span>
+
| style="width: 644px;"|
 +
<span style="color: #002d87;">$ make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- igep0030_defconfig </span>
 
|-
 
|-
! style="background-color: #ffffff; width: 350px;"|IGEP SMARC AM335x (IGEP0034)
+
! style="background-color: #ffffff; width: 209px;"|IGEP COM PROTON 
| style="width: 503px;"|<span style="color: #002d87;">$ make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- am335x_igep0034_defconfig</span>
+
| style="width: 644px;"|
 +
<span style="color: #002d87;">$ make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- igep0032_defconfig</span>
 
|-
 
|-
! style="background-color: #ffffff; width: 350px;"|IGEP SMARC AM335x (IGEP0034) Lite
+
! style="background-color: #ffffff; width: 209px;"|IGEP COM AQUILA 
| style="width: 503px;"|<span style="color: #002d87;">$ make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- am335x_igep0034_lite_defconfig</span>
+
| style="width: 644px;"|
 +
<span style="color: #002d87;">$ make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- am335x_igep0033_defconfig</span>
 
|-
 
|-
! style="background-color: #ffffff; width: 350px;"|IGEP COM Module DM3730 (IGEP0030)
+
! style="background-color: #ffffff; width: 209px;"|IGEPv5
| style="width: 503px;"|<span style="color: #002d87;">$ make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- igep0030_defconfig</span>
+
| style="width: 644px;"|
 +
<span style="color: #002d87;">----</span>
 
|-
 
|-
! style="background-color: #ffffff; width: 350px;"|IGEP COM Module DM3730 (IGEP0020)
+
! style="background-color: #ffffff; width: 209px;"|IGEP SMARC AM335x 
| style="width: 503px;"|<span style="color: #002d87;">$ make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- igep0020_defconfig</span>
+
| style="width: 644px;"|
 +
<span style="color: #002d87;">$ make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- am335x_igep0034_defconfig</span>
 +
|-
 +
! style="background-color: #ffffff; width: 209px;"|IGEP SMARC AM335x Lite
 +
| style="width: 644px;"|
 +
<span style="color: #002d87;">$ make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- am335x_igep0034_lite_defconfig</span>
 
|}
 
|}
  
 +
The result for '''Texas Instruments''' processor based board will be a '''MLO''' and '''u-boot.img'''.
  
 
====<span id="Build_u-boot" class="mw-headline">Build u-boot</span>====
 
====<span id="Build_u-boot" class="mw-headline">Build u-boot</span>====
You can build u-boot executing this command:
+
You can build u-boot executing this command: <span style="color: #ff0000;">COMPROVAR</span>
  
 
<span style="color: #002d87;"><code><span style="color: #002d87;">$ make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf-</span></code></span>
 
<span style="color: #002d87;"><code><span style="color: #002d87;">$ make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf-</span></code></span>
  
 +
===<span dir="auto">U-Boot '''Freescale-NXP iMX6''' Series</span>===
 +
<div class="clearfix">First we will download the U-Boot file for be able to make the configuration.</div>
 +
{| class="contenttable sortable" style="font-size: 15.024px; width: 885px;"
 +
|- style="height: 22px;"
 +
! style="width: 851px; height: 22px; text-align: center; vertical-align: middle;" colspan="2"|
 +
====Downloading binary files====
 +
|- style="height: 44px;"
 +
! style="background-color: #ffffff; width: 203px;"|'''<span id="Clone_the_u-boot_repo" class="mw-headline">Clone the u-boot repo</span>'''
 +
| style="width: 648px; height: 44px;"|Clone the u-boot repository using git address:<br />
 +
<span style="color: #002d87;">$ git clone git@git.isee.biz:arm-boot/u-boot-imx.git </span>
 +
or
 +
 +
<span style="color: #002d87;">$ git clone</span> <a class="external bs-external-link bs-protocol-https" title="https://git.isee.biz/arm-boot/u-boot-imx.git" href="https://git.isee.biz/arm-boot/u-boot-imx.git" data-bs-type="external_link" data-bs-wikitext="https://git.isee.biz/arm-boot/u-boot-imx.git%20https://git.isee.biz/arm-boot/u-boot-imx.git">https://git.isee.biz/arm-boot/u-boot-imx.git</a>
 +
|- style="height: 89px;"
 +
! style="background-color: #ffffff; width: 203px;"|'''<span id="Checkout_u-boot_repo" class="mw-headline">Checkout u-boot repo </span>'''
 +
| style="width: 648px; height: 89px;"|Go to the u-boot-imx directory and checkout the version 2015.04.y as:<br />
 +
<span style="color: #002d87;">$ cd u-boot-imx</span><br><span style="color: #002d87;">$ git checkout remotes/origin/isee_imx_v2017.03_4.9.11_1.0.0_ga -b isee_imx_v2017.03_4.9.11_1.0.0_ga</span>
 +
|}
  
 +
Once we have downloaded we will execute the file called '''defconfig,''' that it variates in function of each module. It's recommended to make a clean of console... 
 +
 +
$ make distclean
 +
{| class="contenttable sortable" style="font-size: 15.024px; width: 881px;"
 +
|-
 +
! style="width: 865px; text-align: center; vertical-align: middle;" colspan="2"|
 +
====<span id="Set_the_board_configuration" class="mw-headline">Set the board</span><span id="Set_the_board_configuration" class="mw-headline"> configuratio</span><span id="Set_the_board_configuration" class="mw-headline">n</span>====
 +
|-
 +
| style="background-color: #ffffff; width: 208px;"|'''IGEP0046 SMARC Solo'''
 +
| style="width: 657px;"|
 +
<span style="color: #002d87;">$ make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- xxxxx </span>
 +
|-
 +
| style="background-color: #ffffff; width: 208px;"|'''IGEP0046 SMARC Dual lite'''
 +
| style="width: 657px;"|
 +
<span style="color: #002d87;">$ make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- igep0046_imx6dl_2G_defconfig</span>
 +
|-
 +
| style="background-color: #ffffff; width: 208px;"|'''IGEP0046 SMARC Dual '''
 +
| style="width: 657px;"|
 +
<span style="color: #002d87;">$ make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- xxxxx</span>
 +
|-
 +
| style="background-color: #ffffff; width: 208px;"|'''IGEP0046 SMARC Quad'''
 +
| style="width: 657px;"|
 +
<span style="color: #002d87;">$ make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- igep0046_imx6q_2G_defconfig</span>
 +
|}
 +
 +
The result for '''iMX6 '''processor based will be a '''u-boot.imx.'''
 +
 +
====<span id="Build_u-boot" class="mw-headline">Build u-boot</span>====
 +
<div style="font-size: 15.024px;">You can build u-boot executing this command: <span style="color: #ff0000;">COMPROVAR</span></div>
 +
<div style="font-size: 15.024px;"><span style="color: #002d87;"><code><span style="color: #002d87;">$</span> <span style="color: #002d87;">make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf-</span></code></span></div>
 +
For both processors we can do...
  
 
===<span id="What_next..." class="mw-headline">What next...</span>===
 
===<span id="What_next..." class="mw-headline">What next...</span>===
Line 144: Line 206:
  
  
==Configurations files==
+
==<span style="color: #999999;">Configurations files</span>==
The result for '''iMX6 '''processor based will be a '''u-boot.imx.'''
+
<span style="color: #999999;">The result for '''iMX6 '''processor based will be a '''u-boot.imx.'''</span>
  
 
{| class="contenttable sortable" style="font-size: 15.024px; width: 889px;"
 
{| class="contenttable sortable" style="font-size: 15.024px; width: 889px;"
 
|-
 
|-
! style="width: 361px;"|Modules
+
! style="width: 361px;"|<span style="color: #999999;">Modules</span>
! style="width: 361px;"|Files
+
! style="width: 361px;"|<span style="color: #999999;">Files</span>
 
|-
 
|-
! style="background-color: #ffffff; width: 361px; text-align: left;"|IGEP0046 SMARC iMX6 Duallite 2GB
+
! style="background-color: #ffffff; width: 361px; text-align: left;"|<span style="color: #999999;">IGEP0046 SMARC iMX6 Duallite 2GB</span>
| style="background-color: #ffffff; width: 361px; text-align: left;"|<span style="color: #002d87;">igep0046_imx6dl_2G_defconfig </span>
+
| style="background-color: #ffffff; width: 361px; text-align: left;"|<span style="color: #999999;">igep0046_imx6dl_2G_defconfig </span>
 
|-
 
|-
! style="background-color: #ffffff; width: 361px; text-align: left;"|IGEP0046 SMARC iMX6 DUAL
+
! style="background-color: #ffffff; width: 361px; text-align: left;"|<span style="color: #999999;">IGEP0046 SMARC iMX6 DUAL</span>
 
| style="background-color: #ffffff; width: 361px; text-align: left;"| 
 
| style="background-color: #ffffff; width: 361px; text-align: left;"| 
 
|-
 
|-
! style="background-color: #ffffff; width: 361px; text-align: left;"|IGEP0046 SMARC iMX6 QUAD
+
! style="background-color: #ffffff; width: 361px; text-align: left;"|<span style="color: #999999;">IGEP0046 SMARC iMX6 QUAD</span>
| style="background-color: #ffffff; width: 361px; text-align: left;"|<span style="color: #002d87;">igep0046_imx6q_2G_defconfig''' '''</span>
+
| style="background-color: #ffffff; width: 361px; text-align: left;"|<span style="color: #999999;">igep0046_imx6q_2G_defconfig''' '''</span>
 
|-
 
|-
! style="background-color: #ffffff; width: 361px; text-align: left;"|'''IGEP0046 SMARC iMX6 SOLO'''
+
! style="background-color: #ffffff; width: 361px; text-align: left;"|<span style="color: #999999;">'''IGEP0046 SMARC iMX6 SOLO'''</span>
 
| style="background-color: #ffffff; width: 361px; text-align: left;"| 
 
| style="background-color: #ffffff; width: 361px; text-align: left;"| 
 
|}
 
|}
  
The result for '''Texas Instruments''' processor based board will be a '''MLO''' and '''u-boot.img'''. (COMPROVAR)
+
<span style="color: #999999;">The result for '''Texas Instruments''' processor based board will be a '''MLO''' and '''u-boot.img'''. (COMPROVAR)</span>
  
 
{| class="contenttable sortable" style="width: 889px;"
 
{| class="contenttable sortable" style="width: 889px;"
 
|-
 
|-
 
! style="width: 358px;"|
 
! style="width: 358px;"|
Modules
+
<span style="color: #999999;">Modules</span>
  
! style="width: 513px;"|"Files"
+
! style="width: 513px;"|<span style="color: #999999;">"Files"</span>
 
|-
 
|-
! style="background-color: #ffffff; text-align: left;"|IGEP0030 DM3730 Module
+
! style="background-color: #ffffff; text-align: left;"|<span style="color: #999999;">IGEP0030 DM3730 Module</span>
| style="width: 513px;"|<span style="color: #002d87;">igep0030_defconfig</span>
+
| style="width: 513px;"|<span style="color: #999999;">igep0030_defconfig</span>
 
|-
 
|-
! style="background-color: #ffffff; text-align: left;"|IGEP0020 DM3730 IGEPv2
+
! style="background-color: #ffffff; text-align: left;"|<span style="color: #999999;">IGEP0020 DM3730 IGEPv2</span>
| style="width: 513px;"|<span style="color: #002d87;">igep0020_defconfig</span>
+
| style="width: 513px;"|<span style="color: #999999;">igep0020_defconfig</span>
 
|-
 
|-
! style="background-color: #ffffff; text-align: left;"|IGEP0033 AM335x AQUILA Module
+
! style="background-color: #ffffff; text-align: left;"|<span style="color: #999999;">IGEP0033 AM335x AQUILA Module</span>
| style="width: 513px;"|<span style="color: #002d87;">am335x_igep0033_defconfig</span>
+
| style="width: 513px;"|<span style="color: #999999;">am335x_igep0033_defconfig</span>
 
|-
 
|-
! style="background-color: #ffffff; text-align: left;"|IGEP0032 OMAP3530 PROTON Module
+
! style="background-color: #ffffff; text-align: left;"|<span style="color: #999999;">IGEP0032 OMAP3530 PROTON Module</span>
| style="width: 513px;"|<span style="color: #002d87;">igep0032_defconfig</span>
+
| style="width: 513px;"|<span style="color: #999999;">igep0032_defconfig</span>
 
|-
 
|-
! style="background-color: #ffffff; text-align: left;"|IGEP0034 SMARC AM335x Module
+
! style="background-color: #ffffff; text-align: left;"|<span style="color: #999999;">IGEP0034 SMARC AM335x Module</span>
| style="width: 513px;"|<span style="color: #002d87;">am335x_igep0034_defconfig</span>
+
| style="width: 513px;"|<span style="color: #999999;">am335x_igep0034_defconfig</span>
 
|-
 
|-
! style="background-color: #ffffff; text-align: left;"|IGEP0034 SMARC AM335x Module lite
+
! style="background-color: #ffffff; text-align: left;"|<span style="color: #999999;">IGEP0034 SMARC AM335x Module lite</span>
| style="width: 513px;"|<span style="color: #002d87;"> am335x_igep0034_lite_defconfig</span>
+
| style="width: 513px;"|<span style="color: #999999;"> am335x_igep0034_lite_defconfig</span>
 
|-
 
|-
! style="background-color: #ffffff; text-align: left;"|IGEP0050 OMAP5 IGEPv5
+
! style="background-color: #ffffff; text-align: left;"|<span style="color: #999999;">IGEP0050 OMAP5 IGEPv5</span>
 
| style="width: 513px;"| 
 
| style="width: 513px;"| 
 
|}
 
|}
  
<span style="font-size: 28.2451px;">Stable U-Boot</span>
+
<span style="font-size: 28.2451px; color: #000000;">Stable U-Boot</span>
  
The software git repository is located [https://git.isee.biz/arm-boot here].
+
<span style="color: #000000;">The software git repository is located [https://git.isee.biz/arm-boot here].</span>
  
U-boot: OMAP3 boards, OMAP5 boards, AM335x boards is located [https://git.isee.biz/arm-boot/u-boot-arm here].
+
<span style="color: #000000;">U-boot: OMAP3 boards, OMAP5 boards, AM335x boards is located [https://git.isee.biz/arm-boot/u-boot-arm here].</span>
  
U-boot: iMX6 boards is located [https://git.isee.biz/arm-boot/u-boot-imx here].
+
<span style="color: #000000;">U-boot: iMX6 boards is located [https://git.isee.biz/arm-boot/u-boot-imx here].</span>
  
u-boot firmware binaries can be downloaded from here.
+
<span style="color: #000000;">u-boot firmware binaries can be downloaded from here.</span>
  
[EOL] For OMAP3 based platforms, ISEE do not support u-boot, instead of, ISEE provides [[The IGEP X-loader]]
+
<span style="color: #000000;">[EOL] For OMAP3 based platforms, ISEE do not support u-boot, instead of, ISEE provides [[The IGEP X-loader]]</span>
  
==<span style="color: #808080;">u-boot Freescale-NXP iMX6 series</span>==
+
=<span style="color: #999999;">How to cross compile the U-Boot</span>=
* <span style="color: #808080;">[[U-boot Freescale-NXP iMX6 Series|u-boot Freescale-NXP iMX6 Series]]</span>
+
<div style="font-size: 15.024px;"><span style="color: #999999;">In order to compile and build the U-Boot for IGEP PROCESSOR BOARDS you should set the CROSS_COMPILE variable. Set this to the prefix of your toolchain (including the trailing dash "-"). So if your toolchain is invoked as say '''arm-linux-gnueabi-gcc''', just chop off that trailing gcc and that's what you use: arm-linux-gnueabihf-.</span></div>
 +
<div style="font-size: 15.024px;"><span style="color: #999999;">As example, once you've downloaded the u-boot source, you should follow these steps:</span></div>
 +
<span style="color: #999999;">make CROSS_COMPILE=[cross compiler] [board config]
 +
make CROSS_COMPILE=[cross compiler]</span><div style="font-size: 15.024px;"><span style="color: #999999;">The result will be a MLO and a u-boot.img file. You can install these files, for example, in the boot partition of a SD-card.</span></div>
 +
==<span style="color: #999999;">u-boot Freescale-NXP iMX6 series</span>==
 +
* <span style="color: #999999;">[[U-boot Freescale-NXP iMX6 Series|u-boot Freescale-NXP iMX6 Series]]</span>
  
==<span style="color: #808080;">u-boot Texas Instruments AM335x, OMAP3, DM3730, OMAP5432 series</span>==
+
==<span style="color: #999999;">u-boot Texas Instruments AM335x, OMAP3, DM3730, OMAP5432 series</span>==
* <span style="color: #808080;">[[u-boot_Texas_Instruments_Series|u-boot Texas Instruments Series]]</span>
+
* <span style="color: #999999;">[[u-boot_Texas_Instruments_Series|u-boot Texas Instruments Series]]</span>
  
[[Category:U-Boot]]
+
<span style="color: #999999;">[[Category:U-Boot]]</span>

Revision as of 12:39, 7 May 2018

Overview

This page is meant to be a starting point for people to learn build a u-boot image and show to people the current status of different u-boot versions for IGEP Processor Boards.

What is U-Boot?

Das U-Boot (Universal Bootloader) is an open source, primary boot loader used in embedded devices. Its primary purpose in the shipping system is to load some operating system.

That means that U-Boot is necessary to perform a certain task, but it's nothing you want to throw any significant resources at. Typically U-Boot is stored in relatively small NOR flash memory, which is expensive compared to the much larger NAND devices often used to store the operating system and the application.


Necessary package

   


Download & Prepare your U-BOOT

We will relate the commercial names with their technical names. In order to send a clear message and not get confussions.

In addition, will be a distintion between NXP products ( IGEP SMARC iMX6) and Texas products.

Commercial Name Technical name
Texas instruments
IGEPv2 IGEP0020, DM3730
IGEP COM MODULE IGEP0030, DM3730
IGEP COM PROTON IGEP0032, OMAP3530
IGEP COM AQUILA IGEP0033, AM335x
IGEPv5 IGEP0050, OMAP5
IGEP SMARC AM335x IGEP0034, AM335x
IGEP SMARC AM335x Lite IGEP0034, Lite, AM335x
Freescale-NXP
IGEP SMARC iMX6 Solo IGEP0046, IMX6XX
IGEP SMARC iMX6 Dual Lite IGEP0046, iMX6DL
IGEP SMARC iMX6 Dual IGEP0046, iMX6XX
IGEP SMARC iMX6 Quad IGEP0046, iMX6Q


U-Boot Texas Instruments Series

First we will download the U-Boot file for be able to make the configuration.

Downloading binary files

Clone the u-boot repo

Clone the u-boot repository using git address:

$ git clone @git.isee.biz:arm-boot/u-boot-arm.git

or

@@@PRE1@@@nbsp;git clone <a class="external bs-external-link bs-protocol-https" title="https://git.isee.biz/arm-boot/u-boot-arm.git" href="https://git.isee.biz/arm-boot/u-boot-arm.git" data-bs-type="external_link" data-bs-wikitext="https://git.isee.biz/arm-boot/u-boot-arm.git%20https://git.isee.biz/arm-boot/u-boot-arm.git">https://git.isee.biz/arm-boot/u-boot-arm.git</a>
Checkout u-boot repo 

Go to the u-boot-arm directory and checkout the isee_v2017.03 as:

$ cd u-boot-arm
$ git checkout remotes/origin/isee_v2017.03 -b isee_v2017.03

Once we have downloaded we will execute the file called defconfig, that it variates in function of each module. It's recommended to make a clean of console... 

$ make distclean

Set the board configuration(Prepare your U-BOOT)

IGEPv2
$ make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- igep0020_defconfig
IGEP COM Module 
$ make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- igep0030_defconfig 
IGEP COM PROTON 
$ make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- igep0032_defconfig
IGEP COM AQUILA 
$ make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- am335x_igep0033_defconfig
IGEPv5
----
IGEP SMARC AM335x 
$ make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- am335x_igep0034_defconfig
IGEP SMARC AM335x Lite
$ make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- am335x_igep0034_lite_defconfig

The result for Texas Instruments processor based board will be a MLO and u-boot.img.

Build u-boot

You can build u-boot executing this command: COMPROVAR

$ make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf-

U-Boot Freescale-NXP iMX6 Series

First we will download the U-Boot file for be able to make the configuration.

Downloading binary files

Clone the u-boot repo Clone the u-boot repository using git address:
$ git clone git@git.isee.biz:arm-boot/u-boot-imx.git 

or

$ git clone <a class="external bs-external-link bs-protocol-https" title="https://git.isee.biz/arm-boot/u-boot-imx.git" href="https://git.isee.biz/arm-boot/u-boot-imx.git" data-bs-type="external_link" data-bs-wikitext="https://git.isee.biz/arm-boot/u-boot-imx.git%20https://git.isee.biz/arm-boot/u-boot-imx.git">https://git.isee.biz/arm-boot/u-boot-imx.git</a>
Checkout u-boot repo  Go to the u-boot-imx directory and checkout the version 2015.04.y as:
$ cd u-boot-imx
$ git checkout remotes/origin/isee_imx_v2017.03_4.9.11_1.0.0_ga -b isee_imx_v2017.03_4.9.11_1.0.0_ga

Once we have downloaded we will execute the file called defconfig, that it variates in function of each module. It's recommended to make a clean of console... 

$ make distclean

Set the board configuration

IGEP0046 SMARC Solo
$ make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- xxxxx 
IGEP0046 SMARC Dual lite
$ make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- igep0046_imx6dl_2G_defconfig
IGEP0046 SMARC Dual 
$ make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- xxxxx
IGEP0046 SMARC Quad
$ make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- igep0046_imx6q_2G_defconfig

The result for iMX6 processor based will be a u-boot.imx.

Build u-boot

You can build u-boot executing this command: COMPROVAR
$ make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf-

For both processors we can do...

What next...

After build u-boot you can use it for boot the board, exist several options for boot, check the Hardware Reference Manual about the options available for your board.


Configurations files

The result for iMX6 processor based will be a u-boot.imx.

Modules Files
IGEP0046 SMARC iMX6 Duallite 2GB igep0046_imx6dl_2G_defconfig 
IGEP0046 SMARC iMX6 DUAL  
IGEP0046 SMARC iMX6 QUAD igep0046_imx6q_2G_defconfig 
IGEP0046 SMARC iMX6 SOLO  

The result for Texas Instruments processor based board will be a MLO and u-boot.img. (COMPROVAR)

Modules

"Files"
IGEP0030 DM3730 Module igep0030_defconfig
IGEP0020 DM3730 IGEPv2 igep0020_defconfig
IGEP0033 AM335x AQUILA Module am335x_igep0033_defconfig
IGEP0032 OMAP3530 PROTON Module igep0032_defconfig
IGEP0034 SMARC AM335x Module am335x_igep0034_defconfig
IGEP0034 SMARC AM335x Module lite  am335x_igep0034_lite_defconfig
IGEP0050 OMAP5 IGEPv5  

Stable U-Boot

The software git repository is located here.

U-boot: OMAP3 boards, OMAP5 boards, AM335x boards is located here.

U-boot: iMX6 boards is located here.

u-boot firmware binaries can be downloaded from here.

[EOL] For OMAP3 based platforms, ISEE do not support u-boot, instead of, ISEE provides The IGEP X-loader

How to cross compile the U-Boot

In order to compile and build the U-Boot for IGEP PROCESSOR BOARDS you should set the CROSS_COMPILE variable. Set this to the prefix of your toolchain (including the trailing dash "-"). So if your toolchain is invoked as say arm-linux-gnueabi-gcc, just chop off that trailing gcc and that's what you use: arm-linux-gnueabihf-.
As example, once you've downloaded the u-boot source, you should follow these steps:
make CROSS_COMPILE=[cross compiler] [board config]
make CROSS_COMPILE=[cross compiler]
The result will be a MLO and a u-boot.img file. You can install these files, for example, in the boot partition of a SD-card.

u-boot Freescale-NXP iMX6 series

u-boot Texas Instruments AM335x, OMAP3, DM3730, OMAP5432 series