Difference between revisions of "Modes"

From freemyipod.org
Jump to: navigation, search
(DFU mode)
 
(50 intermediate revisions by 16 users not shown)
Line 1: Line 1:
The 2G Nano has two special modes that it can boot into called disk mode and DFU mode
+
iPods have special modes that they can boot into called disk mode, DFU mode, and debug mode.
  
 
==Disk mode==
 
==Disk mode==
Disk mode has existed ever since the iPod has existed. Disk mode is stored in the 1MB NOR auxillary flash (along with the bootloader), so this is pretty much always there, no matter what sort of tampering you have done. Disk mode basically makes the iPod behave as a massive storage device, allowing the computer to directly read and write the data flash chip.
+
Disk mode has existed ever since the iPod has existed. Disk mode is stored in different locations (depends on the iPod model). Disk mode basically makes the iPod behave as a massive storage device, allowing the computer to directly read and write the data flash chip. For more information on how to enter Disk mode, refer to [http://support.apple.com/kb/ht1363 this Apple support document].
 +
 
 +
[[Image:Diskmode.jpg]]
 +
 
 +
([http://www.ipodlinux.org/ iPodLinux project])
  
 
==DFU mode==
 
==DFU mode==
DFU mode is a relatively new standard for upgrading firmware that is used in many devices like the OpenMoko and the newer iPods. DFU mode (since nano 3G) is probably contained in the on-processor's bootrom. Newer iPods have both DFU mode and disk mode, while iPod Touch and iPhones have exclusively DFU mode. It is worth noting that DFU mode was implemented at the exact time that Apple switched from PortalPlayer to Samsung processors, and also exactly when the firmware was encrypted. There could be a relationship.
+
DFU (Device Firmware Upgrade) mode is a relatively new standard for upgrading firmware that is used in many devices like the OpenMoko and the newer iPods. DFU mode (since nano 2G) is contained in the on-processor bootrom. Newer iPods have both DFU mode and disk mode, while iPod Touch and iPhones have exclusively DFU mode. It is worth noting that DFU mode was implemented at the exact time that Apple switched from PortalPlayer to Samsung processors.
 +
 
 +
The Nano 2G also has a DFU mode, but this mode can only be entered by shorting testpoints on the circuit board or flashing the NOR with an image with a wrong signature/hash. There's a NOR DFU mode though, that can be entered by holding down BACK+PLAY right after rebooting the device.
 +
 
 +
===Getting DFU mode on iPod Classic, Nano 3G and newer ===
 +
There is a video that explain how to do this. [http://youtu.be/Y_bIDtBohnE Watch it here].
 +
# Make sure your iPod is turned on and connected to your computer.
 +
# Press and hold the menu and select buttons for between 10 and 15 seconds (The iPod starts to reboot after about 5 seconds, keep holding the buttons until it seems to turn off completely)
 +
# The display of your iPod should now stay black, and a new USB device called "USB DFU Device" should connect to your PC.  
  
 +
You can use lsusb to determine if your iPod is in DFU mode. 05ac is the Vendor ID (Apple), and the number after the colon is the Product ID. The Product ID depends on whether the iPod is in DFU mode or not. Here is a table of Product IDs:
 +
{| class="wikitable"
 +
! Device !! Normal !! DFU !! WTF
 +
|-
 +
| Nano 2G
 +
| 1260
 +
| 1220
 +
| 1240
 +
|-
 +
| Nano 3G
 +
| 1262
 +
| 1223/1224
 +
| 1242
 +
|-
 +
| Nano 4G
 +
| 1263
 +
| 1225
 +
| 1243
 +
|-
 +
| Nano 5G
 +
| 1265
 +
| 1231
 +
| 1246
 +
|-
 +
| Nano 6G
 +
| 1266
 +
| 1232
 +
| 1248
 +
|-
 +
| Classic 1G
 +
| 1261
 +
| 1223
 +
| 1241
 +
|-
 +
| Classic 2G
 +
| 1261
 +
| 1223
 +
| 1245
 +
|-
 +
| Classic 3G
 +
| 1261
 +
| 1223
 +
| 1247
 +
|}
  
The nano 2G also has a DFU mode, but that one is probably booted of the NOR flash instead of mask ROM, and doesn't seem to have anything in common with the newer DFU modes. It is not yet found out how to communicate with a nano 2G in DFU mode, not even iTunes can do that.
+
Sources:
 +
 
 +
http://www.linux-usb.org/usb.ids
 +
 
 +
http://www.trejan.com/projects/ipod/phobos.html#DFURECOVERY
 +
 
 +
===DFU utility===
 +
TheSeven has written libipoddfu.py for communicating with the iPod's DFU interface. It also has a utility called ipoddfu.py for uploading files in DFU mode. These utilities can be found in [http://svn.freemyipod.org/tools/ipoddfu/ the SVN repository].
 +
 
 +
==Debug (diagnostics) mode==
 +
This mode will give quite a lot of info about your iPod. Except for the very first iPods, it can be accessed by holding center and rewind when the apple logo appears during reboot.
  
 
==Helpful pages==
 
==Helpful pages==
 +
http://www.ipodlinux.org/wiki/Key_Combinations
 +
 
http://daniel.haxx.se/blog/2008/09/03/dfu-mode-on-2nd-gen-nanos/
 
http://daniel.haxx.se/blog/2008/09/03/dfu-mode-on-2nd-gen-nanos/
 +
 +
http://www.usb.org/developers/devclass_docs/DFU_1.1.pdf
 +
 +
http://www.usb.org/developers/devclass_docs/usbdfu10.pdf

Latest revision as of 20:34, 1 April 2012

iPods have special modes that they can boot into called disk mode, DFU mode, and debug mode.

Disk mode

Disk mode has existed ever since the iPod has existed. Disk mode is stored in different locations (depends on the iPod model). Disk mode basically makes the iPod behave as a massive storage device, allowing the computer to directly read and write the data flash chip. For more information on how to enter Disk mode, refer to this Apple support document.

Diskmode.jpg

(iPodLinux project)

DFU mode

DFU (Device Firmware Upgrade) mode is a relatively new standard for upgrading firmware that is used in many devices like the OpenMoko and the newer iPods. DFU mode (since nano 2G) is contained in the on-processor bootrom. Newer iPods have both DFU mode and disk mode, while iPod Touch and iPhones have exclusively DFU mode. It is worth noting that DFU mode was implemented at the exact time that Apple switched from PortalPlayer to Samsung processors.

The Nano 2G also has a DFU mode, but this mode can only be entered by shorting testpoints on the circuit board or flashing the NOR with an image with a wrong signature/hash. There's a NOR DFU mode though, that can be entered by holding down BACK+PLAY right after rebooting the device.

Getting DFU mode on iPod Classic, Nano 3G and newer

There is a video that explain how to do this. Watch it here.

  1. Make sure your iPod is turned on and connected to your computer.
  2. Press and hold the menu and select buttons for between 10 and 15 seconds (The iPod starts to reboot after about 5 seconds, keep holding the buttons until it seems to turn off completely)
  3. The display of your iPod should now stay black, and a new USB device called "USB DFU Device" should connect to your PC.

You can use lsusb to determine if your iPod is in DFU mode. 05ac is the Vendor ID (Apple), and the number after the colon is the Product ID. The Product ID depends on whether the iPod is in DFU mode or not. Here is a table of Product IDs:

Device Normal DFU WTF
Nano 2G 1260 1220 1240
Nano 3G 1262 1223/1224 1242
Nano 4G 1263 1225 1243
Nano 5G 1265 1231 1246
Nano 6G 1266 1232 1248
Classic 1G 1261 1223 1241
Classic 2G 1261 1223 1245
Classic 3G 1261 1223 1247

Sources:

http://www.linux-usb.org/usb.ids

http://www.trejan.com/projects/ipod/phobos.html#DFURECOVERY

DFU utility

TheSeven has written libipoddfu.py for communicating with the iPod's DFU interface. It also has a utility called ipoddfu.py for uploading files in DFU mode. These utilities can be found in the SVN repository.

Debug (diagnostics) mode

This mode will give quite a lot of info about your iPod. Except for the very first iPods, it can be accessed by holding center and rewind when the apple logo appears during reboot.

Helpful pages

http://www.ipodlinux.org/wiki/Key_Combinations

http://daniel.haxx.se/blog/2008/09/03/dfu-mode-on-2nd-gen-nanos/

http://www.usb.org/developers/devclass_docs/DFU_1.1.pdf

http://www.usb.org/developers/devclass_docs/usbdfu10.pdf