summaryrefslogtreecommitdiffstats
path: root/arch/arm/thumb1/include/asm/proc-armv/system.h
blob: 7dfbf3d33db00a9e682aa18b89638999029fb78c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/*
 *  Thumb-1 drop-in for the linux/include/asm-arm/proc-armv/system.h
 *
 *  (C) Copyright 2015
 *  Albert ARIBAUD <albert.u.boot@aribaud.net>
 *
 * The original file does not build in Thumb mode. However, in U-Boot
 * we don't use interrupt context, so we can redefine these as empty
 * memory barriers, which makes Thumb-1 compiler happy.
 *
 *  SPDX-License-Identifier:	GPL-2.0+
 */

/*
 * Use the same macro name as linux/include/asm-arm/proc-armv/system.h
 * here, so that if the original ever gets included after us, it won't
 * try to re-redefine anything.
 */

#ifndef __ASM_PROC_SYSTEM_H
#define __ASM_PROC_SYSTEM_H

/*
 * Redefine all original macros with static inline functions containing
 * a simple memory barrier, so that they produce the same instruction
 * ordering constraints as their original counterparts.
 * We use static inline functions rather than macros so that we can tell
 * the compiler to not complain about unused arguments.
 */

static inline void local_irq_save(
	unsigned long flags __attribute__((unused)))
{
	__asm__ __volatile__ ("" : : : "memory");
}

static inline void local_irq_enable(void)
{
	__asm__ __volatile__ ("" : : : "memory");
}

static inline void local_irq_disable(void)
{
	__asm__ __volatile__ ("" : : : "memory");
}

static inline void __stf(void)
{
	__asm__ __volatile__ ("" : : : "memory");
}

static inline void __clf(void)
{
	__asm__ __volatile__ ("" : : : "memory");
}

static inline void local_save_flags(
	unsigned long flags __attribute__((unused)))
{
	__asm__ __volatile__ ("" : : : "memory");
}

static inline void local_irq_restore(
	unsigned long flags __attribute__((unused)))
{
	__asm__ __volatile__ ("" : : : "memory");
}

#endif /*  __ASM_PROC_SYSTEM_H */
OpenPOWER on IntegriCloud