1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * UCSI debugfs interface
4 *
5 * Copyright (C) 2023 Intel Corporation
6 *
7 * Authors: Rajaram Regupathy <[email protected]>
8 * Gopal Saranya <[email protected]>
9 */
10 #include <linux/debugfs.h>
11 #include <linux/slab.h>
12 #include <linux/string.h>
13 #include <linux/types.h>
14 #include <linux/usb.h>
15
16 #include <asm/errno.h>
17
18 #include "ucsi.h"
19
20 static struct dentry *ucsi_debugfs_root;
21
ucsi_cmd(void * data,u64 val)22 static int ucsi_cmd(void *data, u64 val)
23 {
24 struct ucsi *ucsi = data;
25 int ret;
26
27 memset(&ucsi->debugfs->response, 0, sizeof(ucsi->debugfs->response));
28 ucsi->debugfs->status = 0;
29
30 switch (UCSI_COMMAND(val)) {
31 case UCSI_SET_UOM:
32 case UCSI_SET_UOR:
33 case UCSI_SET_PDR:
34 case UCSI_CONNECTOR_RESET:
35 case UCSI_SET_SINK_PATH:
36 ret = ucsi_send_command(ucsi, val, NULL, 0);
37 break;
38 case UCSI_GET_CAPABILITY:
39 case UCSI_GET_CONNECTOR_CAPABILITY:
40 case UCSI_GET_ALTERNATE_MODES:
41 case UCSI_GET_CURRENT_CAM:
42 case UCSI_GET_PDOS:
43 case UCSI_GET_CABLE_PROPERTY:
44 case UCSI_GET_CONNECTOR_STATUS:
45 ret = ucsi_send_command(ucsi, val,
46 &ucsi->debugfs->response,
47 sizeof(ucsi->debugfs->response));
48 break;
49 default:
50 ret = -EOPNOTSUPP;
51 }
52
53 if (ret < 0) {
54 ucsi->debugfs->status = ret;
55 return ret;
56 }
57
58 return 0;
59 }
60 DEFINE_DEBUGFS_ATTRIBUTE(ucsi_cmd_fops, NULL, ucsi_cmd, "0x%llx\n");
61
ucsi_resp_show(struct seq_file * s,void * not_used)62 static int ucsi_resp_show(struct seq_file *s, void *not_used)
63 {
64 struct ucsi *ucsi = s->private;
65
66 if (ucsi->debugfs->status)
67 return ucsi->debugfs->status;
68
69 seq_printf(s, "0x%016llx%016llx\n", ucsi->debugfs->response.high,
70 ucsi->debugfs->response.low);
71 return 0;
72 }
73 DEFINE_SHOW_ATTRIBUTE(ucsi_resp);
74
ucsi_debugfs_register(struct ucsi * ucsi)75 void ucsi_debugfs_register(struct ucsi *ucsi)
76 {
77 ucsi->debugfs = kzalloc(sizeof(*ucsi->debugfs), GFP_KERNEL);
78 if (!ucsi->debugfs)
79 return;
80
81 ucsi->debugfs->dentry = debugfs_create_dir(dev_name(ucsi->dev), ucsi_debugfs_root);
82 debugfs_create_file("command", 0200, ucsi->debugfs->dentry, ucsi, &ucsi_cmd_fops);
83 debugfs_create_file("response", 0400, ucsi->debugfs->dentry, ucsi, &ucsi_resp_fops);
84 }
85
ucsi_debugfs_unregister(struct ucsi * ucsi)86 void ucsi_debugfs_unregister(struct ucsi *ucsi)
87 {
88 if (IS_ERR_OR_NULL(ucsi) || !ucsi->debugfs)
89 return;
90
91 debugfs_remove_recursive(ucsi->debugfs->dentry);
92 kfree(ucsi->debugfs);
93 }
94
ucsi_debugfs_init(void)95 void ucsi_debugfs_init(void)
96 {
97 ucsi_debugfs_root = debugfs_create_dir("ucsi", usb_debug_root);
98 }
99
ucsi_debugfs_exit(void)100 void ucsi_debugfs_exit(void)
101 {
102 debugfs_remove(ucsi_debugfs_root);
103 }
104