blob: c01d04785d6716cc93a064bc812168e8eafb55b7 [file] [log] [blame]
Colin Cross73625e32010-06-23 15:49:17 -07001/*
Colin Cross73625e32010-06-23 15:49:17 -07002 * Copyright (C) 2010 Google, Inc.
Danny Huang7495b2e2013-03-18 19:17:34 +08003 * Copyright (c) 2013, NVIDIA CORPORATION. All rights reserved.
Colin Cross73625e32010-06-23 15:49:17 -07004 *
5 * Author:
6 * Colin Cross <ccross@android.com>
7 *
8 * This software is licensed under the terms of the GNU General Public
9 * License version 2, as published by the Free Software Foundation, and
10 * may be copied, distributed, and modified under those terms.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 */
18
Olof Johansson9a1086d2011-10-13 00:31:20 -070019#ifndef __MACH_TEGRA_FUSE_H
20#define __MACH_TEGRA_FUSE_H
21
Olof Johansson9a1086d2011-10-13 00:31:20 -070022#define SKU_ID_T20 8
23#define SKU_ID_T25SE 20
24#define SKU_ID_AP25 23
25#define SKU_ID_T25 24
26#define SKU_ID_AP25E 27
27#define SKU_ID_T25E 28
28
Peter De Schrijver35b14982012-02-10 01:47:41 +020029#define TEGRA20 0x20
30#define TEGRA30 0x30
Hiroshi Doyu7b30d452013-01-24 01:10:22 +000031#define TEGRA114 0x35
Joseph Lo73944472013-10-08 12:50:03 +080032#define TEGRA124 0x40
Peter De Schrijver35b14982012-02-10 01:47:41 +020033
Joseph Lo4b3e2ed2013-05-20 18:39:24 +080034#ifndef __ASSEMBLY__
35enum tegra_revision {
36 TEGRA_REVISION_UNKNOWN = 0,
37 TEGRA_REVISION_A01,
38 TEGRA_REVISION_A02,
39 TEGRA_REVISION_A03,
40 TEGRA_REVISION_A03p,
41 TEGRA_REVISION_A04,
42 TEGRA_REVISION_MAX,
43};
44
Olof Johansson9a1086d2011-10-13 00:31:20 -070045extern int tegra_sku_id;
46extern int tegra_cpu_process_id;
47extern int tegra_core_process_id;
Peter De Schrijver4c4ad662012-02-10 01:47:42 +020048extern int tegra_chip_id;
Danny Huangf8ddda72012-11-15 15:42:34 +080049extern int tegra_cpu_speedo_id; /* only exist in Tegra30 and later */
Danny Huang25cd5a32012-11-15 15:42:33 +080050extern int tegra_soc_speedo_id;
Olof Johansson9a1086d2011-10-13 00:31:20 -070051extern enum tegra_revision tegra_revision;
52
Olof Johanssondee47182011-10-17 16:39:24 -070053extern int tegra_bct_strapping;
54
Colin Cross73625e32010-06-23 15:49:17 -070055unsigned long long tegra_chip_uid(void);
Colin Cross73625e32010-06-23 15:49:17 -070056void tegra_init_fuse(void);
Danny Huang1f851a22012-11-15 15:42:32 +080057bool tegra_spare_fuse(int bit);
58u32 tegra_fuse_readl(unsigned long offset);
Olof Johansson9a1086d2011-10-13 00:31:20 -070059
Danny Huang25cd5a32012-11-15 15:42:33 +080060#ifdef CONFIG_ARCH_TEGRA_2x_SOC
61void tegra20_init_speedo_data(void);
62#else
63static inline void tegra20_init_speedo_data(void) {}
64#endif
65
Danny Huangf8ddda72012-11-15 15:42:34 +080066#ifdef CONFIG_ARCH_TEGRA_3x_SOC
67void tegra30_init_speedo_data(void);
68#else
69static inline void tegra30_init_speedo_data(void) {}
70#endif
71
Danny Huang7495b2e2013-03-18 19:17:34 +080072#ifdef CONFIG_ARCH_TEGRA_114_SOC
73void tegra114_init_speedo_data(void);
74#else
75static inline void tegra114_init_speedo_data(void) {}
76#endif
Joseph Lo4b3e2ed2013-05-20 18:39:24 +080077#endif /* __ASSEMBLY__ */
Danny Huang7495b2e2013-03-18 19:17:34 +080078
Olof Johansson9a1086d2011-10-13 00:31:20 -070079#endif