2 * Copyright (c) 2013-2014, NVIDIA CORPORATION. All rights reserved.
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 #include <linux/clk.h>
19 #include <linux/device.h>
20 #include <linux/kobject.h>
21 #include <linux/init.h>
24 #include <linux/of_address.h>
25 #include <linux/platform_device.h>
26 #include <linux/slab.h>
27 #include <linux/sys_soc.h>
29 #include <soc/tegra/common.h>
30 #include <soc/tegra/fuse.h>
34 struct tegra_sku_info tegra_sku_info
;
35 EXPORT_SYMBOL(tegra_sku_info
);
37 static const char *tegra_revision_name
[TEGRA_REVISION_MAX
] = {
38 [TEGRA_REVISION_UNKNOWN
] = "unknown",
39 [TEGRA_REVISION_A01
] = "A01",
40 [TEGRA_REVISION_A02
] = "A02",
41 [TEGRA_REVISION_A03
] = "A03",
42 [TEGRA_REVISION_A03p
] = "A03 prime",
43 [TEGRA_REVISION_A04
] = "A04",
46 static u8
fuse_readb(struct tegra_fuse
*fuse
, unsigned int offset
)
50 val
= fuse
->read(fuse
, round_down(offset
, 4));
51 val
>>= (offset
% 4) * 8;
57 static ssize_t
fuse_read(struct file
*fd
, struct kobject
*kobj
,
58 struct bin_attribute
*attr
, char *buf
,
59 loff_t pos
, size_t size
)
61 struct device
*dev
= kobj_to_dev(kobj
);
62 struct tegra_fuse
*fuse
= dev_get_drvdata(dev
);
65 if (pos
< 0 || pos
>= attr
->size
)
68 if (size
> attr
->size
- pos
)
69 size
= attr
->size
- pos
;
71 for (i
= 0; i
< size
; i
++)
72 buf
[i
] = fuse_readb(fuse
, pos
+ i
);
77 static struct bin_attribute fuse_bin_attr
= {
78 .attr
= { .name
= "fuse", .mode
= S_IRUGO
, },
82 static int tegra_fuse_create_sysfs(struct device
*dev
, unsigned int size
,
83 const struct tegra_fuse_info
*info
)
85 fuse_bin_attr
.size
= size
;
87 return device_create_bin_file(dev
, &fuse_bin_attr
);
90 static const struct of_device_id car_match
[] __initconst
= {
91 { .compatible
= "nvidia,tegra20-car", },
92 { .compatible
= "nvidia,tegra30-car", },
93 { .compatible
= "nvidia,tegra114-car", },
94 { .compatible
= "nvidia,tegra124-car", },
95 { .compatible
= "nvidia,tegra132-car", },
96 { .compatible
= "nvidia,tegra210-car", },
100 static struct tegra_fuse
*fuse
= &(struct tegra_fuse
) {
105 static const struct of_device_id tegra_fuse_match
[] = {
106 #ifdef CONFIG_ARCH_TEGRA_186_SOC
107 { .compatible
= "nvidia,tegra186-efuse", .data
= &tegra186_fuse_soc
},
109 #ifdef CONFIG_ARCH_TEGRA_210_SOC
110 { .compatible
= "nvidia,tegra210-efuse", .data
= &tegra210_fuse_soc
},
112 #ifdef CONFIG_ARCH_TEGRA_132_SOC
113 { .compatible
= "nvidia,tegra132-efuse", .data
= &tegra124_fuse_soc
},
115 #ifdef CONFIG_ARCH_TEGRA_124_SOC
116 { .compatible
= "nvidia,tegra124-efuse", .data
= &tegra124_fuse_soc
},
118 #ifdef CONFIG_ARCH_TEGRA_114_SOC
119 { .compatible
= "nvidia,tegra114-efuse", .data
= &tegra114_fuse_soc
},
121 #ifdef CONFIG_ARCH_TEGRA_3x_SOC
122 { .compatible
= "nvidia,tegra30-efuse", .data
= &tegra30_fuse_soc
},
124 #ifdef CONFIG_ARCH_TEGRA_2x_SOC
125 { .compatible
= "nvidia,tegra20-efuse", .data
= &tegra20_fuse_soc
},
130 static int tegra_fuse_probe(struct platform_device
*pdev
)
132 void __iomem
*base
= fuse
->base
;
133 struct resource
*res
;
136 /* take over the memory region from the early initialization */
137 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
138 fuse
->phys
= res
->start
;
139 fuse
->base
= devm_ioremap_resource(&pdev
->dev
, res
);
140 if (IS_ERR(fuse
->base
))
141 return PTR_ERR(fuse
->base
);
143 fuse
->clk
= devm_clk_get(&pdev
->dev
, "fuse");
144 if (IS_ERR(fuse
->clk
)) {
145 dev_err(&pdev
->dev
, "failed to get FUSE clock: %ld",
147 return PTR_ERR(fuse
->clk
);
150 platform_set_drvdata(pdev
, fuse
);
151 fuse
->dev
= &pdev
->dev
;
153 if (fuse
->soc
->probe
) {
154 err
= fuse
->soc
->probe(fuse
);
159 if (tegra_fuse_create_sysfs(&pdev
->dev
, fuse
->soc
->info
->size
,
163 /* release the early I/O memory mapping */
169 static struct platform_driver tegra_fuse_driver
= {
171 .name
= "tegra-fuse",
172 .of_match_table
= tegra_fuse_match
,
173 .suppress_bind_attrs
= true,
175 .probe
= tegra_fuse_probe
,
177 builtin_platform_driver(tegra_fuse_driver
);
179 bool __init
tegra_fuse_read_spare(unsigned int spare
)
181 unsigned int offset
= fuse
->soc
->info
->spare
+ spare
* 4;
183 return fuse
->read_early(fuse
, offset
) & 1;
186 u32 __init
tegra_fuse_read_early(unsigned int offset
)
188 return fuse
->read_early(fuse
, offset
);
191 int tegra_fuse_readl(unsigned long offset
, u32
*value
)
194 return -EPROBE_DEFER
;
196 *value
= fuse
->read(fuse
, offset
);
200 EXPORT_SYMBOL(tegra_fuse_readl
);
202 static void tegra_enable_fuse_clk(void __iomem
*base
)
206 reg
= readl_relaxed(base
+ 0x48);
208 writel(reg
, base
+ 0x48);
211 * Enable FUSE clock. This needs to be hardcoded because the clock
212 * subsystem is not active during early boot.
214 reg
= readl(base
+ 0x14);
216 writel(reg
, base
+ 0x14);
219 struct device
* __init
tegra_soc_device_register(void)
221 struct soc_device_attribute
*attr
;
222 struct soc_device
*dev
;
224 attr
= kzalloc(sizeof(*attr
), GFP_KERNEL
);
228 attr
->family
= kasprintf(GFP_KERNEL
, "Tegra");
229 attr
->revision
= kasprintf(GFP_KERNEL
, "%d", tegra_sku_info
.revision
);
230 attr
->soc_id
= kasprintf(GFP_KERNEL
, "%u", tegra_get_chip_id());
232 dev
= soc_device_register(attr
);
235 kfree(attr
->revision
);
238 return ERR_CAST(dev
);
241 return soc_device_to_device(dev
);
244 static int __init
tegra_init_fuse(void)
246 const struct of_device_id
*match
;
247 struct device_node
*np
;
248 struct resource regs
;
250 tegra_init_apbmisc();
252 np
= of_find_matching_node_and_match(NULL
, tegra_fuse_match
, &match
);
255 * Fall back to legacy initialization for 32-bit ARM only. All
256 * 64-bit ARM device tree files for Tegra are required to have
259 * This is for backwards-compatibility with old device trees
260 * that didn't contain a FUSE node.
262 if (IS_ENABLED(CONFIG_ARM
) && soc_is_tegra()) {
263 u8 chip
= tegra_get_chip_id();
265 regs
.start
= 0x7000f800;
266 regs
.end
= 0x7000fbff;
267 regs
.flags
= IORESOURCE_MEM
;
270 #ifdef CONFIG_ARCH_TEGRA_2x_SOC
272 fuse
->soc
= &tegra20_fuse_soc
;
276 #ifdef CONFIG_ARCH_TEGRA_3x_SOC
278 fuse
->soc
= &tegra30_fuse_soc
;
282 #ifdef CONFIG_ARCH_TEGRA_114_SOC
284 fuse
->soc
= &tegra114_fuse_soc
;
288 #ifdef CONFIG_ARCH_TEGRA_124_SOC
290 fuse
->soc
= &tegra124_fuse_soc
;
295 pr_warn("Unsupported SoC: %02x\n", chip
);
300 * At this point we're not running on Tegra, so play
301 * nice with multi-platform kernels.
307 * Extract information from the device tree if we've found a
310 if (of_address_to_resource(np
, 0, ®s
) < 0) {
311 pr_err("failed to get FUSE register\n");
315 fuse
->soc
= match
->data
;
318 np
= of_find_matching_node(NULL
, car_match
);
320 void __iomem
*base
= of_iomap(np
, 0);
322 tegra_enable_fuse_clk(base
);
325 pr_err("failed to map clock registers\n");
330 fuse
->base
= ioremap_nocache(regs
.start
, resource_size(®s
));
332 pr_err("failed to map FUSE registers\n");
336 fuse
->soc
->init(fuse
);
338 pr_info("Tegra Revision: %s SKU: %d CPU Process: %d SoC Process: %d\n",
339 tegra_revision_name
[tegra_sku_info
.revision
],
340 tegra_sku_info
.sku_id
, tegra_sku_info
.cpu_process_id
,
341 tegra_sku_info
.soc_process_id
);
342 pr_debug("Tegra CPU Speedo ID %d, SoC Speedo ID %d\n",
343 tegra_sku_info
.cpu_speedo_id
, tegra_sku_info
.soc_speedo_id
);
348 early_initcall(tegra_init_fuse
);
351 static int __init
tegra_init_soc(void)
353 struct device_node
*np
;
356 /* make sure we're running on Tegra */
357 np
= of_find_matching_node(NULL
, tegra_fuse_match
);
363 soc
= tegra_soc_device_register();
365 pr_err("failed to register SoC device: %ld\n", PTR_ERR(soc
));
371 device_initcall(tegra_init_soc
);