2018-04-03 19:59:33 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
|
|
/*
|
|
|
|
* Routines to access the system control register
|
|
|
|
*
|
|
|
|
* Copyright (c) 2018 Heinrich Schuchardt
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/linkage.h>
|
|
|
|
|
|
|
|
/*
|
2023-07-01 15:26:18 +00:00
|
|
|
* void v7_arch_cp15_allow_unaligned(void) - allow unaligned access
|
2018-04-03 19:59:33 +00:00
|
|
|
*
|
|
|
|
* This routine clears the aligned flag in the system control register.
|
|
|
|
* After calling this routine unaligned access does no longer lead to a
|
|
|
|
* data abort but is handled by the CPU.
|
|
|
|
*/
|
2023-07-01 15:26:18 +00:00
|
|
|
ENTRY(v7_arch_cp15_allow_unaligned)
|
2018-04-03 19:59:33 +00:00
|
|
|
mrc p15, 0, r0, c1, c0, 0 @ load system control register
|
|
|
|
bic r0, r0, #2 @ clear aligned flag
|
|
|
|
mcr p15, 0, r0, c1, c0, 0 @ write system control register
|
|
|
|
bx lr @ return
|
2023-07-01 15:26:18 +00:00
|
|
|
ENDPROC(v7_arch_cp15_allow_unaligned)
|