summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Nieto <dmartineznie@nvidia.com>2016-12-02 23:44:49 -0500
committermobile promotions <svcmobile_promotions@nvidia.com>2017-01-05 12:13:31 -0500
commitb7ad7016d4dbc2c6522ab58da262ce4c14d51d34 (patch)
tree5d8b06e79c732a7b02c2fdb6ea78c2561c300096
parent7f55cfb6e92eb56565fb62684b02664c9cf05c40 (diff)
gpu: nvgpu: Apply default pri timeout on all SKUs
Previous patch added ability so set default PRI timeout and set it for one of the dGPU boards. Set the timeout to all known dGPU boards. Bug 200246808 Change-Id: I645ca8b4a51d61c924a9f52b1fc6e884795adf19 Signed-off-by: David Nieto <dmartineznie@nvidia.com> Reviewed-on: http://git-master/r/1264304 Reviewed-on: http://git-master/r/1280436 Reviewed-by: Terje Bergstrom <tbergstrom@nvidia.com> Tested-by: Terje Bergstrom <tbergstrom@nvidia.com>
-rw-r--r--drivers/gpu/nvgpu/pci.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/pci.c b/drivers/gpu/nvgpu/pci.c
index 80fe5342..5716d034 100644
--- a/drivers/gpu/nvgpu/pci.c
+++ b/drivers/gpu/nvgpu/pci.c
@@ -96,6 +96,7 @@ static struct gk20a_platform nvgpu_pci_device[] = {
96 .enable_elcg = false, 96 .enable_elcg = false,
97 .enable_slcg = true, 97 .enable_slcg = true,
98 .enable_blcg = true, 98 .enable_blcg = true,
99 .default_pri_timeout = 0x3ff,
99 100
100 .disable_aspm = true, 101 .disable_aspm = true,
101 102
@@ -126,6 +127,7 @@ static struct gk20a_platform nvgpu_pci_device[] = {
126 .enable_elcg = false, 127 .enable_elcg = false,
127 .enable_slcg = true, 128 .enable_slcg = true,
128 .enable_blcg = true, 129 .enable_blcg = true,
130 .default_pri_timeout = 0x3ff,
129 131
130 .disable_aspm = true, 132 .disable_aspm = true,
131 133