tests: provide test_debugfs_get/set_value() helpers
authorBartosz Golaszewski <bgolaszewski@baylibre.com>
Thu, 28 Mar 2019 13:14:51 +0000 (14:14 +0100)
committerBartosz Golaszewski <bgolaszewski@baylibre.com>
Tue, 23 Apr 2019 09:49:12 +0000 (11:49 +0200)
Since linux v5.1 gpio-mockup simulates pull-up/down resistors for dummy
lines. The current pull can be set using debugfs. Since we can no longer
verify if the character device interface properly sets line values, the
debugfs interface now also allows to read line values. This way we can
verify if the ABI works correctly using different code paths.

Provide functions for reading and setting values of mockup GPIO lines.

Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
tests/gpiod-test.c
tests/gpiod-test.h

index 1f37985b70c59ffa9b98caa1023d7730b1b1318c..56ef770f44c9d7a61861eb6c15183ffb49540316 100644 (file)
@@ -3,6 +3,7 @@
  * This file is part of libgpiod.
  *
  * Copyright (C) 2017-2018 Bartosz Golaszewski <bartekgola@gmail.com>
+ * Copyright (C) 2019 Bartosz Golaszewski <bgolaszewski@baylibre.com>
  */
 
 #include <ctype.h>
@@ -1113,6 +1114,65 @@ unsigned int test_chip_num(unsigned int index)
        return globals.test_ctx.chips[index]->number;
 }
 
+static int test_debugfs_open(unsigned int chip_index,
+                            unsigned int line_offset, int flags)
+{
+       char *path;
+       int fd;
+
+       path = xappend(NULL, "/sys/kernel/debug/gpio-mockup/gpiochip%u/%u",
+                      chip_index, line_offset);
+
+       fd = open(path, flags);
+       if (fd < 0)
+               die_perr("unable to open the debugfs line ('%s') attribute for reading",
+                        path);
+
+       free(path);
+       return fd;
+}
+
+int test_debugfs_get_value(unsigned int chip_index, unsigned int line_offset)
+{
+       ssize_t rd;
+       char buf;
+       int fd;
+
+       fd = test_debugfs_open(chip_index, line_offset, O_RDONLY);
+
+       rd = read(fd, &buf, 1);
+       if (rd < 0)
+               die_perr("error reading the debugfs line attribute");
+       if (rd != 1)
+               die("unable to read the line value from debugfs");
+       if (buf != '0' && buf != '1')
+               die("invalid line value read from debugfs");
+
+       close(fd);
+       return buf == '0' ? 0 : 1;
+}
+
+void test_debugfs_set_value(unsigned int chip_index,
+                           unsigned int line_offset, int val)
+{
+       char buf[2];
+       ssize_t wr;
+       int fd;
+
+       fd = test_debugfs_open(chip_index, line_offset, O_WRONLY);
+
+       buf[0] = val ? '1' : 0;
+       buf[1] = '\n';
+
+       wr = write(fd, &buf, sizeof(buf));
+       if (wr < 0)
+               die_perr("error writing to the debugfs line attribute");
+       if (wr != sizeof(buf))
+               die("unable to write the line value to debugfs");
+
+       close(fd);
+}
+
 void _test_register(struct _test_case *test)
 {
        struct _test_case *tmp;
index 040d993f39384c5e205cb64ffa92b05a40398065..c3ca0b198d9c03e6f739ecf5c6137919f09d7096 100644 (file)
@@ -3,6 +3,7 @@
  * This file is part of libgpiod.
  *
  * Copyright (C) 2017-2018 Bartosz Golaszewski <bartekgola@gmail.com>
+ * Copyright (C) 2019 Bartosz Golaszewski <bgolaszewski@baylibre.com>
  */
 
 /* Testing framework - functions and definitions used by test cases. */
@@ -93,6 +94,10 @@ const char *test_chip_path(unsigned int index);
 const char *test_chip_name(unsigned int index);
 unsigned int test_chip_num(unsigned int index);
 
+int test_debugfs_get_value(unsigned int chip_index, unsigned int line_offset);
+void test_debugfs_set_value(unsigned int chip_index,
+                           unsigned int line_offset, int val);
+
 /* Last argument is the delay between line value switches in microseconds. */
 void test_set_event(unsigned int chip_index,
                    unsigned int line_offset, unsigned int freq);