2 * Copyright 2010 Matt Turner.
3 * Copyright 2012 Red Hat
5 * This file is subject to the terms and conditions of the GNU General
6 * Public License version 2. See the file COPYING in the main
7 * directory of this archive for more details.
9 * Authors: Matthew Garrett
14 #include <linux/delay.h>
17 #include <drm/drm_crtc_helper.h>
18 #include <drm/drm_plane_helper.h>
19 #include <drm/drm_probe_helper.h>
21 #include "mgag200_drv.h"
23 #define MGAG200_LUT_SIZE 256
26 * This file contains setup code for the CRTC.
29 static void mga_crtc_load_lut(struct drm_crtc
*crtc
)
31 struct drm_device
*dev
= crtc
->dev
;
32 struct mga_device
*mdev
= dev
->dev_private
;
33 struct drm_framebuffer
*fb
= crtc
->primary
->fb
;
34 u16
*r_ptr
, *g_ptr
, *b_ptr
;
40 r_ptr
= crtc
->gamma_store
;
41 g_ptr
= r_ptr
+ crtc
->gamma_size
;
42 b_ptr
= g_ptr
+ crtc
->gamma_size
;
44 WREG8(DAC_INDEX
+ MGA1064_INDEX
, 0);
46 if (fb
&& fb
->format
->cpp
[0] * 8 == 16) {
47 int inc
= (fb
->format
->depth
== 15) ? 8 : 4;
49 for (i
= 0; i
< MGAG200_LUT_SIZE
; i
+= inc
) {
50 if (fb
->format
->depth
== 16) {
51 if (i
> (MGAG200_LUT_SIZE
>> 1)) {
64 WREG8(DAC_INDEX
+ MGA1064_COL_PAL
, r
);
65 WREG8(DAC_INDEX
+ MGA1064_COL_PAL
, *g_ptr
++ >> 8);
66 WREG8(DAC_INDEX
+ MGA1064_COL_PAL
, b
);
70 for (i
= 0; i
< MGAG200_LUT_SIZE
; i
++) {
72 WREG8(DAC_INDEX
+ MGA1064_COL_PAL
, *r_ptr
++ >> 8);
73 WREG8(DAC_INDEX
+ MGA1064_COL_PAL
, *g_ptr
++ >> 8);
74 WREG8(DAC_INDEX
+ MGA1064_COL_PAL
, *b_ptr
++ >> 8);
78 static inline void mga_wait_vsync(struct mga_device
*mdev
)
80 unsigned long timeout
= jiffies
+ HZ
/10;
81 unsigned int status
= 0;
84 status
= RREG32(MGAREG_Status
);
85 } while ((status
& 0x08) && time_before(jiffies
, timeout
));
86 timeout
= jiffies
+ HZ
/10;
89 status
= RREG32(MGAREG_Status
);
90 } while (!(status
& 0x08) && time_before(jiffies
, timeout
));
93 static inline void mga_wait_busy(struct mga_device
*mdev
)
95 unsigned long timeout
= jiffies
+ HZ
;
96 unsigned int status
= 0;
98 status
= RREG8(MGAREG_Status
+ 2);
99 } while ((status
& 0x01) && time_before(jiffies
, timeout
));
102 #define P_ARRAY_SIZE 9
104 static int mga_g200se_set_plls(struct mga_device
*mdev
, long clock
)
106 unsigned int vcomax
, vcomin
, pllreffreq
;
107 unsigned int delta
, tmpdelta
, permitteddelta
;
108 unsigned int testp
, testm
, testn
;
109 unsigned int p
, m
, n
;
110 unsigned int computed
;
111 unsigned int pvalues_e4
[P_ARRAY_SIZE
] = {16, 14, 12, 10, 8, 6, 4, 2, 1};
115 if (mdev
->unique_rev_id
<= 0x03) {
123 permitteddelta
= clock
* 5 / 1000;
125 for (testp
= 8; testp
> 0; testp
/= 2) {
126 if (clock
* testp
> vcomax
)
128 if (clock
* testp
< vcomin
)
131 for (testn
= 17; testn
< 256; testn
++) {
132 for (testm
= 1; testm
< 32; testm
++) {
133 computed
= (pllreffreq
* testn
) /
135 if (computed
> clock
)
136 tmpdelta
= computed
- clock
;
138 tmpdelta
= clock
- computed
;
139 if (tmpdelta
< delta
) {
162 /* Permited delta is 0.5% as VESA Specification */
163 permitteddelta
= clock
* 5 / 1000;
165 for (i
= 0 ; i
< P_ARRAY_SIZE
; i
++) {
166 testp
= pvalues_e4
[i
];
168 if ((clock
* testp
) > vcomax
)
170 if ((clock
* testp
) < vcomin
)
173 for (testn
= 50; testn
<= 256; testn
++) {
174 for (testm
= 1; testm
<= 32; testm
++) {
175 computed
= (pllreffreq
* testn
) /
177 if (computed
> clock
)
178 tmpdelta
= computed
- clock
;
180 tmpdelta
= clock
- computed
;
182 if (tmpdelta
< delta
) {
192 fvv
= pllreffreq
* (n
+ 1) / (m
+ 1);
193 fvv
= (fvv
- 800000) / 50000;
204 if (delta
> permitteddelta
) {
205 pr_warn("PLL delta too large\n");
209 WREG_DAC(MGA1064_PIX_PLLC_M
, m
);
210 WREG_DAC(MGA1064_PIX_PLLC_N
, n
);
211 WREG_DAC(MGA1064_PIX_PLLC_P
, p
);
213 if (mdev
->unique_rev_id
>= 0x04) {
214 WREG_DAC(0x1a, 0x09);
216 WREG_DAC(0x1a, 0x01);
223 static int mga_g200wb_set_plls(struct mga_device
*mdev
, long clock
)
225 unsigned int vcomax
, vcomin
, pllreffreq
;
226 unsigned int delta
, tmpdelta
;
227 unsigned int testp
, testm
, testn
, testp2
;
228 unsigned int p
, m
, n
;
229 unsigned int computed
;
230 int i
, j
, tmpcount
, vcount
;
231 bool pll_locked
= false;
238 if (mdev
->type
== G200_EW3
) {
244 for (testp
= 1; testp
< 8; testp
++) {
245 for (testp2
= 1; testp2
< 8; testp2
++) {
248 if ((clock
* testp
* testp2
) > vcomax
)
250 if ((clock
* testp
* testp2
) < vcomin
)
252 for (testm
= 1; testm
< 26; testm
++) {
253 for (testn
= 32; testn
< 2048 ; testn
++) {
254 computed
= (pllreffreq
* testn
) /
255 (testm
* testp
* testp2
);
256 if (computed
> clock
)
257 tmpdelta
= computed
- clock
;
259 tmpdelta
= clock
- computed
;
260 if (tmpdelta
< delta
) {
262 m
= ((testn
& 0x100) >> 1) |
265 p
= ((testn
& 0x600) >> 3) |
279 for (testp
= 1; testp
< 9; testp
++) {
280 if (clock
* testp
> vcomax
)
282 if (clock
* testp
< vcomin
)
285 for (testm
= 1; testm
< 17; testm
++) {
286 for (testn
= 1; testn
< 151; testn
++) {
287 computed
= (pllreffreq
* testn
) /
289 if (computed
> clock
)
290 tmpdelta
= computed
- clock
;
292 tmpdelta
= clock
- computed
;
293 if (tmpdelta
< delta
) {
305 for (i
= 0; i
<= 32 && pll_locked
== false; i
++) {
307 WREG8(MGAREG_CRTC_INDEX
, 0x1e);
308 tmp
= RREG8(MGAREG_CRTC_DATA
);
310 WREG8(MGAREG_CRTC_DATA
, tmp
+1);
313 /* set pixclkdis to 1 */
314 WREG8(DAC_INDEX
, MGA1064_PIX_CLK_CTL
);
315 tmp
= RREG8(DAC_DATA
);
316 tmp
|= MGA1064_PIX_CLK_CTL_CLK_DIS
;
317 WREG8(DAC_DATA
, tmp
);
319 WREG8(DAC_INDEX
, MGA1064_REMHEADCTL
);
320 tmp
= RREG8(DAC_DATA
);
321 tmp
|= MGA1064_REMHEADCTL_CLKDIS
;
322 WREG8(DAC_DATA
, tmp
);
324 /* select PLL Set C */
325 tmp
= RREG8(MGAREG_MEM_MISC_READ
);
327 WREG8(MGAREG_MEM_MISC_WRITE
, tmp
);
329 WREG8(DAC_INDEX
, MGA1064_PIX_CLK_CTL
);
330 tmp
= RREG8(DAC_DATA
);
331 tmp
|= MGA1064_PIX_CLK_CTL_CLK_POW_DOWN
| 0x80;
332 WREG8(DAC_DATA
, tmp
);
337 WREG8(DAC_INDEX
, MGA1064_VREF_CTL
);
338 tmp
= RREG8(DAC_DATA
);
340 WREG8(DAC_DATA
, tmp
);
344 /* program pixel pll register */
345 WREG_DAC(MGA1064_WB_PIX_PLLC_N
, n
);
346 WREG_DAC(MGA1064_WB_PIX_PLLC_M
, m
);
347 WREG_DAC(MGA1064_WB_PIX_PLLC_P
, p
);
352 WREG8(DAC_INDEX
, MGA1064_VREF_CTL
);
353 tmp
= RREG8(DAC_DATA
);
355 WREG_DAC(MGA1064_VREF_CTL
, tmp
);
359 /* select the pixel pll */
360 WREG8(DAC_INDEX
, MGA1064_PIX_CLK_CTL
);
361 tmp
= RREG8(DAC_DATA
);
362 tmp
&= ~MGA1064_PIX_CLK_CTL_SEL_MSK
;
363 tmp
|= MGA1064_PIX_CLK_CTL_SEL_PLL
;
364 WREG8(DAC_DATA
, tmp
);
366 WREG8(DAC_INDEX
, MGA1064_REMHEADCTL
);
367 tmp
= RREG8(DAC_DATA
);
368 tmp
&= ~MGA1064_REMHEADCTL_CLKSL_MSK
;
369 tmp
|= MGA1064_REMHEADCTL_CLKSL_PLL
;
370 WREG8(DAC_DATA
, tmp
);
372 /* reset dotclock rate bit */
373 WREG8(MGAREG_SEQ_INDEX
, 1);
374 tmp
= RREG8(MGAREG_SEQ_DATA
);
376 WREG8(MGAREG_SEQ_DATA
, tmp
);
378 WREG8(DAC_INDEX
, MGA1064_PIX_CLK_CTL
);
379 tmp
= RREG8(DAC_DATA
);
380 tmp
&= ~MGA1064_PIX_CLK_CTL_CLK_DIS
;
381 WREG8(DAC_DATA
, tmp
);
383 vcount
= RREG8(MGAREG_VCOUNT
);
385 for (j
= 0; j
< 30 && pll_locked
== false; j
++) {
386 tmpcount
= RREG8(MGAREG_VCOUNT
);
387 if (tmpcount
< vcount
)
389 if ((tmpcount
- vcount
) > 2)
395 WREG8(DAC_INDEX
, MGA1064_REMHEADCTL
);
396 tmp
= RREG8(DAC_DATA
);
397 tmp
&= ~MGA1064_REMHEADCTL_CLKDIS
;
398 WREG_DAC(MGA1064_REMHEADCTL
, tmp
);
402 static int mga_g200ev_set_plls(struct mga_device
*mdev
, long clock
)
404 unsigned int vcomax
, vcomin
, pllreffreq
;
405 unsigned int delta
, tmpdelta
;
406 unsigned int testp
, testm
, testn
;
407 unsigned int p
, m
, n
;
408 unsigned int computed
;
418 for (testp
= 16; testp
> 0; testp
--) {
419 if (clock
* testp
> vcomax
)
421 if (clock
* testp
< vcomin
)
424 for (testn
= 1; testn
< 257; testn
++) {
425 for (testm
= 1; testm
< 17; testm
++) {
426 computed
= (pllreffreq
* testn
) /
428 if (computed
> clock
)
429 tmpdelta
= computed
- clock
;
431 tmpdelta
= clock
- computed
;
432 if (tmpdelta
< delta
) {
442 WREG8(DAC_INDEX
, MGA1064_PIX_CLK_CTL
);
443 tmp
= RREG8(DAC_DATA
);
444 tmp
|= MGA1064_PIX_CLK_CTL_CLK_DIS
;
445 WREG8(DAC_DATA
, tmp
);
447 tmp
= RREG8(MGAREG_MEM_MISC_READ
);
449 WREG8(MGAREG_MEM_MISC_WRITE
, tmp
);
451 WREG8(DAC_INDEX
, MGA1064_PIX_PLL_STAT
);
452 tmp
= RREG8(DAC_DATA
);
453 WREG8(DAC_DATA
, tmp
& ~0x40);
455 WREG8(DAC_INDEX
, MGA1064_PIX_CLK_CTL
);
456 tmp
= RREG8(DAC_DATA
);
457 tmp
|= MGA1064_PIX_CLK_CTL_CLK_POW_DOWN
;
458 WREG8(DAC_DATA
, tmp
);
460 WREG_DAC(MGA1064_EV_PIX_PLLC_M
, m
);
461 WREG_DAC(MGA1064_EV_PIX_PLLC_N
, n
);
462 WREG_DAC(MGA1064_EV_PIX_PLLC_P
, p
);
466 WREG8(DAC_INDEX
, MGA1064_PIX_CLK_CTL
);
467 tmp
= RREG8(DAC_DATA
);
468 tmp
&= ~MGA1064_PIX_CLK_CTL_CLK_POW_DOWN
;
469 WREG8(DAC_DATA
, tmp
);
473 WREG8(DAC_INDEX
, MGA1064_PIX_CLK_CTL
);
474 tmp
= RREG8(DAC_DATA
);
475 tmp
&= ~MGA1064_PIX_CLK_CTL_SEL_MSK
;
476 tmp
|= MGA1064_PIX_CLK_CTL_SEL_PLL
;
477 WREG8(DAC_DATA
, tmp
);
479 WREG8(DAC_INDEX
, MGA1064_PIX_PLL_STAT
);
480 tmp
= RREG8(DAC_DATA
);
481 WREG8(DAC_DATA
, tmp
| 0x40);
483 tmp
= RREG8(MGAREG_MEM_MISC_READ
);
485 WREG8(MGAREG_MEM_MISC_WRITE
, tmp
);
487 WREG8(DAC_INDEX
, MGA1064_PIX_CLK_CTL
);
488 tmp
= RREG8(DAC_DATA
);
489 tmp
&= ~MGA1064_PIX_CLK_CTL_CLK_DIS
;
490 WREG8(DAC_DATA
, tmp
);
495 static int mga_g200eh_set_plls(struct mga_device
*mdev
, long clock
)
497 unsigned int vcomax
, vcomin
, pllreffreq
;
498 unsigned int delta
, tmpdelta
;
499 unsigned int testp
, testm
, testn
;
500 unsigned int p
, m
, n
;
501 unsigned int computed
;
502 int i
, j
, tmpcount
, vcount
;
504 bool pll_locked
= false;
508 if (mdev
->type
== G200_EH3
) {
517 for (testm
= 150; testm
>= 6; testm
--) {
518 if (clock
* testm
> vcomax
)
520 if (clock
* testm
< vcomin
)
522 for (testn
= 120; testn
>= 60; testn
--) {
523 computed
= (pllreffreq
* testn
) / testm
;
524 if (computed
> clock
)
525 tmpdelta
= computed
- clock
;
527 tmpdelta
= clock
- computed
;
528 if (tmpdelta
< delta
) {
548 for (testp
= 16; testp
> 0; testp
>>= 1) {
549 if (clock
* testp
> vcomax
)
551 if (clock
* testp
< vcomin
)
554 for (testm
= 1; testm
< 33; testm
++) {
555 for (testn
= 17; testn
< 257; testn
++) {
556 computed
= (pllreffreq
* testn
) /
558 if (computed
> clock
)
559 tmpdelta
= computed
- clock
;
561 tmpdelta
= clock
- computed
;
562 if (tmpdelta
< delta
) {
568 if ((clock
* testp
) >= 600000)
574 for (i
= 0; i
<= 32 && pll_locked
== false; i
++) {
575 WREG8(DAC_INDEX
, MGA1064_PIX_CLK_CTL
);
576 tmp
= RREG8(DAC_DATA
);
577 tmp
|= MGA1064_PIX_CLK_CTL_CLK_DIS
;
578 WREG8(DAC_DATA
, tmp
);
580 tmp
= RREG8(MGAREG_MEM_MISC_READ
);
582 WREG8(MGAREG_MEM_MISC_WRITE
, tmp
);
584 WREG8(DAC_INDEX
, MGA1064_PIX_CLK_CTL
);
585 tmp
= RREG8(DAC_DATA
);
586 tmp
|= MGA1064_PIX_CLK_CTL_CLK_POW_DOWN
;
587 WREG8(DAC_DATA
, tmp
);
591 WREG_DAC(MGA1064_EH_PIX_PLLC_M
, m
);
592 WREG_DAC(MGA1064_EH_PIX_PLLC_N
, n
);
593 WREG_DAC(MGA1064_EH_PIX_PLLC_P
, p
);
597 WREG8(DAC_INDEX
, MGA1064_PIX_CLK_CTL
);
598 tmp
= RREG8(DAC_DATA
);
599 tmp
&= ~MGA1064_PIX_CLK_CTL_SEL_MSK
;
600 tmp
|= MGA1064_PIX_CLK_CTL_SEL_PLL
;
601 WREG8(DAC_DATA
, tmp
);
603 WREG8(DAC_INDEX
, MGA1064_PIX_CLK_CTL
);
604 tmp
= RREG8(DAC_DATA
);
605 tmp
&= ~MGA1064_PIX_CLK_CTL_CLK_DIS
;
606 tmp
&= ~MGA1064_PIX_CLK_CTL_CLK_POW_DOWN
;
607 WREG8(DAC_DATA
, tmp
);
609 vcount
= RREG8(MGAREG_VCOUNT
);
611 for (j
= 0; j
< 30 && pll_locked
== false; j
++) {
612 tmpcount
= RREG8(MGAREG_VCOUNT
);
613 if (tmpcount
< vcount
)
615 if ((tmpcount
- vcount
) > 2)
625 static int mga_g200er_set_plls(struct mga_device
*mdev
, long clock
)
627 unsigned int vcomax
, vcomin
, pllreffreq
;
628 unsigned int delta
, tmpdelta
;
629 int testr
, testn
, testm
, testo
;
630 unsigned int p
, m
, n
;
631 unsigned int computed
, vco
;
633 const unsigned int m_div_val
[] = { 1, 2, 4, 8 };
642 for (testr
= 0; testr
< 4; testr
++) {
645 for (testn
= 5; testn
< 129; testn
++) {
648 for (testm
= 3; testm
>= 0; testm
--) {
651 for (testo
= 5; testo
< 33; testo
++) {
652 vco
= pllreffreq
* (testn
+ 1) /
658 computed
= vco
/ (m_div_val
[testm
] * (testo
+ 1));
659 if (computed
> clock
)
660 tmpdelta
= computed
- clock
;
662 tmpdelta
= clock
- computed
;
663 if (tmpdelta
< delta
) {
665 m
= testm
| (testo
<< 3);
667 p
= testr
| (testr
<< 3);
674 WREG8(DAC_INDEX
, MGA1064_PIX_CLK_CTL
);
675 tmp
= RREG8(DAC_DATA
);
676 tmp
|= MGA1064_PIX_CLK_CTL_CLK_DIS
;
677 WREG8(DAC_DATA
, tmp
);
679 WREG8(DAC_INDEX
, MGA1064_REMHEADCTL
);
680 tmp
= RREG8(DAC_DATA
);
681 tmp
|= MGA1064_REMHEADCTL_CLKDIS
;
682 WREG8(DAC_DATA
, tmp
);
684 tmp
= RREG8(MGAREG_MEM_MISC_READ
);
685 tmp
|= (0x3<<2) | 0xc0;
686 WREG8(MGAREG_MEM_MISC_WRITE
, tmp
);
688 WREG8(DAC_INDEX
, MGA1064_PIX_CLK_CTL
);
689 tmp
= RREG8(DAC_DATA
);
690 tmp
&= ~MGA1064_PIX_CLK_CTL_CLK_DIS
;
691 tmp
|= MGA1064_PIX_CLK_CTL_CLK_POW_DOWN
;
692 WREG8(DAC_DATA
, tmp
);
696 WREG_DAC(MGA1064_ER_PIX_PLLC_N
, n
);
697 WREG_DAC(MGA1064_ER_PIX_PLLC_M
, m
);
698 WREG_DAC(MGA1064_ER_PIX_PLLC_P
, p
);
705 static int mga_crtc_set_plls(struct mga_device
*mdev
, long clock
)
710 return mga_g200se_set_plls(mdev
, clock
);
714 return mga_g200wb_set_plls(mdev
, clock
);
717 return mga_g200ev_set_plls(mdev
, clock
);
721 return mga_g200eh_set_plls(mdev
, clock
);
724 return mga_g200er_set_plls(mdev
, clock
);
730 static void mga_g200wb_prepare(struct drm_crtc
*crtc
)
732 struct mga_device
*mdev
= crtc
->dev
->dev_private
;
736 /* 1- The first step is to warn the BMC of an upcoming mode change.
737 * We are putting the misc<0> to output.*/
739 WREG8(DAC_INDEX
, MGA1064_GEN_IO_CTL
);
740 tmp
= RREG8(DAC_DATA
);
742 WREG_DAC(MGA1064_GEN_IO_CTL
, tmp
);
744 /* we are putting a 1 on the misc<0> line */
745 WREG8(DAC_INDEX
, MGA1064_GEN_IO_DATA
);
746 tmp
= RREG8(DAC_DATA
);
748 WREG_DAC(MGA1064_GEN_IO_DATA
, tmp
);
750 /* 2- Second step to mask and further scan request
751 * This will be done by asserting the remfreqmsk bit (XSPAREREG<7>)
753 WREG8(DAC_INDEX
, MGA1064_SPAREREG
);
754 tmp
= RREG8(DAC_DATA
);
756 WREG_DAC(MGA1064_SPAREREG
, tmp
);
758 /* 3a- the third step is to verifu if there is an active scan
759 * We are searching for a 0 on remhsyncsts <XSPAREREG<0>)
762 while (!(tmp
& 0x1) && iter_max
) {
763 WREG8(DAC_INDEX
, MGA1064_SPAREREG
);
764 tmp
= RREG8(DAC_DATA
);
769 /* 3b- this step occurs only if the remove is actually scanning
770 * we are waiting for the end of the frame which is a 1 on
771 * remvsyncsts (XSPAREREG<1>)
775 while ((tmp
& 0x2) && iter_max
) {
776 WREG8(DAC_INDEX
, MGA1064_SPAREREG
);
777 tmp
= RREG8(DAC_DATA
);
784 static void mga_g200wb_commit(struct drm_crtc
*crtc
)
787 struct mga_device
*mdev
= crtc
->dev
->dev_private
;
789 /* 1- The first step is to ensure that the vrsten and hrsten are set */
790 WREG8(MGAREG_CRTCEXT_INDEX
, 1);
791 tmp
= RREG8(MGAREG_CRTCEXT_DATA
);
792 WREG8(MGAREG_CRTCEXT_DATA
, tmp
| 0x88);
794 /* 2- second step is to assert the rstlvl2 */
795 WREG8(DAC_INDEX
, MGA1064_REMHEADCTL2
);
796 tmp
= RREG8(DAC_DATA
);
798 WREG8(DAC_DATA
, tmp
);
803 /* 3- deassert rstlvl2 */
805 WREG8(DAC_INDEX
, MGA1064_REMHEADCTL2
);
806 WREG8(DAC_DATA
, tmp
);
808 /* 4- remove mask of scan request */
809 WREG8(DAC_INDEX
, MGA1064_SPAREREG
);
810 tmp
= RREG8(DAC_DATA
);
812 WREG8(DAC_DATA
, tmp
);
814 /* 5- put back a 0 on the misc<0> line */
815 WREG8(DAC_INDEX
, MGA1064_GEN_IO_DATA
);
816 tmp
= RREG8(DAC_DATA
);
818 WREG_DAC(MGA1064_GEN_IO_DATA
, tmp
);
822 This is how the framebuffer base address is stored in g200 cards:
823 * Assume @offset is the gpu_addr variable of the framebuffer object
824 * Then addr is the number of _pixels_ (not bytes) from the start of
825 VRAM to the first pixel we want to display. (divided by 2 for 32bit
827 * addr is stored in the CRTCEXT0, CRTCC and CRTCD registers
828 addr<20> -> CRTCEXT0<6>
829 addr<19-16> -> CRTCEXT0<3-0>
830 addr<15-8> -> CRTCC<7-0>
831 addr<7-0> -> CRTCD<7-0>
832 CRTCEXT0 has to be programmed last to trigger an update and make the
833 new addr variable take effect.
835 static void mga_set_start_address(struct drm_crtc
*crtc
, unsigned offset
)
837 struct mga_device
*mdev
= crtc
->dev
->dev_private
;
842 while (RREG8(0x1fda) & 0x08);
843 while (!(RREG8(0x1fda) & 0x08));
845 count
= RREG8(MGAREG_VCOUNT
) + 2;
846 while (RREG8(MGAREG_VCOUNT
) < count
);
848 WREG8(MGAREG_CRTCEXT_INDEX
, 0);
849 crtcext0
= RREG8(MGAREG_CRTCEXT_DATA
);
852 /* Can't store addresses any higher than that...
853 but we also don't have more than 16MB of memory, so it should be fine. */
854 WARN_ON(addr
> 0x1fffff);
855 crtcext0
|= (!!(addr
& (1<<20)))<<6;
856 WREG_CRT(0x0d, (u8
)(addr
& 0xff));
857 WREG_CRT(0x0c, (u8
)(addr
>> 8) & 0xff);
858 WREG_ECRT(0x0, ((u8
)(addr
>> 16) & 0xf) | crtcext0
);
862 /* ast is different - we will force move buffers out of VRAM */
863 static int mga_crtc_do_set_base(struct drm_crtc
*crtc
,
864 struct drm_framebuffer
*fb
,
865 int x
, int y
, int atomic
)
867 struct mga_device
*mdev
= crtc
->dev
->dev_private
;
868 struct drm_gem_object
*obj
;
869 struct mga_framebuffer
*mga_fb
;
870 struct mgag200_bo
*bo
;
874 /* push the previous fb to system ram */
876 mga_fb
= to_mga_framebuffer(fb
);
878 bo
= gem_to_mga_bo(obj
);
879 ret
= mgag200_bo_reserve(bo
, false);
882 mgag200_bo_push_sysram(bo
);
883 mgag200_bo_unreserve(bo
);
886 mga_fb
= to_mga_framebuffer(crtc
->primary
->fb
);
888 bo
= gem_to_mga_bo(obj
);
890 ret
= mgag200_bo_reserve(bo
, false);
894 ret
= mgag200_bo_pin(bo
, TTM_PL_FLAG_VRAM
, &gpu_addr
);
896 mgag200_bo_unreserve(bo
);
900 if (&mdev
->mfbdev
->mfb
== mga_fb
) {
901 /* if pushing console in kmap it */
902 ret
= ttm_bo_kmap(&bo
->bo
, 0, bo
->bo
.num_pages
, &bo
->kmap
);
904 DRM_ERROR("failed to kmap fbcon\n");
907 mgag200_bo_unreserve(bo
);
909 mga_set_start_address(crtc
, (u32
)gpu_addr
);
914 static int mga_crtc_mode_set_base(struct drm_crtc
*crtc
, int x
, int y
,
915 struct drm_framebuffer
*old_fb
)
917 return mga_crtc_do_set_base(crtc
, old_fb
, x
, y
, 0);
920 static int mga_crtc_mode_set(struct drm_crtc
*crtc
,
921 struct drm_display_mode
*mode
,
922 struct drm_display_mode
*adjusted_mode
,
923 int x
, int y
, struct drm_framebuffer
*old_fb
)
925 struct drm_device
*dev
= crtc
->dev
;
926 struct mga_device
*mdev
= dev
->dev_private
;
927 const struct drm_framebuffer
*fb
= crtc
->primary
->fb
;
928 int hdisplay
, hsyncstart
, hsyncend
, htotal
;
929 int vdisplay
, vsyncstart
, vsyncend
, vtotal
;
931 int option
= 0, option2
= 0;
933 unsigned char misc
= 0;
934 unsigned char ext_vga
[6];
937 static unsigned char dacvalue
[] = {
938 /* 0x00: */ 0, 0, 0, 0, 0, 0, 0x00, 0,
939 /* 0x08: */ 0, 0, 0, 0, 0, 0, 0, 0,
940 /* 0x10: */ 0, 0, 0, 0, 0, 0, 0, 0,
941 /* 0x18: */ 0x00, 0, 0xC9, 0xFF, 0xBF, 0x20, 0x1F, 0x20,
942 /* 0x20: */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
943 /* 0x28: */ 0x00, 0x00, 0x00, 0x00, 0, 0, 0, 0x40,
944 /* 0x30: */ 0x00, 0xB0, 0x00, 0xC2, 0x34, 0x14, 0x02, 0x83,
945 /* 0x38: */ 0x00, 0x93, 0x00, 0x77, 0x00, 0x00, 0x00, 0x3A,
946 /* 0x40: */ 0, 0, 0, 0, 0, 0, 0, 0,
947 /* 0x48: */ 0, 0, 0, 0, 0, 0, 0, 0
950 bppshift
= mdev
->bpp_shifts
[fb
->format
->cpp
[0] - 1];
952 switch (mdev
->type
) {
955 dacvalue
[MGA1064_VREF_CTL
] = 0x03;
956 dacvalue
[MGA1064_PIX_CLK_CTL
] = MGA1064_PIX_CLK_CTL_SEL_PLL
;
957 dacvalue
[MGA1064_MISC_CTL
] = MGA1064_MISC_CTL_DAC_EN
|
958 MGA1064_MISC_CTL_VGA8
|
959 MGA1064_MISC_CTL_DAC_RAM_CS
;
964 option2
= 0x00008000;
968 dacvalue
[MGA1064_VREF_CTL
] = 0x07;
970 option2
= 0x0000b000;
973 dacvalue
[MGA1064_PIX_CLK_CTL
] = MGA1064_PIX_CLK_CTL_SEL_PLL
;
974 dacvalue
[MGA1064_MISC_CTL
] = MGA1064_MISC_CTL_VGA8
|
975 MGA1064_MISC_CTL_DAC_RAM_CS
;
977 option2
= 0x0000b000;
981 dacvalue
[MGA1064_MISC_CTL
] = MGA1064_MISC_CTL_VGA8
|
982 MGA1064_MISC_CTL_DAC_RAM_CS
;
984 option2
= 0x0000b000;
990 switch (fb
->format
->cpp
[0] * 8) {
992 dacvalue
[MGA1064_MUL_CTL
] = MGA1064_MUL_CTL_8bits
;
995 if (fb
->format
->depth
== 15)
996 dacvalue
[MGA1064_MUL_CTL
] = MGA1064_MUL_CTL_15bits
;
998 dacvalue
[MGA1064_MUL_CTL
] = MGA1064_MUL_CTL_16bits
;
1001 dacvalue
[MGA1064_MUL_CTL
] = MGA1064_MUL_CTL_24bits
;
1004 dacvalue
[MGA1064_MUL_CTL
] = MGA1064_MUL_CTL_32_24bits
;
1008 if (mode
->flags
& DRM_MODE_FLAG_NHSYNC
)
1010 if (mode
->flags
& DRM_MODE_FLAG_NVSYNC
)
1014 for (i
= 0; i
< sizeof(dacvalue
); i
++) {
1018 ((i
>= 0x1f) && (i
<= 0x29)) ||
1019 ((i
>= 0x30) && (i
<= 0x37)))
1021 if (IS_G200_SE(mdev
) &&
1022 ((i
== 0x2c) || (i
== 0x2d) || (i
== 0x2e)))
1024 if ((mdev
->type
== G200_EV
||
1025 mdev
->type
== G200_WB
||
1026 mdev
->type
== G200_EH
||
1027 mdev
->type
== G200_EW3
||
1028 mdev
->type
== G200_EH3
) &&
1029 (i
>= 0x44) && (i
<= 0x4e))
1032 WREG_DAC(i
, dacvalue
[i
]);
1035 if (mdev
->type
== G200_ER
)
1039 pci_write_config_dword(dev
->pdev
, PCI_MGA_OPTION
, option
);
1041 pci_write_config_dword(dev
->pdev
, PCI_MGA_OPTION2
, option2
);
1047 pitch
= fb
->pitches
[0] / fb
->format
->cpp
[0];
1048 if (fb
->format
->cpp
[0] * 8 == 24)
1049 pitch
= (pitch
* 3) >> (4 - bppshift
);
1051 pitch
= pitch
>> (4 - bppshift
);
1053 hdisplay
= mode
->hdisplay
/ 8 - 1;
1054 hsyncstart
= mode
->hsync_start
/ 8 - 1;
1055 hsyncend
= mode
->hsync_end
/ 8 - 1;
1056 htotal
= mode
->htotal
/ 8 - 1;
1058 /* Work around hardware quirk */
1059 if ((htotal
& 0x07) == 0x06 || (htotal
& 0x07) == 0x04)
1062 vdisplay
= mode
->vdisplay
- 1;
1063 vsyncstart
= mode
->vsync_start
- 1;
1064 vsyncend
= mode
->vsync_end
- 1;
1065 vtotal
= mode
->vtotal
- 2;
1077 WREG_CRT(0, htotal
- 4);
1078 WREG_CRT(1, hdisplay
);
1079 WREG_CRT(2, hdisplay
);
1080 WREG_CRT(3, (htotal
& 0x1F) | 0x80);
1081 WREG_CRT(4, hsyncstart
);
1082 WREG_CRT(5, ((htotal
& 0x20) << 2) | (hsyncend
& 0x1F));
1083 WREG_CRT(6, vtotal
& 0xFF);
1084 WREG_CRT(7, ((vtotal
& 0x100) >> 8) |
1085 ((vdisplay
& 0x100) >> 7) |
1086 ((vsyncstart
& 0x100) >> 6) |
1087 ((vdisplay
& 0x100) >> 5) |
1088 ((vdisplay
& 0x100) >> 4) | /* linecomp */
1089 ((vtotal
& 0x200) >> 4)|
1090 ((vdisplay
& 0x200) >> 3) |
1091 ((vsyncstart
& 0x200) >> 2));
1092 WREG_CRT(9, ((vdisplay
& 0x200) >> 4) |
1093 ((vdisplay
& 0x200) >> 3));
1100 WREG_CRT(16, vsyncstart
& 0xFF);
1101 WREG_CRT(17, (vsyncend
& 0x0F) | 0x20);
1102 WREG_CRT(18, vdisplay
& 0xFF);
1103 WREG_CRT(19, pitch
& 0xFF);
1105 WREG_CRT(21, vdisplay
& 0xFF);
1106 WREG_CRT(22, (vtotal
+ 1) & 0xFF);
1108 WREG_CRT(24, vdisplay
& 0xFF);
1113 /* TODO interlace */
1115 ext_vga
[0] |= (pitch
& 0x300) >> 4;
1116 ext_vga
[1] = (((htotal
- 4) & 0x100) >> 8) |
1117 ((hdisplay
& 0x100) >> 7) |
1118 ((hsyncstart
& 0x100) >> 6) |
1120 ext_vga
[2] = ((vtotal
& 0xc00) >> 10) |
1121 ((vdisplay
& 0x400) >> 8) |
1122 ((vdisplay
& 0xc00) >> 7) |
1123 ((vsyncstart
& 0xc00) >> 5) |
1124 ((vdisplay
& 0x400) >> 3);
1125 if (fb
->format
->cpp
[0] * 8 == 24)
1126 ext_vga
[3] = (((1 << bppshift
) * 3) - 1) | 0x80;
1128 ext_vga
[3] = ((1 << bppshift
) - 1) | 0x80;
1130 if (mdev
->type
== G200_WB
|| mdev
->type
== G200_EW3
)
1133 /* Set pixel clocks */
1135 WREG8(MGA_MISC_OUT
, misc
);
1137 mga_crtc_set_plls(mdev
, mode
->clock
);
1139 for (i
= 0; i
< 6; i
++) {
1140 WREG_ECRT(i
, ext_vga
[i
]);
1143 if (mdev
->type
== G200_ER
)
1144 WREG_ECRT(0x24, 0x5);
1146 if (mdev
->type
== G200_EW3
)
1147 WREG_ECRT(0x34, 0x5);
1149 if (mdev
->type
== G200_EV
) {
1153 WREG_ECRT(0, ext_vga
[0]);
1154 /* Enable mga pixel clock */
1157 WREG8(MGA_MISC_OUT
, misc
);
1160 memcpy(&mdev
->mode
, mode
, sizeof(struct drm_display_mode
));
1162 mga_crtc_do_set_base(crtc
, old_fb
, x
, y
, 0);
1165 if (mdev
->type
== G200_ER
) {
1166 u32 mem_ctl
= RREG32(MGAREG_MEMCTL
);
1170 WREG8(MGAREG_SEQ_INDEX
, 0x01);
1171 seq1
= RREG8(MGAREG_SEQ_DATA
) | 0x20;
1172 WREG8(MGAREG_SEQ_DATA
, seq1
);
1174 WREG32(MGAREG_MEMCTL
, mem_ctl
| 0x00200000);
1176 WREG32(MGAREG_MEMCTL
, mem_ctl
& ~0x00200000);
1178 WREG8(MGAREG_SEQ_DATA
, seq1
& ~0x20);
1182 if (IS_G200_SE(mdev
)) {
1183 if (mdev
->unique_rev_id
>= 0x04) {
1184 WREG8(MGAREG_CRTCEXT_INDEX
, 0x06);
1185 WREG8(MGAREG_CRTCEXT_DATA
, 0);
1186 } else if (mdev
->unique_rev_id
>= 0x02) {
1191 if (fb
->format
->cpp
[0] * 8 > 16)
1193 else if (fb
->format
->cpp
[0] * 8 > 8)
1198 mb
= (mode
->clock
* bpp
) / 1000;
1212 WREG8(MGAREG_CRTCEXT_INDEX
, 0x06);
1213 WREG8(MGAREG_CRTCEXT_DATA
, hi_pri_lvl
);
1215 WREG8(MGAREG_CRTCEXT_INDEX
, 0x06);
1216 if (mdev
->unique_rev_id
>= 0x01)
1217 WREG8(MGAREG_CRTCEXT_DATA
, 0x03);
1219 WREG8(MGAREG_CRTCEXT_DATA
, 0x04);
1225 #if 0 /* code from mjg to attempt D3 on crtc dpms off - revisit later */
1226 static int mga_suspend(struct drm_crtc
*crtc
)
1228 struct mga_crtc
*mga_crtc
= to_mga_crtc(crtc
);
1229 struct drm_device
*dev
= crtc
->dev
;
1230 struct mga_device
*mdev
= dev
->dev_private
;
1231 struct pci_dev
*pdev
= dev
->pdev
;
1234 if (mdev
->suspended
)
1239 /* Disable the pixel clock */
1240 WREG_DAC(0x1a, 0x05);
1241 /* Power down the DAC */
1242 WREG_DAC(0x1e, 0x18);
1243 /* Power down the pixel PLL */
1244 WREG_DAC(0x1a, 0x0d);
1246 /* Disable PLLs and clocks */
1247 pci_read_config_dword(pdev
, PCI_MGA_OPTION
, &option
);
1248 option
&= ~(0x1F8024);
1249 pci_write_config_dword(pdev
, PCI_MGA_OPTION
, option
);
1250 pci_set_power_state(pdev
, PCI_D3hot
);
1251 pci_disable_device(pdev
);
1253 mdev
->suspended
= true;
1258 static int mga_resume(struct drm_crtc
*crtc
)
1260 struct mga_crtc
*mga_crtc
= to_mga_crtc(crtc
);
1261 struct drm_device
*dev
= crtc
->dev
;
1262 struct mga_device
*mdev
= dev
->dev_private
;
1263 struct pci_dev
*pdev
= dev
->pdev
;
1266 if (!mdev
->suspended
)
1269 pci_set_power_state(pdev
, PCI_D0
);
1270 pci_enable_device(pdev
);
1272 /* Disable sysclk */
1273 pci_read_config_dword(pdev
, PCI_MGA_OPTION
, &option
);
1275 pci_write_config_dword(pdev
, PCI_MGA_OPTION
, option
);
1277 mdev
->suspended
= false;
1284 static void mga_crtc_dpms(struct drm_crtc
*crtc
, int mode
)
1286 struct drm_device
*dev
= crtc
->dev
;
1287 struct mga_device
*mdev
= dev
->dev_private
;
1288 u8 seq1
= 0, crtcext1
= 0;
1291 case DRM_MODE_DPMS_ON
:
1294 mga_crtc_load_lut(crtc
);
1296 case DRM_MODE_DPMS_STANDBY
:
1300 case DRM_MODE_DPMS_SUSPEND
:
1304 case DRM_MODE_DPMS_OFF
:
1311 if (mode
== DRM_MODE_DPMS_OFF
) {
1315 WREG8(MGAREG_SEQ_INDEX
, 0x01);
1316 seq1
|= RREG8(MGAREG_SEQ_DATA
) & ~0x20;
1317 mga_wait_vsync(mdev
);
1318 mga_wait_busy(mdev
);
1319 WREG8(MGAREG_SEQ_DATA
, seq1
);
1321 WREG8(MGAREG_CRTCEXT_INDEX
, 0x01);
1322 crtcext1
|= RREG8(MGAREG_CRTCEXT_DATA
) & ~0x30;
1323 WREG8(MGAREG_CRTCEXT_DATA
, crtcext1
);
1326 if (mode
== DRM_MODE_DPMS_ON
&& mdev
->suspended
== true) {
1328 drm_helper_resume_force_mode(dev
);
1334 * This is called before a mode is programmed. A typical use might be to
1335 * enable DPMS during the programming to avoid seeing intermediate stages,
1336 * but that's not relevant to us
1338 static void mga_crtc_prepare(struct drm_crtc
*crtc
)
1340 struct drm_device
*dev
= crtc
->dev
;
1341 struct mga_device
*mdev
= dev
->dev_private
;
1344 /* mga_resume(crtc);*/
1346 WREG8(MGAREG_CRTC_INDEX
, 0x11);
1347 tmp
= RREG8(MGAREG_CRTC_DATA
);
1348 WREG_CRT(0x11, tmp
| 0x80);
1350 if (mdev
->type
== G200_SE_A
|| mdev
->type
== G200_SE_B
) {
1356 WREG8(MGAREG_SEQ_INDEX
, 0x1);
1357 tmp
= RREG8(MGAREG_SEQ_DATA
);
1359 /* start sync reset */
1361 WREG_SEQ(1, tmp
| 0x20);
1364 if (mdev
->type
== G200_WB
|| mdev
->type
== G200_EW3
)
1365 mga_g200wb_prepare(crtc
);
1371 * This is called after a mode is programmed. It should reverse anything done
1372 * by the prepare function
1374 static void mga_crtc_commit(struct drm_crtc
*crtc
)
1376 struct drm_device
*dev
= crtc
->dev
;
1377 struct mga_device
*mdev
= dev
->dev_private
;
1378 const struct drm_crtc_helper_funcs
*crtc_funcs
= crtc
->helper_private
;
1381 if (mdev
->type
== G200_WB
|| mdev
->type
== G200_EW3
)
1382 mga_g200wb_commit(crtc
);
1384 if (mdev
->type
== G200_SE_A
|| mdev
->type
== G200_SE_B
) {
1390 WREG8(MGAREG_SEQ_INDEX
, 0x1);
1391 tmp
= RREG8(MGAREG_SEQ_DATA
);
1397 crtc_funcs
->dpms(crtc
, DRM_MODE_DPMS_ON
);
1401 * The core can pass us a set of gamma values to program. We actually only
1402 * use this for 8-bit mode so can't perform smooth fades on deeper modes,
1403 * but it's a requirement that we provide the function
1405 static int mga_crtc_gamma_set(struct drm_crtc
*crtc
, u16
*red
, u16
*green
,
1406 u16
*blue
, uint32_t size
,
1407 struct drm_modeset_acquire_ctx
*ctx
)
1409 mga_crtc_load_lut(crtc
);
1414 /* Simple cleanup function */
1415 static void mga_crtc_destroy(struct drm_crtc
*crtc
)
1417 struct mga_crtc
*mga_crtc
= to_mga_crtc(crtc
);
1419 drm_crtc_cleanup(crtc
);
1423 static void mga_crtc_disable(struct drm_crtc
*crtc
)
1426 DRM_DEBUG_KMS("\n");
1427 mga_crtc_dpms(crtc
, DRM_MODE_DPMS_OFF
);
1428 if (crtc
->primary
->fb
) {
1429 struct mga_framebuffer
*mga_fb
= to_mga_framebuffer(crtc
->primary
->fb
);
1430 struct drm_gem_object
*obj
= mga_fb
->obj
;
1431 struct mgag200_bo
*bo
= gem_to_mga_bo(obj
);
1432 ret
= mgag200_bo_reserve(bo
, false);
1435 mgag200_bo_push_sysram(bo
);
1436 mgag200_bo_unreserve(bo
);
1438 crtc
->primary
->fb
= NULL
;
1441 /* These provide the minimum set of functions required to handle a CRTC */
1442 static const struct drm_crtc_funcs mga_crtc_funcs
= {
1443 .cursor_set
= mga_crtc_cursor_set
,
1444 .cursor_move
= mga_crtc_cursor_move
,
1445 .gamma_set
= mga_crtc_gamma_set
,
1446 .set_config
= drm_crtc_helper_set_config
,
1447 .destroy
= mga_crtc_destroy
,
1450 static const struct drm_crtc_helper_funcs mga_helper_funcs
= {
1451 .disable
= mga_crtc_disable
,
1452 .dpms
= mga_crtc_dpms
,
1453 .mode_set
= mga_crtc_mode_set
,
1454 .mode_set_base
= mga_crtc_mode_set_base
,
1455 .prepare
= mga_crtc_prepare
,
1456 .commit
= mga_crtc_commit
,
1460 static void mga_crtc_init(struct mga_device
*mdev
)
1462 struct mga_crtc
*mga_crtc
;
1464 mga_crtc
= kzalloc(sizeof(struct mga_crtc
) +
1465 (MGAG200FB_CONN_LIMIT
* sizeof(struct drm_connector
*)),
1468 if (mga_crtc
== NULL
)
1471 drm_crtc_init(mdev
->dev
, &mga_crtc
->base
, &mga_crtc_funcs
);
1473 drm_mode_crtc_set_gamma_size(&mga_crtc
->base
, MGAG200_LUT_SIZE
);
1474 mdev
->mode_info
.crtc
= mga_crtc
;
1476 drm_crtc_helper_add(&mga_crtc
->base
, &mga_helper_funcs
);
1480 * The encoder comes after the CRTC in the output pipeline, but before
1481 * the connector. It's responsible for ensuring that the digital
1482 * stream is appropriately converted into the output format. Setup is
1483 * very simple in this case - all we have to do is inform qemu of the
1484 * colour depth in order to ensure that it displays appropriately
1488 * These functions are analagous to those in the CRTC code, but are intended
1489 * to handle any encoder-specific limitations
1491 static void mga_encoder_mode_set(struct drm_encoder
*encoder
,
1492 struct drm_display_mode
*mode
,
1493 struct drm_display_mode
*adjusted_mode
)
1498 static void mga_encoder_dpms(struct drm_encoder
*encoder
, int state
)
1503 static void mga_encoder_prepare(struct drm_encoder
*encoder
)
1507 static void mga_encoder_commit(struct drm_encoder
*encoder
)
1511 static void mga_encoder_destroy(struct drm_encoder
*encoder
)
1513 struct mga_encoder
*mga_encoder
= to_mga_encoder(encoder
);
1514 drm_encoder_cleanup(encoder
);
1518 static const struct drm_encoder_helper_funcs mga_encoder_helper_funcs
= {
1519 .dpms
= mga_encoder_dpms
,
1520 .mode_set
= mga_encoder_mode_set
,
1521 .prepare
= mga_encoder_prepare
,
1522 .commit
= mga_encoder_commit
,
1525 static const struct drm_encoder_funcs mga_encoder_encoder_funcs
= {
1526 .destroy
= mga_encoder_destroy
,
1529 static struct drm_encoder
*mga_encoder_init(struct drm_device
*dev
)
1531 struct drm_encoder
*encoder
;
1532 struct mga_encoder
*mga_encoder
;
1534 mga_encoder
= kzalloc(sizeof(struct mga_encoder
), GFP_KERNEL
);
1538 encoder
= &mga_encoder
->base
;
1539 encoder
->possible_crtcs
= 0x1;
1541 drm_encoder_init(dev
, encoder
, &mga_encoder_encoder_funcs
,
1542 DRM_MODE_ENCODER_DAC
, NULL
);
1543 drm_encoder_helper_add(encoder
, &mga_encoder_helper_funcs
);
1549 static int mga_vga_get_modes(struct drm_connector
*connector
)
1551 struct mga_connector
*mga_connector
= to_mga_connector(connector
);
1555 edid
= drm_get_edid(connector
, &mga_connector
->i2c
->adapter
);
1557 drm_connector_update_edid_property(connector
, edid
);
1558 ret
= drm_add_edid_modes(connector
, edid
);
1564 static uint32_t mga_vga_calculate_mode_bandwidth(struct drm_display_mode
*mode
,
1567 uint32_t total_area
, divisor
;
1568 uint64_t active_area
, pixels_per_second
, bandwidth
;
1569 uint64_t bytes_per_pixel
= (bits_per_pixel
+ 7) / 8;
1573 if (!mode
->htotal
|| !mode
->vtotal
|| !mode
->clock
)
1576 active_area
= mode
->hdisplay
* mode
->vdisplay
;
1577 total_area
= mode
->htotal
* mode
->vtotal
;
1579 pixels_per_second
= active_area
* mode
->clock
* 1000;
1580 do_div(pixels_per_second
, total_area
);
1582 bandwidth
= pixels_per_second
* bytes_per_pixel
* 100;
1583 do_div(bandwidth
, divisor
);
1585 return (uint32_t)(bandwidth
);
1588 #define MODE_BANDWIDTH MODE_BAD
1590 static enum drm_mode_status
mga_vga_mode_valid(struct drm_connector
*connector
,
1591 struct drm_display_mode
*mode
)
1593 struct drm_device
*dev
= connector
->dev
;
1594 struct mga_device
*mdev
= (struct mga_device
*)dev
->dev_private
;
1597 if (IS_G200_SE(mdev
)) {
1598 if (mdev
->unique_rev_id
== 0x01) {
1599 if (mode
->hdisplay
> 1600)
1600 return MODE_VIRTUAL_X
;
1601 if (mode
->vdisplay
> 1200)
1602 return MODE_VIRTUAL_Y
;
1603 if (mga_vga_calculate_mode_bandwidth(mode
, bpp
)
1605 return MODE_BANDWIDTH
;
1606 } else if (mdev
->unique_rev_id
== 0x02) {
1607 if (mode
->hdisplay
> 1920)
1608 return MODE_VIRTUAL_X
;
1609 if (mode
->vdisplay
> 1200)
1610 return MODE_VIRTUAL_Y
;
1611 if (mga_vga_calculate_mode_bandwidth(mode
, bpp
)
1613 return MODE_BANDWIDTH
;
1615 if (mga_vga_calculate_mode_bandwidth(mode
, bpp
)
1617 return MODE_BANDWIDTH
;
1619 } else if (mdev
->type
== G200_WB
) {
1620 if (mode
->hdisplay
> 1280)
1621 return MODE_VIRTUAL_X
;
1622 if (mode
->vdisplay
> 1024)
1623 return MODE_VIRTUAL_Y
;
1624 if (mga_vga_calculate_mode_bandwidth(mode
, bpp
) >
1626 return MODE_BANDWIDTH
;
1627 } else if (mdev
->type
== G200_EV
&&
1628 (mga_vga_calculate_mode_bandwidth(mode
, bpp
)
1629 > (32700 * 1024))) {
1630 return MODE_BANDWIDTH
;
1631 } else if (mdev
->type
== G200_EH
&&
1632 (mga_vga_calculate_mode_bandwidth(mode
, bpp
)
1633 > (37500 * 1024))) {
1634 return MODE_BANDWIDTH
;
1635 } else if (mdev
->type
== G200_ER
&&
1636 (mga_vga_calculate_mode_bandwidth(mode
,
1637 bpp
) > (55000 * 1024))) {
1638 return MODE_BANDWIDTH
;
1641 if ((mode
->hdisplay
% 8) != 0 || (mode
->hsync_start
% 8) != 0 ||
1642 (mode
->hsync_end
% 8) != 0 || (mode
->htotal
% 8) != 0) {
1643 return MODE_H_ILLEGAL
;
1646 if (mode
->crtc_hdisplay
> 2048 || mode
->crtc_hsync_start
> 4096 ||
1647 mode
->crtc_hsync_end
> 4096 || mode
->crtc_htotal
> 4096 ||
1648 mode
->crtc_vdisplay
> 2048 || mode
->crtc_vsync_start
> 4096 ||
1649 mode
->crtc_vsync_end
> 4096 || mode
->crtc_vtotal
> 4096) {
1653 /* Validate the mode input by the user */
1654 if (connector
->cmdline_mode
.specified
) {
1655 if (connector
->cmdline_mode
.bpp_specified
)
1656 bpp
= connector
->cmdline_mode
.bpp
;
1659 if ((mode
->hdisplay
* mode
->vdisplay
* (bpp
/8)) > mdev
->mc
.vram_size
) {
1660 if (connector
->cmdline_mode
.specified
)
1661 connector
->cmdline_mode
.specified
= false;
1668 static struct drm_encoder
*mga_connector_best_encoder(struct drm_connector
1671 int enc_id
= connector
->encoder_ids
[0];
1672 /* pick the encoder ids */
1674 return drm_encoder_find(connector
->dev
, NULL
, enc_id
);
1678 static void mga_connector_destroy(struct drm_connector
*connector
)
1680 struct mga_connector
*mga_connector
= to_mga_connector(connector
);
1681 mgag200_i2c_destroy(mga_connector
->i2c
);
1682 drm_connector_cleanup(connector
);
1686 static const struct drm_connector_helper_funcs mga_vga_connector_helper_funcs
= {
1687 .get_modes
= mga_vga_get_modes
,
1688 .mode_valid
= mga_vga_mode_valid
,
1689 .best_encoder
= mga_connector_best_encoder
,
1692 static const struct drm_connector_funcs mga_vga_connector_funcs
= {
1693 .dpms
= drm_helper_connector_dpms
,
1694 .fill_modes
= drm_helper_probe_single_connector_modes
,
1695 .destroy
= mga_connector_destroy
,
1698 static struct drm_connector
*mga_vga_init(struct drm_device
*dev
)
1700 struct drm_connector
*connector
;
1701 struct mga_connector
*mga_connector
;
1703 mga_connector
= kzalloc(sizeof(struct mga_connector
), GFP_KERNEL
);
1707 connector
= &mga_connector
->base
;
1709 drm_connector_init(dev
, connector
,
1710 &mga_vga_connector_funcs
, DRM_MODE_CONNECTOR_VGA
);
1712 drm_connector_helper_add(connector
, &mga_vga_connector_helper_funcs
);
1714 drm_connector_register(connector
);
1716 mga_connector
->i2c
= mgag200_i2c_create(dev
);
1717 if (!mga_connector
->i2c
)
1718 DRM_ERROR("failed to add ddc bus\n");
1724 int mgag200_modeset_init(struct mga_device
*mdev
)
1726 struct drm_encoder
*encoder
;
1727 struct drm_connector
*connector
;
1730 mdev
->mode_info
.mode_config_initialized
= true;
1732 mdev
->dev
->mode_config
.max_width
= MGAG200_MAX_FB_WIDTH
;
1733 mdev
->dev
->mode_config
.max_height
= MGAG200_MAX_FB_HEIGHT
;
1735 mdev
->dev
->mode_config
.fb_base
= mdev
->mc
.vram_base
;
1737 mga_crtc_init(mdev
);
1739 encoder
= mga_encoder_init(mdev
->dev
);
1741 DRM_ERROR("mga_encoder_init failed\n");
1745 connector
= mga_vga_init(mdev
->dev
);
1747 DRM_ERROR("mga_vga_init failed\n");
1751 drm_connector_attach_encoder(connector
, encoder
);
1753 ret
= mgag200_fbdev_init(mdev
);
1755 DRM_ERROR("mga_fbdev_init failed\n");
1762 void mgag200_modeset_fini(struct mga_device
*mdev
)