1 #ifndef _DALI_INTERNAL_PLATFORM_ATOMICS_H_
2 #define _DALI_INTERNAL_PLATFORM_ATOMICS_H_
5 * Copyright (c) 2014 Samsung Electronics Co., Ltd.
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
27 * Interface for atomic memory operations.
28 * There may be platform-specific versions of this file in other directories.
36 * @brief Atomic write to an aligned memory location in cacheable memory.
38 * For common platforms with coherent caches such as ARM mpcore and Intel CPUs,
39 * a cacheline can be in a writeable state in the L1 cache of exactly one core
40 * at a time. Therefore, a write to a location that does not require a read /
41 * modify / write cycle or cross a cacheline boundary is automatically
44 * @param address A pointer to a location in a cacheable memory region that is
45 * aligned to a 4 byte boundary.
46 * @param value A value to assign to the memory location in address.
48 inline void AtomicWriteToCacheableAlignedAddress(volatile uint32_t* const address, const uint32_t value)
50 DALI_ASSERT_DEBUG(ptrdiff_t(address) % 4 == 0 && "Address must be 32 bit aligned");
55 * @brief Atomic read from an aligned memory location in cacheable memory.
57 * For common platforms with coherent caches such as ARM mpcore and Intel CPUs,
58 * a cacheline can be in a writeable state in the L1 cache of exactly one core
59 * at a time. Therefore, a read a location that does not cross a cacheline
60 * boundary is automatically atomic.
62 * @param address A pointer to a location in a cacheable memory region that is
63 * aligned to a 4 byte boundary.
64 * @return The value stored at the memory location in address.
66 inline uint32_t AtomicReadFromCacheableAlignedAddress(const volatile uint32_t* const address)
68 DALI_ASSERT_DEBUG(ptrdiff_t(address) % 4 == 0 && "Address must be 32 bit aligned");
72 } /* namespace Internal */
73 } /* namespace Dali */
75 #endif /* _DALI_INTERNAL_PLATFORM_ATOMICS_H_ */