| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599 |
- // SPDX-License-Identifier: GPL-2.0-only
- /*
- * Copyright (c) 2013-2023, NVIDIA CORPORATION. All rights reserved.
- */
- #include <linux/acpi.h>
- #include <linux/clk.h>
- #include <linux/device.h>
- #include <linux/kobject.h>
- #include <linux/init.h>
- #include <linux/io.h>
- #include <linux/mod_devicetable.h>
- #include <linux/nvmem-consumer.h>
- #include <linux/nvmem-provider.h>
- #include <linux/of.h>
- #include <linux/of_address.h>
- #include <linux/platform_device.h>
- #include <linux/pm_runtime.h>
- #include <linux/reset.h>
- #include <linux/slab.h>
- #include <linux/sys_soc.h>
- #include <soc/tegra/common.h>
- #include <soc/tegra/fuse.h>
- #include "fuse.h"
- struct tegra_sku_info tegra_sku_info;
- EXPORT_SYMBOL(tegra_sku_info);
- static const char *tegra_revision_name[TEGRA_REVISION_MAX] = {
- [TEGRA_REVISION_UNKNOWN] = "unknown",
- [TEGRA_REVISION_A01] = "A01",
- [TEGRA_REVISION_A02] = "A02",
- [TEGRA_REVISION_A03] = "A03",
- [TEGRA_REVISION_A03p] = "A03 prime",
- [TEGRA_REVISION_A04] = "A04",
- };
- static const char *tegra_platform_name[TEGRA_PLATFORM_MAX] = {
- [TEGRA_PLATFORM_SILICON] = "Silicon",
- [TEGRA_PLATFORM_QT] = "QT",
- [TEGRA_PLATFORM_SYSTEM_FPGA] = "System FPGA",
- [TEGRA_PLATFORM_UNIT_FPGA] = "Unit FPGA",
- [TEGRA_PLATFORM_ASIM_QT] = "Asim QT",
- [TEGRA_PLATFORM_ASIM_LINSIM] = "Asim Linsim",
- [TEGRA_PLATFORM_DSIM_ASIM_LINSIM] = "Dsim Asim Linsim",
- [TEGRA_PLATFORM_VERIFICATION_SIMULATION] = "Verification Simulation",
- [TEGRA_PLATFORM_VDK] = "VDK",
- [TEGRA_PLATFORM_VSP] = "VSP",
- };
- static const struct of_device_id car_match[] __initconst = {
- { .compatible = "nvidia,tegra20-car", },
- { .compatible = "nvidia,tegra30-car", },
- { .compatible = "nvidia,tegra114-car", },
- { .compatible = "nvidia,tegra124-car", },
- { .compatible = "nvidia,tegra132-car", },
- { .compatible = "nvidia,tegra210-car", },
- {},
- };
- static struct tegra_fuse *fuse = &(struct tegra_fuse) {
- .base = NULL,
- .soc = NULL,
- };
- static const struct of_device_id tegra_fuse_match[] = {
- #ifdef CONFIG_ARCH_TEGRA_234_SOC
- { .compatible = "nvidia,tegra234-efuse", .data = &tegra234_fuse_soc },
- #endif
- #ifdef CONFIG_ARCH_TEGRA_194_SOC
- { .compatible = "nvidia,tegra194-efuse", .data = &tegra194_fuse_soc },
- #endif
- #ifdef CONFIG_ARCH_TEGRA_186_SOC
- { .compatible = "nvidia,tegra186-efuse", .data = &tegra186_fuse_soc },
- #endif
- #ifdef CONFIG_ARCH_TEGRA_210_SOC
- { .compatible = "nvidia,tegra210-efuse", .data = &tegra210_fuse_soc },
- #endif
- #ifdef CONFIG_ARCH_TEGRA_132_SOC
- { .compatible = "nvidia,tegra132-efuse", .data = &tegra124_fuse_soc },
- #endif
- #ifdef CONFIG_ARCH_TEGRA_124_SOC
- { .compatible = "nvidia,tegra124-efuse", .data = &tegra124_fuse_soc },
- #endif
- #ifdef CONFIG_ARCH_TEGRA_114_SOC
- { .compatible = "nvidia,tegra114-efuse", .data = &tegra114_fuse_soc },
- #endif
- #ifdef CONFIG_ARCH_TEGRA_3x_SOC
- { .compatible = "nvidia,tegra30-efuse", .data = &tegra30_fuse_soc },
- #endif
- #ifdef CONFIG_ARCH_TEGRA_2x_SOC
- { .compatible = "nvidia,tegra20-efuse", .data = &tegra20_fuse_soc },
- #endif
- { /* sentinel */ }
- };
- static int tegra_fuse_read(void *priv, unsigned int offset, void *value,
- size_t bytes)
- {
- unsigned int count = bytes / 4, i;
- struct tegra_fuse *fuse = priv;
- u32 *buffer = value;
- for (i = 0; i < count; i++)
- buffer[i] = fuse->read(fuse, offset + i * 4);
- return 0;
- }
- static void tegra_fuse_restore(void *base)
- {
- fuse->base = (void __iomem *)base;
- fuse->clk = NULL;
- }
- static void tegra_fuse_print_sku_info(struct tegra_sku_info *tegra_sku_info)
- {
- pr_info("Tegra Revision: %s SKU: %d CPU Process: %d SoC Process: %d\n",
- tegra_revision_name[tegra_sku_info->revision],
- tegra_sku_info->sku_id, tegra_sku_info->cpu_process_id,
- tegra_sku_info->soc_process_id);
- pr_debug("Tegra CPU Speedo ID %d, SoC Speedo ID %d\n",
- tegra_sku_info->cpu_speedo_id, tegra_sku_info->soc_speedo_id);
- }
- static int tegra_fuse_add_lookups(struct tegra_fuse *fuse)
- {
- fuse->lookups = kmemdup_array(fuse->soc->lookups, fuse->soc->num_lookups,
- sizeof(*fuse->lookups), GFP_KERNEL);
- if (!fuse->lookups)
- return -ENOMEM;
- nvmem_add_cell_lookups(fuse->lookups, fuse->soc->num_lookups);
- return 0;
- }
- static int tegra_fuse_probe(struct platform_device *pdev)
- {
- void __iomem *base = fuse->base;
- struct nvmem_config nvmem;
- struct resource *res;
- int err;
- err = devm_add_action(&pdev->dev, tegra_fuse_restore, (void __force *)base);
- if (err)
- return err;
- /* take over the memory region from the early initialization */
- fuse->base = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
- if (IS_ERR(fuse->base))
- return PTR_ERR(fuse->base);
- fuse->phys = res->start;
- /* Initialize the soc data and lookups if using ACPI boot. */
- if (is_acpi_node(dev_fwnode(&pdev->dev)) && !fuse->soc) {
- u8 chip;
- tegra_acpi_init_apbmisc();
- chip = tegra_get_chip_id();
- switch (chip) {
- #if defined(CONFIG_ARCH_TEGRA_194_SOC)
- case TEGRA194:
- fuse->soc = &tegra194_fuse_soc;
- break;
- #endif
- #if defined(CONFIG_ARCH_TEGRA_234_SOC)
- case TEGRA234:
- fuse->soc = &tegra234_fuse_soc;
- break;
- #endif
- #if defined(CONFIG_ARCH_TEGRA_241_SOC)
- case TEGRA241:
- fuse->soc = &tegra241_fuse_soc;
- break;
- #endif
- default:
- return dev_err_probe(&pdev->dev, -EINVAL, "Unsupported SoC: %02x\n", chip);
- }
- fuse->soc->init(fuse);
- err = tegra_fuse_add_lookups(fuse);
- if (err)
- return dev_err_probe(&pdev->dev, err, "failed to add FUSE lookups\n");
- }
- fuse->clk = devm_clk_get_optional(&pdev->dev, "fuse");
- if (IS_ERR(fuse->clk))
- return dev_err_probe(&pdev->dev, PTR_ERR(fuse->clk), "failed to get FUSE clock\n");
- platform_set_drvdata(pdev, fuse);
- fuse->dev = &pdev->dev;
- err = devm_pm_runtime_enable(&pdev->dev);
- if (err)
- return err;
- if (fuse->soc->probe) {
- err = fuse->soc->probe(fuse);
- if (err < 0)
- return err;
- }
- memset(&nvmem, 0, sizeof(nvmem));
- nvmem.dev = &pdev->dev;
- nvmem.name = "fuse";
- nvmem.id = -1;
- nvmem.owner = THIS_MODULE;
- nvmem.cells = fuse->soc->cells;
- nvmem.ncells = fuse->soc->num_cells;
- nvmem.keepout = fuse->soc->keepouts;
- nvmem.nkeepout = fuse->soc->num_keepouts;
- nvmem.type = NVMEM_TYPE_OTP;
- nvmem.read_only = true;
- nvmem.root_only = false;
- nvmem.reg_read = tegra_fuse_read;
- nvmem.size = fuse->soc->info->size;
- nvmem.word_size = 4;
- nvmem.stride = 4;
- nvmem.priv = fuse;
- fuse->nvmem = devm_nvmem_register(&pdev->dev, &nvmem);
- if (IS_ERR(fuse->nvmem)) {
- err = PTR_ERR(fuse->nvmem);
- dev_err(&pdev->dev, "failed to register NVMEM device: %d\n",
- err);
- return err;
- }
- fuse->rst = devm_reset_control_get_optional(&pdev->dev, "fuse");
- if (IS_ERR(fuse->rst))
- return dev_err_probe(&pdev->dev, PTR_ERR(fuse->rst), "failed to get FUSE reset\n");
- /*
- * FUSE clock is enabled at a boot time, hence this resume/suspend
- * disables the clock besides the h/w resetting.
- */
- err = pm_runtime_resume_and_get(&pdev->dev);
- if (err)
- return err;
- err = reset_control_reset(fuse->rst);
- pm_runtime_put(&pdev->dev);
- if (err < 0) {
- dev_err(&pdev->dev, "failed to reset FUSE: %d\n", err);
- return err;
- }
- /* release the early I/O memory mapping */
- iounmap(base);
- return 0;
- }
- static int __maybe_unused tegra_fuse_runtime_resume(struct device *dev)
- {
- int err;
- err = clk_prepare_enable(fuse->clk);
- if (err < 0) {
- dev_err(dev, "failed to enable FUSE clock: %d\n", err);
- return err;
- }
- return 0;
- }
- static int __maybe_unused tegra_fuse_runtime_suspend(struct device *dev)
- {
- clk_disable_unprepare(fuse->clk);
- return 0;
- }
- static int __maybe_unused tegra_fuse_suspend(struct device *dev)
- {
- int ret;
- /*
- * Critical for RAM re-repair operation, which must occur on resume
- * from LP1 system suspend and as part of CCPLEX cluster switching.
- */
- if (fuse->soc->clk_suspend_on)
- ret = pm_runtime_resume_and_get(dev);
- else
- ret = pm_runtime_force_suspend(dev);
- return ret;
- }
- static int __maybe_unused tegra_fuse_resume(struct device *dev)
- {
- int ret = 0;
- if (fuse->soc->clk_suspend_on)
- pm_runtime_put(dev);
- else
- ret = pm_runtime_force_resume(dev);
- return ret;
- }
- static const struct dev_pm_ops tegra_fuse_pm = {
- SET_RUNTIME_PM_OPS(tegra_fuse_runtime_suspend, tegra_fuse_runtime_resume,
- NULL)
- SET_SYSTEM_SLEEP_PM_OPS(tegra_fuse_suspend, tegra_fuse_resume)
- };
- static const struct acpi_device_id tegra_fuse_acpi_match[] = {
- { "NVDA200F" },
- { /* sentinel */ }
- };
- MODULE_DEVICE_TABLE(acpi, tegra_fuse_acpi_match);
- static struct platform_driver tegra_fuse_driver = {
- .driver = {
- .name = "tegra-fuse",
- .of_match_table = tegra_fuse_match,
- .acpi_match_table = tegra_fuse_acpi_match,
- .pm = &tegra_fuse_pm,
- .suppress_bind_attrs = true,
- },
- .probe = tegra_fuse_probe,
- };
- builtin_platform_driver(tegra_fuse_driver);
- u32 __init tegra_fuse_read_spare(unsigned int spare)
- {
- unsigned int offset = fuse->soc->info->spare + spare * 4;
- return fuse->read_early(fuse, offset) & 1;
- }
- u32 __init tegra_fuse_read_early(unsigned int offset)
- {
- return fuse->read_early(fuse, offset);
- }
- int tegra_fuse_readl(unsigned long offset, u32 *value)
- {
- if (!fuse->dev)
- return -EPROBE_DEFER;
- /*
- * Wait for fuse->clk to be initialized if device-tree boot is used.
- */
- if (is_of_node(dev_fwnode(fuse->dev)) && !fuse->clk)
- return -EPROBE_DEFER;
- if (!fuse->read)
- return -EPROBE_DEFER;
- if (IS_ERR(fuse->clk))
- return PTR_ERR(fuse->clk);
- *value = fuse->read(fuse, offset);
- return 0;
- }
- EXPORT_SYMBOL(tegra_fuse_readl);
- static void tegra_enable_fuse_clk(void __iomem *base)
- {
- u32 reg;
- reg = readl_relaxed(base + 0x48);
- reg |= 1 << 28;
- writel(reg, base + 0x48);
- /*
- * Enable FUSE clock. This needs to be hardcoded because the clock
- * subsystem is not active during early boot.
- */
- reg = readl(base + 0x14);
- reg |= 1 << 7;
- writel(reg, base + 0x14);
- }
- static ssize_t major_show(struct device *dev, struct device_attribute *attr,
- char *buf)
- {
- return sprintf(buf, "%d\n", tegra_get_major_rev());
- }
- static DEVICE_ATTR_RO(major);
- static ssize_t minor_show(struct device *dev, struct device_attribute *attr,
- char *buf)
- {
- return sprintf(buf, "%d\n", tegra_get_minor_rev());
- }
- static DEVICE_ATTR_RO(minor);
- static struct attribute *tegra_soc_attr[] = {
- &dev_attr_major.attr,
- &dev_attr_minor.attr,
- NULL,
- };
- const struct attribute_group tegra_soc_attr_group = {
- .attrs = tegra_soc_attr,
- };
- #if IS_ENABLED(CONFIG_ARCH_TEGRA_194_SOC) || \
- IS_ENABLED(CONFIG_ARCH_TEGRA_234_SOC) || \
- IS_ENABLED(CONFIG_ARCH_TEGRA_241_SOC)
- static ssize_t platform_show(struct device *dev, struct device_attribute *attr,
- char *buf)
- {
- /*
- * Displays the value in the 'pre_si_platform' field of the HIDREV
- * register for Tegra194 devices. A value of 0 indicates that the
- * platform type is silicon and all other non-zero values indicate
- * the type of simulation platform is being used.
- */
- return sprintf(buf, "%d\n", tegra_get_platform());
- }
- static DEVICE_ATTR_RO(platform);
- static struct attribute *tegra194_soc_attr[] = {
- &dev_attr_major.attr,
- &dev_attr_minor.attr,
- &dev_attr_platform.attr,
- NULL,
- };
- const struct attribute_group tegra194_soc_attr_group = {
- .attrs = tegra194_soc_attr,
- };
- #endif
- struct device *tegra_soc_device_register(void)
- {
- struct soc_device_attribute *attr;
- struct soc_device *dev;
- attr = kzalloc_obj(*attr);
- if (!attr)
- return NULL;
- attr->family = kasprintf(GFP_KERNEL, "Tegra");
- if (tegra_is_silicon())
- attr->revision = kasprintf(GFP_KERNEL, "%s %s",
- tegra_platform_name[tegra_sku_info.platform],
- tegra_revision_name[tegra_sku_info.revision]);
- else
- attr->revision = kasprintf(GFP_KERNEL, "%s",
- tegra_platform_name[tegra_sku_info.platform]);
- attr->soc_id = kasprintf(GFP_KERNEL, "%u", tegra_get_chip_id());
- attr->custom_attr_group = fuse->soc->soc_attr_group;
- dev = soc_device_register(attr);
- if (IS_ERR(dev)) {
- kfree(attr->soc_id);
- kfree(attr->revision);
- kfree(attr->family);
- kfree(attr);
- return ERR_CAST(dev);
- }
- return soc_device_to_device(dev);
- }
- static int __init tegra_init_fuse(void)
- {
- const struct of_device_id *match;
- struct device_node *np;
- struct resource regs;
- int err;
- tegra_init_apbmisc();
- np = of_find_matching_node_and_match(NULL, tegra_fuse_match, &match);
- if (!np) {
- /*
- * Fall back to legacy initialization for 32-bit ARM only. All
- * 64-bit ARM device tree files for Tegra are required to have
- * a FUSE node.
- *
- * This is for backwards-compatibility with old device trees
- * that didn't contain a FUSE node.
- */
- if (IS_ENABLED(CONFIG_ARM) && soc_is_tegra()) {
- u8 chip = tegra_get_chip_id();
- regs.start = 0x7000f800;
- regs.end = 0x7000fbff;
- regs.flags = IORESOURCE_MEM;
- switch (chip) {
- #ifdef CONFIG_ARCH_TEGRA_2x_SOC
- case TEGRA20:
- fuse->soc = &tegra20_fuse_soc;
- break;
- #endif
- #ifdef CONFIG_ARCH_TEGRA_3x_SOC
- case TEGRA30:
- fuse->soc = &tegra30_fuse_soc;
- break;
- #endif
- #ifdef CONFIG_ARCH_TEGRA_114_SOC
- case TEGRA114:
- fuse->soc = &tegra114_fuse_soc;
- break;
- #endif
- #ifdef CONFIG_ARCH_TEGRA_124_SOC
- case TEGRA124:
- fuse->soc = &tegra124_fuse_soc;
- break;
- #endif
- default:
- pr_warn("Unsupported SoC: %02x\n", chip);
- break;
- }
- } else {
- /*
- * At this point we're not running on Tegra, so play
- * nice with multi-platform kernels.
- */
- return 0;
- }
- } else {
- /*
- * Extract information from the device tree if we've found a
- * matching node.
- */
- if (of_address_to_resource(np, 0, ®s) < 0) {
- pr_err("failed to get FUSE register\n");
- return -ENXIO;
- }
- fuse->soc = match->data;
- }
- np = of_find_matching_node(NULL, car_match);
- if (np) {
- void __iomem *base = of_iomap(np, 0);
- of_node_put(np);
- if (base) {
- tegra_enable_fuse_clk(base);
- iounmap(base);
- } else {
- pr_err("failed to map clock registers\n");
- return -ENXIO;
- }
- }
- fuse->base = ioremap(regs.start, resource_size(®s));
- if (!fuse->base) {
- pr_err("failed to map FUSE registers\n");
- return -ENXIO;
- }
- fuse->soc->init(fuse);
- tegra_fuse_print_sku_info(&tegra_sku_info);
- err = tegra_fuse_add_lookups(fuse);
- if (err)
- pr_err("failed to add FUSE lookups\n");
- return err;
- }
- early_initcall(tegra_init_fuse);
- #ifdef CONFIG_ARM64
- static int __init tegra_init_soc(void)
- {
- struct device_node *np;
- struct device *soc;
- /* make sure we're running on Tegra */
- np = of_find_matching_node(NULL, tegra_fuse_match);
- if (!np)
- return 0;
- of_node_put(np);
- soc = tegra_soc_device_register();
- if (IS_ERR(soc)) {
- pr_err("failed to register SoC device: %ld\n", PTR_ERR(soc));
- return PTR_ERR(soc);
- }
- return 0;
- }
- device_initcall(tegra_init_soc);
- #endif
|