[PATCH] usb: typec: intel_pmc_mux: Expose IOM port status to debugfs

From: Rajat Khandelwal
Date: Thu Mar 30 2023 - 06:50:16 EST


IOM status has a crucial role during debugging to check the
current state of the type-C port.
There are ways to fetch the status, but all those require the
IOM port status offset, which could change with platform.

Make a debugfs directory for intel_pmc_mux and expose the status
under it per port basis.

Signed-off-by: Rajat Khandelwal <rajat.khandelwal@xxxxxxxxxxxxxxx>
Reviewed-by: Heikki Krogerus <heikki.krogerus@xxxxxxxxxxxxxxx>
---
drivers/usb/typec/mux/intel_pmc_mux.c | 44 +++++++++++++++++++++++++++
1 file changed, 44 insertions(+)

diff --git a/drivers/usb/typec/mux/intel_pmc_mux.c b/drivers/usb/typec/mux/intel_pmc_mux.c
index 34e4188a40ff..c99d20888f5d 100644
--- a/drivers/usb/typec/mux/intel_pmc_mux.c
+++ b/drivers/usb/typec/mux/intel_pmc_mux.c
@@ -15,6 +15,7 @@
#include <linux/usb/typec_mux.h>
#include <linux/usb/typec_dp.h>
#include <linux/usb/typec_tbt.h>
+#include <linux/debugfs.h>

#include <asm/intel_scu_ipc.h>

@@ -145,6 +146,8 @@ struct pmc_usb {
u32 iom_port_status_offset;
};

+static struct dentry *pmc_mux_debugfs_root;
+
static void update_port_status(struct pmc_usb_port *port)
{
u8 port_num;
@@ -639,6 +642,39 @@ static int pmc_usb_probe_iom(struct pmc_usb *pmc)
return 0;
}

+static int port_iom_status_show(struct seq_file *s, void *unused)
+{
+ struct pmc_usb_port *port = s->private;
+
+ update_port_status(port);
+ seq_printf(s, "0x%08x\n", port->iom_status);
+
+ return 0;
+}
+DEFINE_SHOW_ATTRIBUTE(port_iom_status);
+
+static void pmc_mux_port_debugfs_init(struct pmc_usb_port *port)
+{
+ struct dentry *debugfs_dir;
+ char name[6];
+
+ snprintf(name, sizeof(name), "port%d", port->usb3_port - 1);
+
+ debugfs_dir = debugfs_create_dir(name, pmc_mux_debugfs_root);
+ debugfs_create_file("iom_status", 0400, debugfs_dir, port,
+ &port_iom_status_fops);
+}
+
+static void pmc_mux_debugfs_init(void)
+{
+ pmc_mux_debugfs_root = debugfs_create_dir("intel_pmc_mux", NULL);
+}
+
+static void pmc_mux_debugfs_exit(void)
+{
+ debugfs_remove_recursive(pmc_mux_debugfs_root);
+}
+
static int pmc_usb_probe(struct platform_device *pdev)
{
struct fwnode_handle *fwnode = NULL;
@@ -674,6 +710,8 @@ static int pmc_usb_probe(struct platform_device *pdev)
if (ret)
return ret;

+ pmc_mux_debugfs_init();
+
/*
* For every physical USB connector (USB2 and USB3 combo) there is a
* child ACPI device node under the PMC mux ACPI device object.
@@ -688,6 +726,8 @@ static int pmc_usb_probe(struct platform_device *pdev)
fwnode_handle_put(fwnode);
goto err_remove_ports;
}
+
+ pmc_mux_port_debugfs_init(&pmc->port[i]);
}

platform_set_drvdata(pdev, pmc);
@@ -703,6 +743,8 @@ static int pmc_usb_probe(struct platform_device *pdev)

acpi_dev_put(pmc->iom_adev);

+ pmc_mux_debugfs_exit();
+
return ret;
}

@@ -719,6 +761,8 @@ static int pmc_usb_remove(struct platform_device *pdev)

acpi_dev_put(pmc->iom_adev);

+ pmc_mux_debugfs_exit();
+
return 0;
}

--
2.34.1