• Visit https://www.embeddedcomputers.net/ for Hardware; Software and all other things related to FlashcatUSB

WGR612 v5 Script JTAG

Status
Not open for further replies.

D3m0n

Administrator
Staff member
# Script file for Netgear WGR-614 v5 - 535017F
# Processor is a Broadcom BCM5350
# Board needs 4x 4.7 K resistors soldered onto blank pads next to J202 (TAP)
# JTAG TAP: Pin 1 (TRST), Pin 3 (TDI), Pin 5 (TDO), Pin 7 (TMS), Pin 9 (TCK), Pin 2 (GND)

MyDevice = "Netgear WGR614v5" #Name of device

SetParam(1,100) #Sets the Intel flash delay
SetParam(2,200) #Sets the AMD flash delay
SetParam(3,100) #Sets the DMA read delay

JTAG.LittleEndian #Sets the device endian

JTAG.MemoryAddress(0x1FC00000)
JTAG.MemoryType("RAM")
JTAG.MemorySize(0x100000)
CFGMEM = JTAG.MemoryInit()

JTAG.MemoryAddress(0x1FC00000)
JTAG.MemoryType("CFI")
CFGFLASH = JTAG.MemoryInit()
 

Attachments

  • WGR614v5_JTAG.bcs
    686 bytes · Views: 26
Status
Not open for further replies.
Back
Top