bitops.h 830 B

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. * Copyright (C) 2001 - 2012 Tensilica Inc.
  3. * Copyright (C) 2014 - 2016 Cadence Design Systems Inc.
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. #ifndef _XTENSA_BITOPS_H
  8. #define _XTENSA_BITOPS_H
  9. #include <asm/system.h>
  10. #include <asm-generic/bitops/fls.h>
  11. #include <asm-generic/bitops/__fls.h>
  12. #include <asm-generic/bitops/fls64.h>
  13. #include <asm-generic/bitops/__ffs.h>
  14. static inline int test_bit(int nr, const void *addr)
  15. {
  16. return ((unsigned char *)addr)[nr >> 3] & (1u << (nr & 7));
  17. }
  18. static inline int test_and_set_bit(int nr, volatile void *addr)
  19. {
  20. unsigned long flags;
  21. unsigned char tmp;
  22. unsigned char mask = 1u << (nr & 7);
  23. local_irq_save(flags);
  24. tmp = ((unsigned char *)addr)[nr >> 3];
  25. ((unsigned char *)addr)[nr >> 3] |= mask;
  26. local_irq_restore(flags);
  27. return tmp & mask;
  28. }
  29. #endif /* _XTENSA_BITOPS_H */