2 * Copyright (C) 2016 Endless Mobile, Inc.
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * version 2 as published by the Free Software Foundation.
9 * You should have received a copy of the GNU General Public License
10 * along with this program. If not, see <http://www.gnu.org/licenses/>.
13 #ifndef _MESON_SM_FW_H_
14 #define _MESON_SM_FW_H_
23 struct meson_sm_firmware;
25 int meson_sm_call(unsigned int cmd_index, u32 *ret, u32 arg0, u32 arg1,
26 u32 arg2, u32 arg3, u32 arg4);
27 int meson_sm_call_write(void *buffer, unsigned int b_size, unsigned int cmd_index,
28 u32 arg0, u32 arg1, u32 arg2, u32 arg3, u32 arg4);
29 int meson_sm_call_read(void *buffer, unsigned int bsize, unsigned int cmd_index,
30 u32 arg0, u32 arg1, u32 arg2, u32 arg3, u32 arg4);
32 #endif /* _MESON_SM_FW_H_ */