* [PATCH 1/3] soc/tegra: fuse: Add spare bit offset for Tegra114
@ 2015-05-04 14:48 Thierry Reding
[not found] ` <1430750923-23682-1-git-send-email-thierry.reding-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
0 siblings, 1 reply; 4+ messages in thread
From: Thierry Reding @ 2015-05-04 14:48 UTC (permalink / raw)
To: Thierry Reding
Cc: Stephen Warren, Alexandre Courbot, Peter De Schrijver,
Paul Walmsley, linux-tegra-u79uwXL29TY76Z2rM5mHXA
From: Thierry Reding <treding-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
The offset of the first spare bit register on Tegra114 is 0x280.
Signed-off-by: Thierry Reding <treding-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
---
drivers/soc/tegra/fuse/fuse-tegra30.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/soc/tegra/fuse/fuse-tegra30.c b/drivers/soc/tegra/fuse/fuse-tegra30.c
index 5a6c533417fc..a55664fda81e 100644
--- a/drivers/soc/tegra/fuse/fuse-tegra30.c
+++ b/drivers/soc/tegra/fuse/fuse-tegra30.c
@@ -117,6 +117,7 @@ const struct tegra_fuse_soc tegra30_fuse_soc = {
static const struct tegra_fuse_info tegra114_fuse_info = {
.read = tegra30_fuse_read,
.size = 0x2a0,
+ .spare = 0x280,
};
const struct tegra_fuse_soc tegra114_fuse_soc = {
--
2.3.5
^ permalink raw reply related [flat|nested] 4+ messages in thread[parent not found: <1430750923-23682-1-git-send-email-thierry.reding-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>]
* [PATCH 2/3] soc/tegra: fuse: Add spare bit offset for Tegra124 [not found] ` <1430750923-23682-1-git-send-email-thierry.reding-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> @ 2015-05-04 14:48 ` Thierry Reding 2015-05-04 14:48 ` [PATCH 3/3] soc/tegra: fuse: Add spare bit offset for Tegra210 Thierry Reding 2015-05-04 15:07 ` [PATCH 1/3] soc/tegra: fuse: Add spare bit offset for Tegra114 Thierry Reding 2 siblings, 0 replies; 4+ messages in thread From: Thierry Reding @ 2015-05-04 14:48 UTC (permalink / raw) To: Thierry Reding Cc: Stephen Warren, Alexandre Courbot, Peter De Schrijver, Paul Walmsley, linux-tegra-u79uwXL29TY76Z2rM5mHXA From: Thierry Reding <treding-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org> The offset of the first spare bit register on Tegra124 is 0x300. Signed-off-by: Thierry Reding <treding-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org> --- drivers/soc/tegra/fuse/fuse-tegra30.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/soc/tegra/fuse/fuse-tegra30.c b/drivers/soc/tegra/fuse/fuse-tegra30.c index a55664fda81e..ff409b4a0e36 100644 --- a/drivers/soc/tegra/fuse/fuse-tegra30.c +++ b/drivers/soc/tegra/fuse/fuse-tegra30.c @@ -131,6 +131,7 @@ const struct tegra_fuse_soc tegra114_fuse_soc = { static const struct tegra_fuse_info tegra124_fuse_info = { .read = tegra30_fuse_read, .size = 0x300, + .spare = 0x300, }; const struct tegra_fuse_soc tegra124_fuse_soc = { -- 2.3.5 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 3/3] soc/tegra: fuse: Add spare bit offset for Tegra210 [not found] ` <1430750923-23682-1-git-send-email-thierry.reding-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> 2015-05-04 14:48 ` [PATCH 2/3] soc/tegra: fuse: Add spare bit offset for Tegra124 Thierry Reding @ 2015-05-04 14:48 ` Thierry Reding 2015-05-04 15:07 ` [PATCH 1/3] soc/tegra: fuse: Add spare bit offset for Tegra114 Thierry Reding 2 siblings, 0 replies; 4+ messages in thread From: Thierry Reding @ 2015-05-04 14:48 UTC (permalink / raw) To: Thierry Reding Cc: Stephen Warren, Alexandre Courbot, Peter De Schrijver, Paul Walmsley, linux-tegra-u79uwXL29TY76Z2rM5mHXA From: Thierry Reding <treding-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org> The offset of the first spare bit register on Tegra210 is 0x380. Signed-off-by: Thierry Reding <treding-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org> --- drivers/soc/tegra/fuse/fuse-tegra30.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/soc/tegra/fuse/fuse-tegra30.c b/drivers/soc/tegra/fuse/fuse-tegra30.c index ff409b4a0e36..74983d474d5c 100644 --- a/drivers/soc/tegra/fuse/fuse-tegra30.c +++ b/drivers/soc/tegra/fuse/fuse-tegra30.c @@ -145,6 +145,7 @@ const struct tegra_fuse_soc tegra124_fuse_soc = { static const struct tegra_fuse_info tegra210_fuse_info = { .read = tegra30_fuse_read, .size = 0x300, + .spare = 0x380, }; const struct tegra_fuse_soc tegra210_fuse_soc = { -- 2.3.5 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 1/3] soc/tegra: fuse: Add spare bit offset for Tegra114 [not found] ` <1430750923-23682-1-git-send-email-thierry.reding-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> 2015-05-04 14:48 ` [PATCH 2/3] soc/tegra: fuse: Add spare bit offset for Tegra124 Thierry Reding 2015-05-04 14:48 ` [PATCH 3/3] soc/tegra: fuse: Add spare bit offset for Tegra210 Thierry Reding @ 2015-05-04 15:07 ` Thierry Reding 2 siblings, 0 replies; 4+ messages in thread From: Thierry Reding @ 2015-05-04 15:07 UTC (permalink / raw) To: Stephen Warren, Alexandre Courbot, Peter De Schrijver, Paul Walmsley, linux-tegra-u79uwXL29TY76Z2rM5mHXA [-- Attachment #1: Type: text/plain, Size: 555 bytes --] On Mon, May 04, 2015 at 04:48:41PM +0200, Thierry Reding wrote: > From: Thierry Reding <treding-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org> > > The offset of the first spare bit register on Tegra114 is 0x280. > > Signed-off-by: Thierry Reding <treding-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org> > --- > drivers/soc/tegra/fuse/fuse-tegra30.c | 1 + > 1 file changed, 1 insertion(+) I just realized that all these offsets are offset by 0x100 because they use the generic fuse access operation. Will update the series to reflect that. Thierry [-- Attachment #2: Type: application/pgp-signature, Size: 819 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-05-04 15:07 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-04 14:48 [PATCH 1/3] soc/tegra: fuse: Add spare bit offset for Tegra114 Thierry Reding
[not found] ` <1430750923-23682-1-git-send-email-thierry.reding-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2015-05-04 14:48 ` [PATCH 2/3] soc/tegra: fuse: Add spare bit offset for Tegra124 Thierry Reding
2015-05-04 14:48 ` [PATCH 3/3] soc/tegra: fuse: Add spare bit offset for Tegra210 Thierry Reding
2015-05-04 15:07 ` [PATCH 1/3] soc/tegra: fuse: Add spare bit offset for Tegra114 Thierry Reding
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).