linux-arm-msm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/4] soc: qcom: socinfo: add support for newer socinfo data
@ 2020-05-25 16:48 Dmitry Baryshkov
  2020-05-25 16:48 ` [PATCH 2/4] soc: qcom: socinfo: fix printing of pmic_model Dmitry Baryshkov
                   ` (3 more replies)
  0 siblings, 4 replies; 10+ messages in thread
From: Dmitry Baryshkov @ 2020-05-25 16:48 UTC (permalink / raw)
  To: linux-arm-msm; +Cc: Andy Gross, Bjorn Andersson, patches, linaro-kernel

Add support for newer Qualcomm SoC info structures (up to version 0.15).

Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
---
 drivers/soc/qcom/socinfo.c | 55 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 55 insertions(+)

diff --git a/drivers/soc/qcom/socinfo.c b/drivers/soc/qcom/socinfo.c
index ebb49aee179b..0e6adf1161c0 100644
--- a/drivers/soc/qcom/socinfo.c
+++ b/drivers/soc/qcom/socinfo.c
@@ -24,6 +24,7 @@
 #define SOCINFO_VERSION(maj, min)  ((((maj) & 0xffff) << 16)|((min) & 0xffff))
 
 #define SMEM_SOCINFO_BUILD_ID_LENGTH           32
+#define SMEM_SOCINFO_CHIP_ID_LENGTH            32
 
 /*
  * SMEM item id, used to acquire handles to respective
@@ -121,6 +122,16 @@ struct socinfo {
 	__le32 chip_family;
 	__le32 raw_device_family;
 	__le32 raw_device_num;
+	/* Version 13 */
+	__le32 nproduct_id;
+	char chip_id[SMEM_SOCINFO_CHIP_ID_LENGTH];
+	/* Version 14 */
+	__le32 num_clusters;
+	__le32 ncluster_array_offset;
+	__le32 num_defective_parts;
+	__le32 ndefective_parts_array_offset;
+	/* Version 15 */
+	__le32 nmodem_supported;
 };
 
 #ifdef CONFIG_DEBUG_FS
@@ -135,6 +146,12 @@ struct socinfo_params {
 	u32 raw_ver;
 	u32 hw_plat;
 	u32 fmt;
+	u32 nproduct_id;
+	u32 num_clusters;
+	u32 ncluster_array_offset;
+	u32 num_defective_parts;
+	u32 ndefective_parts_array_offset;
+	u32 nmodem_supported;
 };
 
 struct smem_image_version {
@@ -268,9 +285,19 @@ static int qcom_show_pmic_die_revision(struct seq_file *seq, void *p)
 	return 0;
 }
 
+static int qcom_show_chip_id(struct seq_file *seq, void *p)
+{
+	struct socinfo *socinfo = seq->private;
+
+	seq_printf(seq, "%s\n", socinfo->chip_id);
+
+	return 0;
+}
+
 QCOM_OPEN(build_id, qcom_show_build_id);
 QCOM_OPEN(pmic_model, qcom_show_pmic_model);
 QCOM_OPEN(pmic_die_rev, qcom_show_pmic_die_revision);
+QCOM_OPEN(chip_id, qcom_show_chip_id);
 
 #define DEFINE_IMAGE_OPS(type)					\
 static int show_image_##type(struct seq_file *seq, void *p)		  \
