Matt Wagantall | f802090 | 2011-08-30 21:19:23 -0700 | [diff] [blame] | 1 | /* |
Jack Pham | ccbbfab | 2012-04-09 19:50:20 -0700 | [diff] [blame^] | 2 | * Copyright (c) 2011-2012, Code Aurora Forum. All rights reserved. |
Matt Wagantall | f802090 | 2011-08-30 21:19:23 -0700 | [diff] [blame] | 3 | * |
| 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 Wagantall | 14080c1 | 2011-10-19 12:24:00 -0700 | [diff] [blame] | 20 | /** |
| 21 | * enum subsys_id - Destination subsystems for events. |
| 22 | */ |
Matt Wagantall | f802090 | 2011-08-30 21:19:23 -0700 | [diff] [blame] | 23 | enum subsys_id { |
| 24 | SYSMON_SS_MODEM, |
| 25 | SYSMON_SS_LPASS, |
| 26 | SYSMON_SS_WCNSS, |
| 27 | SYSMON_SS_DSPS, |
| 28 | SYSMON_SS_Q6FW, |
Jack Pham | ccbbfab | 2012-04-09 19:50:20 -0700 | [diff] [blame^] | 29 | SYSMON_SS_EXT_MODEM, |
Matt Wagantall | f802090 | 2011-08-30 21:19:23 -0700 | [diff] [blame] | 30 | SYSMON_NUM_SS |
| 31 | }; |
| 32 | |
Matt Wagantall | 14080c1 | 2011-10-19 12:24:00 -0700 | [diff] [blame] | 33 | |
| 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 Wagantall | f802090 | 2011-08-30 21:19:23 -0700 | [diff] [blame] | 47 | #ifdef CONFIG_MSM_SYSMON_COMM |
| 48 | int sysmon_send_event(enum subsys_id dest_ss, const char *event_ss, |
| 49 | enum subsys_notif_type notif); |
| 50 | #else |
| 51 | static 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 |