summaryrefslogtreecommitdiff
path: root/arch/arm/mach-tegra/common.c
diff options
context:
space:
mode:
authorBhuvanchandra DV <bhuvanchandra.dv@toradex.com>2017-02-20 23:14:00 +0530
committerMarcel Ziswiler <marcel.ziswiler@toradex.com>2017-03-31 10:25:39 +0200
commiteb7023a9a63f05f9b6212cda7d6efedd8691e349 (patch)
treea0691bd73ed8fb60b40f7b2078e47b1d6404fcfb /arch/arm/mach-tegra/common.c
parent8dd025ef21c4136f4b6bf1e4fbcf87616541e2bc (diff)
arm: tegra: soc: Use sys_soc to expose SoC UID
Use the standard sys_soc interface to expose the SoC UID information. e.g. ~# cat /sys/bus/soc/devices/soc0/machine NVIDIA Tegra ~# cat /sys/bus/soc/devices/soc0/family NVIDIA Tegra30 ~# cat /sys/bus/soc/devices/soc0/revision A03 ~# cat /sys/bus/soc/devices/soc0/soc_id 98317451306464792 Signed-off-by: Bhuvanchandra DV <bhuvanchandra.dv@toradex.com> Acked-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
Diffstat (limited to 'arch/arm/mach-tegra/common.c')
-rw-r--r--arch/arm/mach-tegra/common.c50
1 files changed, 50 insertions, 0 deletions
diff --git a/arch/arm/mach-tegra/common.c b/arch/arm/mach-tegra/common.c
index d5acd8bdea76..33ec50c70d3d 100644
--- a/arch/arm/mach-tegra/common.c
+++ b/arch/arm/mach-tegra/common.c
@@ -30,6 +30,7 @@
#include <linux/sched.h>
#include <linux/cpufreq.h>
#include <linux/of.h>
+#include <linux/sys_soc.h>
#include <asm/hardware/cache-l2x0.h>
#include <asm/system.h>
@@ -1104,6 +1105,55 @@ void __init tegra_release_bootloader_fb(void)
pr_err("Failed to free bootloader fb2.\n");
}
+int __init tegra_soc_device_init(const char *machine)
+{
+ struct soc_device *soc_dev;
+ struct soc_device_attribute *soc_dev_attr;
+
+ soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
+ if (!soc_dev_attr)
+ return -ENOMEM;
+
+ soc_dev_attr->machine = kasprintf(GFP_KERNEL, machine);
+ soc_dev_attr->soc_id = kasprintf(GFP_KERNEL, "%llx", tegra_chip_uid());
+ soc_dev_attr->family = kasprintf(GFP_KERNEL, "NVIDIA Tegra%x", tegra_get_chipid());
+
+ switch (tegra_get_revision()) {
+ case TEGRA_REVISION_UNKNOWN:
+ soc_dev_attr->revision = kasprintf(GFP_KERNEL, "Unknown");
+ break;
+ case TEGRA_REVISION_A01:
+ soc_dev_attr->revision = kasprintf(GFP_KERNEL, "A01");
+ break;
+ case TEGRA_REVISION_A02:
+ soc_dev_attr->revision = kasprintf(GFP_KERNEL, "A02");
+ break;
+ case TEGRA_REVISION_A03:
+ soc_dev_attr->revision = kasprintf(GFP_KERNEL, "A03");
+ break;
+ case TEGRA_REVISION_A03p:
+ soc_dev_attr->revision = kasprintf(GFP_KERNEL, "A03p");
+ break;
+ case TEGRA_REVISION_A04:
+ soc_dev_attr->revision = kasprintf(GFP_KERNEL, "A04");
+ break;
+ case TEGRA_REVISION_A04p:
+ soc_dev_attr->revision = kasprintf(GFP_KERNEL, "A04p");
+ break;
+ case TEGRA_REVISION_MAX:
+ soc_dev_attr->revision = kasprintf(GFP_KERNEL, "max");
+ break;
+ }
+
+ soc_dev = soc_device_register(soc_dev_attr);
+ if (IS_ERR_OR_NULL(soc_dev)) {
+ kfree(soc_dev_attr);
+ return -1;
+ }
+
+ return 0;
+}
+
#ifdef CONFIG_TEGRA_CONVSERVATIVE_GOV_ON_EARLYSUPSEND
char cpufreq_default_gov[CONFIG_NR_CPUS][MAX_GOV_NAME_LEN];
char *cpufreq_conservative_gov = "conservative";