COM iMX6 Bootloader U-Boot: Difference between revisions
From Wiki-DB
Jump to navigationJump to search
Ageisreiter (talk | contribs) |
Ageisreiter (talk | contribs) |
||
Line 57: | Line 57: | ||
:Note: The Bytes information needs to be sector size aligned! | :Note: The Bytes information needs to be sector size aligned! | ||
=== SD/MMC Card === | |||
:'''DHCOM iMX25:''' | |||
::'''Switch between MicroSD and SD Slot''' | |||
::{| class="wikitable" | |||
|''<code>mmcswitch <Slot number></code>'' | |||
|} | |||
::Example: <code>mmcswitch 2</code> | |||
::Description: Switch between SD/MMC Slots: 1 --> SD/MMC Slot, 2 --> MicroSD Slot | |||
::'''Initialize SD/MMC Card''' | |||
::{| class="wikitable" | |||
|''<code>mmcinit</code>'' | |||
|} | |||
::Description: Initialize new inserted SD Card |
Revision as of 15:41, 27 May 2014
FAQ
Downloads
Enter Bootloader Console
- Connect DHCOM UART1 (FF UART) via null modem cable to the RS232 Port of your PC
- Start terminal program (e.g. Tera Term) on the Host PC with the following settings:
- Baud rate: 115200
- Data: 8 bit
- Parity: none
- Stop bits: 1 bit
- Flow control: none
- Press "del" on the Host PC during Core Module system start to enter bootloader console
U-boot console commands
SPI Flash
- SPI Flash Init
sf probe
- Example:
sf probe
- Description: Initializes the OnBoard SPI Flash
- SPI Flash Read
sf read <SDRAM address> <SPI Flash address> <Bytes>
- Example:
sf read 10000000 0 100
- Description: Copies 256Bytes from SPI Flash address 0x0 to SDRAM address 0x1000_0000
- SPI Flash Write
sf write <SDRAM address> <SPI Flash address> <Bytes>
- Example:
sf write 10000000 40000 10000
- Description: Copies 64kByte from SDRAM address 0x1000_0000 to SPI Flash address 0x4_0000
- SPI Flash Erase
sf erase <SPI Flash address> <Bytes>
- Example:
sf erase 100000 1000
- Description: Deletes SPI Flash content from address 0x10_0000 to 0x10_0FFF
- Note: The Bytes information needs to be sector size aligned!
SD/MMC Card
- DHCOM iMX25:
- Switch between MicroSD and SD Slot
mmcswitch <Slot number>
- Example:
mmcswitch 2
- Example:
- Description: Switch between SD/MMC Slots: 1 --> SD/MMC Slot, 2 --> MicroSD Slot
- Initialize SD/MMC Card
mmcinit
- Description: Initialize new inserted SD Card