Skip to content

Commit 945b6ec

Browse files
mjmartineaugregkh
authored andcommitted
drm/i915/skl: Fix DMC load on Skylake J0 and K0
commit a41c8882592fb80458959b10e37632ce030b68ca upstream. The driver does not load firmware for unknown steppings, so these new steppings must be added to the list. Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> Signed-off-by: Mat Martineau <mathew.j.martineau@linux.intel.com> Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com> Link: http://patchwork.freedesktop.org/patch/msgid/1454023163-25469-1-git-send-email-mathew.j.martineau@linux.intel.com Cc: Jani Nikula <jani.nikula@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent f6ff739 commit 945b6ec

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

drivers/gpu/drm/i915/intel_csr.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,8 @@ struct stepping_info {
180180
static const struct stepping_info skl_stepping_info[] = {
181181
{'A', '0'}, {'B', '0'}, {'C', '0'},
182182
{'D', '0'}, {'E', '0'}, {'F', '0'},
183-
{'G', '0'}, {'H', '0'}, {'I', '0'}
183+
{'G', '0'}, {'H', '0'}, {'I', '0'},
184+
{'J', '0'}, {'K', '0'}
184185
};
185186

186187
static struct stepping_info bxt_stepping_info[] = {

0 commit comments

Comments
 (0)