Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) COPYRIGHT 2016 ARM Limited. All rights reserved. |
| 3 | * Author: Liviu Dudau <Liviu.Dudau@arm.com> |
| 4 | * |
| 5 | * This program is free software and is provided to you under the terms of the |
| 6 | * GNU General Public License version 2 as published by the Free Software |
| 7 | * Foundation, and any use by you of this program is subject to the terms |
| 8 | * of such GNU licence. |
| 9 | * |
| 10 | * ARM Mali DP500/DP550/DP650 driver (crtc operations) |
| 11 | */ |
| 12 | |
| 13 | #include <drm/drmP.h> |
| 14 | #include <drm/drm_atomic.h> |
| 15 | #include <drm/drm_atomic_helper.h> |
| 16 | #include <drm/drm_crtc.h> |
| 17 | #include <drm/drm_crtc_helper.h> |
| 18 | #include <linux/clk.h> |
Liviu Dudau | 85f6421 | 2017-03-22 10:44:57 +0000 | [diff] [blame] | 19 | #include <linux/pm_runtime.h> |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 20 | #include <video/videomode.h> |
| 21 | |
| 22 | #include "malidp_drv.h" |
| 23 | #include "malidp_hw.h" |
| 24 | |
| 25 | static bool malidp_crtc_mode_fixup(struct drm_crtc *crtc, |
| 26 | const struct drm_display_mode *mode, |
| 27 | struct drm_display_mode *adjusted_mode) |
| 28 | { |
| 29 | struct malidp_drm *malidp = crtc_to_malidp_device(crtc); |
| 30 | struct malidp_hw_device *hwdev = malidp->dev; |
| 31 | |
| 32 | /* |
| 33 | * check that the hardware can drive the required clock rate, |
| 34 | * but skip the check if the clock is meant to be disabled (req_rate = 0) |
| 35 | */ |
| 36 | long rate, req_rate = mode->crtc_clock * 1000; |
| 37 | |
| 38 | if (req_rate) { |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 39 | rate = clk_round_rate(hwdev->pxlclk, req_rate); |
| 40 | if (rate != req_rate) { |
| 41 | DRM_DEBUG_DRIVER("pxlclk doesn't support %ld Hz\n", |
| 42 | req_rate); |
| 43 | return false; |
| 44 | } |
| 45 | } |
| 46 | |
| 47 | return true; |
| 48 | } |
| 49 | |
| 50 | static void malidp_crtc_enable(struct drm_crtc *crtc) |
| 51 | { |
| 52 | struct malidp_drm *malidp = crtc_to_malidp_device(crtc); |
| 53 | struct malidp_hw_device *hwdev = malidp->dev; |
| 54 | struct videomode vm; |
Liviu Dudau | 85f6421 | 2017-03-22 10:44:57 +0000 | [diff] [blame] | 55 | int err = pm_runtime_get_sync(crtc->dev->dev); |
| 56 | |
| 57 | if (err < 0) { |
| 58 | DRM_DEBUG_DRIVER("Failed to enable runtime power management: %d\n", err); |
| 59 | return; |
| 60 | } |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 61 | |
| 62 | drm_display_mode_to_videomode(&crtc->state->adjusted_mode, &vm); |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 63 | clk_prepare_enable(hwdev->pxlclk); |
| 64 | |
Mihail Atanassov | 9a8b0a2 | 2017-02-15 14:00:15 +0000 | [diff] [blame] | 65 | /* We rely on firmware to set mclk to a sensible level. */ |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 66 | clk_set_rate(hwdev->pxlclk, crtc->state->adjusted_mode.crtc_clock * 1000); |
| 67 | |
| 68 | hwdev->modeset(hwdev, &vm); |
| 69 | hwdev->leave_config_mode(hwdev); |
| 70 | drm_crtc_vblank_on(crtc); |
| 71 | } |
| 72 | |
| 73 | static void malidp_crtc_disable(struct drm_crtc *crtc) |
| 74 | { |
| 75 | struct malidp_drm *malidp = crtc_to_malidp_device(crtc); |
| 76 | struct malidp_hw_device *hwdev = malidp->dev; |
Liviu Dudau | 85f6421 | 2017-03-22 10:44:57 +0000 | [diff] [blame] | 77 | int err; |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 78 | |
| 79 | drm_crtc_vblank_off(crtc); |
| 80 | hwdev->enter_config_mode(hwdev); |
| 81 | clk_disable_unprepare(hwdev->pxlclk); |
Liviu Dudau | 85f6421 | 2017-03-22 10:44:57 +0000 | [diff] [blame] | 82 | |
| 83 | err = pm_runtime_put(crtc->dev->dev); |
| 84 | if (err < 0) { |
| 85 | DRM_DEBUG_DRIVER("Failed to disable runtime power management: %d\n", err); |
| 86 | } |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 87 | } |
| 88 | |
Mihail Atanassov | 02725d3 | 2017-02-01 14:48:50 +0000 | [diff] [blame] | 89 | static const struct gamma_curve_segment { |
| 90 | u16 start; |
| 91 | u16 end; |
| 92 | } segments[MALIDP_COEFFTAB_NUM_COEFFS] = { |
| 93 | /* sector 0 */ |
| 94 | { 0, 0 }, { 1, 1 }, { 2, 2 }, { 3, 3 }, |
| 95 | { 4, 4 }, { 5, 5 }, { 6, 6 }, { 7, 7 }, |
| 96 | { 8, 8 }, { 9, 9 }, { 10, 10 }, { 11, 11 }, |
| 97 | { 12, 12 }, { 13, 13 }, { 14, 14 }, { 15, 15 }, |
| 98 | /* sector 1 */ |
| 99 | { 16, 19 }, { 20, 23 }, { 24, 27 }, { 28, 31 }, |
| 100 | /* sector 2 */ |
| 101 | { 32, 39 }, { 40, 47 }, { 48, 55 }, { 56, 63 }, |
| 102 | /* sector 3 */ |
| 103 | { 64, 79 }, { 80, 95 }, { 96, 111 }, { 112, 127 }, |
| 104 | /* sector 4 */ |
| 105 | { 128, 159 }, { 160, 191 }, { 192, 223 }, { 224, 255 }, |
| 106 | /* sector 5 */ |
| 107 | { 256, 319 }, { 320, 383 }, { 384, 447 }, { 448, 511 }, |
| 108 | /* sector 6 */ |
| 109 | { 512, 639 }, { 640, 767 }, { 768, 895 }, { 896, 1023 }, |
| 110 | { 1024, 1151 }, { 1152, 1279 }, { 1280, 1407 }, { 1408, 1535 }, |
| 111 | { 1536, 1663 }, { 1664, 1791 }, { 1792, 1919 }, { 1920, 2047 }, |
| 112 | { 2048, 2175 }, { 2176, 2303 }, { 2304, 2431 }, { 2432, 2559 }, |
| 113 | { 2560, 2687 }, { 2688, 2815 }, { 2816, 2943 }, { 2944, 3071 }, |
| 114 | { 3072, 3199 }, { 3200, 3327 }, { 3328, 3455 }, { 3456, 3583 }, |
| 115 | { 3584, 3711 }, { 3712, 3839 }, { 3840, 3967 }, { 3968, 4095 }, |
| 116 | }; |
| 117 | |
| 118 | #define DE_COEFTAB_DATA(a, b) ((((a) & 0xfff) << 16) | (((b) & 0xfff))) |
| 119 | |
| 120 | static void malidp_generate_gamma_table(struct drm_property_blob *lut_blob, |
| 121 | u32 coeffs[MALIDP_COEFFTAB_NUM_COEFFS]) |
| 122 | { |
| 123 | struct drm_color_lut *lut = (struct drm_color_lut *)lut_blob->data; |
| 124 | int i; |
| 125 | |
| 126 | for (i = 0; i < MALIDP_COEFFTAB_NUM_COEFFS; ++i) { |
| 127 | u32 a, b, delta_in, out_start, out_end; |
| 128 | |
| 129 | delta_in = segments[i].end - segments[i].start; |
| 130 | /* DP has 12-bit internal precision for its LUTs. */ |
| 131 | out_start = drm_color_lut_extract(lut[segments[i].start].green, |
| 132 | 12); |
| 133 | out_end = drm_color_lut_extract(lut[segments[i].end].green, 12); |
| 134 | a = (delta_in == 0) ? 0 : ((out_end - out_start) * 256) / delta_in; |
| 135 | b = out_start; |
| 136 | coeffs[i] = DE_COEFTAB_DATA(a, b); |
| 137 | } |
| 138 | } |
| 139 | |
| 140 | /* |
| 141 | * Check if there is a new gamma LUT and if it is of an acceptable size. Also, |
| 142 | * reject any LUTs that use distinct red, green, and blue curves. |
| 143 | */ |
| 144 | static int malidp_crtc_atomic_check_gamma(struct drm_crtc *crtc, |
| 145 | struct drm_crtc_state *state) |
| 146 | { |
| 147 | struct malidp_crtc_state *mc = to_malidp_crtc_state(state); |
| 148 | struct drm_color_lut *lut; |
| 149 | size_t lut_size; |
| 150 | int i; |
| 151 | |
| 152 | if (!state->color_mgmt_changed || !state->gamma_lut) |
| 153 | return 0; |
| 154 | |
| 155 | if (crtc->state->gamma_lut && |
| 156 | (crtc->state->gamma_lut->base.id == state->gamma_lut->base.id)) |
| 157 | return 0; |
| 158 | |
| 159 | if (state->gamma_lut->length % sizeof(struct drm_color_lut)) |
| 160 | return -EINVAL; |
| 161 | |
| 162 | lut_size = state->gamma_lut->length / sizeof(struct drm_color_lut); |
| 163 | if (lut_size != MALIDP_GAMMA_LUT_SIZE) |
| 164 | return -EINVAL; |
| 165 | |
| 166 | lut = (struct drm_color_lut *)state->gamma_lut->data; |
| 167 | for (i = 0; i < lut_size; ++i) |
| 168 | if (!((lut[i].red == lut[i].green) && |
| 169 | (lut[i].red == lut[i].blue))) |
| 170 | return -EINVAL; |
| 171 | |
| 172 | if (!state->mode_changed) { |
| 173 | int ret; |
| 174 | |
| 175 | state->mode_changed = true; |
| 176 | /* |
| 177 | * Kerneldoc for drm_atomic_helper_check_modeset mandates that |
| 178 | * it be invoked when the driver sets ->mode_changed. Since |
| 179 | * changing the gamma LUT doesn't depend on any external |
| 180 | * resources, it is safe to call it only once. |
| 181 | */ |
| 182 | ret = drm_atomic_helper_check_modeset(crtc->dev, state->state); |
| 183 | if (ret) |
| 184 | return ret; |
| 185 | } |
| 186 | |
| 187 | malidp_generate_gamma_table(state->gamma_lut, mc->gamma_coeffs); |
| 188 | return 0; |
| 189 | } |
| 190 | |
Mihail Atanassov | 6954f24 | 2017-02-13 12:49:03 +0000 | [diff] [blame] | 191 | /* |
| 192 | * Check if there is a new CTM and if it contains valid input. Valid here means |
| 193 | * that the number is inside the representable range for a Q3.12 number, |
| 194 | * excluding truncating the fractional part of the input data. |
| 195 | * |
| 196 | * The COLORADJ registers can be changed atomically. |
| 197 | */ |
| 198 | static int malidp_crtc_atomic_check_ctm(struct drm_crtc *crtc, |
| 199 | struct drm_crtc_state *state) |
| 200 | { |
| 201 | struct malidp_crtc_state *mc = to_malidp_crtc_state(state); |
| 202 | struct drm_color_ctm *ctm; |
| 203 | int i; |
| 204 | |
| 205 | if (!state->color_mgmt_changed) |
| 206 | return 0; |
| 207 | |
| 208 | if (!state->ctm) |
| 209 | return 0; |
| 210 | |
| 211 | if (crtc->state->ctm && (crtc->state->ctm->base.id == |
| 212 | state->ctm->base.id)) |
| 213 | return 0; |
| 214 | |
| 215 | /* |
| 216 | * The size of the ctm is checked in |
| 217 | * drm_atomic_replace_property_blob_from_id. |
| 218 | */ |
| 219 | ctm = (struct drm_color_ctm *)state->ctm->data; |
| 220 | for (i = 0; i < ARRAY_SIZE(ctm->matrix); ++i) { |
| 221 | /* Convert from S31.32 to Q3.12. */ |
| 222 | s64 val = ctm->matrix[i]; |
| 223 | u32 mag = ((((u64)val) & ~BIT_ULL(63)) >> 20) & |
| 224 | GENMASK_ULL(14, 0); |
| 225 | |
| 226 | /* |
| 227 | * Convert to 2s complement and check the destination's top bit |
| 228 | * for overflow. NB: Can't check before converting or it'd |
| 229 | * incorrectly reject the case: |
| 230 | * sign == 1 |
| 231 | * mag == 0x2000 |
| 232 | */ |
| 233 | if (val & BIT_ULL(63)) |
| 234 | mag = ~mag + 1; |
| 235 | if (!!(val & BIT_ULL(63)) != !!(mag & BIT(14))) |
| 236 | return -EINVAL; |
| 237 | mc->coloradj_coeffs[i] = mag; |
| 238 | } |
| 239 | |
| 240 | return 0; |
| 241 | } |
| 242 | |
Mihail Atanassov | 28ce675 | 2017-02-13 15:14:05 +0000 | [diff] [blame] | 243 | static int malidp_crtc_atomic_check_scaling(struct drm_crtc *crtc, |
| 244 | struct drm_crtc_state *state) |
| 245 | { |
Mihail Atanassov | c2e7f82 | 2017-02-13 15:09:01 +0000 | [diff] [blame^] | 246 | struct malidp_drm *malidp = crtc_to_malidp_device(crtc); |
| 247 | struct malidp_hw_device *hwdev = malidp->dev; |
Mihail Atanassov | 28ce675 | 2017-02-13 15:14:05 +0000 | [diff] [blame] | 248 | struct malidp_crtc_state *cs = to_malidp_crtc_state(state); |
| 249 | struct malidp_se_config *s = &cs->scaler_config; |
| 250 | struct drm_plane *plane; |
Mihail Atanassov | c2e7f82 | 2017-02-13 15:09:01 +0000 | [diff] [blame^] | 251 | struct videomode vm; |
Mihail Atanassov | 28ce675 | 2017-02-13 15:14:05 +0000 | [diff] [blame] | 252 | const struct drm_plane_state *pstate; |
| 253 | u32 h_upscale_factor = 0; /* U16.16 */ |
| 254 | u32 v_upscale_factor = 0; /* U16.16 */ |
| 255 | u8 scaling = cs->scaled_planes_mask; |
Mihail Atanassov | c2e7f82 | 2017-02-13 15:09:01 +0000 | [diff] [blame^] | 256 | int ret; |
Mihail Atanassov | 28ce675 | 2017-02-13 15:14:05 +0000 | [diff] [blame] | 257 | |
| 258 | if (!scaling) { |
| 259 | s->scale_enable = false; |
Mihail Atanassov | c2e7f82 | 2017-02-13 15:09:01 +0000 | [diff] [blame^] | 260 | goto mclk_calc; |
Mihail Atanassov | 28ce675 | 2017-02-13 15:14:05 +0000 | [diff] [blame] | 261 | } |
| 262 | |
| 263 | /* The scaling engine can only handle one plane at a time. */ |
| 264 | if (scaling & (scaling - 1)) |
| 265 | return -EINVAL; |
| 266 | |
| 267 | drm_atomic_crtc_state_for_each_plane_state(plane, pstate, state) { |
| 268 | struct malidp_plane *mp = to_malidp_plane(plane); |
| 269 | u64 crtc_w, crtc_h; |
| 270 | u32 phase; |
| 271 | |
| 272 | if (!(mp->layer->id & scaling)) |
| 273 | continue; |
| 274 | |
| 275 | /* |
| 276 | * Convert crtc_[w|h] to U32.32, then divide by U16.16 src_[w|h] |
| 277 | * to get the U16.16 result. |
| 278 | */ |
| 279 | crtc_w = (u64)pstate->crtc_w << 32; |
| 280 | crtc_h = (u64)pstate->crtc_h << 32; |
| 281 | h_upscale_factor = (u32)(crtc_w / pstate->src_w); |
| 282 | v_upscale_factor = (u32)(crtc_h / pstate->src_h); |
| 283 | |
Mihail Atanassov | 0274e6a | 2017-02-06 12:20:56 +0000 | [diff] [blame] | 284 | s->enhancer_enable = ((h_upscale_factor >> 16) >= 2 || |
| 285 | (v_upscale_factor >> 16) >= 2); |
| 286 | |
Mihail Atanassov | 28ce675 | 2017-02-13 15:14:05 +0000 | [diff] [blame] | 287 | s->input_w = pstate->src_w >> 16; |
| 288 | s->input_h = pstate->src_h >> 16; |
| 289 | s->output_w = pstate->crtc_w; |
| 290 | s->output_h = pstate->crtc_h; |
| 291 | |
| 292 | #define SE_N_PHASE 4 |
| 293 | #define SE_SHIFT_N_PHASE 12 |
| 294 | /* Calculate initial_phase and delta_phase for horizontal. */ |
| 295 | phase = s->input_w; |
| 296 | s->h_init_phase = |
| 297 | ((phase << SE_N_PHASE) / s->output_w + 1) / 2; |
| 298 | |
| 299 | phase = s->input_w; |
| 300 | phase <<= (SE_SHIFT_N_PHASE + SE_N_PHASE); |
| 301 | s->h_delta_phase = phase / s->output_w; |
| 302 | |
| 303 | /* Same for vertical. */ |
| 304 | phase = s->input_h; |
| 305 | s->v_init_phase = |
| 306 | ((phase << SE_N_PHASE) / s->output_h + 1) / 2; |
| 307 | |
| 308 | phase = s->input_h; |
| 309 | phase <<= (SE_SHIFT_N_PHASE + SE_N_PHASE); |
| 310 | s->v_delta_phase = phase / s->output_h; |
| 311 | #undef SE_N_PHASE |
| 312 | #undef SE_SHIFT_N_PHASE |
| 313 | s->plane_src_id = mp->layer->id; |
| 314 | } |
| 315 | |
| 316 | s->scale_enable = true; |
| 317 | s->hcoeff = malidp_se_select_coeffs(h_upscale_factor); |
| 318 | s->vcoeff = malidp_se_select_coeffs(v_upscale_factor); |
Mihail Atanassov | c2e7f82 | 2017-02-13 15:09:01 +0000 | [diff] [blame^] | 319 | |
| 320 | mclk_calc: |
| 321 | drm_display_mode_to_videomode(&state->adjusted_mode, &vm); |
| 322 | ret = hwdev->se_calc_mclk(hwdev, s, &vm); |
| 323 | if (ret < 0) |
| 324 | return -EINVAL; |
Mihail Atanassov | 28ce675 | 2017-02-13 15:14:05 +0000 | [diff] [blame] | 325 | return 0; |
| 326 | } |
| 327 | |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 328 | static int malidp_crtc_atomic_check(struct drm_crtc *crtc, |
| 329 | struct drm_crtc_state *state) |
| 330 | { |
| 331 | struct malidp_drm *malidp = crtc_to_malidp_device(crtc); |
| 332 | struct malidp_hw_device *hwdev = malidp->dev; |
| 333 | struct drm_plane *plane; |
| 334 | const struct drm_plane_state *pstate; |
| 335 | u32 rot_mem_free, rot_mem_usable; |
| 336 | int rotated_planes = 0; |
Mihail Atanassov | 6954f24 | 2017-02-13 12:49:03 +0000 | [diff] [blame] | 337 | int ret; |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 338 | |
| 339 | /* |
| 340 | * check if there is enough rotation memory available for planes |
| 341 | * that need 90° and 270° rotation. Each plane has set its required |
| 342 | * memory size in the ->plane_check() callback, here we only make |
| 343 | * sure that the sums are less that the total usable memory. |
| 344 | * |
| 345 | * The rotation memory allocation algorithm (for each plane): |
| 346 | * a. If no more rotated planes exist, all remaining rotate |
| 347 | * memory in the bank is available for use by the plane. |
| 348 | * b. If other rotated planes exist, and plane's layer ID is |
| 349 | * DE_VIDEO1, it can use all the memory from first bank if |
| 350 | * secondary rotation memory bank is available, otherwise it can |
| 351 | * use up to half the bank's memory. |
| 352 | * c. If other rotated planes exist, and plane's layer ID is not |
| 353 | * DE_VIDEO1, it can use half of the available memory |
| 354 | * |
| 355 | * Note: this algorithm assumes that the order in which the planes are |
| 356 | * checked always has DE_VIDEO1 plane first in the list if it is |
| 357 | * rotated. Because that is how we create the planes in the first |
| 358 | * place, under current DRM version things work, but if ever the order |
| 359 | * in which drm_atomic_crtc_state_for_each_plane() iterates over planes |
| 360 | * changes, we need to pre-sort the planes before validation. |
| 361 | */ |
| 362 | |
| 363 | /* first count the number of rotated planes */ |
| 364 | drm_atomic_crtc_state_for_each_plane_state(plane, pstate, state) { |
| 365 | if (pstate->rotation & MALIDP_ROTATED_MASK) |
| 366 | rotated_planes++; |
| 367 | } |
| 368 | |
| 369 | rot_mem_free = hwdev->rotation_memory[0]; |
| 370 | /* |
| 371 | * if we have more than 1 plane using rotation memory, use the second |
| 372 | * block of rotation memory as well |
| 373 | */ |
| 374 | if (rotated_planes > 1) |
| 375 | rot_mem_free += hwdev->rotation_memory[1]; |
| 376 | |
| 377 | /* now validate the rotation memory requirements */ |
| 378 | drm_atomic_crtc_state_for_each_plane_state(plane, pstate, state) { |
| 379 | struct malidp_plane *mp = to_malidp_plane(plane); |
| 380 | struct malidp_plane_state *ms = to_malidp_plane_state(pstate); |
| 381 | |
| 382 | if (pstate->rotation & MALIDP_ROTATED_MASK) { |
| 383 | /* process current plane */ |
| 384 | rotated_planes--; |
| 385 | |
| 386 | if (!rotated_planes) { |
| 387 | /* no more rotated planes, we can use what's left */ |
| 388 | rot_mem_usable = rot_mem_free; |
| 389 | } else { |
| 390 | if ((mp->layer->id != DE_VIDEO1) || |
| 391 | (hwdev->rotation_memory[1] == 0)) |
| 392 | rot_mem_usable = rot_mem_free / 2; |
| 393 | else |
| 394 | rot_mem_usable = hwdev->rotation_memory[0]; |
| 395 | } |
| 396 | |
| 397 | rot_mem_free -= rot_mem_usable; |
| 398 | |
| 399 | if (ms->rotmem_size > rot_mem_usable) |
| 400 | return -EINVAL; |
| 401 | } |
| 402 | } |
| 403 | |
Mihail Atanassov | 6954f24 | 2017-02-13 12:49:03 +0000 | [diff] [blame] | 404 | ret = malidp_crtc_atomic_check_gamma(crtc, state); |
| 405 | ret = ret ? ret : malidp_crtc_atomic_check_ctm(crtc, state); |
Mihail Atanassov | 28ce675 | 2017-02-13 15:14:05 +0000 | [diff] [blame] | 406 | ret = ret ? ret : malidp_crtc_atomic_check_scaling(crtc, state); |
Mihail Atanassov | 6954f24 | 2017-02-13 12:49:03 +0000 | [diff] [blame] | 407 | |
| 408 | return ret; |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 409 | } |
| 410 | |
| 411 | static const struct drm_crtc_helper_funcs malidp_crtc_helper_funcs = { |
| 412 | .mode_fixup = malidp_crtc_mode_fixup, |
| 413 | .enable = malidp_crtc_enable, |
| 414 | .disable = malidp_crtc_disable, |
| 415 | .atomic_check = malidp_crtc_atomic_check, |
| 416 | }; |
| 417 | |
Mihail Atanassov | 99665d0 | 2017-02-01 14:48:49 +0000 | [diff] [blame] | 418 | static struct drm_crtc_state *malidp_crtc_duplicate_state(struct drm_crtc *crtc) |
| 419 | { |
Mihail Atanassov | 02725d3 | 2017-02-01 14:48:50 +0000 | [diff] [blame] | 420 | struct malidp_crtc_state *state, *old_state; |
Mihail Atanassov | 99665d0 | 2017-02-01 14:48:49 +0000 | [diff] [blame] | 421 | |
| 422 | if (WARN_ON(!crtc->state)) |
| 423 | return NULL; |
| 424 | |
Mihail Atanassov | 02725d3 | 2017-02-01 14:48:50 +0000 | [diff] [blame] | 425 | old_state = to_malidp_crtc_state(crtc->state); |
Mihail Atanassov | 99665d0 | 2017-02-01 14:48:49 +0000 | [diff] [blame] | 426 | state = kmalloc(sizeof(*state), GFP_KERNEL); |
| 427 | if (!state) |
| 428 | return NULL; |
| 429 | |
| 430 | __drm_atomic_helper_crtc_duplicate_state(crtc, &state->base); |
Mihail Atanassov | 02725d3 | 2017-02-01 14:48:50 +0000 | [diff] [blame] | 431 | memcpy(state->gamma_coeffs, old_state->gamma_coeffs, |
| 432 | sizeof(state->gamma_coeffs)); |
Mihail Atanassov | 6954f24 | 2017-02-13 12:49:03 +0000 | [diff] [blame] | 433 | memcpy(state->coloradj_coeffs, old_state->coloradj_coeffs, |
| 434 | sizeof(state->coloradj_coeffs)); |
Mihail Atanassov | 28ce675 | 2017-02-13 15:14:05 +0000 | [diff] [blame] | 435 | memcpy(&state->scaler_config, &old_state->scaler_config, |
| 436 | sizeof(state->scaler_config)); |
| 437 | state->scaled_planes_mask = 0; |
Mihail Atanassov | 99665d0 | 2017-02-01 14:48:49 +0000 | [diff] [blame] | 438 | |
| 439 | return &state->base; |
| 440 | } |
| 441 | |
| 442 | static void malidp_crtc_reset(struct drm_crtc *crtc) |
| 443 | { |
| 444 | struct malidp_crtc_state *state = NULL; |
| 445 | |
| 446 | if (crtc->state) { |
| 447 | state = to_malidp_crtc_state(crtc->state); |
| 448 | __drm_atomic_helper_crtc_destroy_state(crtc->state); |
| 449 | } |
| 450 | |
| 451 | kfree(state); |
| 452 | state = kzalloc(sizeof(*state), GFP_KERNEL); |
| 453 | if (state) { |
| 454 | crtc->state = &state->base; |
| 455 | crtc->state->crtc = crtc; |
| 456 | } |
| 457 | } |
| 458 | |
| 459 | static void malidp_crtc_destroy_state(struct drm_crtc *crtc, |
| 460 | struct drm_crtc_state *state) |
| 461 | { |
| 462 | struct malidp_crtc_state *mali_state = NULL; |
| 463 | |
| 464 | if (state) { |
| 465 | mali_state = to_malidp_crtc_state(state); |
| 466 | __drm_atomic_helper_crtc_destroy_state(state); |
| 467 | } |
| 468 | |
| 469 | kfree(mali_state); |
| 470 | } |
| 471 | |
Shawn Guo | d7ae94b | 2017-02-07 17:16:17 +0800 | [diff] [blame] | 472 | static int malidp_crtc_enable_vblank(struct drm_crtc *crtc) |
| 473 | { |
| 474 | struct malidp_drm *malidp = crtc_to_malidp_device(crtc); |
| 475 | struct malidp_hw_device *hwdev = malidp->dev; |
| 476 | |
| 477 | malidp_hw_enable_irq(hwdev, MALIDP_DE_BLOCK, |
| 478 | hwdev->map.de_irq_map.vsync_irq); |
| 479 | return 0; |
| 480 | } |
| 481 | |
| 482 | static void malidp_crtc_disable_vblank(struct drm_crtc *crtc) |
| 483 | { |
| 484 | struct malidp_drm *malidp = crtc_to_malidp_device(crtc); |
| 485 | struct malidp_hw_device *hwdev = malidp->dev; |
| 486 | |
| 487 | malidp_hw_disable_irq(hwdev, MALIDP_DE_BLOCK, |
| 488 | hwdev->map.de_irq_map.vsync_irq); |
| 489 | } |
| 490 | |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 491 | static const struct drm_crtc_funcs malidp_crtc_funcs = { |
Mihail Atanassov | 02725d3 | 2017-02-01 14:48:50 +0000 | [diff] [blame] | 492 | .gamma_set = drm_atomic_helper_legacy_gamma_set, |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 493 | .destroy = drm_crtc_cleanup, |
| 494 | .set_config = drm_atomic_helper_set_config, |
| 495 | .page_flip = drm_atomic_helper_page_flip, |
Mihail Atanassov | 99665d0 | 2017-02-01 14:48:49 +0000 | [diff] [blame] | 496 | .reset = malidp_crtc_reset, |
| 497 | .atomic_duplicate_state = malidp_crtc_duplicate_state, |
| 498 | .atomic_destroy_state = malidp_crtc_destroy_state, |
Shawn Guo | d7ae94b | 2017-02-07 17:16:17 +0800 | [diff] [blame] | 499 | .enable_vblank = malidp_crtc_enable_vblank, |
| 500 | .disable_vblank = malidp_crtc_disable_vblank, |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 501 | }; |
| 502 | |
| 503 | int malidp_crtc_init(struct drm_device *drm) |
| 504 | { |
| 505 | struct malidp_drm *malidp = drm->dev_private; |
| 506 | struct drm_plane *primary = NULL, *plane; |
| 507 | int ret; |
| 508 | |
| 509 | ret = malidp_de_planes_init(drm); |
| 510 | if (ret < 0) { |
| 511 | DRM_ERROR("Failed to initialise planes\n"); |
| 512 | return ret; |
| 513 | } |
| 514 | |
| 515 | drm_for_each_plane(plane, drm) { |
| 516 | if (plane->type == DRM_PLANE_TYPE_PRIMARY) { |
| 517 | primary = plane; |
| 518 | break; |
| 519 | } |
| 520 | } |
| 521 | |
| 522 | if (!primary) { |
| 523 | DRM_ERROR("no primary plane found\n"); |
| 524 | ret = -EINVAL; |
| 525 | goto crtc_cleanup_planes; |
| 526 | } |
| 527 | |
| 528 | ret = drm_crtc_init_with_planes(drm, &malidp->crtc, primary, NULL, |
| 529 | &malidp_crtc_funcs, NULL); |
Mihail Atanassov | 02725d3 | 2017-02-01 14:48:50 +0000 | [diff] [blame] | 530 | if (ret) |
| 531 | goto crtc_cleanup_planes; |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 532 | |
Mihail Atanassov | 02725d3 | 2017-02-01 14:48:50 +0000 | [diff] [blame] | 533 | drm_crtc_helper_add(&malidp->crtc, &malidp_crtc_helper_funcs); |
| 534 | drm_mode_crtc_set_gamma_size(&malidp->crtc, MALIDP_GAMMA_LUT_SIZE); |
Mihail Atanassov | 0274e6a | 2017-02-06 12:20:56 +0000 | [diff] [blame] | 535 | /* No inverse-gamma: it is per-plane. */ |
Mihail Atanassov | 6954f24 | 2017-02-13 12:49:03 +0000 | [diff] [blame] | 536 | drm_crtc_enable_color_mgmt(&malidp->crtc, 0, true, MALIDP_GAMMA_LUT_SIZE); |
Mihail Atanassov | 02725d3 | 2017-02-01 14:48:50 +0000 | [diff] [blame] | 537 | |
Mihail Atanassov | 0274e6a | 2017-02-06 12:20:56 +0000 | [diff] [blame] | 538 | malidp_se_set_enh_coeffs(malidp->dev); |
| 539 | |
Mihail Atanassov | 02725d3 | 2017-02-01 14:48:50 +0000 | [diff] [blame] | 540 | return 0; |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 541 | |
| 542 | crtc_cleanup_planes: |
| 543 | malidp_de_planes_destroy(drm); |
| 544 | |
| 545 | return ret; |
| 546 | } |