fixp-arith.h 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. #ifndef _FIXP_ARITH_H
  2. #define _FIXP_ARITH_H
  3. /*
  4. * $$
  5. *
  6. * Simplistic fixed-point arithmetics.
  7. * Hmm, I'm probably duplicating some code :(
  8. *
  9. * Copyright (c) 2002 Johann Deneux
  10. */
  11. /*
  12. * This program is free software; you can redistribute it and/or modify
  13. * it under the terms of the GNU General Public License as published by
  14. * the Free Software Foundation; either version 2 of the License, or
  15. * (at your option) any later version.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU General Public License
  23. * along with this program; if not, write to the Free Software
  24. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  25. *
  26. * Should you need to contact me, the author, you can do so by
  27. * e-mail - mail your message to <deneux@ifrance.com>
  28. */
  29. #include <linux/types.h>
  30. // The type representing fixed-point values
  31. typedef s16 fixp_t;
  32. #define FRAC_N 8
  33. #define FRAC_MASK ((1<<FRAC_N)-1)
  34. // Not to be used directly. Use fixp_{cos,sin}
  35. static fixp_t cos_table[45] = {
  36. 0x0100, 0x00FF, 0x00FF, 0x00FE, 0x00FD, 0x00FC, 0x00FA, 0x00F8,
  37. 0x00F6, 0x00F3, 0x00F0, 0x00ED, 0x00E9, 0x00E6, 0x00E2, 0x00DD,
  38. 0x00D9, 0x00D4, 0x00CF, 0x00C9, 0x00C4, 0x00BE, 0x00B8, 0x00B1,
  39. 0x00AB, 0x00A4, 0x009D, 0x0096, 0x008F, 0x0087, 0x0080, 0x0078,
  40. 0x0070, 0x0068, 0x005F, 0x0057, 0x004F, 0x0046, 0x003D, 0x0035,
  41. 0x002C, 0x0023, 0x001A, 0x0011, 0x0008
  42. };
  43. /* a: 123 -> 123.0 */
  44. static inline fixp_t fixp_new(s16 a)
  45. {
  46. return a<<FRAC_N;
  47. }
  48. /* a: 0xFFFF -> -1.0
  49. 0x8000 -> 1.0
  50. 0x0000 -> 0.0
  51. */
  52. static inline fixp_t fixp_new16(s16 a)
  53. {
  54. return ((s32)a)>>(16-FRAC_N);
  55. }
  56. static inline fixp_t fixp_cos(unsigned int degrees)
  57. {
  58. int quadrant = (degrees / 90) & 3;
  59. unsigned int i = degrees % 90;
  60. if (quadrant == 1 || quadrant == 3) {
  61. i = 89 - i;
  62. }
  63. i >>= 1;
  64. return (quadrant == 1 || quadrant == 2)? -cos_table[i] : cos_table[i];
  65. }
  66. static inline fixp_t fixp_sin(unsigned int degrees)
  67. {
  68. return -fixp_cos(degrees + 90);
  69. }
  70. static inline fixp_t fixp_mult(fixp_t a, fixp_t b)
  71. {
  72. return ((s32)(a*b))>>FRAC_N;
  73. }
  74. #endif