blob: bd0287ae49585569167c8cb24378e2e3f150f449 [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;
51 return TRUE;
52 }
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{
162 gchar *boot_progress;
163 uint8_t pgood_state;
164 uint8_t reset_state;
165 int rc;
166 int i;
167
168 if(!parameters)
169 return;
170
171 /* prevent release again */
172 if(!g_pci_reset_held)
173 return;
174
175 g_variant_get(parameters, "(s)", &boot_progress);
176 /* Release PCI reset when FW boot progress goes beyond 'Baseboard Init' */
177 if(strcmp(boot_progress, "FW Progress, Baseboard Init") == 0)
178 return;
179
Lei YU75a18a22016-11-22 01:47:47 +0800180 rc = gpio_open(&g_gpio_configs.power_gpio.power_good_in);
Yi Li0475f652016-10-25 13:19:59 +0800181 if(rc != GPIO_OK)
182 {
183 g_print("ERROR PowerControl: on_boot_progress(): GPIO open error (gpio=%s,rc=%d)\n",
Lei YU75a18a22016-11-22 01:47:47 +0800184 g_gpio_configs.power_gpio.power_good_in.name, rc);
Yi Li0475f652016-10-25 13:19:59 +0800185 return;
186 }
Lei YU75a18a22016-11-22 01:47:47 +0800187 rc = gpio_read(&g_gpio_configs.power_gpio.power_good_in, &pgood_state);
188 gpio_close(&g_gpio_configs.power_gpio.power_good_in);
Yi Li0475f652016-10-25 13:19:59 +0800189 if(rc != GPIO_OK || pgood_state != 1)
190 return;
191
Lei YU75a18a22016-11-22 01:47:47 +0800192 for(i = 0; i < g_gpio_configs.power_gpio.num_pci_reset_outs; i++)
Yi Li0475f652016-10-25 13:19:59 +0800193 {
Lei YU75a18a22016-11-22 01:47:47 +0800194 GPIO *pci_reset_out = &g_gpio_configs.power_gpio.pci_reset_outs[i];
Yi Li0475f652016-10-25 13:19:59 +0800195
Lei YU75a18a22016-11-22 01:47:47 +0800196 if(!g_gpio_configs.power_gpio.pci_reset_holds[i])
Yi Li0475f652016-10-25 13:19:59 +0800197 continue;
198 rc = gpio_open(pci_reset_out);
199 if(rc != GPIO_OK)
200 {
201 g_print("ERROR PowerControl: GPIO open error (gpio=%s,rc=%d)\n",
202 pci_reset_out->name, rc);
203 continue;
204 }
205
Lei YU75a18a22016-11-22 01:47:47 +0800206 reset_state = pgood_state ^ g_gpio_configs.power_gpio.pci_reset_pols[i];
Yi Li39df4032016-12-16 16:06:50 +0800207 g_print("PowerControl: pgood: %d, setting pci reset %s to %d\n",
Lei YU75a18a22016-11-22 01:47:47 +0800208 (int)pgood_state, pci_reset_out->name, (int)reset_state);
Yi Li0475f652016-10-25 13:19:59 +0800209 gpio_write(pci_reset_out, reset_state);
210 gpio_close(pci_reset_out);
211 g_print("Released pci reset: %s - %s\n", pci_reset_out->name, boot_progress);
212 }
213 g_pci_reset_held = 0;
214}
215
Brad Bishop77390492016-04-13 10:47:19 -0400216static gboolean
217on_set_power_state(ControlPower *pwr,
218 GDBusMethodInvocation *invocation,
219 guint state,
220 gpointer user_data)
221{
222 Control* control = object_get_control((Object*)user_data);
Brad Bishop77390492016-04-13 10:47:19 -0400223 if(state > 1)
224 {
225 g_dbus_method_invocation_return_dbus_error(invocation,
226 "org.openbmc.ControlPower.Error.Failed",
227 "Invalid power state");
228 return TRUE;
229 }
230 // return from method call
231 control_power_complete_set_power_state(pwr,invocation);
232 if(state == control_power_get_state(pwr))
233 {
234 g_print("Power already at requested state: %d\n",state);
235 }
236 else
237 {
238 int error = 0;
239 do {
Xo Wang20a19412016-09-22 11:26:14 -0700240 int i;
241 uint8_t power_up_out;
Brad Bishop77390492016-04-13 10:47:19 -0400242 if(state == 1) {
243 control_emit_goto_system_state(control,"HOST_POWERING_ON");
244 } else {
245 control_emit_goto_system_state(control,"HOST_POWERING_OFF");
246 }
Lei YU75a18a22016-11-22 01:47:47 +0800247 for (i = 0; i < g_gpio_configs.power_gpio.num_power_up_outs; i++) {
248 GPIO *power_pin = &g_gpio_configs.power_gpio.power_up_outs[i];
Xo Wang20a19412016-09-22 11:26:14 -0700249 error = gpio_open(power_pin);
250 if(error != GPIO_OK) {
251 g_print("ERROR PowerControl: GPIO open error (gpio=%s,rc=%d)\n",
Lei YU75a18a22016-11-22 01:47:47 +0800252 g_gpio_configs.power_gpio.power_up_outs[i].name, error);
Xo Wang20a19412016-09-22 11:26:14 -0700253 continue;
254 }
Lei YU75a18a22016-11-22 01:47:47 +0800255 power_up_out = state ^ !g_gpio_configs.power_gpio.power_up_pols[i];
Xo Wang20a19412016-09-22 11:26:14 -0700256 g_print("PowerControl: setting power up %s to %d\n",
Lei YU75a18a22016-11-22 01:47:47 +0800257 g_gpio_configs.power_gpio.power_up_outs[i].name, (int)power_up_out);
Xo Wang20a19412016-09-22 11:26:14 -0700258 error = gpio_write(power_pin, power_up_out);
259 if(error != GPIO_OK) {
260 continue;
261 }
262 gpio_close(power_pin);
263 }
Brad Bishop77390492016-04-13 10:47:19 -0400264 if(error != GPIO_OK) { break; }
Brad Bishop77390492016-04-13 10:47:19 -0400265 control_power_set_state(pwr,state);
266 } while(0);
267 if(error != GPIO_OK)
268 {
Xo Wang20a19412016-09-22 11:26:14 -0700269 g_print("ERROR PowerControl: GPIO set power state (rc=%d)\n",error);
Brad Bishop77390492016-04-13 10:47:19 -0400270 }
271 }
272 return TRUE;
273}
274
275static gboolean
276on_init(Control *control,
277 GDBusMethodInvocation *invocation,
278 gpointer user_data)
279{
280 pgood_timeout_start = 0;
281 //guint poll_interval = control_get_poll_interval(control);
282 //g_timeout_add(poll_interval, poll_pgood, user_data);
283 control_complete_init(control,invocation);
284 return TRUE;
285}
286
287static gboolean
288on_get_power_state(ControlPower *pwr,
289 GDBusMethodInvocation *invocation,
290 gpointer user_data)
291{
292 guint pgood = control_power_get_pgood(pwr);
293 control_power_complete_get_power_state(pwr,invocation,pgood);
294 return TRUE;
295}
296
Xo Wang20a19412016-09-22 11:26:14 -0700297static int
298set_up_gpio(GDBusConnection *connection,
299 PowerGpio *power_gpio,
300 ControlPower* control_power)
301{
302 int error = GPIO_OK;
303 int rc;
304 int i;
305 uint8_t pgood_state;
306
307 // get gpio device paths
Xo Wangc1ce68b2016-09-22 16:34:37 -0700308 if(power_gpio->latch_out.name != NULL) { /* latch is optional */
309 rc = gpio_init(connection, &power_gpio->latch_out);
310 if(rc != GPIO_OK) {
311 error = rc;
312 }
313 }
Xo Wang20a19412016-09-22 11:26:14 -0700314 rc = gpio_init(connection, &power_gpio->power_good_in);
315 if(rc != GPIO_OK) {
316 error = rc;
317 }
318 for(int i = 0; i < power_gpio->num_power_up_outs; i++) {
319 rc = gpio_init(connection, &power_gpio->power_up_outs[i]);
320 if(rc != GPIO_OK) {
321 error = rc;
322 }
323 }
324 for(int i = 0; i < power_gpio->num_reset_outs; i++) {
325 rc = gpio_init(connection, &power_gpio->reset_outs[i]);
326 if(rc != GPIO_OK) {
327 error = rc;
328 }
329 }
Yi Li0475f652016-10-25 13:19:59 +0800330 for(int i = 0; i < power_gpio->num_pci_reset_outs; i++) {
331 rc = gpio_init(connection, &power_gpio->pci_reset_outs[i]);
332 if(rc != GPIO_OK) {
333 error = rc;
334 }
335 }
Xo Wang20a19412016-09-22 11:26:14 -0700336
Xo Wangc1ce68b2016-09-22 16:34:37 -0700337 /* If there's a latch, it only needs to be set once. */
338 if(power_gpio->latch_out.name != NULL) {
339 do {
340 rc = gpio_open(&power_gpio->latch_out);
341 if(rc != GPIO_OK) {
342 /* Failures are non-fatal. */
343 break;
344 }
345 rc = gpio_write(&power_gpio->latch_out, 1);
346 gpio_close(&power_gpio->latch_out);
347 } while(0);
348 if (rc != GPIO_OK) {
349 error = rc;
350 g_print("PowerControl ERROR failed to assert latch %s rc=%d\n",
351 power_gpio->latch_out.name, rc);
352 } else {
353 g_print("PowerControl asserted latch %s\n", power_gpio->latch_out.name);
354 }
355 }
356
Xo Wang20a19412016-09-22 11:26:14 -0700357 rc = gpio_open(&power_gpio->power_good_in);
358 if(rc != GPIO_OK) {
359 return rc;
360 }
361 rc = gpio_read(&power_gpio->power_good_in, &pgood_state);
362 if(rc != GPIO_OK) {
363 return rc;
364 }
365 gpio_close(&power_gpio->power_good_in);
366 control_power_set_pgood(control_power, pgood_state);
367 control_power_set_state(control_power, pgood_state);
368 g_print("Pgood state: %d\n", pgood_state);
369
370 return error;
371}
372
Brad Bishop77390492016-04-13 10:47:19 -0400373static void
374on_bus_acquired(GDBusConnection *connection,
375 const gchar *name,
376 gpointer user_data)
377{
378 ObjectSkeleton *object;
379 cmdline *cmd = user_data;
380 if(cmd->argc < 3)
381 {
382 g_print("Usage: power_control.exe [poll interval] [timeout]\n");
383 return;
384 }
385 manager = g_dbus_object_manager_server_new(dbus_object_path);
386 gchar *s;
387 s = g_strdup_printf("%s/%s",dbus_object_path,instance_name);
388 object = object_skeleton_new(s);
389 g_free(s);
390
391 ControlPower* control_power = control_power_skeleton_new();
392 object_skeleton_set_control_power(object, control_power);
393 g_object_unref(control_power);
394
395 Control* control = control_skeleton_new();
396 object_skeleton_set_control(object, control);
397 g_object_unref(control);
398
Brad Bishop77390492016-04-13 10:47:19 -0400399 //define method callbacks here
400 g_signal_connect(control_power,
401 "handle-set-power-state",
402 G_CALLBACK(on_set_power_state),
403 object); /* user_data */
404
405 g_signal_connect(control_power,
406 "handle-get-power-state",
407 G_CALLBACK(on_get_power_state),
408 NULL); /* user_data */
409
410 g_signal_connect(control,
411 "handle-init",
412 G_CALLBACK(on_init),
413 object); /* user_data */
414
Yi Li0475f652016-10-25 13:19:59 +0800415 /* Listen for BootProgress signal from BootProgress sensor */
416 g_dbus_connection_signal_subscribe(connection,
417 NULL, /* service */
418 NULL, /* interface_name */
419 "BootProgress", /* member: name of the signal */
420 "/org/openbmc/sensors/host/BootProgress", /* obj path */
421 NULL, /* arg0 */
422 G_DBUS_SIGNAL_FLAGS_NONE,
423 (GDBusSignalCallback) on_boot_progress,
424 object, /* user data */
425 NULL );
Brad Bishop77390492016-04-13 10:47:19 -0400426
427 /* Export the object (@manager takes its own reference to @object) */
Brad Bishop58e694d2016-04-13 16:04:32 -0400428 g_dbus_object_manager_server_set_connection(manager, connection);
Brad Bishop77390492016-04-13 10:47:19 -0400429 g_dbus_object_manager_server_export(manager, G_DBUS_OBJECT_SKELETON(object));
430 g_object_unref(object);
431
Lei YU75a18a22016-11-22 01:47:47 +0800432 if(read_gpios(connection, &g_gpio_configs) != TRUE) {
Xo Wang20a19412016-09-22 11:26:14 -0700433 g_print("ERROR PowerControl: could not read power GPIO configuration\n");
434 }
Brad Bishop77390492016-04-13 10:47:19 -0400435
Lei YU75a18a22016-11-22 01:47:47 +0800436 int rc = set_up_gpio(connection, &g_gpio_configs.power_gpio, control_power);
Xo Wang20a19412016-09-22 11:26:14 -0700437 if(rc != GPIO_OK) {
438 g_print("ERROR PowerControl: GPIO setup (rc=%d)\n",rc);
Brad Bishop77390492016-04-13 10:47:19 -0400439 }
440 //start poll
441 pgood_timeout_start = 0;
442 int poll_interval = atoi(cmd->argv[1]);
443 int pgood_timeout = atoi(cmd->argv[2]);
444 if(poll_interval < 1000 || pgood_timeout <5) {
Xo Wang20a19412016-09-22 11:26:14 -0700445 g_print("ERROR PowerControl: poll_interval < 1000 or pgood_timeout < 5\n");
Brad Bishop77390492016-04-13 10:47:19 -0400446 } else {
447 control_set_poll_interval(control,poll_interval);
448 control_power_set_pgood_timeout(control_power,pgood_timeout);
449 g_timeout_add(poll_interval, poll_pgood, object);
450 }
Brad Bishop77390492016-04-13 10:47:19 -0400451}
452
453static void
454on_name_acquired(GDBusConnection *connection,
455 const gchar *name,
456 gpointer user_data)
457{
458}
459
460static void
461on_name_lost(GDBusConnection *connection,
462 const gchar *name,
463 gpointer user_data)
464{
Lei YU75a18a22016-11-22 01:47:47 +0800465 free_gpios(&g_gpio_configs);
Brad Bishop77390492016-04-13 10:47:19 -0400466}
467
468/*----------------------------------------------------------------*/
469/* Main Event Loop */
470
471gint
472main(gint argc, gchar *argv[])
473{
474 GMainLoop *loop;
475 cmdline cmd;
476 cmd.argc = argc;
477 cmd.argv = argv;
478
479 guint id;
480 loop = g_main_loop_new(NULL, FALSE);
481
482 id = g_bus_own_name(DBUS_TYPE,
483 dbus_name,
484 G_BUS_NAME_OWNER_FLAGS_ALLOW_REPLACEMENT |
485 G_BUS_NAME_OWNER_FLAGS_REPLACE,
486 on_bus_acquired,
487 on_name_acquired,
488 on_name_lost,
489 &cmd,
490 NULL);
491
492 g_main_loop_run(loop);
493
494 g_bus_unown_name(id);
495 g_main_loop_unref(loop);
496 return 0;
497}