mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Stephen Boyd <swboyd@chromium.org>
To: Benson Leung <bleung@chromium.org>,
	Enric Balletbo i Serra <enric.balletbo@collabora.com>
Cc: linux-kernel@vger.kernel.org,
	Gwendal Grignou <gwendal@chromium.org>,
	Prashant Malani <pmalani@chromium.org>,
	Guenter Roeck <groeck@chromium.org>
Subject: [PATCH] platform/chrome: cros_ec_debugfs: Support pd_info v2 format
Date: Tue,  8 Sep 2020 21:04:00 -0700	[thread overview]
Message-ID: <20200909040400.908217-1-swboyd@chromium.org> (raw)

Let's try to read more information out of more modern cros_ec devices by
using the v2 format first and then fall back to the v1 format. This
gives us more information about things such as DP mode of the typec pins
and the CC state, along with some more things.

Cc: Gwendal Grignou <gwendal@chromium.org>
Cc: Prashant Malani <pmalani@chromium.org>
Cc: Guenter Roeck <groeck@chromium.org>
Signed-off-by: Stephen Boyd <swboyd@chromium.org>
---

Should we move read_buf to the heap?

 drivers/platform/chrome/cros_ec_debugfs.c | 40 +++++++++++++++++------
 1 file changed, 30 insertions(+), 10 deletions(-)

diff --git a/drivers/platform/chrome/cros_ec_debugfs.c b/drivers/platform/chrome/cros_ec_debugfs.c
index 272c89837d74..4f8c902c0de6 100644
--- a/drivers/platform/chrome/cros_ec_debugfs.c
+++ b/drivers/platform/chrome/cros_ec_debugfs.c
@@ -195,28 +195,31 @@ static ssize_t cros_ec_pdinfo_read(struct file *file,
 				   size_t count,
 				   loff_t *ppos)
 {
-	char read_buf[EC_USB_PD_MAX_PORTS * 40], *p = read_buf;
+	char read_buf[EC_USB_PD_MAX_PORTS * 64], *p = read_buf;
 	struct cros_ec_debugfs *debug_info = file->private_data;
 	struct cros_ec_device *ec_dev = debug_info->ec->ec_dev;
 	struct {
 		struct cros_ec_command msg;
 		union {
-			struct ec_response_usb_pd_control_v1 resp;
+			struct ec_response_usb_pd_control_v2 resp_v2;
+			struct ec_response_usb_pd_control_v1 resp_v1;
 			struct ec_params_usb_pd_control params;
 		};
 	} __packed ec_buf;
 	struct cros_ec_command *msg;
-	struct ec_response_usb_pd_control_v1 *resp;
+	struct ec_response_usb_pd_control_v1 *resp_v1;
+	struct ec_response_usb_pd_control_v2 *resp_v2;
 	struct ec_params_usb_pd_control *params;
 	int i;
 
 	msg = &ec_buf.msg;
 	params = (struct ec_params_usb_pd_control *)msg->data;
-	resp = (struct ec_response_usb_pd_control_v1 *)msg->data;
+	resp_v1 = (struct ec_response_usb_pd_control_v1 *)msg->data;
+	resp_v2 = (struct ec_response_usb_pd_control_v2 *)msg->data;
 
 	msg->command = EC_CMD_USB_PD_CONTROL;
-	msg->version = 1;
-	msg->insize = sizeof(*resp);
+	msg->version = 2;
+	msg->insize = sizeof(*resp_v2);
 	msg->outsize = sizeof(*params);
 
 	/*
@@ -229,13 +232,30 @@ static ssize_t cros_ec_pdinfo_read(struct file *file,
 		params->mux = 0;
 		params->swap = 0;
 
-		if (cros_ec_cmd_xfer_status(ec_dev, msg) < 0)
+		if (cros_ec_cmd_xfer_status(ec_dev, msg) < 0) {
+			if (i == 0 && msg->version == 2) {
+				/* Try again with version 1 */
+				msg->version = 1;
+				msg->insize = sizeof(*resp_v1);
+				i = 0;
+				continue;
+			}
+
 			break;
+		}
 
 		p += scnprintf(p, sizeof(read_buf) + read_buf - p,
-			       "p%d: %s en:%.2x role:%.2x pol:%.2x\n", i,
-			       resp->state, resp->enabled, resp->role,
-			       resp->polarity);
+			       "p%d: %s en:%.2x role:%.2x pol:%.2x", i,
+			       resp_v1->state, resp_v1->enabled, resp_v1->role,
+			       resp_v1->polarity);
+		if (msg->version == 2) {
+			p += scnprintf(p, sizeof(read_buf) + read_buf - p,
+				       " cc:%.2x dp:%.2x ctrl:%.2x cs:%.2x gen:%.2x",
+				       resp_v2->cc_state, resp_v2->dp_mode,
+				       resp_v2->control_flags, resp_v2->cable_speed,
+				       resp_v2->cable_gen);
+		}
+		p += scnprintf(p, sizeof(read_buf) + read_buf - p, "\n");
 	}
 
 	return simple_read_from_buffer(user_buf, count, ppos,
-- 
Sent by a computer, using git, on the internet


             reply	other threads:[~2020-09-09  4:04 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-09-09  4:04 Stephen Boyd [this message]
2020-09-15 12:48 ` Enric Balletbo i Serra
2020-09-15 15:34   ` Prashant Malani
2020-09-16  9:38     ` Enric Balletbo i Serra
2020-09-16 15:11       ` Prashant Malani

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200909040400.908217-1-swboyd@chromium.org \
    --to=swboyd@chromium.org \
    --cc=bleung@chromium.org \
    --cc=enric.balletbo@collabora.com \
    --cc=groeck@chromium.org \
    --cc=gwendal@chromium.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=pmalani@chromium.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®