1 /* MN10300 64-bit division
3 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public Licence
8 * as published by the Free Software Foundation; either version
9 * 2 of the Licence, or (at your option) any later version.
14 #include <linux/types.h>
16 extern void ____unhandled_size_in_do_div___(void);
19 * divide n by base, leaving the result in n and returning the remainder
20 * - we can do this quite efficiently on the MN10300 by cascading the divides
21 * through the MDR register
23 #define do_div(n, base) \
26 if (sizeof(n) <= 4) { \
30 : "+r"(n), "=d"(__rem) \
31 : "r"(base), "1"(__rem) \
34 } else if (sizeof(n) <= 8) { \
36 unsigned long long l; \
40 asm("mov %0,mdr \n" /* MDR = 0 */ \
42 /* __quot.MSL = __div.MSL / base, */ \
43 /* MDR = MDR:__div.MSL % base */ \
45 /* __quot.LSL = MDR:__div.LSL / base, */ \
46 /* MDR = MDR:__div.LSL % base */ \
48 : "=d"(__rem), "=r"(__quot.w[1]), "=r"(__quot.w[0]) \
49 : "r"(base), "0"(__rem), "1"(__quot.w[1]), \
55 ____unhandled_size_in_do_div___(); \
61 * do an unsigned 32-bit multiply and divide with intermediate 64-bit product
62 * so as not to lose accuracy
63 * - we use the MDR register to hold the MSW of the product
65 static inline __attribute__((const))
66 unsigned __muldiv64u(unsigned val
, unsigned mult
, unsigned div
)
70 asm("mulu %2,%0 \n" /* MDR:val = val*mult */
71 "divu %3,%0 \n" /* val = MDR:val/div;
72 * MDR = MDR:val%div */
74 : "0"(val
), "ir"(mult
), "r"(div
)
81 * do a signed 32-bit multiply and divide with intermediate 64-bit product so
82 * as not to lose accuracy
83 * - we use the MDR register to hold the MSW of the product
85 static inline __attribute__((const))
86 signed __muldiv64s(signed val
, signed mult
, signed div
)
90 asm("mul %2,%0 \n" /* MDR:val = val*mult */
91 "div %3,%0 \n" /* val = MDR:val/div;
92 * MDR = MDR:val%div */
94 : "0"(val
), "ir"(mult
), "r"(div
)
100 #endif /* _ASM_DIV64 */