Lines Matching +full:tx +full:- +full:sec
1 /* SPDX-License-Identifier: GPL-2.0-only */
5 * Copyright (c) 2003-2016, Intel Corporation.
20 /* Number of messages to be held in ISR->BH FIFO */
24 * Number of IPC messages to be held in Tx FIFO, to be sent by ISR -
25 * Tx complete interrupt or RX_COMPLETE handler
41 #define ISHTP_MAX_OPEN_HANDLE_COUNT (ISHTP_CLIENTS_MAX - 1)
44 #define ISHTP_HOST_CLIENT_ID_ANY (-1)
64 * struct ishtp_fw_client - representation of fw client
66 * @props - client properties
67 * @client_id - fw client id
75 * Control info for IPC messages ISHTP/IPC sending FIFO -
86 * it will send appropriate ISHTP "message-complete" flag.
124 * struct ishtp_device - ISHTP private device struct
188 /* TX DMA buffers and slots */
195 /* map of 4k blocks in Tx dma buf: 0-free, 1-used */
220 static inline unsigned long ishtp_secs_to_jiffies(unsigned long sec) in ishtp_secs_to_jiffies() argument
222 return msecs_to_jiffies(sec * MSEC_PER_SEC); in ishtp_secs_to_jiffies()
230 return dev->ops->ipc_reset(dev); in ish_ipc_reset()