blob: 75b9eb4bc91b1e572dab28f9a5fe0e0edaba3ba0 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Andre Przywara1ea4fac2016-05-12 12:14:41 +01002/*
3 * Copyright (C) 2016 ARM Ltd.
4 *
5 * ARM and ARM64 barrier instructions
6 * split from armv7.h to allow sharing between ARM and ARM64
7 *
8 * Original copyright in armv7.h was:
9 * (C) Copyright 2010 Texas Instruments, <www.ti.com> Aneesh V <aneesh@ti.com>
10 *
11 * Much of the original barrier code was contributed by:
12 * Valentine Barshak <valentine.barshak@cogentembedded.com>
Andre Przywara1ea4fac2016-05-12 12:14:41 +010013 */
14#ifndef __BARRIERS_H__
15#define __BARRIERS_H__
16
17#ifndef __ASSEMBLY__
18
19#ifndef CONFIG_ARM64
20/*
21 * CP15 Barrier instructions
22 * Please note that we have separate barrier instructions in ARMv7
23 * However, we use the CP15 based instructtions because we use
24 * -march=armv5 in U-Boot
25 */
26#define CP15ISB asm volatile ("mcr p15, 0, %0, c7, c5, 4" : : "r" (0))
27#define CP15DSB asm volatile ("mcr p15, 0, %0, c7, c10, 4" : : "r" (0))
28#define CP15DMB asm volatile ("mcr p15, 0, %0, c7, c10, 5" : : "r" (0))
29
30#endif /* !CONFIG_ARM64 */
31
Tom Rinia78cd862016-08-01 18:54:53 -040032#if __LINUX_ARM_ARCH__ >= 7
Andre Przywara1ea4fac2016-05-12 12:14:41 +010033#define ISB asm volatile ("isb sy" : : : "memory")
34#define DSB asm volatile ("dsb sy" : : : "memory")
35#define DMB asm volatile ("dmb sy" : : : "memory")
Tom Rinia78cd862016-08-01 18:54:53 -040036#elif __LINUX_ARM_ARCH__ == 6
Andre Przywara1ea4fac2016-05-12 12:14:41 +010037#define ISB CP15ISB
38#define DSB CP15DSB
39#define DMB CP15DMB
Tom Rinia78cd862016-08-01 18:54:53 -040040#else
41#define ISB asm volatile ("" : : : "memory")
42#define DSB CP15DSB
43#define DMB asm volatile ("" : : : "memory")
Andre Przywara1ea4fac2016-05-12 12:14:41 +010044#endif
45
Tom Rinia78cd862016-08-01 18:54:53 -040046#define isb() ISB
47#define dsb() DSB
48#define dmb() DMB
Andre Przywara1ea4fac2016-05-12 12:14:41 +010049#endif /* __ASSEMBLY__ */
50#endif /* __BARRIERS_H__ */