Table of Contents

Example of repairing the router via JTAG (ar724x)

Note: The list of routers on which the main configuration file for OpenOCD should work, in fact, can be much larger (almost all AR724x processors). However, for each platform 1), an appropriate loader, modified so that it can be downloaded from SDRAM memory - without loss of functionality.

Hardware

JTAG on the processor

port.jtag The pinout of the EJTAG v3.1 interface on the AR724x looks like this:

JTAG Common Name AR724x Pin Connector EJTAG for DIR-615 Ex
EJTAG_SEL (do not use) 79 ASCII
TDI 81
TDO 82
TMS 84
TCK 85
RST (do not use) 93

If there is no marking of the reference of the processor feet on the board, then one can use this orientation:
Raspinovka common on all AR724x processors

Connecting to JTAG

Note: Debugging and testing (for writing this instruction) was performed with a working loader, so it was necessary to temporarily disable the flash memory of the device ( CS0 ⇒ 3.3V), so that the device initialization and boot process was interrupted in the bootloader, there may be an instruction to disable the JTAG port to release the GPIO line).

EJTAG_SEL pin - AR7240/AR7241/AR7242 Considering that EJTAG connector is not displayed on many devices - the logical state of this pin does not have a specific role for JTAG operation protocol. It's enough to interrupt the device boot from the flash memory, described in the above way. And if you consider that you are reading this manual - most likely, your device does not boot properly.

RST pin - AR7240/ AR7241/ AR7242 completely resets the processor, i.e. including the recorded CPU initialization registers, this state is equivalent to disconnecting power from the device - therefore, we will not use this pin either.

port.jtag.cables The connection is usually made through a special JTAG adapter. These can be simple and cheap USB-JTAG adapters, and old parallel-port-based adapters (LPT) for a computer - usually these adapters are self-made.

In the example presented in this section, the connection was made through the old and slow JTAG adapter for the LPT port - Wiggler( without the buffer). The design of this adapter is extremely simple.

The software part

The program part contains a list of programs that will be needed during debugging and recovery through the JTAG interface. Also, this part contains a list of used OpenOCD commands and a configuration file for AR724x processors.

Programs for working with JTAG

* backup.bin - a conditional bootloader or another piece of flash data that needs to be restored.

Note: Note that the bootloader stores information about the MAC address (TP-Link: U-boot MAC offset 0x01fc00 (value in HEX format))) and the PIN code (TP-Link: U -boot PIN offset 0x01fe00 (value in Dec format))) of the device. It should also be aware that the art section used with EEPROM information for the wireless communication chip must match the wireless chip of the device being restored.
For example: art section of MR3420 router (WiFi Chip: AR9287) does not fit to MR3220 router (WiFi Chip: AR9285) and vice versa.

The OpenOCD commands used

 reset 

B In the example presented in this section, the command is used as - identification of the identifier and device status, not more. Usually, when this command is executed, the nSRST is activated, but in our case RST pin is not the same .


 halt 

Put the processor into debugging mode (accepting commands) .


 reset init 

After executing this command, the script for this event (enclosed in braces) will be executed, which is in the config. file (sending commands to the processor) .


dump_image <file name> <start address in memory area or flash drive> <size>

This command saves the dump from the device's memory / flash drive to a file. The command can be executed before the processor and the device memory are initialized. To read flash memory, use the address 0x9f000000


load_image <file name> <address in memory area only> <file format>

This command loads the file into the device memory. The command must be executed after initializing the processor and device memory.


resume <address in memory area or flash drive>

This command starts the loader, analog go in uboot'e


init-ar7240.cfg

# Atheros AR724x MIPS 24Kc SoC.
# tested on AP99 reference board
#
# configure file for AR7200 boards (32/64 MB ram)
# this settings format for OpenCD was changed / taken from source of settings for OCD Commander
# source: http://www.cpx.cz/dls/wpe72_WPE72NX_MMJ5N26E/wp72_loader_jtag.zip

adapter_nsrst_delay 100
jtag_ntrst_delay 100

reset_config trst_only separate; # or use only "reset_config none"

set CHIPNAME ar724x

jtag newtap $ CHIPNAME cpu -irlen 5 -ircapture 0x1 -irmask 0x1f -expected-id 1

