__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
/* SPDX-License-Identifier: GPL-2.0-only */
/*
* Texas Instruments' Message Manager
*
* Copyright (C) 2015-2022 Texas Instruments Incorporated - https://www.ti.com/
* Nishanth Menon
*/
#ifndef TI_MSGMGR_H
#define TI_MSGMGR_H
struct mbox_chan;
/**
* struct ti_msgmgr_message - Message Manager structure
* @len: Length of data in the Buffer
* @buf: Buffer pointer
* @chan_rx: Expected channel for response, must be provided to use polled rx
* @timeout_rx_ms: Timeout value to use if polling for response
*
* This is the structure for data used in mbox_send_message
* the length of data buffer used depends on the SoC integration
* parameters - each message may be 64, 128 bytes long depending
* on SoC. Client is supposed to be aware of this.
*/
struct ti_msgmgr_message {
size_t len;
u8 *buf;
struct mbox_chan *chan_rx;
int timeout_rx_ms;
};
#endif /* TI_MSGMGR_H */
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| k3-ringacc.h | File | 7.73 KB | 0644 |
|
| knav_dma.h | File | 5.08 KB | 0644 |
|
| knav_qmss.h | File | 2.65 KB | 0644 |
|
| omap1-io.h | File | 4.89 KB | 0644 |
|
| omap1-mux.h | File | 4.73 KB | 0644 |
|
| omap1-soc.h | File | 3.81 KB | 0644 |
|
| omap1-usb.h | File | 3.72 KB | 0644 |
|
| ti-msgmgr.h | File | 890 B | 0644 |
|
| ti_sci_inta_msi.h | File | 670 B | 0644 |
|
| ti_sci_protocol.h | File | 25.74 KB | 0644 |
|