^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 1) /*
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 2) * Copyright (C) 2017, Fuzhou Rockchip Electronics Co., Ltd
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 3) *
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 4) * This program is free software; you can redistribute it and/or modify
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 5) * it under the terms of the GNU General Public License as published by
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 6) * the Free Software Foundation; either version 2 of the License, or
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 7) * (at your option) any later version.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 8) */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 9)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 10) #ifndef __RK3368_MAILBOX_H__
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 11) #define __RK3368_MAILBOX_H__
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 12)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 13) struct rk3368_mbox_msg {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 14) u32 cmd;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 15) int tx_size;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 16) void *tx_buf;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 17) int rx_size;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 18) void *rx_buf;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 19) void *cl_data;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 20) };
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 21)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 22) #endif /* __RK3368_MAILBOX_H__ */