Release 4.15 drivers/gpu/drm/amd/display/include/fixed31_32.h
  
  
  
/*
 * Copyright 2012-15 Advanced Micro Devices, Inc.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 * OTHER DEALINGS IN THE SOFTWARE.
 *
 * Authors: AMD
 *
 */
#ifndef __DAL_FIXED31_32_H__
#define __DAL_FIXED31_32_H__
#include "os_types.h"
#define FIXED31_32_BITS_PER_FRACTIONAL_PART 32
/*
 * @brief
 * Arithmetic operations on real numbers
 * represented as fixed-point numbers.
 * There are: 1 bit for sign,
 * 31 bit for integer part,
 * 32 bits for fractional part.
 *
 * @note
 * Currently, overflows and underflows are asserted;
 * no special result returned.
 */
struct fixed31_32 {
	
int64_t value;
};
/*
 * @brief
 * Useful constants
 */
static const struct fixed31_32 dal_fixed31_32_zero = { 0 };
static const struct fixed31_32 dal_fixed31_32_epsilon = { 1LL };
static const struct fixed31_32 dal_fixed31_32_half = { 0x80000000LL };
static const struct fixed31_32 dal_fixed31_32_one = { 0x100000000LL };
static const struct fixed31_32 dal_fixed31_32_pi = { 13493037705LL };
static const struct fixed31_32 dal_fixed31_32_two_pi = { 26986075409LL };
static const struct fixed31_32 dal_fixed31_32_e = { 11674931555LL };
static const struct fixed31_32 dal_fixed31_32_ln2 = { 2977044471LL };
static const struct fixed31_32 dal_fixed31_32_ln2_div_2 = { 1488522236LL };
/*
 * @brief
 * Initialization routines
 */
/*
 * @brief
 * result = numerator / denominator
 */
struct fixed31_32 dal_fixed31_32_from_fraction(
	int64_t numerator,
	int64_t denominator);
/*
 * @brief
 * result = arg
 */
