2019-05-29 00:10:04 +07:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2014-06-12 22:36:37 +07:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2014, NVIDIA CORPORATION. All rights reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/of.h>
|
|
|
|
#include <linux/of_address.h>
|
|
|
|
#include <linux/io.h>
|
|
|
|
|
|
|
|
#include <soc/tegra/fuse.h>
|
2015-05-04 18:30:50 +07:00
|
|
|
#include <soc/tegra/common.h>
|
2014-06-12 22:36:37 +07:00
|
|
|
|
|
|
|
#include "fuse.h"
|
|
|
|
|
|
|
|
#define FUSE_SKU_INFO 0x10
|
|
|
|
|
2015-03-12 21:47:55 +07:00
|
|
|
#define PMC_STRAPPING_OPT_A_RAM_CODE_SHIFT 4
|
|
|
|
#define PMC_STRAPPING_OPT_A_RAM_CODE_MASK_LONG \
|
|
|
|
(0xf << PMC_STRAPPING_OPT_A_RAM_CODE_SHIFT)
|
|
|
|
#define PMC_STRAPPING_OPT_A_RAM_CODE_MASK_SHORT \
|
|
|
|
(0x3 << PMC_STRAPPING_OPT_A_RAM_CODE_SHIFT)
|
|
|
|
|
|
|
|
static bool long_ram_code;
|
2019-12-19 01:23:01 +07:00
|
|
|
static u32 strapping;
|
|
|
|
static u32 chipid;
|
2014-06-12 22:36:37 +07:00
|
|
|
|
|
|
|
u32 tegra_read_chipid(void)
|
|
|
|
{
|
2019-12-19 01:23:02 +07:00
|
|
|
WARN(!chipid, "Tegra ABP MISC not yet available\n");
|
2014-06-12 22:36:37 +07:00
|
|
|
|
2019-12-19 01:23:01 +07:00
|
|
|
return chipid;
|
2017-06-26 22:21:17 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
u8 tegra_get_chip_id(void)
|
|
|
|
{
|
2014-07-11 16:13:30 +07:00
|
|
|
return (tegra_read_chipid() >> 8) & 0xff;
|
2014-06-12 22:36:37 +07:00
|
|
|
}
|
|
|
|
|
soc/tegra: fuse: Add custom SoC attributes
Add a custom SoC attribute for Tegra to expose the HIDREV register
fields to userspace via the sysfs. This register provides additional
details about the type of device (eg, silicon, FPGA, etc) as well as
revision. Exposing this information is useful for identifying the
exact device revision and device type.
For Tegra devices up until Tegra186, the majorrev and minorrev fields of
the HIDREV register are used to determine the device revision and device
type. For Tegra194, the majorrev and minorrev fields only determine the
revision. Starting with Tegra194, there is an additional field,
pre_si_platform (which occupies bits 20-23), that now determines device
type. Therefore, for all Tegra devices, add a custom SoC attribute for
the majorrev and minorrev fields and for Tegra194 add an additional
attribute for the pre_si_platform field.
Signed-off-by: Jon Hunter <jonathanh@nvidia.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
2020-04-17 19:39:48 +07:00
|
|
|
u8 tegra_get_major_rev(void)
|
|
|
|
{
|
|
|
|
return (tegra_read_chipid() >> 4) & 0xf;
|
|
|
|
}
|
|
|
|
|
|
|
|
u8 tegra_get_minor_rev(void)
|
|
|
|
{
|
|
|
|
return (tegra_read_chipid() >> 16) & 0xf;
|
|
|
|
}
|
|
|
|
|
2014-06-12 22:36:37 +07:00
|
|
|
u32 tegra_read_straps(void)
|
|
|
|
{
|
2019-12-19 01:23:02 +07:00
|
|
|
WARN(!chipid, "Tegra ABP MISC not yet available\n");
|
|
|
|
|
2019-12-19 01:23:01 +07:00
|
|
|
return strapping;
|
2014-06-12 22:36:37 +07:00
|
|
|
}
|
|
|
|
|
2015-03-12 21:47:55 +07:00
|
|
|
u32 tegra_read_ram_code(void)
|
|
|
|
{
|
|
|
|
u32 straps = tegra_read_straps();
|
|
|
|
|
|
|
|
if (long_ram_code)
|
|
|
|
straps &= PMC_STRAPPING_OPT_A_RAM_CODE_MASK_LONG;
|
|
|
|
else
|
|
|
|
straps &= PMC_STRAPPING_OPT_A_RAM_CODE_MASK_SHORT;
|
|
|
|
|
|
|
|
return straps >> PMC_STRAPPING_OPT_A_RAM_CODE_SHIFT;
|
|
|
|
}
|
|
|
|
|
2014-06-12 22:36:37 +07:00
|
|
|
static const struct of_device_id apbmisc_match[] __initconst = {
|
|
|
|
{ .compatible = "nvidia,tegra20-apbmisc", },
|
2017-06-26 22:25:24 +07:00
|
|
|
{ .compatible = "nvidia,tegra186-misc", },
|
2020-01-03 15:30:17 +07:00
|
|
|
{ .compatible = "nvidia,tegra194-misc", },
|
2014-06-12 22:36:37 +07:00
|
|
|
{},
|
|
|
|
};
|
|
|
|
|
|
|
|
void __init tegra_init_revision(void)
|
|
|
|
{
|
2020-04-17 19:39:49 +07:00
|
|
|
u8 chip_id, minor_rev;
|
2014-06-12 22:36:37 +07:00
|
|
|
|
2020-04-17 19:39:49 +07:00
|
|
|
chip_id = tegra_get_chip_id();
|
|
|
|
minor_rev = tegra_get_minor_rev();
|
2014-06-12 22:36:37 +07:00
|
|
|
|
|
|
|
switch (minor_rev) {
|
|
|
|
case 1:
|
2020-04-17 19:39:49 +07:00
|
|
|
tegra_sku_info.revision = TEGRA_REVISION_A01;
|
2014-06-12 22:36:37 +07:00
|
|
|
break;
|
|
|
|
case 2:
|
2020-04-17 19:39:49 +07:00
|
|
|
tegra_sku_info.revision = TEGRA_REVISION_A02;
|
2014-06-12 22:36:37 +07:00
|
|
|
break;
|
|
|
|
case 3:
|
2015-04-29 21:54:04 +07:00
|
|
|
if (chip_id == TEGRA20 && (tegra_fuse_read_spare(18) ||
|
|
|
|
tegra_fuse_read_spare(19)))
|
2020-04-17 19:39:49 +07:00
|
|
|
tegra_sku_info.revision = TEGRA_REVISION_A03p;
|
2014-06-12 22:36:37 +07:00
|
|
|
else
|
2020-04-17 19:39:49 +07:00
|
|
|
tegra_sku_info.revision = TEGRA_REVISION_A03;
|
2014-06-12 22:36:37 +07:00
|
|
|
break;
|
|
|
|
case 4:
|
2020-04-17 19:39:49 +07:00
|
|
|
tegra_sku_info.revision = TEGRA_REVISION_A04;
|
2014-06-12 22:36:37 +07:00
|
|
|
break;
|
|
|
|
default:
|
2020-04-17 19:39:49 +07:00
|
|
|
tegra_sku_info.revision = TEGRA_REVISION_UNKNOWN;
|
2014-06-12 22:36:37 +07:00
|
|
|
}
|
|
|
|
|
2015-04-29 21:54:04 +07:00
|
|
|
tegra_sku_info.sku_id = tegra_fuse_read_early(FUSE_SKU_INFO);
|
2014-06-12 22:36:37 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
void __init tegra_init_apbmisc(void)
|
|
|
|
{
|
2019-12-19 01:23:01 +07:00
|
|
|
void __iomem *apbmisc_base, *strapping_base;
|
2015-05-04 18:30:50 +07:00
|
|
|
struct resource apbmisc, straps;
|
2014-06-12 22:36:37 +07:00
|
|
|
struct device_node *np;
|
|
|
|
|
|
|
|
np = of_find_matching_node(NULL, apbmisc_match);
|
2015-05-04 18:30:50 +07:00
|
|
|
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
|
|
|
|
* an APBMISC node.
|
|
|
|
*
|
|
|
|
* This is for backwards-compatibility with old device trees
|
|
|
|
* that didn't contain an APBMISC node.
|
|
|
|
*/
|
|
|
|
if (IS_ENABLED(CONFIG_ARM) && soc_is_tegra()) {
|
|
|
|
/* APBMISC registers (chip revision, ...) */
|
|
|
|
apbmisc.start = 0x70000800;
|
|
|
|
apbmisc.end = 0x70000863;
|
|
|
|
apbmisc.flags = IORESOURCE_MEM;
|
|
|
|
|
|
|
|
/* strapping options */
|
2019-12-19 01:23:03 +07:00
|
|
|
if (of_machine_is_compatible("nvidia,tegra124")) {
|
2015-05-04 18:30:50 +07:00
|
|
|
straps.start = 0x7000e864;
|
|
|
|
straps.end = 0x7000e867;
|
|
|
|
} else {
|
|
|
|
straps.start = 0x70000008;
|
|
|
|
straps.end = 0x7000000b;
|
|
|
|
}
|
|
|
|
|
|
|
|
straps.flags = IORESOURCE_MEM;
|
|
|
|
|
|
|
|
pr_warn("Using APBMISC region %pR\n", &apbmisc);
|
|
|
|
pr_warn("Using strapping options registers %pR\n",
|
|
|
|
&straps);
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* At this point we're not running on Tegra, so play
|
|
|
|
* nice with multi-platform kernels.
|
|
|
|
*/
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* Extract information from the device tree if we've found a
|
|
|
|
* matching node.
|
|
|
|
*/
|
|
|
|
if (of_address_to_resource(np, 0, &apbmisc) < 0) {
|
|
|
|
pr_err("failed to get APBMISC registers\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (of_address_to_resource(np, 1, &straps) < 0) {
|
|
|
|
pr_err("failed to get strapping options registers\n");
|
|
|
|
return;
|
|
|
|
}
|
2014-06-12 22:36:37 +07:00
|
|
|
}
|
|
|
|
|
2020-01-06 15:43:50 +07:00
|
|
|
apbmisc_base = ioremap(apbmisc.start, resource_size(&apbmisc));
|
2019-12-19 01:23:04 +07:00
|
|
|
if (!apbmisc_base) {
|
2015-05-04 18:30:50 +07:00
|
|
|
pr_err("failed to map APBMISC registers\n");
|
2019-12-19 01:23:04 +07:00
|
|
|
} else {
|
2019-12-19 01:23:01 +07:00
|
|
|
chipid = readl_relaxed(apbmisc_base + 4);
|
2019-12-19 01:23:04 +07:00
|
|
|
iounmap(apbmisc_base);
|
|
|
|
}
|
2015-05-04 18:30:50 +07:00
|
|
|
|
2020-01-06 15:43:50 +07:00
|
|
|
strapping_base = ioremap(straps.start, resource_size(&straps));
|
2019-12-19 01:23:04 +07:00
|
|
|
if (!strapping_base) {
|
2015-05-04 18:30:50 +07:00
|
|
|
pr_err("failed to map strapping options registers\n");
|
2019-12-19 01:23:04 +07:00
|
|
|
} else {
|
2019-12-19 01:23:01 +07:00
|
|
|
strapping = readl_relaxed(strapping_base);
|
2019-12-19 01:23:04 +07:00
|
|
|
iounmap(strapping_base);
|
|
|
|
}
|
2015-03-12 21:47:55 +07:00
|
|
|
|
|
|
|
long_ram_code = of_property_read_bool(np, "nvidia,long-ram-code");
|
2014-06-12 22:36:37 +07:00
|
|
|
}
|