flash_simulator.h 936 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*
  2. * Copyright (c) 2021 Noric Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef __ZEPHYR_INCLUDE_DRIVERS__FLASH_SIMULATOR_H__
  7. #define __ZEPHYR_INCLUDE_DRIVERS__FLASH_SIMULATOR_H__
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11. /**
  12. * @file
  13. * @brief Flash simulator specific API.
  14. *
  15. * Extension for flash simulator.
  16. */
  17. /**
  18. * @brief Obtain a pointer to the RAM buffer used but by the simulator
  19. *
  20. * This function allows the caller to get the address and size of the RAM buffer
  21. * in which the flash simulator emulates its flash memory content.
  22. *
  23. * @param[in] dev flash simulator device pointer.
  24. * @param[out] mock_size size of the ram buffer.
  25. *
  26. * @retval pointer to the ram buffer
  27. */
  28. __syscall void *flash_simulator_get_memory(const struct device *dev,
  29. size_t *mock_size);
  30. #ifdef __cplusplus
  31. }
  32. #endif
  33. #include <syscalls/flash_simulator.h>
  34. #endif /* __ZEPHYR_INCLUDE_DRIVERS__FLASH_SIMULATOR_H__ */