This file is indexed.

/usr/include/xenomai/asm-arm/atomic_asm.h is in libxenomai-dev 2.6.3-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
/*
 * Copyright (C) 2003,2004 Philippe Gerum <rpm@xenomai.org>.
 *
 * ARM port
 *   Copyright (C) 2005 Stelian Pop
 *
 * Xenomai 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.
 *
 * Xenomai is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Xenomai; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 * 02111-1307, USA.
 */

#ifndef _XENO_ASM_ARM_ATOMIC_ASM_H
#define _XENO_ASM_ARM_ATOMIC_ASM_H

#ifndef _XENO_ASM_ARM_ATOMIC_H
#error "please don't include asm/atomic_asm.h directly"
#endif

#if __LINUX_ARM_ARCH__ < 6 && defined(CONFIG_SMP)
#error "SMP not supported below armv6 with ad-hoc atomic operations, compile without SMP or with -march=armv6 or above"
#endif

extern void __xnarch_xchg_called_with_bad_pointer(void);

#define xnarch_read_memory_barrier()		xnarch_memory_barrier()
#define xnarch_write_memory_barrier()		xnarch_memory_barrier()

#if __LINUX_ARM_ARCH__ >= 6
#ifndef CONFIG_SMP
#define xnarch_memory_barrier() \
	__asm__ __volatile__ ("": /* */ : /* */ :"memory")
#else /* SMP */
#if __LINUX_ARM_ARCH__ >= 7
#define xnarch_memory_barrier()	\
	__asm__ __volatile__ ("dmb" : /* */ : /* */ : "memory")
#else /* __LINUX_ARM_ARCH == 6 */
#define xnarch_memory_barrier()	\
	__asm__ __volatile__ ("mcr p15, 0, %0, c7, c10, 5"	\
			      : /* */ : "r" (0) : "memory")
#endif /* __LINUX_ARM_ARCH == 6 */
#endif /* CONFIG_SMP */

#ifndef __KERNEL__
#define cpu_relax()				xnarch_memory_barrier()
#endif /* __KERNEL__ */

static inline unsigned long
__xnarch_xchg(volatile void *ptr, unsigned long x, int size)
{
	unsigned long ret;
	unsigned long tmp;

	xnarch_memory_barrier();

	switch (size) {
	case 1:
		__asm__ __volatile__("@	__xchg1\n"
		"1:	ldrexb	%0, [%4]\n"
		"	strexb	%1, %3, [%4]\n"
		"	teq	%1, #0\n"
		"	bne	1b"
			: "=&r" (ret), "=&r" (tmp),
			  "+Qo" (*(char *)ptr)
			: "r" (x), "r" (ptr)
			: "cc");
		break;
	case 4:
		__asm__ __volatile__("@	__xchg4\n"
		"1:	ldrex	%0, [%4]\n"
		"	strex	%1, %3, [%4]\n"
		"	teq	%1, #0\n"
		"	bne	1b"
			: "=&r" (ret), "=&r" (tmp),
			  "+Qo" (*(unsigned *)ptr)
			: "r" (x), "r" (ptr)
			: "cc");
		break;
	default:
		__xnarch_xchg_called_with_bad_pointer(), ret = 0;
		break;
	}
	xnarch_memory_barrier();

	return ret;
}

#define xnarch_atomic_xchg(ptr,x)					\
    ({									\
	    __typeof__(*(ptr)) _x_ = (x);				\
	    (__typeof__(*(ptr)))					\
		    __xnarch_xchg((ptr),(unsigned long)_x_, sizeof(*(ptr))); \
    })

static inline void xnarch_atomic_inc(xnarch_atomic_t *v)
{
	unsigned long tmp;
	unsigned long result;

	__asm__ __volatile__("@ atomic_add\n"
"1:	ldrex	%0, [%3]\n"
"	add	%0, %0, %4\n"
"	strex	%1, %0, [%3]\n"
"	teq	%1, #0\n"
"	bne	1b"
	: "=&r" (result), "=&r" (tmp), "+Qo" (v->counter)
	: "r" (&v->counter), "Ir" (1)
	: "cc");
}

static inline void xnarch_atomic_dec(xnarch_atomic_t *v)
{
	unsigned long tmp;
	unsigned long result;

	__asm__ __volatile__("@ atomic_sub\n"
"1:	ldrex	%0, [%3]\n"
"	sub	%0, %0, %4\n"
"	strex	%1, %0, [%3]\n"
"	teq	%1, #0\n"
"	bne	1b"
	: "=&r" (result), "=&r" (tmp), "+Qo" (v->counter)
	: "r" (&v->counter), "Ir" (1)
	: "cc");
}

