ARM: rockchip: rk3228: add grf definition
[firefly-linux-kernel-4.4.55.git] / include / linux / rockchip-mailbox.h
1 /*
2  * Copyright (c) 2014, Fuzhou Rockchip Electronics Co., Ltd
3  *
4  * This program is free software; you can redistribute it and/or modify it
5  * under the terms and conditions of the GNU General Public License,
6  * version 2, as published by the Free Software Foundation.
7  */
8
9 #ifndef __MAILBOX_ROCKCHIP_H__
10 #define __MAILBOX_ROCKCHIP_H__
11
12 struct rockchip_mbox_msg {
13         u32 cmd;
14         int tx_size;
15         void *tx_buf;
16         int rx_size;
17         void *rx_buf;
18         void *cl_data;
19 };
20
21 #endif /* __MAILBOX_ROCKCHIP_H__ */