Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright © 2016 Intel Corporation |
| 3 | * |
| 4 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 5 | * copy of this software and associated documentation files (the "Software"), |
| 6 | * to deal in the Software without restriction, including without limitation |
| 7 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 8 | * and/or sell copies of the Software, and to permit persons to whom the |
| 9 | * Software is furnished to do so, subject to the following conditions: |
| 10 | * |
| 11 | * The above copyright notice and this permission notice (including the next |
| 12 | * paragraph) shall be included in all copies or substantial portions of the |
| 13 | * Software. |
| 14 | * |
| 15 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 16 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 17 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 18 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 19 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
| 20 | * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS |
| 21 | * IN THE SOFTWARE. |
| 22 | * |
| 23 | */ |
| 24 | |
Chris Wilson | a09d0ba | 2016-06-24 14:00:27 +0100 | [diff] [blame] | 25 | #include <linux/console.h> |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 26 | #include <linux/vgaarb.h> |
| 27 | #include <linux/vga_switcheroo.h> |
| 28 | |
| 29 | #include "i915_drv.h" |
Chris Wilson | 953c7f8 | 2017-02-13 17:15:12 +0000 | [diff] [blame] | 30 | #include "i915_selftest.h" |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 31 | |
| 32 | #define GEN_DEFAULT_PIPEOFFSETS \ |
| 33 | .pipe_offsets = { PIPE_A_OFFSET, PIPE_B_OFFSET, \ |
| 34 | PIPE_C_OFFSET, PIPE_EDP_OFFSET }, \ |
| 35 | .trans_offsets = { TRANSCODER_A_OFFSET, TRANSCODER_B_OFFSET, \ |
| 36 | TRANSCODER_C_OFFSET, TRANSCODER_EDP_OFFSET }, \ |
| 37 | .palette_offsets = { PALETTE_A_OFFSET, PALETTE_B_OFFSET } |
| 38 | |
| 39 | #define GEN_CHV_PIPEOFFSETS \ |
| 40 | .pipe_offsets = { PIPE_A_OFFSET, PIPE_B_OFFSET, \ |
| 41 | CHV_PIPE_C_OFFSET }, \ |
| 42 | .trans_offsets = { TRANSCODER_A_OFFSET, TRANSCODER_B_OFFSET, \ |
| 43 | CHV_TRANSCODER_C_OFFSET, }, \ |
| 44 | .palette_offsets = { PALETTE_A_OFFSET, PALETTE_B_OFFSET, \ |
| 45 | CHV_PALETTE_C_OFFSET } |
| 46 | |
| 47 | #define CURSOR_OFFSETS \ |
| 48 | .cursor_offsets = { CURSOR_A_OFFSET, CURSOR_B_OFFSET, CHV_CURSOR_C_OFFSET } |
| 49 | |
| 50 | #define IVB_CURSOR_OFFSETS \ |
| 51 | .cursor_offsets = { CURSOR_A_OFFSET, IVB_CURSOR_B_OFFSET, IVB_CURSOR_C_OFFSET } |
| 52 | |
| 53 | #define BDW_COLORS \ |
| 54 | .color = { .degamma_lut_size = 512, .gamma_lut_size = 512 } |
| 55 | #define CHV_COLORS \ |
| 56 | .color = { .degamma_lut_size = 65, .gamma_lut_size = 257 } |
Rodrigo Vivi | 4672770 | 2017-10-02 23:36:52 -0700 | [diff] [blame] | 57 | #define GLK_COLORS \ |
| 58 | .color = { .degamma_lut_size = 0, .gamma_lut_size = 1024 } |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 59 | |
Jani Nikula | a5ce929 | 2016-11-30 17:43:02 +0200 | [diff] [blame] | 60 | /* Keep in gen based order, and chronological order within a gen */ |
Carlos Santa | 0eec8dc | 2016-08-17 12:30:51 -0700 | [diff] [blame] | 61 | #define GEN2_FEATURES \ |
| 62 | .gen = 2, .num_pipes = 1, \ |
| 63 | .has_overlay = 1, .overlay_needs_physical = 1, \ |
Carlos Santa | 804b871 | 2016-08-17 12:30:55 -0700 | [diff] [blame] | 64 | .has_gmch_display = 1, \ |
Carlos Santa | 3177659 | 2016-08-17 12:30:56 -0700 | [diff] [blame] | 65 | .hws_needs_physical = 1, \ |
Chris Wilson | f4ce766 | 2017-03-25 11:32:43 +0000 | [diff] [blame] | 66 | .unfenced_needs_alignment = 1, \ |
Carlos Santa | 0eec8dc | 2016-08-17 12:30:51 -0700 | [diff] [blame] | 67 | .ring_mask = RENDER_RING, \ |
Chris Wilson | 5d95c24 | 2017-09-06 11:56:53 +0100 | [diff] [blame] | 68 | .has_snoop = true, \ |
Carlos Santa | 0eec8dc | 2016-08-17 12:30:51 -0700 | [diff] [blame] | 69 | GEN_DEFAULT_PIPEOFFSETS, \ |
| 70 | CURSOR_OFFSETS |
| 71 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 72 | static const struct intel_device_info intel_i830_info __initconst = { |
Carlos Santa | 0eec8dc | 2016-08-17 12:30:51 -0700 | [diff] [blame] | 73 | GEN2_FEATURES, |
Jani Nikula | 2e0d26f | 2016-12-01 14:49:55 +0200 | [diff] [blame] | 74 | .platform = INTEL_I830, |
Carlos Santa | 0eec8dc | 2016-08-17 12:30:51 -0700 | [diff] [blame] | 75 | .is_mobile = 1, .cursor_needs_physical = 1, |
| 76 | .num_pipes = 2, /* legal, last one wins */ |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 77 | }; |
| 78 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 79 | static const struct intel_device_info intel_i845g_info __initconst = { |
Carlos Santa | 0eec8dc | 2016-08-17 12:30:51 -0700 | [diff] [blame] | 80 | GEN2_FEATURES, |
Jani Nikula | 2e0d26f | 2016-12-01 14:49:55 +0200 | [diff] [blame] | 81 | .platform = INTEL_I845G, |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 82 | }; |
| 83 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 84 | static const struct intel_device_info intel_i85x_info __initconst = { |
Carlos Santa | 0eec8dc | 2016-08-17 12:30:51 -0700 | [diff] [blame] | 85 | GEN2_FEATURES, |
Jani Nikula | 2e0d26f | 2016-12-01 14:49:55 +0200 | [diff] [blame] | 86 | .platform = INTEL_I85X, .is_mobile = 1, |
Carlos Santa | 0eec8dc | 2016-08-17 12:30:51 -0700 | [diff] [blame] | 87 | .num_pipes = 2, /* legal, last one wins */ |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 88 | .cursor_needs_physical = 1, |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 89 | .has_fbc = 1, |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 90 | }; |
| 91 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 92 | static const struct intel_device_info intel_i865g_info __initconst = { |
Carlos Santa | 0eec8dc | 2016-08-17 12:30:51 -0700 | [diff] [blame] | 93 | GEN2_FEATURES, |
Jani Nikula | 2e0d26f | 2016-12-01 14:49:55 +0200 | [diff] [blame] | 94 | .platform = INTEL_I865G, |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 95 | }; |
| 96 | |
Carlos Santa | 54d2a6a | 2016-08-17 12:30:50 -0700 | [diff] [blame] | 97 | #define GEN3_FEATURES \ |
| 98 | .gen = 3, .num_pipes = 2, \ |
Carlos Santa | 804b871 | 2016-08-17 12:30:55 -0700 | [diff] [blame] | 99 | .has_gmch_display = 1, \ |
Carlos Santa | 54d2a6a | 2016-08-17 12:30:50 -0700 | [diff] [blame] | 100 | .ring_mask = RENDER_RING, \ |
Chris Wilson | 5d95c24 | 2017-09-06 11:56:53 +0100 | [diff] [blame] | 101 | .has_snoop = true, \ |
Carlos Santa | 54d2a6a | 2016-08-17 12:30:50 -0700 | [diff] [blame] | 102 | GEN_DEFAULT_PIPEOFFSETS, \ |
| 103 | CURSOR_OFFSETS |
| 104 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 105 | static const struct intel_device_info intel_i915g_info __initconst = { |
Carlos Santa | 54d2a6a | 2016-08-17 12:30:50 -0700 | [diff] [blame] | 106 | GEN3_FEATURES, |
Jani Nikula | 2e0d26f | 2016-12-01 14:49:55 +0200 | [diff] [blame] | 107 | .platform = INTEL_I915G, .cursor_needs_physical = 1, |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 108 | .has_overlay = 1, .overlay_needs_physical = 1, |
Carlos Santa | 3177659 | 2016-08-17 12:30:56 -0700 | [diff] [blame] | 109 | .hws_needs_physical = 1, |
Chris Wilson | f4ce766 | 2017-03-25 11:32:43 +0000 | [diff] [blame] | 110 | .unfenced_needs_alignment = 1, |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 111 | }; |
Jani Nikula | a5ce929 | 2016-11-30 17:43:02 +0200 | [diff] [blame] | 112 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 113 | static const struct intel_device_info intel_i915gm_info __initconst = { |
Carlos Santa | 54d2a6a | 2016-08-17 12:30:50 -0700 | [diff] [blame] | 114 | GEN3_FEATURES, |
Jani Nikula | 2e0d26f | 2016-12-01 14:49:55 +0200 | [diff] [blame] | 115 | .platform = INTEL_I915GM, |
Carlos Santa | 54d2a6a | 2016-08-17 12:30:50 -0700 | [diff] [blame] | 116 | .is_mobile = 1, |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 117 | .cursor_needs_physical = 1, |
| 118 | .has_overlay = 1, .overlay_needs_physical = 1, |
| 119 | .supports_tv = 1, |
| 120 | .has_fbc = 1, |
Carlos Santa | 3177659 | 2016-08-17 12:30:56 -0700 | [diff] [blame] | 121 | .hws_needs_physical = 1, |
Chris Wilson | f4ce766 | 2017-03-25 11:32:43 +0000 | [diff] [blame] | 122 | .unfenced_needs_alignment = 1, |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 123 | }; |
Jani Nikula | a5ce929 | 2016-11-30 17:43:02 +0200 | [diff] [blame] | 124 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 125 | static const struct intel_device_info intel_i945g_info __initconst = { |
Carlos Santa | 54d2a6a | 2016-08-17 12:30:50 -0700 | [diff] [blame] | 126 | GEN3_FEATURES, |
Jani Nikula | 2e0d26f | 2016-12-01 14:49:55 +0200 | [diff] [blame] | 127 | .platform = INTEL_I945G, |
Carlos Santa | 54d2a6a | 2016-08-17 12:30:50 -0700 | [diff] [blame] | 128 | .has_hotplug = 1, .cursor_needs_physical = 1, |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 129 | .has_overlay = 1, .overlay_needs_physical = 1, |
Carlos Santa | 3177659 | 2016-08-17 12:30:56 -0700 | [diff] [blame] | 130 | .hws_needs_physical = 1, |
Chris Wilson | f4ce766 | 2017-03-25 11:32:43 +0000 | [diff] [blame] | 131 | .unfenced_needs_alignment = 1, |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 132 | }; |
Jani Nikula | a5ce929 | 2016-11-30 17:43:02 +0200 | [diff] [blame] | 133 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 134 | static const struct intel_device_info intel_i945gm_info __initconst = { |
Carlos Santa | 54d2a6a | 2016-08-17 12:30:50 -0700 | [diff] [blame] | 135 | GEN3_FEATURES, |
Jani Nikula | 2e0d26f | 2016-12-01 14:49:55 +0200 | [diff] [blame] | 136 | .platform = INTEL_I945GM, .is_mobile = 1, |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 137 | .has_hotplug = 1, .cursor_needs_physical = 1, |
| 138 | .has_overlay = 1, .overlay_needs_physical = 1, |
| 139 | .supports_tv = 1, |
| 140 | .has_fbc = 1, |
Carlos Santa | 3177659 | 2016-08-17 12:30:56 -0700 | [diff] [blame] | 141 | .hws_needs_physical = 1, |
Chris Wilson | f4ce766 | 2017-03-25 11:32:43 +0000 | [diff] [blame] | 142 | .unfenced_needs_alignment = 1, |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 143 | }; |
| 144 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 145 | static const struct intel_device_info intel_g33_info __initconst = { |
Jani Nikula | a5ce929 | 2016-11-30 17:43:02 +0200 | [diff] [blame] | 146 | GEN3_FEATURES, |
| 147 | .platform = INTEL_G33, |
| 148 | .has_hotplug = 1, |
| 149 | .has_overlay = 1, |
| 150 | }; |
| 151 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 152 | static const struct intel_device_info intel_pineview_info __initconst = { |
Jani Nikula | a5ce929 | 2016-11-30 17:43:02 +0200 | [diff] [blame] | 153 | GEN3_FEATURES, |
Jani Nikula | 73f67aa | 2016-12-07 22:48:09 +0200 | [diff] [blame] | 154 | .platform = INTEL_PINEVIEW, .is_mobile = 1, |
Jani Nikula | a5ce929 | 2016-11-30 17:43:02 +0200 | [diff] [blame] | 155 | .has_hotplug = 1, |
| 156 | .has_overlay = 1, |
| 157 | }; |
| 158 | |
Carlos Santa | 4d495be | 2016-08-17 12:30:49 -0700 | [diff] [blame] | 159 | #define GEN4_FEATURES \ |
| 160 | .gen = 4, .num_pipes = 2, \ |
| 161 | .has_hotplug = 1, \ |
Carlos Santa | 804b871 | 2016-08-17 12:30:55 -0700 | [diff] [blame] | 162 | .has_gmch_display = 1, \ |
Carlos Santa | 4d495be | 2016-08-17 12:30:49 -0700 | [diff] [blame] | 163 | .ring_mask = RENDER_RING, \ |
Chris Wilson | 5d95c24 | 2017-09-06 11:56:53 +0100 | [diff] [blame] | 164 | .has_snoop = true, \ |
Carlos Santa | 4d495be | 2016-08-17 12:30:49 -0700 | [diff] [blame] | 165 | GEN_DEFAULT_PIPEOFFSETS, \ |
| 166 | CURSOR_OFFSETS |
| 167 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 168 | static const struct intel_device_info intel_i965g_info __initconst = { |
Carlos Santa | 4d495be | 2016-08-17 12:30:49 -0700 | [diff] [blame] | 169 | GEN4_FEATURES, |
Jani Nikula | c0f8683 | 2016-12-07 12:13:04 +0200 | [diff] [blame] | 170 | .platform = INTEL_I965G, |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 171 | .has_overlay = 1, |
Carlos Santa | 3177659 | 2016-08-17 12:30:56 -0700 | [diff] [blame] | 172 | .hws_needs_physical = 1, |
Chris Wilson | df0700e | 2017-09-06 20:24:24 +0100 | [diff] [blame] | 173 | .has_snoop = false, |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 174 | }; |
| 175 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 176 | static const struct intel_device_info intel_i965gm_info __initconst = { |
Carlos Santa | 4d495be | 2016-08-17 12:30:49 -0700 | [diff] [blame] | 177 | GEN4_FEATURES, |
Jani Nikula | c0f8683 | 2016-12-07 12:13:04 +0200 | [diff] [blame] | 178 | .platform = INTEL_I965GM, |
Carlos Santa | 4d495be | 2016-08-17 12:30:49 -0700 | [diff] [blame] | 179 | .is_mobile = 1, .has_fbc = 1, |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 180 | .has_overlay = 1, |
| 181 | .supports_tv = 1, |
Carlos Santa | 3177659 | 2016-08-17 12:30:56 -0700 | [diff] [blame] | 182 | .hws_needs_physical = 1, |
Chris Wilson | df0700e | 2017-09-06 20:24:24 +0100 | [diff] [blame] | 183 | .has_snoop = false, |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 184 | }; |
| 185 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 186 | static const struct intel_device_info intel_g45_info __initconst = { |
Carlos Santa | 4d495be | 2016-08-17 12:30:49 -0700 | [diff] [blame] | 187 | GEN4_FEATURES, |
Jani Nikula | f69c11a | 2016-11-30 17:43:05 +0200 | [diff] [blame] | 188 | .platform = INTEL_G45, |
Carlos Santa | 4d495be | 2016-08-17 12:30:49 -0700 | [diff] [blame] | 189 | .has_pipe_cxsr = 1, |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 190 | .ring_mask = RENDER_RING | BSD_RING, |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 191 | }; |
| 192 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 193 | static const struct intel_device_info intel_gm45_info __initconst = { |
Carlos Santa | 4d495be | 2016-08-17 12:30:49 -0700 | [diff] [blame] | 194 | GEN4_FEATURES, |
Jani Nikula | f69c11a | 2016-11-30 17:43:05 +0200 | [diff] [blame] | 195 | .platform = INTEL_GM45, |
Carlos Santa | 3177659 | 2016-08-17 12:30:56 -0700 | [diff] [blame] | 196 | .is_mobile = 1, .has_fbc = 1, |
Carlos Santa | 4d495be | 2016-08-17 12:30:49 -0700 | [diff] [blame] | 197 | .has_pipe_cxsr = 1, |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 198 | .supports_tv = 1, |
| 199 | .ring_mask = RENDER_RING | BSD_RING, |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 200 | }; |
| 201 | |
Carlos Santa | a132338 | 2016-08-17 12:30:47 -0700 | [diff] [blame] | 202 | #define GEN5_FEATURES \ |
| 203 | .gen = 5, .num_pipes = 2, \ |
Carlos Santa | 3177659 | 2016-08-17 12:30:56 -0700 | [diff] [blame] | 204 | .has_hotplug = 1, \ |
Carlos Santa | a132338 | 2016-08-17 12:30:47 -0700 | [diff] [blame] | 205 | .ring_mask = RENDER_RING | BSD_RING, \ |
Chris Wilson | 5d95c24 | 2017-09-06 11:56:53 +0100 | [diff] [blame] | 206 | .has_snoop = true, \ |
Carlos Santa | a132338 | 2016-08-17 12:30:47 -0700 | [diff] [blame] | 207 | GEN_DEFAULT_PIPEOFFSETS, \ |
| 208 | CURSOR_OFFSETS |
| 209 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 210 | static const struct intel_device_info intel_ironlake_d_info __initconst = { |
Carlos Santa | a132338 | 2016-08-17 12:30:47 -0700 | [diff] [blame] | 211 | GEN5_FEATURES, |
Jani Nikula | 2e0d26f | 2016-12-01 14:49:55 +0200 | [diff] [blame] | 212 | .platform = INTEL_IRONLAKE, |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 213 | }; |
| 214 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 215 | static const struct intel_device_info intel_ironlake_m_info __initconst = { |
Carlos Santa | a132338 | 2016-08-17 12:30:47 -0700 | [diff] [blame] | 216 | GEN5_FEATURES, |
Jani Nikula | 2e0d26f | 2016-12-01 14:49:55 +0200 | [diff] [blame] | 217 | .platform = INTEL_IRONLAKE, |
Ville Syrjälä | c2d1a0c | 2017-06-06 16:32:29 +0300 | [diff] [blame] | 218 | .is_mobile = 1, .has_fbc = 1, |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 219 | }; |
| 220 | |
Carlos Santa | 07db6be | 2016-08-17 12:30:38 -0700 | [diff] [blame] | 221 | #define GEN6_FEATURES \ |
| 222 | .gen = 6, .num_pipes = 2, \ |
Carlos Santa | 3177659 | 2016-08-17 12:30:56 -0700 | [diff] [blame] | 223 | .has_hotplug = 1, \ |
Carlos Santa | 07db6be | 2016-08-17 12:30:38 -0700 | [diff] [blame] | 224 | .has_fbc = 1, \ |
| 225 | .ring_mask = RENDER_RING | BSD_RING | BLT_RING, \ |
| 226 | .has_llc = 1, \ |
Carlos Santa | 86f3624 | 2016-08-17 12:30:44 -0700 | [diff] [blame] | 227 | .has_rc6 = 1, \ |
Carlos Santa | 33b5bf8 | 2016-08-17 12:30:45 -0700 | [diff] [blame] | 228 | .has_rc6p = 1, \ |
Michel Thierry | 9e1d0e6 | 2016-12-05 17:57:03 -0800 | [diff] [blame] | 229 | .has_aliasing_ppgtt = 1, \ |
Carlos Santa | 07db6be | 2016-08-17 12:30:38 -0700 | [diff] [blame] | 230 | GEN_DEFAULT_PIPEOFFSETS, \ |
| 231 | CURSOR_OFFSETS |
| 232 | |
Lionel Landwerlin | 0890540 | 2017-08-30 17:12:05 +0100 | [diff] [blame] | 233 | #define SNB_D_PLATFORM \ |
| 234 | GEN6_FEATURES, \ |
| 235 | .platform = INTEL_SANDYBRIDGE |
| 236 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 237 | static const struct intel_device_info intel_sandybridge_d_gt1_info __initconst = { |
Lionel Landwerlin | 0890540 | 2017-08-30 17:12:05 +0100 | [diff] [blame] | 238 | SNB_D_PLATFORM, |
| 239 | .gt = 1, |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 240 | }; |
| 241 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 242 | static const struct intel_device_info intel_sandybridge_d_gt2_info __initconst = { |
Lionel Landwerlin | 0890540 | 2017-08-30 17:12:05 +0100 | [diff] [blame] | 243 | SNB_D_PLATFORM, |
| 244 | .gt = 2, |
| 245 | }; |
| 246 | |
| 247 | #define SNB_M_PLATFORM \ |
| 248 | GEN6_FEATURES, \ |
| 249 | .platform = INTEL_SANDYBRIDGE, \ |
| 250 | .is_mobile = 1 |
| 251 | |
| 252 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 253 | static const struct intel_device_info intel_sandybridge_m_gt1_info __initconst = { |
Lionel Landwerlin | 0890540 | 2017-08-30 17:12:05 +0100 | [diff] [blame] | 254 | SNB_M_PLATFORM, |
| 255 | .gt = 1, |
| 256 | }; |
| 257 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 258 | static const struct intel_device_info intel_sandybridge_m_gt2_info __initconst = { |
Lionel Landwerlin | 0890540 | 2017-08-30 17:12:05 +0100 | [diff] [blame] | 259 | SNB_M_PLATFORM, |
| 260 | .gt = 2, |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 261 | }; |
| 262 | |
| 263 | #define GEN7_FEATURES \ |
| 264 | .gen = 7, .num_pipes = 3, \ |
Carlos Santa | 3177659 | 2016-08-17 12:30:56 -0700 | [diff] [blame] | 265 | .has_hotplug = 1, \ |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 266 | .has_fbc = 1, \ |
| 267 | .ring_mask = RENDER_RING | BSD_RING | BLT_RING, \ |
| 268 | .has_llc = 1, \ |
Carlos Santa | 86f3624 | 2016-08-17 12:30:44 -0700 | [diff] [blame] | 269 | .has_rc6 = 1, \ |
Carlos Santa | 33b5bf8 | 2016-08-17 12:30:45 -0700 | [diff] [blame] | 270 | .has_rc6p = 1, \ |
Michel Thierry | 9e1d0e6 | 2016-12-05 17:57:03 -0800 | [diff] [blame] | 271 | .has_aliasing_ppgtt = 1, \ |
| 272 | .has_full_ppgtt = 1, \ |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 273 | GEN_DEFAULT_PIPEOFFSETS, \ |
| 274 | IVB_CURSOR_OFFSETS |
| 275 | |
Lionel Landwerlin | 0890540 | 2017-08-30 17:12:05 +0100 | [diff] [blame] | 276 | #define IVB_D_PLATFORM \ |
| 277 | GEN7_FEATURES, \ |
| 278 | .platform = INTEL_IVYBRIDGE, \ |
| 279 | .has_l3_dpf = 1 |
| 280 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 281 | static const struct intel_device_info intel_ivybridge_d_gt1_info __initconst = { |
Lionel Landwerlin | 0890540 | 2017-08-30 17:12:05 +0100 | [diff] [blame] | 282 | IVB_D_PLATFORM, |
| 283 | .gt = 1, |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 284 | }; |
| 285 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 286 | static const struct intel_device_info intel_ivybridge_d_gt2_info __initconst = { |
Lionel Landwerlin | 0890540 | 2017-08-30 17:12:05 +0100 | [diff] [blame] | 287 | IVB_D_PLATFORM, |
| 288 | .gt = 2, |
| 289 | }; |
| 290 | |
| 291 | #define IVB_M_PLATFORM \ |
| 292 | GEN7_FEATURES, \ |
| 293 | .platform = INTEL_IVYBRIDGE, \ |
| 294 | .is_mobile = 1, \ |
| 295 | .has_l3_dpf = 1 |
| 296 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 297 | static const struct intel_device_info intel_ivybridge_m_gt1_info __initconst = { |
Lionel Landwerlin | 0890540 | 2017-08-30 17:12:05 +0100 | [diff] [blame] | 298 | IVB_M_PLATFORM, |
| 299 | .gt = 1, |
| 300 | }; |
| 301 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 302 | static const struct intel_device_info intel_ivybridge_m_gt2_info __initconst = { |
Lionel Landwerlin | 0890540 | 2017-08-30 17:12:05 +0100 | [diff] [blame] | 303 | IVB_M_PLATFORM, |
| 304 | .gt = 2, |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 305 | }; |
| 306 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 307 | static const struct intel_device_info intel_ivybridge_q_info __initconst = { |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 308 | GEN7_FEATURES, |
Jani Nikula | 2e0d26f | 2016-12-01 14:49:55 +0200 | [diff] [blame] | 309 | .platform = INTEL_IVYBRIDGE, |
Lionel Landwerlin | 0890540 | 2017-08-30 17:12:05 +0100 | [diff] [blame] | 310 | .gt = 2, |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 311 | .num_pipes = 0, /* legal, last one wins */ |
Carlos Santa | ca9c452 | 2016-08-17 12:30:54 -0700 | [diff] [blame] | 312 | .has_l3_dpf = 1, |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 313 | }; |
| 314 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 315 | static const struct intel_device_info intel_valleyview_info __initconst = { |
Jani Nikula | 2e0d26f | 2016-12-01 14:49:55 +0200 | [diff] [blame] | 316 | .platform = INTEL_VALLEYVIEW, |
Rodrigo Vivi | eb6f771 | 2016-12-19 13:55:08 -0800 | [diff] [blame] | 317 | .gen = 7, |
| 318 | .is_lp = 1, |
| 319 | .num_pipes = 2, |
| 320 | .has_psr = 1, |
| 321 | .has_runtime_pm = 1, |
| 322 | .has_rc6 = 1, |
Rodrigo Vivi | eb6f771 | 2016-12-19 13:55:08 -0800 | [diff] [blame] | 323 | .has_gmch_display = 1, |
| 324 | .has_hotplug = 1, |
| 325 | .has_aliasing_ppgtt = 1, |
| 326 | .has_full_ppgtt = 1, |
Chris Wilson | 5d95c24 | 2017-09-06 11:56:53 +0100 | [diff] [blame] | 327 | .has_snoop = true, |
Rodrigo Vivi | eb6f771 | 2016-12-19 13:55:08 -0800 | [diff] [blame] | 328 | .ring_mask = RENDER_RING | BSD_RING | BLT_RING, |
| 329 | .display_mmio_offset = VLV_DISPLAY_BASE, |
| 330 | GEN_DEFAULT_PIPEOFFSETS, |
| 331 | CURSOR_OFFSETS |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 332 | }; |
| 333 | |
Rodrigo Vivi | 42a3ae8 | 2017-10-02 23:36:51 -0700 | [diff] [blame] | 334 | #define G75_FEATURES \ |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 335 | GEN7_FEATURES, \ |
| 336 | .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING, \ |
| 337 | .has_ddi = 1, \ |
Carlos Santa | 6e3b84d | 2016-08-17 12:30:36 -0700 | [diff] [blame] | 338 | .has_fpga_dbg = 1, \ |
Carlos Santa | 4aa4c23 | 2016-08-17 12:30:39 -0700 | [diff] [blame] | 339 | .has_psr = 1, \ |
Carlos Santa | 53233f0 | 2016-08-17 12:30:43 -0700 | [diff] [blame] | 340 | .has_resource_streamer = 1, \ |
Carlos Santa | 1d3fe53 | 2016-08-17 12:30:46 -0700 | [diff] [blame] | 341 | .has_dp_mst = 1, \ |
Carlos Santa | 33b5bf8 | 2016-08-17 12:30:45 -0700 | [diff] [blame] | 342 | .has_rc6p = 0 /* RC6p removed-by HSW */, \ |
Carlos Santa | 4aa4c23 | 2016-08-17 12:30:39 -0700 | [diff] [blame] | 343 | .has_runtime_pm = 1 |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 344 | |
Lionel Landwerlin | 0890540 | 2017-08-30 17:12:05 +0100 | [diff] [blame] | 345 | #define HSW_PLATFORM \ |
Rodrigo Vivi | 42a3ae8 | 2017-10-02 23:36:51 -0700 | [diff] [blame] | 346 | G75_FEATURES, \ |
Lionel Landwerlin | 0890540 | 2017-08-30 17:12:05 +0100 | [diff] [blame] | 347 | .platform = INTEL_HASWELL, \ |
| 348 | .has_l3_dpf = 1 |
| 349 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 350 | static const struct intel_device_info intel_haswell_gt1_info __initconst = { |
Lionel Landwerlin | 0890540 | 2017-08-30 17:12:05 +0100 | [diff] [blame] | 351 | HSW_PLATFORM, |
| 352 | .gt = 1, |
| 353 | }; |
| 354 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 355 | static const struct intel_device_info intel_haswell_gt2_info __initconst = { |
Lionel Landwerlin | 0890540 | 2017-08-30 17:12:05 +0100 | [diff] [blame] | 356 | HSW_PLATFORM, |
| 357 | .gt = 2, |
| 358 | }; |
| 359 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 360 | static const struct intel_device_info intel_haswell_gt3_info __initconst = { |
Lionel Landwerlin | 0890540 | 2017-08-30 17:12:05 +0100 | [diff] [blame] | 361 | HSW_PLATFORM, |
| 362 | .gt = 3, |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 363 | }; |
| 364 | |
Rodrigo Vivi | 42a3ae8 | 2017-10-02 23:36:51 -0700 | [diff] [blame] | 365 | #define GEN8_FEATURES \ |
| 366 | G75_FEATURES, \ |
Carlos Santa | 4586f1d | 2016-08-17 12:30:53 -0700 | [diff] [blame] | 367 | BDW_COLORS, \ |
Joonas Lahtinen | dfc5148 | 2016-11-03 10:39:46 +0200 | [diff] [blame] | 368 | .has_logical_ring_contexts = 1, \ |
Michel Thierry | 9e1d0e6 | 2016-12-05 17:57:03 -0800 | [diff] [blame] | 369 | .has_full_48bit_ppgtt = 1, \ |
Michel Thierry | 142bc7d | 2017-06-20 10:57:46 +0100 | [diff] [blame] | 370 | .has_64bit_reloc = 1, \ |
| 371 | .has_reset_engine = 1 |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 372 | |
Rodrigo Vivi | 94829de | 2017-06-06 09:06:06 -0700 | [diff] [blame] | 373 | #define BDW_PLATFORM \ |
Rodrigo Vivi | 42a3ae8 | 2017-10-02 23:36:51 -0700 | [diff] [blame] | 374 | GEN8_FEATURES, \ |
Rodrigo Vivi | 94829de | 2017-06-06 09:06:06 -0700 | [diff] [blame] | 375 | .gen = 8, \ |
| 376 | .platform = INTEL_BROADWELL |
| 377 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 378 | static const struct intel_device_info intel_broadwell_gt1_info __initconst = { |
Rodrigo Vivi | 94829de | 2017-06-06 09:06:06 -0700 | [diff] [blame] | 379 | BDW_PLATFORM, |
Lionel Landwerlin | 0890540 | 2017-08-30 17:12:05 +0100 | [diff] [blame] | 380 | .gt = 1, |
| 381 | }; |
| 382 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 383 | static const struct intel_device_info intel_broadwell_gt2_info __initconst = { |
Lionel Landwerlin | 0890540 | 2017-08-30 17:12:05 +0100 | [diff] [blame] | 384 | BDW_PLATFORM, |
| 385 | .gt = 2, |
| 386 | }; |
| 387 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 388 | static const struct intel_device_info intel_broadwell_rsvd_info __initconst = { |
Lionel Landwerlin | 0890540 | 2017-08-30 17:12:05 +0100 | [diff] [blame] | 389 | BDW_PLATFORM, |
| 390 | .gt = 3, |
| 391 | /* According to the device ID those devices are GT3, they were |
| 392 | * previously treated as not GT3, keep it like that. |
| 393 | */ |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 394 | }; |
| 395 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 396 | static const struct intel_device_info intel_broadwell_gt3_info __initconst = { |
Rodrigo Vivi | 94829de | 2017-06-06 09:06:06 -0700 | [diff] [blame] | 397 | BDW_PLATFORM, |
Lionel Landwerlin | 0890540 | 2017-08-30 17:12:05 +0100 | [diff] [blame] | 398 | .gt = 3, |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 399 | .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING | BSD2_RING, |
| 400 | }; |
| 401 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 402 | static const struct intel_device_info intel_cherryview_info __initconst = { |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 403 | .gen = 8, .num_pipes = 3, |
Carlos Santa | 3177659 | 2016-08-17 12:30:56 -0700 | [diff] [blame] | 404 | .has_hotplug = 1, |
Rodrigo Vivi | 8727dc0 | 2016-12-18 13:36:26 -0800 | [diff] [blame] | 405 | .is_lp = 1, |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 406 | .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING, |
Jani Nikula | 2e0d26f | 2016-12-01 14:49:55 +0200 | [diff] [blame] | 407 | .platform = INTEL_CHERRYVIEW, |
Joonas Lahtinen | dfc5148 | 2016-11-03 10:39:46 +0200 | [diff] [blame] | 408 | .has_64bit_reloc = 1, |
Carlos Santa | 6e3b84d | 2016-08-17 12:30:36 -0700 | [diff] [blame] | 409 | .has_psr = 1, |
Carlos Santa | 4aa4c23 | 2016-08-17 12:30:39 -0700 | [diff] [blame] | 410 | .has_runtime_pm = 1, |
Carlos Santa | 53233f0 | 2016-08-17 12:30:43 -0700 | [diff] [blame] | 411 | .has_resource_streamer = 1, |
Carlos Santa | 86f3624 | 2016-08-17 12:30:44 -0700 | [diff] [blame] | 412 | .has_rc6 = 1, |
Carlos Santa | 4586f1d | 2016-08-17 12:30:53 -0700 | [diff] [blame] | 413 | .has_logical_ring_contexts = 1, |
Carlos Santa | 804b871 | 2016-08-17 12:30:55 -0700 | [diff] [blame] | 414 | .has_gmch_display = 1, |
Michel Thierry | 9e1d0e6 | 2016-12-05 17:57:03 -0800 | [diff] [blame] | 415 | .has_aliasing_ppgtt = 1, |
| 416 | .has_full_ppgtt = 1, |
Michel Thierry | 142bc7d | 2017-06-20 10:57:46 +0100 | [diff] [blame] | 417 | .has_reset_engine = 1, |
Chris Wilson | 5d95c24 | 2017-09-06 11:56:53 +0100 | [diff] [blame] | 418 | .has_snoop = true, |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 419 | .display_mmio_offset = VLV_DISPLAY_BASE, |
| 420 | GEN_CHV_PIPEOFFSETS, |
| 421 | CURSOR_OFFSETS, |
| 422 | CHV_COLORS, |
| 423 | }; |
| 424 | |
Rodrigo Vivi | 42a3ae8 | 2017-10-02 23:36:51 -0700 | [diff] [blame] | 425 | #define GEN9_FEATURES \ |
| 426 | GEN8_FEATURES, \ |
Chris Wilson | beecec9 | 2017-10-03 21:34:52 +0100 | [diff] [blame] | 427 | .has_logical_ring_preemption = 1, \ |
Rodrigo Vivi | 94829de | 2017-06-06 09:06:06 -0700 | [diff] [blame] | 428 | .has_csr = 1, \ |
| 429 | .has_guc = 1, \ |
Rodrigo Vivi | 4d6ef0d | 2017-10-02 23:36:50 -0700 | [diff] [blame] | 430 | .has_ipc = 1, \ |
Rodrigo Vivi | 94829de | 2017-06-06 09:06:06 -0700 | [diff] [blame] | 431 | .ddb_size = 896 |
| 432 | |
Rodrigo Vivi | 42a3ae8 | 2017-10-02 23:36:51 -0700 | [diff] [blame] | 433 | #define SKL_PLATFORM \ |
| 434 | GEN9_FEATURES, \ |
| 435 | .gen = 9, \ |
| 436 | .platform = INTEL_SKYLAKE |
| 437 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 438 | static const struct intel_device_info intel_skylake_gt1_info __initconst = { |
Rodrigo Vivi | 94829de | 2017-06-06 09:06:06 -0700 | [diff] [blame] | 439 | SKL_PLATFORM, |
Lionel Landwerlin | 0890540 | 2017-08-30 17:12:05 +0100 | [diff] [blame] | 440 | .gt = 1, |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 441 | }; |
| 442 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 443 | static const struct intel_device_info intel_skylake_gt2_info __initconst = { |
Rodrigo Vivi | 94829de | 2017-06-06 09:06:06 -0700 | [diff] [blame] | 444 | SKL_PLATFORM, |
Lionel Landwerlin | 0890540 | 2017-08-30 17:12:05 +0100 | [diff] [blame] | 445 | .gt = 2, |
| 446 | }; |
| 447 | |
| 448 | #define SKL_GT3_PLUS_PLATFORM \ |
| 449 | SKL_PLATFORM, \ |
| 450 | .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING | BSD2_RING |
| 451 | |
| 452 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 453 | static const struct intel_device_info intel_skylake_gt3_info __initconst = { |
Lionel Landwerlin | 0890540 | 2017-08-30 17:12:05 +0100 | [diff] [blame] | 454 | SKL_GT3_PLUS_PLATFORM, |
| 455 | .gt = 3, |
| 456 | }; |
| 457 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 458 | static const struct intel_device_info intel_skylake_gt4_info __initconst = { |
Lionel Landwerlin | 0890540 | 2017-08-30 17:12:05 +0100 | [diff] [blame] | 459 | SKL_GT3_PLUS_PLATFORM, |
| 460 | .gt = 4, |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 461 | }; |
| 462 | |
Rodrigo Vivi | 80fa66b | 2016-12-01 11:33:16 +0200 | [diff] [blame] | 463 | #define GEN9_LP_FEATURES \ |
| 464 | .gen = 9, \ |
Ander Conselvan de Oliveira | 3e4274f | 2016-11-10 17:23:09 +0200 | [diff] [blame] | 465 | .is_lp = 1, \ |
Rodrigo Vivi | 80fa66b | 2016-12-01 11:33:16 +0200 | [diff] [blame] | 466 | .has_hotplug = 1, \ |
| 467 | .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING, \ |
| 468 | .num_pipes = 3, \ |
| 469 | .has_64bit_reloc = 1, \ |
| 470 | .has_ddi = 1, \ |
| 471 | .has_fpga_dbg = 1, \ |
| 472 | .has_fbc = 1, \ |
David Weinehall | 495001c | 2017-08-08 13:09:52 +0300 | [diff] [blame] | 473 | .has_psr = 1, \ |
Rodrigo Vivi | 80fa66b | 2016-12-01 11:33:16 +0200 | [diff] [blame] | 474 | .has_runtime_pm = 1, \ |
| 475 | .has_pooled_eu = 0, \ |
| 476 | .has_csr = 1, \ |
| 477 | .has_resource_streamer = 1, \ |
| 478 | .has_rc6 = 1, \ |
| 479 | .has_dp_mst = 1, \ |
Rodrigo Vivi | 80fa66b | 2016-12-01 11:33:16 +0200 | [diff] [blame] | 480 | .has_logical_ring_contexts = 1, \ |
Chris Wilson | beecec9 | 2017-10-03 21:34:52 +0100 | [diff] [blame] | 481 | .has_logical_ring_preemption = 1, \ |
Rodrigo Vivi | 80fa66b | 2016-12-01 11:33:16 +0200 | [diff] [blame] | 482 | .has_guc = 1, \ |
Michel Thierry | 9e1d0e6 | 2016-12-05 17:57:03 -0800 | [diff] [blame] | 483 | .has_aliasing_ppgtt = 1, \ |
| 484 | .has_full_ppgtt = 1, \ |
| 485 | .has_full_48bit_ppgtt = 1, \ |
Michel Thierry | 142bc7d | 2017-06-20 10:57:46 +0100 | [diff] [blame] | 486 | .has_reset_engine = 1, \ |
Chris Wilson | 5d95c24 | 2017-09-06 11:56:53 +0100 | [diff] [blame] | 487 | .has_snoop = true, \ |
Mahesh Kumar | e57f1c02 | 2017-08-17 19:15:27 +0530 | [diff] [blame] | 488 | .has_ipc = 1, \ |
Rodrigo Vivi | 80fa66b | 2016-12-01 11:33:16 +0200 | [diff] [blame] | 489 | GEN_DEFAULT_PIPEOFFSETS, \ |
| 490 | IVB_CURSOR_OFFSETS, \ |
| 491 | BDW_COLORS |
| 492 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 493 | static const struct intel_device_info intel_broxton_info __initconst = { |
Rodrigo Vivi | 80fa66b | 2016-12-01 11:33:16 +0200 | [diff] [blame] | 494 | GEN9_LP_FEATURES, |
Jani Nikula | 2e0d26f | 2016-12-01 14:49:55 +0200 | [diff] [blame] | 495 | .platform = INTEL_BROXTON, |
Deepak M | 6f3fff6 | 2016-09-15 15:01:10 +0530 | [diff] [blame] | 496 | .ddb_size = 512, |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 497 | }; |
| 498 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 499 | static const struct intel_device_info intel_geminilake_info __initconst = { |
Ander Conselvan de Oliveira | c22097f | 2016-11-14 16:25:26 +0200 | [diff] [blame] | 500 | GEN9_LP_FEATURES, |
Jani Nikula | 2e0d26f | 2016-12-01 14:49:55 +0200 | [diff] [blame] | 501 | .platform = INTEL_GEMINILAKE, |
Ander Conselvan de Oliveira | c22097f | 2016-11-14 16:25:26 +0200 | [diff] [blame] | 502 | .ddb_size = 1024, |
Rodrigo Vivi | 4672770 | 2017-10-02 23:36:52 -0700 | [diff] [blame] | 503 | GLK_COLORS, |
Ander Conselvan de Oliveira | c22097f | 2016-11-14 16:25:26 +0200 | [diff] [blame] | 504 | }; |
| 505 | |
Rodrigo Vivi | 94829de | 2017-06-06 09:06:06 -0700 | [diff] [blame] | 506 | #define KBL_PLATFORM \ |
Rodrigo Vivi | 42a3ae8 | 2017-10-02 23:36:51 -0700 | [diff] [blame] | 507 | GEN9_FEATURES, \ |
Rodrigo Vivi | 94829de | 2017-06-06 09:06:06 -0700 | [diff] [blame] | 508 | .gen = 9, \ |
Rodrigo Vivi | 42a3ae8 | 2017-10-02 23:36:51 -0700 | [diff] [blame] | 509 | .platform = INTEL_KABYLAKE |
Rodrigo Vivi | 94829de | 2017-06-06 09:06:06 -0700 | [diff] [blame] | 510 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 511 | static const struct intel_device_info intel_kabylake_gt1_info __initconst = { |
Rodrigo Vivi | 94829de | 2017-06-06 09:06:06 -0700 | [diff] [blame] | 512 | KBL_PLATFORM, |
Lionel Landwerlin | 0890540 | 2017-08-30 17:12:05 +0100 | [diff] [blame] | 513 | .gt = 1, |
| 514 | }; |
| 515 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 516 | static const struct intel_device_info intel_kabylake_gt2_info __initconst = { |
Lionel Landwerlin | 0890540 | 2017-08-30 17:12:05 +0100 | [diff] [blame] | 517 | KBL_PLATFORM, |
| 518 | .gt = 2, |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 519 | }; |
| 520 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 521 | static const struct intel_device_info intel_kabylake_gt3_info __initconst = { |
Rodrigo Vivi | 94829de | 2017-06-06 09:06:06 -0700 | [diff] [blame] | 522 | KBL_PLATFORM, |
Lionel Landwerlin | 0890540 | 2017-08-30 17:12:05 +0100 | [diff] [blame] | 523 | .gt = 3, |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 524 | .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING | BSD2_RING, |
| 525 | }; |
| 526 | |
Rodrigo Vivi | 71851fa | 2017-06-08 08:49:58 -0700 | [diff] [blame] | 527 | #define CFL_PLATFORM \ |
Rodrigo Vivi | 42a3ae8 | 2017-10-02 23:36:51 -0700 | [diff] [blame] | 528 | GEN9_FEATURES, \ |
Rodrigo Vivi | 71851fa | 2017-06-08 08:49:58 -0700 | [diff] [blame] | 529 | .gen = 9, \ |
Rodrigo Vivi | 42a3ae8 | 2017-10-02 23:36:51 -0700 | [diff] [blame] | 530 | .platform = INTEL_COFFEELAKE |
Rodrigo Vivi | 71851fa | 2017-06-08 08:49:58 -0700 | [diff] [blame] | 531 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 532 | static const struct intel_device_info intel_coffeelake_gt1_info __initconst = { |
Rodrigo Vivi | 71851fa | 2017-06-08 08:49:58 -0700 | [diff] [blame] | 533 | CFL_PLATFORM, |
Lionel Landwerlin | 0890540 | 2017-08-30 17:12:05 +0100 | [diff] [blame] | 534 | .gt = 1, |
| 535 | }; |
| 536 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 537 | static const struct intel_device_info intel_coffeelake_gt2_info __initconst = { |
Lionel Landwerlin | 0890540 | 2017-08-30 17:12:05 +0100 | [diff] [blame] | 538 | CFL_PLATFORM, |
| 539 | .gt = 2, |
Rodrigo Vivi | 71851fa | 2017-06-08 08:49:58 -0700 | [diff] [blame] | 540 | }; |
| 541 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 542 | static const struct intel_device_info intel_coffeelake_gt3_info __initconst = { |
Rodrigo Vivi | 71851fa | 2017-06-08 08:49:58 -0700 | [diff] [blame] | 543 | CFL_PLATFORM, |
Lionel Landwerlin | 0890540 | 2017-08-30 17:12:05 +0100 | [diff] [blame] | 544 | .gt = 3, |
Rodrigo Vivi | 71851fa | 2017-06-08 08:49:58 -0700 | [diff] [blame] | 545 | .ring_mask = RENDER_RING | BSD_RING | BLT_RING | VEBOX_RING | BSD2_RING, |
| 546 | }; |
| 547 | |
Rodrigo Vivi | 42a3ae8 | 2017-10-02 23:36:51 -0700 | [diff] [blame] | 548 | #define GEN10_FEATURES \ |
| 549 | GEN9_FEATURES, \ |
| 550 | .ddb_size = 1024, \ |
Rodrigo Vivi | 4672770 | 2017-10-02 23:36:52 -0700 | [diff] [blame] | 551 | GLK_COLORS |
Rodrigo Vivi | 42a3ae8 | 2017-10-02 23:36:51 -0700 | [diff] [blame] | 552 | |
Lionel Landwerlin | 5b54edd | 2017-08-30 17:12:06 +0100 | [diff] [blame] | 553 | static const struct intel_device_info intel_cannonlake_gt2_info __initconst = { |
Rodrigo Vivi | 42a3ae8 | 2017-10-02 23:36:51 -0700 | [diff] [blame] | 554 | GEN10_FEATURES, |
Rodrigo Vivi | 413f3c1 | 2017-06-06 13:30:30 -0700 | [diff] [blame] | 555 | .is_alpha_support = 1, |
| 556 | .platform = INTEL_CANNONLAKE, |
| 557 | .gen = 10, |
Lionel Landwerlin | 0890540 | 2017-08-30 17:12:05 +0100 | [diff] [blame] | 558 | .gt = 2, |
Rodrigo Vivi | 413f3c1 | 2017-06-06 13:30:30 -0700 | [diff] [blame] | 559 | }; |
| 560 | |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 561 | /* |
| 562 | * Make sure any device matches here are from most specific to most |
| 563 | * general. For example, since the Quanta match is based on the subsystem |
| 564 | * and subvendor IDs, we need it to come before the more general IVB |
| 565 | * PCI ID matches, otherwise we'll use the wrong info struct above. |
| 566 | */ |
| 567 | static const struct pci_device_id pciidlist[] = { |
| 568 | INTEL_I830_IDS(&intel_i830_info), |
Jani Nikula | 2a307c2 | 2016-11-30 17:43:04 +0200 | [diff] [blame] | 569 | INTEL_I845G_IDS(&intel_i845g_info), |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 570 | INTEL_I85X_IDS(&intel_i85x_info), |
| 571 | INTEL_I865G_IDS(&intel_i865g_info), |
| 572 | INTEL_I915G_IDS(&intel_i915g_info), |
| 573 | INTEL_I915GM_IDS(&intel_i915gm_info), |
| 574 | INTEL_I945G_IDS(&intel_i945g_info), |
| 575 | INTEL_I945GM_IDS(&intel_i945gm_info), |
| 576 | INTEL_I965G_IDS(&intel_i965g_info), |
| 577 | INTEL_G33_IDS(&intel_g33_info), |
| 578 | INTEL_I965GM_IDS(&intel_i965gm_info), |
| 579 | INTEL_GM45_IDS(&intel_gm45_info), |
| 580 | INTEL_G45_IDS(&intel_g45_info), |
| 581 | INTEL_PINEVIEW_IDS(&intel_pineview_info), |
| 582 | INTEL_IRONLAKE_D_IDS(&intel_ironlake_d_info), |
| 583 | INTEL_IRONLAKE_M_IDS(&intel_ironlake_m_info), |
Lionel Landwerlin | 0890540 | 2017-08-30 17:12:05 +0100 | [diff] [blame] | 584 | INTEL_SNB_D_GT1_IDS(&intel_sandybridge_d_gt1_info), |
| 585 | INTEL_SNB_D_GT2_IDS(&intel_sandybridge_d_gt2_info), |
| 586 | INTEL_SNB_M_GT1_IDS(&intel_sandybridge_m_gt1_info), |
| 587 | INTEL_SNB_M_GT2_IDS(&intel_sandybridge_m_gt2_info), |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 588 | INTEL_IVB_Q_IDS(&intel_ivybridge_q_info), /* must be first IVB */ |
Lionel Landwerlin | 0890540 | 2017-08-30 17:12:05 +0100 | [diff] [blame] | 589 | INTEL_IVB_M_GT1_IDS(&intel_ivybridge_m_gt1_info), |
| 590 | INTEL_IVB_M_GT2_IDS(&intel_ivybridge_m_gt2_info), |
| 591 | INTEL_IVB_D_GT1_IDS(&intel_ivybridge_d_gt1_info), |
| 592 | INTEL_IVB_D_GT2_IDS(&intel_ivybridge_d_gt2_info), |
| 593 | INTEL_HSW_GT1_IDS(&intel_haswell_gt1_info), |
| 594 | INTEL_HSW_GT2_IDS(&intel_haswell_gt2_info), |
| 595 | INTEL_HSW_GT3_IDS(&intel_haswell_gt3_info), |
Carlos Santa | 8d9c20e | 2016-08-17 12:30:37 -0700 | [diff] [blame] | 596 | INTEL_VLV_IDS(&intel_valleyview_info), |
Lionel Landwerlin | 0890540 | 2017-08-30 17:12:05 +0100 | [diff] [blame] | 597 | INTEL_BDW_GT1_IDS(&intel_broadwell_gt1_info), |
| 598 | INTEL_BDW_GT2_IDS(&intel_broadwell_gt2_info), |
Carlos Santa | 8d9c20e | 2016-08-17 12:30:37 -0700 | [diff] [blame] | 599 | INTEL_BDW_GT3_IDS(&intel_broadwell_gt3_info), |
Lionel Landwerlin | 0890540 | 2017-08-30 17:12:05 +0100 | [diff] [blame] | 600 | INTEL_BDW_RSVD_IDS(&intel_broadwell_rsvd_info), |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 601 | INTEL_CHV_IDS(&intel_cherryview_info), |
Lionel Landwerlin | 0890540 | 2017-08-30 17:12:05 +0100 | [diff] [blame] | 602 | INTEL_SKL_GT1_IDS(&intel_skylake_gt1_info), |
| 603 | INTEL_SKL_GT2_IDS(&intel_skylake_gt2_info), |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 604 | INTEL_SKL_GT3_IDS(&intel_skylake_gt3_info), |
Lionel Landwerlin | 0890540 | 2017-08-30 17:12:05 +0100 | [diff] [blame] | 605 | INTEL_SKL_GT4_IDS(&intel_skylake_gt4_info), |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 606 | INTEL_BXT_IDS(&intel_broxton_info), |
Ander Conselvan de Oliveira | 8363e3c | 2016-11-10 17:23:08 +0200 | [diff] [blame] | 607 | INTEL_GLK_IDS(&intel_geminilake_info), |
Lionel Landwerlin | 0890540 | 2017-08-30 17:12:05 +0100 | [diff] [blame] | 608 | INTEL_KBL_GT1_IDS(&intel_kabylake_gt1_info), |
| 609 | INTEL_KBL_GT2_IDS(&intel_kabylake_gt2_info), |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 610 | INTEL_KBL_GT3_IDS(&intel_kabylake_gt3_info), |
| 611 | INTEL_KBL_GT4_IDS(&intel_kabylake_gt3_info), |
Lionel Landwerlin | 0890540 | 2017-08-30 17:12:05 +0100 | [diff] [blame] | 612 | INTEL_CFL_S_GT1_IDS(&intel_coffeelake_gt1_info), |
| 613 | INTEL_CFL_S_GT2_IDS(&intel_coffeelake_gt2_info), |
| 614 | INTEL_CFL_H_GT2_IDS(&intel_coffeelake_gt2_info), |
| 615 | INTEL_CFL_U_GT3_IDS(&intel_coffeelake_gt3_info), |
| 616 | INTEL_CNL_U_GT2_IDS(&intel_cannonlake_gt2_info), |
| 617 | INTEL_CNL_Y_GT2_IDS(&intel_cannonlake_gt2_info), |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 618 | {0, 0, 0} |
| 619 | }; |
| 620 | MODULE_DEVICE_TABLE(pci, pciidlist); |
| 621 | |
Chris Wilson | 953c7f8 | 2017-02-13 17:15:12 +0000 | [diff] [blame] | 622 | static void i915_pci_remove(struct pci_dev *pdev) |
| 623 | { |
| 624 | struct drm_device *dev = pci_get_drvdata(pdev); |
| 625 | |
| 626 | i915_driver_unload(dev); |
| 627 | drm_dev_unref(dev); |
| 628 | } |
| 629 | |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 630 | static int i915_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent) |
| 631 | { |
| 632 | struct intel_device_info *intel_info = |
| 633 | (struct intel_device_info *) ent->driver_data; |
Chris Wilson | 953c7f8 | 2017-02-13 17:15:12 +0000 | [diff] [blame] | 634 | int err; |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 635 | |
Michal Wajdeczko | 4f044a8 | 2017-09-19 19:38:44 +0000 | [diff] [blame] | 636 | if (IS_ALPHA_SUPPORT(intel_info) && !i915_modparams.alpha_support) { |
Jani Nikula | c007fb4 | 2016-10-31 12:18:28 +0200 | [diff] [blame] | 637 | DRM_INFO("The driver support for your hardware in this kernel version is alpha quality\n" |
| 638 | "See CONFIG_DRM_I915_ALPHA_SUPPORT or i915.alpha_support module parameter\n" |
| 639 | "to enable support in this kernel version, or check for kernel updates.\n"); |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 640 | return -ENODEV; |
| 641 | } |
| 642 | |
| 643 | /* Only bind to function 0 of the device. Early generations |
| 644 | * used function 1 as a placeholder for multi-head. This causes |
| 645 | * us confusion instead, especially on the systems where both |
| 646 | * functions have the same PCI-ID! |
| 647 | */ |
| 648 | if (PCI_FUNC(pdev->devfn)) |
| 649 | return -ENODEV; |
| 650 | |
| 651 | /* |
| 652 | * apple-gmux is needed on dual GPU MacBook Pro |
| 653 | * to probe the panel if we're the inactive GPU. |
| 654 | */ |
| 655 | if (vga_switcheroo_client_probe_defer(pdev)) |
| 656 | return -EPROBE_DEFER; |
| 657 | |
Chris Wilson | 953c7f8 | 2017-02-13 17:15:12 +0000 | [diff] [blame] | 658 | err = i915_driver_load(pdev, ent); |
| 659 | if (err) |
| 660 | return err; |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 661 | |
Chris Wilson | 953c7f8 | 2017-02-13 17:15:12 +0000 | [diff] [blame] | 662 | err = i915_live_selftests(pdev); |
| 663 | if (err) { |
| 664 | i915_pci_remove(pdev); |
| 665 | return err > 0 ? -ENOTTY : err; |
| 666 | } |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 667 | |
Chris Wilson | 953c7f8 | 2017-02-13 17:15:12 +0000 | [diff] [blame] | 668 | return 0; |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 669 | } |
| 670 | |
Chris Wilson | a09d0ba | 2016-06-24 14:00:27 +0100 | [diff] [blame] | 671 | static struct pci_driver i915_pci_driver = { |
Chris Wilson | 42f5551 | 2016-06-24 14:00:26 +0100 | [diff] [blame] | 672 | .name = DRIVER_NAME, |
| 673 | .id_table = pciidlist, |
| 674 | .probe = i915_pci_probe, |
| 675 | .remove = i915_pci_remove, |
| 676 | .driver.pm = &i915_pm_ops, |
| 677 | }; |
Chris Wilson | a09d0ba | 2016-06-24 14:00:27 +0100 | [diff] [blame] | 678 | |
| 679 | static int __init i915_init(void) |
| 680 | { |
| 681 | bool use_kms = true; |
Chris Wilson | 953c7f8 | 2017-02-13 17:15:12 +0000 | [diff] [blame] | 682 | int err; |
| 683 | |
| 684 | err = i915_mock_selftests(); |
| 685 | if (err) |
| 686 | return err > 0 ? 0 : err; |
Chris Wilson | a09d0ba | 2016-06-24 14:00:27 +0100 | [diff] [blame] | 687 | |
| 688 | /* |
| 689 | * Enable KMS by default, unless explicitly overriden by |
| 690 | * either the i915.modeset prarameter or by the |
| 691 | * vga_text_mode_force boot option. |
| 692 | */ |
| 693 | |
Michal Wajdeczko | 4f044a8 | 2017-09-19 19:38:44 +0000 | [diff] [blame] | 694 | if (i915_modparams.modeset == 0) |
Chris Wilson | a09d0ba | 2016-06-24 14:00:27 +0100 | [diff] [blame] | 695 | use_kms = false; |
| 696 | |
Michal Wajdeczko | 4f044a8 | 2017-09-19 19:38:44 +0000 | [diff] [blame] | 697 | if (vgacon_text_force() && i915_modparams.modeset == -1) |
Chris Wilson | a09d0ba | 2016-06-24 14:00:27 +0100 | [diff] [blame] | 698 | use_kms = false; |
| 699 | |
| 700 | if (!use_kms) { |
| 701 | /* Silently fail loading to not upset userspace. */ |
| 702 | DRM_DEBUG_DRIVER("KMS disabled.\n"); |
| 703 | return 0; |
| 704 | } |
| 705 | |
| 706 | return pci_register_driver(&i915_pci_driver); |
| 707 | } |
| 708 | |
| 709 | static void __exit i915_exit(void) |
| 710 | { |
| 711 | if (!i915_pci_driver.driver.owner) |
| 712 | return; |
| 713 | |
| 714 | pci_unregister_driver(&i915_pci_driver); |
| 715 | } |
| 716 | |
| 717 | module_init(i915_init); |
| 718 | module_exit(i915_exit); |
| 719 | |
| 720 | MODULE_AUTHOR("Tungsten Graphics, Inc."); |
| 721 | MODULE_AUTHOR("Intel Corporation"); |
| 722 | |
| 723 | MODULE_DESCRIPTION(DRIVER_DESC); |
| 724 | MODULE_LICENSE("GPL and additional rights"); |