diff mbox

[POWERDEBUG,v3] Add modify gpio function in powerdebug tool.

Message ID 1375231931-27635-1-git-send-email-shaojie.sun@linaro.com
State New
Headers show

Commit Message

sunshaojie July 31, 2013, 12:52 a.m. UTC
For power consumption test, we can change gpio direction and value
and check that power consumption is falled or not.
use 'D' key to change gpio direction.
And when gpio direction is "out", use 'V' key to change gpio value.

Signed-off-by: Shaojie Sun <shaojie.sun@linaro.com>
---
 README    |    8 +++++++-
 display.c |   18 ++++++++++++++++++
 display.h |    1 +
 gpio.c    |   46 ++++++++++++++++++++++++++++++++++++++++++++++
 utils.c   |   36 ++++++++++++++++++++++++++++++++++++
 utils.h   |    2 ++
 6 files changed, 110 insertions(+), 1 deletion(-)

Comments

sunshaojie July 31, 2013, 12:55 a.m. UTC | #1
Hi sanjayr
     I find a bug on this patch. We must read value after direction
was changed,  because when direction was changed to out, the value
also be changed to zero.

>+               file_write_value(t->path, "direction", "%s", &gpio->direction);
>+               file_read_value(t->path, "direction", "%s", &gpio->direction);
+               file_read_value(t->path, "value", "%d", &gpio->value);
>+

