spi_flash_sfud.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /*
  2. * Copyright (c) 2006-2018, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2016-09-28 armink first version.
  9. */
  10. #ifndef _SPI_FLASH_SFUD_H_
  11. #define _SPI_FLASH_SFUD_H_
  12. #include <rtthread.h>
  13. #include "./sfud/inc/sfud.h"
  14. #include "spi_flash.h"
  15. /**
  16. * Probe SPI flash by SFUD(Serial Flash Universal Driver) driver library and though SPI device.
  17. *
  18. * @param spi_flash_dev_name the name which will create SPI flash device
  19. * @param spi_dev_name using SPI device name
  20. *
  21. * @return probed SPI flash device, probe failed will return RT_NULL
  22. */
  23. rt_spi_flash_device_t rt_sfud_flash_probe(const char *spi_flash_dev_name, const char *spi_dev_name);
  24. /**
  25. * Delete SPI flash device
  26. *
  27. * @param spi_flash_dev SPI flash device
  28. *
  29. * @return the operation status, RT_EOK on successful
  30. */
  31. rt_err_t rt_sfud_flash_delete(rt_spi_flash_device_t spi_flash_dev);
  32. /**
  33. * Find sfud flash device
  34. *
  35. * @param spi_dev_name using SPI device name
  36. *
  37. * @return sfud flash device if success, otherwise return RT_NULL
  38. */
  39. sfud_flash_t rt_sfud_flash_find(const char *spi_dev_name);
  40. #endif /* _SPI_FLASH_SFUD_H_ */