mirror of
https://git.code.sf.net/p/openocd/code
synced 2024-11-22 10:46:27 +00:00
a126229dff
Replace the GPLv2-or-later boilerplate with the SPDX tag. The SPDX tag on files *.c is incorrect, as it should use the C99 single line comment using '//'. But current checkpatch doesn't allow C99 comments, so keep using standard C comments, by now. Change-Id: I380d552940f1c405309a3346454251c0e80b5a45 Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: https://review.openocd.org/c/openocd/+/7159 Tested-by: jenkins
60 lines
1.3 KiB
ArmAsm
60 lines
1.3 KiB
ArmAsm
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/***************************************************************************
|
|
* Copyright (C) 2005, 2007 by Dominic Rath *
|
|
* Dominic.Rath@gmx.de *
|
|
* Copyright (C) 2010 Spencer Oliver *
|
|
* spen@spen-soft.co.uk *
|
|
***************************************************************************/
|
|
|
|
.text
|
|
.syntax unified
|
|
.arch armv7-m
|
|
.thumb
|
|
.thumb_func
|
|
|
|
.align 2
|
|
|
|
/* input parameters - */
|
|
/* R0 = source address */
|
|
/* R1 = destination address */
|
|
/* R2 = number of writes */
|
|
/* R3 = flash write command */
|
|
/* R4 = constant to mask DQ7 bits */
|
|
/* output parameters - */
|
|
/* R5 = 0x80 ok 0x00 bad */
|
|
/* temp registers - */
|
|
/* R6 = value read from flash to test status */
|
|
/* R7 = holding register */
|
|
/* unlock registers - */
|
|
/* R8 = unlock1_addr */
|
|
/* R9 = unlock1_cmd */
|
|
/* R10 = unlock2_addr */
|
|
/* R11 = unlock2_cmd */
|
|
|
|
code:
|
|
ldrh r5, [r0], #2
|
|
strh r9, [r8]
|
|
strh r11, [r10]
|
|
strh r3, [r8]
|
|
strh r5, [r1]
|
|
nop
|
|
busy:
|
|
ldrh r6, [r1]
|
|
eor r7, r5, r6
|
|
ands r7, r4, r7
|
|
bne busy
|
|
subs r2, r2, #1 /* 0x1 */
|
|
beq success
|
|
add r1, r1, #2 /* 0x2 */
|
|
b code
|
|
|
|
success:
|
|
mov r5, #128 /* 0x80 */
|
|
b done
|
|
|
|
done:
|
|
bkpt #0
|
|
|
|
.end
|