Ken | c95eccd | 2015-12-19 07:02:34 +0800 | [diff] [blame] | 1 | #include <stdio.h> |
Yong Li | 1acfd75 | 2018-04-04 13:01:23 +0800 | [diff] [blame] | 2 | #include <stdlib.h> |
Brad Bishop | f6c8568 | 2016-06-27 11:56:39 -0400 | [diff] [blame] | 3 | #include <openbmc_intf.h> |
| 4 | #include <gpio.h> |
| 5 | #include <openbmc.h> |
Ken | c95eccd | 2015-12-19 07:02:34 +0800 | [diff] [blame] | 6 | |
Brad Bishop | 7739049 | 2016-04-13 10:47:19 -0400 | [diff] [blame] | 7 | /* ------------------------------------------------------------------------- */ |
Ken | c95eccd | 2015-12-19 07:02:34 +0800 | [diff] [blame] | 8 | static const gchar* dbus_object_path = "/org/openbmc/buttons"; |
| 9 | static const gchar* instance_name = "reset0"; |
Brad Bishop | 7739049 | 2016-04-13 10:47:19 -0400 | [diff] [blame] | 10 | static const gchar* dbus_name = "org.openbmc.buttons.reset"; |
Ken | c95eccd | 2015-12-19 07:02:34 +0800 | [diff] [blame] | 11 | static const int LONG_PRESS_SECONDS = 3; |
| 12 | static GDBusObjectManagerServer *manager = NULL; |
| 13 | |
| 14 | //This object will use these GPIOs |
Brad Bishop | 7739049 | 2016-04-13 10:47:19 -0400 | [diff] [blame] | 15 | GPIO gpio_button = (GPIO){ "RESET_BUTTON" }; |
Ken | c95eccd | 2015-12-19 07:02:34 +0800 | [diff] [blame] | 16 | |
| 17 | static gboolean |
Brad Bishop | 7739049 | 2016-04-13 10:47:19 -0400 | [diff] [blame] | 18 | on_is_on(Button *btn, |
| 19 | GDBusMethodInvocation *invocation, |
| 20 | gpointer user_data) |
Ken | c95eccd | 2015-12-19 07:02:34 +0800 | [diff] [blame] | 21 | { |
Brad Bishop | 7739049 | 2016-04-13 10:47:19 -0400 | [diff] [blame] | 22 | gboolean btn_state=button_get_state(btn); |
| 23 | button_complete_is_on(btn,invocation,btn_state); |
| 24 | return TRUE; |
Ken | c95eccd | 2015-12-19 07:02:34 +0800 | [diff] [blame] | 25 | } |
| 26 | |
| 27 | static gboolean |
Brad Bishop | 7739049 | 2016-04-13 10:47:19 -0400 | [diff] [blame] | 28 | on_button_press(Button *btn, |
| 29 | GDBusMethodInvocation *invocation, |
| 30 | gpointer user_data) |
Ken | c95eccd | 2015-12-19 07:02:34 +0800 | [diff] [blame] | 31 | { |
| 32 | button_emit_pressed(btn); |
| 33 | button_complete_sim_press(btn,invocation); |
| 34 | return TRUE; |
| 35 | } |
Brad Bishop | 7739049 | 2016-04-13 10:47:19 -0400 | [diff] [blame] | 36 | |
Ken | c95eccd | 2015-12-19 07:02:34 +0800 | [diff] [blame] | 37 | static gboolean |
| 38 | on_button_interrupt( GIOChannel *channel, |
Brad Bishop | 7739049 | 2016-04-13 10:47:19 -0400 | [diff] [blame] | 39 | GIOCondition condition, |
| 40 | gpointer user_data ) |
Ken | c95eccd | 2015-12-19 07:02:34 +0800 | [diff] [blame] | 41 | { |
Ken | c95eccd | 2015-12-19 07:02:34 +0800 | [diff] [blame] | 42 | GError *error = 0; |
| 43 | gsize bytes_read = 0; |
Brad Bishop | 7739049 | 2016-04-13 10:47:19 -0400 | [diff] [blame] | 44 | gchar buf[2]; |
Ken | c95eccd | 2015-12-19 07:02:34 +0800 | [diff] [blame] | 45 | buf[1] = '\0'; |
| 46 | g_io_channel_seek_position( channel, 0, G_SEEK_SET, 0 ); |
Brad Bishop | 0c82c60 | 2016-04-13 13:36:49 -0400 | [diff] [blame] | 47 | g_io_channel_read_chars( channel, |
Brad Bishop | 7739049 | 2016-04-13 10:47:19 -0400 | [diff] [blame] | 48 | buf, 1, |
| 49 | &bytes_read, |
| 50 | &error ); |
Ken | c95eccd | 2015-12-19 07:02:34 +0800 | [diff] [blame] | 51 | printf("%s\n",buf); |
Brad Bishop | 7739049 | 2016-04-13 10:47:19 -0400 | [diff] [blame] | 52 | |
Ken | c95eccd | 2015-12-19 07:02:34 +0800 | [diff] [blame] | 53 | time_t current_time = time(NULL); |
Brad Bishop | 7739049 | 2016-04-13 10:47:19 -0400 | [diff] [blame] | 54 | if(gpio_button.irq_inited) |
Ken | c95eccd | 2015-12-19 07:02:34 +0800 | [diff] [blame] | 55 | { |
| 56 | Button* button = object_get_button((Object*)user_data); |
Brad Bishop | 7739049 | 2016-04-13 10:47:19 -0400 | [diff] [blame] | 57 | if(buf[0] == '0') |
Ken | c95eccd | 2015-12-19 07:02:34 +0800 | [diff] [blame] | 58 | { |
| 59 | printf("reset Button pressed\n"); |
| 60 | button_emit_pressed(button); |
| 61 | button_set_timer(button,(long)current_time); |
| 62 | } |
| 63 | else |
| 64 | { |
| 65 | long press_time = current_time-button_get_timer(button); |
| 66 | printf("reset Button released, held for %ld seconds\n",press_time); |
Brad Bishop | 7739049 | 2016-04-13 10:47:19 -0400 | [diff] [blame] | 67 | if(press_time > LONG_PRESS_SECONDS) |
Ken | c95eccd | 2015-12-19 07:02:34 +0800 | [diff] [blame] | 68 | { |
| 69 | button_emit_pressed_long(button); |
| 70 | } else { |
| 71 | button_emit_released(button); |
| 72 | } |
| 73 | } |
Brad Bishop | 7739049 | 2016-04-13 10:47:19 -0400 | [diff] [blame] | 74 | } |
Ken | c95eccd | 2015-12-19 07:02:34 +0800 | [diff] [blame] | 75 | else { gpio_button.irq_inited = true; } |
| 76 | |
| 77 | return TRUE; |
| 78 | } |
Brad Bishop | 7739049 | 2016-04-13 10:47:19 -0400 | [diff] [blame] | 79 | |
| 80 | static void |
| 81 | on_bus_acquired(GDBusConnection *connection, |
| 82 | const gchar *name, |
| 83 | gpointer user_data) |
Ken | c95eccd | 2015-12-19 07:02:34 +0800 | [diff] [blame] | 84 | { |
| 85 | ObjectSkeleton *object; |
| 86 | //g_print ("Acquired a message bus connection: %s\n",name); |
Brad Bishop | 7739049 | 2016-04-13 10:47:19 -0400 | [diff] [blame] | 87 | manager = g_dbus_object_manager_server_new(dbus_object_path); |
Ken | c95eccd | 2015-12-19 07:02:34 +0800 | [diff] [blame] | 88 | gchar *s; |
Brad Bishop | 7739049 | 2016-04-13 10:47:19 -0400 | [diff] [blame] | 89 | s = g_strdup_printf("%s/%s",dbus_object_path,instance_name); |
| 90 | object = object_skeleton_new(s); |
| 91 | g_free(s); |
Ken | c95eccd | 2015-12-19 07:02:34 +0800 | [diff] [blame] | 92 | |
Brad Bishop | 7739049 | 2016-04-13 10:47:19 -0400 | [diff] [blame] | 93 | Button* button = button_skeleton_new(); |
| 94 | object_skeleton_set_button(object, button); |
| 95 | g_object_unref(button); |
Ken | c95eccd | 2015-12-19 07:02:34 +0800 | [diff] [blame] | 96 | |
Ken | c95eccd | 2015-12-19 07:02:34 +0800 | [diff] [blame] | 97 | //define method callbacks |
Brad Bishop | 7739049 | 2016-04-13 10:47:19 -0400 | [diff] [blame] | 98 | g_signal_connect(button, |
| 99 | "handle-is-on", |
| 100 | G_CALLBACK(on_is_on), |
| 101 | NULL); /* user_data */ |
| 102 | g_signal_connect(button, |
| 103 | "handle-sim-press", |
| 104 | G_CALLBACK(on_button_press), |
| 105 | NULL); /* user_data */ |
Ken | c95eccd | 2015-12-19 07:02:34 +0800 | [diff] [blame] | 106 | |
Brad Bishop | 7739049 | 2016-04-13 10:47:19 -0400 | [diff] [blame] | 107 | |
Ken | c95eccd | 2015-12-19 07:02:34 +0800 | [diff] [blame] | 108 | /* Export the object (@manager takes its own reference to @object) */ |
Brad Bishop | 58e694d | 2016-04-13 16:04:32 -0400 | [diff] [blame] | 109 | g_dbus_object_manager_server_set_connection(manager, connection); |
Brad Bishop | 7739049 | 2016-04-13 10:47:19 -0400 | [diff] [blame] | 110 | g_dbus_object_manager_server_export(manager, G_DBUS_OBJECT_SKELETON(object)); |
| 111 | g_object_unref(object); |
Ken | c95eccd | 2015-12-19 07:02:34 +0800 | [diff] [blame] | 112 | |
Ken | c95eccd | 2015-12-19 07:02:34 +0800 | [diff] [blame] | 113 | // get gpio device paths |
| 114 | int rc = GPIO_OK; |
| 115 | do { |
| 116 | rc = gpio_init(connection,&gpio_button); |
Brad Bishop | 7739049 | 2016-04-13 10:47:19 -0400 | [diff] [blame] | 117 | if(rc != GPIO_OK) { break; } |
Ken | c95eccd | 2015-12-19 07:02:34 +0800 | [diff] [blame] | 118 | rc = gpio_open_interrupt(&gpio_button,on_button_interrupt,object); |
Brad Bishop | 7739049 | 2016-04-13 10:47:19 -0400 | [diff] [blame] | 119 | if(rc != GPIO_OK) { break; } |
Ken | c95eccd | 2015-12-19 07:02:34 +0800 | [diff] [blame] | 120 | } while(0); |
Brad Bishop | 7739049 | 2016-04-13 10:47:19 -0400 | [diff] [blame] | 121 | if(rc != GPIO_OK) |
Ken | c95eccd | 2015-12-19 07:02:34 +0800 | [diff] [blame] | 122 | { |
| 123 | printf("ERROR PowerButton: GPIO setup (rc=%d)\n",rc); |
Yong Li | 1acfd75 | 2018-04-04 13:01:23 +0800 | [diff] [blame] | 124 | exit(-1); |
Ken | c95eccd | 2015-12-19 07:02:34 +0800 | [diff] [blame] | 125 | } |
Ken | c95eccd | 2015-12-19 07:02:34 +0800 | [diff] [blame] | 126 | } |
| 127 | |
| 128 | static void |
Brad Bishop | 7739049 | 2016-04-13 10:47:19 -0400 | [diff] [blame] | 129 | on_name_acquired(GDBusConnection *connection, |
| 130 | const gchar *name, |
| 131 | gpointer user_data) |
Ken | c95eccd | 2015-12-19 07:02:34 +0800 | [diff] [blame] | 132 | { |
| 133 | } |
| 134 | |
| 135 | static void |
Brad Bishop | 7739049 | 2016-04-13 10:47:19 -0400 | [diff] [blame] | 136 | on_name_lost(GDBusConnection *connection, |
| 137 | const gchar *name, |
| 138 | gpointer user_data) |
Ken | c95eccd | 2015-12-19 07:02:34 +0800 | [diff] [blame] | 139 | { |
| 140 | } |
| 141 | |
Ken | c95eccd | 2015-12-19 07:02:34 +0800 | [diff] [blame] | 142 | gint |
Brad Bishop | 7739049 | 2016-04-13 10:47:19 -0400 | [diff] [blame] | 143 | main(gint argc, gchar *argv[]) |
Ken | c95eccd | 2015-12-19 07:02:34 +0800 | [diff] [blame] | 144 | { |
Brad Bishop | 7739049 | 2016-04-13 10:47:19 -0400 | [diff] [blame] | 145 | GMainLoop *loop; |
Ken | c95eccd | 2015-12-19 07:02:34 +0800 | [diff] [blame] | 146 | |
Brad Bishop | 7739049 | 2016-04-13 10:47:19 -0400 | [diff] [blame] | 147 | cmdline cmd; |
| 148 | cmd.argc = argc; |
| 149 | cmd.argv = argv; |
Ken | c95eccd | 2015-12-19 07:02:34 +0800 | [diff] [blame] | 150 | |
Brad Bishop | 7739049 | 2016-04-13 10:47:19 -0400 | [diff] [blame] | 151 | guint id; |
| 152 | loop = g_main_loop_new(NULL, FALSE); |
Ken | c95eccd | 2015-12-19 07:02:34 +0800 | [diff] [blame] | 153 | |
Brad Bishop | 7739049 | 2016-04-13 10:47:19 -0400 | [diff] [blame] | 154 | id = g_bus_own_name(DBUS_TYPE, |
| 155 | dbus_name, |
| 156 | G_BUS_NAME_OWNER_FLAGS_ALLOW_REPLACEMENT | |
| 157 | G_BUS_NAME_OWNER_FLAGS_REPLACE, |
| 158 | on_bus_acquired, |
| 159 | on_name_acquired, |
| 160 | on_name_lost, |
| 161 | &cmd, |
| 162 | NULL); |
Ken | c95eccd | 2015-12-19 07:02:34 +0800 | [diff] [blame] | 163 | |
Brad Bishop | 7739049 | 2016-04-13 10:47:19 -0400 | [diff] [blame] | 164 | g_main_loop_run(loop); |
| 165 | |
| 166 | g_bus_unown_name(id); |
| 167 | g_main_loop_unref(loop); |
| 168 | return 0; |
Ken | c95eccd | 2015-12-19 07:02:34 +0800 | [diff] [blame] | 169 | } |