blob: 84bbdd242ac2e645d7e71e0653ddf22538756da5 [file] [log] [blame]
Brad Bishop77390492016-04-13 10:47:19 -04001#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>
9#include <syslog.h>
Brad Bishopf6c85682016-06-27 11:56:39 -040010#include <openbmc_intf.h>
11#include <openbmc.h>
12#include <gpio.h>
Lei YU45cb4fc2016-11-29 01:48:26 +080013#include <gpio_configs.h>
Brad Bishop77390492016-04-13 10:47:19 -040014
15/* ------------------------------------------------------------------------- */
16static const gchar* dbus_object_path = "/org/openbmc/control";
17static const gchar* instance_name = "power0";
18static const gchar* dbus_name = "org.openbmc.control.Power";
19
Yi Li0475f652016-10-25 13:19:59 +080020static int g_pci_reset_held = 1;
21
Lei YU75a18a22016-11-22 01:47:47 +080022static GpioConfigs g_gpio_configs;
Brad Bishop77390492016-04-13 10:47:19 -040023
24static GDBusObjectManagerServer *manager = NULL;
25
26time_t pgood_timeout_start = 0;
27
28// TODO: Change to interrupt driven instead of polling
29static gboolean
30poll_pgood(gpointer user_data)
31{
32 ControlPower *control_power = object_get_control_power((Object*)user_data);
33 Control* control = object_get_control((Object*)user_data);
34
35 //send the heartbeat
Brad Bishop77390492016-04-13 10:47:19 -040036 guint poll_int = control_get_poll_interval(control);
37 if(poll_int == 0)
38 {
Xo Wang20a19412016-09-22 11:26:14 -070039 g_print("ERROR PowerControl: Poll interval cannot be 0\n");
Brad Bishop77390492016-04-13 10:47:19 -040040 return FALSE;
41 }
42 //handle timeout
43 time_t current_time = time(NULL);
44 if(difftime(current_time,pgood_timeout_start) > control_power_get_pgood_timeout(control_power)
45 && pgood_timeout_start != 0)
46 {
Xo Wang20a19412016-09-22 11:26:14 -070047 g_print("ERROR PowerControl: Pgood poll timeout\n");
Brad Bishop77390492016-04-13 10:47:19 -040048 // set timeout to 0 so timeout doesn't happen again
49 control_power_set_pgood_timeout(control_power,0);
50 pgood_timeout_start = 0;
Patrick Williams27eaf902017-03-21 15:46:40 -050051 return TRUE;
Brad Bishop77390492016-04-13 10:47:19 -040052 }
Xo Wang20a19412016-09-22 11:26:14 -070053 uint8_t pgood_state;
Brad Bishop77390492016-04-13 10:47:19 -040054
Lei YU75a18a22016-11-22 01:47:47 +080055 int rc = gpio_open(&g_gpio_configs.power_gpio.power_good_in);
Xo Wang20a19412016-09-22 11:26:14 -070056 if(rc != GPIO_OK) {
57 g_print("ERROR PowerControl: GPIO open error (gpio=%s,rc=%d)\n",
Lei YU75a18a22016-11-22 01:47:47 +080058 g_gpio_configs.power_gpio.power_good_in.name, rc);
Xo Wang20a19412016-09-22 11:26:14 -070059 return FALSE;
60 }
Lei YU75a18a22016-11-22 01:47:47 +080061 rc = gpio_read(&g_gpio_configs.power_gpio.power_good_in, &pgood_state);
62 gpio_close(&g_gpio_configs.power_gpio.power_good_in);
Brad Bishop77390492016-04-13 10:47:19 -040063 if(rc == GPIO_OK)
64 {
65 //if changed, set property and emit signal
Xo Wang20a19412016-09-22 11:26:14 -070066 if(pgood_state != control_power_get_pgood(control_power))
Brad Bishop77390492016-04-13 10:47:19 -040067 {
Xo Wang20a19412016-09-22 11:26:14 -070068 int i;
69 uint8_t reset_state;
70 control_power_set_pgood(control_power, pgood_state);
71 if(pgood_state == 0)
Brad Bishop77390492016-04-13 10:47:19 -040072 {
73 control_power_emit_power_lost(control_power);
74 control_emit_goto_system_state(control,"HOST_POWERED_OFF");
Yi Li0475f652016-10-25 13:19:59 +080075 g_pci_reset_held = 1;
Brad Bishop77390492016-04-13 10:47:19 -040076 }
77 else
78 {
79 control_power_emit_power_good(control_power);
80 control_emit_goto_system_state(control,"HOST_POWERED_ON");
Xo Wang20a19412016-09-22 11:26:14 -070081 }
Brad Bishop77390492016-04-13 10:47:19 -040082
Lei YU75a18a22016-11-22 01:47:47 +080083 for(i = 0; i < g_gpio_configs.power_gpio.num_reset_outs; i++)
Xo Wang20a19412016-09-22 11:26:14 -070084 {
Lei YU75a18a22016-11-22 01:47:47 +080085 GPIO *reset_out = &g_gpio_configs.power_gpio.reset_outs[i];
Xo Wang20a19412016-09-22 11:26:14 -070086 rc = gpio_open(reset_out);
87 if(rc != GPIO_OK)
88 {
89 g_print("ERROR PowerControl: GPIO open error (gpio=%s,rc=%d)\n",
90 reset_out->name, rc);
91 continue;
92 }
93
Lei YU75a18a22016-11-22 01:47:47 +080094 reset_state = pgood_state ^ g_gpio_configs.power_gpio.reset_pols[i];
Yi Li39df4032016-12-16 16:06:50 +080095 g_print("PowerControl: pgood: %d, setting reset %s to %d\n",
Lei YU75a18a22016-11-22 01:47:47 +080096 (int)pgood_state, reset_out->name, (int)reset_state);
Xo Wang20a19412016-09-22 11:26:14 -070097 gpio_write(reset_out, reset_state);
98 gpio_close(reset_out);
Brad Bishop77390492016-04-13 10:47:19 -040099 }
Yi Li0475f652016-10-25 13:19:59 +0800100
Lei YU75a18a22016-11-22 01:47:47 +0800101 for(i = 0; i < g_gpio_configs.power_gpio.num_pci_reset_outs; i++)
Yi Li0475f652016-10-25 13:19:59 +0800102 {
Lei YU75a18a22016-11-22 01:47:47 +0800103 GPIO *pci_reset_out = &g_gpio_configs.power_gpio.pci_reset_outs[i];
Yi Li0475f652016-10-25 13:19:59 +0800104 if(pgood_state == 1)
105 {
106 /*
107 * When powering on, hold PCI reset until
108 * the processor can forward clocks and control reset.
109 */
Lei YU75a18a22016-11-22 01:47:47 +0800110 if(g_gpio_configs.power_gpio.pci_reset_holds[i])
Yi Li0475f652016-10-25 13:19:59 +0800111 {
112 g_print("Holding pci reset: %s\n", pci_reset_out->name);
113 continue;
114 }
115 }
116 rc = gpio_open(pci_reset_out);
117 if(rc != GPIO_OK)
118 {
119 g_print("ERROR PowerControl: GPIO open error (gpio=%s,rc=%d)\n",
120 pci_reset_out->name, rc);
121 continue;
122 }
123
Lei YU75a18a22016-11-22 01:47:47 +0800124 reset_state = pgood_state ^ g_gpio_configs.power_gpio.pci_reset_pols[i];
Yi Li39df4032016-12-16 16:06:50 +0800125 g_print("PowerControl: pgood: %d, setting pci reset %s to %d\n",
Lei YU75a18a22016-11-22 01:47:47 +0800126 (int)pgood_state, pci_reset_out->name, (int)reset_state);
Yi Li0475f652016-10-25 13:19:59 +0800127 gpio_write(pci_reset_out, reset_state);
128 gpio_close(pci_reset_out);
129 }
Brad Bishop77390492016-04-13 10:47:19 -0400130 }
131 } else {
Xo Wang20a19412016-09-22 11:26:14 -0700132 g_print("ERROR PowerControl: GPIO read error (gpio=%s,rc=%d)\n",
Lei YU75a18a22016-11-22 01:47:47 +0800133 g_gpio_configs.power_gpio.power_good_in.name, rc);
Brad Bishop77390492016-04-13 10:47:19 -0400134 //return false so poll won't get called anymore
135 return FALSE;
136 }
137 //pgood is not at desired state yet
Xo Wang20a19412016-09-22 11:26:14 -0700138 if(pgood_state != control_power_get_state(control_power) &&
Brad Bishop77390492016-04-13 10:47:19 -0400139 control_power_get_pgood_timeout(control_power) > 0)
140 {
141 if(pgood_timeout_start == 0 ) {
142 pgood_timeout_start = current_time;
143 }
144 }
145 else
146 {
147 pgood_timeout_start = 0;
148 }
149 return TRUE;
150}
151
Yi Li0475f652016-10-25 13:19:59 +0800152/* Handler for BootProgress signal from BootProgress sensor */
153static void
154on_boot_progress(GDBusConnection *connection,
155 const gchar *sender_name,
156 const gchar *object_path,
157 const gchar *interface_name,
158 const gchar *signal_name,
159 GVariant *parameters,
160 gpointer user_data)
161{
Lei YU93b84e42017-10-11 15:06:20 +0800162 gchar *interface;
163 GVariantIter *properties;
164 GVariantIter *dummy;
165 gchar *boot_progress = NULL;
166 gchar *property;
167 GVariant *value;
Yi Li0475f652016-10-25 13:19:59 +0800168 uint8_t pgood_state;
169 uint8_t reset_state;
170 int rc;
171 int i;
Lei YU93b84e42017-10-11 15:06:20 +0800172 int ignore;
Yi Li0475f652016-10-25 13:19:59 +0800173
174 if(!parameters)
175 return;
176
177 /* prevent release again */
178 if(!g_pci_reset_held)
179 return;
180
Lei YU93b84e42017-10-11 15:06:20 +0800181 g_variant_get(parameters, "(&sa{sv}as)", &interface, &properties, &dummy);
182 for(i = 0; g_variant_iter_next(properties, "{&sv}", &property, &value); i++)
183 {
184 if (strcmp(property, "BootProgress") == 0)
185 {
186 gchar* tmp;
187 g_variant_get(value, "&s", &tmp);
188 boot_progress = g_strdup(tmp);
189 g_print("BootProgress: %s\n", boot_progress);
190 g_variant_unref(value);
191 }
192 }
193
194 g_variant_iter_free(properties);
195 g_variant_iter_free(dummy);
196 if (boot_progress == NULL)
197 return;
198
Yi Li0475f652016-10-25 13:19:59 +0800199 /* Release PCI reset when FW boot progress goes beyond 'Baseboard Init' */
Lei YU93b84e42017-10-11 15:06:20 +0800200 ignore = strcmp(boot_progress,
201 "xyz.openbmc_project.State.Boot.Progress.ProgressStages.MotherboardInit") == 0;
202 g_free(boot_progress);
203
204 if (ignore)
Yi Li0475f652016-10-25 13:19:59 +0800205 return;
206
Lei YU75a18a22016-11-22 01:47:47 +0800207 rc = gpio_open(&g_gpio_configs.power_gpio.power_good_in);
Yi Li0475f652016-10-25 13:19:59 +0800208 if(rc != GPIO_OK)
209 {
210 g_print("ERROR PowerControl: on_boot_progress(): GPIO open error (gpio=%s,rc=%d)\n",
Lei YU75a18a22016-11-22 01:47:47 +0800211 g_gpio_configs.power_gpio.power_good_in.name, rc);
Yi Li0475f652016-10-25 13:19:59 +0800212 return;
213 }
Lei YU75a18a22016-11-22 01:47:47 +0800214 rc = gpio_read(&g_gpio_configs.power_gpio.power_good_in, &pgood_state);
215 gpio_close(&g_gpio_configs.power_gpio.power_good_in);
Yi Li0475f652016-10-25 13:19:59 +0800216 if(rc != GPIO_OK || pgood_state != 1)
217 return;
218
Lei YU75a18a22016-11-22 01:47:47 +0800219 for(i = 0; i < g_gpio_configs.power_gpio.num_pci_reset_outs; i++)
Yi Li0475f652016-10-25 13:19:59 +0800220 {
Lei YU75a18a22016-11-22 01:47:47 +0800221 GPIO *pci_reset_out = &g_gpio_configs.power_gpio.pci_reset_outs[i];
Yi Li0475f652016-10-25 13:19:59 +0800222
Lei YU75a18a22016-11-22 01:47:47 +0800223 if(!g_gpio_configs.power_gpio.pci_reset_holds[i])
Yi Li0475f652016-10-25 13:19:59 +0800224 continue;
225 rc = gpio_open(pci_reset_out);
226 if(rc != GPIO_OK)
227 {
228 g_print("ERROR PowerControl: GPIO open error (gpio=%s,rc=%d)\n",
229 pci_reset_out->name, rc);
230 continue;
231 }
232
Lei YU75a18a22016-11-22 01:47:47 +0800233 reset_state = pgood_state ^ g_gpio_configs.power_gpio.pci_reset_pols[i];
Yi Li39df4032016-12-16 16:06:50 +0800234 g_print("PowerControl: pgood: %d, setting pci reset %s to %d\n",
Lei YU75a18a22016-11-22 01:47:47 +0800235 (int)pgood_state, pci_reset_out->name, (int)reset_state);
Yi Li0475f652016-10-25 13:19:59 +0800236 gpio_write(pci_reset_out, reset_state);
237 gpio_close(pci_reset_out);
Lei YU93b84e42017-10-11 15:06:20 +0800238 g_print("Released pci reset: %s\n", pci_reset_out->name);
Yi Li0475f652016-10-25 13:19:59 +0800239 }
240 g_pci_reset_held = 0;
241}
242
Brad Bishop77390492016-04-13 10:47:19 -0400243static gboolean
244on_set_power_state(ControlPower *pwr,
245 GDBusMethodInvocation *invocation,
246 guint state,
247 gpointer user_data)
248{
249 Control* control = object_get_control((Object*)user_data);
Xo Wangaa6c76f2017-03-03 14:25:01 -0800250 PowerGpio *power_gpio = &g_gpio_configs.power_gpio;
Brad Bishop77390492016-04-13 10:47:19 -0400251 if(state > 1)
252 {
253 g_dbus_method_invocation_return_dbus_error(invocation,
254 "org.openbmc.ControlPower.Error.Failed",
255 "Invalid power state");
256 return TRUE;
257 }
258 // return from method call
259 control_power_complete_set_power_state(pwr,invocation);
260 if(state == control_power_get_state(pwr))
261 {
262 g_print("Power already at requested state: %d\n",state);
263 }
264 else
265 {
266 int error = 0;
267 do {
Xo Wang20a19412016-09-22 11:26:14 -0700268 int i;
269 uint8_t power_up_out;
Brad Bishop77390492016-04-13 10:47:19 -0400270 if(state == 1) {
271 control_emit_goto_system_state(control,"HOST_POWERING_ON");
272 } else {
273 control_emit_goto_system_state(control,"HOST_POWERING_OFF");
274 }
Xo Wangaa6c76f2017-03-03 14:25:01 -0800275 for (i = 0; i < power_gpio->num_power_up_outs; i++) {
276 GPIO *power_pin = &power_gpio->power_up_outs[i];
Xo Wang20a19412016-09-22 11:26:14 -0700277 error = gpio_open(power_pin);
278 if(error != GPIO_OK) {
279 g_print("ERROR PowerControl: GPIO open error (gpio=%s,rc=%d)\n",
Xo Wangaa6c76f2017-03-03 14:25:01 -0800280 power_gpio->power_up_outs[i].name, error);
Xo Wang20a19412016-09-22 11:26:14 -0700281 continue;
282 }
Xo Wangaa6c76f2017-03-03 14:25:01 -0800283 power_up_out = state ^ !power_gpio->power_up_pols[i];
Xo Wang20a19412016-09-22 11:26:14 -0700284 g_print("PowerControl: setting power up %s to %d\n",
Xo Wangaa6c76f2017-03-03 14:25:01 -0800285 power_gpio->power_up_outs[i].name, (int)power_up_out);
Xo Wang20a19412016-09-22 11:26:14 -0700286 error = gpio_write(power_pin, power_up_out);
287 if(error != GPIO_OK) {
288 continue;
289 }
290 gpio_close(power_pin);
291 }
Brad Bishop77390492016-04-13 10:47:19 -0400292 if(error != GPIO_OK) { break; }
Brad Bishop77390492016-04-13 10:47:19 -0400293 control_power_set_state(pwr,state);
294 } while(0);
295 if(error != GPIO_OK)
296 {
Xo Wang20a19412016-09-22 11:26:14 -0700297 g_print("ERROR PowerControl: GPIO set power state (rc=%d)\n",error);
Brad Bishop77390492016-04-13 10:47:19 -0400298 }
Xo Wangaa6c76f2017-03-03 14:25:01 -0800299
300 /* If there's a latch, it should be enabled following changes to the
301 * power pins' states. This commits the changes to the latch states. */
302 if (power_gpio->latch_out.name != NULL) {
303 int rc;
304 uint8_t latch_value = 0;
305 rc = gpio_open(&power_gpio->latch_out);
306 if (rc != GPIO_OK) {
307 /* Failures are non-fatal. */
308 g_print("PowerControl ERROR failed to open latch %s rc=%d\n",
309 power_gpio->latch_out.name, rc);
310 return TRUE;
311 }
312 /* Make the latch transparent for as brief of a time as possible. */
313 rc = gpio_write(&power_gpio->latch_out, 1);
314 if (rc != GPIO_OK) {
315 g_print("PowerControl ERROR failed to assert latch %s rc=%d\n",
316 power_gpio->latch_out.name, rc);
317 } else {
318 g_print("PowerControl asserted latch %s\n",
319 power_gpio->latch_out.name);
320 }
321 rc = gpio_write(&power_gpio->latch_out, 0);
322 if (rc != GPIO_OK) {
323 g_print("PowerControl ERROR failed to clear latch %s rc=%d\n",
324 power_gpio->latch_out.name, rc);
325 }
326 gpio_close(&power_gpio->latch_out);
327 }
Brad Bishop77390492016-04-13 10:47:19 -0400328 }
Xo Wangaa6c76f2017-03-03 14:25:01 -0800329
Brad Bishop77390492016-04-13 10:47:19 -0400330 return TRUE;
331}
332
333static gboolean
334on_init(Control *control,
335 GDBusMethodInvocation *invocation,
336 gpointer user_data)
337{
338 pgood_timeout_start = 0;
339 //guint poll_interval = control_get_poll_interval(control);
340 //g_timeout_add(poll_interval, poll_pgood, user_data);
341 control_complete_init(control,invocation);
342 return TRUE;
343}
344
345static gboolean
346on_get_power_state(ControlPower *pwr,
347 GDBusMethodInvocation *invocation,
348 gpointer user_data)
349{
350 guint pgood = control_power_get_pgood(pwr);
351 control_power_complete_get_power_state(pwr,invocation,pgood);
352 return TRUE;
353}
354
Xo Wang20a19412016-09-22 11:26:14 -0700355static int
356set_up_gpio(GDBusConnection *connection,
357 PowerGpio *power_gpio,
358 ControlPower* control_power)
359{
360 int error = GPIO_OK;
361 int rc;
362 int i;
363 uint8_t pgood_state;
364
365 // get gpio device paths
Xo Wangc1ce68b2016-09-22 16:34:37 -0700366 if(power_gpio->latch_out.name != NULL) { /* latch is optional */
367 rc = gpio_init(connection, &power_gpio->latch_out);
368 if(rc != GPIO_OK) {
369 error = rc;
370 }
371 }
Xo Wang20a19412016-09-22 11:26:14 -0700372 rc = gpio_init(connection, &power_gpio->power_good_in);
373 if(rc != GPIO_OK) {
374 error = rc;
375 }
376 for(int i = 0; i < power_gpio->num_power_up_outs; i++) {
377 rc = gpio_init(connection, &power_gpio->power_up_outs[i]);
378 if(rc != GPIO_OK) {
379 error = rc;
380 }
381 }
382 for(int i = 0; i < power_gpio->num_reset_outs; i++) {
383 rc = gpio_init(connection, &power_gpio->reset_outs[i]);
384 if(rc != GPIO_OK) {
385 error = rc;
386 }
387 }
Yi Li0475f652016-10-25 13:19:59 +0800388 for(int i = 0; i < power_gpio->num_pci_reset_outs; i++) {
389 rc = gpio_init(connection, &power_gpio->pci_reset_outs[i]);
390 if(rc != GPIO_OK) {
391 error = rc;
392 }
393 }
Xo Wang20a19412016-09-22 11:26:14 -0700394
395 rc = gpio_open(&power_gpio->power_good_in);
396 if(rc != GPIO_OK) {
397 return rc;
398 }
399 rc = gpio_read(&power_gpio->power_good_in, &pgood_state);
400 if(rc != GPIO_OK) {
401 return rc;
402 }
403 gpio_close(&power_gpio->power_good_in);
404 control_power_set_pgood(control_power, pgood_state);
405 control_power_set_state(control_power, pgood_state);
406 g_print("Pgood state: %d\n", pgood_state);
407
408 return error;
409}
410
Brad Bishop77390492016-04-13 10:47:19 -0400411static void
412on_bus_acquired(GDBusConnection *connection,
413 const gchar *name,
414 gpointer user_data)
415{
416 ObjectSkeleton *object;
417 cmdline *cmd = user_data;
418 if(cmd->argc < 3)
419 {
420 g_print("Usage: power_control.exe [poll interval] [timeout]\n");
421 return;
422 }
423 manager = g_dbus_object_manager_server_new(dbus_object_path);
424 gchar *s;
425 s = g_strdup_printf("%s/%s",dbus_object_path,instance_name);
426 object = object_skeleton_new(s);
427 g_free(s);
428
429 ControlPower* control_power = control_power_skeleton_new();
430 object_skeleton_set_control_power(object, control_power);
431 g_object_unref(control_power);
432
433 Control* control = control_skeleton_new();
434 object_skeleton_set_control(object, control);
435 g_object_unref(control);
436
Brad Bishop77390492016-04-13 10:47:19 -0400437 //define method callbacks here
438 g_signal_connect(control_power,
439 "handle-set-power-state",
440 G_CALLBACK(on_set_power_state),
441 object); /* user_data */
442
443 g_signal_connect(control_power,
444 "handle-get-power-state",
445 G_CALLBACK(on_get_power_state),
446 NULL); /* user_data */
447
448 g_signal_connect(control,
449 "handle-init",
450 G_CALLBACK(on_init),
451 object); /* user_data */
452
Yi Li0475f652016-10-25 13:19:59 +0800453 /* Listen for BootProgress signal from BootProgress sensor */
454 g_dbus_connection_signal_subscribe(connection,
455 NULL, /* service */
Lei YU93b84e42017-10-11 15:06:20 +0800456 "org.freedesktop.DBus.Properties", /* interface_name */
457 "PropertiesChanged", /* member: name of the signal */
458 "/xyz/openbmc_project/state/host0", /* obj path */
Yi Li0475f652016-10-25 13:19:59 +0800459 NULL, /* arg0 */
460 G_DBUS_SIGNAL_FLAGS_NONE,
461 (GDBusSignalCallback) on_boot_progress,
462 object, /* user data */
463 NULL );
Brad Bishop77390492016-04-13 10:47:19 -0400464
465 /* Export the object (@manager takes its own reference to @object) */
Brad Bishop58e694d2016-04-13 16:04:32 -0400466 g_dbus_object_manager_server_set_connection(manager, connection);
Brad Bishop77390492016-04-13 10:47:19 -0400467 g_dbus_object_manager_server_export(manager, G_DBUS_OBJECT_SKELETON(object));
468 g_object_unref(object);
469
Lei YU75a18a22016-11-22 01:47:47 +0800470 if(read_gpios(connection, &g_gpio_configs) != TRUE) {
Xo Wang20a19412016-09-22 11:26:14 -0700471 g_print("ERROR PowerControl: could not read power GPIO configuration\n");
472 }
Brad Bishop77390492016-04-13 10:47:19 -0400473
Lei YU75a18a22016-11-22 01:47:47 +0800474 int rc = set_up_gpio(connection, &g_gpio_configs.power_gpio, control_power);
Xo Wang20a19412016-09-22 11:26:14 -0700475 if(rc != GPIO_OK) {
476 g_print("ERROR PowerControl: GPIO setup (rc=%d)\n",rc);
Brad Bishop77390492016-04-13 10:47:19 -0400477 }
478 //start poll
479 pgood_timeout_start = 0;
480 int poll_interval = atoi(cmd->argv[1]);
481 int pgood_timeout = atoi(cmd->argv[2]);
482 if(poll_interval < 1000 || pgood_timeout <5) {
Xo Wang20a19412016-09-22 11:26:14 -0700483 g_print("ERROR PowerControl: poll_interval < 1000 or pgood_timeout < 5\n");
Brad Bishop77390492016-04-13 10:47:19 -0400484 } else {
485 control_set_poll_interval(control,poll_interval);
486 control_power_set_pgood_timeout(control_power,pgood_timeout);
487 g_timeout_add(poll_interval, poll_pgood, object);
488 }
Brad Bishop77390492016-04-13 10:47:19 -0400489}
490
491static void
492on_name_acquired(GDBusConnection *connection,
493 const gchar *name,
494 gpointer user_data)
495{
496}
497
498static void
499on_name_lost(GDBusConnection *connection,
500 const gchar *name,
501 gpointer user_data)
502{
Lei YU75a18a22016-11-22 01:47:47 +0800503 free_gpios(&g_gpio_configs);
Brad Bishop77390492016-04-13 10:47:19 -0400504}
505
506/*----------------------------------------------------------------*/
507/* Main Event Loop */
508
509gint
510main(gint argc, gchar *argv[])
511{
512 GMainLoop *loop;
513 cmdline cmd;
514 cmd.argc = argc;
515 cmd.argv = argv;
516
517 guint id;
518 loop = g_main_loop_new(NULL, FALSE);
519
520 id = g_bus_own_name(DBUS_TYPE,
521 dbus_name,
522 G_BUS_NAME_OWNER_FLAGS_ALLOW_REPLACEMENT |
523 G_BUS_NAME_OWNER_FLAGS_REPLACE,
524 on_bus_acquired,
525 on_name_acquired,
526 on_name_lost,
527 &cmd,
528 NULL);
529
530 g_main_loop_run(loop);
531
532 g_bus_unown_name(id);
533 g_main_loop_unref(loop);
534 return 0;
535}