Hello,
+Russell in Cc.
On Tue, 22 Oct 2019 09:44:51 +0200 Miquel Raynal miquel.raynal@bootlin.com wrote:
Boris Brezillon boris.brezillon@collabora.com wrote on Mon, 21 Oct 2019 10:01:05 +0200:
On Fri, 18 Oct 2019 16:36:43 +0200 Miquel Raynal miquel.raynal@bootlin.com wrote:
Any write with either dd or flashcp to a device driven by the spear_smi.c driver will pass through the spear_smi_cpy_toio() function. This function will get called for chunks of up to 256 bytes. If the amount of data is smaller, we may have a problem if the data length is not 4-byte aligned. In this situation, the kernel panics during the memcpy:
# dd if=/dev/urandom bs=1001 count=1 of=/dev/mtd6 spear_smi_cpy_toio [620] dest c9070000, src c7be8800, len 256 spear_smi_cpy_toio [620] dest c9070100, src c7be8900, len 256 spear_smi_cpy_toio [620] dest c9070200, src c7be8a00, len 256 spear_smi_cpy_toio [620] dest c9070300, src c7be8b00, len 233 Unhandled fault: external abort on non-linefetch (0x808) at 0xc90703e8 [...] PC is at memcpy+0xcc/0x330
Can you find out which instruction is at memcpy+0xcc/0x330? For the record, the assembly is here [1].
The full disassembled file is attached, here is the failing part:
7: ldmfd sp!, {r5 - r8} b8: e8bd01e0 pop {r5, r6, r7, r8} UNWIND( .fnend ) @ end of second stmfd block
UNWIND( .fnstart ) usave r4, lr @ still in first stmdb block 8: movs r2, r2, lsl #31 bc: e1b02f82 lsls r2, r2, #31 ldr1b r1, r3, ne, abort=21f c0: 14d13001 ldrbne r3, [r1], #1 ldr1b r1, r4, cs, abort=21f c4: 24d14001 ldrbcs r4, [r1], #1 ldr1b r1, ip, cs, abort=21f c8: 24d1c001 ldrbcs ip, [r1], #1 str1b r0, r3, ne, abort=21f cc: 14c03001 strbne r3, [r0], #1 str1b r0, r4, cs, abort=21f d0: 24c04001 strbcs r4, [r0], #1 str1b r0, ip, cs, abort=21f d4: 24c0c001 strbcs ip, [r0], #1
exit r4, pc
d8: e8bd8011 pop {r0, r4, pc}
So the fault is triggered on a strbne instruction.
What I find odd is:
(1) Failing on a 1-byte store instruction, which means it should have no alignment constraints.
(2) Failing on a 1-byte store instruction, while switching to _memcpy_toio(), which does *only* 1-byte stores, works around the problem.
_memcpy_toio() looks like this:
void _memcpy_toio(volatile void __iomem *to, const void *from, size_t count) { const unsigned char *f = from; while (count) { 6c: e3520000 cmp r2, #0 70: 012fff1e bxeq lr 74: e0802002 add r2, r0, r2 count--; writeb(*f, to); 78: e4d13001 ldrb r3, [r1], #1 asm volatile("strb %1, %0" 7c: e5c03000 strb r3, [r0] f++; to++; 80: e2800001 add r0, r0, #1 while (count) { 84: e1500002 cmp r0, r2 88: 1afffffa bne 78 <_memcpy_toio+0xc> 8c: e12fff1e bx lr
So it's also doing a strb, nothing different.
Best regards,
Thomas