高通ADSP抓取sensor init log

高通平台adsp sensor的驱动log需要使用QXDM抓取,sensor init是sensor初始化的log信息,这时候QXDM还没有识别到diag口,无法直接获取。
高通支持如下两种获取adsp侧sensor init log的方式。
第一种方式是:通过adb名利重启sensors
a. adb shell stop sensors
b. adb shell “echo ‘related’ > /sys/bus/msm_subsys/devices/subsys1/restart_level”
c. adb shell “echo ‘restart’ >
/sys/kernel/debug/msm_subsys/adsp”
d. adb shell start sensors
PS : 这边有两个注意事项:
1.需要确认好 /sys/bus/msm_subsys/devices/subsys1 是指向 adsp还是其他,具体方法如下cat /sys/bus/msm_subsys/devices/subsys1/name 返回值是否为adsp,如果不是请cat其他subsys*
2.请检查/sys/kernel/debug/msm_subsys/adsp是否存在。高通最近在subsystem_restart.c中将msm_subsys/adsp节点取消了,为了解决该问题,需要导入如下所示的path。

diff --git a/drivers/soc/qcom/subsystem_restart.c b/drivers/soc/qcom/subsystem_restart.c
old mode 100644
new mode 100755
index ea94456..27eb26e
--- a/drivers/soc/qcom/subsystem_restart.c
+++ b/drivers/soc/qcom/subsystem_restart.c
@@ -36,7 +36,7 @@
 #include <soc/qcom/subsystem_notif.h>
 #include <soc/qcom/sysmon.h>
 #include <trace/events/trace_msm_pil_event.h>
-
+#include <linux/debugfs.h>
 #include <asm/current.h>
 
 #include "peripheral-loader.h"
@@ -178,6 +178,10 @@ struct subsys_device {
  enum crash_status crashed;
  int notif_state;
  struct list_head list;
+#ifdef CONFIG_DEBUG_FS
+ struct dentry *dentry;
+#endif
+ 
 };
 
 static struct subsys_device *to_subsys(struct device *d)
@@ -356,11 +360,11 @@ static struct device_attribute subsys_attrs[] = {
  __ATTR_NULL,
 };
 
-struct bus_type subsys_bus_type = {
+static struct bus_type subsys_bus_type = {
  .name  = "msm_subsys",
  .dev_attrs = subsys_attrs,
 };
-EXPORT_SYMBOL(subsys_bus_type);
+
 
 static DEFINE_IDA(subsys_ida);
 
@@ -1229,6 +1233,87 @@ void notify_proxy_unvote(struct device *device)
   notify_each_subsys_device(&dev, 1, SUBSYS_PROXY_UNVOTE, NULL);
 }
 
