sys_io.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /*
  2. * Copyright (c) 2015, Wind River Systems, Inc.
  3. * Copyright (c) 2017, Oticon A/S
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. /* Memory mapped registers I/O functions in non-arch-specific C code */
  8. #ifndef ZEPHYR_INCLUDE_ARCH_COMMON_SYS_IO_H_
  9. #define ZEPHYR_INCLUDE_ARCH_COMMON_SYS_IO_H_
  10. #ifndef _ASMLANGUAGE
  11. #include <toolchain.h>
  12. #include <zephyr/types.h>
  13. #include <sys/sys_io.h>
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17. static ALWAYS_INLINE uint8_t sys_read8(mem_addr_t addr)
  18. {
  19. return *(volatile uint8_t *)addr;
  20. }
  21. static ALWAYS_INLINE void sys_write8(uint8_t data, mem_addr_t addr)
  22. {
  23. *(volatile uint8_t *)addr = data;
  24. }
  25. static ALWAYS_INLINE uint16_t sys_read16(mem_addr_t addr)
  26. {
  27. return *(volatile uint16_t *)addr;
  28. }
  29. static ALWAYS_INLINE void sys_write16(uint16_t data, mem_addr_t addr)
  30. {
  31. *(volatile uint16_t *)addr = data;
  32. }
  33. static ALWAYS_INLINE uint32_t sys_read32(mem_addr_t addr)
  34. {
  35. return *(volatile uint32_t *)addr;
  36. }
  37. static ALWAYS_INLINE void sys_write32(uint32_t data, mem_addr_t addr)
  38. {
  39. *(volatile uint32_t *)addr = data;
  40. }
  41. #ifdef __cplusplus
  42. }
  43. #endif
  44. #endif /* _ASMLANGUAGE */
  45. #endif /* ZEPHYR_INCLUDE_ARCH_COMMON_SYS_IO_H_ */