base_utils: add get_cpu_family helper

Several tests (especially graphics tests) need to distinguish not just
between intel and arm, but also, which kind of ARM SoC on which they are
running.

This patch just adds the helpers but doesn't use them.
Later patches will start using them, particularly in some of the graphics
tests.

Signed-off-by: Daniel Kurtz <[email protected]>

BUG=none
TEST=none

Change-Id: I70c3dcd3bd999546e1a150351682a4263df3fbf0
Reviewed-on: https://chromium-review.googlesource.com/188819
Reviewed-by: Ilja Friedel <[email protected]>
Commit-Queue: Daniel Kurtz <[email protected]>
Tested-by: Daniel Kurtz <[email protected]>
diff --git a/client/bin/base_utils.py b/client/bin/base_utils.py
index 72cd73a..5d74794 100644
--- a/client/bin/base_utils.py
+++ b/client/bin/base_utils.py
@@ -310,6 +310,23 @@
     else:
         return 'i386'
 
+def get_arm_soc_family():
+    """Work out which ARM SoC we're running on"""
+    f = open('/proc/cpuinfo', 'r')
+    cpuinfo = f.readlines()
+    f.close()
+    if list_grep(cpuinfo, 'EXYNOS5'):
+        return 'exynos5'
+    elif list_grep(cpuinfo, 'Tegra'):
+        return 'tegra'
+    return 'arm'
+
+def get_cpu_family():
+    """Like get_cpu_arch, but for ARM, returns the SoC family name"""
+    family = get_cpu_arch()
+    if family == 'arm':
+       family = get_arm_soc_family()
+    return family
 
 def get_current_kernel_arch():
     """Get the machine architecture, now just a wrap of 'uname -m'."""