xref: /openbmc/hiomapd/dbus.h (revision a6ca7a9c)
1 /* SPDX-License-Identifier: Apache-2.0 */
2 /* Copyright (C) 2018 IBM Corp. */
3 
4 #ifndef DBUS_H
5 #define DBUS_H
6 
7 #include <stdint.h>
8 #include <stddef.h>
9 
10 /*
11  * "mbox" will become an inappropriate name for the protocol/daemon, so claim a
12  * different name on the public interface.
13  *
14  * "hiomapd" expands to "Host I/O Map Daemon"
15  *
16  * TODO: The Great Rename
17  */
18 #define MBOX_DBUS_NAME			"xyz.openbmc_project.Hiomapd"
19 #define MBOX_DBUS_OBJECT		"/xyz/openbmc_project/Hiomapd"
20 #define MBOX_DBUS_CONTROL_IFACE		"xyz.openbmc_project.Hiomapd.Control"
21 #define MBOX_DBUS_PROTOCOL_IFACE	"xyz.openbmc_project.Hiomapd.Protocol"
22 #define MBOX_DBUS_PROTOCOL_IFACE_V2	MBOX_DBUS_PROTOCOL_IFACE ".V2"
23 
24 /* Legacy interface */
25 #define MBOX_DBUS_LEGACY_NAME		"org.openbmc.mboxd"
26 #define MBOX_DBUS_LEGACY_OBJECT		"/org/openbmc/mboxd"
27 
28 /* Command Args */
29 /* Resume */
30 #define RESUME_NUM_ARGS		1
31 #define RESUME_NOT_MODIFIED	0x00
32 #define RESUME_FLASH_MODIFIED	0x01
33 
34 /* Response Args */
35 /* Status */
36 #define DAEMON_STATE_NUM_ARGS	1
37 #define DAEMON_STATE_ACTIVE	0x00 /* Daemon Active */
38 #define DAEMON_STATE_SUSPENDED	0x01 /* Daemon Suspended */
39 
40 /* LPC State */
41 #define LPC_STATE_NUM_ARGS	1
42 #define LPC_STATE_INVALID	0x00 /* Invalid State */
43 #define LPC_STATE_FLASH		0x01 /* LPC Maps Flash Directly */
44 #define LPC_STATE_MEM		0x02 /* LPC Maps Memory */
45 
46 #endif /* MBOX_DBUS_H */
47