+#ifdef CONFIG_DEBUG_FS
+static ssize_t subsys_debugfs_read(struct file *filp, char __user *ubuf,
+  size_t cnt, loff_t *ppos)
+{
+ int r;
+ char buf[40];
+ struct subsys_device *subsys = filp->private_data;
+
+ r = snprintf(buf, sizeof(buf), "%d\n", subsys->count);
+ return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
+}
+
+static ssize_t subsys_debugfs_write(struct file *filp,
+  const char __user *ubuf, size_t cnt, loff_t *ppos)
+{
+ struct subsys_device *subsys = filp->private_data;
+ char buf[10];
+ char *cmp;
+
+ cnt = min(cnt, sizeof(buf) - 1);
+ if (copy_from_user(&buf, ubuf, cnt))
+  return -EFAULT;
+ buf[cnt] = '\0';
+ cmp = strstrip(buf);
+
+ if (!strcmp(cmp, "restart")) {
+  if (subsystem_restart_dev(subsys))
+   return -EIO;
+ } else if (!strcmp(cmp, "get")) {
+  if (subsystem_get(subsys->desc->name))
+   return -EIO;
+ } else if (!strcmp(cmp, "put")) {
+  subsystem_put(subsys);
+ } else {
+  return -EINVAL;
+ }
+
+ return cnt;
+}
+
+static const struct file_operations subsys_debugfs_fops = {
+ .open = simple_open,
+ .read = subsys_debugfs_read,
+ .write = subsys_debugfs_write,
+};
+
+static struct dentry *subsys_base_dir;
+
+static int __init subsys_debugfs_init(void)
+{
+ subsys_base_dir = debugfs_create_dir("msm_subsys", NULL);
+ return !subsys_base_dir ? -ENOMEM : 0;
+}
+
+static void subsys_debugfs_exit(void)
+{
+ debugfs_remove_recursive(subsys_base_dir);
+}
+
+static int subsys_debugfs_add(struct subsys_device *subsys)
+{
+ if (!subsys_base_dir)
+  return -ENOMEM;
+
+ subsys->dentry = debugfs_create_file(subsys->desc->name,
+    S_IRUGO | S_IWUSR, subsys_base_dir,
+    subsys, &subsys_debugfs_fops);
+ return !subsys->dentry ? -ENOMEM : 0;
+}
+
+static void subsys_debugfs_remove(struct subsys_device *subsys)
+{
+ debugfs_remove(subsys->dentry);
+}
+#else
+static int __init subsys_debugfs_init(void) { return 0; };
+static void subsys_debugfs_exit(void) { }
+static int subsys_debugfs_add(struct subsys_device *subsys) { return 0; }
+static void subsys_debugfs_remove(struct subsys_device *subsys) { }
+#endif
+
 static int subsys_device_open(struct inode *inode, struct file *file)
 {
  struct subsys_device *device, *subsys_dev = 0;
@@ -1668,8 +1753,18 @@ struct subsys_device *subsys_register(struct subsys_desc *desc)
 
  mutex_init(&subsys->track.lock);
 
+ ret = subsys_debugfs_add(subsys);
+ if (ret) {
+  ida_simple_remove(&subsys_ida, subsys->id);
+  wakeup_source_trash(&subsys->ssr_wlock);
+  kfree(subsys);
+  return ERR_PTR(ret);
+ }
+
+
  ret = device_register(&subsys->dev);
  if (ret) {
+  subsys_debugfs_remove(subsys);
   put_device(&subsys->dev);
   return ERR_PTR(ret);
  }
@@ -1731,6 +1826,7 @@ err_setup_irqs:
  if (ofnode)
   subsys_remove_restart_order(ofnode);
 err_register:
+subsys_debugfs_remove(subsys);
  device_unregister(&subsys->dev);
  return ERR_PTR(ret);
 }
@@ -1759,6 +1855,7 @@ void subsys_unregister(struct subsys_device *subsys)
   WARN_ON(subsys->count);
   device_unregister(&subsys->dev);
   mutex_unlock(&subsys->track.lock);
+  subsys_debugfs_remove(subsys);
   subsys_char_device_remove(subsys);
   sysmon_notifier_unregister(subsys->desc);
   if (subsys->desc->edge)
@@ -1799,6 +1896,10 @@ static int __init subsys_restart_init(void)
  if (ret)
   goto err_bus;
 
+ ret = subsys_debugfs_init();
+ if (ret)
+  goto err_debugfs;
+
  char_class = class_create(THIS_MODULE, "subsys");
  if (IS_ERR(char_class)) {
   ret = -ENOMEM;
@@ -1816,6 +1917,8 @@ static int __init subsys_restart_init(void)
 err_soc:
  class_destroy(char_class);
 err_class:
+ subsys_debugfs_exit();
+err_debugfs:
  bus_unregister(&subsys_bus_type);
 err_bus:
  destroy_workqueue(ssr_wq);
diff --git a/include/soc/qcom/subsystem_restart.h b/include/soc/qcom/subsystem_restart.h
old mode 100644
new mode 100755
index 9a4d013..da258d2
--- a/include/soc/qcom/subsystem_restart.h
+++ b/include/soc/qcom/subsystem_restart.h
@@ -18,7 +18,7 @@
 #include <linux/interrupt.h>
 
 struct subsys_device;
-extern struct bus_type subsys_bus_type;
+//extern struct bus_type subsys_bus_type;
 
 enum {
  RESET_SOC = 0,

第二种方式是:在adsp侧sensor init时添加delay,加大SMGR_DELAY_US延时,从而实现等到QXDM 识别到diag口后才执行sensor init 操作。

If ADSP SSR can
not work, you can add delay in the sensor init code (it is just for debug ADSP
init issue, need remove it after finish debug);
sns_smgr_main.c
void sns_smgr_task(void* p_arg)
{
  smgr_init();
  sns_smgr_sensor_init();
  sns_init_done();
  sns_smgr_mr_init(sns_smgr.sig_grp);
  **SMGR_DELAY_US(6000000);**    // 这边是延时6s,按照需要修改这边延时抓取log。


  • 1
    点赞
  • 17
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值