blob: 496adf912537f286197f98f4cc2ed88b8c3055e8 [file] [log] [blame]
Matt Wagantallf8020902011-08-30 21:19:23 -07001/*
Jack Phamccbbfab2012-04-09 19:50:20 -07002 * Copyright (c) 2011-2012, Code Aurora Forum. All rights reserved.
Matt Wagantallf8020902011-08-30 21:19:23 -07003 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 and
6 * only version 2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 */
14
15#ifndef __MSM_SYSMON_H
16#define __MSM_SYSMON_H
17
18#include <mach/subsystem_notif.h>
19
Matt Wagantall14080c12011-10-19 12:24:00 -070020/**
21 * enum subsys_id - Destination subsystems for events.
22 */
Matt Wagantallf8020902011-08-30 21:19:23 -070023enum subsys_id {
24 SYSMON_SS_MODEM,
25 SYSMON_SS_LPASS,
26 SYSMON_SS_WCNSS,
27 SYSMON_SS_DSPS,
28 SYSMON_SS_Q6FW,
Jack Phamccbbfab2012-04-09 19:50:20 -070029 SYSMON_SS_EXT_MODEM,
Matt Wagantallf8020902011-08-30 21:19:23 -070030 SYSMON_NUM_SS
31};
32
Matt Wagantall14080c12011-10-19 12:24:00 -070033
34/**
35 * sysmon_send_event() - Notify a subsystem of another's state change.
36 * @dest_ss: ID of subsystem the notification should be sent to.
37 * @event_ss: String name of the subsystem that generated the notification.
38 * @notif: ID of the notification type (ex. SUBSYS_BEFORE_SHUTDOWN)
39 *
40 * Returns 0 for success, -EINVAL for invalid destination or notification IDs,
41 * -ENODEV if the SMD channel is not open, -ETIMEDOUT if the destination
42 * subsystem does not respond, and -ENOSYS if the destination subsystem
43 * responds, but with something other than an acknowledgement.
44 *
45 * If CONFIG_MSM_SYSMON_COMM is not defined, always return success (0).
46 */
Matt Wagantallf8020902011-08-30 21:19:23 -070047#ifdef CONFIG_MSM_SYSMON_COMM
48int sysmon_send_event(enum subsys_id dest_ss, const char *event_ss,
49 enum subsys_notif_type notif);
50#else
51static inline int sysmon_send_event(enum subsys_id dest_ss,
52 const char *event_ss,
53 enum subsys_notif_type notif)
54{
55 return 0;
56}
57#endif
58
59#endif