BPMP: reduce HV timeout to 30 sec

The current timeout of 10 minutes for the BPMP-HV IVC
is too long.  Reducing it to 30 sec

Bug 4180228

Change-Id: Ibfa86bee39c970d0bb3dbdf2b2b446fdb6ad9ef4
Signed-off-by: Mark Mendez <mmendez@nvidia.com>
(cherry picked from commit a775d866e9127b95b7adee8d3b4961bb6ee6ae89)
Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/2962685
GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
Reviewed-by: Vipin Kumar <vipink@nvidia.com>
This commit is contained in:
Mark Mendez
2023-08-02 08:41:47 -07:00
committed by mobile promotions
parent 1a3e4521c8
commit 1435b03c66

View File

@@ -641,12 +641,12 @@ static const struct tegra_bpmp_soc tegra186_hv_soc = {
.cpu_tx = { .cpu_tx = {
.offset = 3, .offset = 3,
.count = 1, .count = 1,
.timeout = 60 * USEC_PER_SEC, .timeout = 30 * USEC_PER_SEC,
}, },
.thread = { .thread = {
.offset = 0, .offset = 0,
.count = 3, .count = 3,
.timeout = 600 * USEC_PER_SEC, .timeout = 30 * USEC_PER_SEC,
}, },
.cpu_rx = { .cpu_rx = {
.offset = 13, .offset = 13,
@@ -663,12 +663,12 @@ static const struct tegra_bpmp_soc t194_safe_hv_soc = {
.cpu_tx = { .cpu_tx = {
.offset = 3, .offset = 3,
.count = 1, .count = 1,
.timeout = 60 * USEC_PER_SEC, .timeout = 30 * USEC_PER_SEC,
}, },
.thread = { .thread = {
.offset = 0, .offset = 0,
.count = 3, .count = 3,
.timeout = 600 * USEC_PER_SEC, .timeout = 30 * USEC_PER_SEC,
}, },
}, },
.ops = &tegra186_bpmp_hv_ops, .ops = &tegra186_bpmp_hv_ops,