struct fixed31_32 dal_fixed31_32_from_int_nonconst(int64_t arg);
static inline struct fixed31_32 dal_fixed31_32_from_int(int64_t arg)
{
	if (__builtin_constant_p(arg)) {
		struct fixed31_32 res;
		BUILD_BUG_ON((LONG_MIN > arg) || (arg > LONG_MAX));
		res.value = arg << FIXED31_32_BITS_PER_FRACTIONAL_PART;
		return res;
	} else
		return dal_fixed31_32_from_int_nonconst(arg);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Dave Airlie | 57 | 100.00% | 1 | 100.00% | 
| Total | 57 | 100.00% | 1 | 100.00% | 
/*
 * @brief
 * Unary operators
 */
/*
 * @brief
 * result = -arg
 */
static inline struct fixed31_32 dal_fixed31_32_neg(struct fixed31_32 arg)
{
	struct fixed31_32 res;
	res.value = -arg.value;
	return res;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Dave Airlie | 20 | 71.43% | 1 | 50.00% | 
| Harry Wentland | 8 | 28.57% | 1 | 50.00% | 
| Total | 28 | 100.00% | 2 | 100.00% | 
/*
 * @brief
 * result = abs(arg) := (arg >= 0) ? arg : -arg
 */
static inline struct fixed31_32 dal_fixed31_32_abs(struct fixed31_32 arg)
{
	if (arg.value < 0)
		return dal_fixed31_32_neg(arg);
	else
		return arg;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Dave Airlie | 22 | 73.33% | 1 | 50.00% | 
| Harry Wentland | 8 | 26.67% | 1 | 50.00% | 
| Total | 30 | 100.00% | 2 | 100.00% | 
/*
 * @brief
 * Binary relational operators
 */
/*
 * @brief
 * result = arg1 < arg2
 */
static inline bool dal_fixed31_32_lt(struct fixed31_32 arg1,
				     struct fixed31_32 arg2)
{
	return arg1.value < arg2.value;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Dave Airlie | 13 | 54.17% | 1 | 50.00% | 
| Harry Wentland | 11 | 45.83% | 1 | 50.00% | 
| Total | 24 | 100.00% | 2 | 100.00% | 
/*
 * @brief
 * result = arg1 <= arg2
 */
static inline bool dal_fixed31_32_le(struct fixed31_32 arg1,
				     struct fixed31_32 arg2)
{
	return arg1.value <= arg2.value;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Dave Airlie | 13 | 54.17% | 1 | 50.00% | 
| Harry Wentland | 11 | 45.83% | 1 | 50.00% | 
| Total | 24 | 100.00% | 2 | 100.00% | 
/*
 * @brief
 * result = arg1 == arg2
 */
static inline bool dal_fixed31_32_eq(struct fixed31_32 arg1,
				     struct fixed31_32 arg2)
{
	return arg1.value == arg2.value;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Dave Airlie | 13 | 54.17% | 1 | 50.00% | 
| Harry Wentland | 11 | 45.83% | 1 | 50.00% | 
| Total | 24 | 100.00% | 2 | 100.00% | 
/*
 * @brief
 * result = min(arg1, arg2) := (arg1 <= arg2) ? arg1 : arg2
 */
static inline struct fixed31_32 dal_fixed31_32_min(struct fixed31_32 arg1,
						   struct fixed31_32 arg2)
{
	if (arg1.value <= arg2.value)
		return arg1;
	else
		return arg2;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Dave Airlie | 21 | 63.64% | 1 | 50.00% | 
| Harry Wentland | 12 | 36.36% | 1 | 50.00% | 
| Total | 33 | 100.00% | 2 | 100.00% | 
/*
 * @brief
 * result = max(arg1, arg2) := (arg1 <= arg2) ? arg2 : arg1
 */
static inline struct fixed31_32 dal_fixed31_32_max(struct fixed31_32 arg1,
						   struct fixed31_32 arg2)
{
	if (arg1.value <= arg2.value)
		return arg2;
	else
		return arg1;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Dave Airlie | 21 | 63.64% | 1 | 50.00% | 
| Harry Wentland | 12 | 36.36% | 1 | 50.00% | 
| Total | 33 | 100.00% | 2 | 100.00% | 
/*
 * @brief
 *          | min_value, when arg <= min_value
 * result = | arg, when min_value < arg < max_value
 *          | max_value, when arg >= max_value
 */
static inline struct fixed31_32 dal_fixed31_32_clamp(
	struct fixed31_32 arg,
	struct fixed31_32 min_value,
	struct fixed31_32 max_value)
{
	if (dal_fixed31_32_le(arg, min_value))
		return min_value;
	else if (dal_fixed31_32_le(max_value, arg))
		return max_value;
	else
		return arg;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Dave Airlie | 33 | 67.35% | 1 | 50.00% | 
| Harry Wentland | 16 | 32.65% | 1 | 50.00% | 
| Total | 49 | 100.00% | 2 | 100.00% | 
/*
 * @brief
 * Binary shift operators
 */
/*
 * @brief
 * result = arg << shift
 */
struct fixed31_32 dal_fixed31_32_shl(
	struct fixed31_32 arg,
	uint8_t shift);
/*
 * @brief
 * result = arg >> shift
 */
static inline struct fixed31_32 dal_fixed31_32_shr(
	struct fixed31_32 arg,
	uint8_t shift)
{
	struct fixed31_32 res;
	res.value = arg.value >> shift;
	return res;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Dave Airlie | 21 | 65.62% | 1 | 50.00% | 
| Harry Wentland | 11 | 34.38% | 1 | 50.00% | 
| Total | 32 | 100.00% | 2 | 100.00% | 
/*
 * @brief
 * Binary additive operators
 */
/*
 * @brief
 * result = arg1 + arg2
 */
struct fixed31_32 dal_fixed31_32_add(
	struct fixed31_32 arg1,
	struct fixed31_32 arg2);
/*
 * @brief
 * result = arg1 + arg2
 */
static inline struct fixed31_32 dal_fixed31_32_add_int(struct fixed31_32 arg1,
						       int32_t arg2)
{
	return dal_fixed31_32_add(arg1,
				  dal_fixed31_32_from_int(arg2));
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Dave Airlie | 15 | 57.69% | 1 | 50.00% | 
| Amy Zhang | 11 | 42.31% | 1 | 50.00% | 
| Total | 26 | 100.00% | 2 | 100.00% | 
/*
 * @brief
 * result = arg1 - arg2
 */
struct fixed31_32 dal_fixed31_32_sub(
	struct fixed31_32 arg1,
	struct fixed31_32 arg2);
/*
 * @brief
 * result = arg1 - arg2
 */
static inline struct fixed31_32 dal_fixed31_32_sub_int(struct fixed31_32 arg1,
						       int32_t arg2)
{
	return dal_fixed31_32_sub(arg1,
				  dal_fixed31_32_from_int(arg2));
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Dave Airlie | 17 | 65.38% | 1 | 50.00% | 
| Harry Wentland | 9 | 34.62% | 1 | 50.00% | 
| Total | 26 | 100.00% | 2 | 100.00% | 
/*
 * @brief
 * Binary multiplicative operators
 */
/*
 * @brief
 * result = arg1 * arg2
 */
struct fixed31_32 dal_fixed31_32_mul(
	struct fixed31_32 arg1,
	struct fixed31_32 arg2);
/*
 * @brief
 * result = arg1 * arg2
 */
static inline struct fixed31_32 dal_fixed31_32_mul_int(struct fixed31_32 arg1,
						       int32_t arg2)
{
	return dal_fixed31_32_mul(arg1,
				  dal_fixed31_32_from_int(arg2));
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Dave Airlie | 17 | 65.38% | 1 | 50.00% | 
| Harry Wentland | 9 | 34.62% | 1 | 50.00% | 
| Total | 26 | 100.00% | 2 | 100.00% | 
/*
 * @brief
 * result = square(arg) := arg * arg
 */
struct fixed31_32 dal_fixed31_32_sqr(
	struct fixed31_32 arg);
/*
 * @brief
 * result = arg1 / arg2
 */
static inline struct fixed31_32 dal_fixed31_32_div_int(struct fixed31_32 arg1,
						       int64_t arg2)
{
	return dal_fixed31_32_from_fraction(arg1.value,
					    dal_fixed31_32_from_int(arg2).value);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Dave Airlie | 19 | 63.33% | 1 | 50.00% | 
| Harry Wentland | 11 | 36.67% | 1 | 50.00% | 
| Total | 30 | 100.00% | 2 | 100.00% | 
/*
 * @brief
 * result = arg1 / arg2
 */
static inline struct fixed31_32 dal_fixed31_32_div(struct fixed31_32 arg1,
						   struct fixed31_32 arg2)
{
	return dal_fixed31_32_from_fraction(arg1.value,
					    arg2.value);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Dave Airlie | 16 | 57.14% | 1 | 50.00% | 
| Harry Wentland | 12 | 42.86% | 1 | 50.00% | 
| Total | 28 | 100.00% | 2 | 100.00% | 
/*
 * @brief
 * Reciprocal function
 */
/*
 * @brief
 * result = reciprocal(arg) := 1 / arg
 *
 * @note
 * No special actions taken in case argument is zero.
 */
struct fixed31_32 dal_fixed31_32_recip(
	struct fixed31_32 arg);
/*
 * @brief
 * Trigonometric functions
 */
/*
 * @brief
 * result = sinc(arg) := sin(arg) / arg
 *
 * @note
 * Argument specified in radians,
 * internally it's normalized to [-2pi...2pi] range.
 */
struct fixed31_32 dal_fixed31_32_sinc(
	struct fixed31_32 arg);
/*
 * @brief
 * result = sin(arg)
 *
 * @note
 * Argument specified in radians,
 * internally it's normalized to [-2pi...2pi] range.
 */
struct fixed31_32 dal_fixed31_32_sin(
	struct fixed31_32 arg);
/*
 * @brief
 * result = cos(arg)
 *
 * @note
 * Argument specified in radians
 * and should be in [-2pi...2pi] range -
 * passing arguments outside that range
 * will cause incorrect result!
 */
struct fixed31_32 dal_fixed31_32_cos(
	struct fixed31_32 arg);
/*
 * @brief
 * Transcendent functions
 */
/*
 * @brief
 * result = exp(arg)
 *
 * @note
 * Currently, function is verified for abs(arg) <= 1.
 */
struct fixed31_32 dal_fixed31_32_exp(
	struct fixed31_32 arg);
/*
 * @brief
 * result = log(arg)
 *
 * @note
 * Currently, abs(arg) should be less than 1.
 * No normalization is done.
 * Currently, no special actions taken
 * in case of invalid argument(s). Take care!
 */
struct fixed31_32 dal_fixed31_32_log(
	struct fixed31_32 arg);
/*
 * @brief
 * Power function
 */
/*
 * @brief
 * result = pow(arg1, arg2)
 *
 * @note
 * Currently, abs(arg1) should be less than 1. Take care!
 */
struct fixed31_32 dal_fixed31_32_pow(
	struct fixed31_32 arg1,
	struct fixed31_32 arg2);
/*
 * @brief
 * Rounding functions
 */
/*
 * @brief
 * result = floor(arg) := greatest integer lower than or equal to arg
 */
int32_t dal_fixed31_32_floor(
	struct fixed31_32 arg);
/*
 * @brief
 * result = round(arg) := integer nearest to arg
 */
int32_t dal_fixed31_32_round(
	struct fixed31_32 arg);
/*
 * @brief
 * result = ceil(arg) := lowest integer greater than or equal to arg
 */
int32_t dal_fixed31_32_ceil(
	struct fixed31_32 arg);
/* the following two function are used in scaler hw programming to convert fixed
 * point value to format 2 bits from integer part and 19 bits from fractional
 * part. The same applies for u0d19, 0 bits from integer part and 19 bits from
 * fractional
 */
uint32_t dal_fixed31_32_u2d19(
	struct fixed31_32 arg);
uint32_t dal_fixed31_32_u0d19(
	struct fixed31_32 arg);
#endif
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Harry Wentland | 474 | 58.16% | 1 | 20.00% | 
| Dave Airlie | 329 | 40.37% | 3 | 60.00% | 
| Amy Zhang | 12 | 1.47% | 1 | 20.00% | 
| Total | 815 | 100.00% | 5 | 100.00% | 
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.