123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561 |
- /*
- * Copyright (c) 2013-2015 Wind River Systems, Inc.
- *
- * SPDX-License-Identifier: Apache-2.0
- */
- /**
- * @file
- * @brief Public API for DSP drivers and applications
- */
- #ifndef __DSP_H__
- #define __DSP_H__
- #include <stddef.h>
- #include <stdint.h>
- #include <sys/types.h>
- #include <zephyr/types.h>
- #include <device.h>
- #include <drivers/cfg_drv/dev_config.h>
- #ifdef CONFIG_LOAD_IMAGE_FROM_FS
- #include <fs/fs.h>
- #endif /* LOAD_IMAGE_FROM_FS */
- #ifdef __cplusplus
- extern "C" {
- #endif
- /**********************************************************************************/
- /* dsp image definition */
- /**********************************************************************************/
- /* image type, for multiple images support */
- enum {
- DSP_IMAGE_MAIN = 0, /* provide program entry point */
- DSP_IMAGE_SUB,
- DSP_NUM_IMAGE_TYPES,
- };
- #define DSP_IMAGE_NMLEN (12)
- struct dsp_imageinfo {
- const char *name;
- #ifdef CONFIG_LOAD_IMAGE_FROM_FS
- struct fs_file_t filp;
- #else
- const void *ptr;
- #endif
- size_t size;
- uint32_t entry_point;
- };
- /* boot arguments of dsp image */
- struct dsp_bootargs {
- int32_t power_latency; /* us */
- uint32_t command_buffer; /* address of command buffer */
- uint32_t debug_buf;
- uint32_t sub_entry_point;
- };
- /**********************************************************************************/
- /* DSP/CPU communication mechanism (3 kinds) */
- /**********************************************************************************/
- /**********************************************************************************/
- /* 1. message bidirectional communication */
- /* - Based on mailbox registers and interrupts */
- /**********************************************************************************/
- /* message id */
- enum dsp_msg_id {
- DSP_MSG_NULL = 0, /* empty message */
- /* from dsp */
- DSP_MSG_REQUEST_BOOTARGS,
- /* notify important state changing to cpu, parameter is enum dsp_task_state */
- DSP_MSG_STATE_CHANGED,
- DSP_MSG_PAGE_MISS, /* parameter is epc */
- DSP_MSG_PAGE_FLUSH, /* parameter is epc */
- /* to dsp */
- DSP_MSG_SUSPEND, /* no parameter */
- DSP_MSG_RESUME, /* no parameter */
- /* bidirection */
- DSP_MSG_KICK, /* parameter is enum dsp_msg_event */
- /* user-defined message id started from this */
- DSP_MSG_USER_DEFINED,
- };
- /* parameter of DSP_MSG_KICK */
- enum dsp_msg_event {
- DSP_EVENT_NEW_CMD = 0, /* new command in session command buffer */
- DSP_EVENT_NEW_DATA, /* new data in session data buffer */
- DSP_EVENT_FENCE_SYNC, /* sync signaled */
- DSP_EVENT_USER_DEFINED,
- };
- /* message handling result */
- enum dsp_msg_result {
- DSP_NOACK = -2, /* ack not received */
- DSP_FAIL = -1, /* ack received but failed to handled */
- DSP_NOTOUCH = 0, /* not yet touched */
- DSP_INPROGRESS, /* not yet completed */
- DSP_DONE, /* all requests done */
- DSP_REPLY, /* all requests done, with reply present */
- };
- /* messsage struct */
- struct dsp_message {
- /* message id */
- uint16_t id;
- /* message result */
- int16_t result;
- /* message owner */
- uint32_t owner;
- /* user-defined parameter */
- uint32_t param1;
- uint32_t param2;
- };
- /**********************************************************************************/
- /* 2. command buffer unidirectional communication (bound to specific session) */
- /* - Based on message mechanism and buffer pooling */
- /**********************************************************************************/
- /* command id */
- enum dsp_cmd_id {
- /* generic commands */
- DSP_CMD_NULL = 0, /* empty message, dsp will go idle */
- DSP_CMD_SET_SESSION = 1, /* set session to run */
- };
- /* parameters of DSP_CMD_SET_SESSION */
- struct dsp_session_id_set {
- uint32_t id; /* session type */
- uint32_t uuid; /* session uuid */
- uint32_t func_allowed; /* function allowed */
- };
- struct dsp_command_buffer {
- /* sequence of current command (counted from 1) */
- uint16_t cur_seq;
- /* sequence to be allocated */
- uint16_t alloc_seq;
- /* buffer object address (struct dsp_ringbuf) to store commands */
- uint32_t cpu_bufptr;
- uint32_t dsp_bufptr;
- };
- struct dsp_command {
- /* command id */
- uint16_t id;
- /* sequence in command buffer */
- uint16_t seq;
- /* semaphore handle (dsp will not touch) if synchronization needed */
- uint32_t sem;
- /* size of data in bytes */
- uint32_t size;
- uint32_t data[0];
- };
- /* total size should be multiple of 16-bit words */
- static inline size_t sizeof_dsp_command(struct dsp_command *command)
- {
- return sizeof(*command) + command->size;
- }
- /**********************************************************************************/
- /* 3. directly shared bidirectional communication */
- /* - Based on mailbox registers, for frequently requested information */
- /**********************************************************************************/
- /* request type */
- enum dsp_request_type {
- DSP_REQUEST_TASK_STATE, /* task state */
- DSP_REQUEST_ERROR_CODE, /* error code */
- DSP_REQUEST_SESSION_INFO, /* session information */
- DSP_REQUEST_FUNCTION_INFO, /* function information */
- DSP_REQUEST_USER_DEFINED, /* user defined information */
- };
- /* task state */
- enum dsp_task_state {
- DSP_TASK_PRESTART = -1, /* has not yet started */
- DSP_TASK_STARTED = 0, /* started, prepare running */
- DSP_TASK_PENDING, /* waiting for new command or data */
- DSP_TASK_RUNNING, /* running */
- DSP_TASK_SUSPENDED, /* suspended */
- DSP_TASK_DEAD, /* terminated */
- DSP_TASK_IDLE = DSP_TASK_PENDING,
- DSP_TASK_RESUMED = DSP_TASK_RUNNING,
- };
- /* error code */
- enum dsp_error {
- DSP_NO_ERROR = 0,
- DSP_BAD_BOOTARGS,
- DSP_BAD_COMMAND,
- DSP_BAD_SESSION,
- DSP_BAD_FUNCTION,
- DSP_BAD_PARAMETER,
- DSP_ERR_USER_DEFINED,
- };
- /* DSP_REQUEST_SESSION_INFO */
- struct dsp_request_session {
- uint32_t func_enabled; /* enabled function */
- uint32_t func_counter; /* function counter */
- void *info; /* private information */
- uint32_t func_runnable; /* runnable function */
- };
- /* DSP_REQUEST_FUNCTION_INFO */
- struct dsp_request_function {
- unsigned int id; /* function id */
- void *info; /* function information address */
- };
- /**********************************************************************************/
- /* dsp device driver api */
- /**********************************************************************************/
- /**
- * @cond INTERNAL_HIDDEN
- *
- * These are for internal use only, so skip these in public documentation.
- */
- /**
- * @typedef dsp_api_poweron
- * @brief Callback API for power on
- */
- typedef int (*dsp_api_poweron)(struct device *dev, void *cmdbuf);
- /**
- * @typedef dsp_api_poweroff
- * @brief Callback API for power off
- */
- typedef int (*dsp_api_poweroff)(struct device *dev);
- /**
- * @typedef dsp_api_suspend
- * @brief Callback API for power suspend
- */
- typedef int (*dsp_api_suspend)(struct device *dev);
- /**
- * @typedef dsp_api_resume
- * @brief Callback API for power resume
- */
- typedef int (*dsp_api_resume)(struct device *dev);
- /**
- * @typedef dsp_api_kick
- * @brief Callback API for kicking dsp
- */
- typedef int (*dsp_api_kick)(struct device *dev, uint32_t owner, uint32_t event, uint32_t params);
- /**
- * @typedef dsp_api_request_image
- * @brief Callback API for loading image
- */
- typedef int (*dsp_api_request_image)(struct device *dev, const struct dsp_imageinfo *image, int type);
- /**
- * @typedef dsp_api_release_image
- * @brief Callback API for releasing image
- */
- typedef int (*dsp_api_release_image)(struct device *dev, int type);
- /**
- * @typedef dsp_api_release_image
- * @brief Callback API for releasing image
- */
- typedef int (*dsp_api_request_mem)(struct device *dev, int type);
- /**
- * @typedef dsp_api_release_image
- * @brief Callback API for releasing image
- */
- typedef int (*dsp_api_release_mem)(struct device *dev, int type);
- /**
- * @typedef dsp_message_handler
- * @brief Prototype definition for message handler
- */
- typedef int (*dsp_message_handler)(struct dsp_message *msg);
- /**
- * @typedef dsp_api_register_message_handler
- * @brief Callback API for registering message handler
- */
- typedef int (*dsp_api_register_message_handler)(struct device *dev, dsp_message_handler handler);
- /**
- * @typedef dsp_api_unregister_message_handler
- * @brief Callback API for unregistering message handler
- */
- typedef int (*dsp_api_unregister_message_handler)(struct device *dev);
- /**
- * @typedef dsp_api_send_message
- * @brief Callback API for releasing image
- */
- typedef int (*dsp_api_send_message)(struct device *dev, struct dsp_message *msg);
- /**
- * @typedef dsp_acts_request_userinfo
- * @brief Callback API for requesting user interested information
- */
- typedef int (*dsp_acts_request_userinfo)(struct device *dev, int request, void *info);
- struct dsp_driver_api {
- dsp_api_poweron poweron;
- dsp_api_poweroff poweroff;
- dsp_api_suspend suspend;
- dsp_api_resume resume;
- dsp_api_kick kick;
- dsp_api_register_message_handler register_message_handler;
- dsp_api_unregister_message_handler unregister_message_handler;
- dsp_api_request_image request_image;
- dsp_api_release_image release_image;
- dsp_api_request_mem request_mem;
- dsp_api_release_mem release_mem;
- dsp_api_send_message send_message;
- dsp_acts_request_userinfo request_userinfo;
- };
- /**
- * @endcond
- */
- /**
- * @brief start the dsp device
- *
- * @param dev Pointer to the device structure for the driver instance.
- * @param cmdbuf Address of session command buffer.
- *
- * @retval 0 if successful.
- * @retval Negative errno code if failure.
- */
- static inline int dsp_poweron(struct device *dev, void *cmdbuf)
- {
- const struct dsp_driver_api *api = dev->api;
- return api->poweron(dev, cmdbuf);
- }
- /**
- * @brief stop the dsp device
- *
- * @param dev Pointer to the device structure for the driver instance.
- *
- * @retval 0 if successful.
- * @retval Negative errno code if failure.
- */
- static inline int dsp_poweroff(struct device *dev)
- {
- const struct dsp_driver_api *api = dev->api;
- return api->poweroff(dev);
- }
- /**
- * @brief suspend the dsp device
- *
- * @param dev Pointer to the device structure for the driver instance.
- *
- * @retval 0 if successful.
- * @retval Negative errno code if failure.
- */
- static inline int dsp_suspend(struct device *dev)
- {
- const struct dsp_driver_api *api = dev->api;
- return api->suspend(dev);
- }
- /**
- * @brief resume the dsp device
- *
- * @param dev Pointer to the device structure for the driver instance.
- *
- * @retval 0 if successful.
- * @retval Negative errno code if failure.
- */
- static inline int dsp_resume(struct device *dev)
- {
- const struct dsp_driver_api *api = dev->api;
- return api->resume(dev);
- }
- /**
- * @brief resume the dsp device
- *
- * @param dev Pointer to the device structure for the driver instance.
- * @param owner Owner who send the event.
- * @param event Event id.
- * @param params Event params.
- *
- * @retval 0 if successful.
- * @retval Negative errno code if failure.
- */
- static inline int dsp_kick(struct device *dev, unsigned int owner, unsigned int event, unsigned int params)
- {
- const struct dsp_driver_api *api = dev->api;
- return api->kick(dev, owner, event, params);
- }
- /**
- * @brief request the dsp image
- *
- * @param dev Pointer to the device structure for the driver instance.
- * @param image dsp image information
- * @param type dsp image filetype
- *
- * @retval 0 if successful.
- * @retval Negative errno code if failure.
- */
- static inline int dsp_request_image(struct device *dev, const struct dsp_imageinfo *image, int type)
- {
- const struct dsp_driver_api *api = dev->api;
- return api->request_image(dev, image, type);
- }
- /**
- * @brief release the dsp image
- *
- * @param dev Pointer to the device structure for the driver instance.
- * @param type dsp image filetype
- *
- * @retval 0 if successful.
- * @retval Negative errno code if failure.
- */
- static inline int dsp_release_image(struct device *dev, int type)
- {
- const struct dsp_driver_api *api = dev->api;
- return api->release_image(dev, type);
- }
- /**
- * @brief request the dsp mem
- *
- * @param dev Pointer to the device structure for the driver instance.
- * @param image dsp image information
- * @param type dsp image filetype
- *
- * @retval 0 if successful.
- * @retval Negative errno code if failure.
- */
- static inline int dsp_request_mem(struct device *dev,int type)
- {
- const struct dsp_driver_api *api = dev->api;
- return api->request_mem(dev, type);
- }
- /**
- * @brief release the dsp image
- *
- * @param dev Pointer to the device structure for the driver instance.
- * @param type dsp image filetype
- *
- * @retval 0 if successful.
- * @retval Negative errno code if failure.
- */
- static inline int dsp_release_mem(struct device *dev, int type)
- {
- const struct dsp_driver_api *api = dev->api;
- return api->release_mem(dev, type);
- }
- /**
- * @brief register dsp message handler
- *
- * @param dev Pointer to the device structure for the driver instance.
- * @param handler message handler function
- *
- * @retval 0 if successful.
- * @retval Negative errno code if failure.
- */
- static inline int dsp_register_message_handler(struct device *dev, dsp_message_handler handler)
- {
- const struct dsp_driver_api *api = dev->api;
- return api->register_message_handler(dev, handler);
- }
- /**
- * @brief unregister dsp callback
- *
- * @param dev Pointer to the device structure for the driver instance.
- *
- * @retval 0 if successful.
- * @retval Negative errno code if failure.
- */
- static inline int dsp_unregister_message_handler(struct device *dev)
- {
- const struct dsp_driver_api *api = dev->api;
- return api->unregister_message_handler(dev);
- }
- /**
- * @brief send message to dsp
- *
- * @param dev Pointer to the device structure for the driver instance.
- * @param msg message to send
- *
- * @retval 0 if successful.
- * @retval Negative errno code if failure.
- */
- static inline int dsp_send_message(struct device *dev, struct dsp_message *msg)
- {
- const struct dsp_driver_api *api = dev->api;
- return api->send_message(dev, msg);
- }
- /**
- * @brief request user information writing by dsp
- *
- * @param dev Pointer to the device structure for the driver instance.
- * @param info information to store
- *
- * @retval 0 if successful.
- * @retval Negative errno code if failure.
- */
- static inline int dsp_request_userinfo(struct device *dev, int request, void *info)
- {
- const struct dsp_driver_api *api = dev->api;
- return api->request_userinfo(dev, request, info);
- }
- /**
- * @}
- */
- #ifdef __cplusplus
- }
- #endif
- #endif /* __DSP_H__ */
|