2016-10-09 09:06:01 +08:00
|
|
|
/*
|
2018-10-14 19:37:18 +08:00
|
|
|
* Copyright (c) 2006-2018, RT-Thread Development Team
|
2016-10-09 09:06:01 +08:00
|
|
|
*
|
2018-10-14 19:37:18 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2016-10-09 09:06:01 +08:00
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2016-09-28 armink first version.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _SPI_FLASH_SFUD_H_
|
|
|
|
#define _SPI_FLASH_SFUD_H_
|
|
|
|
|
|
|
|
#include <rtthread.h>
|
2018-12-06 09:20:46 +08:00
|
|
|
#include <rtdevice.h>
|
2016-10-09 09:06:01 +08:00
|
|
|
#include "./sfud/inc/sfud.h"
|
2018-08-16 14:30:19 +08:00
|
|
|
#include "spi_flash.h"
|
2016-10-09 09:06:01 +08:00
|
|
|
|
|
|
|
/**
|
2016-10-10 10:24:30 +08:00
|
|
|
* Probe SPI flash by SFUD(Serial Flash Universal Driver) driver library and though SPI device.
|
2016-10-09 09:06:01 +08:00
|
|
|
*
|
2016-10-10 10:24:30 +08:00
|
|
|
* @param spi_flash_dev_name the name which will create SPI flash device
|
|
|
|
* @param spi_dev_name using SPI device name
|
2016-10-09 09:06:01 +08:00
|
|
|
*
|
2016-10-10 10:24:30 +08:00
|
|
|
* @return probed SPI flash device, probe failed will return RT_NULL
|
2016-10-09 09:06:01 +08:00
|
|
|
*/
|
2016-10-10 10:24:30 +08:00
|
|
|
rt_spi_flash_device_t rt_sfud_flash_probe(const char *spi_flash_dev_name, const char *spi_dev_name);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete SPI flash device
|
|
|
|
*
|
|
|
|
* @param spi_flash_dev SPI flash device
|
|
|
|
*
|
|
|
|
* @return the operation status, RT_EOK on successful
|
|
|
|
*/
|
|
|
|
rt_err_t rt_sfud_flash_delete(rt_spi_flash_device_t spi_flash_dev);
|
2016-10-09 09:06:01 +08:00
|
|
|
|
2018-08-16 14:30:19 +08:00
|
|
|
/**
|
|
|
|
* Find sfud flash device
|
|
|
|
*
|
|
|
|
* @param spi_dev_name using SPI device name
|
|
|
|
*
|
|
|
|
* @return sfud flash device if success, otherwise return RT_NULL
|
|
|
|
*/
|
|
|
|
sfud_flash_t rt_sfud_flash_find(const char *spi_dev_name);
|
|
|
|
|
2016-10-09 09:06:01 +08:00
|
|
|
#endif /* _SPI_FLASH_SFUD_H_ */
|