utils.h 552 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*
  2. * (C) Copyright 2010
  3. * Texas Instruments, <www.ti.com>
  4. * Aneesh V <aneesh@ti.com>
  5. *
  6. * SPDX-License-Identifier: GPL-2.0+
  7. */
  8. #ifndef _UTILS_H_
  9. #define _UTILS_H_
  10. static inline s32 log_2_n_round_up(u32 n)
  11. {
  12. s32 log2n = -1;
  13. u32 temp = n;
  14. while (temp) {
  15. log2n++;
  16. temp >>= 1;
  17. }
  18. if (n & (n - 1))
  19. return log2n + 1; /* not power of 2 - round up */
  20. else
  21. return log2n; /* power of 2 */
  22. }
  23. static inline s32 log_2_n_round_down(u32 n)
  24. {
  25. s32 log2n = -1;
  26. u32 temp = n;
  27. while (temp) {
  28. log2n++;
  29. temp >>= 1;
  30. }
  31. return log2n;
  32. }
  33. #endif