summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gp106/hw_fb_gp106.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/gp106/hw_fb_gp106.h')
-rw-r--r--drivers/gpu/nvgpu/gp106/hw_fb_gp106.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/gp106/hw_fb_gp106.h b/drivers/gpu/nvgpu/gp106/hw_fb_gp106.h
index 42d32ab3..1ab876cd 100644
--- a/drivers/gpu/nvgpu/gp106/hw_fb_gp106.h
+++ b/drivers/gpu/nvgpu/gp106/hw_fb_gp106.h
@@ -486,4 +486,20 @@ static inline u32 fb_niso_flush_sysmem_addr_r(void)
486{ 486{
487 return 0x00100c10; 487 return 0x00100c10;
488} 488}
489static inline u32 fb_mmu_local_memory_range_r(void)
490{
491 return 0x00100ce0;
492}
493static inline u32 fb_mmu_local_memory_range_lower_scale_v(u32 r)
494{
495 return (r >> 0) & 0xf;
496}
497static inline u32 fb_mmu_local_memory_range_lower_mag_v(u32 r)
498{
499 return (r >> 4) & 0x3f;
500}
501static inline u32 fb_mmu_local_memory_range_ecc_mode_v(u32 r)
502{
503 return (r >> 30) & 0x1;
504}
489#endif 505#endif