Commit 150019de authored by Peng Fan's avatar Peng Fan Committed by Shawn Guo

firmware: imx: scu: use soc name for soc_id

Same as soc-imx8m and soc-imx driver, use soc name for soc_id which is
user friendly.
Signed-off-by: default avatarPeng Fan <peng.fan@nxp.com>
Signed-off-by: default avatarShawn Guo <shawnguo@kernel.org>
parent 4b9ccf04
...@@ -78,6 +78,22 @@ static int imx_scu_soc_id(void) ...@@ -78,6 +78,22 @@ static int imx_scu_soc_id(void)
return msg.data.resp.id; return msg.data.resp.id;
} }
static const char *imx_scu_soc_name(u32 id)
{
switch (id) {
case 0x1:
return "i.MX8QM";
case 0x2:
return "i.MX8QXP";
case 0xe:
return "i.MX8DXL";
default:
break;
}
return "NULL";
}
int imx_scu_soc_init(struct device *dev) int imx_scu_soc_init(struct device *dev)
{ {
struct soc_device_attribute *soc_dev_attr; struct soc_device_attribute *soc_dev_attr;
...@@ -113,9 +129,7 @@ int imx_scu_soc_init(struct device *dev) ...@@ -113,9 +129,7 @@ int imx_scu_soc_init(struct device *dev)
/* format soc_id value passed from SCU firmware */ /* format soc_id value passed from SCU firmware */
val = id & 0x1f; val = id & 0x1f;
soc_dev_attr->soc_id = devm_kasprintf(dev, GFP_KERNEL, "0x%x", val); soc_dev_attr->soc_id = imx_scu_soc_name(val);
if (!soc_dev_attr->soc_id)
return -ENOMEM;
/* format revision value passed from SCU firmware */ /* format revision value passed from SCU firmware */
val = (id >> 5) & 0xf; val = (id >> 5) & 0xf;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment