1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (c) 2014, NVIDIA CORPORATION. All rights reserved.
6 #include <linux/export.h>
7 #include <linux/kernel.h>
9 #include <linux/of_address.h>
12 #include <soc/tegra/fuse.h>
13 #include <soc/tegra/common.h>
17 #define FUSE_SKU_INFO 0x10
19 #define PMC_STRAPPING_OPT_A_RAM_CODE_SHIFT 4
20 #define PMC_STRAPPING_OPT_A_RAM_CODE_MASK_LONG \
21 (0xf << PMC_STRAPPING_OPT_A_RAM_CODE_SHIFT)
22 #define PMC_STRAPPING_OPT_A_RAM_CODE_MASK_SHORT \
23 (0x3 << PMC_STRAPPING_OPT_A_RAM_CODE_SHIFT)
25 static bool long_ram_code
;
29 u32
tegra_read_chipid(void)
31 WARN(!chipid
, "Tegra APB MISC not yet available\n");
36 u8
tegra_get_chip_id(void)
38 return (tegra_read_chipid() >> 8) & 0xff;
41 u8
tegra_get_major_rev(void)
43 return (tegra_read_chipid() >> 4) & 0xf;
46 u8
tegra_get_minor_rev(void)
48 return (tegra_read_chipid() >> 16) & 0xf;
51 u8
tegra_get_platform(void)
53 return (tegra_read_chipid() >> 20) & 0xf;
56 bool tegra_is_silicon(void)
58 switch (tegra_get_chip_id()) {
61 if (tegra_get_platform() == 0)
68 * Chips prior to Tegra194 have a different way of determining whether
69 * they are silicon or not. Since we never supported simulation on the
70 * older Tegra chips, don't bother extracting the information and just
71 * report that we're running on silicon.
76 u32
tegra_read_straps(void)
78 WARN(!chipid
, "Tegra ABP MISC not yet available\n");
83 u32
tegra_read_ram_code(void)
85 u32 straps
= tegra_read_straps();
88 straps
&= PMC_STRAPPING_OPT_A_RAM_CODE_MASK_LONG
;
90 straps
&= PMC_STRAPPING_OPT_A_RAM_CODE_MASK_SHORT
;
92 return straps
>> PMC_STRAPPING_OPT_A_RAM_CODE_SHIFT
;
94 EXPORT_SYMBOL_GPL(tegra_read_ram_code
);
96 static const struct of_device_id apbmisc_match
[] __initconst
= {
97 { .compatible
= "nvidia,tegra20-apbmisc", },
98 { .compatible
= "nvidia,tegra186-misc", },
99 { .compatible
= "nvidia,tegra194-misc", },
100 { .compatible
= "nvidia,tegra234-misc", },
104 void __init
tegra_init_revision(void)
106 u8 chip_id
, minor_rev
;
108 chip_id
= tegra_get_chip_id();
109 minor_rev
= tegra_get_minor_rev();
113 tegra_sku_info
.revision
= TEGRA_REVISION_A01
;
116 tegra_sku_info
.revision
= TEGRA_REVISION_A02
;
119 if (chip_id
== TEGRA20
&& (tegra_fuse_read_spare(18) ||
120 tegra_fuse_read_spare(19)))
121 tegra_sku_info
.revision
= TEGRA_REVISION_A03p
;
123 tegra_sku_info
.revision
= TEGRA_REVISION_A03
;
126 tegra_sku_info
.revision
= TEGRA_REVISION_A04
;
129 tegra_sku_info
.revision
= TEGRA_REVISION_UNKNOWN
;
132 tegra_sku_info
.sku_id
= tegra_fuse_read_early(FUSE_SKU_INFO
);
135 void __init
tegra_init_apbmisc(void)
137 void __iomem
*apbmisc_base
, *strapping_base
;
138 struct resource apbmisc
, straps
;
139 struct device_node
*np
;
141 np
= of_find_matching_node(NULL
, apbmisc_match
);
144 * Fall back to legacy initialization for 32-bit ARM only. All
145 * 64-bit ARM device tree files for Tegra are required to have
148 * This is for backwards-compatibility with old device trees
149 * that didn't contain an APBMISC node.
151 if (IS_ENABLED(CONFIG_ARM
) && soc_is_tegra()) {
152 /* APBMISC registers (chip revision, ...) */
153 apbmisc
.start
= 0x70000800;
154 apbmisc
.end
= 0x70000863;
155 apbmisc
.flags
= IORESOURCE_MEM
;
157 /* strapping options */
158 if (of_machine_is_compatible("nvidia,tegra124")) {
159 straps
.start
= 0x7000e864;
160 straps
.end
= 0x7000e867;
162 straps
.start
= 0x70000008;
163 straps
.end
= 0x7000000b;
166 straps
.flags
= IORESOURCE_MEM
;
168 pr_warn("Using APBMISC region %pR\n", &apbmisc
);
169 pr_warn("Using strapping options registers %pR\n",
173 * At this point we're not running on Tegra, so play
174 * nice with multi-platform kernels.
180 * Extract information from the device tree if we've found a
183 if (of_address_to_resource(np
, 0, &apbmisc
) < 0) {
184 pr_err("failed to get APBMISC registers\n");
188 if (of_address_to_resource(np
, 1, &straps
) < 0) {
189 pr_err("failed to get strapping options registers\n");
194 apbmisc_base
= ioremap(apbmisc
.start
, resource_size(&apbmisc
));
196 pr_err("failed to map APBMISC registers\n");
198 chipid
= readl_relaxed(apbmisc_base
+ 4);
199 iounmap(apbmisc_base
);
202 strapping_base
= ioremap(straps
.start
, resource_size(&straps
));
203 if (!strapping_base
) {
204 pr_err("failed to map strapping options registers\n");
206 strapping
= readl_relaxed(strapping_base
);
207 iounmap(strapping_base
);
210 long_ram_code
= of_property_read_bool(np
, "nvidia,long-ram-code");