diff options
Diffstat (limited to 'drivers/gpu/nvgpu')
-rw-r--r-- | drivers/gpu/nvgpu/gk20a/gk20a.c | 5 | ||||
-rw-r--r-- | drivers/gpu/nvgpu/gk20a/gk20a.h | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/gk20a/gk20a.c b/drivers/gpu/nvgpu/gk20a/gk20a.c index 97649b19..0dc0dca5 100644 --- a/drivers/gpu/nvgpu/gk20a/gk20a.c +++ b/drivers/gpu/nvgpu/gk20a/gk20a.c | |||
@@ -1625,6 +1625,11 @@ static u32 gk20a_determine_L2_size_bytes(struct gk20a *g) | |||
1625 | bytes_per_line = 128; | 1625 | bytes_per_line = 128; |
1626 | break; | 1626 | break; |
1627 | 1627 | ||
1628 | case GK20A_GPUID_GM20B: | ||
1629 | lts_per_ltc = 2; | ||
1630 | bytes_per_line = 128; | ||
1631 | break; | ||
1632 | |||
1628 | default: | 1633 | default: |
1629 | dev_err(dev_from_gk20a(g), "Unknown GPU id 0x%02x\n", | 1634 | dev_err(dev_from_gk20a(g), "Unknown GPU id 0x%02x\n", |
1630 | (unsigned)gpuid); | 1635 | (unsigned)gpuid); |
diff --git a/drivers/gpu/nvgpu/gk20a/gk20a.h b/drivers/gpu/nvgpu/gk20a/gk20a.h index 48b0f0a6..b8de8744 100644 --- a/drivers/gpu/nvgpu/gk20a/gk20a.h +++ b/drivers/gpu/nvgpu/gk20a/gk20a.h | |||
@@ -567,6 +567,9 @@ gk20a_request_firmware(struct gk20a *g, const char *fw_name); | |||
567 | #define GK20A_GPUID_GK20A \ | 567 | #define GK20A_GPUID_GK20A \ |
568 | GK20A_GPUID(NVHOST_GPU_ARCH_GK100, NVHOST_GPU_IMPL_GK20A) | 568 | GK20A_GPUID(NVHOST_GPU_ARCH_GK100, NVHOST_GPU_IMPL_GK20A) |
569 | 569 | ||
570 | #define GK20A_GPUID_GM20B \ | ||
571 | GK20A_GPUID(NVHOST_GPU_ARCH_GM200, NVHOST_GPU_IMPL_GM20B) | ||
572 | |||
570 | int gk20a_init_gpu_characteristics(struct gk20a *g); | 573 | int gk20a_init_gpu_characteristics(struct gk20a *g); |
571 | 574 | ||
572 | #endif /* _NVHOST_GK20A_H_ */ | 575 | #endif /* _NVHOST_GK20A_H_ */ |