summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/common/linux/platform_gk20a_tegra.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/common/linux/platform_gk20a_tegra.c')
-rw-r--r--drivers/gpu/nvgpu/common/linux/platform_gk20a_tegra.c21
1 files changed, 5 insertions, 16 deletions
diff --git a/drivers/gpu/nvgpu/common/linux/platform_gk20a_tegra.c b/drivers/gpu/nvgpu/common/linux/platform_gk20a_tegra.c
index 5301b13d..74309942 100644
--- a/drivers/gpu/nvgpu/common/linux/platform_gk20a_tegra.c
+++ b/drivers/gpu/nvgpu/common/linux/platform_gk20a_tegra.c
@@ -55,6 +55,7 @@
55#include "os_linux.h" 55#include "os_linux.h"
56 56
57#include "../../../arch/arm/mach-tegra/iomap.h" 57#include "../../../arch/arm/mach-tegra/iomap.h"
58#include <soc/tegra/pmc.h>
58 59
59#define TEGRA_GK20A_BW_PER_FREQ 32 60#define TEGRA_GK20A_BW_PER_FREQ 32
60#define TEGRA_GM20B_BW_PER_FREQ 64 61#define TEGRA_GM20B_BW_PER_FREQ 64
@@ -84,16 +85,6 @@ struct gk20a_emc_params {
84}; 85};
85#endif 86#endif
86 87
87static void __iomem *pmc = IO_ADDRESS(TEGRA_PMC_BASE);
88static inline u32 __maybe_unused pmc_read(unsigned long reg)
89{
90 return readl(pmc + reg);
91}
92
93static inline void __maybe_unused pmc_write(u32 val, unsigned long reg)
94{
95 writel_relaxed(val, pmc + reg);
96}
97#define MHZ_TO_HZ(x) ((x) * 1000000) 88#define MHZ_TO_HZ(x) ((x) * 1000000)
98#define HZ_TO_MHZ(x) ((x) / 1000000) 89#define HZ_TO_MHZ(x) ((x) / 1000000)
99 90
@@ -326,8 +317,8 @@ static int gm20b_tegra_railgate(struct device *dev)
326 udelay(10); 317 udelay(10);
327 318
328 /* enable clamp */ 319 /* enable clamp */
329 pmc_write(0x1, PMC_GPU_RG_CNTRL_0); 320 tegra_pmc_writel_relaxed(0x1, PMC_GPU_RG_CNTRL_0);
330 pmc_read(PMC_GPU_RG_CNTRL_0); 321 tegra_pmc_readl(PMC_GPU_RG_CNTRL_0);
331 322
332 udelay(10); 323 udelay(10);
333 324
@@ -435,8 +426,8 @@ static int gm20b_tegra_unrailgate(struct device *dev)
435 426
436 udelay(10); 427 udelay(10);
437 428
438 pmc_write(0, PMC_GPU_RG_CNTRL_0); 429 tegra_pmc_writel_relaxed(0, PMC_GPU_RG_CNTRL_0);
439 pmc_read(PMC_GPU_RG_CNTRL_0); 430 tegra_pmc_readl(PMC_GPU_RG_CNTRL_0);
440 431
441 udelay(10); 432 udelay(10);
442 433
@@ -833,8 +824,6 @@ static int gk20a_tegra_probe(struct device *dev)
833 return ret; 824 return ret;
834 } 825 }
835 826
836 pmc = ioremap(TEGRA_PMC_BASE, 4096);
837
838 return 0; 827 return 0;
839} 828}
840 829