1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright 2020 Arm Limited
6 #define pr_fmt(fmt) "SMCCC: SOC_ID: " fmt
8 #include <linux/arm-smccc.h>
9 #include <linux/bitfield.h>
10 #include <linux/device.h>
11 #include <linux/module.h>
12 #include <linux/kernel.h>
13 #include <linux/slab.h>
14 #include <linux/sys_soc.h>
16 #define SMCCC_SOC_ID_JEP106_BANK_IDX_MASK GENMASK(30, 24)
18 * As per the SMC Calling Convention specification v1.2 (ARM DEN 0028C)
19 * Section 7.4 SMCCC_ARCH_SOC_ID bits[23:16] are JEP-106 identification
20 * code with parity bit for the SiP. We can drop the parity bit.
22 #define SMCCC_SOC_ID_JEP106_ID_CODE_MASK GENMASK(22, 16)
23 #define SMCCC_SOC_ID_IMP_DEF_SOC_ID_MASK GENMASK(15, 0)
25 #define JEP106_BANK_CONT_CODE(x) \
26 (u8)(FIELD_GET(SMCCC_SOC_ID_JEP106_BANK_IDX_MASK, (x)))
27 #define JEP106_ID_CODE(x) \
28 (u8)(FIELD_GET(SMCCC_SOC_ID_JEP106_ID_CODE_MASK, (x)))
29 #define IMP_DEF_SOC_ID(x) \
30 (u16)(FIELD_GET(SMCCC_SOC_ID_IMP_DEF_SOC_ID_MASK, (x)))
32 static struct soc_device
*soc_dev
;
33 static struct soc_device_attribute
*soc_dev_attr
;
35 static int __init
smccc_soc_init(void)
37 struct arm_smccc_res res
;
38 int soc_id_rev
, soc_id_version
;
39 static char soc_id_str
[20], soc_id_rev_str
[12];
40 static char soc_id_jep106_id_str
[12];
42 if (arm_smccc_get_version() < ARM_SMCCC_VERSION_1_2
)
45 if (arm_smccc_1_1_get_conduit() == SMCCC_CONDUIT_NONE
) {
46 pr_err("%s: invalid SMCCC conduit\n", __func__
);
50 arm_smccc_1_1_invoke(ARM_SMCCC_ARCH_FEATURES_FUNC_ID
,
51 ARM_SMCCC_ARCH_SOC_ID
, &res
);
53 if (res
.a0
== SMCCC_RET_NOT_SUPPORTED
) {
54 pr_info("ARCH_SOC_ID not implemented, skipping ....\n");
58 if ((int)res
.a0
< 0) {
59 pr_info("ARCH_FEATURES(ARCH_SOC_ID) returned error: %lx\n",
64 arm_smccc_1_1_invoke(ARM_SMCCC_ARCH_SOC_ID
, 0, &res
);
65 if ((int)res
.a0
< 0) {
66 pr_err("ARCH_SOC_ID(0) returned error: %lx\n", res
.a0
);
70 soc_id_version
= res
.a0
;
72 arm_smccc_1_1_invoke(ARM_SMCCC_ARCH_SOC_ID
, 1, &res
);
73 if ((int)res
.a0
< 0) {
74 pr_err("ARCH_SOC_ID(1) returned error: %lx\n", res
.a0
);
80 soc_dev_attr
= kzalloc(sizeof(*soc_dev_attr
), GFP_KERNEL
);
84 sprintf(soc_id_rev_str
, "0x%08x", soc_id_rev
);
85 sprintf(soc_id_jep106_id_str
, "jep106:%02x%02x",
86 JEP106_BANK_CONT_CODE(soc_id_version
),
87 JEP106_ID_CODE(soc_id_version
));
88 sprintf(soc_id_str
, "%s:%04x", soc_id_jep106_id_str
,
89 IMP_DEF_SOC_ID(soc_id_version
));
91 soc_dev_attr
->soc_id
= soc_id_str
;
92 soc_dev_attr
->revision
= soc_id_rev_str
;
93 soc_dev_attr
->family
= soc_id_jep106_id_str
;
95 soc_dev
= soc_device_register(soc_dev_attr
);
96 if (IS_ERR(soc_dev
)) {
98 return PTR_ERR(soc_dev
);
101 pr_info("ID = %s Revision = %s\n", soc_dev_attr
->soc_id
,
102 soc_dev_attr
->revision
);
106 module_init(smccc_soc_init
);
108 static void __exit
smccc_soc_exit(void)
111 soc_device_unregister(soc_dev
);
114 module_exit(smccc_soc_exit
);