core: provide functions for reading multiple line events at once
authorBartosz Golaszewski <bgolaszewski@baylibre.com>
Mon, 16 Dec 2019 17:34:17 +0000 (18:34 +0100)
committerBartosz Golaszewski <bgolaszewski@baylibre.com>
Wed, 18 Dec 2019 14:09:30 +0000 (15:09 +0100)
The kernel allows us to read multiple (up to 16) line events with
a single read() call, but up to this point libgpiod only supported
reading one event at a time. Add two new functions that allow users
to read more events at the same time.

Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
include/gpiod.h
lib/core.c

index 0ecb804a96cf50687fa40e38f2ae42f69e915888..b275f4a78fabf54eff93f4f54d8dc23888f29d0a 100644 (file)
@@ -1479,6 +1479,19 @@ int gpiod_line_event_wait_bulk(struct gpiod_line_bulk *bulk,
 int gpiod_line_event_read(struct gpiod_line *line,
                          struct gpiod_line_event *event) GPIOD_API;
 
+/**
+ * @brief Read up to a certain number of events from the GPIO line.
+ * @param line GPIO line object.
+ * @param events Buffer to which the event data will be copied. Must hold at
+ *               least the amount of events specified in num_events.
+ * @param num_events Specifies how many events can be stored in the buffer.
+ * @return On success returns the number of events stored in the buffer, on
+ *         failure -1 is returned.
+ */
+int gpiod_line_event_read_multiple(struct gpiod_line *line,
+                                  struct gpiod_line_event *events,
+                                  unsigned int num_events) GPIOD_API;
+
 /**
  * @brief Get the event file descriptor.
  * @param line GPIO line object.
@@ -1503,6 +1516,18 @@ int gpiod_line_event_get_fd(struct gpiod_line *line) GPIOD_API;
  */
 int gpiod_line_event_read_fd(int fd, struct gpiod_line_event *event) GPIOD_API;
 
+/**
+ * @brief Read up to a certain number of events directly from a file descriptor.
+ * @param fd File descriptor.
+ * @param events Buffer to which the event data will be copied. Must hold at
+ *               least the amount of events specified in num_events.
+ * @param num_events Specifies how many events can be stored in the buffer.
+ * @return On success returns the number of events stored in the buffer, on
+ *         failure -1 is returned.
+ */
+int gpiod_line_event_read_fd_multiple(int fd, struct gpiod_line_event *events,
+                                     unsigned int num_events) GPIOD_API;
+
 /**
  * @}
  *
index 89f5465b51e7f59e16fdcbd1e138e43e8f8f056d..8352e18feda8ac28a0402d7639020bf2dbcaa79f 100644 (file)
@@ -1009,6 +1009,19 @@ int gpiod_line_event_wait_bulk(struct gpiod_line_bulk *bulk,
 
 int gpiod_line_event_read(struct gpiod_line *line,
                          struct gpiod_line_event *event)
+{
+       int ret;
+
+       ret = gpiod_line_event_read_multiple(line, event, 1);
+       if (ret < 0)
+               return -1;
+
+       return 0;
+}
+
+int gpiod_line_event_read_multiple(struct gpiod_line *line,
+                                  struct gpiod_line_event *events,
+                                  unsigned int num_events)
 {
        int fd;
 
@@ -1016,7 +1029,7 @@ int gpiod_line_event_read(struct gpiod_line *line,
        if (fd < 0)
                return -1;
 
-       return gpiod_line_event_read_fd(fd, event);
+       return gpiod_line_event_read_fd_multiple(fd, events, num_events);
 }
 
 int gpiod_line_event_get_fd(struct gpiod_line *line)
@@ -1031,25 +1044,51 @@ int gpiod_line_event_get_fd(struct gpiod_line *line)
 
 int gpiod_line_event_read_fd(int fd, struct gpiod_line_event *event)
 {
-       struct gpioevent_data evdata;
+       int ret;
+
+       ret = gpiod_line_event_read_fd_multiple(fd, event, 1);
+       if (ret < 0)
+               return -1;
+
+       return 0;
+}
+
+int gpiod_line_event_read_fd_multiple(int fd, struct gpiod_line_event *events,
+                                     unsigned int num_events)
+{
+       /*
+        * 16 is the maximum number of events the kernel can store in the FIFO
+        * so we can allocate the buffer on the stack.
+        */
+       struct gpioevent_data evdata[16], *curr;
+       struct gpiod_line_event *event;
+       unsigned int events_read, i;
        ssize_t rd;
 
-       memset(&evdata, 0, sizeof(evdata));
+       memset(evdata, 0, sizeof(evdata));
 
-       rd = read(fd, &evdata, sizeof(evdata));
+       rd = read(fd, evdata, sizeof(evdata));
        if (rd < 0) {
                return -1;
-       } else if (rd != sizeof(evdata)) {
+       } else if ((unsigned int)rd < sizeof(*evdata)) {
                errno = EIO;
                return -1;
        }
 
-       event->event_type = evdata.id == GPIOEVENT_EVENT_RISING_EDGE
-                                               ? GPIOD_LINE_EVENT_RISING_EDGE
-                                               : GPIOD_LINE_EVENT_FALLING_EDGE;
+       events_read = rd / sizeof(*evdata);
+       if (events_read < num_events)
+               num_events = events_read;
 
-       event->ts.tv_sec = evdata.timestamp / 1000000000ULL;
-       event->ts.tv_nsec = evdata.timestamp % 1000000000ULL;
+       for (i = 0; i < num_events; i++) {
+               curr = &evdata[i];
+               event = &events[i];
 
-       return 0;
+               event->event_type = curr->id == GPIOEVENT_EVENT_RISING_EDGE
+                                       ? GPIOD_LINE_EVENT_RISING_EDGE
+                                       : GPIOD_LINE_EVENT_FALLING_EDGE;
+               event->ts.tv_sec = curr->timestamp / 1000000000ULL;
+               event->ts.tv_nsec = curr->timestamp % 1000000000ULL;
+       }
+
+       return i;
 }