Dfu-util

From Openmoko

(Difference between revisions)
Jump to: navigation, search
m (Troubleshooting notes)
(Mac: linkchg)
 
(119 intermediate revisions by 52 users not shown)
Line 1: Line 1:
{{warning|Dfu-util is currently broken on big-endian architectures}}
+
{{Languages|Dfu-util}}
{{warning|Do not flash U-Boot unless you are sure you need to}}
+
{{note|You need to connect your neo directly to your pc with no hub between. Otherwise there could be problems with the hub and the usb reset.}}
+
 
+
== Purpose ==
+
  
 
dfu-util is a program that implements the Host (PC) side of the [[USB DFU]] (Universal Serial Bus Device Firmware Upgrade) protocol.
 
dfu-util is a program that implements the Host (PC) side of the [[USB DFU]] (Universal Serial Bus Device Firmware Upgrade) protocol.
  
In the OpenMoko project, we use this program to communicate with our specially enhanced [[u-boot]] boot loader, which implements the DFU device side.
+
In the Openmoko project, we use this program to communicate with our specially enhanced [[U-Boot]], which implements the DFU device side.
  
Using dfu-util and your Neo1973, you can
+
Using dfu-util and your smartphone, you can
Link* transfer and flash partitions to [[NAND Flash]], such as
+
* transfer and flash [[Partitions|partitions]] in internal [[NAND Flash]].
** The Linux [[kernel]]
+
* transfer anything into RAM
** The root file system partition
+
** The splash screen partition
+
** The u-boot environment
+
** Last, but not least: The [[u-boot]] bootloader itself.
+
* transfer anything into Neo1973 RAM
+
 
** this can be used for fast development cycles of low-level code such as kernels without flashing them
 
** this can be used for fast development cycles of low-level code such as kernels without flashing them
* read out the current NAND partitions
+
* read out the current internal NAND [[Partitions|partitions]]
 
** this is an easy and efficient way of doing full backups of your phone
 
** this is an easy and efficient way of doing full backups of your phone
  
 
== Source Code ==
 
== Source Code ==
 +
Dfu-util is currently maintained at http://dfu-util.gnumonks.org/.
  
dfu-util can be found at http://svn.openmoko.org/trunk/src/host/dfu-util/
+
On Debian and Ubuntu, you'll need libusb-dev:
 +
sudo apt-get install libusb-dev autogen pkg-config autotools-dev autoconf automake
  
Binary packages will be made available as part of the regular [[OpenMoko]] builds
+
On Fedora you'll need libusb-devel and libusb-static:
 +
yum install libusb-devel libusb-static
  
== Reference Documentation ==
+
On Gentoo you can:
 +
emerge -va openmoko-dfu-util
  
=== Command-line options ===
+
You can check out and build the latest version of dfu-util using the following git command:<br>
 +
git clone git://git.openezx.org/dfu-util.git
 +
<br>
 +
cd dfu-util<br>
 +
./autogen.sh<br>
 +
./configure<br>
 +
make
  
==== --help ====
+
The resulting binary is dfu-util/src/dfu-util.
  
<pre>
+
== Binaries ==
dfu-util - (C) 2007 by OpenMoko Inc.
+
This program is Free Software and has ABSOLUTELY NO WARRANTY
+
 
+
Usage: dfu-util [options] ...
+
  -h --help                    Print this help message
+
  -V --version                  Print the version number
+
  -l --list                    List the currently attached DFU capable USB devices
+
  -d --device vendor:product    Specify Vendor/Product ID of DFU device
+
  -c --cfg config_nr            Specify the Configuration of DFU device
+
  -i --intf intf_nr            Specify the DFU Interface number
+
  -a --alt alt_nr              Specify the Altseting of the DFU Interface
+
  -t --transfer-size            Specify the number of bytes per USB Transfer
+
  -U --upload file              Read firmware from device into <file>
+
  -D --download file            Write firmware from <file> into device
+
  -R --reset                    Issue USB Reset signalling once we're finished
+
</pre>
+
  
