1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Copyright 2010 Matt Turner.
4  * Copyright 2012 Red Hat
5  *
6  * Authors: Matthew Garrett
7  *	    Matt Turner
8  *	    Dave Airlie
9  */
10 
11 #include <linux/delay.h>
12 #include <linux/iosys-map.h>
13 
14 #include <drm/drm_atomic.h>
15 #include <drm/drm_atomic_helper.h>
16 #include <drm/drm_damage_helper.h>
17 #include <drm/drm_format_helper.h>
18 #include <drm/drm_fourcc.h>
19 #include <drm/drm_framebuffer.h>
20 #include <drm/drm_gem_atomic_helper.h>
21 #include <drm/drm_gem_framebuffer_helper.h>
22 #include <drm/drm_print.h>
23 #include <drm/drm_probe_helper.h>
24 
25 #include "mgag200_drv.h"
26 
27 /*
28  * This file contains setup code for the CRTC.
29  */
30 
31 static void mgag200_crtc_set_gamma_linear(struct mga_device *mdev,
32 					  const struct drm_format_info *format)
33 {
34 	int i;
35 
36 	WREG8(DAC_INDEX + MGA1064_INDEX, 0);
37 
38 	switch (format->format) {
39 	case DRM_FORMAT_RGB565:
40 		/* Use better interpolation, to take 32 values from 0 to 255 */
41 		for (i = 0; i < MGAG200_LUT_SIZE / 8; i++) {
42 			WREG8(DAC_INDEX + MGA1064_COL_PAL, i * 8 + i / 4);
43 			WREG8(DAC_INDEX + MGA1064_COL_PAL, i * 4 + i / 16);
44 			WREG8(DAC_INDEX + MGA1064_COL_PAL, i * 8 + i / 4);
45 		}
46 		/* Green has one more bit, so add padding with 0 for red and blue. */
47 		for (i = MGAG200_LUT_SIZE / 8; i < MGAG200_LUT_SIZE / 4; i++) {
48 			WREG8(DAC_INDEX + MGA1064_COL_PAL, 0);
49 			WREG8(DAC_INDEX + MGA1064_COL_PAL, i * 4 + i / 16);
50 			WREG8(DAC_INDEX + MGA1064_COL_PAL, 0);
51 		}
52 		break;
53 	case DRM_FORMAT_RGB888:
54 	case DRM_FORMAT_XRGB8888:
55 		for (i = 0; i < MGAG200_LUT_SIZE; i++) {
56 			WREG8(DAC_INDEX + MGA1064_COL_PAL, i);
57 			WREG8(DAC_INDEX + MGA1064_COL_PAL, i);
58 			WREG8(DAC_INDEX + MGA1064_COL_PAL, i);
59 		}
60 		break;
61 	default:
62 		drm_warn_once(&mdev->base, "Unsupported format %p4cc for gamma correction\n",
63 			      &format->format);
64 		break;
65 	}
66 }
67 
68 static void mgag200_crtc_set_gamma(struct mga_device *mdev,
69 				   const struct drm_format_info *format,
70 				   struct drm_color_lut *lut)
71 {
72 	int i;
73 
74 	WREG8(DAC_INDEX + MGA1064_INDEX, 0);
75 
76 	switch (format->format) {
77 	case DRM_FORMAT_RGB565:
78 		/* Use better interpolation, to take 32 values from lut[0] to lut[255] */
79 		for (i = 0; i < MGAG200_LUT_SIZE / 8; i++) {
80 			WREG8(DAC_INDEX + MGA1064_COL_PAL, lut[i * 8 + i / 4].red >> 8);
81 			WREG8(DAC_INDEX + MGA1064_COL_PAL, lut[i * 4 + i / 16].green >> 8);
82 			WREG8(DAC_INDEX + MGA1064_COL_PAL, lut[i * 8 + i / 4].blue >> 8);
83 		}
84 		/* Green has one more bit, so add padding with 0 for red and blue. */
85 		for (i = MGAG200_LUT_SIZE / 8; i < MGAG200_LUT_SIZE / 4; i++) {
86 			WREG8(DAC_INDEX + MGA1064_COL_PAL, 0);
87 			WREG8(DAC_INDEX + MGA1064_COL_PAL, lut[i * 4 + i / 16].green >> 8);
88 			WREG8(DAC_INDEX + MGA1064_COL_PAL, 0);
89 		}
90 		break;
91 	case DRM_FORMAT_RGB888:
92 	case DRM_FORMAT_XRGB8888:
93 		for (i = 0; i < MGAG200_LUT_SIZE; i++) {
94 			WREG8(DAC_INDEX + MGA1064_COL_PAL, lut[i].red >> 8);
95 			WREG8(DAC_INDEX + MGA1064_COL_PAL, lut[i].green >> 8);
96 			WREG8(DAC_INDEX + MGA1064_COL_PAL, lut[i].blue >> 8);
97 		}
98 		break;
99 	default:
100 		drm_warn_once(&mdev->base, "Unsupported format %p4cc for gamma correction\n",
101 			      &format->format);
102 		break;
103 	}
104 }
105 
106 static inline void mga_wait_vsync(struct mga_device *mdev)
107 {
108 	unsigned long timeout = jiffies + HZ/10;
109 	unsigned int status = 0;
110 
111 	do {
112 		status = RREG32(MGAREG_Status);
113 	} while ((status & 0x08) && time_before(jiffies, timeout));
114 	timeout = jiffies + HZ/10;
115 	status = 0;
116 	do {
117 		status = RREG32(MGAREG_Status);
118 	} while (!(status & 0x08) && time_before(jiffies, timeout));
119 }
120 
121 static inline void mga_wait_busy(struct mga_device *mdev)
122 {
123 	unsigned long timeout = jiffies + HZ;
124 	unsigned int status = 0;
125 	do {
126 		status = RREG8(MGAREG_Status + 2);
127 	} while ((status & 0x01) && time_before(jiffies, timeout));
128 }
129 
130 /*
131  * This is how the framebuffer base address is stored in g200 cards:
132  *   * Assume @offset is the gpu_addr variable of the framebuffer object
133  *   * Then addr is the number of _pixels_ (not bytes) from the start of
134  *     VRAM to the first pixel we want to display. (divided by 2 for 32bit
135  *     framebuffers)
136  *   * addr is stored in the CRTCEXT0, CRTCC and CRTCD registers
137  *      addr<20> -> CRTCEXT0<6>
138  *      addr<19-16> -> CRTCEXT0<3-0>
139  *      addr<15-8> -> CRTCC<7-0>
140  *      addr<7-0> -> CRTCD<7-0>
141  *
142  *  CRTCEXT0 has to be programmed last to trigger an update and make the
143  *  new addr variable take effect.
144  */
145 static void mgag200_set_startadd(struct mga_device *mdev,
146 				 unsigned long offset)
147 {
148 	struct drm_device *dev = &mdev->base;
149 	u32 startadd;
150 	u8 crtcc, crtcd, crtcext0;
151 
152 	startadd = offset / 8;
153 
154 	if (startadd > 0)
155 		drm_WARN_ON_ONCE(dev, mdev->info->bug_no_startadd);
156 
157 	/*
158 	 * Can't store addresses any higher than that, but we also
159 	 * don't have more than 16 MiB of memory, so it should be fine.
160 	 */
161 	drm_WARN_ON(dev, startadd > 0x1fffff);
162 
163 	RREG_ECRT(0x00, crtcext0);
164 
165 	crtcc = (startadd >> 8) & 0xff;
166 	crtcd = startadd & 0xff;
167 	crtcext0 &= 0xb0;
168 	crtcext0 |= ((startadd >> 14) & BIT(6)) |
169 		    ((startadd >> 16) & 0x0f);
170 
171 	WREG_CRT(0x0c, crtcc);
172 	WREG_CRT(0x0d, crtcd);
173 	WREG_ECRT(0x00, crtcext0);
174 }
175 
176 void mgag200_init_registers(struct mga_device *mdev)
177 {
178 	u8 crtc11, misc;
179 
180 	WREG_SEQ(2, 0x0f);
181 	WREG_SEQ(3, 0x00);
182 	WREG_SEQ(4, 0x0e);
183 
184 	WREG_CRT(10, 0);
185 	WREG_CRT(11, 0);
186 	WREG_CRT(12, 0);
187 	WREG_CRT(13, 0);
188 	WREG_CRT(14, 0);
189 	WREG_CRT(15, 0);
190 
191 	RREG_CRT(0x11, crtc11);
192 	crtc11 &= ~(MGAREG_CRTC11_CRTCPROTECT |
193 		    MGAREG_CRTC11_VINTEN |
194 		    MGAREG_CRTC11_VINTCLR);
195 	WREG_CRT(0x11, crtc11);
196 
197 	misc = RREG8(MGA_MISC_IN);
198 	misc |= MGAREG_MISC_IOADSEL;
199 	WREG8(MGA_MISC_OUT, misc);
200 }
201 
202 void mgag200_set_mode_regs(struct mga_device *mdev, const struct drm_display_mode *mode)
203 {
204 	const struct mgag200_device_info *info = mdev->info;
205 	unsigned int hdisplay, hsyncstart, hsyncend, htotal;
206 	unsigned int vdisplay, vsyncstart, vsyncend, vtotal;
207 	u8 misc, crtcext1, crtcext2, crtcext5;
208 
209 	hdisplay = mode->hdisplay / 8 - 1;
210 	hsyncstart = mode->hsync_start / 8 - 1;
211 	hsyncend = mode->hsync_end / 8 - 1;
212 	htotal = mode->htotal / 8 - 1;
213 
214 	/* Work around hardware quirk */
215 	if ((htotal & 0x07) == 0x06 || (htotal & 0x07) == 0x04)
216 		htotal++;
217 
218 	vdisplay = mode->vdisplay - 1;
219 	vsyncstart = mode->vsync_start - 1;
220 	vsyncend = mode->vsync_end - 1;
221 	vtotal = mode->vtotal - 2;
222 
223 	misc = RREG8(MGA_MISC_IN);
224 
225 	if (mode->flags & DRM_MODE_FLAG_NHSYNC)
226 		misc |= MGAREG_MISC_HSYNCPOL;
227 	else
228 		misc &= ~MGAREG_MISC_HSYNCPOL;
229 
230 	if (mode->flags & DRM_MODE_FLAG_NVSYNC)
231 		misc |= MGAREG_MISC_VSYNCPOL;
232 	else
233 		misc &= ~MGAREG_MISC_VSYNCPOL;
234 
235 	crtcext1 = (((htotal - 4) & 0x100) >> 8) |
236 		   ((hdisplay & 0x100) >> 7) |
237 		   ((hsyncstart & 0x100) >> 6) |
238 		    (htotal & 0x40);
239 	if (info->has_vidrst)
240 		crtcext1 |= MGAREG_CRTCEXT1_VRSTEN |
241 			    MGAREG_CRTCEXT1_HRSTEN;
242 
243 	crtcext2 = ((vtotal & 0xc00) >> 10) |
244 		   ((vdisplay & 0x400) >> 8) |
245 		   ((vdisplay & 0xc00) >> 7) |
246 		   ((vsyncstart & 0xc00) >> 5) |
247 		   ((vdisplay & 0x400) >> 3);
248 	crtcext5 = 0x00;
249 
250 	WREG_CRT(0, htotal - 4);
251 	WREG_CRT(1, hdisplay);
252 	WREG_CRT(2, hdisplay);
253 	WREG_CRT(3, (htotal & 0x1F) | 0x80);
254 	WREG_CRT(4, hsyncstart);
255 	WREG_CRT(5, ((htotal & 0x20) << 2) | (hsyncend & 0x1F));
256 	WREG_CRT(6, vtotal & 0xFF);
257 	WREG_CRT(7, ((vtotal & 0x100) >> 8) |
258 		 ((vdisplay & 0x100) >> 7) |
259 		 ((vsyncstart & 0x100) >> 6) |
260 		 ((vdisplay & 0x100) >> 5) |
261 		 ((vdisplay & 0x100) >> 4) | /* linecomp */
262 		 ((vtotal & 0x200) >> 4) |
263 		 ((vdisplay & 0x200) >> 3) |
264 		 ((vsyncstart & 0x200) >> 2));
265 	WREG_CRT(9, ((vdisplay & 0x200) >> 4) |
266 		 ((vdisplay & 0x200) >> 3));
267 	WREG_CRT(16, vsyncstart & 0xFF);
268 	WREG_CRT(17, (vsyncend & 0x0F) | 0x20);
269 	WREG_CRT(18, vdisplay & 0xFF);
270 	WREG_CRT(20, 0);
271 	WREG_CRT(21, vdisplay & 0xFF);
272 	WREG_CRT(22, (vtotal + 1) & 0xFF);
273 	WREG_CRT(23, 0xc3);
274 	WREG_CRT(24, vdisplay & 0xFF);
275 
276 	WREG_ECRT(0x01, crtcext1);
277 	WREG_ECRT(0x02, crtcext2);
278 	WREG_ECRT(0x05, crtcext5);
279 
280 	WREG8(MGA_MISC_OUT, misc);
281 }
282 
283 static u8 mgag200_get_bpp_shift(const struct drm_format_info *format)
284 {
285 	static const u8 bpp_shift[] = {0, 1, 0, 2};
286 
287 	return bpp_shift[format->cpp[0] - 1];
288 }
289 
290 /*
291  * Calculates the HW offset value from the framebuffer's pitch. The
292  * offset is a multiple of the pixel size and depends on the display
293  * format.
294  */
295 static u32 mgag200_calculate_offset(struct mga_device *mdev,
296 				    const struct drm_framebuffer *fb)
297 {
298 	u32 offset = fb->pitches[0] / fb->format->cpp[0];
299 	u8 bppshift = mgag200_get_bpp_shift(fb->format);
300 
301 	if (fb->format->cpp[0] * 8 == 24)
302 		offset = (offset * 3) >> (4 - bppshift);
303 	else
304 		offset = offset >> (4 - bppshift);
305 
306 	return offset;
307 }
308 
309 static void mgag200_set_offset(struct mga_device *mdev,
310 			       const struct drm_framebuffer *fb)
311 {
312 	u8 crtc13, crtcext0;
313 	u32 offset = mgag200_calculate_offset(mdev, fb);
314 
315 	RREG_ECRT(0, crtcext0);
316 
317 	crtc13 = offset & 0xff;
318 
319 	crtcext0 &= ~MGAREG_CRTCEXT0_OFFSET_MASK;
320 	crtcext0 |= (offset >> 4) & MGAREG_CRTCEXT0_OFFSET_MASK;
321 
322 	WREG_CRT(0x13, crtc13);
323 	WREG_ECRT(0x00, crtcext0);
324 }
325 
326 void mgag200_set_format_regs(struct mga_device *mdev, const struct drm_format_info *format)
327 {
328 	struct drm_device *dev = &mdev->base;
329 	unsigned int bpp, bppshift, scale;
330 	u8 crtcext3, xmulctrl;
331 
332 	bpp = format->cpp[0] * 8;
333 
334 	bppshift = mgag200_get_bpp_shift(format);
335 	switch (bpp) {
336 	case 24:
337 		scale = ((1 << bppshift) * 3) - 1;
338 		break;
339 	default:
340 		scale = (1 << bppshift) - 1;
341 		break;
342 	}
343 
344 	RREG_ECRT(3, crtcext3);
345 
346 	switch (bpp) {
347 	case 8:
348 		xmulctrl = MGA1064_MUL_CTL_8bits;
349 		break;
350 	case 16:
351 		if (format->depth == 15)
352 			xmulctrl = MGA1064_MUL_CTL_15bits;
353 		else
354 			xmulctrl = MGA1064_MUL_CTL_16bits;
355 		break;
356 	case 24:
357 		xmulctrl = MGA1064_MUL_CTL_24bits;
358 		break;
359 	case 32:
360 		xmulctrl = MGA1064_MUL_CTL_32_24bits;
361 		break;
362 	default:
363 		/* BUG: We should have caught this problem already. */
364 		drm_WARN_ON(dev, "invalid format depth\n");
365 		return;
366 	}
367 
368 	crtcext3 &= ~GENMASK(2, 0);
369 	crtcext3 |= scale;
370 
371 	WREG_DAC(MGA1064_MUL_CTL, xmulctrl);
372 
373 	WREG_GFX(0, 0x00);
374 	WREG_GFX(1, 0x00);
375 	WREG_GFX(2, 0x00);
376 	WREG_GFX(3, 0x00);
377 	WREG_GFX(4, 0x00);
378 	WREG_GFX(5, 0x40);
379 	/* GCTL6 should be 0x05, but we configure memmapsl to 0xb8000 (text mode),
380 	 * so that it doesn't hang when running kexec/kdump on G200_SE rev42.
381 	 */
382 	WREG_GFX(6, 0x0d);
383 	WREG_GFX(7, 0x0f);
384 	WREG_GFX(8, 0x0f);
385 
386 	WREG_ECRT(3, crtcext3);
387 }
388 
389 void mgag200_enable_display(struct mga_device *mdev)
390 {
391 	u8 seq0, crtcext1;
392 
393 	RREG_SEQ(0x00, seq0);
394 	seq0 |= MGAREG_SEQ0_SYNCRST |
395 		MGAREG_SEQ0_ASYNCRST;
396 	WREG_SEQ(0x00, seq0);
397 
398 	/*
399 	 * TODO: replace busy waiting with vblank IRQ; put
400 	 *       msleep(50) before changing SCROFF
401 	 */
402 	mga_wait_vsync(mdev);
403 	mga_wait_busy(mdev);
404 
405 	RREG_ECRT(0x01, crtcext1);
406 	crtcext1 &= ~MGAREG_CRTCEXT1_VSYNCOFF;
407 	crtcext1 &= ~MGAREG_CRTCEXT1_HSYNCOFF;
408 	WREG_ECRT(0x01, crtcext1);
409 }
410 
411 static void mgag200_disable_display(struct mga_device *mdev)
412 {
413 	u8 seq0, crtcext1;
414 
415 	RREG_SEQ(0x00, seq0);
416 	seq0 &= ~MGAREG_SEQ0_SYNCRST;
417 	WREG_SEQ(0x00, seq0);
418 
419 	/*
420 	 * TODO: replace busy waiting with vblank IRQ; put
421 	 *       msleep(50) before changing SCROFF
422 	 */
423 	mga_wait_vsync(mdev);
424 	mga_wait_busy(mdev);
425 
426 	RREG_ECRT(0x01, crtcext1);
427 	crtcext1 |= MGAREG_CRTCEXT1_VSYNCOFF |
428 		    MGAREG_CRTCEXT1_HSYNCOFF;
429 	WREG_ECRT(0x01, crtcext1);
430 }
431 
432 static void mgag200_handle_damage(struct mga_device *mdev, const struct iosys_map *vmap,
433 				  struct drm_framebuffer *fb, struct drm_rect *clip)
434 {
435 	struct iosys_map dst = IOSYS_MAP_INIT_VADDR_IOMEM(mdev->vram);
436 
437 	iosys_map_incr(&dst, drm_fb_clip_offset(fb->pitches[0], fb->format, clip));
438 	drm_fb_memcpy(&dst, fb->pitches, vmap, fb, clip);
439 }
440 
441 /*
442  * Primary plane
443  */
444 
445 const uint32_t mgag200_primary_plane_formats[] = {
446 	DRM_FORMAT_XRGB8888,
447 	DRM_FORMAT_RGB565,
448 	DRM_FORMAT_RGB888,
449 };
450 
451 const size_t mgag200_primary_plane_formats_size = ARRAY_SIZE(mgag200_primary_plane_formats);
452 
453 const uint64_t mgag200_primary_plane_fmtmods[] = {
454 	DRM_FORMAT_MOD_LINEAR,
455 	DRM_FORMAT_MOD_INVALID
456 };
457 
458 int mgag200_primary_plane_helper_atomic_check(struct drm_plane *plane,
459 					      struct drm_atomic_state *new_state)
460 {
461 	struct drm_plane_state *new_plane_state = drm_atomic_get_new_plane_state(new_state, plane);
462 	struct drm_framebuffer *new_fb = new_plane_state->fb;
463 	struct drm_framebuffer *fb = NULL;
464 	struct drm_crtc *new_crtc = new_plane_state->crtc;
465 	struct drm_crtc_state *new_crtc_state = NULL;
466 	struct mgag200_crtc_state *new_mgag200_crtc_state;
467 	int ret;
468 
469 	if (new_crtc)
470 		new_crtc_state = drm_atomic_get_new_crtc_state(new_state, new_crtc);
471 
472 	ret = drm_atomic_helper_check_plane_state(new_plane_state, new_crtc_state,
473 						  DRM_PLANE_NO_SCALING,
474 						  DRM_PLANE_NO_SCALING,
475 						  false, true);
476 	if (ret)
477 		return ret;
478 	else if (!new_plane_state->visible)
479 		return 0;
480 
481 	if (plane->state)
482 		fb = plane->state->fb;
483 
484 	if (!fb || (fb->format != new_fb->format))
485 		new_crtc_state->mode_changed = true; /* update PLL settings */
486 
487 	new_mgag200_crtc_state = to_mgag200_crtc_state(new_crtc_state);
488 	new_mgag200_crtc_state->format = new_fb->format;
489 
490 	return 0;
491 }
492 
493 void mgag200_primary_plane_helper_atomic_update(struct drm_plane *plane,
494 						struct drm_atomic_state *old_state)
495 {
496 	struct drm_device *dev = plane->dev;
497 	struct mga_device *mdev = to_mga_device(dev);
498 	struct drm_plane_state *plane_state = plane->state;
499 	struct drm_plane_state *old_plane_state = drm_atomic_get_old_plane_state(old_state, plane);
500 	struct drm_shadow_plane_state *shadow_plane_state = to_drm_shadow_plane_state(plane_state);
501 	struct drm_framebuffer *fb = plane_state->fb;
502 	struct drm_atomic_helper_damage_iter iter;
503 	struct drm_rect damage;
504 	u8 seq1;
505 
506 	if (!fb)
507 		return;
508 
509 	drm_atomic_helper_damage_iter_init(&iter, old_plane_state, plane_state);
510 	drm_atomic_for_each_plane_damage(&iter, &damage) {
511 		mgag200_handle_damage(mdev, shadow_plane_state->data, fb, &damage);
512 	}
513 
514 	/* Always scanout image at VRAM offset 0 */
515 	mgag200_set_startadd(mdev, (u32)0);
516 	mgag200_set_offset(mdev, fb);
517 
518 	if (!old_plane_state->crtc && plane_state->crtc) { // enabling
519 		RREG_SEQ(0x01, seq1);
520 		seq1 &= ~MGAREG_SEQ1_SCROFF;
521 		WREG_SEQ(0x01, seq1);
522 		msleep(20);
523 	}
524 }
525 
526 void mgag200_primary_plane_helper_atomic_disable(struct drm_plane *plane,
527 						 struct drm_atomic_state *old_state)
528 {
529 	struct drm_device *dev = plane->dev;
530 	struct mga_device *mdev = to_mga_device(dev);
531 	u8 seq1;
532 
533 	RREG_SEQ(0x01, seq1);
534 	seq1 |= MGAREG_SEQ1_SCROFF;
535 	WREG_SEQ(0x01, seq1);
536 	msleep(20);
537 }
538 
539 /*
540  * CRTC
541  */
542 
543 enum drm_mode_status mgag200_crtc_helper_mode_valid(struct drm_crtc *crtc,
544 						    const struct drm_display_mode *mode)
545 {
546 	struct mga_device *mdev = to_mga_device(crtc->dev);
547 	const struct mgag200_device_info *info = mdev->info;
548 
549 	/*
550 	 * Some devices have additional limits on the size of the
551 	 * display mode.
552 	 */
553 	if (mode->hdisplay > info->max_hdisplay)
554 		return MODE_VIRTUAL_X;
555 	if (mode->vdisplay > info->max_vdisplay)
556 		return MODE_VIRTUAL_Y;
557 
558 	if ((mode->hdisplay % 8) != 0 || (mode->hsync_start % 8) != 0 ||
559 	    (mode->hsync_end % 8) != 0 || (mode->htotal % 8) != 0) {
560 		return MODE_H_ILLEGAL;
561 	}
562 
563 	if (mode->crtc_hdisplay > 2048 || mode->crtc_hsync_start > 4096 ||
564 	    mode->crtc_hsync_end > 4096 || mode->crtc_htotal > 4096 ||
565 	    mode->crtc_vdisplay > 2048 || mode->crtc_vsync_start > 4096 ||
566 	    mode->crtc_vsync_end > 4096 || mode->crtc_vtotal > 4096) {
567 		return MODE_BAD;
568 	}
569 
570 	return MODE_OK;
571 }
572 
573 int mgag200_crtc_helper_atomic_check(struct drm_crtc *crtc, struct drm_atomic_state *new_state)
574 {
575 	struct drm_device *dev = crtc->dev;
576 	struct mga_device *mdev = to_mga_device(dev);
577 	const struct mgag200_device_funcs *funcs = mdev->funcs;
578 	struct drm_crtc_state *new_crtc_state = drm_atomic_get_new_crtc_state(new_state, crtc);
579 	struct drm_property_blob *new_gamma_lut = new_crtc_state->gamma_lut;
580 	int ret;
581 
582 	ret = drm_atomic_helper_check_crtc_state(new_crtc_state, false);
583 	if (ret)
584 		return ret;
585 
586 	if (!new_crtc_state->enable)
587 		return 0;
588 
589 	if (new_crtc_state->mode_changed) {
590 		if (funcs->pixpllc_atomic_check) {
591 			ret = funcs->pixpllc_atomic_check(crtc, new_state);
592 			if (ret)
593 				return ret;
594 		}
595 	}
596 
597 	if (new_crtc_state->color_mgmt_changed && new_gamma_lut) {
598 		if (new_gamma_lut->length != MGAG200_LUT_SIZE * sizeof(struct drm_color_lut)) {
599 			drm_dbg(dev, "Wrong size for gamma_lut %zu\n", new_gamma_lut->length);
600 			return -EINVAL;
601 		}
602 	}
603 
604 	return drm_atomic_add_affected_planes(new_state, crtc);
605 }
606 
607 void mgag200_crtc_helper_atomic_flush(struct drm_crtc *crtc, struct drm_atomic_state *old_state)
608 {
609 	struct drm_crtc_state *crtc_state = crtc->state;
610 	struct mgag200_crtc_state *mgag200_crtc_state = to_mgag200_crtc_state(crtc_state);
611 	struct drm_device *dev = crtc->dev;
612 	struct mga_device *mdev = to_mga_device(dev);
613 
614 	if (crtc_state->enable && crtc_state->color_mgmt_changed) {
615 		const struct drm_format_info *format = mgag200_crtc_state->format;
616 
617 		if (crtc_state->gamma_lut)
618 			mgag200_crtc_set_gamma(mdev, format, crtc_state->gamma_lut->data);
619 		else
620 			mgag200_crtc_set_gamma_linear(mdev, format);
621 	}
622 }
623 
624 void mgag200_crtc_helper_atomic_enable(struct drm_crtc *crtc, struct drm_atomic_state *old_state)
625 {
626 	struct drm_device *dev = crtc->dev;
627 	struct mga_device *mdev = to_mga_device(dev);
628 	const struct mgag200_device_funcs *funcs = mdev->funcs;
629 	struct drm_crtc_state *crtc_state = crtc->state;
630 	struct drm_display_mode *adjusted_mode = &crtc_state->adjusted_mode;
631 	struct mgag200_crtc_state *mgag200_crtc_state = to_mgag200_crtc_state(crtc_state);
632 	const struct drm_format_info *format = mgag200_crtc_state->format;
633 
634 	if (funcs->disable_vidrst)
635 		funcs->disable_vidrst(mdev);
636 
637 	mgag200_set_format_regs(mdev, format);
638 	mgag200_set_mode_regs(mdev, adjusted_mode);
639 
640 	if (funcs->pixpllc_atomic_update)
641 		funcs->pixpllc_atomic_update(crtc, old_state);
642 
643 	mgag200_enable_display(mdev);
644 
645 	if (funcs->enable_vidrst)
646 		funcs->enable_vidrst(mdev);
647 }
648 
649 void mgag200_crtc_helper_atomic_disable(struct drm_crtc *crtc, struct drm_atomic_state *old_state)
650 {
651 	struct mga_device *mdev = to_mga_device(crtc->dev);
652 	const struct mgag200_device_funcs *funcs = mdev->funcs;
653 
654 	if (funcs->disable_vidrst)
655 		funcs->disable_vidrst(mdev);
656 
657 	mgag200_disable_display(mdev);
658 
659 	if (funcs->enable_vidrst)
660 		funcs->enable_vidrst(mdev);
661 }
662 
663 void mgag200_crtc_reset(struct drm_crtc *crtc)
664 {
665 	struct mgag200_crtc_state *mgag200_crtc_state;
666 
667 	if (crtc->state)
668 		crtc->funcs->atomic_destroy_state(crtc, crtc->state);
669 
670 	mgag200_crtc_state = kzalloc(sizeof(*mgag200_crtc_state), GFP_KERNEL);
671 	if (mgag200_crtc_state)
672 		__drm_atomic_helper_crtc_reset(crtc, &mgag200_crtc_state->base);
673 	else
674 		__drm_atomic_helper_crtc_reset(crtc, NULL);
675 }
676 
677 struct drm_crtc_state *mgag200_crtc_atomic_duplicate_state(struct drm_crtc *crtc)
678 {
679 	struct drm_crtc_state *crtc_state = crtc->state;
680 	struct mgag200_crtc_state *mgag200_crtc_state = to_mgag200_crtc_state(crtc_state);
681 	struct mgag200_crtc_state *new_mgag200_crtc_state;
682 
683 	if (!crtc_state)
684 		return NULL;
685 
686 	new_mgag200_crtc_state = kzalloc(sizeof(*new_mgag200_crtc_state), GFP_KERNEL);
687 	if (!new_mgag200_crtc_state)
688 		return NULL;
689 	__drm_atomic_helper_crtc_duplicate_state(crtc, &new_mgag200_crtc_state->base);
690 
691 	new_mgag200_crtc_state->format = mgag200_crtc_state->format;
692 	memcpy(&new_mgag200_crtc_state->pixpllc, &mgag200_crtc_state->pixpllc,
693 	       sizeof(new_mgag200_crtc_state->pixpllc));
694 
695 	return &new_mgag200_crtc_state->base;
696 }
697 
698 void mgag200_crtc_atomic_destroy_state(struct drm_crtc *crtc, struct drm_crtc_state *crtc_state)
699 {
700 	struct mgag200_crtc_state *mgag200_crtc_state = to_mgag200_crtc_state(crtc_state);
701 
702 	__drm_atomic_helper_crtc_destroy_state(&mgag200_crtc_state->base);
703 	kfree(mgag200_crtc_state);
704 }
705 
706 /*
707  * Connector
708  */
709 
710 int mgag200_vga_connector_helper_get_modes(struct drm_connector *connector)
711 {
712 	struct mga_device *mdev = to_mga_device(connector->dev);
713 	int ret;
714 
715 	/*
716 	 * Protect access to I/O registers from concurrent modesetting
717 	 * by acquiring the I/O-register lock.
718 	 */
719 	mutex_lock(&mdev->rmmio_lock);
720 	ret = drm_connector_helper_get_modes_from_ddc(connector);
721 	mutex_unlock(&mdev->rmmio_lock);
722 
723 	return ret;
724 }
725 
726 /*
727  * Mode config
728  */
729 
730 static void mgag200_mode_config_helper_atomic_commit_tail(struct drm_atomic_state *state)
731 {
732 	struct mga_device *mdev = to_mga_device(state->dev);
733 
734 	/*
735 	 * Concurrent operations could possibly trigger a call to
736 	 * drm_connector_helper_funcs.get_modes by trying to read the
737 	 * display modes. Protect access to I/O registers by acquiring
738 	 * the I/O-register lock.
739 	 */
740 	mutex_lock(&mdev->rmmio_lock);
741 	drm_atomic_helper_commit_tail(state);
742 	mutex_unlock(&mdev->rmmio_lock);
743 }
744 
745 static const struct drm_mode_config_helper_funcs mgag200_mode_config_helper_funcs = {
746 	.atomic_commit_tail = mgag200_mode_config_helper_atomic_commit_tail,
747 };
748 
749 /* Calculates a mode's required memory bandwidth (in KiB/sec). */
750 static uint32_t mgag200_calculate_mode_bandwidth(const struct drm_display_mode *mode,
751 						 unsigned int bits_per_pixel)
752 {
753 	uint32_t total_area, divisor;
754 	uint64_t active_area, pixels_per_second, bandwidth;
755 	uint64_t bytes_per_pixel = (bits_per_pixel + 7) / 8;
756 
757 	divisor = 1024;
758 
759 	if (!mode->htotal || !mode->vtotal || !mode->clock)
760 		return 0;
761 
762 	active_area = mode->hdisplay * mode->vdisplay;
763 	total_area = mode->htotal * mode->vtotal;
764 
765 	pixels_per_second = active_area * mode->clock * 1000;
766 	do_div(pixels_per_second, total_area);
767 
768 	bandwidth = pixels_per_second * bytes_per_pixel * 100;
769 	do_div(bandwidth, divisor);
770 
771 	return (uint32_t)bandwidth;
772 }
773 
774 static enum drm_mode_status mgag200_mode_config_mode_valid(struct drm_device *dev,
775 							   const struct drm_display_mode *mode)
776 {
777 	static const unsigned int max_bpp = 4; // DRM_FORMAT_XRGB8888
778 	struct mga_device *mdev = to_mga_device(dev);
779 	unsigned long fbsize, fbpages, max_fbpages;
780 	const struct mgag200_device_info *info = mdev->info;
781 
782 	max_fbpages = mdev->vram_available >> PAGE_SHIFT;
783 
784 	fbsize = mode->hdisplay * mode->vdisplay * max_bpp;
785 	fbpages = DIV_ROUND_UP(fbsize, PAGE_SIZE);
786 
787 	if (fbpages > max_fbpages)
788 		return MODE_MEM;
789 
790 	/*
791 	 * Test the mode's required memory bandwidth if the device
792 	 * specifies a maximum. Not all devices do though.
793 	 */
794 	if (info->max_mem_bandwidth) {
795 		uint32_t mode_bandwidth = mgag200_calculate_mode_bandwidth(mode, max_bpp * 8);
796 
797 		if (mode_bandwidth > (info->max_mem_bandwidth * 1024))
798 			return MODE_BAD;
799 	}
800 
801 	return MODE_OK;
802 }
803 
804 static const struct drm_mode_config_funcs mgag200_mode_config_funcs = {
805 	.fb_create = drm_gem_fb_create_with_dirty,
806 	.mode_valid = mgag200_mode_config_mode_valid,
807 	.atomic_check = drm_atomic_helper_check,
808 	.atomic_commit = drm_atomic_helper_commit,
809 };
810 
811 int mgag200_mode_config_init(struct mga_device *mdev, resource_size_t vram_available)
812 {
813 	struct drm_device *dev = &mdev->base;
814 	int ret;
815 
816 	mdev->vram_available = vram_available;
817 
818 	ret = drmm_mode_config_init(dev);
819 	if (ret) {
820 		drm_err(dev, "drmm_mode_config_init() failed: %d\n", ret);
821 		return ret;
822 	}
823 
824 	dev->mode_config.max_width = MGAG200_MAX_FB_WIDTH;
825 	dev->mode_config.max_height = MGAG200_MAX_FB_HEIGHT;
826 	dev->mode_config.preferred_depth = 24;
827 	dev->mode_config.fb_base = mdev->vram_res->start;
828 	dev->mode_config.funcs = &mgag200_mode_config_funcs;
829 	dev->mode_config.helper_private = &mgag200_mode_config_helper_funcs;
830 
831 	return 0;
832 }
833