diff options
Diffstat (limited to 'arch/arm/include/asm/arch-tegra/ap.h')
| -rw-r--r-- | arch/arm/include/asm/arch-tegra/ap.h | 20 | 
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 5999f5546..f6d08c659 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); |