diff options
author | Nicolai Hähnle <nicolai.haehnle@amd.com> | 2016-06-17 13:31:33 -0400 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2016-07-07 14:54:44 -0400 |
commit | 6f8941a2308811626edc083c70584837d54e0382 (patch) | |
tree | 4c3ff65c0a0d5f9cfcbdc13d138e23c0e3f8a746 /drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c | |
parent | 8b2ac103208b6933e265b3dc81776c2974cb5c7a (diff) |
drm/amdgpu: add disable_cu parameter
This parameter will allow disabling individual CUs on module load, e.g.
amdgpu.disable_cu=2.0.3,2.0.4 to disable CUs 3 and 4 of SE2.
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Nicolai Hähnle <nicolai.haehnle@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c index 9f95da4f0536..a074edd95c70 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c | |||
@@ -70,3 +70,47 @@ void amdgpu_gfx_scratch_free(struct amdgpu_device *adev, uint32_t reg) | |||
70 | } | 70 | } |
71 | } | 71 | } |
72 | } | 72 | } |
73 | |||
74 | /** | ||
75 | * amdgpu_gfx_parse_disable_cu - Parse the disable_cu module parameter | ||
76 | * | ||
77 | * @mask: array in which the per-shader array disable masks will be stored | ||
78 | * @max_se: number of SEs | ||
79 | * @max_sh: number of SHs | ||
80 | * | ||
81 | * The bitmask of CUs to be disabled in the shader array determined by se and | ||
82 | * sh is stored in mask[se * max_sh + sh]. | ||
83 | */ | ||
84 | void amdgpu_gfx_parse_disable_cu(unsigned *mask, unsigned max_se, unsigned max_sh) | ||
85 | { | ||
86 | unsigned se, sh, cu; | ||
87 | const char *p; | ||
88 | |||
89 | memset(mask, 0, sizeof(*mask) * max_se * max_sh); | ||
90 | |||
91 | if (!amdgpu_disable_cu || !*amdgpu_disable_cu) | ||
92 | return; | ||
93 | |||
94 | p = amdgpu_disable_cu; | ||
95 | for (;;) { | ||
96 | char *next; | ||
97 | int ret = sscanf(p, "%u.%u.%u", &se, &sh, &cu); | ||
98 | if (ret < 3) { | ||
99 | DRM_ERROR("amdgpu: could not parse disable_cu\n"); | ||
100 | return; | ||
101 | } | ||
102 | |||
103 | if (se < max_se && sh < max_sh && cu < 16) { | ||
104 | DRM_INFO("amdgpu: disabling CU %u.%u.%u\n", se, sh, cu); | ||
105 | mask[se * max_sh + sh] |= 1u << cu; | ||
106 | } else { | ||
107 | DRM_ERROR("amdgpu: disable_cu %u.%u.%u is out of range\n", | ||
108 | se, sh, cu); | ||
109 | } | ||
110 | |||
111 | next = strchr(p, ','); | ||
112 | if (!next) | ||
113 | break; | ||
114 | p = next + 1; | ||
115 | } | ||
116 | } | ||