blob: f7db0782a6b6bdbcc256a06936831ee0d38f49e7 [file] [log] [blame]
Colin Cross73625e32010-06-23 15:49:17 -07001/*
2 * arch/arm/mach-tegra/fuse.c
3 *
4 * Copyright (C) 2010 Google, Inc.
5 *
6 * Author:
7 * Colin Cross <ccross@android.com>
8 *
9 * This software is licensed under the terms of the GNU General Public
10 * License version 2, as published by the Free Software Foundation, and
11 * may be copied, distributed, and modified under those terms.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 */
19
20#include <linux/kernel.h>
21#include <linux/io.h>
Linus Torvalds34800592012-03-27 16:41:24 -070022#include <linux/export.h>
Prashant Gaikwadc7736ed2013-01-11 13:16:19 +053023#include <linux/tegra-soc.h>
Colin Cross73625e32010-06-23 15:49:17 -070024
Colin Cross73625e32010-06-23 15:49:17 -070025#include "fuse.h"
Stephen Warren2be39c02012-10-04 14:24:09 -060026#include "iomap.h"
Olof Johanssond262f492011-10-13 00:14:08 -070027#include "apbio.h"
Colin Cross73625e32010-06-23 15:49:17 -070028
29#define FUSE_UID_LOW 0x108
30#define FUSE_UID_HIGH 0x10c
31#define FUSE_SKU_INFO 0x110
Danny Huang1f851a22012-11-15 15:42:32 +080032
33#define TEGRA20_FUSE_SPARE_BIT 0x200
Danny Huangf8ddda72012-11-15 15:42:34 +080034#define TEGRA30_FUSE_SPARE_BIT 0x244
Colin Cross73625e32010-06-23 15:49:17 -070035
Olof Johansson9a1086d2011-10-13 00:31:20 -070036int tegra_sku_id;
37int tegra_cpu_process_id;
38int tegra_core_process_id;
Peter De Schrijver4c4ad662012-02-10 01:47:42 +020039int tegra_chip_id;
Danny Huangf8ddda72012-11-15 15:42:34 +080040int tegra_cpu_speedo_id; /* only exist in Tegra30 and later */
Danny Huang25cd5a32012-11-15 15:42:33 +080041int tegra_soc_speedo_id;
Olof Johansson9a1086d2011-10-13 00:31:20 -070042enum tegra_revision tegra_revision;
43
Danny Huang1f851a22012-11-15 15:42:32 +080044static int tegra_fuse_spare_bit;
Danny Huang25cd5a32012-11-15 15:42:33 +080045static void (*tegra_init_speedo_data)(void);
Danny Huang1f851a22012-11-15 15:42:32 +080046
Olof Johanssondee47182011-10-17 16:39:24 -070047/* The BCT to use at boot is specified by board straps that can be read
48 * through a APB misc register and decoded. 2 bits, i.e. 4 possible BCTs.
49 */
50int tegra_bct_strapping;
51
52#define STRAP_OPT 0x008
53#define GMI_AD0 (1 << 4)
54#define GMI_AD1 (1 << 5)
55#define RAM_ID_MASK (GMI_AD0 | GMI_AD1)
56#define RAM_CODE_SHIFT 4
57
Olof Johansson9a1086d2011-10-13 00:31:20 -070058static const char *tegra_revision_name[TEGRA_REVISION_MAX] = {
59 [TEGRA_REVISION_UNKNOWN] = "unknown",
60 [TEGRA_REVISION_A01] = "A01",
61 [TEGRA_REVISION_A02] = "A02",
62 [TEGRA_REVISION_A03] = "A03",
63 [TEGRA_REVISION_A03p] = "A03 prime",
64 [TEGRA_REVISION_A04] = "A04",
65};
66
Danny Huang1f851a22012-11-15 15:42:32 +080067u32 tegra_fuse_readl(unsigned long offset)
Colin Cross73625e32010-06-23 15:49:17 -070068{
Olof Johanssond262f492011-10-13 00:14:08 -070069 return tegra_apb_readl(TEGRA_FUSE_BASE + offset);
Colin Cross73625e32010-06-23 15:49:17 -070070}
71
Danny Huang1f851a22012-11-15 15:42:32 +080072bool tegra_spare_fuse(int bit)
Colin Cross73625e32010-06-23 15:49:17 -070073{
Danny Huang1f851a22012-11-15 15:42:32 +080074 return tegra_fuse_readl(tegra_fuse_spare_bit + bit * 4);
Olof Johansson9a1086d2011-10-13 00:31:20 -070075}
76
Peter De Schrijver35b14982012-02-10 01:47:41 +020077static enum tegra_revision tegra_get_revision(u32 id)
Olof Johansson9a1086d2011-10-13 00:31:20 -070078{
Olof Johansson9a1086d2011-10-13 00:31:20 -070079 u32 minor_rev = (id >> 16) & 0xf;
Olof Johansson9a1086d2011-10-13 00:31:20 -070080
81 switch (minor_rev) {
82 case 1:
83 return TEGRA_REVISION_A01;
84 case 2:
85 return TEGRA_REVISION_A02;
86 case 3:
Peter De Schrijver35b14982012-02-10 01:47:41 +020087 if (tegra_chip_id == TEGRA20 &&
Danny Huang1f851a22012-11-15 15:42:32 +080088 (tegra_spare_fuse(18) || tegra_spare_fuse(19)))
Olof Johansson9a1086d2011-10-13 00:31:20 -070089 return TEGRA_REVISION_A03p;
90 else
91 return TEGRA_REVISION_A03;
92 case 4:
93 return TEGRA_REVISION_A04;
94 default:
95 return TEGRA_REVISION_UNKNOWN;
96 }
Colin Cross73625e32010-06-23 15:49:17 -070097}
98
Danny Huang25cd5a32012-11-15 15:42:33 +080099static void tegra_get_process_id(void)
100{
101 u32 reg;
102
103 reg = tegra_fuse_readl(tegra_fuse_spare_bit);
104 tegra_cpu_process_id = (reg >> 6) & 3;
105 reg = tegra_fuse_readl(tegra_fuse_spare_bit);
106 tegra_core_process_id = (reg >> 12) & 3;
107}
108
Prashant Gaikwadc7736ed2013-01-11 13:16:19 +0530109u32 tegra_read_chipid(void)
110{
111 return readl_relaxed(IO_ADDRESS(TEGRA_APB_MISC_BASE) + 0x804);
112}
113
Colin Cross73625e32010-06-23 15:49:17 -0700114void tegra_init_fuse(void)
115{
Peter De Schrijver35b14982012-02-10 01:47:41 +0200116 u32 id;
117
Laxman Dewanganf8e798a2012-08-10 18:33:02 +0530118 u32 reg = readl(IO_ADDRESS(TEGRA_CLK_RESET_BASE + 0x48));
Colin Cross73625e32010-06-23 15:49:17 -0700119 reg |= 1 << 28;
Laxman Dewanganf8e798a2012-08-10 18:33:02 +0530120 writel(reg, IO_ADDRESS(TEGRA_CLK_RESET_BASE + 0x48));
Colin Cross73625e32010-06-23 15:49:17 -0700121
Olof Johansson9a1086d2011-10-13 00:31:20 -0700122 reg = tegra_fuse_readl(FUSE_SKU_INFO);
123 tegra_sku_id = reg & 0xFF;
124
Olof Johanssondee47182011-10-17 16:39:24 -0700125 reg = tegra_apb_readl(TEGRA_APB_MISC_BASE + STRAP_OPT);
126 tegra_bct_strapping = (reg & RAM_ID_MASK) >> RAM_CODE_SHIFT;
127
Prashant Gaikwadc7736ed2013-01-11 13:16:19 +0530128 id = tegra_read_chipid();
Peter De Schrijver35b14982012-02-10 01:47:41 +0200129 tegra_chip_id = (id >> 8) & 0xff;
130
Danny Huang25cd5a32012-11-15 15:42:33 +0800131 switch (tegra_chip_id) {
132 case TEGRA20:
Danny Huangf8ddda72012-11-15 15:42:34 +0800133 tegra_fuse_spare_bit = TEGRA20_FUSE_SPARE_BIT;
Danny Huang25cd5a32012-11-15 15:42:33 +0800134 tegra_init_speedo_data = &tegra20_init_speedo_data;
135 break;
Danny Huangf8ddda72012-11-15 15:42:34 +0800136 case TEGRA30:
137 tegra_fuse_spare_bit = TEGRA30_FUSE_SPARE_BIT;
138 tegra_init_speedo_data = &tegra30_init_speedo_data;
139 break;
Danny Huang25cd5a32012-11-15 15:42:33 +0800140 default:
Danny Huangf8ddda72012-11-15 15:42:34 +0800141 pr_warn("Tegra: unknown chip id %d\n", tegra_chip_id);
142 tegra_fuse_spare_bit = TEGRA20_FUSE_SPARE_BIT;
Danny Huang25cd5a32012-11-15 15:42:33 +0800143 tegra_init_speedo_data = &tegra_get_process_id;
144 }
145
Peter De Schrijver35b14982012-02-10 01:47:41 +0200146 tegra_revision = tegra_get_revision(id);
Danny Huang25cd5a32012-11-15 15:42:33 +0800147 tegra_init_speedo_data();
Olof Johansson9a1086d2011-10-13 00:31:20 -0700148
149 pr_info("Tegra Revision: %s SKU: %d CPU Process: %d Core Process: %d\n",
Peter De Schrijver35b14982012-02-10 01:47:41 +0200150 tegra_revision_name[tegra_revision],
Olof Johansson9a1086d2011-10-13 00:31:20 -0700151 tegra_sku_id, tegra_cpu_process_id,
152 tegra_core_process_id);
Colin Cross73625e32010-06-23 15:49:17 -0700153}
154
155unsigned long long tegra_chip_uid(void)
156{
157 unsigned long long lo, hi;
158
Olof Johanssond262f492011-10-13 00:14:08 -0700159 lo = tegra_fuse_readl(FUSE_UID_LOW);
160 hi = tegra_fuse_readl(FUSE_UID_HIGH);
Colin Cross73625e32010-06-23 15:49:17 -0700161 return (hi << 32ull) | lo;
162}
Henning Heinolde87e06c2012-01-13 16:38:37 +1100163EXPORT_SYMBOL(tegra_chip_uid);