1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (c) 2013-2014, NVIDIA CORPORATION. All rights reserved.
7 #include <linux/device.h>
8 #include <linux/kobject.h>
9 #include <linux/init.h>
11 #include <linux/nvmem-consumer.h>
12 #include <linux/nvmem-provider.h>
14 #include <linux/of_address.h>
15 #include <linux/platform_device.h>
16 #include <linux/slab.h>
17 #include <linux/sys_soc.h>
19 #include <soc/tegra/common.h>
20 #include <soc/tegra/fuse.h>
24 struct tegra_sku_info tegra_sku_info
;
25 EXPORT_SYMBOL(tegra_sku_info
);
27 static const char *tegra_revision_name
[TEGRA_REVISION_MAX
] = {
28 [TEGRA_REVISION_UNKNOWN
] = "unknown",
29 [TEGRA_REVISION_A01
] = "A01",
30 [TEGRA_REVISION_A02
] = "A02",
31 [TEGRA_REVISION_A03
] = "A03",
32 [TEGRA_REVISION_A03p
] = "A03 prime",
33 [TEGRA_REVISION_A04
] = "A04",
36 static const struct of_device_id car_match
[] __initconst
= {
37 { .compatible
= "nvidia,tegra20-car", },
38 { .compatible
= "nvidia,tegra30-car", },
39 { .compatible
= "nvidia,tegra114-car", },
40 { .compatible
= "nvidia,tegra124-car", },
41 { .compatible
= "nvidia,tegra132-car", },
42 { .compatible
= "nvidia,tegra210-car", },
46 static struct tegra_fuse
*fuse
= &(struct tegra_fuse
) {
51 static const struct of_device_id tegra_fuse_match
[] = {
52 #ifdef CONFIG_ARCH_TEGRA_234_SOC
53 { .compatible
= "nvidia,tegra234-efuse", .data
= &tegra234_fuse_soc
},
55 #ifdef CONFIG_ARCH_TEGRA_194_SOC
56 { .compatible
= "nvidia,tegra194-efuse", .data
= &tegra194_fuse_soc
},
58 #ifdef CONFIG_ARCH_TEGRA_186_SOC
59 { .compatible
= "nvidia,tegra186-efuse", .data
= &tegra186_fuse_soc
},
61 #ifdef CONFIG_ARCH_TEGRA_210_SOC
62 { .compatible
= "nvidia,tegra210-efuse", .data
= &tegra210_fuse_soc
},
64 #ifdef CONFIG_ARCH_TEGRA_132_SOC
65 { .compatible
= "nvidia,tegra132-efuse", .data
= &tegra124_fuse_soc
},
67 #ifdef CONFIG_ARCH_TEGRA_124_SOC
68 { .compatible
= "nvidia,tegra124-efuse", .data
= &tegra124_fuse_soc
},
70 #ifdef CONFIG_ARCH_TEGRA_114_SOC
71 { .compatible
= "nvidia,tegra114-efuse", .data
= &tegra114_fuse_soc
},
73 #ifdef CONFIG_ARCH_TEGRA_3x_SOC
74 { .compatible
= "nvidia,tegra30-efuse", .data
= &tegra30_fuse_soc
},
76 #ifdef CONFIG_ARCH_TEGRA_2x_SOC
77 { .compatible
= "nvidia,tegra20-efuse", .data
= &tegra20_fuse_soc
},
82 static int tegra_fuse_read(void *priv
, unsigned int offset
, void *value
,
85 unsigned int count
= bytes
/ 4, i
;
86 struct tegra_fuse
*fuse
= priv
;
89 for (i
= 0; i
< count
; i
++)
90 buffer
[i
] = fuse
->read(fuse
, offset
+ i
* 4);
95 static const struct nvmem_cell_info tegra_fuse_cells
[] = {
97 .name
= "tsensor-cpu1",
103 .name
= "tsensor-cpu2",
109 .name
= "tsensor-cpu0",
115 .name
= "xusb-pad-calibration",
121 .name
= "tsensor-cpu3",
127 .name
= "sata-calibration",
133 .name
= "tsensor-gpu",
139 .name
= "tsensor-mem0",
145 .name
= "tsensor-mem1",
151 .name
= "tsensor-pllx",
157 .name
= "tsensor-common",
163 .name
= "tsensor-realignment",
169 .name
= "gpu-calibration",
175 .name
= "xusb-pad-calibration-ext",
183 static int tegra_fuse_probe(struct platform_device
*pdev
)
185 void __iomem
*base
= fuse
->base
;
186 struct nvmem_config nvmem
;
187 struct resource
*res
;
190 /* take over the memory region from the early initialization */
191 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
192 fuse
->phys
= res
->start
;
193 fuse
->base
= devm_ioremap_resource(&pdev
->dev
, res
);
194 if (IS_ERR(fuse
->base
)) {
195 err
= PTR_ERR(fuse
->base
);
200 fuse
->clk
= devm_clk_get(&pdev
->dev
, "fuse");
201 if (IS_ERR(fuse
->clk
)) {
202 if (PTR_ERR(fuse
->clk
) != -EPROBE_DEFER
)
203 dev_err(&pdev
->dev
, "failed to get FUSE clock: %ld",
207 return PTR_ERR(fuse
->clk
);
210 platform_set_drvdata(pdev
, fuse
);
211 fuse
->dev
= &pdev
->dev
;
213 if (fuse
->soc
->probe
) {
214 err
= fuse
->soc
->probe(fuse
);
219 memset(&nvmem
, 0, sizeof(nvmem
));
220 nvmem
.dev
= &pdev
->dev
;
223 nvmem
.owner
= THIS_MODULE
;
224 nvmem
.cells
= tegra_fuse_cells
;
225 nvmem
.ncells
= ARRAY_SIZE(tegra_fuse_cells
);
226 nvmem
.type
= NVMEM_TYPE_OTP
;
227 nvmem
.read_only
= true;
228 nvmem
.root_only
= true;
229 nvmem
.reg_read
= tegra_fuse_read
;
230 nvmem
.size
= fuse
->soc
->info
->size
;
235 fuse
->nvmem
= devm_nvmem_register(&pdev
->dev
, &nvmem
);
236 if (IS_ERR(fuse
->nvmem
)) {
237 err
= PTR_ERR(fuse
->nvmem
);
238 dev_err(&pdev
->dev
, "failed to register NVMEM device: %d\n",
243 /* release the early I/O memory mapping */
253 static struct platform_driver tegra_fuse_driver
= {
255 .name
= "tegra-fuse",
256 .of_match_table
= tegra_fuse_match
,
257 .suppress_bind_attrs
= true,
259 .probe
= tegra_fuse_probe
,
261 builtin_platform_driver(tegra_fuse_driver
);
263 bool __init
tegra_fuse_read_spare(unsigned int spare
)
265 unsigned int offset
= fuse
->soc
->info
->spare
+ spare
* 4;
267 return fuse
->read_early(fuse
, offset
) & 1;
270 u32 __init
tegra_fuse_read_early(unsigned int offset
)
272 return fuse
->read_early(fuse
, offset
);
275 int tegra_fuse_readl(unsigned long offset
, u32
*value
)
277 if (!fuse
->read
|| !fuse
->clk
)
278 return -EPROBE_DEFER
;
280 if (IS_ERR(fuse
->clk
))
281 return PTR_ERR(fuse
->clk
);
283 *value
= fuse
->read(fuse
, offset
);
287 EXPORT_SYMBOL(tegra_fuse_readl
);
289 static void tegra_enable_fuse_clk(void __iomem
*base
)
293 reg
= readl_relaxed(base
+ 0x48);
295 writel(reg
, base
+ 0x48);
298 * Enable FUSE clock. This needs to be hardcoded because the clock
299 * subsystem is not active during early boot.
301 reg
= readl(base
+ 0x14);
303 writel(reg
, base
+ 0x14);
306 static ssize_t
major_show(struct device
*dev
, struct device_attribute
*attr
,
309 return sprintf(buf
, "%d\n", tegra_get_major_rev());
312 static DEVICE_ATTR_RO(major
);
314 static ssize_t
minor_show(struct device
*dev
, struct device_attribute
*attr
,
317 return sprintf(buf
, "%d\n", tegra_get_minor_rev());
320 static DEVICE_ATTR_RO(minor
);
322 static struct attribute
*tegra_soc_attr
[] = {
323 &dev_attr_major
.attr
,
324 &dev_attr_minor
.attr
,
328 const struct attribute_group tegra_soc_attr_group
= {
329 .attrs
= tegra_soc_attr
,
332 #if IS_ENABLED(CONFIG_ARCH_TEGRA_194_SOC) || \
333 IS_ENABLED(CONFIG_ARCH_TEGRA_234_SOC)
334 static ssize_t
platform_show(struct device
*dev
, struct device_attribute
*attr
,
338 * Displays the value in the 'pre_si_platform' field of the HIDREV
339 * register for Tegra194 devices. A value of 0 indicates that the
340 * platform type is silicon and all other non-zero values indicate
341 * the type of simulation platform is being used.
343 return sprintf(buf
, "%d\n", tegra_get_platform());
346 static DEVICE_ATTR_RO(platform
);
348 static struct attribute
*tegra194_soc_attr
[] = {
349 &dev_attr_major
.attr
,
350 &dev_attr_minor
.attr
,
351 &dev_attr_platform
.attr
,
355 const struct attribute_group tegra194_soc_attr_group
= {
356 .attrs
= tegra194_soc_attr
,
360 struct device
* __init
tegra_soc_device_register(void)
362 struct soc_device_attribute
*attr
;
363 struct soc_device
*dev
;
365 attr
= kzalloc(sizeof(*attr
), GFP_KERNEL
);
369 attr
->family
= kasprintf(GFP_KERNEL
, "Tegra");
370 attr
->revision
= kasprintf(GFP_KERNEL
, "%s",
371 tegra_revision_name
[tegra_sku_info
.revision
]);
372 attr
->soc_id
= kasprintf(GFP_KERNEL
, "%u", tegra_get_chip_id());
373 attr
->custom_attr_group
= fuse
->soc
->soc_attr_group
;
375 dev
= soc_device_register(attr
);
378 kfree(attr
->revision
);
381 return ERR_CAST(dev
);
384 return soc_device_to_device(dev
);
387 static int __init
tegra_init_fuse(void)
389 const struct of_device_id
*match
;
390 struct device_node
*np
;
391 struct resource regs
;
393 tegra_init_apbmisc();
395 np
= of_find_matching_node_and_match(NULL
, tegra_fuse_match
, &match
);
398 * Fall back to legacy initialization for 32-bit ARM only. All
399 * 64-bit ARM device tree files for Tegra are required to have
402 * This is for backwards-compatibility with old device trees
403 * that didn't contain a FUSE node.
405 if (IS_ENABLED(CONFIG_ARM
) && soc_is_tegra()) {
406 u8 chip
= tegra_get_chip_id();
408 regs
.start
= 0x7000f800;
409 regs
.end
= 0x7000fbff;
410 regs
.flags
= IORESOURCE_MEM
;
413 #ifdef CONFIG_ARCH_TEGRA_2x_SOC
415 fuse
->soc
= &tegra20_fuse_soc
;
419 #ifdef CONFIG_ARCH_TEGRA_3x_SOC
421 fuse
->soc
= &tegra30_fuse_soc
;
425 #ifdef CONFIG_ARCH_TEGRA_114_SOC
427 fuse
->soc
= &tegra114_fuse_soc
;
431 #ifdef CONFIG_ARCH_TEGRA_124_SOC
433 fuse
->soc
= &tegra124_fuse_soc
;
438 pr_warn("Unsupported SoC: %02x\n", chip
);
443 * At this point we're not running on Tegra, so play
444 * nice with multi-platform kernels.
450 * Extract information from the device tree if we've found a
453 if (of_address_to_resource(np
, 0, ®s
) < 0) {
454 pr_err("failed to get FUSE register\n");
458 fuse
->soc
= match
->data
;
461 np
= of_find_matching_node(NULL
, car_match
);
463 void __iomem
*base
= of_iomap(np
, 0);
465 tegra_enable_fuse_clk(base
);
468 pr_err("failed to map clock registers\n");
473 fuse
->base
= ioremap(regs
.start
, resource_size(®s
));
475 pr_err("failed to map FUSE registers\n");
479 fuse
->soc
->init(fuse
);
481 pr_info("Tegra Revision: %s SKU: %d CPU Process: %d SoC Process: %d\n",
482 tegra_revision_name
[tegra_sku_info
.revision
],
483 tegra_sku_info
.sku_id
, tegra_sku_info
.cpu_process_id
,
484 tegra_sku_info
.soc_process_id
);
485 pr_debug("Tegra CPU Speedo ID %d, SoC Speedo ID %d\n",
486 tegra_sku_info
.cpu_speedo_id
, tegra_sku_info
.soc_speedo_id
);
488 if (fuse
->soc
->lookups
) {
489 size_t size
= sizeof(*fuse
->lookups
) * fuse
->soc
->num_lookups
;
491 fuse
->lookups
= kmemdup(fuse
->soc
->lookups
, size
, GFP_KERNEL
);
495 nvmem_add_cell_lookups(fuse
->lookups
, fuse
->soc
->num_lookups
);
500 early_initcall(tegra_init_fuse
);
503 static int __init
tegra_init_soc(void)
505 struct device_node
*np
;
508 /* make sure we're running on Tegra */
509 np
= of_find_matching_node(NULL
, tegra_fuse_match
);
515 soc
= tegra_soc_device_register();
517 pr_err("failed to register SoC device: %ld\n", PTR_ERR(soc
));
523 device_initcall(tegra_init_soc
);