summaryrefslogtreecommitdiffstats
path: root/kernel/arch/mn10300/include/asm/rwlock.h
blob: 6d594d4a0e10c22c2c8294b415785ce82a563a59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

@media only all and (prefers-color-scheme: dark) {
.highlight .hll { background-color: #49483e }
.highlight .c { color: #75715e } /* Comment */
.highlight .err { color: #960050; background-color: #1e0010 } /* Error */
.highlight .k { color: #66d9ef } /* Keyword */
.highlight .l { color: #ae81ff } /* Literal */
.highlight .n { color: #f8f8f2 } /* Name */
.highlight .o { color: #f92672 } /* Operator */
.highlight .p { color: #f8f8f2 } /* Punctuation */
.highlight .ch { color: #75715e } /* Comment.Hashbang */
.highlight .cm { color: #75715e } /* Comment.Multiline */
.highlight .cp { color: #75715e } /* Comment.Preproc */
.highlight .cpf { color: #75715e } /* Comment.PreprocFile */
.highlight .c1 { color: #75715e } /* Comment.Single */
.highlight .cs { color: #75715e } /* Comment.Special */
.highlight .gd { color: #f92672 } /* Generic.Deleted */
.highlight .ge { font-style: italic } /* Generic.Emph */
.highlight .gi { color: #a6e22e } /* Generic.Inserted */
.highlight .gs { font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #75715e } /* Generic.Subheading */
.highlight .kc { color: #66d9ef } /* Keyword.Constant */
.highlight .kd { color: #66d9ef } /* Keyword.Declaration */
.highlight .kn { color: #f92672 } /* Keyword.Namespace */
.highlight .kp { color: #66d9ef } /* Keyword.Pseudo */
.highlight .kr { color: #66d9ef } /* Keyword.Reserved */
.highlight .kt { color: #66d9ef } /* Keyword.Type */
.highlight .ld { color: #e6db74 } /* Literal.Date */
.highlight .m { color: #ae81ff } /* Literal.Number */
.highlight .s { color: #e6db74 } /* Literal.String */
.highlight .na { color: #a6e22e } /* Name.Attribute */
.highlight .nb { color: #f8f8f2 } /* Name.Builtin */
.highlight .nc { color: #a6e22e } /* Name.Class */
.highlight .no { color: #66d9ef } /* Name.Constant */
.highlight .nd { color: #a6e22e } /* Name.Decorator */
.highlight .ni { color: #f8f8f2 } /* Name.Entity */
.highlight .ne { color: #a6e22e } /* Name.Exception */
.highlight .nf { color: #a6e22e } /* Name.Function */
.highlight .nl { color: #f8f8f2 } /* Name.Label */
.highlight .nn { color: #f8f8f2 } /* Name.Namespace */
.highlight .nx { color: #a6e22e } /* Name.Other */
.highlight .py { color: #f8f8f2 } /* Name.Property */
.highlight .nt { color: #f92672 } /* Name.Tag */
.highlight .nv { color: #f8f8f2 } /* Name.Variable */
.highlight .ow { color: #f92672 } /* Operator.Word */
.highlight .w { color: #f8f8f2 } /* Text.Whitespace */
.highlight .mb { color: #ae81ff } /* Literal.Number.Bin */
.highlight .mf { color: #ae81ff } /* Literal.Number.Float */
.highlight .mh { color: #ae81ff } /* Literal.Number.Hex */
.highlight .mi { color: #ae81ff } /* Literal.Number.Integer */
.highlight .mo { color: #ae81ff } /* Literal.Number.Oct */
.highlight .sa { color: #e6db74 } /* Literal.String.Affix */
.highlight .sb { color: #e6db74 } /* Literal.String.Backtick */
.highlight .sc { color: #e6db74 } /* Literal.String.Char */
.highlight .dl { color: #e6db74 } /* Literal.String.Delimiter */
.highlight .sd { color: #e6db74 } /* Literal.String.Doc */
.highlight .s2 { color: #e6db74 } /* Literal.String.Double */
.highlight .se { color: #ae81ff } /* Literal.String.Escape */
.highlight .sh { color: #e6db74 } /* Literal.String.Heredoc */
.highlight .si { color: #e6db74 } /* Literal.String.In
/*
 * Helpers used by both rw spinlocks and rw semaphores.
 *
 * Based in part on code from semaphore.h and
 * spinlock.h Copyright 1996 Linus Torvalds.
 *
 * Copyright 1999 Red Hat, Inc.
 *
 * Written by Benjamin LaHaise.
 *
 * Modified by Matsushita Electric Industrial Co., Ltd.
 * Modifications:
 * 13-Nov-2006 MEI Temporarily delete lock functions for SMP support.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the Free
 * Software Foundation; either version 2 of the License, or (at your option)
 * any later version.
 */
#ifndef _ASM_RWLOCK_H
#define _ASM_RWLOCK_H

#define RW_LOCK_BIAS		 0x01000000

#ifndef CONFIG_SMP

typedef struct { unsigned long a[100]; } __dummy_lock_t;
#define __dummy_lock(lock) (*(__dummy_lock_t *)(lock))

#define RW_LOCK_BIAS_STR	"0x01000000"

#define __build_read_lock_ptr(rw, helper)				\
	do {								\
		asm volatile(						\
			"	mov	(%0),d3			\n"	\
			"	sub	1,d3			\n"	\
			"	mov	d3,(%0)			\n"	\
			"	blt	1f			\n"	\
			"	bra	2f			\n"	\
			"1:	jmp	3f			\n"	\
			"2:					\n"	\
			"	.section .text.lock,\"ax\"	\n"	\
			"3:	call	"helper"[],0		\n"	\
			"	jmp	2b			\n"	\
			"	.previous"				\
			:						\
			: "d" (rw)					\
			: "memory", "d3", "cc");			\
	} while (0)

#define __build_read_lock_const(rw, helper)				\
	do {								\
		asm volatile(						\
			"	mov	(%0),d3			\n"	\
			"	sub	1,d3			\n"	\
			"	mov	d3,(%0)			\n"	\
			"	blt	1f			\n"	\
			"	bra	2f			\n"	\
			"1:	jmp	3f			\n"	\
			"2:					\n"	\
			"	.section .text.lock,\"ax\"	\n"	\
			"3:	call	"helper"[],0		\n"	\
			"	jmp	2b			\n"	\
			"	.previous"				\
			:						\
			: "d" (rw)					\
			: "memory", "d3", "cc");			\
	} while (0)

#define __build_read_lock(rw, helper) \
	do {								\
		if (__builtin_constant_p(rw))				\
			__build_read_lock_const(rw, helper);		\
		else							\
			__build_read_lock_ptr(rw, helper);		\
	} while (0)

#define __build_write_lock_ptr(rw, helper)				\
	do {								\
		asm volatile(						\
			"	mov	(%0),d3			\n"	\
			"	sub	1,d3			\n"	\
			"	mov	d3,(%0)			\n"	\
			"	blt	1f			\n"	\
			"	bra	2f			\n"	\
			"1:	jmp	3f			\n"	\
			"2:					\n"	\
			"	.section .text.lock,\"ax\"	\n"	\
			"3:	call	"helper"[],0		\n"	\
			"	jmp	2b			\n"	\
			"	.previous"				\
			:						\
			: "d" (rw)					\
			: "memory", "d3", "cc");			\
	} while (0)

#define __build_write_lock_const(rw, helper)				\
	do {								\
		asm volatile(						\
			"	mov	(%0),d3			\n"	\
			"	sub	1,d3			\n"	\
			"	mov	d3,(%0)			\n"	\
			"	blt	1f			\n"	\
			"	bra	2f			\n"	\
			"1:	jmp	3f			\n"	\
			"2:					\n"	\
			"	.section .text.lock,\"ax\"	\n"	\
			"3:	call	"helper"[],0		\n"	\
			"	jmp	2b			\n"	\
			"	.previous"				\
			:						\
			: "d" (rw)					\
			: "memory", "d3", "cc");			\
	} while (0)

#define __build_write_lock(rw, helper)					\
	do {								\
		if (__builtin_constant_p(rw))				\
			__build_write_lock_const(rw, helper);		\
		else							\
			__build_write_lock_ptr(rw, helper);		\
	} while (0)

#endif /* CONFIG_SMP */
#endif /* _ASM_RWLOCK_H */