utils.c 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*
  2. * Copyright 2011 Linaro Limited
  3. * Aneesh V <aneesh@ti.com>
  4. *
  5. * See file CREDITS for list of people who contributed to this
  6. * project.
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License as
  10. * published by the Free Software Foundation; either version 2 of
  11. * the License, or (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  21. * MA 02111-1307 USA
  22. */
  23. #include <common.h>
  24. static void do_cancel_out(u32 *num, u32 *den, u32 factor)
  25. {
  26. while (1) {
  27. if (((*num)/factor*factor == (*num)) &&
  28. ((*den)/factor*factor == (*den))) {
  29. (*num) /= factor;
  30. (*den) /= factor;
  31. } else
  32. break;
  33. }
  34. }
  35. /*
  36. * Cancel out the denominator and numerator of a fraction
  37. * to get smaller numerator and denominator.
  38. */
  39. void cancel_out(u32 *num, u32 *den, u32 den_limit)
  40. {
  41. do_cancel_out(num, den, 2);
  42. do_cancel_out(num, den, 3);
  43. do_cancel_out(num, den, 5);
  44. do_cancel_out(num, den, 7);
  45. do_cancel_out(num, den, 11);
  46. do_cancel_out(num, den, 13);
  47. do_cancel_out(num, den, 17);
  48. while ((*den) > den_limit) {
  49. *num /= 2;
  50. /*
  51. * Round up the denominator so that the final fraction
  52. * (num/den) is always <= the desired value
  53. */
  54. *den = (*den + 1) / 2;
  55. }
  56. }