| 1 | /*
|
|---|
| 2 | * Copyright (c) 2005 Jakub Jermar
|
|---|
| 3 | * All rights reserved.
|
|---|
| 4 | *
|
|---|
| 5 | * Redistribution and use in source and binary forms, with or without
|
|---|
| 6 | * modification, are permitted provided that the following conditions
|
|---|
| 7 | * are met:
|
|---|
| 8 | *
|
|---|
| 9 | * - Redistributions of source code must retain the above copyright
|
|---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
|---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
|---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
|---|
| 13 | * documentation and/or other materials provided with the distribution.
|
|---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
|---|
| 15 | * derived from this software without specific prior written permission.
|
|---|
| 16 | *
|
|---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|---|
| 27 | */
|
|---|
| 28 |
|
|---|
| 29 | /** @addtogroup sparc64
|
|---|
| 30 | * @{
|
|---|
| 31 | */
|
|---|
| 32 | /** @file
|
|---|
| 33 | */
|
|---|
| 34 |
|
|---|
| 35 | #ifndef KERN_sparc64_ATOMIC_H_
|
|---|
| 36 | #define KERN_sparc64_ATOMIC_H_
|
|---|
| 37 |
|
|---|
| 38 | #include <arch/barrier.h>
|
|---|
| 39 | #include <typedefs.h>
|
|---|
| 40 | #include <preemption.h>
|
|---|
| 41 |
|
|---|
| 42 | /** Atomic add operation.
|
|---|
| 43 | *
|
|---|
| 44 | * Use atomic compare and swap operation to atomically add signed value.
|
|---|
| 45 | *
|
|---|
| 46 | * @param val Atomic variable.
|
|---|
| 47 | * @param i Signed value to be added.
|
|---|
| 48 | *
|
|---|
| 49 | * @return Value of the atomic variable as it existed before addition.
|
|---|
| 50 | *
|
|---|
| 51 | */
|
|---|
| 52 | static inline atomic_count_t atomic_add(atomic_t *val, atomic_count_t i)
|
|---|
| 53 | {
|
|---|
| 54 | atomic_count_t a;
|
|---|
| 55 | atomic_count_t b;
|
|---|
| 56 |
|
|---|
| 57 | do {
|
|---|
| 58 | volatile uintptr_t ptr = (uintptr_t) &val->count;
|
|---|
| 59 |
|
|---|
| 60 | a = *((atomic_count_t *) ptr);
|
|---|
| 61 | b = a + i;
|
|---|
| 62 |
|
|---|
| 63 | asm volatile (
|
|---|
| 64 | "casx %0, %2, %1\n"
|
|---|
| 65 | : "+m" (*((atomic_count_t *) ptr)),
|
|---|
| 66 | "+r" (b)
|
|---|
| 67 | : "r" (a)
|
|---|
| 68 | );
|
|---|
| 69 | } while (a != b);
|
|---|
| 70 |
|
|---|
| 71 | return a;
|
|---|
| 72 | }
|
|---|
| 73 |
|
|---|
| 74 | static inline atomic_count_t atomic_preinc(atomic_t *val)
|
|---|
| 75 | {
|
|---|
| 76 | return atomic_add(val, 1) + 1;
|
|---|
| 77 | }
|
|---|
| 78 |
|
|---|
| 79 | static inline atomic_count_t atomic_postinc(atomic_t *val)
|
|---|
| 80 | {
|
|---|
| 81 | return atomic_add(val, 1);
|
|---|
| 82 | }
|
|---|
| 83 |
|
|---|
| 84 | static inline atomic_count_t atomic_predec(atomic_t *val)
|
|---|
| 85 | {
|
|---|
| 86 | return atomic_add(val, -1) - 1;
|
|---|
| 87 | }
|
|---|
| 88 |
|
|---|
| 89 | static inline atomic_count_t atomic_postdec(atomic_t *val)
|
|---|
| 90 | {
|
|---|
| 91 | return atomic_add(val, -1);
|
|---|
| 92 | }
|
|---|
| 93 |
|
|---|
| 94 | static inline void atomic_inc(atomic_t *val)
|
|---|
| 95 | {
|
|---|
| 96 | (void) atomic_add(val, 1);
|
|---|
| 97 | }
|
|---|
| 98 |
|
|---|
| 99 | static inline void atomic_dec(atomic_t *val)
|
|---|
| 100 | {
|
|---|
| 101 | (void) atomic_add(val, -1);
|
|---|
| 102 | }
|
|---|
| 103 |
|
|---|
| 104 | static inline atomic_count_t test_and_set(atomic_t *val)
|
|---|
| 105 | {
|
|---|
| 106 | atomic_count_t v = 1;
|
|---|
| 107 | volatile uintptr_t ptr = (uintptr_t) &val->count;
|
|---|
| 108 |
|
|---|
| 109 | asm volatile (
|
|---|
| 110 | "casx %0, %2, %1\n"
|
|---|
| 111 | : "+m" (*((atomic_count_t *) ptr)),
|
|---|
| 112 | "+r" (v)
|
|---|
| 113 | : "r" (0)
|
|---|
| 114 | );
|
|---|
| 115 |
|
|---|
| 116 | return v;
|
|---|
| 117 | }
|
|---|
| 118 |
|
|---|
| 119 | static inline void atomic_lock_arch(atomic_t *val)
|
|---|
| 120 | {
|
|---|
| 121 | atomic_count_t tmp1 = 1;
|
|---|
| 122 | atomic_count_t tmp2 = 0;
|
|---|
| 123 |
|
|---|
| 124 | volatile uintptr_t ptr = (uintptr_t) &val->count;
|
|---|
| 125 |
|
|---|
| 126 | preemption_disable();
|
|---|
| 127 |
|
|---|
| 128 | asm volatile (
|
|---|
| 129 | "0:\n"
|
|---|
| 130 | "casx %0, %3, %1\n"
|
|---|
| 131 | "brz %1, 2f\n"
|
|---|
| 132 | "nop\n"
|
|---|
| 133 | "1:\n"
|
|---|
| 134 | "ldx %0, %2\n"
|
|---|
| 135 | "brz %2, 0b\n"
|
|---|
| 136 | "nop\n"
|
|---|
| 137 | "ba %%xcc, 1b\n"
|
|---|
| 138 | "nop\n"
|
|---|
| 139 | "2:\n"
|
|---|
| 140 | : "+m" (*((atomic_count_t *) ptr)),
|
|---|
| 141 | "+r" (tmp1),
|
|---|
| 142 | "+r" (tmp2)
|
|---|
| 143 | : "r" (0)
|
|---|
| 144 | );
|
|---|
| 145 |
|
|---|
| 146 | /*
|
|---|
| 147 | * Prevent critical section code from bleeding out this way up.
|
|---|
| 148 | */
|
|---|
| 149 | CS_ENTER_BARRIER();
|
|---|
| 150 | }
|
|---|
| 151 |
|
|---|
| 152 | #endif
|
|---|
| 153 |
|
|---|
| 154 | /** @}
|
|---|
| 155 | */
|
|---|