2023-01-27 04:13:00

by Naman Jain

[permalink] [raw]
Subject: [PATCH v2] soc: qcom: socinfo: Add support for new field in revision 17

Add support for new field coming with socinfo structure under v17 to get
hardware platform's oem variant id. This is to enable OEMs to have minor
changes in the board, but to use the same platform subtype as the one
supported by Qualcomm. The new field is to be used in platform overlay
file. Default value is 0, reserved for Qualcomm platforms. Also, add
debugfs support to read this field for a device.

Signed-off-by: Naman Jain <[email protected]>
---
v1 -> v2: Removed change-id, included SOB line

drivers/soc/qcom/socinfo.c | 8 ++++++++
1 file changed, 8 insertions(+)

diff --git a/drivers/soc/qcom/socinfo.c b/drivers/soc/qcom/socinfo.c
index 10efdbcfdf05..10cdd32ce74d 100644
--- a/drivers/soc/qcom/socinfo.c
+++ b/drivers/soc/qcom/socinfo.c
@@ -174,6 +174,8 @@ struct socinfo {
__le32 pcode;
__le32 npartnamemap_offset;
__le32 nnum_partname_mapping;
+ /* Version 17 */
+ __le32 oem_variant;
};

#ifdef CONFIG_DEBUG_FS
@@ -196,6 +198,7 @@ struct socinfo_params {
u32 nmodem_supported;
u32 feature_code;
u32 pcode;
+ u32 oem_variant;
};

struct smem_image_version {
@@ -519,6 +522,11 @@ static void socinfo_debugfs_init(struct qcom_socinfo *qcom_socinfo,
&qcom_socinfo->info.fmt);

switch (qcom_socinfo->info.fmt) {
+ case SOCINFO_VERSION(0, 17):
+ qcom_socinfo->info.oem_variant = __le32_to_cpu(info->oem_variant);
+ debugfs_create_u32("oem_variant", 0444, qcom_socinfo->dbg_root,
+ &qcom_socinfo->info.oem_variant);
+ fallthrough;
case SOCINFO_VERSION(0, 16):
qcom_socinfo->info.feature_code = __le32_to_cpu(info->feature_code);
qcom_socinfo->info.pcode = __le32_to_cpu(info->pcode);
--
2.17.1



2023-01-27 05:43:11

by Dmitry Baryshkov

[permalink] [raw]
Subject: Re: [PATCH v2] soc: qcom: socinfo: Add support for new field in revision 17

On Fri, 27 Jan 2023 at 06:12, Naman Jain <[email protected]> wrote:
>
> Add support for new field coming with socinfo structure under v17 to get
> hardware platform's oem variant id. This is to enable OEMs to have minor
> changes in the board, but to use the same platform subtype as the one
> supported by Qualcomm. The new field is to be used in platform overlay
> file. Default value is 0, reserved for Qualcomm platforms. Also, add
> debugfs support to read this field for a device.
>
> Signed-off-by: Naman Jain <[email protected]>

Reviewed-by: Dmitry Baryshkov <[email protected]>

> ---
> v1 -> v2: Removed change-id, included SOB line
>
> drivers/soc/qcom/socinfo.c | 8 ++++++++
> 1 file changed, 8 insertions(+)
>
> diff --git a/drivers/soc/qcom/socinfo.c b/drivers/soc/qcom/socinfo.c
> index 10efdbcfdf05..10cdd32ce74d 100644
> --- a/drivers/soc/qcom/socinfo.c
> +++ b/drivers/soc/qcom/socinfo.c
> @@ -174,6 +174,8 @@ struct socinfo {
> __le32 pcode;
> __le32 npartnamemap_offset;
> __le32 nnum_partname_mapping;
> + /* Version 17 */
> + __le32 oem_variant;
> };
>
> #ifdef CONFIG_DEBUG_FS
> @@ -196,6 +198,7 @@ struct socinfo_params {
> u32 nmodem_supported;
> u32 feature_code;
> u32 pcode;
> + u32 oem_variant;
> };
>
> struct smem_image_version {
> @@ -519,6 +522,11 @@ static void socinfo_debugfs_init(struct qcom_socinfo *qcom_socinfo,
> &qcom_socinfo->info.fmt);
>
> switch (qcom_socinfo->info.fmt) {
> + case SOCINFO_VERSION(0, 17):
> + qcom_socinfo->info.oem_variant = __le32_to_cpu(info->oem_variant);
> + debugfs_create_u32("oem_variant", 0444, qcom_socinfo->dbg_root,
> + &qcom_socinfo->info.oem_variant);
> + fallthrough;
> case SOCINFO_VERSION(0, 16):
> qcom_socinfo->info.feature_code = __le32_to_cpu(info->feature_code);
> qcom_socinfo->info.pcode = __le32_to_cpu(info->pcode);
> --
> 2.17.1
>


--
With best wishes
Dmitry

2023-01-29 08:12:39

by Mukesh Ojha

[permalink] [raw]
Subject: Re: soc: qcom: socinfo: Add support for new field in revision 17

>Add support for new field coming with socinfo structure under v17 to get
>hardware platform's oem variant id. This is to enable OEMs to have minor
>changes in the board, but to use the same platform subtype as the one
>supported by Qualcomm. The new field is to be used in platform overlay
>file. Default value is 0, reserved for Qualcomm platforms. Also, add
>debugfs support to read this field for a device.
>
>Signed-off-by: Naman Jain <[email protected]>

Reviewed-by: Mukesh Ojha <[email protected]>

-Mukesh

2023-02-06 22:28:59

by Bjorn Andersson

[permalink] [raw]
Subject: Re: [PATCH v2] soc: qcom: socinfo: Add support for new field in revision 17

On Fri, 27 Jan 2023 09:42:00 +0530, Naman Jain wrote:
> Add support for new field coming with socinfo structure under v17 to get
> hardware platform's oem variant id. This is to enable OEMs to have minor
> changes in the board, but to use the same platform subtype as the one
> supported by Qualcomm. The new field is to be used in platform overlay
> file. Default value is 0, reserved for Qualcomm platforms. Also, add
> debugfs support to read this field for a device.
>
> [...]

Applied, thanks!

[1/1] soc: qcom: socinfo: Add support for new field in revision 17
commit: 6bdab60d5cbd7996e371305433e943a82cde0d4c

Best regards,
--
Bjorn Andersson <[email protected]>