GPIOD_API struct gpiod_edge_event *
gpiod_edge_event_buffer_get_event(struct gpiod_edge_event_buffer *buffer,
- unsigned long index)
+ unsigned long index)
{
if (index >= buffer->num_events) {
errno = EINVAL;
event = &buffer->events[i];
event->line_offset = curr->offset;
- event->event_type = curr->id == GPIO_V2_LINE_EVENT_RISING_EDGE
- ? GPIOD_EDGE_EVENT_RISING_EDGE
- : GPIOD_EDGE_EVENT_FALLING_EDGE;
+ event->event_type = curr->id == GPIO_V2_LINE_EVENT_RISING_EDGE ?
+ GPIOD_EDGE_EVENT_RISING_EDGE :
+ GPIOD_EDGE_EVENT_FALLING_EDGE;
event->timestamp = curr->timestamp_ns;
event->global_seqno = curr->seqno;
event->line_seqno = curr->line_seqno;
* Is it a symbolic link? We have to resolve it before checking
* the rest.
*/
- realname = S_ISLNK(statbuf.st_mode) ? realpath(path, NULL)
- : strdup(path);
+ realname = S_ISLNK(statbuf.st_mode) ? realpath(path, NULL) :
+ strdup(path);
if (realname == NULL)
goto out;
struct gpio_v2_line_request *uapi_cfg);
struct gpiod_line_request *
gpiod_line_request_from_uapi(struct gpio_v2_line_request *uapi_req);
-int gpiod_edge_event_buffer_read_fd(int fd, struct gpiod_edge_event_buffer *buffer,
+int gpiod_edge_event_buffer_read_fd(int fd,
+ struct gpiod_edge_event_buffer *buffer,
size_t max_events);
struct gpiod_info_event *
gpiod_info_event_from_uapi(struct gpio_v2_line_info_changed *uapi_evt);
memset(config, 0, sizeof(*config));
}
-static struct per_line_config *
-find_config(struct gpiod_line_config *config, unsigned int offset)
+static struct per_line_config *find_config(struct gpiod_line_config *config,
+ unsigned int offset)
{
struct per_line_config *per_line;
size_t i;
return &config->line_configs[config->num_configs++];
}
-GPIOD_API int
-gpiod_line_config_add_line_settings(struct gpiod_line_config *config,
- const unsigned int *offsets,
- size_t num_offsets,
- struct gpiod_line_settings *settings)
+GPIOD_API int gpiod_line_config_add_line_settings(
+ struct gpiod_line_config *config, const unsigned int *offsets,
+ size_t num_offsets, struct gpiod_line_settings *settings)
{
struct per_line_config *per_line;
struct settings_node *node;
return NULL;
}
-GPIOD_API int
-gpiod_line_config_get_offsets(struct gpiod_line_config *config,
- size_t *num_offsets,
- unsigned int **offsets)
+GPIOD_API int gpiod_line_config_get_offsets(struct gpiod_line_config *config,
+ size_t *num_offsets,
+ unsigned int **offsets)
{
unsigned int *offs;
size_t i;
for (i = 0; i < config->num_configs; i++) {
if (gpiod_line_settings_get_direction(
- config->line_configs[i].node->settings) ==
+ config->line_configs[i].node->settings) ==
GPIOD_LINE_DIRECTION_OUTPUT)
return true;
}
per_line = &config->line_configs[i];
if (gpiod_line_settings_get_direction(
- per_line->node->settings) !=
+ per_line->node->settings) !=
GPIOD_LINE_DIRECTION_OUTPUT)
continue;
gpiod_line_mask_set_bit(mask, i);
value = gpiod_line_settings_get_output_value(
- per_line->node->settings);
- gpiod_line_mask_assign_bit(vals, i,
- value == GPIOD_LINE_VALUE_ACTIVE ? 1 : 0);
+ per_line->node->settings);
+ gpiod_line_mask_assign_bit(
+ vals, i, value == GPIOD_LINE_VALUE_ACTIVE ? 1 : 0);
}
}
switch (gpiod_line_settings_get_edge_detection(settings)) {
case GPIOD_LINE_EDGE_FALLING:
flags |= (GPIO_V2_LINE_FLAG_EDGE_FALLING |
- GPIO_V2_LINE_FLAG_INPUT);
+ GPIO_V2_LINE_FLAG_INPUT);
flags &= ~GPIOD_LINE_DIRECTION_OUTPUT;
break;
case GPIOD_LINE_EDGE_RISING:
flags |= (GPIO_V2_LINE_FLAG_EDGE_RISING |
- GPIO_V2_LINE_FLAG_INPUT);
+ GPIO_V2_LINE_FLAG_INPUT);
flags &= ~GPIOD_LINE_DIRECTION_OUTPUT;
break;
case GPIOD_LINE_EDGE_BOTH:
flags |= (GPIO_V2_LINE_FLAG_EDGE_FALLING |
- GPIO_V2_LINE_FLAG_EDGE_RISING |
- GPIO_V2_LINE_FLAG_INPUT);
+ GPIO_V2_LINE_FLAG_EDGE_RISING |
+ GPIO_V2_LINE_FLAG_INPUT);
flags &= ~GPIOD_LINE_DIRECTION_OUTPUT;
break;
default:
}
static bool settings_equal(struct gpiod_line_settings *left,
- struct gpiod_line_settings *right)
+ struct gpiod_line_settings *right)
{
if (gpiod_line_settings_get_direction(left) !=
gpiod_line_settings_get_direction(right))
return settings->edge_detection;
}
-GPIOD_API int
-gpiod_line_settings_set_bias(struct gpiod_line_settings *settings,
- enum gpiod_line_bias bias)
+GPIOD_API int gpiod_line_settings_set_bias(struct gpiod_line_settings *settings,
+ enum gpiod_line_bias bias)
{
switch (bias) {
case GPIOD_LINE_BIAS_AS_IS:
class->dispose = g_gpiosim_chip_dispose;
class->finalize = g_gpiosim_chip_finalize;
- g_object_class_install_property(class, G_GPIOSIM_CHIP_PROP_DEV_PATH,
+ g_object_class_install_property(
+ class, G_GPIOSIM_CHIP_PROP_DEV_PATH,
g_param_spec_string("dev-path", "Device path",
- "Character device filesystem path.", NULL,
- G_PARAM_READABLE));
+ "Character device filesystem path.", NULL,
+ G_PARAM_READABLE));
- g_object_class_install_property(class, G_GPIOSIM_CHIP_PROP_NAME,
- g_param_spec_string("name", "Chip name",
+ g_object_class_install_property(
+ class, G_GPIOSIM_CHIP_PROP_NAME,
+ g_param_spec_string(
+ "name", "Chip name",
"Name of this chip device as set by the kernel.", NULL,
G_PARAM_READABLE));
- g_object_class_install_property(class, G_GPIOSIM_CHIP_PROP_NUM_LINES,
+ g_object_class_install_property(
+ class, G_GPIOSIM_CHIP_PROP_NUM_LINES,
g_param_spec_uint("num-lines", "Number of lines",
- "Number of lines this simulated chip exposes.",
- 1, G_MAXUINT, 1,
- G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY));
+ "Number of lines this simulated chip exposes.",
+ 1, G_MAXUINT, 1,
+ G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY));
- g_object_class_install_property(class, G_GPIOSIM_CHIP_PROP_LABEL,
+ g_object_class_install_property(
+ class, G_GPIOSIM_CHIP_PROP_LABEL,
g_param_spec_string("label", "Chip label",
- "Label of this simulated chip.", NULL,
- G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY));
+ "Label of this simulated chip.", NULL,
+ G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY));
- g_object_class_install_property(class, G_GPIOSIM_CHIP_PROP_LINE_NAMES,
- g_param_spec_variant("line-names", "Line names",
+ g_object_class_install_property(
+ class, G_GPIOSIM_CHIP_PROP_LINE_NAMES,
+ g_param_spec_variant(
+ "line-names", "Line names",
"List of names of the lines exposed by this chip",
(GVariantType *)"a(us)", NULL,
G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY));
- g_object_class_install_property(class, G_GPIOSIM_CHIP_PROP_HOGS,
- g_param_spec_variant("hogs", "Line hogs",
+ g_object_class_install_property(
+ class, G_GPIOSIM_CHIP_PROP_HOGS,
+ g_param_spec_variant(
+ "hogs", "Line hogs",
"List of hogged lines and their directions.",
(GVariantType *)"a(usi)", NULL,
G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY));
((type *)(__mptr - offsetof(type, member))); \
})
-#define list_entry(ptr, type, member) \
- container_of(ptr, type, member)
+#define list_entry(ptr, type, member) container_of(ptr, type, member)
#define list_first_entry(ptr, type, member) \
list_entry((ptr)->next, type, member)
#define list_next_entry(pos, member) \
list_entry((pos)->member.next, typeof(*(pos)), member)
-#define list_entry_is_head(pos, head, member) \
- (&pos->member == (head))
+#define list_entry_is_head(pos, head, member) (&pos->member == (head))
#define list_for_each_entry(pos, head, member) \
for (pos = list_first_entry(head, typeof(*pos), member); \
goto out_unref_module;
}
- ret = kmod_module_probe_insert_module(module,
- KMOD_PROBE_IGNORE_LOADED,
- NULL, NULL, NULL, NULL);
+ ret = kmod_module_probe_insert_module(
+ module, KMOD_PROBE_IGNORE_LOADED, NULL, NULL,
+ NULL, NULL);
if (ret)
goto out_unref_module;
free(dev);
}
-GPIOSIM_API struct gpiosim_dev *
-gpiosim_dev_new(struct gpiosim_ctx *ctx)
+GPIOSIM_API struct gpiosim_dev *gpiosim_dev_new(struct gpiosim_ctx *ctx)
{
int configfs_fd, ret, id;
struct gpiosim_dev *dev;
free(bank);
}
-GPIOSIM_API struct gpiosim_bank*
-gpiosim_bank_new(struct gpiosim_dev *dev)
+GPIOSIM_API struct gpiosim_bank *gpiosim_bank_new(struct gpiosim_dev *dev)
{
struct gpiosim_bank *bank;
int configfs_fd, id;
struct gpiosim_ctx *gpiosim_ctx_ref(struct gpiosim_ctx *ctx);
void gpiosim_ctx_unref(struct gpiosim_ctx *ctx);
-struct gpiosim_dev *
-gpiosim_dev_new(struct gpiosim_ctx *ctx);
+struct gpiosim_dev *gpiosim_dev_new(struct gpiosim_ctx *ctx);
struct gpiosim_dev *gpiosim_dev_ref(struct gpiosim_dev *dev);
void gpiosim_dev_unref(struct gpiosim_dev *dev);
struct gpiosim_ctx *gpiosim_dev_get_ctx(struct gpiosim_dev *dev);
int gpiosim_dev_disable(struct gpiosim_dev *dev);
bool gpiosim_dev_is_live(struct gpiosim_dev *dev);
-struct gpiosim_bank*
-gpiosim_bank_new(struct gpiosim_dev *dev);
+struct gpiosim_bank *gpiosim_bank_new(struct gpiosim_dev *dev);
struct gpiosim_bank *gpiosim_bank_ref(struct gpiosim_bank *bank);
void gpiosim_bank_unref(struct gpiosim_bank *bank);
struct gpiosim_dev *gpiosim_bank_get_dev(struct gpiosim_bank *bank);
g_assert_cmpuint(gpiod_chip_info_get_num_lines(info), ==, 16);
}
-
line_cfg = gpiod_test_create_line_config_or_fail();
buffer = gpiod_test_create_edge_event_buffer_or_fail(64);
- gpiod_line_settings_set_direction(settings,
- GPIOD_LINE_DIRECTION_INPUT);
+ gpiod_line_settings_set_direction(settings, GPIOD_LINE_DIRECTION_INPUT);
gpiod_line_settings_set_edge_detection(settings, GPIOD_LINE_EDGE_BOTH);
gpiod_test_line_config_add_line_settings_or_fail(line_cfg, &offset, 1,
g_assert_nonnull(event);
gpiod_test_join_thread_and_return_if_failed(thread);
- g_assert_cmpint(gpiod_edge_event_get_event_type(event),
- ==, GPIOD_EDGE_EVENT_RISING_EDGE);
+ g_assert_cmpint(gpiod_edge_event_get_event_type(event), ==,
+ GPIOD_EDGE_EVENT_RISING_EDGE);
g_assert_cmpuint(gpiod_edge_event_get_line_offset(event), ==, 2);
ts_rising = gpiod_edge_event_get_timestamp_ns(event);
g_assert_nonnull(event);
gpiod_test_join_thread_and_return_if_failed(thread);
- g_assert_cmpint(gpiod_edge_event_get_event_type(event),
- ==, GPIOD_EDGE_EVENT_FALLING_EDGE);
+ g_assert_cmpint(gpiod_edge_event_get_event_type(event), ==,
+ GPIOD_EDGE_EVENT_FALLING_EDGE);
g_assert_cmpuint(gpiod_edge_event_get_line_offset(event), ==, 2);
ts_falling = gpiod_edge_event_get_timestamp_ns(event);
line_cfg = gpiod_test_create_line_config_or_fail();
buffer = gpiod_test_create_edge_event_buffer_or_fail(64);
- gpiod_line_settings_set_direction(settings,
- GPIOD_LINE_DIRECTION_INPUT);
+ gpiod_line_settings_set_direction(settings, GPIOD_LINE_DIRECTION_INPUT);
gpiod_line_settings_set_edge_detection(settings,
GPIOD_LINE_EDGE_RISING);
g_assert_nonnull(event);
gpiod_test_join_thread_and_return_if_failed(thread);
- g_assert_cmpint(gpiod_edge_event_get_event_type(event),
- ==, GPIOD_EDGE_EVENT_RISING_EDGE);
+ g_assert_cmpint(gpiod_edge_event_get_event_type(event), ==,
+ GPIOD_EDGE_EVENT_RISING_EDGE);
g_assert_cmpuint(gpiod_edge_event_get_line_offset(event), ==, 2);
/* Second event. */
line_cfg = gpiod_test_create_line_config_or_fail();
buffer = gpiod_test_create_edge_event_buffer_or_fail(64);
- gpiod_line_settings_set_direction(settings,
- GPIOD_LINE_DIRECTION_INPUT);
+ gpiod_line_settings_set_direction(settings, GPIOD_LINE_DIRECTION_INPUT);
gpiod_line_settings_set_edge_detection(settings,
GPIOD_LINE_EDGE_FALLING);
g_assert_nonnull(event);
gpiod_test_join_thread_and_return_if_failed(thread);
- g_assert_cmpint(gpiod_edge_event_get_event_type(event),
- ==, GPIOD_EDGE_EVENT_FALLING_EDGE);
+ g_assert_cmpint(gpiod_edge_event_get_event_type(event), ==,
+ GPIOD_EDGE_EVENT_FALLING_EDGE);
g_assert_cmpuint(gpiod_edge_event_get_line_offset(event), ==, 2);
/* No more events. */
line_cfg = gpiod_test_create_line_config_or_fail();
buffer = gpiod_test_create_edge_event_buffer_or_fail(64);
- gpiod_line_settings_set_direction(settings,
- GPIOD_LINE_DIRECTION_INPUT);
+ gpiod_line_settings_set_direction(settings, GPIOD_LINE_DIRECTION_INPUT);
gpiod_line_settings_set_edge_detection(settings,
GPIOD_LINE_EDGE_RISING);
g_assert_nonnull(event);
gpiod_test_join_thread_and_return_if_failed(thread);
- g_assert_cmpint(gpiod_edge_event_get_event_type(event),
- ==, GPIOD_EDGE_EVENT_RISING_EDGE);
+ g_assert_cmpint(gpiod_edge_event_get_event_type(event), ==,
+ GPIOD_EDGE_EVENT_RISING_EDGE);
g_assert_cmpuint(gpiod_edge_event_get_line_offset(event), ==, 2);
/* Second event. */
line_cfg = gpiod_test_create_line_config_or_fail();
buffer = gpiod_test_create_edge_event_buffer_or_fail(64);
- gpiod_line_settings_set_direction(settings,
- GPIOD_LINE_DIRECTION_INPUT);
+ gpiod_line_settings_set_direction(settings, GPIOD_LINE_DIRECTION_INPUT);
gpiod_line_settings_set_edge_detection(settings, GPIOD_LINE_EDGE_BOTH);
gpiod_test_line_config_add_line_settings_or_fail(line_cfg, &offset, 1,
g_assert_nonnull(event);
gpiod_test_join_thread_and_return_if_failed(thread);
- g_assert_cmpint(gpiod_edge_event_get_event_type(event),
- ==, GPIOD_EDGE_EVENT_RISING_EDGE);
+ g_assert_cmpint(gpiod_edge_event_get_event_type(event), ==,
+ GPIOD_EDGE_EVENT_RISING_EDGE);
g_assert_cmpuint(gpiod_edge_event_get_line_offset(event), ==, 2);
/* Second event. */
g_assert_nonnull(event);
gpiod_test_join_thread_and_return_if_failed(thread);
- g_assert_cmpint(gpiod_edge_event_get_event_type(event),
- ==, GPIOD_EDGE_EVENT_FALLING_EDGE);
+ g_assert_cmpint(gpiod_edge_event_get_event_type(event), ==,
+ GPIOD_EDGE_EVENT_FALLING_EDGE);
g_assert_cmpuint(gpiod_edge_event_get_line_offset(event), ==, 2);
g_thread_join(thread);
line_cfg = gpiod_test_create_line_config_or_fail();
buffer = gpiod_test_create_edge_event_buffer_or_fail(64);
- gpiod_line_settings_set_direction(settings,
- GPIOD_LINE_DIRECTION_INPUT);
+ gpiod_line_settings_set_direction(settings, GPIOD_LINE_DIRECTION_INPUT);
gpiod_line_settings_set_edge_detection(settings, GPIOD_LINE_EDGE_BOTH);
gpiod_test_line_config_add_line_settings_or_fail(line_cfg, offsets, 2,
line_cfg = gpiod_test_create_line_config_or_fail();
buffer = gpiod_test_create_edge_event_buffer_or_fail(64);
- gpiod_line_settings_set_direction(settings,
- GPIOD_LINE_DIRECTION_INPUT);
+ gpiod_line_settings_set_direction(settings, GPIOD_LINE_DIRECTION_INPUT);
gpiod_line_settings_set_edge_detection(settings, GPIOD_LINE_EDGE_BOTH);
gpiod_test_line_config_add_line_settings_or_fail(line_cfg, &offset, 1,
line_cfg = gpiod_test_create_line_config_or_fail();
buffer = gpiod_test_create_edge_event_buffer_or_fail(64);
- gpiod_line_settings_set_direction(settings,
- GPIOD_LINE_DIRECTION_INPUT);
+ gpiod_line_settings_set_direction(settings, GPIOD_LINE_DIRECTION_INPUT);
gpiod_line_settings_set_edge_detection(settings, GPIOD_LINE_EDGE_BOTH);
gpiod_test_line_config_add_line_settings_or_fail(line_cfg, &offset, 1,
}
GPIOD_TEST_CASE(chip_fd_can_be_polled)
-{\
+{
g_autoptr(GPIOSimChip) sim = g_gpiosim_chip_new("num-lines", 8, NULL);
g_autoptr(struct_gpiod_chip) chip = NULL;
g_autoptr(struct_gpiod_line_info) info = NULL;
settings);
gpiod_line_settings_set_event_clock(settings,
- GPIOD_LINE_EVENT_CLOCK_REALTIME);
+ GPIOD_LINE_EVENT_CLOCK_REALTIME);
offset = 7;
gpiod_test_line_config_add_line_settings_or_fail(line_cfg, &offset, 1,
settings);
offset = 1;
gpiod_test_line_config_add_line_settings_or_fail(line_cfg, &offset, 1,
settings);
- gpiod_line_settings_set_direction(settings,
- GPIOD_LINE_DIRECTION_AS_IS);
+ gpiod_line_settings_set_direction(settings, GPIOD_LINE_DIRECTION_AS_IS);
offset = 2;
gpiod_test_line_config_add_line_settings_or_fail(line_cfg, &offset, 1,
settings);
offset = 0;
gpiod_test_line_config_add_line_settings_or_fail(line_cfg, &offset, 1,
settings);
- gpiod_line_settings_set_edge_detection(settings, GPIOD_LINE_EDGE_RISING);
+ gpiod_line_settings_set_edge_detection(settings,
+ GPIOD_LINE_EDGE_RISING);
offset = 1;
gpiod_test_line_config_add_line_settings_or_fail(line_cfg, &offset, 1,
settings);
settings = gpiod_test_create_line_settings_or_fail();
line_cfg = gpiod_test_create_line_config_or_fail();
- gpiod_line_settings_set_direction(settings,GPIOD_LINE_DIRECTION_OUTPUT);
+ gpiod_line_settings_set_direction(settings,
+ GPIOD_LINE_DIRECTION_OUTPUT);
offset = 0;
gpiod_test_line_config_add_line_settings_or_fail(line_cfg, &offset, 1,
settings);
request = gpiod_test_request_lines_or_fail(chip, NULL, line_cfg);
info = gpiod_test_get_line_info_or_fail(chip, 5);
- g_assert_cmpuint(gpiod_line_info_get_debounce_period_us(info),
- ==, 1000);
+ g_assert_cmpuint(gpiod_line_info_get_debounce_period_us(info), ==,
+ 1000);
}
GPIOD_TEST_CASE(event_clock)
}
gpiod_test_return_if_failed();
-
+
info0 = gpiod_test_get_line_info_or_fail(chip, 0);
info1 = gpiod_test_get_line_info_or_fail(chip, 1);
info2 = gpiod_test_get_line_info_or_fail(chip, 2);
request = gpiod_test_request_lines_or_fail(chip, NULL, line_cfg);
for (i = 0; i < 4; i++)
- g_assert_cmpint(g_gpiosim_chip_get_value(sim, offsets[i]),
- ==, GPIOD_LINE_VALUE_ACTIVE);
+ g_assert_cmpint(g_gpiosim_chip_get_value(sim, offsets[i]), ==,
+ GPIOD_LINE_VALUE_ACTIVE);
g_assert_cmpint(g_gpiosim_chip_get_value(sim, 2), ==,
GPIOD_LINE_VALUE_INACTIVE);
for (i = 0; i < 5; i++)
g_gpiosim_chip_set_pull(sim, offsets[i],
- pulls[i] ? G_GPIOSIM_PULL_UP : G_GPIOSIM_PULL_DOWN);
+ pulls[i] ? G_GPIOSIM_PULL_UP :
+ G_GPIOSIM_PULL_DOWN);
ret = gpiod_line_request_get_values(request, values);
g_assert_cmpint(ret, ==, 0);
for (i = 0; i < 5; i++)
g_gpiosim_chip_set_pull(sim, offsets[i],
- pulls[i] ? G_GPIOSIM_PULL_UP : G_GPIOSIM_PULL_DOWN);
+ pulls[i] ? G_GPIOSIM_PULL_UP :
+ G_GPIOSIM_PULL_DOWN);
ret = gpiod_line_request_get_value(request, 5);
g_assert_cmpint(ret, ==, 1);
gpiod_test_return_if_failed();
for (i = 0; i < 5; i++)
- g_assert_cmpint(g_gpiosim_chip_get_value(sim, offsets[i]),
- ==, values[i]);
+ g_assert_cmpint(g_gpiosim_chip_get_value(sim, offsets[i]), ==,
+ values[i]);
}
GPIOD_TEST_CASE(set_values_subset_of_lines)
request = gpiod_test_request_lines_or_fail(chip, NULL, line_cfg);
- ret = gpiod_line_request_set_values_subset(request, 3,
- offsets_to_set, values);
+ ret = gpiod_line_request_set_values_subset(request, 3, offsets_to_set,
+ values);
g_assert_cmpint(ret, ==, 0);
gpiod_test_return_if_failed();
- g_assert_cmpint(g_gpiosim_chip_get_value(sim, 0),
- ==, GPIOD_LINE_VALUE_ACTIVE);
- g_assert_cmpint(g_gpiosim_chip_get_value(sim, 1),
- ==, GPIOD_LINE_VALUE_INACTIVE);
- g_assert_cmpint(g_gpiosim_chip_get_value(sim, 3),
- ==, GPIOD_LINE_VALUE_ACTIVE);
+ g_assert_cmpint(g_gpiosim_chip_get_value(sim, 0), ==,
+ GPIOD_LINE_VALUE_ACTIVE);
+ g_assert_cmpint(g_gpiosim_chip_get_value(sim, 1), ==,
+ GPIOD_LINE_VALUE_INACTIVE);
+ g_assert_cmpint(g_gpiosim_chip_get_value(sim, 3), ==,
+ GPIOD_LINE_VALUE_ACTIVE);
}
GPIOD_TEST_CASE(set_line_after_requesting)
gpiod_line_settings_set_direction(settings,
GPIOD_LINE_DIRECTION_OUTPUT);
- gpiod_line_settings_set_output_value(settings,
- GPIOD_LINE_VALUE_ACTIVE);
+ gpiod_line_settings_set_output_value(settings, GPIOD_LINE_VALUE_ACTIVE);
gpiod_test_line_config_add_line_settings_or_fail(line_cfg, &offset, 1,
settings);
GPIOD_LINE_DRIVE_PUSH_PULL);
g_assert_false(gpiod_line_settings_get_active_low(settings));
g_assert_cmpuint(gpiod_line_settings_get_debounce_period_us(settings),
- ==, 0);
+ ==, 0);
g_assert_cmpint(gpiod_line_settings_get_event_clock(settings), ==,
GPIOD_LINE_EVENT_CLOCK_MONOTONIC);
g_assert_cmpint(gpiod_line_settings_get_output_value(settings), ==,
settings = gpiod_test_create_line_settings_or_fail();
- ret = gpiod_line_settings_set_bias(settings,
- GPIOD_LINE_BIAS_DISABLED);
+ ret = gpiod_line_settings_set_bias(settings, GPIOD_LINE_BIAS_DISABLED);
g_assert_cmpint(ret, ==, 0);
g_assert_cmpint(gpiod_line_settings_get_bias(settings), ==,
GPIOD_LINE_BIAS_DISABLED);
- ret = gpiod_line_settings_set_bias(settings,
- GPIOD_LINE_BIAS_AS_IS);
+ ret = gpiod_line_settings_set_bias(settings, GPIOD_LINE_BIAS_AS_IS);
g_assert_cmpint(ret, ==, 0);
g_assert_cmpint(gpiod_line_settings_get_bias(settings), ==,
GPIOD_LINE_BIAS_AS_IS);
- ret = gpiod_line_settings_set_bias(settings,
- GPIOD_LINE_BIAS_PULL_DOWN);
+ ret = gpiod_line_settings_set_bias(settings, GPIOD_LINE_BIAS_PULL_DOWN);
g_assert_cmpint(ret, ==, 0);
g_assert_cmpint(gpiod_line_settings_get_bias(settings), ==,
GPIOD_LINE_BIAS_PULL_DOWN);
- ret = gpiod_line_settings_set_bias(settings,
- GPIOD_LINE_BIAS_PULL_UP);
+ ret = gpiod_line_settings_set_bias(settings, GPIOD_LINE_BIAS_PULL_UP);
g_assert_cmpint(ret, ==, 0);
g_assert_cmpint(gpiod_line_settings_get_bias(settings), ==,
GPIOD_LINE_BIAS_PULL_UP);
GPIOD_LINE_DRIVE_PUSH_PULL);
g_assert_false(gpiod_line_settings_get_active_low(settings));
g_assert_cmpuint(gpiod_line_settings_get_debounce_period_us(settings),
- ==, 0);
+ ==, 0);
g_assert_cmpint(gpiod_line_settings_get_event_clock(settings), ==,
GPIOD_LINE_EVENT_CLOCK_MONOTONIC);
g_assert_cmpint(gpiod_line_settings_get_output_value(settings), ==,
config = gpiod_test_create_request_config_or_fail();
g_assert_null(gpiod_request_config_get_consumer(config));
- g_assert_cmpuint(gpiod_request_config_get_event_buffer_size(config),
- ==, 0);
+ g_assert_cmpuint(gpiod_request_config_get_event_buffer_size(config), ==,
+ 0);
}
GPIOD_TEST_CASE(set_consumer)
config = gpiod_test_create_request_config_or_fail();
gpiod_request_config_set_consumer(config, "foobar");
- g_assert_cmpstr(gpiod_request_config_get_consumer(config),
- ==, "foobar");
+ g_assert_cmpstr(gpiod_request_config_get_consumer(config), ==,
+ "foobar");
}
GPIOD_TEST_CASE(set_event_buffer_size)
config = gpiod_test_create_request_config_or_fail();
gpiod_request_config_set_event_buffer_size(config, 128);
- g_assert_cmpuint(gpiod_request_config_get_event_buffer_size(config),
- ==, 128);
+ g_assert_cmpuint(gpiod_request_config_get_event_buffer_size(config), ==,
+ 128);
}
if (!info)
die_perror("unable to read info for '%s'", path);
- printf("%s [%s] (%zu lines)\n",
- gpiod_chip_info_get_name(info),
+ printf("%s [%s] (%zu lines)\n", gpiod_chip_info_get_name(info),
gpiod_chip_info_get_label(info),
gpiod_chip_info_get_num_lines(info));
* Does not die on non-unique lines.
*/
static bool resolve_line(struct line_resolver *resolver,
- struct gpiod_line_info *info, int chip_num)
+ struct gpiod_line_info *info, int chip_num)
{
struct resolved_line *line;
bool resolved = false;
line = &resolver->lines[i];
/* already resolved by offset? */
- if (line->resolved &&
- (line->offset == offset) &&
+ if (line->resolved && (line->offset == offset) &&
(line->chip_num == chip_num)) {
resolved = true;
}
if ((chip_num == 0) && (cfg->chip_id && !cfg->by_name))
resolve_lines_by_offset(resolver, num_lines);
- for (offset = 0;
- ((offset < num_lines) &&
- !(resolver->num_lines && resolve_done(resolver)));
+ for (offset = 0; ((offset < num_lines) &&
+ !(resolver->num_lines && resolve_done(resolver)));
offset++) {
info = gpiod_chip_get_line_info(chip, offset);
if (!info)
cfg.by_name = true;
num_chips = chip_paths(cfg.chip_id, &paths);
- if (cfg.chip_id && (num_chips == 0))
+ if (cfg.chip_id && (num_chips == 0))
die("cannot find GPIO chip character device '%s'", cfg.chip_id);
resolver = resolver_init(argc, argv, num_chips, cfg.strict,
else
cfg->event_clock = GPIOD_LINE_EVENT_CLOCK_MONOTONIC;
} else if ((cfg->event_clock == GPIOD_LINE_EVENT_CLOCK_REALTIME) &&
- (cfg->timestamp_fmt == 0)) {
+ (cfg->timestamp_fmt == 0)) {
cfg->timestamp_fmt = 1;
}
}
static void event_print_formatted(struct gpiod_edge_event *event,
- struct line_resolver *resolver, int chip_num,
- struct config *cfg)
+ struct line_resolver *resolver, int chip_num,
+ struct config *cfg)
{
const char *lname, *prev, *curr;
unsigned int offset;
gpiod_line_settings_set_active_low(settings, true);
if (cfg.debounce_period_us)
- gpiod_line_settings_set_debounce_period_us(settings,
- cfg.debounce_period_us);
+ gpiod_line_settings_set_debounce_period_us(
+ settings, cfg.debounce_period_us);
gpiod_line_settings_set_event_clock(settings, cfg.event_clock);
gpiod_line_settings_set_edge_detection(settings, cfg.edges);
return EXIT_SUCCESS;
}
-
clock_gettime(CLOCK_REALTIME, &ts);
after = ts.tv_nsec + ((uint64_t)ts.tv_sec) * 1000000000;
- evtime += (after/2 - mono + before/2);
+ evtime += (after / 2 - mono + before / 2);
return evtime;
}
unsigned int offset;
uint64_t evtime;
int evtype;
- char fmt;
+ char fmt;
info = gpiod_info_event_get_line_info(event);
evtime = gpiod_info_event_get_timestamp_ns(event);
}
static void event_print_human_readable(struct gpiod_info_event *event,
- struct line_resolver *resolver, int chip_num,
- struct config *cfg)
+ struct line_resolver *resolver,
+ int chip_num, struct config *cfg)
{
struct gpiod_line_info *info;
unsigned int offset;
for (j = 0; j < resolver->num_lines; j++)
if ((resolver->lines[j].chip_num == i) &&
!gpiod_chip_watch_line_info(
- chip, resolver->lines[j].offset))
+ chip, resolver->lines[j].offset))
die_perror("unable to watch line on chip '%s'",
resolver->chips[i].path);
*value = '\0';
value++;
}
-
}
if (!value) {
* offset and values are scratch pads for working.
*/
static void apply_values(struct gpiod_line_request **requests,
- struct line_resolver *resolver,
- unsigned int *offsets, enum gpiod_line_value *values)
+ struct line_resolver *resolver, unsigned int *offsets,
+ enum gpiod_line_value *values)
{
int i;
* offset and values are scratch pads for working.
*/
static void toggle_sequence(int toggles, unsigned int *toggle_periods,
- struct gpiod_line_request **requests,
- struct line_resolver *resolver,
- unsigned int *offsets, enum gpiod_line_value *values)
+ struct gpiod_line_request **requests,
+ struct line_resolver *resolver,
+ unsigned int *offsets,
+ enum gpiod_line_value *values)
{
int i = 0;
}
}
- return ret;
+ return ret;
}
static void print_interactive_help(void)
id = completion_context->lines[idx].id;
idx++;
- if ((strncmp(id, text, len) == 0) &&
- (!in_line_buffer(id)))
+ if ((strncmp(id, text, len) == 0) && (!in_line_buffer(id)))
return strdup(id);
}
rl_completion_append_character = ' ';
for (cmd_start = 0;
- isspace(rl_line_buffer[cmd_start]) && cmd_start < end;
- cmd_start++)
+ isspace(rl_line_buffer[cmd_start]) && cmd_start < end; cmd_start++)
;
if (cmd_start == start)
matches = rl_completion_matches(text, complete_command);
for (cmd_end = cmd_start + 1;
- !isspace(rl_line_buffer[cmd_end]) && cmd_end < end;
- cmd_end++)
+ !isspace(rl_line_buffer[cmd_end]) && cmd_end < end; cmd_end++)
;
len = cmd_end - cmd_start;
}
if ((len == 3 && strncmp("get ", &rl_line_buffer[cmd_start], 4) == 0) ||
- (len == 6 && strncmp("toggle ", &rl_line_buffer[cmd_start], 7) == 0))
+ (len == 6 &&
+ strncmp("toggle ", &rl_line_buffer[cmd_start], 7) == 0))
matches = rl_completion_matches(text, complete_line_id);
return matches;
#define PROMPT "gpioset> "
static void interact(struct gpiod_line_request **requests,
- struct line_resolver *resolver,
- char **lines, unsigned int *offsets,
- enum gpiod_line_value *values, bool unquoted)
+ struct line_resolver *resolver, char **lines,
+ unsigned int *offsets, enum gpiod_line_value *values,
+ bool unquoted)
{
int num_words, num_lines, max_words, period_us, i;
char *line, **words, *line_buf;
print_all_line_values(resolver, unquoted);
else if (parse_line_ids(num_lines, &words[1], lines) &&
valid_lines(resolver, num_lines, lines))
- print_line_values(resolver, num_lines,
- lines, unquoted);
+ print_line_values(resolver, num_lines, lines,
+ unquoted);
goto cmd_ok;
}
if (strcmp(words[0], "set") == 0) {
}
printf("unknown command: '%s'\n", words[0]);
- printf("Try the 'help' command\n")
- ;
+ printf("Try the 'help' command\n");
cmd_ok:
for (i = 0; isspace(line[i]); i++)
die_perror("unable to allocate the line config structure");
for (i = 0; i < resolver->num_chips; i++) {
- num_lines = get_line_offsets_and_values(resolver, i,
- offsets, values);
+ num_lines = get_line_offsets_and_values(resolver, i, offsets,
+ values);
gpiod_line_config_reset(line_cfg);
for (j = 0; j < num_lines; j++) {
gpiod_line_settings_set_output_value(settings,
values[j]);
- ret = gpiod_line_config_add_line_settings(line_cfg,
- &offsets[j], 1, settings);
+ ret = gpiod_line_config_add_line_settings(
+ line_cfg, &offsets[j], 1, settings);
if (ret)
die_perror("unable to add line settings");
}
return EXIT_SUCCESS;
}
-
tz = "Z";
}
strftime(tbuf, TIME_BUFFER_SIZE, "%FT%T", &t);
- printf("%s.%09"PRIu64"%s", tbuf, evtime % 1000000000, tz);
+ printf("%s.%09" PRIu64 "%s", tbuf, evtime % 1000000000, tz);
} else {
- printf("%"PRIu64".%09"PRIu64,
- evtime / 1000000000, evtime % 1000000000);
+ printf("%" PRIu64 ".%09" PRIu64, evtime / 1000000000,
+ evtime % 1000000000);
}
}
if (asprintf(&path, "/dev/%s", entry->d_name) < 0)
return 0;
- if ((lstat(path, &sb) == 0) &&
- (!S_ISLNK(sb.st_mode)) &&
+ if ((lstat(path, &sb) == 0) && (!S_ISLNK(sb.st_mode)) &&
gpiod_is_gpiochip_device(path))
ret = 1;
}
static bool resolve_line(struct line_resolver *resolver,
- struct gpiod_line_info *info,
- int chip_num)
+ struct gpiod_line_info *info, int chip_num)
{
struct resolved_line *line;
bool resolved = false;
for (i = 0; i < resolver->num_lines; i++) {
line = &resolver->lines[i];
/* already resolved by offset? */
- if (line->resolved &&
- (line->offset == offset) &&
+ if (line->resolved && (line->offset == offset) &&
(line->chip_num == chip_num)) {
line->info = info;
resolver->num_found++;
return used;
}
-
bool resolve_done(struct line_resolver *resolver)
{
return (!resolver->strict &&
}
struct line_resolver *resolve_lines(int num_lines, char **lines,
- const char *chip_id, bool strict, bool by_name)
+ const char *chip_id, bool strict,
+ bool by_name)
{
struct gpiod_chip_info *chip_info;
struct gpiod_line_info *line_info;
by_name = true;
num_chips = chip_paths(chip_id, &paths);
- if (chip_id && (num_chips == 0))
+ if (chip_id && (num_chips == 0))
die("cannot find GPIO chip character device '%s'", chip_id);
resolver = resolver_init(num_lines, lines, num_chips, strict, by_name);
bool valid = true;
int i, j;
- for (i = 0 ; i < resolver->num_lines; i++) {
+ for (i = 0; i < resolver->num_lines; i++) {
line = &resolver->lines[i];
if (line->resolved) {
for (j = 0; j < i; j++) {
free(resolver);
}
-int get_line_offsets_and_values(struct line_resolver *resolver,
- int chip_num, unsigned int *offsets,
+int get_line_offsets_and_values(struct line_resolver *resolver, int chip_num,
+ unsigned int *offsets,
enum gpiod_line_value *values)
{
struct resolved_line *line;
return gpiod_chip_info_get_name(resolver->chips[chip_num].info);
}
-const char *get_line_name(struct line_resolver *resolver,
- int chip_num, unsigned int offset)
+const char *get_line_name(struct line_resolver *resolver, int chip_num,
+ unsigned int offset)
{
struct resolved_line *line;
int i;
line = &resolver->lines[i];
if (line->info && (line->offset == offset) &&
(line->chip_num == chip_num))
- return gpiod_line_info_get_name(resolver->lines[i].info);
+ return gpiod_line_info_get_name(
+ resolver->lines[i].info);
}
return 0;
int chip_paths(const char *id, char ***paths_ptr);
int all_chip_paths(char ***paths_ptr);
struct line_resolver *resolve_lines(int num_lines, char **lines,
- const char *chip_id, bool strict, bool by_name);
+ const char *chip_id, bool strict,
+ bool by_name);
struct line_resolver *resolver_init(int num_lines, char **lines, int num_chips,
bool strict, bool by_name);
bool resolve_lines_by_offset(struct line_resolver *resolver,