123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225 |
- /*
- * Copyright (c) 2020 Actions Technology Co., Ltd
- *
- * SPDX-License-Identifier: Apache-2.0
- */
- #ifndef ZEPHYR_INCLUDE_DRIVERS_SPIMT_H_
- #define ZEPHYR_INCLUDE_DRIVERS_SPIMT_H_
- /**
- * @brief inter-processor message communication API.
- * @defgroup ipmsg_interface IPMSG Interface
- * @ingroup io_interfaces
- * @{
- */
- #include <kernel.h>
- #include <device.h>
- #include <drivers/ppi.h>
- #include <drivers/spi.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- /******************************************************************************/
- //constants
- /******************************************************************************/
- //spi task num
- #define SPI_TASK_NUM (8)
- //spi task DMA irq type
- enum spi_task_irq_type {
- SPI_TASK_IRQ_CMPLT = (1 << 0),
- SPI_TASK_IRQ_HALF_CMPLT = (1 << 1),
- };
- /******************************************************************************/
- //typedef
- /******************************************************************************/
- typedef struct spi_task_ctl {
- unsigned int wsdat : 16; // write data (single byte or half-word)
- unsigned int sbsh : 1; // length selection (single byte or half-word)
- unsigned int rwsel : 1; // read / write selection
- unsigned int rdlen : 12; // read byte length
- #if defined(CONFIG_SOC_SERIES_LEOPARD)
- unsigned int softst : 1; // soft start
- #else
- unsigned int rsvd : 1; // reserved
- #endif
- unsigned int soft : 1; // software enable
- } spi_task_ctl_t;
- typedef struct spi_task_dma {
- unsigned int start : 1; // dma start/stop
- unsigned int reload : 1; // dma reload mode
- unsigned int addr; // transfer address
- unsigned int len; // transfer length
- } spi_task_dma_t;
- typedef struct spi_task {
- task_trig_t trig; // task trig
- unsigned int irq_type; // irq enable
- spi_task_ctl_t ctl; // task ctl
- spi_task_dma_t dma; // task dma
- #if defined(CONFIG_SOC_SERIES_LEOPARD)
- unsigned int task_cs; //task cs id
- #endif
- } spi_task_t;
- /******************************************************************************/
- //functions
- /******************************************************************************/
- /**
- * @typedef spi_task_callback_t
- * @brief Callback API to handle spimt irq.
- */
- typedef void (*spi_task_callback_t) (unsigned char *buf, int len, void *context);
- /**
- * @typedef spi_register_callback_t
- * @brief Callback API upon registration
- *
- * See @a ipmsg_register_callback() for argument definitions.
- */
- typedef void (*spi_register_callback_t)(const struct device *dev,
- int task_id, spi_task_callback_t cb, void *cb_context);
- /**
- * @typedef spi_task_start_t
- * @brief Callback API to start spimt task.
- */
- typedef int (*spi_task_start_t) (const struct device *dev, int task_id,
- const spi_task_t *attr);
- /**
- * @typedef spi_task_stop_t
- * @brief Callback API to stop spimt task.
- */
- typedef int (*spi_task_stop_t) (const struct device *dev, int task_id);
- /**
- * @typedef spi_cs_select_t
- * @brief Callback API to select spimt cs.
- */
- typedef int (*spi_cs_select_t) (const struct device *dev, int cs_num);
- /**
- * @typedef spi_ctl_reset_t
- * @brief Callback API to reset spimt ctl.
- */
- typedef int (*spi_ctl_reset_t) (const struct device *dev);
- struct spimt_driver_api {
- struct spi_driver_api spi_api;
- spi_register_callback_t register_callback;
- spi_task_start_t task_start;
- spi_task_stop_t task_stop;
- spi_cs_select_t cs_select;
- spi_ctl_reset_t ctl_reset;
- };
- /**
- * @brief Register a callback function for incoming messages.
- *
- * @param dev Driver instance pointer.
- * @param id Message queue id.
- * @param cb Callback function to execute on incoming message interrupts.
- * @param context Application-specific context pointer which will be passed
- * to the callback function when executed.
- */
- static inline void spi_register_callback(const struct device *dev,
- int task_id, spi_task_callback_t cb, void *context)
- {
- const struct spimt_driver_api *api =
- (const struct spimt_driver_api *)dev->api;
- api->register_callback(dev, task_id, cb, context);
- }
- /**
- * @brief Start task for spimt.
- *
- * @param dev Driver instance
- * @param task_id Task number.
- * @param attr Task attribute.
- * @param hdl Task handler.
- *
- */
- static inline int spi_task_start(const struct device *dev, int task_id,
- const spi_task_t *attr)
- {
- const struct spimt_driver_api *api =
- (const struct spimt_driver_api *)dev->api;
- return api->task_start(dev, task_id, attr);
- }
- /**
- * @brief Stop task for spimt.
- *
- * @param dev Driver instance
- * @param task_id Task number.
- *
- */
- static inline int spi_task_stop(const struct device *dev, int task_id)
- {
- const struct spimt_driver_api *api =
- (const struct spimt_driver_api *)dev->api;
- return api->task_stop(dev, task_id);
- }
- /**
- * @brief Select cs for spimt.
- *
- * @param dev Driver instance
- * @param cs_num Cs number.
- *
- */
- static inline int spi_cs_select(const struct device *dev, int cs_num)
- {
- const struct spimt_driver_api *api =
- (const struct spimt_driver_api *)dev->api;
- return api->cs_select(dev, cs_num);
- }
- /**
- * @brief Reset spimt ctl.
- *
- * @param dev Driver instance
- *
- */
- static inline int spi_ctl_reset(const struct device *dev)
- {
- const struct spimt_driver_api *api =
- (const struct spimt_driver_api *)dev->api;
- return api->ctl_reset(dev);
- }
- /**
- * @brief Get task data for spimt.
- *
- * @param bus_id Bus No.
- * @param task_id Task number.
- * @param trig trigger source.
- * @param plen Data length pointer.
- *
- */
- uint8_t* spi_task_get_data(int bus_id, int task_id, int trig, int *plen);
- #ifdef __cplusplus
- }
- #endif
- /**
- * @}
- */
- #endif /* ZEPHYR_INCLUDE_DRIVERS_SPIMT_H_ */
|