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

From: Imran Khan
Date: Tue Nov 08 2016 - 07:48:49 EST


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@xxxxxxxxxxxxxx>
---
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