On 31 July 2013 08:52, Shaojie Sun <shaojie.sun@linaro.org> wrote:
> For power consumption test, we can change gpio direction and value
> and check that power consumption is falled or not.
> use 'D' key to change gpio direction.
> And when gpio direction is "out", use 'V' key to change gpio value.
>
> Signed-off-by: Shaojie Sun <shaojie.sun@linaro.com>
> ---
>  README    |    8 +++++++-
>  display.c |   18 ++++++++++++++++++
>  display.h |    1 +
>  gpio.c    |   46 ++++++++++++++++++++++++++++++++++++++++++++++
>  utils.c   |   36 ++++++++++++++++++++++++++++++++++++
>  utils.h   |    2 ++
>  6 files changed, 110 insertions(+), 1 deletion(-)
>
> diff --git a/README b/README
> index fa997f6..3bf1659 100644
> --- a/README
> +++ b/README
> @@ -7,4 +7,10 @@ information.
>  Current version only displays regulator information and clock tree from
>  debugfs. Support will be added for sensors later.
>
> - -- Amit Arora <amit.arora@linaro.org>  Fri, 08 Sep 2010
> + -- Amit Arora <amit.arora@linaro.org>  Fri, 08 Sep 2010
> +
> +Now we add gpio-change function for power consumption need.
> +When gpio is not in interrupt mode. use 'D' key to change gpio direction.
> +And when gpio direction is "out", use 'V' key to change gpio value.
> +
> + -- Shaojie Sun <shaojie.sun@linaro.org> Mon, 29 Jul 2013
> diff --git a/display.c b/display.c
> index 41a511d..c0afe03 100644
> --- a/display.c
> +++ b/display.c
> @@ -164,6 +164,17 @@ static int display_select(void)
>         return 0;
>  }
>
> +static int display_change(int keyvalue)
> +{
> +       if (!(windata[current_win].nrdata))
> +               return 0;
> +
> +       if (windata[current_win].ops && windata[current_win].ops->change)
> +               return windata[current_win].ops->change(keyvalue);
> +
> +       return 0;
> +}
> +
>  static int display_next_panel(void)
>  {
>         size_t array_size = sizeof(windata) / sizeof(windata[0]);
> @@ -406,6 +417,13 @@ static int display_keystroke(int fd, void *data)
>                 display_select();
>                 break;
>
> +       case 'v':
> +       case 'V':
> +       case 'd':
> +       case 'D':
> +               display_change(toupper(keystroke));
> +               break;
> +
>         case EOF:
>         case 'q':
>         case 'Q':
> diff --git a/display.h b/display.h
> index 6362a48..b28d26e 100644
> --- a/display.h
> +++ b/display.h
> @@ -20,6 +20,7 @@ struct display_ops {
>         int (*select)(void);
>         int (*find)(const char *);
>         int (*selectf)(void);
> +       int (*change)(int keyvalue);
>  };
>
>  extern int display_print_line(int window, int line, char *str,
> diff --git a/gpio.c b/gpio.c
> index 3ecc393..7cc16f7 100644
> --- a/gpio.c
> +++ b/gpio.c
> @@ -264,8 +264,54 @@ static int gpio_display(bool refresh)
>         return gpio_print_info(gpio_tree);
>  }
>
> +static int gpio_change(int keyvalue)
> +{
> +       struct tree *t = display_get_row_data(GPIO);
> +       struct gpio_info *gpio = t->private;
> +
> +       if (!t || !gpio)
> +               return -1;
> +
> +       switch (keyvalue) {
> +       case 'D':
> +               /* Only change direction when gpio interrupt not set.*/
> +               if (!strstr(gpio->edge, "none"))
> +                       return 0;
> +
> +               if (strstr(gpio->direction, "in"))
> +                       strcpy(gpio->direction, "out");
> +               else if (strstr(gpio->direction, "out"))
> +                       strcpy(gpio->direction, "in");
> +               file_write_value(t->path, "direction", "%s", &gpio->direction);
> +               file_read_value(t->path, "direction", "%s", &gpio->direction);
> +               file_read_value(t->path, "value", "%d", &gpio->value);
> +
> +               break;
> +
> +       case 'V':
> +               /* Only change value when gpio direction is out. */
> +               if (!strstr(gpio->edge, "none")
> +                        || !strstr(gpio->direction, "out"))
> +                       return 0;
> +
> +               if (gpio->value)
> +                       file_write_value(t->path, "direction", "%s", &"low");
> +               else
> +                       file_write_value(t->path, "direction", "%s", &"high");
> +               file_read_value(t->path, "value", "%d", &gpio->value);
> +
> +               break;
> +
> +       default:
> +               return -1;
> +       }
> +
> +       return 0;
> +}
> +
>  static struct display_ops gpio_ops = {
>         .display = gpio_display,
> +       .change = gpio_change,
>  };
>
>  /*
> diff --git a/utils.c b/utils.c
> index e47c58e..4d4b780 100644
> --- a/utils.c
> +++ b/utils.c
> @@ -53,3 +53,39 @@ out_free:
>          free(rpath);
>          return ret;
>  }
> +
> +/*
> + * This functions is a helper to write a specific file content and store
> + * the content inside a variable pointer passed as parameter, the format
> + * parameter gives the variable type to be write to the file.
> + *
> + * @path : directory path containing the file
> + * @name : name of the file to be read
> + * @format : the format of the format
> + * @value : a pointer to a variable to store the content of the file
> + * Returns 0 on success, -1 otherwise
> + */
> +int file_write_value(const char *path, const char *name,
> +                       const char *format, void *value)
> +{
> +       FILE *file;
> +       char *rpath;
> +       int ret;
> +
> +       ret = asprintf(&rpath, "%s/%s", path, name);
> +       if (ret < 0)
> +               return ret;
> +
> +       file = fopen(rpath, "w");
> +       if (!file) {
> +               ret = -1;
> +               goto out_free;
> +       }
> +
> +       ret = fprintf(file, format, value) < 0 ? -1 : 0;
> +
> +       fclose(file);
> +out_free:
> +       free(rpath);
> +       return ret;
> +}
> diff --git a/utils.h b/utils.h
> index d4ac65a..73159b9 100644
> --- a/utils.h
> +++ b/utils.h
> @@ -17,6 +17,8 @@
>
>  extern int file_read_value(const char *path, const char *name,
>                             const char *format, void *value);
> +extern int file_write_value(const char *path, const char *name,
> +                               const char *format, void *value);
>
>
>  #endif
> --
> 1.7.9.5
>
diff mbox

Patch

diff --git a/README b/README
index fa997f6..3bf1659 100644
--- a/README
+++ b/README
@@ -7,4 +7,10 @@  information.
 Current version only displays regulator information and clock tree from
 debugfs. Support will be added for sensors later.
 
- -- Amit Arora <amit.arora@linaro.org>  Fri, 08 Sep 2010 
+ -- Amit Arora <amit.arora@linaro.org>  Fri, 08 Sep 2010
+
+Now we add gpio-change function for power consumption need.
+When gpio is not in interrupt mode. use 'D' key to change gpio direction.
+And when gpio direction is "out", use 'V' key to change gpio value.
+
+ -- Shaojie Sun <shaojie.sun@linaro.org> Mon, 29 Jul 2013
diff --git a/display.c b/display.c
index 41a511d..c0afe03 100644
--- a/display.c
+++ b/display.c
@@ -164,6 +164,17 @@  static int display_select(void)
 	return 0;
 }
 
