xref: /openbmc/hiomapd/lpc.h (revision f1e547c7)
1 /* SPDX-License-Identifier: Apache-2.0 */
2 /* Copyright (C) 2018 IBM Corp. */
3 
4 #ifndef LPC_H
5 #define LPC_H
6 
7 struct mbox_context;
8 
9 int lpc_dev_init(struct mbox_context *context);
10 void lpc_dev_free(struct mbox_context *context);
11 int lpc_map_flash(struct mbox_context *context);
12 int lpc_map_memory(struct mbox_context *context);
13 
14 #endif /* LPC_H */
15