static inline void
xnarch_atomic_set_mask(unsigned long *addr, unsigned long mask)
{
    unsigned long tmp, tmp2;

    __asm__ __volatile__("@ atomic_set_mask\n"
"1:	ldrex	%0, [%3]\n\t"
"	orr	%0, %0, %4\n\t"
"	strex	%1, %0, [%3]\n"
"	teq	%1, #0\n"
"	bne	1b"
	: "=&r" (tmp), "=&r" (tmp2), "+Qo" (*addr)
	: "r" (addr), "Ir" (mask)
	: "cc");
}

static inline void
xnarch_atomic_clear_mask(unsigned long *addr, unsigned long mask)
{
	unsigned long tmp, tmp2;

	__asm__ __volatile__("@ atomic_clear_mask\n"
"1:	ldrex	%0, [%3]\n"
"	bic	%0, %0, %4\n"
"	strex	%1, %0, [%3]\n"
"	teq	%1, #0\n"
"	bne	1b"
	: "=&r" (tmp), "=&r" (tmp2), "+Qo" (*addr)
	: "r" (addr), "Ir" (mask)
	: "cc");
}

static inline unsigned long
xnarch_atomic_cmpxchg(xnarch_atomic_t *ptr,
		      unsigned long oldval, unsigned long newval)
{
	unsigned long curval, res;

	xnarch_memory_barrier();

	do {
		__asm__ __volatile__("@ atomic_cmpxchg\n"
		"ldrex	%1, [%3]\n"
		"mov	%0, #0\n"
		"teq	%1, %4\n"
#ifdef __thumb__
		"it	eq\n"
#endif
		"strexeq %0, %5, [%3]\n"
		    : "=&r" (res), "=&r" (curval), "+Qo" (ptr->counter)
		    : "r" (&ptr->counter), "Ir" (oldval), "r" (newval)
		    : "cc");
	} while (res);

	xnarch_memory_barrier();

	return curval;
}

static inline int xnarch_atomic_inc_and_test(xnarch_atomic_t *v)
{
	unsigned long tmp;
	unsigned long result;

	xnarch_memory_barrier();

	__asm__ __volatile__("@ atomic_add_return\n"
"1:	ldrex	%0, [%3]\n"
"	add	%0, %0, %4\n"
"	strex	%1, %0, [%3]\n"
"	teq	%1, #0\n"
"	bne	1b"
	: "=&r" (result), "=&r" (tmp), "+Qo" (v->counter)
	: "r" (&v->counter), "Ir" (1)
	: "cc");

	xnarch_memory_barrier();

	return result == 0;
}

static inline int xnarch_atomic_dec_and_test(xnarch_atomic_t *v)
{
	unsigned long tmp;
	unsigned long result;

	xnarch_memory_barrier();

	__asm__ __volatile__("@ atomic_sub_return\n"
"1:	ldrex	%0, [%3]\n"
"	sub	%0, %0, %4\n"
"	strex	%1, %0, [%3]\n"
"	teq	%1, #0\n"
"	bne	1b"
	: "=&r" (result), "=&r" (tmp), "+Qo" (v->counter)
	: "r" (&v->counter), "Ir" (1)
	: "cc");

	xnarch_memory_barrier();

	return result == 0;
}
#else /* ARM arch <= 5 */

#ifdef __KERNEL__

#include <linux/bitops.h>
#include <asm/atomic.h>
#include <asm/system.h>
#include <asm/xenomai/hal.h>

static inline void
xnarch_atomic_set_mask(unsigned long *addr, unsigned long mask)
{
    unsigned long flags;

    local_irq_save_hw(flags);
    *addr |= mask;
    local_irq_restore_hw(flags);
}

#define xnarch_memory_barrier() smp_mb()
#define xnarch_atomic_xchg(ptr,x) xchg(ptr,x)
#define xnarch_atomic_inc(pcounter) \
	atomic_inc((atomic_t *)pcounter)
#define xnarch_atomic_dec(pcounter) \
	atomic_dec((atomic_t *)pcounter)
#define xnarch_atomic_clear_mask(addr, mask) \
	atomic_clear_mask((mask), (addr))
#define xnarch_atomic_cmpxchg(pcounter, oldval, newval) \
	atomic_cmpxchg((atomic_t *)(pcounter), (oldval), (newval))
