#ifndef _FIXP_ARITH_H1#define _FIXP_ARITH_H23/*4* Simplistic fixed-point arithmetics.5* Hmm, I'm probably duplicating some code :(6*7* Copyright (c) 2002 Johann Deneux8*/910/*11* This program is free software; you can redistribute it and/or modify12* it under the terms of the GNU General Public License as published by13* the Free Software Foundation; either version 2 of the License, or14* (at your option) any later version.15*16* This program is distributed in the hope that it will be useful,17* but WITHOUT ANY WARRANTY; without even the implied warranty of18* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the19* GNU General Public License for more details.20*21* You should have received a copy of the GNU General Public License22* along with this program; if not, write to the Free Software23* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA24*25* Should you need to contact me, the author, you can do so by26* e-mail - mail your message to <[email protected]>27*/2829#include <linux/types.h>3031/* The type representing fixed-point values */32typedef s16 fixp_t;3334#define FRAC_N 835#define FRAC_MASK ((1<<FRAC_N)-1)3637/* Not to be used directly. Use fixp_{cos,sin} */38static const fixp_t cos_table[46] = {390x0100, 0x00FF, 0x00FF, 0x00FE, 0x00FD, 0x00FC, 0x00FA, 0x00F8,400x00F6, 0x00F3, 0x00F0, 0x00ED, 0x00E9, 0x00E6, 0x00E2, 0x00DD,410x00D9, 0x00D4, 0x00CF, 0x00C9, 0x00C4, 0x00BE, 0x00B8, 0x00B1,420x00AB, 0x00A4, 0x009D, 0x0096, 0x008F, 0x0087, 0x0080, 0x0078,430x0070, 0x0068, 0x005F, 0x0057, 0x004F, 0x0046, 0x003D, 0x0035,440x002C, 0x0023, 0x001A, 0x0011, 0x0008, 0x000045};464748/* a: 123 -> 123.0 */49static inline fixp_t fixp_new(s16 a)50{51return a<<FRAC_N;52}5354/* a: 0xFFFF -> -1.0550x8000 -> 1.0560x0000 -> 0.057*/58static inline fixp_t fixp_new16(s16 a)59{60return ((s32)a)>>(16-FRAC_N);61}6263static inline fixp_t fixp_cos(unsigned int degrees)64{65int quadrant = (degrees / 90) & 3;66unsigned int i = degrees % 90;6768if (quadrant == 1 || quadrant == 3)69i = 90 - i;7071i >>= 1;7273return (quadrant == 1 || quadrant == 2)? -cos_table[i] : cos_table[i];74}7576static inline fixp_t fixp_sin(unsigned int degrees)77{78return -fixp_cos(degrees + 90);79}8081static inline fixp_t fixp_mult(fixp_t a, fixp_t b)82{83return ((s32)(a*b))>>FRAC_N;84}8586#endif878889