summaryrefslogtreecommitdiff
path: root/arch/arm/include/asm/arch-tegra/ap.h
diff options
context:
space:
mode:
authorTom Warren <twarren@nvidia.com>2013-04-10 10:32:32 -0700
committerTom Warren <twarren@nvidia.com>2013-04-15 11:01:38 -0700
commit49493cb7144f0c51a5aaecc75fcd1b3f157633ba (patch)
treef83f228d8367c5920f93af85ebedfb7697355144 /arch/arm/include/asm/arch-tegra/ap.h
parentd94c2dbd0a55d742ab6ed9bd0c51b27ceed4084e (diff)
Tegra: Split tegra_get_chip_type() into soc & sku funcs
As suggested by Stephen Warren, use tegra_get_chip() to return the pure CHIPID for a Tegra SoC (i.e. 0x20 for Tegra20, 0x30 for Tegra30, etc.) and rename tegra_get_chip_type() to reflect its true function, i.e. tegra_get_chip_sku(), which returns an ID like TEGRA_SOC_T25, TEGRA_SOC_T33, etc. Signed-off-by: Tom Warren <twarren@nvidia.com> Reviewed-by: Stephen Warren <swarren@nvidia.com>
Diffstat (limited to 'arch/arm/include/asm/arch-tegra/ap.h')
-rw-r--r--arch/arm/include/asm/arch-tegra/ap.h20
1 files changed, 18 insertions, 2 deletions
diff --git a/arch/arm/include/asm/arch-tegra/ap.h b/arch/arm/include/asm/arch-tegra/ap.h
index 5999f55460..f6d08c6598 100644
--- a/arch/arm/include/asm/arch-tegra/ap.h
+++ b/arch/arm/include/asm/arch-tegra/ap.h
@@ -59,9 +59,25 @@
extern void _start(void);
/**
- * Works out the SOC type used for clocks settings
+ * Works out the SOC/SKU type used for clocks settings
*
* @return SOC type - see TEGRA_SOC...
*/
-int tegra_get_chip_type(void);
+int tegra_get_chip_sku(void);
+
+/**
+ * Returns the pure SOC (chip ID) from the HIDREV register
+ *
+ * @return SOC ID - see CHIPID_TEGRAxx...
+ */
+int tegra_get_chip(void);
+
+/**
+ * Returns the SKU ID from the sku_info register
+ *
+ * @return SKU ID - see SKU_ID_Txx...
+ */
+int tegra_get_sku_info(void);
+
+/* Do any chip-specific cache config */
void config_cache(void);