@@ -309,6 +336,34 @@ static void socinfo_debugfs_init(struct qcom_socinfo *qcom_socinfo,
 	qcom_socinfo->info.fmt = __le32_to_cpu(info->fmt);
 
 	switch (qcom_socinfo->info.fmt) {
+	case SOCINFO_VERSION(0, 15):
+		qcom_socinfo->info.nmodem_supported = __le32_to_cpu(info->nmodem_supported);
+
+		debugfs_create_u32("nmodem_supported", 0400, qcom_socinfo->dbg_root,
+				   &qcom_socinfo->info.nmodem_supported);
+		/* Fall through */
+	case SOCINFO_VERSION(0, 14):
+		qcom_socinfo->info.num_clusters = __le32_to_cpu(info->num_clusters);
+		qcom_socinfo->info.ncluster_array_offset = __le32_to_cpu(info->ncluster_array_offset);
+		qcom_socinfo->info.num_defective_parts = __le32_to_cpu(info->num_defective_parts);
+		qcom_socinfo->info.ndefective_parts_array_offset = __le32_to_cpu(info->ndefective_parts_array_offset);
+
+		debugfs_create_u32("num_clusters", 0400, qcom_socinfo->dbg_root,
+				   &qcom_socinfo->info.num_clusters);
+		debugfs_create_u32("ncluster_array_offset", 0400, qcom_socinfo->dbg_root,
+				   &qcom_socinfo->info.ncluster_array_offset);
+		debugfs_create_u32("num_defective_parts", 0400, qcom_socinfo->dbg_root,
+				   &qcom_socinfo->info.num_defective_parts);
+		debugfs_create_u32("ndefective_parts_array_offset", 0400, qcom_socinfo->dbg_root,
+				   &qcom_socinfo->info.ndefective_parts_array_offset);
+		/* Fall through */
+	case SOCINFO_VERSION(0, 13):
+		qcom_socinfo->info.nproduct_id = __le32_to_cpu(info->nproduct_id);
+
+		debugfs_create_u32("nproduct_id", 0400, qcom_socinfo->dbg_root,
+				   &qcom_socinfo->info.nproduct_id);
+		DEBUGFS_ADD(info, chip_id);
+		/* Fall through */
 	case SOCINFO_VERSION(0, 12):
 		qcom_socinfo->info.chip_family =
 			__le32_to_cpu(info->chip_family);
-- 
2.26.2


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

* [PATCH 2/4] soc: qcom: socinfo: fix printing of pmic_model
  2020-05-25 16:48 [PATCH 1/4] soc: qcom: socinfo: add support for newer socinfo data Dmitry Baryshkov
@ 2020-05-25 16:48 ` Dmitry Baryshkov
  2020-05-29  2:37   ` Bjorn Andersson
  2020-05-25 16:48 ` [PATCH 3/4] soc: qcom: socinfo: add file with SoC info format version Dmitry Baryshkov
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 10+ messages in thread
From: Dmitry Baryshkov @ 2020-05-25 16:48 UTC (permalink / raw)
  To: linux-arm-msm; +Cc: Andy Gross, Bjorn Andersson, patches, linaro-kernel

Print sensible string instead of just "(null)" for unknown PMIC models.
Also as we are at it, do not let debugfs handler access past pmic_models
array.

Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
---
 drivers/soc/qcom/socinfo.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/drivers/soc/qcom/socinfo.c b/drivers/soc/qcom/socinfo.c
index 0e6adf1161c0..41f48c3447cc 100644
--- a/drivers/soc/qcom/socinfo.c
+++ b/drivers/soc/qcom/socinfo.c
@@ -269,7 +269,10 @@ static int qcom_show_pmic_model(struct seq_file *seq, void *p)
 	if (model < 0)
 		return -EINVAL;
 
-	seq_printf(seq, "%s\n", pmic_models[model]);
+	if (model <= ARRAY_SIZE(pmic_models) && pmic_models[model])
+		seq_printf(seq, "%s\n", pmic_models[model]);
+	else
+		seq_printf(seq, "unknown (%d)\n", model);
 
 	return 0;
 }
-- 
2.26.2


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

* [PATCH 3/4] soc: qcom: socinfo: add file with SoC info format version
  2020-05-25 16:48 [PATCH 1/4] soc: qcom: socinfo: add support for newer socinfo data Dmitry Baryshkov
  2020-05-25 16:48 ` [PATCH 2/4] soc: qcom: socinfo: fix printing of pmic_model Dmitry Baryshkov
@ 2020-05-25 16:48 ` Dmitry Baryshkov
  2020-05-29  2:37   ` Bjorn Andersson
  2020-05-25 16:48 ` [PATCH 4/4] soc: qcom: socinfo: add SM8250 entry to soc_id array Dmitry Baryshkov
  2020-05-29  2:35 ` [PATCH 1/4] soc: qcom: socinfo: add support for newer socinfo data Bjorn Andersson
  3 siblings, 1 reply; 10+ messages in thread
From: Dmitry Baryshkov @ 2020-05-25 16:48 UTC (permalink / raw)
  To: linux-arm-msm; +Cc: Andy Gross, Bjorn Andersson, patches, linaro-kernel

To ease debugging socinfo driver for newer chips add debugfs file
returning SoC info format version.

Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
---
 drivers/soc/qcom/socinfo.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/soc/qcom/socinfo.c b/drivers/soc/qcom/socinfo.c
index 41f48c3447cc..5f98949c7562 100644
--- a/drivers/soc/qcom/socinfo.c
+++ b/drivers/soc/qcom/socinfo.c
@@ -338,6 +338,9 @@ static void socinfo_debugfs_init(struct qcom_socinfo *qcom_socinfo,
 
 	qcom_socinfo->info.fmt = __le32_to_cpu(info->fmt);
 
+	debugfs_create_x32("info_fmt", 0400, qcom_socinfo->dbg_root,
+			   &qcom_socinfo->info.fmt);
+
 	switch (qcom_socinfo->info.fmt) {
 	case SOCINFO_VERSION(0, 15):
 		qcom_socinfo->info.nmodem_supported = __le32_to_cpu(info->nmodem_supported);
-- 
2.26.2


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

* [PATCH 4/4] soc: qcom: socinfo: add SM8250 entry to soc_id array
  2020-05-25 16:48 [PATCH 1/4] soc: qcom: socinfo: add support for newer socinfo data Dmitry Baryshkov
  2020-05-25 16:48 ` [PATCH 2/4] soc: qcom: socinfo: fix printing of pmic_model Dmitry Baryshkov
  2020-05-25 16:48 ` [PATCH 3/4] soc: qcom: socinfo: add file with SoC info format version Dmitry Baryshkov
@ 2020-05-25 16:48 ` Dmitry Baryshkov
  2020-05-29  2:38   ` Bjorn Andersson
  2020-05-29  2:35 ` [PATCH 1/4] soc: qcom: socinfo: add support for newer socinfo data Bjorn Andersson
  3 siblings, 1 reply; 10+ messages in thread
From: Dmitry Baryshkov @ 2020-05-25 16:48 UTC (permalink / raw)
  To: linux-arm-msm; +Cc: Andy Gross, Bjorn Andersson, patches, linaro-kernel

Add an entry for SM8250 SoC.

Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
---
 drivers/soc/qcom/socinfo.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/soc/qcom/socinfo.c b/drivers/soc/qcom/socinfo.c
index 5f98949c7562..3e08cf9836ae 100644
--- a/drivers/soc/qcom/socinfo.c
+++ b/drivers/soc/qcom/socinfo.c
@@ -217,6 +217,7 @@ static const struct soc_id soc_id[] = {
 	{ 312, "APQ8096SG" },
 	{ 321, "SDM845" },
 	{ 341, "SDA845" },
+	{ 356, "SM8250" },
 };
 
 static const char *socinfo_machine(struct device *dev, unsigned int id)
-- 
2.26.2


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

* Re: [PATCH 1/4] soc: qcom: socinfo: add support for newer socinfo data
  2020-05-25 16:48 [PATCH 1/4] soc: qcom: socinfo: add support for newer socinfo data Dmitry Baryshkov
                   ` (2 preceding siblings ...)
  2020-05-25 16:48 ` [PATCH 4/4] soc: qcom: socinfo: add SM8250 entry to soc_id array Dmitry Baryshkov
@ 2020-05-29  2:35 ` Bjorn Andersson
  2020-06-22  8:38   ` Dmitry Baryshkov
  3 siblings, 1 reply; 10+ messages in thread
From: Bjorn Andersson @ 2020-05-29  2:35 UTC (permalink / raw)
  To: Dmitry Baryshkov; +Cc: linux-arm-msm, Andy Gross, patches, linaro-kernel

On Mon 25 May 09:48 PDT 2020, Dmitry Baryshkov wrote:

> Add support for newer Qualcomm SoC info structures (up to version 0.15).
> 

Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org>

Regards,
Bjorn

> Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
> ---
>  drivers/soc/qcom/socinfo.c | 55 ++++++++++++++++++++++++++++++++++++++
>  1 file changed, 55 insertions(+)
> 
> diff --git a/drivers/soc/qcom/socinfo.c b/drivers/soc/qcom/socinfo.c
> index ebb49aee179b..0e6adf1161c0 100644
> --- a/drivers/soc/qcom/socinfo.c
> +++ b/drivers/soc/qcom/socinfo.c
> @@ -24,6 +24,7 @@
>  #define SOCINFO_VERSION(maj, min)  ((((maj) & 0xffff) << 16)|((min) & 0xffff))
>  
>  #define SMEM_SOCINFO_BUILD_ID_LENGTH           32
> +#define SMEM_SOCINFO_CHIP_ID_LENGTH            32
>  
>  /*
>   * SMEM item id, used to acquire handles to respective
> @@ -121,6 +122,16 @@ struct socinfo {
>  	__le32 chip_family;
>  	__le32 raw_device_family;
>  	__le32 raw_device_num;
> +	/* Version 13 */
> +	__le32 nproduct_id;
> +	char chip_id[SMEM_SOCINFO_CHIP_ID_LENGTH];
> +	/* Version 14 */
> +	__le32 num_clusters;
> +	__le32 ncluster_array_offset;
> +	__le32 num_defective_parts;
> +	__le32 ndefective_parts_array_offset;
> +	/* Version 15 */
> +	__le32 nmodem_supported;
>  };
>  
>  #ifdef CONFIG_DEBUG_FS
> @@ -135,6 +146,12 @@ struct socinfo_params {
>  	u32 raw_ver;
>  	u32 hw_plat;
>  	u32 fmt;
> +	u32 nproduct_id;
> +	u32 num_clusters;
> +	u32 ncluster_array_offset;
> +	u32 num_defective_parts;
> +	u32 ndefective_parts_array_offset;
> +	u32 nmodem_supported;
>  };
>  
>  struct smem_image_version {
> @@ -268,9 +285,19 @@ static int qcom_show_pmic_die_revision(struct seq_file *seq, void *p)
>  	return 0;
>  }
>  
> +static int qcom_show_chip_id(struct seq_file *seq, void *p)
> +{
> +	struct socinfo *socinfo = seq->private;
> +
> +	seq_printf(seq, "%s\n", socinfo->chip_id);
> +
> +	return 0;
> +}
> +
>  QCOM_OPEN(build_id, qcom_show_build_id);
>  QCOM_OPEN(pmic_model, qcom_show_pmic_model);
>  QCOM_OPEN(pmic_die_rev, qcom_show_pmic_die_revision);
> +QCOM_OPEN(chip_id, qcom_show_chip_id);
>  
>  #define DEFINE_IMAGE_OPS(type)					\
>  static int show_image_##type(struct seq_file *seq, void *p)		  \
> @@ -309,6 +336,34 @@ static void socinfo_debugfs_init(struct qcom_socinfo *qcom_socinfo,
>  	qcom_socinfo->info.fmt = __le32_to_cpu(info->fmt);
>  
>  	switch (qcom_socinfo->info.fmt) {
> +	case SOCINFO_VERSION(0, 15):
> +		qcom_socinfo->info.nmodem_supported = __le32_to_cpu(info->nmodem_supported);
> +
> +		debugfs_create_u32("nmodem_supported", 0400, qcom_socinfo->dbg_root,
> +				   &qcom_socinfo->info.nmodem_supported);
> +		/* Fall through */
> +	case SOCINFO_VERSION(0, 14):
> +		qcom_socinfo->info.num_clusters = __le32_to_cpu(info->num_clusters);
> +		qcom_socinfo->info.ncluster_array_offset = __le32_to_cpu(info->ncluster_array_offset);
> +		qcom_socinfo->info.num_defective_parts = __le32_to_cpu(info->num_defective_parts);
> +		qcom_socinfo->info.ndefective_parts_array_offset = __le32_to_cpu(info->ndefective_parts_array_offset);
> +
> +		debugfs_create_u32("num_clusters", 0400, qcom_socinfo->dbg_root,
> +				   &qcom_socinfo->info.num_clusters);
> +		debugfs_create_u32("ncluster_array_offset", 0400, qcom_socinfo->dbg_root,
> +				   &qcom_socinfo->info.ncluster_array_offset);
> +		debugfs_create_u32("num_defective_parts", 0400, qcom_socinfo->dbg_root,
> +				   &qcom_socinfo->info.num_defective_parts);
> +		debugfs_create_u32("ndefective_parts_array_offset", 0400, qcom_socinfo->dbg_root,
> +				   &qcom_socinfo->info.ndefective_parts_array_offset);
> +		/* Fall through */
> +	case SOCINFO_VERSION(0, 13):
> +		qcom_socinfo->info.nproduct_id = __le32_to_cpu(info->nproduct_id);
> +
> +		debugfs_create_u32("nproduct_id", 0400, qcom_socinfo->dbg_root,
> +				   &qcom_socinfo->info.nproduct_id);
> +		DEBUGFS_ADD(info, chip_id);
> +		/* Fall through */
>  	case SOCINFO_VERSION(0, 12):
>  		qcom_socinfo->info.chip_family =
>  			__le32_to_cpu(info->chip_family);
> -- 
> 2.26.2
> 

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

* Re: [PATCH 2/4] soc: qcom: socinfo: fix printing of pmic_model
  2020-05-25 16:48 ` [PATCH 2/4] soc: qcom: socinfo: fix printing of pmic_model Dmitry Baryshkov
@ 2020-05-29  2:37   ` Bjorn Andersson
  0 siblings, 0 replies; 10+ messages in thread
From: Bjorn Andersson @ 2020-05-29  2:37 UTC (permalink / raw)
  To: Dmitry Baryshkov; +Cc: linux-arm-msm, Andy Gross, patches, linaro-kernel

On Mon 25 May 09:48 PDT 2020, Dmitry Baryshkov wrote:

> Print sensible string instead of just "(null)" for unknown PMIC models.
> Also as we are at it, do not let debugfs handler access past pmic_models
> array.
> 

Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org>

Regards,
Bjorn

> Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
> ---
>  drivers/soc/qcom/socinfo.c | 5 ++++-
>  1 file changed, 4 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/soc/qcom/socinfo.c b/drivers/soc/qcom/socinfo.c
> index 0e6adf1161c0..41f48c3447cc 100644
> --- a/drivers/soc/qcom/socinfo.c
> +++ b/drivers/soc/qcom/socinfo.c
> @@ -269,7 +269,10 @@ static int qcom_show_pmic_model(struct seq_file *seq, void *p)
>  	if (model < 0)
>  		return -EINVAL;
>  
> -	seq_printf(seq, "%s\n", pmic_models[model]);
> +	if (model <= ARRAY_SIZE(pmic_models) && pmic_models[model])
> +		seq_printf(seq, "%s\n", pmic_models[model]);
> +	else
> +		seq_printf(seq, "unknown (%d)\n", model);
>  
>  	return 0;
>  }
> -- 
> 2.26.2
> 

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

* Re: [PATCH 3/4] soc: qcom: socinfo: add file with SoC info format version
  2020-05-25 16:48 ` [PATCH 3/4] soc: qcom: socinfo: add file with SoC info format version Dmitry Baryshkov
@ 2020-05-29  2:37   ` Bjorn Andersson
  0 siblings, 0 replies; 10+ messages in thread
From: Bjorn Andersson @ 2020-05-29  2:37 UTC (permalink / raw)
  To: Dmitry Baryshkov; +Cc: linux-arm-msm, Andy Gross, patches, linaro-kernel

On Mon 25 May 09:48 PDT 2020, Dmitry Baryshkov wrote:

> To ease debugging socinfo driver for newer chips add debugfs file
> returning SoC info format version.
> 

Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org>

Regards,
Bjorn

> Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
> ---
>  drivers/soc/qcom/socinfo.c | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/drivers/soc/qcom/socinfo.c b/drivers/soc/qcom/socinfo.c
> index 41f48c3447cc..5f98949c7562 100644
> --- a/drivers/soc/qcom/socinfo.c
> +++ b/drivers/soc/qcom/socinfo.c
> @@ -338,6 +338,9 @@ static void socinfo_debugfs_init(struct qcom_socinfo *qcom_socinfo,
>  
>  	qcom_socinfo->info.fmt = __le32_to_cpu(info->fmt);
>  
> +	debugfs_create_x32("info_fmt", 0400, qcom_socinfo->dbg_root,
> +			   &qcom_socinfo->info.fmt);
> +
>  	switch (qcom_socinfo->info.fmt) {
>  	case SOCINFO_VERSION(0, 15):
>  		qcom_socinfo->info.nmodem_supported = __le32_to_cpu(info->nmodem_supported);
> -- 
> 2.26.2
> 

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

* Re: [PATCH 4/4] soc: qcom: socinfo: add SM8250 entry to soc_id array
  2020-05-25 16:48 ` [PATCH 4/4] soc: qcom: socinfo: add SM8250 entry to soc_id array Dmitry Baryshkov
@ 2020-05-29  2:38   ` Bjorn Andersson
  0 siblings, 0 replies; 10+ messages in thread
From: Bjorn Andersson @ 2020-05-29  2:38 UTC (permalink / raw)
  To: Dmitry Baryshkov; +Cc: linux-arm-msm, Andy Gross, patches, linaro-kernel

On Mon 25 May 09:48 PDT 2020, Dmitry Baryshkov wrote:

> Add an entry for SM8250 SoC.
> 

Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org>

Regards,
Bjorn

> Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
> ---
>  drivers/soc/qcom/socinfo.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/soc/qcom/socinfo.c b/drivers/soc/qcom/socinfo.c
> index 5f98949c7562..3e08cf9836ae 100644
> --- a/drivers/soc/qcom/socinfo.c
> +++ b/drivers/soc/qcom/socinfo.c
> @@ -217,6 +217,7 @@ static const struct soc_id soc_id[] = {
>  	{ 312, "APQ8096SG" },
>  	{ 321, "SDM845" },
>  	{ 341, "SDA845" },
> +	{ 356, "SM8250" },
>  };
>  
>  static const char *socinfo_machine(struct device *dev, unsigned int id)
> -- 
> 2.26.2
> 

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

* Re: [PATCH 1/4] soc: qcom: socinfo: add support for newer socinfo data
  2020-05-29  2:35 ` [PATCH 1/4] soc: qcom: socinfo: add support for newer socinfo data Bjorn Andersson
@ 2020-06-22  8:38   ` Dmitry Baryshkov
  2020-06-23 19:45     ` Bjorn Andersson
  0 siblings, 1 reply; 10+ messages in thread
From: Dmitry Baryshkov @ 2020-06-22  8:38 UTC (permalink / raw)
  To: Bjorn Andersson
  Cc: open list:DRM DRIVER FOR MSM ADRENO GPU, Andy Gross,
	Patch Tracking, linaro-kernel

On Fri, 29 May 2020 at 05:36, Bjorn Andersson
<bjorn.andersson@linaro.org> wrote:
>
> On Mon 25 May 09:48 PDT 2020, Dmitry Baryshkov wrote:
>
> > Add support for newer Qualcomm SoC info structures (up to version 0.15).
> >
>
> Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org>

Gratuitous ping for these four patches.


-- 
With best wishes
Dmitry

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

* Re: [PATCH 1/4] soc: qcom: socinfo: add support for newer socinfo data
  2020-06-22  8:38   ` Dmitry Baryshkov
@ 2020-06-23 19:45     ` Bjorn Andersson
  0 siblings, 0 replies; 10+ messages in thread
From: Bjorn Andersson @ 2020-06-23 19:45 UTC (permalink / raw)
  To: Dmitry Baryshkov
  Cc: open list:DRM DRIVER FOR MSM ADRENO GPU, Andy Gross,
	Patch Tracking, linaro-kernel

On Mon 22 Jun 01:38 PDT 2020, Dmitry Baryshkov wrote:

> On Fri, 29 May 2020 at 05:36, Bjorn Andersson
> <bjorn.andersson@linaro.org> wrote:
> >
> > On Mon 25 May 09:48 PDT 2020, Dmitry Baryshkov wrote:
> >
> > > Add support for newer Qualcomm SoC info structures (up to version 0.15).
> > >
> >
> > Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org>
> 
> Gratuitous ping for these four patches.
> 

Thanks for the ping, series now applied.

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

end of thread, other threads:[~2020-06-23 19:48 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-25 16:48 [PATCH 1/4] soc: qcom: socinfo: add support for newer socinfo data Dmitry Baryshkov
2020-05-25 16:48 ` [PATCH 2/4] soc: qcom: socinfo: fix printing of pmic_model Dmitry Baryshkov
2020-05-29  2:37   ` Bjorn Andersson
2020-05-25 16:48 ` [PATCH 3/4] soc: qcom: socinfo: add file with SoC info format version Dmitry Baryshkov
2020-05-29  2:37   ` Bjorn Andersson
2020-05-25 16:48 ` [PATCH 4/4] soc: qcom: socinfo: add SM8250 entry to soc_id array Dmitry Baryshkov
2020-05-29  2:38   ` Bjorn Andersson
2020-05-29  2:35 ` [PATCH 1/4] soc: qcom: socinfo: add support for newer socinfo data Bjorn Andersson
2020-06-22  8:38   ` Dmitry Baryshkov
2020-06-23 19:45     ` Bjorn Andersson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).