blob: bd3e2b1fd167bb85a22d516efa94d23a72060bb7 [file] [log] [blame]
Andrew Jeffery4fe996c2018-02-27 12:16:48 +10301/* SPDX-License-Identifier: Apache-2.0 */
2/* Copyright (C) 2018 IBM Corp. */
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +11003
4#ifndef MBOXD_LPC_H
5#define MBOXD_LPC_H
6
Deepak Kodihalli017e45c2017-07-12 01:06:30 -05007#ifdef __cplusplus
8extern "C" {
9#endif
10
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +110011int init_lpc_dev(struct mbox_context *context);
12void free_lpc_dev(struct mbox_context *context);
13int point_to_flash(struct mbox_context *context);
14int point_to_memory(struct mbox_context *context);
Deepak Kodihalli017e45c2017-07-12 01:06:30 -050015int reset_lpc(struct mbox_context *context);
16
17#ifdef __cplusplus
18}
19#endif
Suraj Jitindar Singhe39c9162017-03-28 10:47:43 +110020
21#endif /* MBOXD_LPC_H */