sys_bitops.h 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. /*
  2. * Copyright (c) 2020, Wind River Systems, Inc.
  3. * Copyright (c) 2017, Oticon A/S
  4. * Copyright (c) 2020, Synopsys
  5. *
  6. * SPDX-License-Identifier: Apache-2.0
  7. */
  8. /* Memory bits manipulation functions in non-arch-specific C code */
  9. #ifndef ZEPHYR_INCLUDE_ARCH_COMMON_SYS_BITOPS_H_
  10. #define ZEPHYR_INCLUDE_ARCH_COMMON_SYS_BITOPS_H_
  11. #ifndef _ASMLANGUAGE
  12. #include <toolchain.h>
  13. #include <zephyr/types.h>
  14. #include <sys/sys_io.h>
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. static ALWAYS_INLINE void sys_set_bit(mem_addr_t addr, unsigned int bit)
  19. {
  20. uint32_t temp = *(volatile uint32_t *)addr;
  21. *(volatile uint32_t *)addr = temp | (1 << bit);
  22. }
  23. static ALWAYS_INLINE void sys_clear_bit(mem_addr_t addr, unsigned int bit)
  24. {
  25. uint32_t temp = *(volatile uint32_t *)addr;
  26. *(volatile uint32_t *)addr = temp & ~(1 << bit);
  27. }
  28. static ALWAYS_INLINE int sys_test_bit(mem_addr_t addr, unsigned int bit)
  29. {
  30. uint32_t temp = *(volatile uint32_t *)addr;
  31. return temp & (1 << bit);
  32. }
  33. static ALWAYS_INLINE
  34. void sys_bitfield_set_bit(mem_addr_t addr, unsigned int bit)
  35. {
  36. /* Doing memory offsets in terms of 32-bit values to prevent
  37. * alignment issues
  38. */
  39. sys_set_bit(addr + ((bit >> 5) << 2), bit & 0x1F);
  40. }
  41. static ALWAYS_INLINE
  42. void sys_bitfield_clear_bit(mem_addr_t addr, unsigned int bit)
  43. {
  44. sys_clear_bit(addr + ((bit >> 5) << 2), bit & 0x1F);
  45. }
  46. static ALWAYS_INLINE
  47. int sys_bitfield_test_bit(mem_addr_t addr, unsigned int bit)
  48. {
  49. return sys_test_bit(addr + ((bit >> 5) << 2), bit & 0x1F);
  50. }
  51. static ALWAYS_INLINE
  52. int sys_test_and_set_bit(mem_addr_t addr, unsigned int bit)
  53. {
  54. int ret;
  55. ret = sys_test_bit(addr, bit);
  56. sys_set_bit(addr, bit);
  57. return ret;
  58. }
  59. static ALWAYS_INLINE
  60. int sys_test_and_clear_bit(mem_addr_t addr, unsigned int bit)
  61. {
  62. int ret;
  63. ret = sys_test_bit(addr, bit);
  64. sys_clear_bit(addr, bit);
  65. return ret;
  66. }
  67. static ALWAYS_INLINE
  68. int sys_bitfield_test_and_set_bit(mem_addr_t addr, unsigned int bit)
  69. {
  70. int ret;
  71. ret = sys_bitfield_test_bit(addr, bit);
  72. sys_bitfield_set_bit(addr, bit);
  73. return ret;
  74. }
  75. static ALWAYS_INLINE
  76. int sys_bitfield_test_and_clear_bit(mem_addr_t addr, unsigned int bit)
  77. {
  78. int ret;
  79. ret = sys_bitfield_test_bit(addr, bit);
  80. sys_bitfield_clear_bit(addr, bit);
  81. return ret;
  82. }
  83. #ifdef __cplusplus
  84. }
  85. #endif
  86. #endif /* _ASMLANGUAGE */
  87. #endif /* ZEPHYR_INCLUDE_ARCH_COMMON_SYS_BITOPS_H_ */