#define xnarch_atomic_inc_and_test(pcounter) \
	atomic_inc_and_test((atomic_t *)pcounter)
#define xnarch_atomic_dec_and_test(pcounter) \
	atomic_dec_and_test((atomic_t *)pcounter)

#else /* !__KERNEL__ */

#include <asm/xenomai/syscall.h>
#include <nucleus/compiler.h>

/*
 * This function doesn't exist, so you'll get a linker error
 * if something tries to do an invalid xchg().
 */
static __inline__ unsigned long
__xchg(volatile void *ptr, unsigned long x, unsigned int size)
{
    unsigned long ret;

    if (size != 4) {
	__xnarch_xchg_called_with_bad_pointer();
	return 0;
    }

#if defined(CONFIG_XENO_ARM_SA1100)
    XENOMAI_SYSCALL5(__xn_sys_arch,
		     XENOMAI_SYSARCH_XCHG, ptr, x, size, &ret);
#else
    __asm__ __volatile__("@ __xchg4\n"
"   swp	    %0, %1, [%2]"
    : "=&r" (ret)
    : "r" (x), "r" (ptr)
    : "memory", "cc");
#endif
    return ret;
}

#define xnarch_atomic_xchg(ptr,x) \
    ({									       \
    __typeof__(*(ptr)) _x_ = (x);					   \
    (__typeof__(*(ptr))) __xchg((ptr), (unsigned long)_x_, sizeof(*(ptr))); \
    })


#ifdef CONFIG_SMP
static __inline__ unsigned long
xnarch_atomic_add_return(int i, xnarch_atomic_t *v)
{
    unsigned long ret;

    XENOMAI_SYSCALL4(__xn_sys_arch,
		     XENOMAI_SYSARCH_ATOMIC_ADD_RETURN, i, v, &ret);
    return ret;
}

static __inline__ unsigned long
xnarch_atomic_sub_return(int i, xnarch_atomic_t *v)
{
    unsigned long ret;

    XENOMAI_SYSCALL4(__xn_sys_arch,
		     XENOMAI_SYSARCH_ATOMIC_ADD_RETURN, -i, v, &ret);
    return ret;
}

static inline void
xnarch_atomic_set_mask(unsigned long *addr, unsigned long mask)
{
    XENOMAI_SYSCALL3(__xn_sys_arch,
		     XENOMAI_SYSARCH_ATOMIC_SET_MASK, mask, addr);
}

static inline void
xnarch_atomic_clear_mask(unsigned long *addr, unsigned long mask)
{
    XENOMAI_SYSCALL3(__xn_sys_arch,
		     XENOMAI_SYSARCH_ATOMIC_CLEAR_MASK, mask, addr);
}
#else /* ARM_ARCH <= 5 && !CONFIG_SMP */

static __inline__ unsigned long
xnarch_atomic_cmpxchg(xnarch_atomic_t *ptr,
		      unsigned long oldval, unsigned long newval)
{
	register unsigned long asm_old asm("r0") = oldval;
	register unsigned long asm_new asm("r1") = newval;
	register unsigned long *asm_ptr asm("r2") =
		(unsigned long *)&ptr->counter;
	register unsigned long asm_lr asm("lr");
	register unsigned long asm_tmp asm("r3");

	do {
		__asm__ __volatile__ (
			"mov %1, #0xffff0fff\n\t"
			"mov lr, pc\n\t"
			"add pc, %1, #(0xffff0fc0 - 0xffff0fff)\n\t"
			: "+r"(asm_old), "=&r"(asm_tmp), "=r"(asm_lr)
			: "r"(asm_new), "r"(asm_ptr)
			: "ip", "cc", "memory");
		if (likely(!asm_old))
			return oldval;
	} while ((asm_old = *asm_ptr) == oldval);
	return asm_old;
}

static __inline__ unsigned long
xnarch_atomic_add_return(int i, xnarch_atomic_t *v)
{
	register unsigned long asm_old asm("r0");
	register unsigned long asm_new asm("r1");
	register unsigned long *asm_ptr asm("r2") =
		(unsigned long *)&v->counter;
	register unsigned long asm_lr asm("lr");
	register unsigned long asm_tmp asm("r3");

	__asm__ __volatile__ ( \
		"1: @ xnarch_atomic_add\n\t"
		"ldr	%0, [%4]\n\t"
		"mov	%1, #0xffff0fff\n\t"
		"add	lr, pc, #4\n\t"
		"add	%3, %0, %5\n\t"
		"add	pc, %1, #(0xffff0fc0 - 0xffff0fff)\n\t"
		"bcc	1b"
		: "=&r" (asm_old), "=&r"(asm_tmp), "=r"(asm_lr), "=r"(asm_new)
		: "r" (asm_ptr), "rIL"(i)
		: "ip", "cc", "memory");
	return asm_new;
}

