Estoy trabajando en una XScale PXA270 con NOR Flash en la selección de chip 0.
Debido a la obsolescencia del flash anterior, mi compañía lo cambió por un MX29GL128 compatible con AMD / Spansion.
Estoy tratando de escribir en él usando Lauterbach JTAG.
Aquí está mi script: enlace
; reset the FLASH declaration
FLASH.CFI 0x00000000 L
; declare FLASH sectors via
; CFI query
;FLASH.CHANGEtype ALL AM29F100
; change type to AM29F100 to use "word wise" mode
FLASH.UNLOCK ALL
; unlock FLASH if required
FLASH.ReProgram ALL
; enable the FLASH for programming
;Data.LOAD.auto /home/lai/devel/uboot-2017-01/u-boot.bin
Data.LOAD.binary /tftpboot/u-boot-rioms-pxa270.bin D:0x00000000--0x1FFFF
; load the programming file
FLASH.ReProgram off
; program the FLASH and disable
; the FLASH programming
Pero me sale un error.
Error de programación de Flash en torno a la dirección SD:
0x7C
.
En esta imagen, puede ver los comandos en el bus y el error:
¿Tienes alguna idea? He estado atrapado en ella durante muchos días.