summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gm20b/clk_gm20b.c
diff options
context:
space:
mode:
authorTerje Bergstrom <tbergstrom@nvidia.com>2017-03-29 18:00:24 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2017-04-11 13:56:06 -0400
commit19fdb429c2b04d13faecad8b2e5466e9f3c7b8c7 (patch)
treee92f6d93ae2593286546f983b9a1fff8638aa9a6 /drivers/gpu/nvgpu/gm20b/clk_gm20b.c
parent1a4647272f4fe50137c79583b698c1ef6f5def12 (diff)
gpu: nvgpu: Wrappers for checking platform type
Add nvgpu_* wrappers for determining if we're running in simulation or silicon, and if we're running in hypervisor. The new wrappers require struct gk20a pointer, and gk20a_fence_wait() did not have access to one. Add struct gk20a pointer as the first parameter. JIRA NVGPU-16 Change-Id: I73b2b8f091ca29fb1827054abd2adaf583710331 Signed-off-by: Terje Bergstrom <tbergstrom@nvidia.com> Reviewed-on: http://git-master/r/1331565 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gm20b/clk_gm20b.c')
-rw-r--r--drivers/gpu/nvgpu/gm20b/clk_gm20b.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/gpu/nvgpu/gm20b/clk_gm20b.c b/drivers/gpu/nvgpu/gm20b/clk_gm20b.c
index 644140d8..20c2e997 100644
--- a/drivers/gpu/nvgpu/gm20b/clk_gm20b.c
+++ b/drivers/gpu/nvgpu/gm20b/clk_gm20b.c
@@ -31,6 +31,8 @@
31#include "gk20a/gk20a.h" 31#include "gk20a/gk20a.h"
32#include "clk_gm20b.h" 32#include "clk_gm20b.h"
33 33
34#include <nvgpu/soc.h>
35
34#include <nvgpu/hw/gm20b/hw_trim_gm20b.h> 36#include <nvgpu/hw/gm20b/hw_trim_gm20b.h>
35#include <nvgpu/hw/gm20b/hw_timer_gm20b.h> 37#include <nvgpu/hw/gm20b/hw_timer_gm20b.h>
36#include <nvgpu/hw/gm20b/hw_therm_gm20b.h> 38#include <nvgpu/hw/gm20b/hw_therm_gm20b.h>
@@ -835,7 +837,7 @@ static int clk_program_gpc_pll(struct gk20a *g, struct pll *gpll_new,
835 837
836 gk20a_dbg_fn(""); 838 gk20a_dbg_fn("");
837 839
838 if (!tegra_platform_is_silicon()) 840 if (!nvgpu_platform_is_silicon(g))
839 return 0; 841 return 0;
840 842
841 /* get old coefficients */ 843 /* get old coefficients */