Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1517141

[RFC] base: soc: Add few more soc details in soc attribute

From Imran Khan <kimran@codeaurora.org>
Newsgroups linux.kernel
Subject [RFC] base: soc: Add few more soc details in soc attribute
Date 2016-11-08 13:50 +0100
Message-ID <sBe0G-Zj-19@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


The commit adds three more fields in the generic soc attribute structure.
The vendor field provides information about SoC vendor, it may be argued
that vendor is more or less conveying the same information as family but
nonetheless there is nothing preventing two vendors from having similar
family names for their socs. Also family and vendor fields combined
together provide a more thorough information.
The serial_num field would contain serial number of the soc.
Lastly as the same soc can come from multiple foundries, involving
different processes, having a foundry_id field to convey this information
can be useful.

Signed-off-by: Imran Khan <kimran@codeaurora.org>
---
 include/linux/sys_soc.h | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/include/linux/sys_soc.h b/include/linux/sys_soc.h
index 2739ccb..e2eadd8 100644
--- a/include/linux/sys_soc.h
+++ b/include/linux/sys_soc.h
@@ -13,6 +13,9 @@ struct soc_device_attribute {
 	const char *family;
 	const char *revision;
 	const char *soc_id;
+	const char *vendor;
+	const char *serial_num;
+	const char *foundry_id;
 };
 
 /**
-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project

Back to linux.kernel | Previous | Next | Find similar | Unroll thread


Thread

[RFC] base: soc: Add few more soc details in soc attribute Imran Khan <kimran@codeaurora.org> - 2016-11-08 13:50 +0100

csiph-web