+static int display_change(int keyvalue)
+{
+	if (!(windata[current_win].nrdata))
+		return 0;
+
+	if (windata[current_win].ops && windata[current_win].ops->change)
+		return windata[current_win].ops->change(keyvalue);
+
+	return 0;
+}
+
 static int display_next_panel(void)
 {
 	size_t array_size = sizeof(windata) / sizeof(windata[0]);
@@ -406,6 +417,13 @@  static int display_keystroke(int fd, void *data)
 		display_select();
 		break;
 
+	case 'v':
+	case 'V':
+	case 'd':
+	case 'D':
+		display_change(toupper(keystroke));
+		break;
+
 	case EOF:
 	case 'q':
 	case 'Q':
diff --git a/display.h b/display.h
index 6362a48..b28d26e 100644
--- a/display.h
+++ b/display.h
@@ -20,6 +20,7 @@  struct display_ops {
 	int (*select)(void);
 	int (*find)(const char *);
 	int (*selectf)(void);
+	int (*change)(int keyvalue);
 };
 
 extern int display_print_line(int window, int line, char *str,
diff --git a/gpio.c b/gpio.c
index 3ecc393..7cc16f7 100644
--- a/gpio.c
+++ b/gpio.c
@@ -264,8 +264,54 @@  static int gpio_display(bool refresh)
 	return gpio_print_info(gpio_tree);
 }
 
+static int gpio_change(int keyvalue)
+{
+	struct tree *t = display_get_row_data(GPIO);
+	struct gpio_info *gpio = t->private;
+
+	if (!t || !gpio)
+		return -1;
+
+	switch (keyvalue) {
+	case 'D':
+		/* Only change direction when gpio interrupt not set.*/
+		if (!strstr(gpio->edge, "none"))
+			return 0;
+
+		if (strstr(gpio->direction, "in"))
+			strcpy(gpio->direction, "out");
+		else if (strstr(gpio->direction, "out"))
+			strcpy(gpio->direction, "in");
+		file_write_value(t->path, "direction", "%s", &gpio->direction);
+		file_read_value(t->path, "direction", "%s", &gpio->direction);
+		file_read_value(t->path, "value", "%d", &gpio->value);
+
+		break;
+
+	case 'V':
+		/* Only change value when gpio direction is out. */
+		if (!strstr(gpio->edge, "none")
+			 || !strstr(gpio->direction, "out"))
+			return 0;
+
+		if (gpio->value)
+			file_write_value(t->path, "direction", "%s", &"low");
+		else
+			file_write_value(t->path, "direction", "%s", &"high");
+		file_read_value(t->path, "value", "%d", &gpio->value);
+
+		break;
+
+	default:
+		return -1;
+	}
+
+	return 0;
+}
+
 static struct display_ops gpio_ops = {
 	.display = gpio_display,
+	.change = gpio_change,
 };
 
 /*
diff --git a/utils.c b/utils.c
index e47c58e..4d4b780 100644
--- a/utils.c
+++ b/utils.c
@@ -53,3 +53,39 @@  out_free:
         free(rpath);
         return ret;
 }
+
+/*
+ * This functions is a helper to write a specific file content and store
+ * the content inside a variable pointer passed as parameter, the format
+ * parameter gives the variable type to be write to the file.
+ *
+ * @path : directory path containing the file
+ * @name : name of the file to be read
+ * @format : the format of the format
+ * @value : a pointer to a variable to store the content of the file
+ * Returns 0 on success, -1 otherwise
+ */
+int file_write_value(const char *path, const char *name,
+			const char *format, void *value)
+{
+	FILE *file;
+	char *rpath;
+	int ret;
+
+	ret = asprintf(&rpath, "%s/%s", path, name);
+	if (ret < 0)
+		return ret;
+
+	file = fopen(rpath, "w");
+	if (!file) {
+		ret = -1;
+		goto out_free;
+	}
+
+	ret = fprintf(file, format, value) < 0 ? -1 : 0;
+
+	fclose(file);
+out_free:
+	free(rpath);
+	return ret;
+}
diff --git a/utils.h b/utils.h
index d4ac65a..73159b9 100644
--- a/utils.h
+++ b/utils.h
@@ -17,6 +17,8 @@ 
 
 extern int file_read_value(const char *path, const char *name,
                            const char *format, void *value);
+extern int file_write_value(const char *path, const char *name,
+				const char *format, void *value);
 
 
 #endif