aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/common/vlock.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/common/vlock.h')
-rw-r--r--arch/arm/common/vlock.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/arch/arm/common/vlock.h b/arch/arm/common/vlock.h
new file mode 100644
index 000000000000..3b441475a59b
--- /dev/null
+++ b/arch/arm/common/vlock.h
@@ -0,0 +1,29 @@
1/*
2 * vlock.h - simple voting lock implementation
3 *
4 * Created by: Dave Martin, 2012-08-16
5 * Copyright: (C) 2012-2013 Linaro Limited
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 */
16
17#ifndef __VLOCK_H
18#define __VLOCK_H
19
20#include <asm/mcpm.h>
21
22/* Offsets and sizes are rounded to a word (4 bytes) */
23#define VLOCK_OWNER_OFFSET 0
24#define VLOCK_VOTING_OFFSET 4
25#define VLOCK_VOTING_SIZE ((MAX_CPUS_PER_CLUSTER + 3) / 4 * 4)
26#define VLOCK_SIZE (VLOCK_VOTING_OFFSET + VLOCK_VOTING_SIZE)
27#define VLOCK_OWNER_NONE 0
28
29#endif /* ! __VLOCK_H */