xref: /rk3399_ARM-atf/include/lib/utils_def.h (revision f45e232ab9c93c22c1cffa2ee4c17f34d808b918)
153d9c9c8SScott Branden /*
253d9c9c8SScott Branden  * Copyright (c) 2016-2017, ARM Limited and Contributors. All rights reserved.
353d9c9c8SScott Branden  *
482cb2c1aSdp-arm  * SPDX-License-Identifier: BSD-3-Clause
553d9c9c8SScott Branden  */
653d9c9c8SScott Branden 
753d9c9c8SScott Branden #ifndef __UTILS_DEF_H__
853d9c9c8SScott Branden #define __UTILS_DEF_H__
953d9c9c8SScott Branden 
1053d9c9c8SScott Branden /* Compute the number of elements in the given array */
1153d9c9c8SScott Branden #define ARRAY_SIZE(a)				\
1253d9c9c8SScott Branden 	(sizeof(a) / sizeof((a)[0]))
1353d9c9c8SScott Branden 
1453d9c9c8SScott Branden #define IS_POWER_OF_TWO(x)			\
1553d9c9c8SScott Branden 	(((x) & ((x) - 1)) == 0)
1653d9c9c8SScott Branden 
1753d9c9c8SScott Branden #define SIZE_FROM_LOG2_WORDS(n)		(4 << (n))
1853d9c9c8SScott Branden 
1953d9c9c8SScott Branden #define BIT(nr)				(1UL << (nr))
2053d9c9c8SScott Branden 
2153d9c9c8SScott Branden #define MIN(x, y) __extension__ ({	\
2253d9c9c8SScott Branden 	__typeof__(x) _x = (x);		\
2353d9c9c8SScott Branden 	__typeof__(y) _y = (y);		\
2453d9c9c8SScott Branden 	(void)(&_x == &_y);		\
2553d9c9c8SScott Branden 	_x < _y ? _x : _y;		\
2653d9c9c8SScott Branden })
2753d9c9c8SScott Branden 
2853d9c9c8SScott Branden #define MAX(x, y) __extension__ ({	\
2953d9c9c8SScott Branden 	__typeof__(x) _x = (x);		\
3053d9c9c8SScott Branden 	__typeof__(y) _y = (y);		\
3153d9c9c8SScott Branden 	(void)(&_x == &_y);		\
3253d9c9c8SScott Branden 	_x > _y ? _x : _y;		\
3353d9c9c8SScott Branden })
3453d9c9c8SScott Branden 
3553d9c9c8SScott Branden /*
3653d9c9c8SScott Branden  * The round_up() macro rounds up a value to the given boundary in a
3753d9c9c8SScott Branden  * type-agnostic yet type-safe manner. The boundary must be a power of two.
3853d9c9c8SScott Branden  * In other words, it computes the smallest multiple of boundary which is
3953d9c9c8SScott Branden  * greater than or equal to value.
4053d9c9c8SScott Branden  *
4153d9c9c8SScott Branden  * round_down() is similar but rounds the value down instead.
4253d9c9c8SScott Branden  */
4353d9c9c8SScott Branden #define round_boundary(value, boundary)		\
4453d9c9c8SScott Branden 	((__typeof__(value))((boundary) - 1))
4553d9c9c8SScott Branden 
4653d9c9c8SScott Branden #define round_up(value, boundary)		\
4753d9c9c8SScott Branden 	((((value) - 1) | round_boundary(value, boundary)) + 1)
4853d9c9c8SScott Branden 
4953d9c9c8SScott Branden #define round_down(value, boundary)		\
5053d9c9c8SScott Branden 	((value) & ~round_boundary(value, boundary))
5153d9c9c8SScott Branden 
5253d9c9c8SScott Branden /*
5353d9c9c8SScott Branden  * Evaluates to 1 if (ptr + inc) overflows, 0 otherwise.
5453d9c9c8SScott Branden  * Both arguments must be unsigned pointer values (i.e. uintptr_t).
5553d9c9c8SScott Branden  */
5653d9c9c8SScott Branden #define check_uptr_overflow(ptr, inc)		\
5753d9c9c8SScott Branden 	(((ptr) > UINTPTR_MAX - (inc)) ? 1 : 0)
5853d9c9c8SScott Branden 
5953d9c9c8SScott Branden /*
606176b4fcSVarun Wadekar  * For those constants to be shared between C and other sources, apply a 'u'
616176b4fcSVarun Wadekar  * or 'ull' suffix to the argument only in C, to avoid undefined or unintended
626176b4fcSVarun Wadekar  * behaviour.
6353d9c9c8SScott Branden  *
646176b4fcSVarun Wadekar  * The GNU assembler and linker do not support the 'u' and 'ull' suffix (it
656176b4fcSVarun Wadekar  * causes the build process to fail) therefore the suffix is omitted when used
666176b4fcSVarun Wadekar  * in linker scripts and assembler files.
6753d9c9c8SScott Branden */
6853d9c9c8SScott Branden #if defined(__LINKER__) || defined(__ASSEMBLY__)
696176b4fcSVarun Wadekar # define  U(_x)		(_x)
7053d9c9c8SScott Branden # define ULL(_x)	(_x)
7153d9c9c8SScott Branden #else
726176b4fcSVarun Wadekar # define  U(_x)		(_x##u)
7353d9c9c8SScott Branden # define ULL(_x)	(_x##ull)
7453d9c9c8SScott Branden #endif
7553d9c9c8SScott Branden 
76*f45e232aSJeenu Viswambharan /*
77*f45e232aSJeenu Viswambharan  * Test for the current architecture version to be at least the version
78*f45e232aSJeenu Viswambharan  * expected.
79*f45e232aSJeenu Viswambharan  */
80*f45e232aSJeenu Viswambharan #define ARM_ARCH_AT_LEAST(_maj, _min) \
81*f45e232aSJeenu Viswambharan 	((ARM_ARCH_MAJOR > _maj) || \
82*f45e232aSJeenu Viswambharan 	 ((ARM_ARCH_MAJOR == _maj) && (ARM_ARCH_MINOR >= _min)))
83*f45e232aSJeenu Viswambharan 
8453d9c9c8SScott Branden #endif /* __UTILS_DEF_H__ */
85