blob: c9783ee73a5443ad193eb198e716472184ce278d [file] [log] [blame]
Norman James26072c02015-08-25 07:14:29 -05001#include <stdint.h>
2#include <stdio.h>
3#include <stdlib.h>
4#include <string.h>
5#include <fcntl.h>
6#include <unistd.h>
7#include <sys/stat.h>
8#include <sys/mman.h>
Norman James8abb50c2015-09-16 10:58:16 -05009#include <syslog.h>
Norman James362a80f2015-09-14 14:04:39 -050010#include "interfaces/openbmc_intf.h"
Norman James10ff6a32015-08-27 14:24:17 -050011#include "openbmc.h"
12#include "gpio.h"
Norman Jamese2765102015-08-19 22:00:55 -050013
14/* ---------------------------------------------------------------------------------------------------- */
Norman James362a80f2015-09-14 14:04:39 -050015static const gchar* dbus_object_path = "/org/openbmc/control";
Norman James26072c02015-08-25 07:14:29 -050016static const gchar* dbus_name = "org.openbmc.control.Power";
17
Norman James32e74e22015-09-15 21:28:06 -050018//This object will use these GPIOs
Norman James3f97c5d2015-08-26 17:44:14 -050019GPIO power_pin = (GPIO){ "POWER_PIN" };
20GPIO pgood = (GPIO){ "PGOOD" };
Norman Jamese2765102015-08-19 22:00:55 -050021
22static GDBusObjectManagerServer *manager = NULL;
Norman Jamese2765102015-08-19 22:00:55 -050023
Norman James88872672015-09-21 16:51:35 -050024//guint tmp_pgood = 0;
25//guint last_pgood = 0;
26time_t pgood_timeout_start = 0;
Norman James362a80f2015-09-14 14:04:39 -050027
Norman Jamesce46e3e2015-08-30 22:25:55 -050028static gboolean poll_pgood(gpointer user_data)
29{
30 ControlPower *control_power = object_get_control_power((Object*)user_data);
31 Control* control = object_get_control((Object*)user_data);
Norman Jamesbd4abd12015-09-16 22:43:46 -050032
33 //send the heartbeat
Norman Jamesce46e3e2015-08-30 22:25:55 -050034 control_emit_heartbeat(control,dbus_name);
Norman James32e74e22015-09-15 21:28:06 -050035 const gchar* obj_path = g_dbus_object_get_object_path((GDBusObject*)user_data);
Norman Jamesce46e3e2015-08-30 22:25:55 -050036
Norman James6a1283c2015-09-16 22:21:11 -050037 guint poll_int = control_get_poll_interval(control);
38 if (poll_int == 0)
39 {
Norman James2891c532015-10-06 08:01:56 -050040 printf("ERROR PowerControl: Poll interval cannot be 0\n");
Norman James6a1283c2015-09-16 22:21:11 -050041 return FALSE;
42 }
Norman James88872672015-09-21 16:51:35 -050043 //handle timeout
44 time_t current_time = time(NULL);
45 if (difftime(current_time,pgood_timeout_start) > control_power_get_pgood_timeout(control_power)
46 && pgood_timeout_start != 0)
Norman James32e74e22015-09-15 21:28:06 -050047 {
Norman James2891c532015-10-06 08:01:56 -050048 printf("ERROR PowerControl: Pgood poll timeout\n");
Norman Jamesbd4abd12015-09-16 22:43:46 -050049 // set timeout to 0 so timeout doesn't happen again
Norman James32e74e22015-09-15 21:28:06 -050050 control_power_set_pgood_timeout(control_power,0);
Norman James88872672015-09-21 16:51:35 -050051 pgood_timeout_start = 0;
Norman James8abb50c2015-09-16 10:58:16 -050052 return TRUE;
Norman James32e74e22015-09-15 21:28:06 -050053 }
Norman James32e74e22015-09-15 21:28:06 -050054 uint8_t gpio;
Norman James88872672015-09-21 16:51:35 -050055
56 int rc = gpio_open(&pgood);
57 rc = gpio_read(&pgood,&gpio);
58 gpio_close(&pgood);
Norman James32e74e22015-09-15 21:28:06 -050059 if (rc == GPIO_OK)
Norman James362a80f2015-09-14 14:04:39 -050060 {
Norman James32e74e22015-09-15 21:28:06 -050061 //if changed, set property and emit signal
62 if (gpio != control_power_get_pgood(control_power))
63 {
64 control_power_set_pgood(control_power,gpio);
65 if (gpio==0)
66 {
67 control_power_emit_power_lost(control_power);
68 control_emit_goto_system_state(control,"POWERED_OFF");
69 }
70 else
71 {
72 control_power_emit_power_good(control_power);
73 control_emit_goto_system_state(control,"POWERED_ON");
74 }
75 }
76 } else {
Norman James2891c532015-10-06 08:01:56 -050077 printf("ERROR PowerControl: GPIO read error (gpio=%s,rc=%d)\n",pgood.name,rc);
Norman James32e74e22015-09-15 21:28:06 -050078 }
79 //pgood is not at desired state yet
80 if (gpio != control_power_get_state(control_power) &&
Norman James88872672015-09-21 16:51:35 -050081 control_power_get_pgood_timeout(control_power) > 0)
Norman James32e74e22015-09-15 21:28:06 -050082 {
Norman James88872672015-09-21 16:51:35 -050083 if (pgood_timeout_start == 0 ) {
84 pgood_timeout_start = current_time;
85 }
Norman James32e74e22015-09-15 21:28:06 -050086 }
87 else
88 {
Norman James88872672015-09-21 16:51:35 -050089 pgood_timeout_start = 0;
Norman James362a80f2015-09-14 14:04:39 -050090 }
Norman Jamesce46e3e2015-08-30 22:25:55 -050091 return TRUE;
92}
93
94
95
Norman Jamese2765102015-08-19 22:00:55 -050096static gboolean
Norman James3f97c5d2015-08-26 17:44:14 -050097on_set_power_state (ControlPower *pwr,
Norman Jamese2765102015-08-19 22:00:55 -050098 GDBusMethodInvocation *invocation,
99 guint state,
100 gpointer user_data)
101{
Norman James362a80f2015-09-14 14:04:39 -0500102 Control* control = object_get_control((Object*)user_data);
Norman James32e74e22015-09-15 21:28:06 -0500103 const gchar* obj_path = g_dbus_object_get_object_path((GDBusObject*)user_data);
Norman James3f97c5d2015-08-26 17:44:14 -0500104 if (state > 1)
105 {
106 g_dbus_method_invocation_return_dbus_error (invocation,
107 "org.openbmc.ControlPower.Error.Failed",
108 "Invalid power state");
109 return TRUE;
110 }
Norman James9e6acf92015-09-08 07:00:04 -0500111 // return from method call
112 control_power_complete_set_power_state(pwr,invocation);
Norman James3f97c5d2015-08-26 17:44:14 -0500113 if (state == control_power_get_state(pwr))
114 {
Norman James9e6acf92015-09-08 07:00:04 -0500115 g_print("Power already at requested state: %d\n",state);
Norman James3f97c5d2015-08-26 17:44:14 -0500116 }
Norman James9e6acf92015-09-08 07:00:04 -0500117 else
118 {
Norman James32e74e22015-09-15 21:28:06 -0500119 int error = 0;
120 do {
Norman James19e45912015-10-04 20:19:41 -0500121 if (state == 1) {
122 control_emit_goto_system_state(control,"POWERING_ON");
123 } else {
124 control_emit_goto_system_state(control,"POWERING_OFF");
125 }
Norman James32e74e22015-09-15 21:28:06 -0500126 error = gpio_open(&power_pin);
Norman James88872672015-09-21 16:51:35 -0500127 if (error != GPIO_OK) { break; }
Norman James32e74e22015-09-15 21:28:06 -0500128 error = gpio_write(&power_pin,!state);
Norman James88872672015-09-21 16:51:35 -0500129 if (error != GPIO_OK) { break; }
Norman James32e74e22015-09-15 21:28:06 -0500130 gpio_close(&power_pin);
131 control_power_set_state(pwr,state);
Norman James32e74e22015-09-15 21:28:06 -0500132 } while(0);
133 if (error != GPIO_OK)
Norman James362a80f2015-09-14 14:04:39 -0500134 {
Norman James2891c532015-10-06 08:01:56 -0500135 printf("ERROR PowerControl: GPIO set power state (rc=%d)\n",error);
Norman James362a80f2015-09-14 14:04:39 -0500136 }
Norman James9e6acf92015-09-08 07:00:04 -0500137 }
138 return TRUE;
139}
Norman Jamese2765102015-08-19 22:00:55 -0500140
Norman James9e6acf92015-09-08 07:00:04 -0500141static gboolean
142on_init (Control *control,
143 GDBusMethodInvocation *invocation,
144 gpointer user_data)
145{
Norman James88872672015-09-21 16:51:35 -0500146 pgood_timeout_start = 0;
Norman James9e6acf92015-09-08 07:00:04 -0500147 guint poll_interval = control_get_poll_interval(control);
148 g_timeout_add(poll_interval, poll_pgood, user_data);
149 control_complete_init(control,invocation);
Norman James3f97c5d2015-08-26 17:44:14 -0500150 return TRUE;
Norman Jamese2765102015-08-19 22:00:55 -0500151}
152
153static gboolean
Norman James3f97c5d2015-08-26 17:44:14 -0500154on_get_power_state (ControlPower *pwr,
Norman Jamese2765102015-08-19 22:00:55 -0500155 GDBusMethodInvocation *invocation,
156 gpointer user_data)
157{
Norman James3f97c5d2015-08-26 17:44:14 -0500158 guint pgood = control_power_get_pgood(pwr);
159 control_power_complete_get_power_state(pwr,invocation,pgood);
160 return TRUE;
Norman Jamese2765102015-08-19 22:00:55 -0500161}
162
163static void
164on_bus_acquired (GDBusConnection *connection,
165 const gchar *name,
166 gpointer user_data)
167{
Norman James3f97c5d2015-08-26 17:44:14 -0500168 ObjectSkeleton *object;
Norman James362a80f2015-09-14 14:04:39 -0500169 //g_print ("Acquired a message bus connection: %s\n",name);
Norman James10ff6a32015-08-27 14:24:17 -0500170 cmdline *cmd = user_data;
171 if (cmd->argc < 2)
172 {
173 g_print("No objects created. Put object name(s) on command line\n");
174 return;
175 }
176 manager = g_dbus_object_manager_server_new (dbus_object_path);
Norman James88872672015-09-21 16:51:35 -0500177 gchar *s;
178 s = g_strdup_printf ("%s/%s",dbus_object_path,cmd->argv[1]);
179 g_print("%s\n",s);
180 object = object_skeleton_new (s);
181 g_free (s);
Norman Jamese2765102015-08-19 22:00:55 -0500182
Norman James88872672015-09-21 16:51:35 -0500183 ControlPower* control_power = control_power_skeleton_new ();
184 object_skeleton_set_control_power (object, control_power);
185 g_object_unref (control_power);
186
187 Control* control = control_skeleton_new ();
188 object_skeleton_set_control (object, control);
189 g_object_unref (control);
Norman Jamese2765102015-08-19 22:00:55 -0500190
Norman James88872672015-09-21 16:51:35 -0500191 //define method callbacks here
192 g_signal_connect (control_power,
193 "handle-set-power-state",
194 G_CALLBACK (on_set_power_state),
195 object); /* user_data */
Norman Jamesce46e3e2015-08-30 22:25:55 -0500196
Norman James88872672015-09-21 16:51:35 -0500197 g_signal_connect (control_power,
198 "handle-get-power-state",
199 G_CALLBACK (on_get_power_state),
200 NULL); /* user_data */
Norman Jamese2765102015-08-19 22:00:55 -0500201
Norman James88872672015-09-21 16:51:35 -0500202 g_signal_connect (control,
203 "handle-init",
204 G_CALLBACK (on_init),
205 object); /* user_data */
Norman James9e6acf92015-09-08 07:00:04 -0500206
207
Norman James88872672015-09-21 16:51:35 -0500208 /* Export the object (@manager takes its own reference to @object) */
209 g_dbus_object_manager_server_export (manager, G_DBUS_OBJECT_SKELETON (object));
210 g_object_unref (object);
Norman Jamesce46e3e2015-08-30 22:25:55 -0500211
Norman James3f97c5d2015-08-26 17:44:14 -0500212 /* Export all objects */
213 g_dbus_object_manager_server_set_connection (manager, connection);
214
215 // get gpio device paths
Norman Jamesbd4abd12015-09-16 22:43:46 -0500216 int rc = GPIO_OK;
Norman James32e74e22015-09-15 21:28:06 -0500217 do {
Norman James32e74e22015-09-15 21:28:06 -0500218 rc = gpio_init(connection,&power_pin);
219 if (rc != GPIO_OK) { break; }
220 rc = gpio_init(connection,&pgood);
221 if (rc != GPIO_OK) { break; }
Norman James65a295a2015-09-26 22:21:10 -0500222 uint8_t gpio;
Norman James32e74e22015-09-15 21:28:06 -0500223 rc = gpio_open(&pgood);
Norman James65a295a2015-09-26 22:21:10 -0500224 if (rc != GPIO_OK) { break; }
225 rc = gpio_read(&pgood,&gpio);
226 if (rc != GPIO_OK) { break; }
227 gpio_close(&pgood);
228 control_power_set_pgood(control_power,gpio);
Norman James32e74e22015-09-15 21:28:06 -0500229 } while(0);
Norman Jamesbd4abd12015-09-16 22:43:46 -0500230 if (rc != GPIO_OK)
231 {
Norman James2891c532015-10-06 08:01:56 -0500232 printf("ERROR PowerControl: GPIO setup (rc=%d)\n",rc);
Norman James65a295a2015-09-26 22:21:10 -0500233 }
Norman Jamese2765102015-08-19 22:00:55 -0500234}
235
236static void
237on_name_acquired (GDBusConnection *connection,
238 const gchar *name,
239 gpointer user_data)
240{
Norman Jamese2765102015-08-19 22:00:55 -0500241}
242
243static void
244on_name_lost (GDBusConnection *connection,
245 const gchar *name,
246 gpointer user_data)
247{
Norman Jamese2765102015-08-19 22:00:55 -0500248}
249
Norman Jamese2765102015-08-19 22:00:55 -0500250
Norman James3f97c5d2015-08-26 17:44:14 -0500251
252
253/*----------------------------------------------------------------*/
254/* Main Event Loop */
255
Norman Jamese2765102015-08-19 22:00:55 -0500256gint
257main (gint argc, gchar *argv[])
258{
259 GMainLoop *loop;
Norman James90caa3c2015-08-27 21:28:48 -0500260 cmdline cmd;
261 cmd.argc = argc;
262 cmd.argv = argv;
Norman Jamese2765102015-08-19 22:00:55 -0500263
264 guint id;
Norman Jamese2765102015-08-19 22:00:55 -0500265 loop = g_main_loop_new (NULL, FALSE);
266
267 id = g_bus_own_name (G_BUS_TYPE_SESSION,
Norman James26072c02015-08-25 07:14:29 -0500268 dbus_name,
Norman Jamese2765102015-08-19 22:00:55 -0500269 G_BUS_NAME_OWNER_FLAGS_ALLOW_REPLACEMENT |
270 G_BUS_NAME_OWNER_FLAGS_REPLACE,
271 on_bus_acquired,
272 on_name_acquired,
273 on_name_lost,
Norman James90caa3c2015-08-27 21:28:48 -0500274 &cmd,
Norman Jamese2765102015-08-19 22:00:55 -0500275 NULL);
276
Norman Jamesce46e3e2015-08-30 22:25:55 -0500277 g_main_loop_run (loop);
Norman Jamese2765102015-08-19 22:00:55 -0500278
279 g_bus_unown_name (id);
280 g_main_loop_unref (loop);
281 return 0;
282}