set TARGETNAME $ CHIPNAME.cpu
target create $ TARGETNAME mips_m4k -endian big -chain-position $ TARGETNAME

$ TARGETNAME configure -event reset-init {
# WAR for the bug # 55574: Set the CKE (bit 7 in DDR_CONFIG2 register)
# to low initially
mww 0xB8000004 0x99D10628

# set PLL
mww 0xb8050000 0x00040828

# update PLL
mww 0xb8050008 0x1
sleep 10
mww 0xb8050008 0x0
# disable flash remap
mww 0xbf000004 0x43

# DDR
mww 0xb8000000 0xC7BC8CD0
mww 0xB8000004 0x9DD0E6A8
mww 0xB8000010 0x00000008
mww 0xB8000008 0x00000133
sleep 10
mww 0xB8000010 0x00000001
mww 0xB800000C 0x00000000
mww 0xB8000010 0x00000002
mww 0xB8000010 0x00000008
mww 0xB8000008 0x00000033
mww 0xB8000010 0x00000001
mww 0xB8000014 0x00004F10
mww 0xB8000018 0x000000FF
mww 0xB800001C 0x00000007
mww 0xB8000020 0x00000007

#
# UART Test
#
mww 0xB8040028 0x000480FA
mww 0xB802000C 0x00000083
mww 0xB8020000 0x0000006D
mww 0xB8020004 0x00000000
mww 0xB802000C 0x00000003
mww 0xB8020008 0x00000001
mww 0xB8020000 0x00000030
mww 0xB8020000 0x00000031
mww 0xB8020000 0x00000032
mww 0xB8020000 0x00000033
mww 0xB8020000 0x00000034
mww 0xB8020000 0x00000035
mww 0xB8020000 0x00000036
mww 0xB8020000 0x00000037
mww 0xB8020000 0x00000038
mww 0xB8020000 0x00000039
mww 0xB8020000 0x0000000D
mww 0xB8020000 0x0000000A
}

# setup working area somewhere in RAM
$ TARGETNAME configure -work-area-phys 0xa0600000 -work-area-size 0x20000

# serial SPI capable flash
# flash bank <driver> <base> <size> <chip_width> <bus_width>


Recovery example

Restore the boot loader u-boot and art section, on the MR3220 (4M) router in the Windows operating system. If desired, in the same way, in addition, you can flash firmware image or the entire flash memory - fullflash.

Working with the OpenOCD program

Work in the bootloader U-boot

The final stage of recovery is via the U-boot bootloader. It is necessary to erase the working area of ​​the flash memory, and then copy the previously recorded data to the flash memory of the device.
You can do this as follows:

AR7241 # erase 0x9f000000 + 0x20000
Erase Flash from 0x9f000000 to 0x9f01ffff in Bank # 1
First 0x0 last 0x1 sector size 0x10000
Erased 2 sectors
AR7241 #

Erase the area in the flash memory for the boot loader u-boot .


AR7241 # cp 0x81000000 0x9f000000 0x20000
Copy to Flash ... write addr: 9f000000
done
AR7241 #

Copy from the SDRAM area of ​​the memory, previously written u-boot bootloader, into the flash memory .


AR7241 # erase 0x9f3F0000 + 0x10000
Erase Flash from 0x9f3f0000 to 0x9f3fffff in Bank # 1
First 0x3f last 0x3f sector size 0x10000
Erased 1 sectors
AR7241 #

Erase the area in the flash memory for the art section (flash memory 4M ) .


AR7241 # cp 0x81020000 0x9f3F0000 0x10000
Copy to Flash ... write addr: 9f3f0000
done
AR7241 #

Copy from the SDRAM area of ​​the memory, previously written art section, into the flash memory .

The loader for SDRAM and the source code can be found in the this section of the forum.

Extended logs for working with the program and the material used can be found at for forum.

More Information

Universal loader Myloram for Compex devices based on AR71xx and AR724x processors. The loader can work on third-party devices with these processors. Description of device recovery in the corresponding instructions by reference.

1)
Device with a specific architecture used by NOR / NAND / DDR memory, number of indicators, buttons, their attachment to GPIO numbers, etc. For example, here the platform is considered - AP99
2)
If necessary, you can replace it with OCD Commander , but remember that there is another format for sending registers to the processor, so the config file needs to be changed to this format.