Difference between revisions of "JTAG"

From freemyipod.org
Jump to: navigation, search
(Created page with "Some iPods seemingly have the ability to be debugged over JTAG. Here's some documentation on getting started. == Devices == {| class="wikitable" |- ! Device !! Protocol !! L...")
 
Line 63: Line 63:
  
 
[[Image:Nano5G Broken JTAG.png|300px]]
 
[[Image:Nano5G Broken JTAG.png|300px]]
 +
 +
The above listing shows OpenOCD/GDB connected to a Nano 5G a while after it has been first scanned via JTAG. It seems to be stuck in a permanent 'data abort' handler loop, with some pretty trashed register values (although some of them are still in valid range for running OSOS from 0x0800_0000).
  
 
What has been attempted so far:
 
What has been attempted so far:

Revision as of 20:44, 17 October 2022

Some iPods seemingly have the ability to be debugged over JTAG. Here's some documentation on getting started.

Devices

Device Protocol Location
Nano 2G JTAG (memory locked out) 30-pin connector, needs jumpers
Nano 5G JTAG (memory locked out) 30-pin connector, needs jumpers

Nano 2G

The following pins carry 'classic' multi-wire JTAG on the Dock Connector:

Pin Number Function
17 TMS
21 TDI
22 TDO
23 TCK
24 nTRST

In addition, the following pads need to be bridged on the logic board:

Top annote.jpg

Nano 5G

The following pins carry 'classic' multi-wire JTAG on the Dock Connector:

Pin Number Function
3 RTCK (optional)
5 TDO
9 TDI
14 TCK
17 TMS

In addition, the following 01005 footprints need to be populated with 0 ohm resistors (or bridged with a wire) on the logic board:

Nano5G JTAG.png

'Memory locked out' JTAG

Even though JTAG is accessible on the N2G/N5G, and the CPU core can be controlled over it, no memory is accessible anymore. In fact, it seems like the CPU core gets fully disconnected from the AHB bus any time JTAG is enabled. During the Nano 2G initial reverse engineering process low-level access to Dcache was used to dump memory. However, no method of re-establishing full memory access has yet been found.

Nano5G Broken JTAG.png

The above listing shows OpenOCD/GDB connected to a Nano 5G a while after it has been first scanned via JTAG. It seems to be stuck in a permanent 'data abort' handler loop, with some pretty trashed register values (although some of them are still in valid range for running OSOS from 0x0800_0000).

What has been attempted so far:

  1. Making sure the WDT isn't running.
  2. Writing to CHIPID in an attempt to 'demote' the devices à la iOS.
  3. Connecting while the device is in the BootROM.

Other observations:

  1. The 'memory bus disconnection' seems to happen immediately after a JTAG chain scan, so this might be implemented as extra logic somewhere in the SoC that needs some magic TDI bits to be fed so it doesn't lock out the AHB bus (or whatever it does).
  2. This might just be a bug in openocd ARM11, or some quirk of the ARM1176 core (or SoC) in which caches break during debug access, but that seems unlikely.