summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gm20b/hw_ctxsw_prog_gm20b.h
diff options
context:
space:
mode:
authorsujeet baranwal <sbaranwal@nvidia.com>2015-09-28 18:26:23 -0400
committerTerje Bergstrom <tbergstrom@nvidia.com>2015-09-29 16:15:15 -0400
commitab93322b25c9dd6058fac6523f41571d77eeaeb9 (patch)
treead403ae2dea3fe8842d0c60076ee59c4f5bcb95c /drivers/gpu/nvgpu/gm20b/hw_ctxsw_prog_gm20b.h
parent39e8bff2fc02b4037dc925076e5f42f6519101eb (diff)
gpu: nvgpu: Add CDE bits in FECS header
In case of CDE channel, T1 (Tex) unit needs to be promoted to 128B aligned, otherwise causes a HW deadlock. Gpu driver makes changes in FECS header which FECS uses to configure the T1 promotions to aligned 128B accesses. Bug 200096226 Change-Id: I8a8deaf6fb91f4bbceacd491db7eb6f7bca5001b Signed-off-by: sujeet baranwal <sbaranwal@nvidia.com> Reviewed-by: Terje Bergstrom <tbergstrom@nvidia.com> Signed-off-by: sujeet baranwal <sbaranwal@nvidia.com> Reviewed-on: http://git-master/r/804625 Tested-by: Terje Bergstrom <tbergstrom@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gm20b/hw_ctxsw_prog_gm20b.h')
-rw-r--r--drivers/gpu/nvgpu/gm20b/hw_ctxsw_prog_gm20b.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/gm20b/hw_ctxsw_prog_gm20b.h b/drivers/gpu/nvgpu/gm20b/hw_ctxsw_prog_gm20b.h
index cefd91e1..34f8a6a4 100644
--- a/drivers/gpu/nvgpu/gm20b/hw_ctxsw_prog_gm20b.h
+++ b/drivers/gpu/nvgpu/gm20b/hw_ctxsw_prog_gm20b.h
@@ -58,6 +58,18 @@ static inline u32 ctxsw_prog_main_image_num_gpcs_o(void)
58{ 58{
59 return 0x00000008; 59 return 0x00000008;
60} 60}
61static inline u32 ctxsw_prog_main_image_ctl_o(void)
62{
63 return 0x0000000c;
64}
65static inline u32 ctxsw_prog_main_image_ctl_cde_enabled_f(void)
66{
67 return 0x400;
68}
69static inline u32 ctxsw_prog_main_image_ctl_cde_disabled_f(void)
70{
71 return 0x0;
72}
61static inline u32 ctxsw_prog_main_image_patch_count_o(void) 73static inline u32 ctxsw_prog_main_image_patch_count_o(void)
62{ 74{
63 return 0x00000010; 75 return 0x00000010;