2016-02-23 02:48:08 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2016 Intel Corporation.
|
|
|
|
*
|
2017-01-19 09:01:01 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2016-02-23 02:48:08 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
*
|
|
|
|
* @brief This file defines the private data structures for spi flash driver
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __SPI_FLASH_W25QXXDV_H__
|
|
|
|
#define __SPI_FLASH_W25QXXDV_H__
|
|
|
|
|
|
|
|
|
|
|
|
struct spi_flash_data {
|
|
|
|
struct device *spi;
|
2018-05-29 22:52:53 +08:00
|
|
|
#if defined(CONFIG_SPI_FLASH_W25QXXDV_GPIO_SPI_CS)
|
|
|
|
struct spi_cs_control cs_ctrl;
|
|
|
|
#endif /* CONFIG_SPI_FLASH_W25QXXDV_GPIO_SPI_CS */
|
2018-01-30 22:01:36 +08:00
|
|
|
struct spi_config spi_cfg;
|
2018-06-18 16:38:18 +08:00
|
|
|
#if defined(CONFIG_MULTITHREADING)
|
2016-11-10 08:14:40 +08:00
|
|
|
struct k_sem sem;
|
2018-06-18 16:38:18 +08:00
|
|
|
#endif /* CONFIG_MULTITHREADING */
|
2016-02-23 02:48:08 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* __SPI_FLASH_W25QXXDV_H__ */
|