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>
18 #include "drm_crtc_helper.h"
20 #include "mgag200_drv.h"
22 #define MGAG200_LUT_SIZE 256
25 * This file contains setup code for the CRTC.
28 static void mga_crtc_load_lut(struct drm_crtc
*crtc
)
30 struct mga_crtc
*mga_crtc
= to_mga_crtc(crtc
);
31 struct drm_device
*dev
= crtc
->dev
;
32 struct mga_device
*mdev
= dev
->dev_private
;
38 WREG8(DAC_INDEX
+ MGA1064_INDEX
, 0);
40 for (i
= 0; i
< MGAG200_LUT_SIZE
; i
++) {
42 WREG8(DAC_INDEX
+ MGA1064_COL_PAL
, mga_crtc
->lut_r
[i
]);
43 WREG8(DAC_INDEX
+ MGA1064_COL_PAL
, mga_crtc
->lut_g
[i
]);
44 WREG8(DAC_INDEX
+ MGA1064_COL_PAL
, mga_crtc
->lut_b
[i
]);
48 static inline void mga_wait_vsync(struct mga_device
*mdev
)
50 unsigned int count
= 0;
51 unsigned int status
= 0;
54 status
= RREG32(MGAREG_Status
);
56 } while ((status
& 0x08) && (count
< 250000));
60 status
= RREG32(MGAREG_Status
);
62 } while (!(status
& 0x08) && (count
< 250000));
65 static inline void mga_wait_busy(struct mga_device
*mdev
)
67 unsigned int count
= 0;
68 unsigned int status
= 0;
70 status
= RREG8(MGAREG_Status
+ 2);
72 } while ((status
& 0x01) && (count
< 500000));
76 * The core passes the desired mode to the CRTC code to see whether any
77 * CRTC-specific modifications need to be made to it. We're in a position
78 * to just pass that straight through, so this does nothing
80 static bool mga_crtc_mode_fixup(struct drm_crtc
*crtc
,
81 struct drm_display_mode
*mode
,
82 struct drm_display_mode
*adjusted_mode
)
87 static int mga_g200se_set_plls(struct mga_device
*mdev
, long clock
)
89 unsigned int vcomax
, vcomin
, pllreffreq
;
90 unsigned int delta
, tmpdelta
, permitteddelta
;
91 unsigned int testp
, testm
, testn
;
93 unsigned int computed
;
101 permitteddelta
= clock
* 5 / 1000;
103 for (testp
= 8; testp
> 0; testp
/= 2) {
104 if (clock
* testp
> vcomax
)
106 if (clock
* testp
< vcomin
)
109 for (testn
= 17; testn
< 256; testn
++) {
110 for (testm
= 1; testm
< 32; testm
++) {
111 computed
= (pllreffreq
* testn
) /
113 if (computed
> clock
)
114 tmpdelta
= computed
- clock
;
116 tmpdelta
= clock
- computed
;
117 if (tmpdelta
< delta
) {
127 if (delta
> permitteddelta
) {
128 printk(KERN_WARNING
"PLL delta too large\n");
132 WREG_DAC(MGA1064_PIX_PLLC_M
, m
);
133 WREG_DAC(MGA1064_PIX_PLLC_N
, n
);
134 WREG_DAC(MGA1064_PIX_PLLC_P
, p
);
138 static int mga_g200wb_set_plls(struct mga_device
*mdev
, long clock
)
140 unsigned int vcomax
, vcomin
, pllreffreq
;
141 unsigned int delta
, tmpdelta
, permitteddelta
;
142 unsigned int testp
, testm
, testn
;
143 unsigned int p
, m
, n
;
144 unsigned int computed
;
145 int i
, j
, tmpcount
, vcount
;
146 bool pll_locked
= false;
155 permitteddelta
= clock
* 5 / 1000;
157 for (testp
= 1; testp
< 9; testp
++) {
158 if (clock
* testp
> vcomax
)
160 if (clock
* testp
< vcomin
)
163 for (testm
= 1; testm
< 17; testm
++) {
164 for (testn
= 1; testn
< 151; testn
++) {
165 computed
= (pllreffreq
* testn
) /
167 if (computed
> clock
)
168 tmpdelta
= computed
- clock
;
170 tmpdelta
= clock
- computed
;
171 if (tmpdelta
< delta
) {
174 m
= (testm
- 1) | ((n
>> 1) & 0x80);
181 for (i
= 0; i
<= 32 && pll_locked
== false; i
++) {
183 WREG8(MGAREG_CRTC_INDEX
, 0x1e);
184 tmp
= RREG8(MGAREG_CRTC_DATA
);
186 WREG8(MGAREG_CRTC_DATA
, tmp
+1);
189 /* set pixclkdis to 1 */
190 WREG8(DAC_INDEX
, MGA1064_PIX_CLK_CTL
);
191 tmp
= RREG8(DAC_DATA
);
192 tmp
|= MGA1064_PIX_CLK_CTL_CLK_DIS
;
193 WREG_DAC(MGA1064_PIX_CLK_CTL_CLK_DIS
, tmp
);
195 WREG8(DAC_INDEX
, MGA1064_REMHEADCTL
);
196 tmp
= RREG8(DAC_DATA
);
197 tmp
|= MGA1064_REMHEADCTL_CLKDIS
;
198 WREG_DAC(MGA1064_REMHEADCTL
, tmp
);
200 /* select PLL Set C */
201 tmp
= RREG8(MGAREG_MEM_MISC_READ
);
203 WREG8(MGAREG_MEM_MISC_WRITE
, tmp
);
205 WREG8(DAC_INDEX
, MGA1064_PIX_CLK_CTL
);
206 tmp
= RREG8(DAC_DATA
);
207 tmp
|= MGA1064_PIX_CLK_CTL_CLK_POW_DOWN
| 0x80;
208 WREG_DAC(MGA1064_PIX_CLK_CTL
, tmp
);
213 WREG8(DAC_INDEX
, MGA1064_VREF_CTL
);
214 tmp
= RREG8(DAC_DATA
);
216 WREG_DAC(MGA1064_VREF_CTL
, tmp
);
220 /* program pixel pll register */
221 WREG_DAC(MGA1064_WB_PIX_PLLC_N
, n
);
222 WREG_DAC(MGA1064_WB_PIX_PLLC_M
, m
);
223 WREG_DAC(MGA1064_WB_PIX_PLLC_P
, p
);
228 WREG8(DAC_INDEX
, MGA1064_VREF_CTL
);
229 tmp
= RREG8(DAC_DATA
);
231 WREG_DAC(MGA1064_VREF_CTL
, tmp
);
235 /* select the pixel pll */
236 WREG8(DAC_INDEX
, MGA1064_PIX_CLK_CTL
);
237 tmp
= RREG8(DAC_DATA
);
238 tmp
&= ~MGA1064_PIX_CLK_CTL_SEL_MSK
;
239 tmp
|= MGA1064_PIX_CLK_CTL_SEL_PLL
;
240 WREG_DAC(MGA1064_PIX_CLK_CTL
, tmp
);
242 WREG8(DAC_INDEX
, MGA1064_REMHEADCTL
);
243 tmp
= RREG8(DAC_DATA
);
244 tmp
&= ~MGA1064_REMHEADCTL_CLKSL_MSK
;
245 tmp
|= MGA1064_REMHEADCTL_CLKSL_PLL
;
246 WREG_DAC(MGA1064_REMHEADCTL
, tmp
);
248 /* reset dotclock rate bit */
249 WREG8(MGAREG_SEQ_INDEX
, 1);
250 tmp
= RREG8(MGAREG_SEQ_DATA
);
252 WREG8(MGAREG_SEQ_DATA
, tmp
);
254 WREG8(DAC_INDEX
, MGA1064_PIX_CLK_CTL
);
255 tmp
= RREG8(DAC_DATA
);
256 tmp
&= ~MGA1064_PIX_CLK_CTL_CLK_DIS
;
257 WREG_DAC(MGA1064_PIX_CLK_CTL
, tmp
);
259 vcount
= RREG8(MGAREG_VCOUNT
);
261 for (j
= 0; j
< 30 && pll_locked
== false; j
++) {
262 tmpcount
= RREG8(MGAREG_VCOUNT
);
263 if (tmpcount
< vcount
)
265 if ((tmpcount
- vcount
) > 2)
271 WREG8(DAC_INDEX
, MGA1064_REMHEADCTL
);
272 tmp
= RREG8(DAC_DATA
);
273 tmp
&= ~MGA1064_REMHEADCTL_CLKDIS
;
274 WREG_DAC(MGA1064_REMHEADCTL
, tmp
);
278 static int mga_g200ev_set_plls(struct mga_device
*mdev
, long clock
)
280 unsigned int vcomax
, vcomin
, pllreffreq
;
281 unsigned int delta
, tmpdelta
, permitteddelta
;
282 unsigned int testp
, testm
, testn
;
283 unsigned int p
, m
, n
;
284 unsigned int computed
;
293 permitteddelta
= clock
* 5 / 1000;
295 for (testp
= 16; testp
> 0; testp
--) {
296 if (clock
* testp
> vcomax
)
298 if (clock
* testp
< vcomin
)
301 for (testn
= 1; testn
< 257; testn
++) {
302 for (testm
= 1; testm
< 17; testm
++) {
303 computed
= (pllreffreq
* testn
) /
305 if (computed
> clock
)
306 tmpdelta
= computed
- clock
;
308 tmpdelta
= clock
- computed
;
309 if (tmpdelta
< delta
) {
319 WREG8(DAC_INDEX
, MGA1064_PIX_CLK_CTL
);
320 tmp
= RREG8(DAC_DATA
);
321 tmp
|= MGA1064_PIX_CLK_CTL_CLK_DIS
;
322 WREG_DAC(MGA1064_PIX_CLK_CTL_CLK_DIS
, tmp
);
324 tmp
= RREG8(MGAREG_MEM_MISC_READ
);
326 WREG8(MGAREG_MEM_MISC_WRITE
, tmp
);
328 WREG8(DAC_INDEX
, MGA1064_PIX_PLL_STAT
);
329 tmp
= RREG8(DAC_DATA
);
330 WREG_DAC(MGA1064_PIX_PLL_STAT
, tmp
& ~0x40);
332 WREG8(DAC_INDEX
, MGA1064_PIX_CLK_CTL
);
333 tmp
= RREG8(DAC_DATA
);
334 tmp
|= MGA1064_PIX_CLK_CTL_CLK_POW_DOWN
;
335 WREG_DAC(MGA1064_PIX_CLK_CTL
, tmp
);
337 WREG_DAC(MGA1064_EV_PIX_PLLC_M
, m
);
338 WREG_DAC(MGA1064_EV_PIX_PLLC_N
, n
);
339 WREG_DAC(MGA1064_EV_PIX_PLLC_P
, p
);
343 WREG8(DAC_INDEX
, MGA1064_PIX_CLK_CTL
);
344 tmp
= RREG8(DAC_DATA
);
345 tmp
&= ~MGA1064_PIX_CLK_CTL_CLK_POW_DOWN
;
346 WREG_DAC(MGA1064_PIX_CLK_CTL
, tmp
);
350 WREG8(DAC_INDEX
, MGA1064_PIX_CLK_CTL
);
351 tmp
= RREG8(DAC_DATA
);
352 tmp
&= ~MGA1064_PIX_CLK_CTL_SEL_MSK
;
353 tmp
|= MGA1064_PIX_CLK_CTL_SEL_PLL
;
354 WREG_DAC(MGA1064_PIX_CLK_CTL
, tmp
);
356 WREG8(DAC_INDEX
, MGA1064_PIX_PLL_STAT
);
357 tmp
= RREG8(DAC_DATA
);
358 WREG_DAC(MGA1064_PIX_PLL_STAT
, tmp
| 0x40);
360 tmp
= RREG8(MGAREG_MEM_MISC_READ
);
362 WREG8(MGAREG_MEM_MISC_WRITE
, tmp
);
364 WREG8(DAC_INDEX
, MGA1064_PIX_CLK_CTL
);
365 tmp
= RREG8(DAC_DATA
);
366 tmp
&= ~MGA1064_PIX_CLK_CTL_CLK_DIS
;
367 WREG_DAC(MGA1064_PIX_CLK_CTL
, tmp
);
372 static int mga_g200eh_set_plls(struct mga_device
*mdev
, long clock
)
374 unsigned int vcomax
, vcomin
, pllreffreq
;
375 unsigned int delta
, tmpdelta
, permitteddelta
;
376 unsigned int testp
, testm
, testn
;
377 unsigned int p
, m
, n
;
378 unsigned int computed
;
379 int i
, j
, tmpcount
, vcount
;
381 bool pll_locked
= false;
389 permitteddelta
= clock
* 5 / 1000;
391 for (testp
= 16; testp
> 0; testp
--) {
392 if (clock
* testp
> vcomax
)
394 if (clock
* testp
< vcomin
)
397 for (testm
= 1; testm
< 33; testm
++) {
398 for (testn
= 1; testn
< 257; testn
++) {
399 computed
= (pllreffreq
* testn
) /
401 if (computed
> clock
)
402 tmpdelta
= computed
- clock
;
404 tmpdelta
= clock
- computed
;
405 if (tmpdelta
< delta
) {
408 m
= (testm
- 1) | ((n
>> 1) & 0x80);
411 if ((clock
* testp
) >= 600000)
416 for (i
= 0; i
<= 32 && pll_locked
== false; i
++) {
417 WREG8(DAC_INDEX
, MGA1064_PIX_CLK_CTL
);
418 tmp
= RREG8(DAC_DATA
);
419 tmp
|= MGA1064_PIX_CLK_CTL_CLK_DIS
;
420 WREG_DAC(MGA1064_PIX_CLK_CTL_CLK_DIS
, tmp
);
422 tmp
= RREG8(MGAREG_MEM_MISC_READ
);
424 WREG8(MGAREG_MEM_MISC_WRITE
, tmp
);
426 WREG8(DAC_INDEX
, MGA1064_PIX_CLK_CTL
);
427 tmp
= RREG8(DAC_DATA
);
428 tmp
|= MGA1064_PIX_CLK_CTL_CLK_POW_DOWN
;
429 WREG_DAC(MGA1064_PIX_CLK_CTL
, tmp
);
433 WREG_DAC(MGA1064_EH_PIX_PLLC_M
, m
);
434 WREG_DAC(MGA1064_EH_PIX_PLLC_N
, n
);
435 WREG_DAC(MGA1064_EH_PIX_PLLC_P
, p
);
439 WREG8(DAC_INDEX
, MGA1064_PIX_CLK_CTL
);
440 tmp
= RREG8(DAC_DATA
);
441 tmp
&= ~MGA1064_PIX_CLK_CTL_SEL_MSK
;
442 tmp
|= MGA1064_PIX_CLK_CTL_SEL_PLL
;
443 WREG_DAC(MGA1064_PIX_CLK_CTL
, tmp
);
445 WREG8(DAC_INDEX
, MGA1064_PIX_CLK_CTL
);
446 tmp
= RREG8(DAC_DATA
);
447 tmp
&= ~MGA1064_PIX_CLK_CTL_CLK_DIS
;
448 tmp
&= ~MGA1064_PIX_CLK_CTL_CLK_POW_DOWN
;
449 WREG_DAC(MGA1064_PIX_CLK_CTL
, tmp
);
451 vcount
= RREG8(MGAREG_VCOUNT
);
453 for (j
= 0; j
< 30 && pll_locked
== false; j
++) {
454 tmpcount
= RREG8(MGAREG_VCOUNT
);
455 if (tmpcount
< vcount
)
457 if ((tmpcount
- vcount
) > 2)
467 static int mga_g200er_set_plls(struct mga_device
*mdev
, long clock
)
469 unsigned int vcomax
, vcomin
, pllreffreq
;
470 unsigned int delta
, tmpdelta
;
471 unsigned int testr
, testn
, testm
, testo
;
472 unsigned int p
, m
, n
;
473 unsigned int computed
;
483 for (testr
= 0; testr
< 4; testr
++) {
486 for (testn
= 5; testn
< 129; testn
++) {
489 for (testm
= 3; testm
>= 0; testm
--) {
492 for (testo
= 5; testo
< 33; testo
++) {
493 computed
= pllreffreq
* (testn
+ 1) /
495 if (computed
< vcomin
)
497 if (computed
> vcomax
)
499 if (computed
> clock
)
500 tmpdelta
= computed
- clock
;
502 tmpdelta
= clock
- computed
;
503 if (tmpdelta
< delta
) {
505 m
= testm
| (testo
<< 3);
507 p
= testr
| (testr
<< 3);
514 WREG8(DAC_INDEX
, MGA1064_PIX_CLK_CTL
);
515 tmp
= RREG8(DAC_DATA
);
516 tmp
|= MGA1064_PIX_CLK_CTL_CLK_DIS
;
517 WREG_DAC(MGA1064_PIX_CLK_CTL_CLK_DIS
, tmp
);
519 WREG8(DAC_INDEX
, MGA1064_REMHEADCTL
);
520 tmp
= RREG8(DAC_DATA
);
521 tmp
|= MGA1064_REMHEADCTL_CLKDIS
;
522 WREG_DAC(MGA1064_REMHEADCTL
, tmp
);
524 tmp
= RREG8(MGAREG_MEM_MISC_READ
);
525 tmp
|= (0x3<<2) | 0xc0;
526 WREG8(MGAREG_MEM_MISC_WRITE
, tmp
);
528 WREG8(DAC_INDEX
, MGA1064_PIX_CLK_CTL
);
529 tmp
= RREG8(DAC_DATA
);
530 tmp
&= ~MGA1064_PIX_CLK_CTL_CLK_DIS
;
531 tmp
|= MGA1064_PIX_CLK_CTL_CLK_POW_DOWN
;
532 WREG_DAC(MGA1064_PIX_CLK_CTL
, tmp
);
536 WREG_DAC(MGA1064_ER_PIX_PLLC_N
, n
);
537 WREG_DAC(MGA1064_ER_PIX_PLLC_M
, m
);
538 WREG_DAC(MGA1064_ER_PIX_PLLC_P
, p
);
545 static int mga_crtc_set_plls(struct mga_device
*mdev
, long clock
)
550 return mga_g200se_set_plls(mdev
, clock
);
553 return mga_g200wb_set_plls(mdev
, clock
);
556 return mga_g200ev_set_plls(mdev
, clock
);
559 return mga_g200eh_set_plls(mdev
, clock
);
562 return mga_g200er_set_plls(mdev
, clock
);
568 static void mga_g200wb_prepare(struct drm_crtc
*crtc
)
570 struct mga_device
*mdev
= crtc
->dev
->dev_private
;
574 /* 1- The first step is to warn the BMC of an upcoming mode change.
575 * We are putting the misc<0> to output.*/
577 WREG8(DAC_INDEX
, MGA1064_GEN_IO_CTL
);
578 tmp
= RREG8(DAC_DATA
);
580 WREG_DAC(MGA1064_GEN_IO_CTL
, tmp
);
582 /* we are putting a 1 on the misc<0> line */
583 WREG8(DAC_INDEX
, MGA1064_GEN_IO_DATA
);
584 tmp
= RREG8(DAC_DATA
);
586 WREG_DAC(MGA1064_GEN_IO_DATA
, tmp
);
588 /* 2- Second step to mask and further scan request
589 * This will be done by asserting the remfreqmsk bit (XSPAREREG<7>)
591 WREG8(DAC_INDEX
, MGA1064_SPAREREG
);
592 tmp
= RREG8(DAC_DATA
);
594 WREG_DAC(MGA1064_SPAREREG
, tmp
);
596 /* 3a- the third step is to verifu if there is an active scan
597 * We are searching for a 0 on remhsyncsts <XSPAREREG<0>)
600 while (!(tmp
& 0x1) && iter_max
) {
601 WREG8(DAC_INDEX
, MGA1064_SPAREREG
);
602 tmp
= RREG8(DAC_DATA
);
607 /* 3b- this step occurs only if the remove is actually scanning
608 * we are waiting for the end of the frame which is a 1 on
609 * remvsyncsts (XSPAREREG<1>)
613 while ((tmp
& 0x2) && iter_max
) {
614 WREG8(DAC_INDEX
, MGA1064_SPAREREG
);
615 tmp
= RREG8(DAC_DATA
);
622 static void mga_g200wb_commit(struct drm_crtc
*crtc
)
625 struct mga_device
*mdev
= crtc
->dev
->dev_private
;
627 /* 1- The first step is to ensure that the vrsten and hrsten are set */
628 WREG8(MGAREG_CRTCEXT_INDEX
, 1);
629 tmp
= RREG8(MGAREG_CRTCEXT_DATA
);
630 WREG8(MGAREG_CRTCEXT_DATA
, tmp
| 0x88);
632 /* 2- second step is to assert the rstlvl2 */
633 WREG8(DAC_INDEX
, MGA1064_REMHEADCTL2
);
634 tmp
= RREG8(DAC_DATA
);
636 WREG8(DAC_DATA
, tmp
);
641 /* 3- deassert rstlvl2 */
643 WREG8(DAC_INDEX
, MGA1064_REMHEADCTL2
);
644 WREG8(DAC_DATA
, tmp
);
646 /* 4- remove mask of scan request */
647 WREG8(DAC_INDEX
, MGA1064_SPAREREG
);
648 tmp
= RREG8(DAC_DATA
);
650 WREG8(DAC_DATA
, tmp
);
652 /* 5- put back a 0 on the misc<0> line */
653 WREG8(DAC_INDEX
, MGA1064_GEN_IO_DATA
);
654 tmp
= RREG8(DAC_DATA
);
656 WREG_DAC(MGA1064_GEN_IO_DATA
, tmp
);
660 void mga_set_start_address(struct drm_crtc
*crtc
, unsigned offset
)
662 struct mga_device
*mdev
= crtc
->dev
->dev_private
;
666 while (RREG8(0x1fda) & 0x08);
667 while (!(RREG8(0x1fda) & 0x08));
669 count
= RREG8(MGAREG_VCOUNT
) + 2;
670 while (RREG8(MGAREG_VCOUNT
) < count
);
673 WREG_CRT(0x0d, (u8
)(addr
& 0xff));
674 WREG_CRT(0x0c, (u8
)(addr
>> 8) & 0xff);
675 WREG_CRT(0xaf, (u8
)(addr
>> 16) & 0xf);
679 /* ast is different - we will force move buffers out of VRAM */
680 static int mga_crtc_do_set_base(struct drm_crtc
*crtc
,
681 struct drm_framebuffer
*fb
,
682 int x
, int y
, int atomic
)
684 struct mga_device
*mdev
= crtc
->dev
->dev_private
;
685 struct drm_gem_object
*obj
;
686 struct mga_framebuffer
*mga_fb
;
687 struct mgag200_bo
*bo
;
691 /* push the previous fb to system ram */
693 mga_fb
= to_mga_framebuffer(fb
);
695 bo
= gem_to_mga_bo(obj
);
696 ret
= mgag200_bo_reserve(bo
, false);
699 mgag200_bo_push_sysram(bo
);
700 mgag200_bo_unreserve(bo
);
703 mga_fb
= to_mga_framebuffer(crtc
->fb
);
705 bo
= gem_to_mga_bo(obj
);
707 ret
= mgag200_bo_reserve(bo
, false);
711 ret
= mgag200_bo_pin(bo
, TTM_PL_FLAG_VRAM
, &gpu_addr
);
713 mgag200_bo_unreserve(bo
);
717 if (&mdev
->mfbdev
->mfb
== mga_fb
) {
718 /* if pushing console in kmap it */
719 ret
= ttm_bo_kmap(&bo
->bo
, 0, bo
->bo
.num_pages
, &bo
->kmap
);
721 DRM_ERROR("failed to kmap fbcon\n");
724 mgag200_bo_unreserve(bo
);
726 DRM_INFO("mga base %llx\n", gpu_addr
);
728 mga_set_start_address(crtc
, (u32
)gpu_addr
);
733 static int mga_crtc_mode_set_base(struct drm_crtc
*crtc
, int x
, int y
,
734 struct drm_framebuffer
*old_fb
)
736 return mga_crtc_do_set_base(crtc
, old_fb
, x
, y
, 0);
739 static int mga_crtc_mode_set(struct drm_crtc
*crtc
,
740 struct drm_display_mode
*mode
,
741 struct drm_display_mode
*adjusted_mode
,
742 int x
, int y
, struct drm_framebuffer
*old_fb
)
744 struct drm_device
*dev
= crtc
->dev
;
745 struct mga_device
*mdev
= dev
->dev_private
;
746 int hdisplay
, hsyncstart
, hsyncend
, htotal
;
747 int vdisplay
, vsyncstart
, vsyncend
, vtotal
;
749 int option
= 0, option2
= 0;
751 unsigned char misc
= 0;
752 unsigned char ext_vga
[6];
753 unsigned char ext_vga_index24
;
754 unsigned char dac_index90
= 0;
757 static unsigned char dacvalue
[] = {
758 /* 0x00: */ 0, 0, 0, 0, 0, 0, 0x00, 0,
759 /* 0x08: */ 0, 0, 0, 0, 0, 0, 0, 0,
760 /* 0x10: */ 0, 0, 0, 0, 0, 0, 0, 0,
761 /* 0x18: */ 0x00, 0, 0xC9, 0xFF, 0xBF, 0x20, 0x1F, 0x20,
762 /* 0x20: */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
763 /* 0x28: */ 0x00, 0x00, 0x00, 0x00, 0, 0, 0, 0x40,
764 /* 0x30: */ 0x00, 0xB0, 0x00, 0xC2, 0x34, 0x14, 0x02, 0x83,
765 /* 0x38: */ 0x00, 0x93, 0x00, 0x77, 0x00, 0x00, 0x00, 0x3A,
766 /* 0x40: */ 0, 0, 0, 0, 0, 0, 0, 0,
767 /* 0x48: */ 0, 0, 0, 0, 0, 0, 0, 0
770 bppshift
= mdev
->bpp_shifts
[(crtc
->fb
->bits_per_pixel
>> 3) - 1];
772 switch (mdev
->type
) {
775 dacvalue
[MGA1064_VREF_CTL
] = 0x03;
776 dacvalue
[MGA1064_PIX_CLK_CTL
] = MGA1064_PIX_CLK_CTL_SEL_PLL
;
777 dacvalue
[MGA1064_MISC_CTL
] = MGA1064_MISC_CTL_DAC_EN
|
778 MGA1064_MISC_CTL_VGA8
|
779 MGA1064_MISC_CTL_DAC_RAM_CS
;
784 option2
= 0x00008000;
787 dacvalue
[MGA1064_VREF_CTL
] = 0x07;
789 option2
= 0x0000b000;
792 dacvalue
[MGA1064_PIX_CLK_CTL
] = MGA1064_PIX_CLK_CTL_SEL_PLL
;
793 dacvalue
[MGA1064_MISC_CTL
] = MGA1064_MISC_CTL_VGA8
|
794 MGA1064_MISC_CTL_DAC_RAM_CS
;
796 option2
= 0x0000b000;
799 dacvalue
[MGA1064_MISC_CTL
] = MGA1064_MISC_CTL_VGA8
|
800 MGA1064_MISC_CTL_DAC_RAM_CS
;
802 option2
= 0x0000b000;
809 switch (crtc
->fb
->bits_per_pixel
) {
811 dacvalue
[MGA1064_MUL_CTL
] = MGA1064_MUL_CTL_8bits
;
814 if (crtc
->fb
->depth
== 15)
815 dacvalue
[MGA1064_MUL_CTL
] = MGA1064_MUL_CTL_15bits
;
817 dacvalue
[MGA1064_MUL_CTL
] = MGA1064_MUL_CTL_16bits
;
820 dacvalue
[MGA1064_MUL_CTL
] = MGA1064_MUL_CTL_24bits
;
823 dacvalue
[MGA1064_MUL_CTL
] = MGA1064_MUL_CTL_32_24bits
;
827 if (mode
->flags
& DRM_MODE_FLAG_NHSYNC
)
829 if (mode
->flags
& DRM_MODE_FLAG_NVSYNC
)
833 for (i
= 0; i
< sizeof(dacvalue
); i
++) {
838 ((i
>= 0x13) && (i
<= 0x17)) ||
841 ((i
>= 0x1f) && (i
<= 0x29)) ||
842 ((i
>= 0x30) && (i
<= 0x37)))
844 if (IS_G200_SE(mdev
) &&
845 ((i
== 0x2c) || (i
== 0x2d) || (i
== 0x2e)))
847 if ((mdev
->type
== G200_EV
|| mdev
->type
== G200_WB
|| mdev
->type
== G200_EH
) &&
848 (i
>= 0x44) && (i
<= 0x4e))
851 WREG_DAC(i
, dacvalue
[i
]);
854 if (mdev
->type
== G200_ER
) {
855 WREG_DAC(0x90, dac_index90
);
860 pci_write_config_dword(dev
->pdev
, PCI_MGA_OPTION
, option
);
862 pci_write_config_dword(dev
->pdev
, PCI_MGA_OPTION2
, option2
);
868 pitch
= crtc
->fb
->pitches
[0] / (crtc
->fb
->bits_per_pixel
/ 8);
869 if (crtc
->fb
->bits_per_pixel
== 24)
870 pitch
= pitch
>> (4 - bppshift
);
872 pitch
= pitch
>> (4 - bppshift
);
874 hdisplay
= mode
->hdisplay
/ 8 - 1;
875 hsyncstart
= mode
->hsync_start
/ 8 - 1;
876 hsyncend
= mode
->hsync_end
/ 8 - 1;
877 htotal
= mode
->htotal
/ 8 - 1;
879 /* Work around hardware quirk */
880 if ((htotal
& 0x07) == 0x06 || (htotal
& 0x07) == 0x04)
883 vdisplay
= mode
->vdisplay
- 1;
884 vsyncstart
= mode
->vsync_start
- 1;
885 vsyncend
= mode
->vsync_end
- 1;
886 vtotal
= mode
->vtotal
- 2;
898 WREG_CRT(0, htotal
- 4);
899 WREG_CRT(1, hdisplay
);
900 WREG_CRT(2, hdisplay
);
901 WREG_CRT(3, (htotal
& 0x1F) | 0x80);
902 WREG_CRT(4, hsyncstart
);
903 WREG_CRT(5, ((htotal
& 0x20) << 2) | (hsyncend
& 0x1F));
904 WREG_CRT(6, vtotal
& 0xFF);
905 WREG_CRT(7, ((vtotal
& 0x100) >> 8) |
906 ((vdisplay
& 0x100) >> 7) |
907 ((vsyncstart
& 0x100) >> 6) |
908 ((vdisplay
& 0x100) >> 5) |
909 ((vdisplay
& 0x100) >> 4) | /* linecomp */
910 ((vtotal
& 0x200) >> 4)|
911 ((vdisplay
& 0x200) >> 3) |
912 ((vsyncstart
& 0x200) >> 2));
913 WREG_CRT(9, ((vdisplay
& 0x200) >> 4) |
914 ((vdisplay
& 0x200) >> 3));
921 WREG_CRT(16, vsyncstart
& 0xFF);
922 WREG_CRT(17, (vsyncend
& 0x0F) | 0x20);
923 WREG_CRT(18, vdisplay
& 0xFF);
924 WREG_CRT(19, pitch
& 0xFF);
926 WREG_CRT(21, vdisplay
& 0xFF);
927 WREG_CRT(22, (vtotal
+ 1) & 0xFF);
929 WREG_CRT(24, vdisplay
& 0xFF);
936 ext_vga
[0] |= (pitch
& 0x300) >> 4;
937 ext_vga
[1] = (((htotal
- 4) & 0x100) >> 8) |
938 ((hdisplay
& 0x100) >> 7) |
939 ((hsyncstart
& 0x100) >> 6) |
941 ext_vga
[2] = ((vtotal
& 0xc00) >> 10) |
942 ((vdisplay
& 0x400) >> 8) |
943 ((vdisplay
& 0xc00) >> 7) |
944 ((vsyncstart
& 0xc00) >> 5) |
945 ((vdisplay
& 0x400) >> 3);
946 if (crtc
->fb
->bits_per_pixel
== 24)
947 ext_vga
[3] = (((1 << bppshift
) * 3) - 1) | 0x80;
949 ext_vga
[3] = ((1 << bppshift
) - 1) | 0x80;
951 if (mdev
->type
== G200_WB
)
954 ext_vga_index24
= 0x05;
956 /* Set pixel clocks */
958 WREG8(MGA_MISC_OUT
, misc
);
960 mga_crtc_set_plls(mdev
, mode
->clock
);
962 for (i
= 0; i
< 6; i
++) {
963 WREG_ECRT(i
, ext_vga
[i
]);
966 if (mdev
->type
== G200_ER
)
967 WREG_ECRT(24, ext_vga_index24
);
969 if (mdev
->type
== G200_EV
) {
973 WREG_ECRT(0, ext_vga
[0]);
974 /* Enable mga pixel clock */
977 WREG8(MGA_MISC_OUT
, misc
);
980 memcpy(&mdev
->mode
, mode
, sizeof(struct drm_display_mode
));
982 mga_crtc_do_set_base(crtc
, old_fb
, x
, y
, 0);
985 if (mdev
->type
== G200_ER
) {
986 u32 mem_ctl
= RREG32(MGAREG_MEMCTL
);
990 WREG8(MGAREG_SEQ_INDEX
, 0x01);
991 seq1
= RREG8(MGAREG_SEQ_DATA
) | 0x20;
992 WREG8(MGAREG_SEQ_DATA
, seq1
);
994 WREG32(MGAREG_MEMCTL
, mem_ctl
| 0x00200000);
996 WREG32(MGAREG_MEMCTL
, mem_ctl
& ~0x00200000);
998 WREG8(MGAREG_SEQ_DATA
, seq1
& ~0x20);
1002 if (IS_G200_SE(mdev
)) {
1003 if (mdev
->reg_1e24
>= 0x02) {
1008 if (crtc
->fb
->bits_per_pixel
> 16)
1010 else if (crtc
->fb
->bits_per_pixel
> 8)
1015 mb
= (mode
->clock
* bpp
) / 1000;
1029 WREG8(0x1fde, 0x06);
1030 WREG8(0x1fdf, hi_pri_lvl
);
1032 if (mdev
->reg_1e24
>= 0x01)
1033 WREG8(0x1fdf, 0x03);
1035 WREG8(0x1fdf, 0x04);
1041 #if 0 /* code from mjg to attempt D3 on crtc dpms off - revisit later */
1042 static int mga_suspend(struct drm_crtc
*crtc
)
1044 struct mga_crtc
*mga_crtc
= to_mga_crtc(crtc
);
1045 struct drm_device
*dev
= crtc
->dev
;
1046 struct mga_device
*mdev
= dev
->dev_private
;
1047 struct pci_dev
*pdev
= dev
->pdev
;
1050 if (mdev
->suspended
)
1055 /* Disable the pixel clock */
1056 WREG_DAC(0x1a, 0x05);
1057 /* Power down the DAC */
1058 WREG_DAC(0x1e, 0x18);
1059 /* Power down the pixel PLL */
1060 WREG_DAC(0x1a, 0x0d);
1062 /* Disable PLLs and clocks */
1063 pci_read_config_dword(pdev
, PCI_MGA_OPTION
, &option
);
1064 option
&= ~(0x1F8024);
1065 pci_write_config_dword(pdev
, PCI_MGA_OPTION
, option
);
1066 pci_set_power_state(pdev
, PCI_D3hot
);
1067 pci_disable_device(pdev
);
1069 mdev
->suspended
= true;
1074 static int mga_resume(struct drm_crtc
*crtc
)
1076 struct mga_crtc
*mga_crtc
= to_mga_crtc(crtc
);
1077 struct drm_device
*dev
= crtc
->dev
;
1078 struct mga_device
*mdev
= dev
->dev_private
;
1079 struct pci_dev
*pdev
= dev
->pdev
;
1082 if (!mdev
->suspended
)
1085 pci_set_power_state(pdev
, PCI_D0
);
1086 pci_enable_device(pdev
);
1088 /* Disable sysclk */
1089 pci_read_config_dword(pdev
, PCI_MGA_OPTION
, &option
);
1091 pci_write_config_dword(pdev
, PCI_MGA_OPTION
, option
);
1093 mdev
->suspended
= false;
1100 static void mga_crtc_dpms(struct drm_crtc
*crtc
, int mode
)
1102 struct drm_device
*dev
= crtc
->dev
;
1103 struct mga_device
*mdev
= dev
->dev_private
;
1104 u8 seq1
= 0, crtcext1
= 0;
1107 case DRM_MODE_DPMS_ON
:
1110 mga_crtc_load_lut(crtc
);
1112 case DRM_MODE_DPMS_STANDBY
:
1116 case DRM_MODE_DPMS_SUSPEND
:
1120 case DRM_MODE_DPMS_OFF
:
1127 if (mode
== DRM_MODE_DPMS_OFF
) {
1131 WREG8(MGAREG_SEQ_INDEX
, 0x01);
1132 seq1
|= RREG8(MGAREG_SEQ_DATA
) & ~0x20;
1133 mga_wait_vsync(mdev
);
1134 mga_wait_busy(mdev
);
1135 WREG8(MGAREG_SEQ_DATA
, seq1
);
1137 WREG8(MGAREG_CRTCEXT_INDEX
, 0x01);
1138 crtcext1
|= RREG8(MGAREG_CRTCEXT_DATA
) & ~0x30;
1139 WREG8(MGAREG_CRTCEXT_DATA
, crtcext1
);
1142 if (mode
== DRM_MODE_DPMS_ON
&& mdev
->suspended
== true) {
1144 drm_helper_resume_force_mode(dev
);
1150 * This is called before a mode is programmed. A typical use might be to
1151 * enable DPMS during the programming to avoid seeing intermediate stages,
1152 * but that's not relevant to us
1154 static void mga_crtc_prepare(struct drm_crtc
*crtc
)
1156 struct drm_device
*dev
= crtc
->dev
;
1157 struct mga_device
*mdev
= dev
->dev_private
;
1160 /* mga_resume(crtc);*/
1162 WREG8(MGAREG_CRTC_INDEX
, 0x11);
1163 tmp
= RREG8(MGAREG_CRTC_DATA
);
1164 WREG_CRT(0x11, tmp
| 0x80);
1166 if (mdev
->type
== G200_SE_A
|| mdev
->type
== G200_SE_B
) {
1172 WREG8(MGAREG_SEQ_INDEX
, 0x1);
1173 tmp
= RREG8(MGAREG_SEQ_DATA
);
1175 /* start sync reset */
1177 WREG_SEQ(1, tmp
| 0x20);
1180 if (mdev
->type
== G200_WB
)
1181 mga_g200wb_prepare(crtc
);
1187 * This is called after a mode is programmed. It should reverse anything done
1188 * by the prepare function
1190 static void mga_crtc_commit(struct drm_crtc
*crtc
)
1192 struct drm_device
*dev
= crtc
->dev
;
1193 struct mga_device
*mdev
= dev
->dev_private
;
1194 struct drm_crtc_helper_funcs
*crtc_funcs
= crtc
->helper_private
;
1197 if (mdev
->type
== G200_WB
)
1198 mga_g200wb_commit(crtc
);
1200 if (mdev
->type
== G200_SE_A
|| mdev
->type
== G200_SE_B
) {
1206 WREG8(MGAREG_SEQ_INDEX
, 0x1);
1207 tmp
= RREG8(MGAREG_SEQ_DATA
);
1213 crtc_funcs
->dpms(crtc
, DRM_MODE_DPMS_ON
);
1217 * The core can pass us a set of gamma values to program. We actually only
1218 * use this for 8-bit mode so can't perform smooth fades on deeper modes,
1219 * but it's a requirement that we provide the function
1221 static void mga_crtc_gamma_set(struct drm_crtc
*crtc
, u16
*red
, u16
*green
,
1222 u16
*blue
, uint32_t start
, uint32_t size
)
1224 struct mga_crtc
*mga_crtc
= to_mga_crtc(crtc
);
1225 int end
= (start
+ size
> MGAG200_LUT_SIZE
) ? MGAG200_LUT_SIZE
: start
+ size
;
1228 for (i
= start
; i
< end
; i
++) {
1229 mga_crtc
->lut_r
[i
] = red
[i
] >> 8;
1230 mga_crtc
->lut_g
[i
] = green
[i
] >> 8;
1231 mga_crtc
->lut_b
[i
] = blue
[i
] >> 8;
1233 mga_crtc_load_lut(crtc
);
1236 /* Simple cleanup function */
1237 static void mga_crtc_destroy(struct drm_crtc
*crtc
)
1239 struct mga_crtc
*mga_crtc
= to_mga_crtc(crtc
);
1241 drm_crtc_cleanup(crtc
);
1245 /* These provide the minimum set of functions required to handle a CRTC */
1246 static const struct drm_crtc_funcs mga_crtc_funcs
= {
1247 .gamma_set
= mga_crtc_gamma_set
,
1248 .set_config
= drm_crtc_helper_set_config
,
1249 .destroy
= mga_crtc_destroy
,
1252 static const struct drm_crtc_helper_funcs mga_helper_funcs
= {
1253 .dpms
= mga_crtc_dpms
,
1254 .mode_fixup
= mga_crtc_mode_fixup
,
1255 .mode_set
= mga_crtc_mode_set
,
1256 .mode_set_base
= mga_crtc_mode_set_base
,
1257 .prepare
= mga_crtc_prepare
,
1258 .commit
= mga_crtc_commit
,
1259 .load_lut
= mga_crtc_load_lut
,
1263 static void mga_crtc_init(struct drm_device
*dev
)
1265 struct mga_device
*mdev
= dev
->dev_private
;
1266 struct mga_crtc
*mga_crtc
;
1269 mga_crtc
= kzalloc(sizeof(struct mga_crtc
) +
1270 (MGAG200FB_CONN_LIMIT
* sizeof(struct drm_connector
*)),
1273 if (mga_crtc
== NULL
)
1276 drm_crtc_init(dev
, &mga_crtc
->base
, &mga_crtc_funcs
);
1278 drm_mode_crtc_set_gamma_size(&mga_crtc
->base
, MGAG200_LUT_SIZE
);
1279 mdev
->mode_info
.crtc
= mga_crtc
;
1281 for (i
= 0; i
< MGAG200_LUT_SIZE
; i
++) {
1282 mga_crtc
->lut_r
[i
] = i
;
1283 mga_crtc
->lut_g
[i
] = i
;
1284 mga_crtc
->lut_b
[i
] = i
;
1287 drm_crtc_helper_add(&mga_crtc
->base
, &mga_helper_funcs
);
1290 /** Sets the color ramps on behalf of fbcon */
1291 void mga_crtc_fb_gamma_set(struct drm_crtc
*crtc
, u16 red
, u16 green
,
1292 u16 blue
, int regno
)
1294 struct mga_crtc
*mga_crtc
= to_mga_crtc(crtc
);
1296 mga_crtc
->lut_r
[regno
] = red
>> 8;
1297 mga_crtc
->lut_g
[regno
] = green
>> 8;
1298 mga_crtc
->lut_b
[regno
] = blue
>> 8;
1301 /** Gets the color ramps on behalf of fbcon */
1302 void mga_crtc_fb_gamma_get(struct drm_crtc
*crtc
, u16
*red
, u16
*green
,
1303 u16
*blue
, int regno
)
1305 struct mga_crtc
*mga_crtc
= to_mga_crtc(crtc
);
1307 *red
= (u16
)mga_crtc
->lut_r
[regno
] << 8;
1308 *green
= (u16
)mga_crtc
->lut_g
[regno
] << 8;
1309 *blue
= (u16
)mga_crtc
->lut_b
[regno
] << 8;
1313 * The encoder comes after the CRTC in the output pipeline, but before
1314 * the connector. It's responsible for ensuring that the digital
1315 * stream is appropriately converted into the output format. Setup is
1316 * very simple in this case - all we have to do is inform qemu of the
1317 * colour depth in order to ensure that it displays appropriately
1321 * These functions are analagous to those in the CRTC code, but are intended
1322 * to handle any encoder-specific limitations
1324 static bool mga_encoder_mode_fixup(struct drm_encoder
*encoder
,
1325 struct drm_display_mode
*mode
,
1326 struct drm_display_mode
*adjusted_mode
)
1331 static void mga_encoder_mode_set(struct drm_encoder
*encoder
,
1332 struct drm_display_mode
*mode
,
1333 struct drm_display_mode
*adjusted_mode
)
1338 static void mga_encoder_dpms(struct drm_encoder
*encoder
, int state
)
1343 static void mga_encoder_prepare(struct drm_encoder
*encoder
)
1347 static void mga_encoder_commit(struct drm_encoder
*encoder
)
1351 void mga_encoder_destroy(struct drm_encoder
*encoder
)
1353 struct mga_encoder
*mga_encoder
= to_mga_encoder(encoder
);
1354 drm_encoder_cleanup(encoder
);
1358 static const struct drm_encoder_helper_funcs mga_encoder_helper_funcs
= {
1359 .dpms
= mga_encoder_dpms
,
1360 .mode_fixup
= mga_encoder_mode_fixup
,
1361 .mode_set
= mga_encoder_mode_set
,
1362 .prepare
= mga_encoder_prepare
,
1363 .commit
= mga_encoder_commit
,
1366 static const struct drm_encoder_funcs mga_encoder_encoder_funcs
= {
1367 .destroy
= mga_encoder_destroy
,
1370 static struct drm_encoder
*mga_encoder_init(struct drm_device
*dev
)
1372 struct drm_encoder
*encoder
;
1373 struct mga_encoder
*mga_encoder
;
1375 mga_encoder
= kzalloc(sizeof(struct mga_encoder
), GFP_KERNEL
);
1379 encoder
= &mga_encoder
->base
;
1380 encoder
->possible_crtcs
= 0x1;
1382 drm_encoder_init(dev
, encoder
, &mga_encoder_encoder_funcs
,
1383 DRM_MODE_ENCODER_DAC
);
1384 drm_encoder_helper_add(encoder
, &mga_encoder_helper_funcs
);
1390 static int mga_vga_get_modes(struct drm_connector
*connector
)
1392 struct mga_connector
*mga_connector
= to_mga_connector(connector
);
1396 edid
= drm_get_edid(connector
, &mga_connector
->i2c
->adapter
);
1398 drm_mode_connector_update_edid_property(connector
, edid
);
1399 ret
= drm_add_edid_modes(connector
, edid
);
1400 connector
->display_info
.raw_edid
= NULL
;
1406 static int mga_vga_mode_valid(struct drm_connector
*connector
,
1407 struct drm_display_mode
*mode
)
1409 /* FIXME: Add bandwidth and g200se limitations */
1411 if (mode
->crtc_hdisplay
> 2048 || mode
->crtc_hsync_start
> 4096 ||
1412 mode
->crtc_hsync_end
> 4096 || mode
->crtc_htotal
> 4096 ||
1413 mode
->crtc_vdisplay
> 2048 || mode
->crtc_vsync_start
> 4096 ||
1414 mode
->crtc_vsync_end
> 4096 || mode
->crtc_vtotal
> 4096) {
1421 struct drm_encoder
*mga_connector_best_encoder(struct drm_connector
1424 int enc_id
= connector
->encoder_ids
[0];
1425 struct drm_mode_object
*obj
;
1426 struct drm_encoder
*encoder
;
1428 /* pick the encoder ids */
1431 drm_mode_object_find(connector
->dev
, enc_id
,
1432 DRM_MODE_OBJECT_ENCODER
);
1435 encoder
= obj_to_encoder(obj
);
1441 static enum drm_connector_status
mga_vga_detect(struct drm_connector
1442 *connector
, bool force
)
1444 return connector_status_connected
;
1447 static void mga_connector_destroy(struct drm_connector
*connector
)
1449 struct mga_connector
*mga_connector
= to_mga_connector(connector
);
1450 mgag200_i2c_destroy(mga_connector
->i2c
);
1451 drm_connector_cleanup(connector
);
1455 struct drm_connector_helper_funcs mga_vga_connector_helper_funcs
= {
1456 .get_modes
= mga_vga_get_modes
,
1457 .mode_valid
= mga_vga_mode_valid
,
1458 .best_encoder
= mga_connector_best_encoder
,
1461 struct drm_connector_funcs mga_vga_connector_funcs
= {
1462 .dpms
= drm_helper_connector_dpms
,
1463 .detect
= mga_vga_detect
,
1464 .fill_modes
= drm_helper_probe_single_connector_modes
,
1465 .destroy
= mga_connector_destroy
,
1468 static struct drm_connector
*mga_vga_init(struct drm_device
*dev
)
1470 struct drm_connector
*connector
;
1471 struct mga_connector
*mga_connector
;
1473 mga_connector
= kzalloc(sizeof(struct mga_connector
), GFP_KERNEL
);
1477 connector
= &mga_connector
->base
;
1479 drm_connector_init(dev
, connector
,
1480 &mga_vga_connector_funcs
, DRM_MODE_CONNECTOR_VGA
);
1482 drm_connector_helper_add(connector
, &mga_vga_connector_helper_funcs
);
1484 mga_connector
->i2c
= mgag200_i2c_create(dev
);
1485 if (!mga_connector
->i2c
)
1486 DRM_ERROR("failed to add ddc bus\n");
1492 int mgag200_modeset_init(struct mga_device
*mdev
)
1494 struct drm_encoder
*encoder
;
1495 struct drm_connector
*connector
;
1498 mdev
->mode_info
.mode_config_initialized
= true;
1500 mdev
->dev
->mode_config
.max_width
= MGAG200_MAX_FB_WIDTH
;
1501 mdev
->dev
->mode_config
.max_height
= MGAG200_MAX_FB_HEIGHT
;
1503 mdev
->dev
->mode_config
.fb_base
= mdev
->mc
.vram_base
;
1505 mga_crtc_init(mdev
->dev
);
1507 encoder
= mga_encoder_init(mdev
->dev
);
1509 DRM_ERROR("mga_encoder_init failed\n");
1513 connector
= mga_vga_init(mdev
->dev
);
1515 DRM_ERROR("mga_vga_init failed\n");
1519 drm_mode_connector_attach_encoder(connector
, encoder
);
1521 ret
= mgag200_fbdev_init(mdev
);
1523 DRM_ERROR("mga_fbdev_init failed\n");
1530 void mgag200_modeset_fini(struct mga_device
*mdev
)