Skip to content

Commit d944364

Browse files
Stefan Kristianssonthierryreding
authored andcommitted
soc/tegra: fuse: Add support for Tegra264
Add support for Tegra264 to the fuse handling code. Signed-off-by: Stefan Kristiansson <stefank@nvidia.com> Signed-off-by: Peter De Schrijver <pdeschrijver@nvidia.com> Signed-off-by: Thierry Reding <treding@nvidia.com>
1 parent ac9a786 commit d944364

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

drivers/soc/tegra/fuse/tegra-apbmisc.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// SPDX-License-Identifier: GPL-2.0-only
22
/*
3-
* Copyright (c) 2014, NVIDIA CORPORATION. All rights reserved.
3+
* Copyright (c) 2014-2023, NVIDIA CORPORATION. All rights reserved.
44
*/
55

66
#include <linux/export.h>
@@ -62,6 +62,7 @@ bool tegra_is_silicon(void)
6262
switch (tegra_get_chip_id()) {
6363
case TEGRA194:
6464
case TEGRA234:
65+
case TEGRA264:
6566
if (tegra_get_platform() == 0)
6667
return true;
6768

include/soc/tegra/fuse.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* SPDX-License-Identifier: GPL-2.0-only */
22
/*
3-
* Copyright (c) 2012, NVIDIA CORPORATION. All rights reserved.
3+
* Copyright (c) 2012-2023, NVIDIA CORPORATION. All rights reserved.
44
*/
55

66
#ifndef __SOC_TEGRA_FUSE_H__
@@ -17,6 +17,7 @@
1717
#define TEGRA186 0x18
1818
#define TEGRA194 0x19
1919
#define TEGRA234 0x23
20+
#define TEGRA264 0x26
2021

2122
#define TEGRA_FUSE_SKU_CALIB_0 0xf0
2223
#define TEGRA30_FUSE_SATA_CALIB 0x124

0 commit comments

Comments
 (0)