Home
last modified time | relevance | path

Searched defs:ivc (Results 1 – 3 of 3) sorted by relevance

/trusted-firmware-a-latest/plat/nvidia/tegra/drivers/bpmp_ipc/
Divc.h20 struct ivc { struct
21 struct ivc_channel_header *rx_channel; argument
22 struct ivc_channel_header *tx_channel; argument
25 void (*notify)(const struct ivc *); argument
31 typedef void (* ivc_notify_function)(const struct ivc *); argument
Divc.c74 static inline bool ivc_channel_empty(const struct ivc *ivc, in ivc_channel_empty()
105 static inline bool ivc_channel_full(const struct ivc *ivc, in ivc_channel_full()
120 static inline uint32_t ivc_channel_avail_count(const struct ivc *ivc, in ivc_channel_avail_count()
137 static inline void ivc_advance_tx(struct ivc *ivc) in ivc_advance_tx()
148 static inline void ivc_advance_rx(struct ivc *ivc) in ivc_advance_rx()
159 static inline int32_t ivc_check_read(const struct ivc *ivc) in ivc_check_read()
186 static inline int32_t ivc_check_write(const struct ivc *ivc) in ivc_check_write()
199 bool tegra_ivc_can_read(const struct ivc *ivc) in tegra_ivc_can_read()
204 bool tegra_ivc_can_write(const struct ivc *ivc) in tegra_ivc_can_write()
209 bool tegra_ivc_tx_empty(const struct ivc *ivc) in tegra_ivc_tx_empty()
[all …]
Dintf.c157 static void tegra_bpmp_ivc_notify(const struct ivc *ivc) in tegra_bpmp_ivc_notify()