static __inline__ unsigned long
xnarch_atomic_sub_return(int i, xnarch_atomic_t *v)
{
	register unsigned long asm_old asm("r0");
	register unsigned long asm_new asm("r1");
	register unsigned long *asm_ptr asm("r2") =
		(unsigned long *)&v->counter;
	register unsigned long asm_lr asm("lr");
	register unsigned long asm_tmp asm("r3");

	__asm__ __volatile__ ( \
		"1: @ xnarch_atomic_sub\n\t"
		"ldr	%0, [%4]\n\t"
		"mov	%1, #0xffff0fff\n\t"
		"add	lr, pc, #4\n\t"
		"sub	%3, %0, %5\n\t"
		"add	pc, %1, #(0xffff0fc0 - 0xffff0fff)\n\t"
		"bcc	1b"
		: "=&r" (asm_old), "=&r"(asm_tmp), "=r"(asm_lr), "=r"(asm_new)
		: "r" (asm_ptr), "rIL"(i)
		: "ip", "cc", "memory");
	return asm_new;
}

static __inline__ void
xnarch_atomic_set_mask(xnarch_atomic_t *v, long mask)
{
	register unsigned long asm_old asm("r0");
	register unsigned long asm_new asm("r1");
	register unsigned long *asm_ptr asm("r2") =
		(unsigned long *)&v->counter;
	register unsigned long asm_lr asm("lr");
	register unsigned long asm_tmp asm("r3");

	__asm__ __volatile__ ( \
		"1: @ xnarch_atomic_set_mask\n\t" \
		"ldr	%0, [%4]\n\t" \
		"mov	%1, #0xffff0fff\n\t" \
		"add	lr, pc, #4\n\t" \
		"orr	%3, %0, %5\n\t"\
		"add	pc, %1, #(0xffff0fc0 - 0xffff0fff)\n\t" \
		"bcc	1b" \
		: "=&r" (asm_old), "=&r"(asm_tmp), "=r"(asm_lr), "=r"(asm_new) \
		: "r" (asm_ptr), "rIL"(mask) \
		: "ip", "cc", "memory");
}

static __inline__ void
xnarch_atomic_clear_mask(xnarch_atomic_t *v, long mask)
{
	register unsigned long asm_old asm("r0");
	register unsigned long asm_new asm("r1");
	register unsigned long *asm_ptr asm("r2") =
		(unsigned long *)&v->counter;
	register unsigned long asm_lr asm("lr");
	register unsigned long asm_tmp asm("r3");

	__asm__ __volatile__ ( \
		"1: @ xnarch_atomic_clear_mask\n\t" \
		"ldr	%0, [%4]\n\t" \
		"mov	%1, #0xffff0fff\n\t" \
		"add	lr, pc, #4\n\t" \
		"bic	%3, %0, %5\n\t" \
		"add	pc, %1, #(0xffff0fc0 - 0xffff0fff)\n\t" \
		"bcc	1b" \
		: "=&r" (asm_old), "=&r"(asm_tmp), "=r"(asm_lr), "=r"(asm_new) \
		: "r" (asm_ptr), "rIL"(mask) \
		: "ip", "cc", "memory");
}


#endif /* ARM_ARCH <= 5 && !CONFIG_SMP */

#if defined(CONFIG_SMP) && defined(CONFIG_XENO_CPU_XSC3)
#define xnarch_memory_barrier() \
	__asm__ __volatile__ ("mcr p15, 0, %0, c7, c10, 5" \
			      : /* */ : "r" (0) : "memory")
#else /* !XSC3 || !SMP */
#define xnarch_memory_barrier() \
	__asm__ __volatile__ ("": /* */ : /* */ :"memory")
#endif /* !XSC3 || !SMP */

#define cpu_relax()				xnarch_memory_barrier()

#define xnarch_atomic_inc(pcounter)		(void) xnarch_atomic_add_return(1, pcounter)
#define xnarch_atomic_dec_and_test(pcounter)	(xnarch_atomic_sub_return(1, pcounter) == 0)
#endif /* __KERNEL__ */
#endif /* ARM arch <= 5 */

#endif /* !_XENO_ASM_ARM_ATOMIC_ASM_H */