提交 6f259bf1 编写于 作者: K kartik 提交者: Thierry Reding

soc/tegra: fuse: Update nvmem cell list

Update tegra_fuse_cells with below entries:

 - gcplex-config-fuse:
     Configuration bits for GPU, used to enable/disable write protected
     region used for storing GPU firmware.
 - pdi0:
     Unique per chip public identifier.
 - pdi1:
     Unique per chip public identifier.
Signed-off-by: NPrathamesh Shete <pshete@nvidia.com>
Signed-off-by: NKartik <kkartik@nvidia.com>
Signed-off-by: NThierry Reding <treding@nvidia.com>
上级 1e5cf145
// SPDX-License-Identifier: GPL-2.0-only // SPDX-License-Identifier: GPL-2.0-only
/* /*
* Copyright (c) 2013-2014, NVIDIA CORPORATION. All rights reserved. * Copyright (c) 2013-2021, NVIDIA CORPORATION. All rights reserved.
*/ */
#include <linux/clk.h> #include <linux/clk.h>
...@@ -161,6 +161,12 @@ static const struct nvmem_cell_info tegra_fuse_cells[] = { ...@@ -161,6 +161,12 @@ static const struct nvmem_cell_info tegra_fuse_cells[] = {
.bytes = 4, .bytes = 4,
.bit_offset = 0, .bit_offset = 0,
.nbits = 32, .nbits = 32,
}, {
.name = "gcplex-config-fuse",
.offset = 0x1c8,
.bytes = 4,
.bit_offset = 0,
.nbits = 32,
}, { }, {
.name = "tsensor-realignment", .name = "tsensor-realignment",
.offset = 0x1fc, .offset = 0x1fc,
...@@ -179,6 +185,18 @@ static const struct nvmem_cell_info tegra_fuse_cells[] = { ...@@ -179,6 +185,18 @@ static const struct nvmem_cell_info tegra_fuse_cells[] = {
.bytes = 4, .bytes = 4,
.bit_offset = 0, .bit_offset = 0,
.nbits = 32, .nbits = 32,
}, {
.name = "pdi0",
.offset = 0x300,
.bytes = 4,
.bit_offset = 0,
.nbits = 32,
}, {
.name = "pdi1",
.offset = 0x304,
.bytes = 4,
.bit_offset = 0,
.nbits = 32,
}, },
}; };
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册