summaryrefslogtreecommitdiffstats
path: root/firmware/fixpt.c
blob: bab18db5767e397b7275d0c9f41f894aee83ab65 (plain)
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
/*
 * Xytronic LF-1600
 * Fixed point data type
 *
 * Copyright (c) 2015 Michael Buesch <m@bues.ch>
 *
 * This program 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.
 *
 * This program 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 this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

#include "fixpt.h"


fixpt_t fixpt_deflate(fixpt_big_t a)
{
	if (a >= FIXPT_MAX)
		return FIXPT_MAX;
	if (a <= FIXPT_MIN)
		return FIXPT_MIN;

	return (fixpt_t)a;
}

int32_t fixpt_big_to_int(fixpt_big_t p)
{
	int32_t i;

	if (p < 0) {
		p = -p;
		i = ((int32_t)p + (int32_t)(1L << (FIXPT_SHIFT - 1))) >> FIXPT_SHIFT;
		i = -i;
	} else {
		i = ((int32_t)p + (int32_t)(1L << (FIXPT_SHIFT - 1))) >> FIXPT_SHIFT;
	}

	return i;
}

int32_t fixpt_get_int_part(fixpt_t p)
{
	if (p >= int_to_fixpt(0))
		return (int32_t)p >> FIXPT_SHIFT;
	else
		return -((-(int32_t)p) >> FIXPT_SHIFT);
}

uint32_t fixpt_get_dec_fract(fixpt_t p, uint8_t nr_digits)
{
	uint32_t dec_mask;
	uint32_t dec_fract;

	/* Mask the fractional part. */
	p = fixpt_abs(p) & ((1L << FIXPT_SHIFT) - 1);
	/* Calculate the decimal digit mask. */
	dec_mask = (uint32_t)pow_int(10, nr_digits);
	/* Calculate the decimal fractional. */
	dec_fract = (uint32_t)udiv_round((uint32_t)p * dec_mask,
					 (uint32_t)(1UL << FIXPT_SHIFT));

	return dec_fract;
}

fixpt_big_t fixpt_big_mul(fixpt_big_t a, fixpt_big_t b)
{
	fixpt_big_t tmp;

	/* Multiply */
	tmp = a * b;
	/* Round */
	tmp += (fixpt_big_t)1L << (FIXPT_SHIFT - 1);
	/* Scale */
	tmp >>= FIXPT_SHIFT;

	return tmp;
}

fixpt_big_t fixpt_big_div(fixpt_big_t a, fixpt_big_t b)
{
	fixpt_big_t tmp;

	/* Scale */
	tmp = a << FIXPT_SHIFT;
	/* Round */
	if ((tmp >= 0 && b >= 0) || (tmp < 0 && b < 0))
		tmp += b / 2;
	else
		tmp -= b / 2;
	/* Divide */
	tmp /= b;

	return tmp;
}

fixpt_big_t fixpt_big_mul_div(fixpt_big_t a, fixpt_big_t b, fixpt_big_t c)
{
	fixpt_big_t tmp;

	tmp = fixpt_big_mul(a, b);
	tmp = fixpt_big_div(tmp, c);

	return tmp;
}

fixpt_t fixpt_abs(fixpt_t a)
{
	if (a < int_to_fixpt(0))
		return fixpt_neg(a);
	return a;
}

fixpt_t fixpt_add_limited(fixpt_t a, fixpt_t b,
			  fixpt_t lo_lim, fixpt_t hi_lim)
{
	fixpt_t ret;

	ret = fixpt_add(a, b);
	ret = fixpt_clamp(ret, lo_lim, hi_lim);

	return ret;
}

fixpt_t fixpt_clamp(fixpt_t a,
		    fixpt_t lo_lim, fixpt_t hi_lim)
{
	if (a < lo_lim)
		a = lo_lim;
	if (a > hi_lim)
		a = hi_lim;

	return a;
}
bues.ch cgit interface