summaryrefslogtreecommitdiff
path: root/src/rtapi/rtapi_math64.h
blob: 4bb001894ba52cff53eb37634fc9cea63bb39302 (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
/*
 * Copyright (C) 2013 Jeff Epler <jepler@unpythonic.net>
 *
 *  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.
 */
#ifndef RTAPI_MATH64_H
#define RTAPI_MATH64_H

#ifdef __KERNEL__
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,26)
#include <asm/div64.h>
static inline __u64 rtapi_div_u64_rem(__u64 dividend, __u32 divisor, __u32 *remainder)
{
    *remainder = do_div(dividend, divisor);
    return dividend;
}
static inline __u64 rtapi_div_u64(__u64 dividend, __u32 divisor)
{
    __u32 remainder;
    return rtapi_div_u64_rem(dividend, divisor, &remainder);
}
static inline __s64 rtapi_div_s64_rem(__s64 dividend, __s32 divisor, __s32 *remainder)
{
    int sgn_dividend = (dividend < 0) ^ (divisor < 0);
    int sgn_remainder = (dividend < 0);
    if(dividend < 0) dividend = -dividend;
    if(divisor < 0) divisor = -divisor;
    *remainder = sgn_remainder
        ? -do_div(dividend, divisor) : do_div(dividend, divisor);
    return sgn_dividend ? -dividend : dividend;
}
static inline __s64 rtapi_div_s64(__s64 dividend, __s32 divisor)
{
	__s32 remainder;
	return rtapi_div_s64_rem(dividend, divisor, &remainder);
}
#else
#include <linux/math64.h>
#define rtapi_div_u64_rem div_u64_rem
#define rtapi_div_u64 div_u64
#define rtapi_div_s64_rem div_s64_rem
#define rtapi_div_s64 div_s64
#endif
#else
static inline __u64 rtapi_div_u64_rem(__u64 dividend, __u32 divisor, __u32 *remainder)
{
	*remainder = dividend % divisor;
	return dividend / divisor;
}

static inline __u64 rtapi_div_u64(__u64 dividend, __u32 divisor) {
	return dividend / divisor;
}
static inline __s64 rtapi_div_s64_rem(__s64 dividend, __s32 divisor, __s32 *remainder)
{
	*remainder = dividend % divisor;
	return dividend / divisor;
}

static inline __s64 rtapi_div_s64(__s64 dividend, __s32 divisor) {
	return dividend / divisor;
}
#endif

#endif