==== --list ====
+
Binary packages will be [http://downloads.openmoko.org/distro/releases/Om2008.9/dfu-util made available] as part of the regular Openmoko builds. Currently, there is a dfu-util for Linux/i386.
  
Using the --list option, you can list the available DFU capable devices, their configuration, interface and altsettings.
+
You need to make the downloaded file (dfu-util) executable with:
Below is an example for a current Neo1973 phone in u-boot '''Runtime Mode'''
+
 
<pre>
 
<pre>
# ./dfu-util --list
+
chmod +x dfu-util
dfu-util - (C) 2007 by OpenMoko Inc.
+
This program is Free Software and has ABSOLUTELY NO WARRANTY
+
 
+
Found DFU Runtime: [0x1457:0x5119] devnum=0, cfg=0, intf=2, alt=0, name="USB Device Firmware Upgrade"
+
 
</pre>
 
</pre>
 
+
you can then run it with
Below is an example for a current Neo1973 phone in u-boot '''DFU Mode'''
+
 
<pre>
 
<pre>
# ./dfu-util --list
+
./dfu-util
dfu-util - (C) 2007 by OpenMoko Inc.
+
This program is Free Software and has ABSOLUTELY NO WARRANTY
+
 
+
Found DFU: [0x1457:0x5119] devnum=16, cfg=0, intf=0, alt=0, name="RAM 0x32000000"
+
Found DFU: [0x1457:0x5119] devnum=16, cfg=0, intf=0, alt=1, name="u-boot"
+
Found DFU: [0x1457:0x5119] devnum=16, cfg=0, intf=0, alt=2, name="u-boot_env"
+
Found DFU: [0x1457:0x5119] devnum=16, cfg=0, intf=0, alt=3, name="kernel"
+
Found DFU: [0x1457:0x5119] devnum=16, cfg=0, intf=0, alt=4, name="splash"
+
Found DFU: [0x1457:0x5119] devnum=16, cfg=0, intf=0, alt=5, name="rootfs"
+
 
</pre>
 
</pre>
 +
see below for full instructions.
  
This shows you six interfaces, all in '''configuration 0''' and '''interface 0''', with altsetting 0...4.  The name is currently not yet defined, but will be added to one of the upcoming u-boot releases.  The mapping on the Neo1973 is as follows:
+
=== Debian ===
 +
[http://packages.debian.org/dfu-util dfu-util 0.0+r4880-1 is packaged] for Debian ''>= lenny'', so can be installed with: <tt>apt-get install dfu-util</tt>
  
* 0: RAM
+
=== Ubuntu ===
* 1: 'u-boot' partition
+
[http://packages.ubuntu.com/dfu-util dfu-util 0.0+r4067-3.1 is packaged] for Ubuntu ''>= intrepid (8.10)'', so can be installed with: <tt>apt-get install dfu-util</tt>
* 2: 'u-boot_env' partition
+
* 3: 'kernel' partition
+
* 4: 'splash' partition
+
* 5: 'rootfs' partition
+
  
==== --device ====
+
=== Slackware ===
 +
[http://downloads.sourceforge.net/slackfr-packs/dfu-util-svn4686-i686-1cfdev12.1.tgz dfu-util is packaged] for '''Slackware''' (12.1), so can be installed with: <tt>pkgtool</tt>
  
You can specify the USB Vendor and Product ID of the device you want to program:
+
A newer SlackBuild is also available on [http://slackbuilds.org/repository/13.1/system/dfu-util/ slackbuilds.org]
  
dfu-util --device 0x1457:0x5119
+
=== Arch Linux ===
 +
[http://aur.archlinux.org/packages.php?ID=21385 dfu-util is packaged] for Arch Linux, so can be installed with makepkg
  
If you only have one standards-compliant DFU device attached to your PC, this is optional.  However, as soon as you have multiple DFU devices, dfu-util will detect this and abort, asking you to specify which device it shall use.
+
=== openSuSE ===
 +
The links below install rpm packaged dfu-util in (open)SuSE :
  
==== --transfer-size ====
+
[http://software.opensuse.org/ymp/home:worldcitizen/SLE_10/dfu-util.ymp 1-Click Install for SLE 10]
  
Specifies the size of each individual USB transfer. If you don't use it, the maximum possible size for your combination of host operating system and USB device is chosen (for optimal performance).
+
[http://software.opensuse.org/ymp/home:worldcitizen/SLE_11/dfu-util.ymp 1-Click Install for SLE 11]
  
==== --download ====
+
[http://software.opensuse.org/ymp/home:worldcitizen/openSUSE_10.3/dfu-util.ymp 1-Click Install for openSuSE 10.3]
  
download the given file into the device.
+
[http://software.opensuse.org/ymp/home:worldcitizen/openSUSE_11.0/dfu-util.ymp 1-Click Install for openSuSE 11.0]
  
==== --upload ====
+
[http://software.opensuse.org/ymp/home:worldcitizen/openSUSE_11.1/dfu-util.ymp 1-Click Install for openSuSE 11.1]
  
upload from the DFU device into the given file[name].
+
[http://software.opensuse.org/ymp/home:worldcitizen/openSUSE_Factory/dfu-util.ymp 1-Click Install for openSuSE Factory]
  
{{note|Upload support is currently broken}}
+
=== CentOS ===
 +
[http://download.opensuse.org/repositories/home:/worldcitizen/CentOS_5/ Centos 5]
  
== Phrasebook ==
+
=== Fedora ===
 +
[http://download.opensuse.org/repositories/home:/worldcitizen/Fedora_10/ Fedora 9]
  
There's no full-fledged manual yet. Instead, some examples:
+
[http://download.opensuse.org/repositories/home:/worldcitizen/Fedora_10/ Fedora 10]
  
=== Flashing the kernel ===
+
=== Mandriva ===
 +
[http://download.opensuse.org/repositories/home:/worldcitizen/Mandriva_2008/ Mandriva 2008]
  
dfu-util -a 3 -R -D /path/to/uImage
+
[http://download.opensuse.org/repositories/home:/worldcitizen/Mandriva_2009/ Mandriva 2009]
  
=== Flashing the bootloader ===
+
=== RHEL ===
 +
[http://download.opensuse.org/repositories/home:/worldcitizen/RHEL_5/ RHEL 5]
  
dfu-util -a 1 -R -D /path/to/u-boot.bin
+
=== Gentoo ===
 +
DFU-Util is in the main tree under the name [http://packages.gentoo.org/package/app-mobilephone/openmoko-dfu-util openmoko-dfu-util].
  
=== Copying a kernel into RAM ===
+
=== Windows ===
 +
Currently, there is a largely untested binary for Win32 (see [[Dfu-util-windows]]). Windows users can refer to [[No_Linux]] for a more tested approach.
  
dfu-util -a 0 -R -D /path/to/uImage
+
=== Mac ===
 +
Compiling dfu-util on Mac:
 +
* http://lists.openmoko.org/pipermail/community/2007-July/008438.html
 +
* [[User:SNMoore]]
 +
* [[MacOS_X#Flashing_to_your_device]]
 +
* [[Openmoko Flasher]] has a precompiled binary in the App bundle
  
Once this has finished, the kernel will be available at the default load address of 0x32000000 in Neo1973 RAM.
+
== Manual ==
  
{{note|You cannot transfer more than 2MB of data into RAM using this method}}
+
See [[Manuals/Dfu-util]]
 
+
== Troubleshooting notes ==
+
 
+
If during flashing of an image using dfu-util you're consistently getting an error -110 message, check that the size of the destination NAND partition is big enough to hold the image.  For example the kernel partition is only 2 MB big by default and a kernel with debugging info compiled-in can often exceed this.  It's possible to change the partition layout to enlarge a given partition and shrink other partitions but you have to remember to reflash all partitions whose start offset has changed afterwards.  To adjust partitions layout use the ''mtdparts'' [[Bootloader|u-boot command]].
+
 
+
If in turn you're facing errors in seemingly random places during the flashing of images, most likely the USB hub or cable through which your Neo1973 is connected, is of too poor quality.  It is recommended that you always connect the phone directly to the host when using dfu-util.
+
 
+
If dfu-util reports a message like the following, before it starts flashing:<pre>
+
Resetting USB...
+
not at least 2 device changes found ?!?
+
Lost device after RESET?</pre> retry the command - it should work on a second run.
+
* Compiling dfu-util on Mac: http://lists.openmoko.org/pipermail/community/2007-July/008438.html
+
  
 
== See also ==
 
== See also ==
 +
*[[Flashing the Neo 1973]]
 +
*[[Flashing the Neo FreeRunner]]
  
[[Flashing openmoko]] to the latest software.
+
[[Category:Flashing Openmoko]]
 
+
{{Languages|Dfu-util}}
+
 
+
[[Category:Developer software]]
+

Latest revision as of 19:24, 13 February 2012


dfu-util is a program that implements the Host (PC) side of the USB DFU (Universal Serial Bus Device Firmware Upgrade) protocol.

In the Openmoko project, we use this program to communicate with our specially enhanced U-Boot, which implements the DFU device side.

Using dfu-util and your smartphone, you can

  • transfer and flash partitions in internal NAND Flash.
  • transfer anything into RAM
    • this can be used for fast development cycles of low-level code such as kernels without flashing them
  • read out the current internal NAND partitions
    • this is an easy and efficient way of doing full backups of your phone

Contents

[edit] Source Code

Dfu-util is currently maintained at http://dfu-util.gnumonks.org/.

On Debian and Ubuntu, you'll need libusb-dev: sudo apt-get install libusb-dev autogen pkg-config autotools-dev autoconf automake

On Fedora you'll need libusb-devel and libusb-static: yum install libusb-devel libusb-static

On Gentoo you can: emerge -va openmoko-dfu-util

You can check out and build the latest version of dfu-util using the following git command:
git clone git://git.openezx.org/dfu-util.git
cd dfu-util
./autogen.sh
./configure
make

The resulting binary is dfu-util/src/dfu-util.

[edit] Binaries

Binary packages will be made available as part of the regular Openmoko builds. Currently, there is a dfu-util for Linux/i386.

You need to make the downloaded file (dfu-util) executable with:

chmod +x dfu-util

you can then run it with

./dfu-util

see below for full instructions.

[edit] Debian

dfu-util 0.0+r4880-1 is packaged for Debian >= lenny, so can be installed with: apt-get install dfu-util

[edit] Ubuntu

dfu-util 0.0+r4067-3.1 is packaged for Ubuntu >= intrepid (8.10), so can be installed with: apt-get install dfu-util

[edit] Slackware

dfu-util is packaged for Slackware (12.1), so can be installed with: pkgtool

A newer SlackBuild is also available on slackbuilds.org

[edit] Arch Linux

dfu-util is packaged for Arch Linux, so can be installed with makepkg

[edit] openSuSE

The links below install rpm packaged dfu-util in (open)SuSE :

1-Click Install for SLE 10

1-Click Install for SLE 11

1-Click Install for openSuSE 10.3

1-Click Install for openSuSE 11.0

1-Click Install for openSuSE 11.1

1-Click Install for openSuSE Factory

[edit] CentOS

Centos 5

[edit] Fedora

Fedora 9

Fedora 10

[edit] Mandriva

Mandriva 2008

Mandriva 2009

[edit] RHEL

RHEL 5

[edit] Gentoo

DFU-Util is in the main tree under the name openmoko-dfu-util.

[edit] Windows

Currently, there is a largely untested binary for Win32 (see Dfu-util-windows). Windows users can refer to No_Linux for a more tested approach.

[edit] Mac

Compiling dfu-util on Mac:

[edit] Manual

See Manuals/Dfu-util

[edit] See also

Personal tools
WARNING: Dfu-util is currently broken on big-endian architectures


WARNING: Do not flash U-Boot unless you are sure you need to


NOTE: You need to connect your neo directly to your pc with no hub between. Otherwise there could be problems with the hub and the usb reset.


Purpose

dfu-util is a program that implements the Host (PC) side of the USB DFU (Universal Serial Bus Device Firmware Upgrade) protocol.

In the OpenMoko project, we use this program to communicate with our specially enhanced u-boot boot loader, which implements the DFU device side.

Using dfu-util and your Neo1973, you can Link* transfer and flash partitions to NAND Flash, such as

    • The Linux kernel
    • The root file system partition
    • The splash screen partition
    • The u-boot environment
    • Last, but not least: The u-boot bootloader itself.
  • transfer anything into Neo1973 RAM
    • this can be used for fast development cycles of low-level code such as kernels without flashing them
  • read out the current NAND partitions
    • this is an easy and efficient way of doing full backups of your phone

Source Code

dfu-util can be found at http://svn.openmoko.org/trunk/src/host/dfu-util/

Binary packages will be made available as part of the regular OpenMoko builds

Reference Documentation

Command-line options

--help

dfu-util - (C) 2007 by OpenMoko Inc.
This program is Free Software and has ABSOLUTELY NO WARRANTY

Usage: dfu-util [options] ...
  -h --help                     Print this help message
  -V --version                  Print the version number
  -l --list                     List the currently attached DFU capable USB devices
  -d --device vendor:product    Specify Vendor/Product ID of DFU device
  -c --cfg config_nr            Specify the Configuration of DFU device
  -i --intf intf_nr             Specify the DFU Interface number
  -a --alt alt_nr               Specify the Altseting of the DFU Interface
  -t --transfer-size            Specify the number of bytes per USB Transfer
  -U --upload file              Read firmware from device into <file>
  -D --download file            Write firmware from <file> into device
  -R --reset                    Issue USB Reset signalling once we're finished

--list

Using the --list option, you can list the available DFU capable devices, their configuration, interface and altsettings. Below is an example for a current Neo1973 phone in u-boot Runtime Mode

# ./dfu-util --list
dfu-util - (C) 2007 by OpenMoko Inc.
This program is Free Software and has ABSOLUTELY NO WARRANTY

Found DFU Runtime: [0x1457:0x5119] devnum=0, cfg=0, intf=2, alt=0, name="USB Device Firmware Upgrade"

Below is an example for a current Neo1973 phone in u-boot DFU Mode

# ./dfu-util --list
dfu-util - (C) 2007 by OpenMoko Inc.
This program is Free Software and has ABSOLUTELY NO WARRANTY

Found DFU: [0x1457:0x5119] devnum=16, cfg=0, intf=0, alt=0, name="RAM 0x32000000"
Found DFU: [0x1457:0x5119] devnum=16, cfg=0, intf=0, alt=1, name="u-boot"
Found DFU: [0x1457:0x5119] devnum=16, cfg=0, intf=0, alt=2, name="u-boot_env"
Found DFU: [0x1457:0x5119] devnum=16, cfg=0, intf=0, alt=3, name="kernel"
Found DFU: [0x1457:0x5119] devnum=16, cfg=0, intf=0, alt=4, name="splash"
Found DFU: [0x1457:0x5119] devnum=16, cfg=0, intf=0, alt=5, name="rootfs"

This shows you six interfaces, all in configuration 0 and interface 0, with altsetting 0...4. The name is currently not yet defined, but will be added to one of the upcoming u-boot releases. The mapping on the Neo1973 is as follows:

  • 0: RAM
  • 1: 'u-boot' partition
  • 2: 'u-boot_env' partition
  • 3: 'kernel' partition
  • 4: 'splash' partition
  • 5: 'rootfs' partition

--device

You can specify the USB Vendor and Product ID of the device you want to program:

dfu-util --device 0x1457:0x5119

If you only have one standards-compliant DFU device attached to your PC, this is optional. However, as soon as you have multiple DFU devices, dfu-util will detect this and abort, asking you to specify which device it shall use.

--transfer-size

Specifies the size of each individual USB transfer. If you don't use it, the maximum possible size for your combination of host operating system and USB device is chosen (for optimal performance).

--download

download the given file into the device.

--upload

upload from the DFU device into the given file[name].

NOTE: Upload support is currently broken


Phrasebook

There's no full-fledged manual yet. Instead, some examples:

Flashing the kernel

dfu-util -a 3 -R -D /path/to/uImage

Flashing the bootloader

dfu-util -a 1 -R -D /path/to/u-boot.bin

Copying a kernel into RAM

dfu-util -a 0 -R -D /path/to/uImage

Once this has finished, the kernel will be available at the default load address of 0x32000000 in Neo1973 RAM.

NOTE: You cannot transfer more than 2MB of data into RAM using this method


Troubleshooting notes

If during flashing of an image using dfu-util you're consistently getting an error -110 message, check that the size of the destination NAND partition is big enough to hold the image. For example the kernel partition is only 2 MB big by default and a kernel with debugging info compiled-in can often exceed this. It's possible to change the partition layout to enlarge a given partition and shrink other partitions but you have to remember to reflash all partitions whose start offset has changed afterwards. To adjust partitions layout use the mtdparts u-boot command.

If in turn you're facing errors in seemingly random places during the flashing of images, most likely the USB hub or cable through which your Neo1973 is connected, is of too poor quality. It is recommended that you always connect the phone directly to the host when using dfu-util.

If dfu-util reports a message like the following, before it starts flashing:
Resetting USB...
not at least 2 device changes found ?!?
Lost device after RESET?
retry the command - it should work on a second run.

See also

Flashing openmoko to the latest software.