License cleanup: add SPDX GPL-2.0 license identifier to files with no license
Many source files in the tree are missing licensing information, which
makes it harder for compliance tools to determine the correct license.
By default all files without license information are under the default
license of the kernel, which is GPL version 2.
Update the files which contain no license information with the 'GPL-2.0'
SPDX license identifier. The SPDX identifier is a legally binding
shorthand, which can be used instead of the full boiler plate text.
This patch is based on work done by Thomas Gleixner and Kate Stewart and
Philippe Ombredanne.
How this work was done:
Patches were generated and checked against linux-4.14-rc6 for a subset of
the use cases:
- file had no licensing information it it.
- file was a */uapi/* one with no licensing information in it,
- file was a */uapi/* one with existing licensing information,
Further patches will be generated in subsequent months to fix up cases
where non-standard license headers were used, and references to license
had to be inferred by heuristics based on keywords.
The analysis to determine which SPDX License Identifier to be applied to
a file was done in a spreadsheet of side by side results from of the
output of two independent scanners (ScanCode & Windriver) producing SPDX
tag:value files created by Philippe Ombredanne. Philippe prepared the
base worksheet, and did an initial spot review of a few 1000 files.
The 4.13 kernel was the starting point of the analysis with 60,537 files
assessed. Kate Stewart did a file by file comparison of the scanner
results in the spreadsheet to determine which SPDX license identifier(s)
to be applied to the file. She confirmed any determination that was not
immediately clear with lawyers working with the Linux Foundation.
Criteria used to select files for SPDX license identifier tagging was:
- Files considered eligible had to be source code files.
- Make and config files were included as candidates if they contained >5
lines of source
- File already had some variant of a license header in it (even if <5
lines).
All documentation files were explicitly excluded.
The following heuristics were used to determine which SPDX license
identifiers to apply.
- when both scanners couldn't find any license traces, file was
considered to have no license information in it, and the top level
COPYING file license applied.
For non */uapi/* files that summary was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 11139
and resulted in the first patch in this series.
If that file was a */uapi/* path one, it was "GPL-2.0 WITH
Linux-syscall-note" otherwise it was "GPL-2.0". Results of that was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 WITH Linux-syscall-note 930
and resulted in the second patch in this series.
- if a file had some form of licensing information in it, and was one
of the */uapi/* ones, it was denoted with the Linux-syscall-note if
any GPL family license was found in the file or had no licensing in
it (per prior point). Results summary:
SPDX license identifier # files
---------------------------------------------------|------
GPL-2.0 WITH Linux-syscall-note 270
GPL-2.0+ WITH Linux-syscall-note 169
((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause) 21
((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) 17
LGPL-2.1+ WITH Linux-syscall-note 15
GPL-1.0+ WITH Linux-syscall-note 14
((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause) 5
LGPL-2.0+ WITH Linux-syscall-note 4
LGPL-2.1 WITH Linux-syscall-note 3
((GPL-2.0 WITH Linux-syscall-note) OR MIT) 3
((GPL-2.0 WITH Linux-syscall-note) AND MIT) 1
and that resulted in the third patch in this series.
- when the two scanners agreed on the detected license(s), that became
the concluded license(s).
- when there was disagreement between the two scanners (one detected a
license but the other didn't, or they both detected different
licenses) a manual inspection of the file occurred.
- In most cases a manual inspection of the information in the file
resulted in a clear resolution of the license that should apply (and
which scanner probably needed to revisit its heuristics).
- When it was not immediately clear, the license identifier was
confirmed with lawyers working with the Linux Foundation.
- If there was any question as to the appropriate license identifier,
the file was flagged for further research and to be revisited later
in time.
In total, over 70 hours of logged manual review was done on the
spreadsheet to determine the SPDX license identifiers to apply to the
source files by Kate, Philippe, Thomas and, in some cases, confirmation
by lawyers working with the Linux Foundation.
Kate also obtained a third independent scan of the 4.13 code base from
FOSSology, and compared selected files where the other two scanners
disagreed against that SPDX file, to see if there was new insights. The
Windriver scanner is based on an older version of FOSSology in part, so
they are related.
Thomas did random spot checks in about 500 files from the spreadsheets
for the uapi headers and agreed with SPDX license identifier in the
files he inspected. For the non-uapi files Thomas did random spot checks
in about 15000 files.
In initial set of patches against 4.14-rc6, 3 files were found to have
copy/paste license identifier errors, and have been fixed to reflect the
correct identifier.
Additionally Philippe spent 10 hours this week doing a detailed manual
inspection and review of the 12,461 patched files from the initial patch
version early this week with:
- a full scancode scan run, collecting the matched texts, detected
license ids and scores
- reviewing anything where there was a license detected (about 500+
files) to ensure that the applied SPDX license was correct
- reviewing anything where there was no detection but the patch license
was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied
SPDX license was correct
This produced a worksheet with 20 files needing minor correction. This
worksheet was then exported into 3 different .csv files for the
different types of files to be modified.
These .csv files were then reviewed by Greg. Thomas wrote a script to
parse the csv files and add the proper SPDX tag to the file, in the
format that the file expected. This script was further refined by Greg
based on the output to detect more types of files automatically and to
distinguish between header and source .c files (which need different
comment types.) Finally Greg ran the script using the .csv files to
generate the patches.
Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org>
Reviewed-by: Philippe Ombredanne <pombredanne@nexb.com>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2017-11-01 17:07:57 +03:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2005-04-17 02:20:36 +04:00
|
|
|
#include <linux/linkage.h>
|
|
|
|
#include <asm/assembler.h>
|
|
|
|
/*
|
|
|
|
* Function: v4t_late_abort
|
|
|
|
*
|
2011-06-26 19:01:26 +04:00
|
|
|
* Params : r2 = pt_regs
|
|
|
|
* : r4 = aborted context pc
|
2011-06-26 17:35:07 +04:00
|
|
|
* : r5 = aborted context psr
|
2005-04-17 02:20:36 +04:00
|
|
|
*
|
2016-10-18 12:24:49 +03:00
|
|
|
* Returns : r4-r5, r9-r11, r13 preserved
|
2005-04-17 02:20:36 +04:00
|
|
|
*
|
|
|
|
* Purpose : obtain information about current aborted instruction.
|
|
|
|
* Note: we read user space. This means we might cause a data
|
|
|
|
* abort here if the I-TLB and D-TLB aren't seeing the same
|
|
|
|
* picture. Unfortunately, this does happen. We live with it.
|
|
|
|
*/
|
|
|
|
ENTRY(v4t_late_abort)
|
2011-06-26 17:35:07 +04:00
|
|
|
tst r5, #PSR_T_BIT @ check for thumb mode
|
2006-09-28 16:46:16 +04:00
|
|
|
#ifdef CONFIG_CPU_CP15_MMU
|
2005-04-17 02:20:36 +04:00
|
|
|
mrc p15, 0, r1, c5, c0, 0 @ get FSR
|
|
|
|
mrc p15, 0, r0, c6, c0, 0 @ get FAR
|
2006-09-28 16:46:16 +04:00
|
|
|
bic r1, r1, #1 << 11 | 1 << 10 @ clear bits 11 and 10 of FSR
|
|
|
|
#else
|
|
|
|
mov r0, #0 @ clear r0, r1 (no FSR/FAR)
|
|
|
|
mov r1, #0
|
|
|
|
#endif
|
2005-04-17 02:20:36 +04:00
|
|
|
bne .data_thumb_abort
|
2011-06-26 17:35:07 +04:00
|
|
|
ldr r8, [r4] @ read arm instruction
|
2015-08-20 12:32:02 +03:00
|
|
|
uaccess_disable ip @ disable userspace access
|
2005-04-17 02:20:36 +04:00
|
|
|
tst r8, #1 << 20 @ L = 1 -> write?
|
|
|
|
orreq r1, r1, #1 << 11 @ yes.
|
|
|
|
and r7, r8, #15 << 24
|
|
|
|
add pc, pc, r7, lsr #22 @ Now branch to the relevant processing routine
|
|
|
|
nop
|
|
|
|
|
|
|
|
/* 0 */ b .data_arm_lateldrhpost @ ldrh rd, [rn], #m/rm
|
|
|
|
/* 1 */ b .data_arm_lateldrhpre @ ldrh rd, [rn, #m/rm]
|
|
|
|
/* 2 */ b .data_unknown
|
|
|
|
/* 3 */ b .data_unknown
|
|
|
|
/* 4 */ b .data_arm_lateldrpostconst @ ldr rd, [rn], #m
|
|
|
|
/* 5 */ b .data_arm_lateldrpreconst @ ldr rd, [rn, #m]
|
|
|
|
/* 6 */ b .data_arm_lateldrpostreg @ ldr rd, [rn], rm
|
|
|
|
/* 7 */ b .data_arm_lateldrprereg @ ldr rd, [rn, rm]
|
|
|
|
/* 8 */ b .data_arm_ldmstm @ ldm*a rn, <rlist>
|
|
|
|
/* 9 */ b .data_arm_ldmstm @ ldm*b rn, <rlist>
|
|
|
|
/* a */ b .data_unknown
|
|
|
|
/* b */ b .data_unknown
|
2011-06-26 19:01:26 +04:00
|
|
|
/* c */ b do_DataAbort @ ldc rd, [rn], #m @ Same as ldr rd, [rn], #m
|
|
|
|
/* d */ b do_DataAbort @ ldc rd, [rn, #m]
|
2005-04-17 02:20:36 +04:00
|
|
|
/* e */ b .data_unknown
|
2016-10-18 12:24:49 +03:00
|
|
|
/* f */ b .data_unknown
|
|
|
|
|
|
|
|
.data_unknown_r9:
|
|
|
|
ldr r9, [sp], #4
|
2005-04-17 02:20:36 +04:00
|
|
|
.data_unknown: @ Part of jumptable
|
2011-06-26 17:35:07 +04:00
|
|
|
mov r0, r4
|
2005-04-17 02:20:36 +04:00
|
|
|
mov r1, r8
|
2011-06-26 19:01:26 +04:00
|
|
|
b baddataabort
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
.data_arm_ldmstm:
|
|
|
|
tst r8, #1 << 21 @ check writeback bit
|
2011-06-26 19:01:26 +04:00
|
|
|
beq do_DataAbort @ no writeback -> no fixup
|
2016-10-18 12:24:49 +03:00
|
|
|
str r9, [sp, #-4]!
|
2005-04-17 02:20:36 +04:00
|
|
|
mov r7, #0x11
|
|
|
|
orr r7, r7, #0x1100
|
|
|
|
and r6, r8, r7
|
2011-06-26 17:42:02 +04:00
|
|
|
and r9, r8, r7, lsl #1
|
|
|
|
add r6, r6, r9, lsr #1
|
|
|
|
and r9, r8, r7, lsl #2
|
|
|
|
add r6, r6, r9, lsr #2
|
|
|
|
and r9, r8, r7, lsl #3
|
|
|
|
add r6, r6, r9, lsr #3
|
2005-04-17 02:20:36 +04:00
|
|
|
add r6, r6, r6, lsr #8
|
|
|
|
add r6, r6, r6, lsr #4
|
|
|
|
and r6, r6, #15 @ r6 = no. of registers to transfer.
|
2011-06-27 15:27:47 +04:00
|
|
|
and r9, r8, #15 << 16 @ Extract 'n' from instruction
|
|
|
|
ldr r7, [r2, r9, lsr #14] @ Get register 'Rn'
|
2005-04-17 02:20:36 +04:00
|
|
|
tst r8, #1 << 23 @ Check U bit
|
|
|
|
subne r7, r7, r6, lsl #2 @ Undo increment
|
|
|
|
addeq r7, r7, r6, lsl #2 @ Undo decrement
|
2011-06-27 15:27:47 +04:00
|
|
|
str r7, [r2, r9, lsr #14] @ Put register 'Rn'
|
2016-10-18 12:24:49 +03:00
|
|
|
ldr r9, [sp], #4
|
2011-06-26 19:01:26 +04:00
|
|
|
b do_DataAbort
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
.data_arm_lateldrhpre:
|
|
|
|
tst r8, #1 << 21 @ Check writeback bit
|
2011-06-26 19:01:26 +04:00
|
|
|
beq do_DataAbort @ No writeback -> no fixup
|
2005-04-17 02:20:36 +04:00
|
|
|
.data_arm_lateldrhpost:
|
2016-10-18 12:24:49 +03:00
|
|
|
str r9, [sp, #-4]!
|
2011-06-27 15:27:47 +04:00
|
|
|
and r9, r8, #0x00f @ get Rm / low nibble of immediate value
|
2005-04-17 02:20:36 +04:00
|
|
|
tst r8, #1 << 22 @ if (immediate offset)
|
|
|
|
andne r6, r8, #0xf00 @ { immediate high nibble
|
2011-06-27 15:27:47 +04:00
|
|
|
orrne r6, r9, r6, lsr #4 @ combine nibbles } else
|
|
|
|
ldreq r6, [r2, r9, lsl #2] @ { load Rm value }
|
2005-04-17 02:20:36 +04:00
|
|
|
.data_arm_apply_r6_and_rn:
|
2011-06-27 15:27:47 +04:00
|
|
|
and r9, r8, #15 << 16 @ Extract 'n' from instruction
|
|
|
|
ldr r7, [r2, r9, lsr #14] @ Get register 'Rn'
|
2005-04-17 02:20:36 +04:00
|
|
|
tst r8, #1 << 23 @ Check U bit
|
|
|
|
subne r7, r7, r6 @ Undo incrmenet
|
|
|
|
addeq r7, r7, r6 @ Undo decrement
|
2011-06-27 15:27:47 +04:00
|
|
|
str r7, [r2, r9, lsr #14] @ Put register 'Rn'
|
2016-10-18 12:24:49 +03:00
|
|
|
ldr r9, [sp], #4
|
2011-06-26 19:01:26 +04:00
|
|
|
b do_DataAbort
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
.data_arm_lateldrpreconst:
|
|
|
|
tst r8, #1 << 21 @ check writeback bit
|
2011-06-26 19:01:26 +04:00
|
|
|
beq do_DataAbort @ no writeback -> no fixup
|
2005-04-17 02:20:36 +04:00
|
|
|
.data_arm_lateldrpostconst:
|
2011-06-27 15:23:11 +04:00
|
|
|
movs r6, r8, lsl #20 @ Get offset
|
2011-06-26 19:01:26 +04:00
|
|
|
beq do_DataAbort @ zero -> no fixup
|
2016-10-18 12:24:49 +03:00
|
|
|
str r9, [sp, #-4]!
|
2011-06-27 15:27:47 +04:00
|
|
|
and r9, r8, #15 << 16 @ Extract 'n' from instruction
|
|
|
|
ldr r7, [r2, r9, lsr #14] @ Get register 'Rn'
|
2005-04-17 02:20:36 +04:00
|
|
|
tst r8, #1 << 23 @ Check U bit
|
2011-06-27 15:23:11 +04:00
|
|
|
subne r7, r7, r6, lsr #20 @ Undo increment
|
|
|
|
addeq r7, r7, r6, lsr #20 @ Undo decrement
|
2011-06-27 15:27:47 +04:00
|
|
|
str r7, [r2, r9, lsr #14] @ Put register 'Rn'
|
2016-10-18 12:24:49 +03:00
|
|
|
ldr r9, [sp], #4
|
2011-06-26 19:01:26 +04:00
|
|
|
b do_DataAbort
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
.data_arm_lateldrprereg:
|
|
|
|
tst r8, #1 << 21 @ check writeback bit
|
2011-06-26 19:01:26 +04:00
|
|
|
beq do_DataAbort @ no writeback -> no fixup
|
2005-04-17 02:20:36 +04:00
|
|
|
.data_arm_lateldrpostreg:
|
|
|
|
and r7, r8, #15 @ Extract 'm' from instruction
|
2011-06-27 12:52:54 +04:00
|
|
|
ldr r6, [r2, r7, lsl #2] @ Get register 'Rm'
|
2016-10-18 12:24:49 +03:00
|
|
|
str r9, [sp, #-4]!
|
2011-06-27 15:27:47 +04:00
|
|
|
mov r9, r8, lsr #7 @ get shift count
|
|
|
|
ands r9, r9, #31
|
2005-04-17 02:20:36 +04:00
|
|
|
and r7, r8, #0x70 @ get shift type
|
|
|
|
orreq r7, r7, #8 @ shift count = 0
|
|
|
|
add pc, pc, r7
|
|
|
|
nop
|
|
|
|
|
2011-06-27 15:27:47 +04:00
|
|
|
mov r6, r6, lsl r9 @ 0: LSL #!0
|
2005-04-17 02:20:36 +04:00
|
|
|
b .data_arm_apply_r6_and_rn
|
|
|
|
b .data_arm_apply_r6_and_rn @ 1: LSL #0
|
|
|
|
nop
|
2016-10-18 12:24:49 +03:00
|
|
|
b .data_unknown_r9 @ 2: MUL?
|
2005-04-17 02:20:36 +04:00
|
|
|
nop
|
2016-10-18 12:24:49 +03:00
|
|
|
b .data_unknown_r9 @ 3: MUL?
|
2005-04-17 02:20:36 +04:00
|
|
|
nop
|
2011-06-27 15:27:47 +04:00
|
|
|
mov r6, r6, lsr r9 @ 4: LSR #!0
|
2005-04-17 02:20:36 +04:00
|
|
|
b .data_arm_apply_r6_and_rn
|
|
|
|
mov r6, r6, lsr #32 @ 5: LSR #32
|
|
|
|
b .data_arm_apply_r6_and_rn
|
2016-10-18 12:24:49 +03:00
|
|
|
b .data_unknown_r9 @ 6: MUL?
|
2005-04-17 02:20:36 +04:00
|
|
|
nop
|
2016-10-18 12:24:49 +03:00
|
|
|
b .data_unknown_r9 @ 7: MUL?
|
2005-04-17 02:20:36 +04:00
|
|
|
nop
|
2011-06-27 15:27:47 +04:00
|
|
|
mov r6, r6, asr r9 @ 8: ASR #!0
|
2005-04-17 02:20:36 +04:00
|
|
|
b .data_arm_apply_r6_and_rn
|
|
|
|
mov r6, r6, asr #32 @ 9: ASR #32
|
|
|
|
b .data_arm_apply_r6_and_rn
|
2016-10-18 12:24:49 +03:00
|
|
|
b .data_unknown_r9 @ A: MUL?
|
2005-04-17 02:20:36 +04:00
|
|
|
nop
|
2016-10-18 12:24:49 +03:00
|
|
|
b .data_unknown_r9 @ B: MUL?
|
2005-04-17 02:20:36 +04:00
|
|
|
nop
|
2011-06-27 15:27:47 +04:00
|
|
|
mov r6, r6, ror r9 @ C: ROR #!0
|
2005-04-17 02:20:36 +04:00
|
|
|
b .data_arm_apply_r6_and_rn
|
|
|
|
mov r6, r6, rrx @ D: RRX
|
|
|
|
b .data_arm_apply_r6_and_rn
|
2016-10-18 12:24:49 +03:00
|
|
|
b .data_unknown_r9 @ E: MUL?
|
2005-04-17 02:20:36 +04:00
|
|
|
nop
|
2016-10-18 12:24:49 +03:00
|
|
|
b .data_unknown_r9 @ F: MUL?
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
.data_thumb_abort:
|
2011-06-26 17:35:07 +04:00
|
|
|
ldrh r8, [r4] @ read instruction
|
2015-08-20 12:32:02 +03:00
|
|
|
uaccess_disable ip @ disable userspace access
|
2005-04-17 02:20:36 +04:00
|
|
|
tst r8, #1 << 11 @ L = 1 -> write?
|
|
|
|
orreq r1, r1, #1 << 8 @ yes
|
|
|
|
and r7, r8, #15 << 12
|
|
|
|
add pc, pc, r7, lsr #10 @ lookup in table
|
|
|
|
nop
|
|
|
|
|
|
|
|
/* 0 */ b .data_unknown
|
|
|
|
/* 1 */ b .data_unknown
|
|
|
|
/* 2 */ b .data_unknown
|
|
|
|
/* 3 */ b .data_unknown
|
|
|
|
/* 4 */ b .data_unknown
|
|
|
|
/* 5 */ b .data_thumb_reg
|
2011-06-26 19:01:26 +04:00
|
|
|
/* 6 */ b do_DataAbort
|
|
|
|
/* 7 */ b do_DataAbort
|
|
|
|
/* 8 */ b do_DataAbort
|
|
|
|
/* 9 */ b do_DataAbort
|
2005-04-17 02:20:36 +04:00
|
|
|
/* A */ b .data_unknown
|
|
|
|
/* B */ b .data_thumb_pushpop
|
|
|
|
/* C */ b .data_thumb_ldmstm
|
|
|
|
/* D */ b .data_unknown
|
|
|
|
/* E */ b .data_unknown
|
|
|
|
/* F */ b .data_unknown
|
|
|
|
|
|
|
|
.data_thumb_reg:
|
|
|
|
tst r8, #1 << 9
|
2011-06-26 19:01:26 +04:00
|
|
|
beq do_DataAbort
|
2005-04-17 02:20:36 +04:00
|
|
|
tst r8, #1 << 10 @ If 'S' (signed) bit is set
|
|
|
|
movne r1, #0 @ it must be a load instr
|
2011-06-26 19:01:26 +04:00
|
|
|
b do_DataAbort
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
.data_thumb_pushpop:
|
|
|
|
tst r8, #1 << 10
|
|
|
|
beq .data_unknown
|
2016-10-18 12:24:49 +03:00
|
|
|
str r9, [sp, #-4]!
|
2005-04-17 02:20:36 +04:00
|
|
|
and r6, r8, #0x55 @ hweight8(r8) + R bit
|
2011-06-26 17:42:02 +04:00
|
|
|
and r9, r8, #0xaa
|
|
|
|
add r6, r6, r9, lsr #1
|
|
|
|
and r9, r6, #0xcc
|
2005-04-17 02:20:36 +04:00
|
|
|
and r6, r6, #0x33
|
2011-06-26 17:42:02 +04:00
|
|
|
add r6, r6, r9, lsr #2
|
2005-04-17 02:20:36 +04:00
|
|
|
movs r7, r8, lsr #9 @ C = r8 bit 8 (R bit)
|
|
|
|
adc r6, r6, r6, lsr #4 @ high + low nibble + R bit
|
|
|
|
and r6, r6, #15 @ number of regs to transfer
|
2011-06-27 12:52:54 +04:00
|
|
|
ldr r7, [r2, #13 << 2]
|
2005-04-17 02:20:36 +04:00
|
|
|
tst r8, #1 << 11
|
|
|
|
addeq r7, r7, r6, lsl #2 @ increment SP if PUSH
|
|
|
|
subne r7, r7, r6, lsl #2 @ decrement SP if POP
|
2011-06-27 12:52:54 +04:00
|
|
|
str r7, [r2, #13 << 2]
|
2016-10-18 12:24:49 +03:00
|
|
|
ldr r9, [sp], #4
|
2011-06-26 19:01:26 +04:00
|
|
|
b do_DataAbort
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
.data_thumb_ldmstm:
|
2016-10-18 12:24:49 +03:00
|
|
|
str r9, [sp, #-4]!
|
2005-04-17 02:20:36 +04:00
|
|
|
and r6, r8, #0x55 @ hweight8(r8)
|
2011-06-26 17:42:02 +04:00
|
|
|
and r9, r8, #0xaa
|
|
|
|
add r6, r6, r9, lsr #1
|
|
|
|
and r9, r6, #0xcc
|
2005-04-17 02:20:36 +04:00
|
|
|
and r6, r6, #0x33
|
2011-06-26 17:42:02 +04:00
|
|
|
add r6, r6, r9, lsr #2
|
2005-04-17 02:20:36 +04:00
|
|
|
add r6, r6, r6, lsr #4
|
2011-06-27 15:27:47 +04:00
|
|
|
and r9, r8, #7 << 8
|
|
|
|
ldr r7, [r2, r9, lsr #6]
|
2005-04-17 02:20:36 +04:00
|
|
|
and r6, r6, #15 @ number of regs to transfer
|
|
|
|
sub r7, r7, r6, lsl #2 @ always decrement
|
2011-06-27 15:27:47 +04:00
|
|
|
str r7, [r2, r9, lsr #6]
|
2016-10-18 12:24:49 +03:00
|
|
|
ldr r9, [sp], #4
|
2011-06-26 19:01:26 +04:00
|
|
|
b do_DataAbort
|