public inbox for linux-remoteproc@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] remoteproc: debug: add crash debugfs node
@ 2018-11-07 15:26 Xiang Xiao
  2018-11-08  6:27 ` Bjorn Andersson
  0 siblings, 1 reply; 2+ messages in thread
From: Xiang Xiao @ 2018-11-07 15:26 UTC (permalink / raw)
  To: linux-remoteproc, bjorn.andersson; +Cc: Xiang Xiao

so we can trigger the crash manully which could:
1.test the crash handling code path more easily
2.update the firmware without reboot kernel

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
---
 drivers/remoteproc/remoteproc_debugfs.c | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/drivers/remoteproc/remoteproc_debugfs.c b/drivers/remoteproc/remoteproc_debugfs.c
index 0808466..fca4b2b 100644
--- a/drivers/remoteproc/remoteproc_debugfs.c
+++ b/drivers/remoteproc/remoteproc_debugfs.c
@@ -154,6 +154,30 @@ static const struct file_operations rproc_recovery_ops = {
 	.llseek = generic_file_llseek,
 };
 
+/* expose the crash trigger via debugfs */
+static ssize_t
+rproc_crash_write(struct file *filp, const char __user *user_buf,
+		  size_t count, loff_t *ppos)
+{
+	struct rproc *rproc = filp->private_data;
+	unsigned int type;
+	int ret;
+
+	ret = kstrtouint_from_user(user_buf, count, 0, &type);
+	if (ret < 0)
+		return ret;
+
+	rproc_report_crash(rproc, type);
+
+	return count;
+}
+
+static const struct file_operations rproc_crash_ops = {
+	.write = rproc_crash_write,
+	.open = simple_open,
+	.llseek = generic_file_llseek,
+};
+
 /* Expose resource table content via debugfs */
 static int rproc_rsc_table_show(struct seq_file *seq, void *p)
 {
@@ -324,6 +348,8 @@ void rproc_create_debug_dir(struct rproc *rproc)
 			    rproc, &rproc_name_ops);
 	debugfs_create_file("recovery", 0400, rproc->dbg_dir,
 			    rproc, &rproc_recovery_ops);
+	debugfs_create_file("crash", 0200, rproc->dbg_dir,
+			    rproc, &rproc_crash_ops);
 	debugfs_create_file("resource_table", 0400, rproc->dbg_dir,
 			    rproc, &rproc_rsc_table_ops);
 	debugfs_create_file("carveout_memories", 0400, rproc->dbg_dir,
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] remoteproc: debug: add crash debugfs node
  2018-11-07 15:26 [PATCH] remoteproc: debug: add crash debugfs node Xiang Xiao
@ 2018-11-08  6:27 ` Bjorn Andersson
  0 siblings, 0 replies; 2+ messages in thread
From: Bjorn Andersson @ 2018-11-08  6:27 UTC (permalink / raw)
  To: Xiang Xiao; +Cc: linux-remoteproc, Xiang Xiao

On Wed 07 Nov 07:26 PST 2018, Xiang Xiao wrote:

> so we can trigger the crash manully which could:
> 1.test the crash handling code path more easily
> 2.update the firmware without reboot kernel

It's probably better to stop then start the remoteproc to update the
firmware, but I like the patch - applied for v4.21.

Regards,
Bjorn

> 
> Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
> ---
>  drivers/remoteproc/remoteproc_debugfs.c | 26 ++++++++++++++++++++++++++
>  1 file changed, 26 insertions(+)
> 
> diff --git a/drivers/remoteproc/remoteproc_debugfs.c b/drivers/remoteproc/remoteproc_debugfs.c
> index 0808466..fca4b2b 100644
> --- a/drivers/remoteproc/remoteproc_debugfs.c
> +++ b/drivers/remoteproc/remoteproc_debugfs.c
> @@ -154,6 +154,30 @@ static const struct file_operations rproc_recovery_ops = {
>  	.llseek = generic_file_llseek,
>  };
>  
> +/* expose the crash trigger via debugfs */
> +static ssize_t
> +rproc_crash_write(struct file *filp, const char __user *user_buf,
> +		  size_t count, loff_t *ppos)
> +{
> +	struct rproc *rproc = filp->private_data;
> +	unsigned int type;
> +	int ret;
> +
> +	ret = kstrtouint_from_user(user_buf, count, 0, &type);
> +	if (ret < 0)
> +		return ret;
> +
> +	rproc_report_crash(rproc, type);
> +
> +	return count;
> +}
> +
> +static const struct file_operations rproc_crash_ops = {
> +	.write = rproc_crash_write,
> +	.open = simple_open,
> +	.llseek = generic_file_llseek,
> +};
> +
>  /* Expose resource table content via debugfs */
>  static int rproc_rsc_table_show(struct seq_file *seq, void *p)
>  {
> @@ -324,6 +348,8 @@ void rproc_create_debug_dir(struct rproc *rproc)
>  			    rproc, &rproc_name_ops);
>  	debugfs_create_file("recovery", 0400, rproc->dbg_dir,
>  			    rproc, &rproc_recovery_ops);
> +	debugfs_create_file("crash", 0200, rproc->dbg_dir,
> +			    rproc, &rproc_crash_ops);
>  	debugfs_create_file("resource_table", 0400, rproc->dbg_dir,
>  			    rproc, &rproc_rsc_table_ops);
>  	debugfs_create_file("carveout_memories", 0400, rproc->dbg_dir,
> -- 
> 2.7.4
> 

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-11-08  6:27 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-11-07 15:26 [PATCH] remoteproc: debug: add crash debugfs node Xiang Xiao
2018-11-08  6:27 ` Bjorn Andersson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox