]> Pileus Git - ~andy/linux/blob - drivers/gpu/drm/mgag200/mgag200_mode.c
0326989a6aece626b2706f838398cb167c387eb2
[~andy/linux] / drivers / gpu / drm / mgag200 / mgag200_mode.c
1 /*
2  * Copyright 2010 Matt Turner.
3  * Copyright 2012 Red Hat
4  *
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.
8  *
9  * Authors: Matthew Garrett
10  *          Matt Turner
11  *          Dave Airlie
12  */
13
14 #include <linux/delay.h>
15
16 #include <drm/drmP.h>
17 #include <drm/drm_crtc_helper.h>
18
19 #include "mgag200_drv.h"
20
21 #define MGAG200_LUT_SIZE 256
22
23 /*
24  * This file contains setup code for the CRTC.
25  */
26
27 static void mga_crtc_load_lut(struct drm_crtc *crtc)
28 {
29         struct mga_crtc *mga_crtc = to_mga_crtc(crtc);
30         struct drm_device *dev = crtc->dev;
31         struct mga_device *mdev = dev->dev_private;
32         int i;
33
34         if (!crtc->enabled)
35                 return;
36
37         WREG8(DAC_INDEX + MGA1064_INDEX, 0);
38
39         for (i = 0; i < MGAG200_LUT_SIZE; i++) {
40                 /* VGA registers */
41                 WREG8(DAC_INDEX + MGA1064_COL_PAL, mga_crtc->lut_r[i]);
42                 WREG8(DAC_INDEX + MGA1064_COL_PAL, mga_crtc->lut_g[i]);
43                 WREG8(DAC_INDEX + MGA1064_COL_PAL, mga_crtc->lut_b[i]);
44         }
45 }
46
47 static inline void mga_wait_vsync(struct mga_device *mdev)
48 {
49         unsigned long timeout = jiffies + HZ/10;
50         unsigned int status = 0;
51
52         do {
53                 status = RREG32(MGAREG_Status);
54         } while ((status & 0x08) && time_before(jiffies, timeout));
55         timeout = jiffies + HZ/10;
56         status = 0;
57         do {
58                 status = RREG32(MGAREG_Status);
59         } while (!(status & 0x08) && time_before(jiffies, timeout));
60 }
61
62 static inline void mga_wait_busy(struct mga_device *mdev)
63 {
64         unsigned long timeout = jiffies + HZ;
65         unsigned int status = 0;
66         do {
67                 status = RREG8(MGAREG_Status + 2);
68         } while ((status & 0x01) && time_before(jiffies, timeout));
69 }
70
71 /*
72  * The core passes the desired mode to the CRTC code to see whether any
73  * CRTC-specific modifications need to be made to it. We're in a position
74  * to just pass that straight through, so this does nothing
75  */
76 static bool mga_crtc_mode_fixup(struct drm_crtc *crtc,
77                                 const struct drm_display_mode *mode,
78                                 struct drm_display_mode *adjusted_mode)
79 {
80         return true;
81 }
82
83 static int mga_g200se_set_plls(struct mga_device *mdev, long clock)
84 {
85         unsigned int vcomax, vcomin, pllreffreq;
86         unsigned int delta, tmpdelta, permitteddelta;
87         unsigned int testp, testm, testn;
88         unsigned int p, m, n;
89         unsigned int computed;
90
91         m = n = p = 0;
92         vcomax = 320000;
93         vcomin = 160000;
94         pllreffreq = 25000;
95
96         delta = 0xffffffff;
97         permitteddelta = clock * 5 / 1000;
98
99         for (testp = 8; testp > 0; testp /= 2) {
100                 if (clock * testp > vcomax)
101                         continue;
102                 if (clock * testp < vcomin)
103                         continue;
104
105                 for (testn = 17; testn < 256; testn++) {
106                         for (testm = 1; testm < 32; testm++) {
107                                 computed = (pllreffreq * testn) /
108                                         (testm * testp);
109                                 if (computed > clock)
110                                         tmpdelta = computed - clock;
111                                 else
112                                         tmpdelta = clock - computed;
113                                 if (tmpdelta < delta) {
114                                         delta = tmpdelta;
115                                         m = testm - 1;
116                                         n = testn - 1;
117                                         p = testp - 1;
118                                 }
119                         }
120                 }
121         }
122
123         if (delta > permitteddelta) {
124                 printk(KERN_WARNING "PLL delta too large\n");
125                 return 1;
126         }
127
128         WREG_DAC(MGA1064_PIX_PLLC_M, m);
129         WREG_DAC(MGA1064_PIX_PLLC_N, n);
130         WREG_DAC(MGA1064_PIX_PLLC_P, p);
131         return 0;
132 }
133
134 static int mga_g200wb_set_plls(struct mga_device *mdev, long clock)
135 {
136         unsigned int vcomax, vcomin, pllreffreq;
137         unsigned int delta, tmpdelta, permitteddelta;
138         unsigned int testp, testm, testn;
139         unsigned int p, m, n;
140         unsigned int computed;
141         int i, j, tmpcount, vcount;
142         bool pll_locked = false;
143         u8 tmp;
144
145         m = n = p = 0;
146         vcomax = 550000;
147         vcomin = 150000;
148         pllreffreq = 48000;
149
150         delta = 0xffffffff;
151         permitteddelta = clock * 5 / 1000;
152
153         for (testp = 1; testp < 9; testp++) {
154                 if (clock * testp > vcomax)
155                         continue;
156                 if (clock * testp < vcomin)
157                         continue;
158
159                 for (testm = 1; testm < 17; testm++) {
160                         for (testn = 1; testn < 151; testn++) {
161                                 computed = (pllreffreq * testn) /
162                                         (testm * testp);
163                                 if (computed > clock)
164                                         tmpdelta = computed - clock;
165                                 else
166                                         tmpdelta = clock - computed;
167                                 if (tmpdelta < delta) {
168                                         delta = tmpdelta;
169                                         n = testn - 1;
170                                         m = (testm - 1) | ((n >> 1) & 0x80);
171                                         p = testp - 1;
172                                 }
173                         }
174                 }
175         }
176
177         for (i = 0; i <= 32 && pll_locked == false; i++) {
178                 if (i > 0) {
179                         WREG8(MGAREG_CRTC_INDEX, 0x1e);
180                         tmp = RREG8(MGAREG_CRTC_DATA);
181                         if (tmp < 0xff)
182                                 WREG8(MGAREG_CRTC_DATA, tmp+1);
183                 }
184
185                 /* set pixclkdis to 1 */
186                 WREG8(DAC_INDEX, MGA1064_PIX_CLK_CTL);
187                 tmp = RREG8(DAC_DATA);
188                 tmp |= MGA1064_PIX_CLK_CTL_CLK_DIS;
189                 WREG8(DAC_DATA, tmp);
190
191                 WREG8(DAC_INDEX, MGA1064_REMHEADCTL);
192                 tmp = RREG8(DAC_DATA);
193                 tmp |= MGA1064_REMHEADCTL_CLKDIS;
194                 WREG8(DAC_DATA, tmp);
195
196                 /* select PLL Set C */
197                 tmp = RREG8(MGAREG_MEM_MISC_READ);
198                 tmp |= 0x3 << 2;
199                 WREG8(MGAREG_MEM_MISC_WRITE, tmp);
200
201                 WREG8(DAC_INDEX, MGA1064_PIX_CLK_CTL);
202                 tmp = RREG8(DAC_DATA);
203                 tmp |= MGA1064_PIX_CLK_CTL_CLK_POW_DOWN | 0x80;
204                 WREG8(DAC_DATA, tmp);
205
206                 udelay(500);
207
208                 /* reset the PLL */
209                 WREG8(DAC_INDEX, MGA1064_VREF_CTL);
210                 tmp = RREG8(DAC_DATA);
211                 tmp &= ~0x04;
212                 WREG8(DAC_DATA, tmp);
213
214                 udelay(50);
215
216                 /* program pixel pll register */
217                 WREG_DAC(MGA1064_WB_PIX_PLLC_N, n);
218                 WREG_DAC(MGA1064_WB_PIX_PLLC_M, m);
219                 WREG_DAC(MGA1064_WB_PIX_PLLC_P, p);
220
221                 udelay(50);
222
223                 /* turn pll on */
224                 WREG8(DAC_INDEX, MGA1064_VREF_CTL);
225                 tmp = RREG8(DAC_DATA);
226                 tmp |= 0x04;
227                 WREG_DAC(MGA1064_VREF_CTL, tmp);
228
229                 udelay(500);
230
231                 /* select the pixel pll */
232                 WREG8(DAC_INDEX, MGA1064_PIX_CLK_CTL);
233                 tmp = RREG8(DAC_DATA);
234                 tmp &= ~MGA1064_PIX_CLK_CTL_SEL_MSK;
235                 tmp |= MGA1064_PIX_CLK_CTL_SEL_PLL;
236                 WREG8(DAC_DATA, tmp);
237
238                 WREG8(DAC_INDEX, MGA1064_REMHEADCTL);
239                 tmp = RREG8(DAC_DATA);
240                 tmp &= ~MGA1064_REMHEADCTL_CLKSL_MSK;
241                 tmp |= MGA1064_REMHEADCTL_CLKSL_PLL;
242                 WREG8(DAC_DATA, tmp);
243
244                 /* reset dotclock rate bit */
245                 WREG8(MGAREG_SEQ_INDEX, 1);
246                 tmp = RREG8(MGAREG_SEQ_DATA);
247                 tmp &= ~0x8;
248                 WREG8(MGAREG_SEQ_DATA, tmp);
249
250                 WREG8(DAC_INDEX, MGA1064_PIX_CLK_CTL);
251                 tmp = RREG8(DAC_DATA);
252                 tmp &= ~MGA1064_PIX_CLK_CTL_CLK_DIS;
253                 WREG8(DAC_DATA, tmp);
254
255                 vcount = RREG8(MGAREG_VCOUNT);
256
257                 for (j = 0; j < 30 && pll_locked == false; j++) {
258                         tmpcount = RREG8(MGAREG_VCOUNT);
259                         if (tmpcount < vcount)
260                                 vcount = 0;
261                         if ((tmpcount - vcount) > 2)
262                                 pll_locked = true;
263                         else
264                                 udelay(5);
265                 }
266         }
267         WREG8(DAC_INDEX, MGA1064_REMHEADCTL);
268         tmp = RREG8(DAC_DATA);
269         tmp &= ~MGA1064_REMHEADCTL_CLKDIS;
270         WREG_DAC(MGA1064_REMHEADCTL, tmp);
271         return 0;
272 }
273
274 static int mga_g200ev_set_plls(struct mga_device *mdev, long clock)
275 {
276         unsigned int vcomax, vcomin, pllreffreq;
277         unsigned int delta, tmpdelta, permitteddelta;
278         unsigned int testp, testm, testn;
279         unsigned int p, m, n;
280         unsigned int computed;
281         u8 tmp;
282
283         m = n = p = 0;
284         vcomax = 550000;
285         vcomin = 150000;
286         pllreffreq = 50000;
287
288         delta = 0xffffffff;
289         permitteddelta = clock * 5 / 1000;
290
291         for (testp = 16; testp > 0; testp--) {
292                 if (clock * testp > vcomax)
293                         continue;
294                 if (clock * testp < vcomin)
295                         continue;
296
297                 for (testn = 1; testn < 257; testn++) {
298                         for (testm = 1; testm < 17; testm++) {
299                                 computed = (pllreffreq * testn) /
300                                         (testm * testp);
301                                 if (computed > clock)
302                                         tmpdelta = computed - clock;
303                                 else
304                                         tmpdelta = clock - computed;
305                                 if (tmpdelta < delta) {
306                                         delta = tmpdelta;
307                                         n = testn - 1;
308                                         m = testm - 1;
309                                         p = testp - 1;
310                                 }
311                         }
312                 }
313         }
314
315         WREG8(DAC_INDEX, MGA1064_PIX_CLK_CTL);
316         tmp = RREG8(DAC_DATA);
317         tmp |= MGA1064_PIX_CLK_CTL_CLK_DIS;
318         WREG8(DAC_DATA, tmp);
319
320         tmp = RREG8(MGAREG_MEM_MISC_READ);
321         tmp |= 0x3 << 2;
322         WREG8(MGAREG_MEM_MISC_WRITE, tmp);
323
324         WREG8(DAC_INDEX, MGA1064_PIX_PLL_STAT);
325         tmp = RREG8(DAC_DATA);
326         WREG8(DAC_DATA, tmp & ~0x40);
327
328         WREG8(DAC_INDEX, MGA1064_PIX_CLK_CTL);
329         tmp = RREG8(DAC_DATA);
330         tmp |= MGA1064_PIX_CLK_CTL_CLK_POW_DOWN;
331         WREG8(DAC_DATA, tmp);
332
333         WREG_DAC(MGA1064_EV_PIX_PLLC_M, m);
334         WREG_DAC(MGA1064_EV_PIX_PLLC_N, n);
335         WREG_DAC(MGA1064_EV_PIX_PLLC_P, p);
336
337         udelay(50);
338
339         WREG8(DAC_INDEX, MGA1064_PIX_CLK_CTL);
340         tmp = RREG8(DAC_DATA);
341         tmp &= ~MGA1064_PIX_CLK_CTL_CLK_POW_DOWN;
342         WREG8(DAC_DATA, tmp);
343
344         udelay(500);
345
346         WREG8(DAC_INDEX, MGA1064_PIX_CLK_CTL);
347         tmp = RREG8(DAC_DATA);
348         tmp &= ~MGA1064_PIX_CLK_CTL_SEL_MSK;
349         tmp |= MGA1064_PIX_CLK_CTL_SEL_PLL;
350         WREG8(DAC_DATA, tmp);
351
352         WREG8(DAC_INDEX, MGA1064_PIX_PLL_STAT);
353         tmp = RREG8(DAC_DATA);
354         WREG8(DAC_DATA, tmp | 0x40);
355
356         tmp = RREG8(MGAREG_MEM_MISC_READ);
357         tmp |= (0x3 << 2);
358         WREG8(MGAREG_MEM_MISC_WRITE, tmp);
359
360         WREG8(DAC_INDEX, MGA1064_PIX_CLK_CTL);
361         tmp = RREG8(DAC_DATA);
362         tmp &= ~MGA1064_PIX_CLK_CTL_CLK_DIS;
363         WREG8(DAC_DATA, tmp);
364
365         return 0;
366 }
367
368 static int mga_g200eh_set_plls(struct mga_device *mdev, long clock)
369 {
370         unsigned int vcomax, vcomin, pllreffreq;
371         unsigned int delta, tmpdelta, permitteddelta;
372         unsigned int testp, testm, testn;
373         unsigned int p, m, n;
374         unsigned int computed;
375         int i, j, tmpcount, vcount;
376         u8 tmp;
377         bool pll_locked = false;
378
379         m = n = p = 0;
380         vcomax = 800000;
381         vcomin = 400000;
382         pllreffreq = 33333;
383
384         delta = 0xffffffff;
385         permitteddelta = clock * 5 / 1000;
386
387         for (testp = 16; testp > 0; testp >>= 1) {
388                 if (clock * testp > vcomax)
389                         continue;
390                 if (clock * testp < vcomin)
391                         continue;
392
393                 for (testm = 1; testm < 33; testm++) {
394                         for (testn = 17; testn < 257; testn++) {
395                                 computed = (pllreffreq * testn) /
396                                         (testm * testp);
397                                 if (computed > clock)
398                                         tmpdelta = computed - clock;
399                                 else
400                                         tmpdelta = clock - computed;
401                                 if (tmpdelta < delta) {
402                                         delta = tmpdelta;
403                                         n = testn - 1;
404                                         m = (testm - 1);
405                                         p = testp - 1;
406                                 }
407                                 if ((clock * testp) >= 600000)
408                                         p |= 0x80;
409                         }
410                 }
411         }
412         for (i = 0; i <= 32 && pll_locked == false; i++) {
413                 WREG8(DAC_INDEX, MGA1064_PIX_CLK_CTL);
414                 tmp = RREG8(DAC_DATA);
415                 tmp |= MGA1064_PIX_CLK_CTL_CLK_DIS;
416                 WREG8(DAC_DATA, tmp);
417
418                 tmp = RREG8(MGAREG_MEM_MISC_READ);
419                 tmp |= 0x3 << 2;
420                 WREG8(MGAREG_MEM_MISC_WRITE, tmp);
421
422                 WREG8(DAC_INDEX, MGA1064_PIX_CLK_CTL);
423                 tmp = RREG8(DAC_DATA);
424                 tmp |= MGA1064_PIX_CLK_CTL_CLK_POW_DOWN;
425                 WREG8(DAC_DATA, tmp);
426
427                 udelay(500);
428
429                 WREG_DAC(MGA1064_EH_PIX_PLLC_M, m);
430                 WREG_DAC(MGA1064_EH_PIX_PLLC_N, n);
431                 WREG_DAC(MGA1064_EH_PIX_PLLC_P, p);
432
433                 udelay(500);
434
435                 WREG8(DAC_INDEX, MGA1064_PIX_CLK_CTL);
436                 tmp = RREG8(DAC_DATA);
437                 tmp &= ~MGA1064_PIX_CLK_CTL_SEL_MSK;
438                 tmp |= MGA1064_PIX_CLK_CTL_SEL_PLL;
439                 WREG8(DAC_DATA, tmp);
440
441                 WREG8(DAC_INDEX, MGA1064_PIX_CLK_CTL);
442                 tmp = RREG8(DAC_DATA);
443                 tmp &= ~MGA1064_PIX_CLK_CTL_CLK_DIS;
444                 tmp &= ~MGA1064_PIX_CLK_CTL_CLK_POW_DOWN;
445                 WREG8(DAC_DATA, tmp);
446
447                 vcount = RREG8(MGAREG_VCOUNT);
448
449                 for (j = 0; j < 30 && pll_locked == false; j++) {
450                         tmpcount = RREG8(MGAREG_VCOUNT);
451                         if (tmpcount < vcount)
452                                 vcount = 0;
453                         if ((tmpcount - vcount) > 2)
454                                 pll_locked = true;
455                         else
456                                 udelay(5);
457                 }
458         }
459
460         return 0;
461 }
462
463 static int mga_g200er_set_plls(struct mga_device *mdev, long clock)
464 {
465         unsigned int vcomax, vcomin, pllreffreq;
466         unsigned int delta, tmpdelta;
467         int testr, testn, testm, testo;
468         unsigned int p, m, n;
469         unsigned int computed, vco;
470         int tmp;
471         const unsigned int m_div_val[] = { 1, 2, 4, 8 };
472
473         m = n = p = 0;
474         vcomax = 1488000;
475         vcomin = 1056000;
476         pllreffreq = 48000;
477
478         delta = 0xffffffff;
479
480         for (testr = 0; testr < 4; testr++) {
481                 if (delta == 0)
482                         break;
483                 for (testn = 5; testn < 129; testn++) {
484                         if (delta == 0)
485                                 break;
486                         for (testm = 3; testm >= 0; testm--) {
487                                 if (delta == 0)
488                                         break;
489                                 for (testo = 5; testo < 33; testo++) {
490                                         vco = pllreffreq * (testn + 1) /
491                                                 (testr + 1);
492                                         if (vco < vcomin)
493                                                 continue;
494                                         if (vco > vcomax)
495                                                 continue;
496                                         computed = vco / (m_div_val[testm] * (testo + 1));
497                                         if (computed > clock)
498                                                 tmpdelta = computed - clock;
499                                         else
500                                                 tmpdelta = clock - computed;
501                                         if (tmpdelta < delta) {
502                                                 delta = tmpdelta;
503                                                 m = testm | (testo << 3);
504                                                 n = testn;
505                                                 p = testr | (testr << 3);
506                                         }
507                                 }
508                         }
509                 }
510         }
511
512         WREG8(DAC_INDEX, MGA1064_PIX_CLK_CTL);
513         tmp = RREG8(DAC_DATA);
514         tmp |= MGA1064_PIX_CLK_CTL_CLK_DIS;
515         WREG8(DAC_DATA, tmp);
516
517         WREG8(DAC_INDEX, MGA1064_REMHEADCTL);
518         tmp = RREG8(DAC_DATA);
519         tmp |= MGA1064_REMHEADCTL_CLKDIS;
520         WREG8(DAC_DATA, tmp);
521
522         tmp = RREG8(MGAREG_MEM_MISC_READ);
523         tmp |= (0x3<<2) | 0xc0;
524         WREG8(MGAREG_MEM_MISC_WRITE, tmp);
525
526         WREG8(DAC_INDEX, MGA1064_PIX_CLK_CTL);
527         tmp = RREG8(DAC_DATA);
528         tmp &= ~MGA1064_PIX_CLK_CTL_CLK_DIS;
529         tmp |= MGA1064_PIX_CLK_CTL_CLK_POW_DOWN;
530         WREG8(DAC_DATA, tmp);
531
532         udelay(500);
533
534         WREG_DAC(MGA1064_ER_PIX_PLLC_N, n);
535         WREG_DAC(MGA1064_ER_PIX_PLLC_M, m);
536         WREG_DAC(MGA1064_ER_PIX_PLLC_P, p);
537
538         udelay(50);
539
540         return 0;
541 }
542
543 static int mga_crtc_set_plls(struct mga_device *mdev, long clock)
544 {
545         switch(mdev->type) {
546         case G200_SE_A:
547         case G200_SE_B:
548                 return mga_g200se_set_plls(mdev, clock);
549                 break;
550         case G200_WB:
551                 return mga_g200wb_set_plls(mdev, clock);
552                 break;
553         case G200_EV:
554                 return mga_g200ev_set_plls(mdev, clock);
555                 break;
556         case G200_EH:
557                 return mga_g200eh_set_plls(mdev, clock);
558                 break;
559         case G200_ER:
560                 return mga_g200er_set_plls(mdev, clock);
561                 break;
562         }
563         return 0;
564 }
565
566 static void mga_g200wb_prepare(struct drm_crtc *crtc)
567 {
568         struct mga_device *mdev = crtc->dev->dev_private;
569         u8 tmp;
570         int iter_max;
571
572         /* 1- The first step is to warn the BMC of an upcoming mode change.
573          * We are putting the misc<0> to output.*/
574
575         WREG8(DAC_INDEX, MGA1064_GEN_IO_CTL);
576         tmp = RREG8(DAC_DATA);
577         tmp |= 0x10;
578         WREG_DAC(MGA1064_GEN_IO_CTL, tmp);
579
580         /* we are putting a 1 on the misc<0> line */
581         WREG8(DAC_INDEX, MGA1064_GEN_IO_DATA);
582         tmp = RREG8(DAC_DATA);
583         tmp |= 0x10;
584         WREG_DAC(MGA1064_GEN_IO_DATA, tmp);
585
586         /* 2- Second step to mask and further scan request
587          * This will be done by asserting the remfreqmsk bit (XSPAREREG<7>)
588          */
589         WREG8(DAC_INDEX, MGA1064_SPAREREG);
590         tmp = RREG8(DAC_DATA);
591         tmp |= 0x80;
592         WREG_DAC(MGA1064_SPAREREG, tmp);
593
594         /* 3a- the third step is to verifu if there is an active scan
595          * We are searching for a 0 on remhsyncsts <XSPAREREG<0>)
596          */
597         iter_max = 300;
598         while (!(tmp & 0x1) && iter_max) {
599                 WREG8(DAC_INDEX, MGA1064_SPAREREG);
600                 tmp = RREG8(DAC_DATA);
601                 udelay(1000);
602                 iter_max--;
603         }
604
605         /* 3b- this step occurs only if the remove is actually scanning
606          * we are waiting for the end of the frame which is a 1 on
607          * remvsyncsts (XSPAREREG<1>)
608          */
609         if (iter_max) {
610                 iter_max = 300;
611                 while ((tmp & 0x2) && iter_max) {
612                         WREG8(DAC_INDEX, MGA1064_SPAREREG);
613                         tmp = RREG8(DAC_DATA);
614                         udelay(1000);
615                         iter_max--;
616                 }
617         }
618 }
619
620 static void mga_g200wb_commit(struct drm_crtc *crtc)
621 {
622         u8 tmp;
623         struct mga_device *mdev = crtc->dev->dev_private;
624
625         /* 1- The first step is to ensure that the vrsten and hrsten are set */
626         WREG8(MGAREG_CRTCEXT_INDEX, 1);
627         tmp = RREG8(MGAREG_CRTCEXT_DATA);
628         WREG8(MGAREG_CRTCEXT_DATA, tmp | 0x88);
629
630         /* 2- second step is to assert the rstlvl2 */
631         WREG8(DAC_INDEX, MGA1064_REMHEADCTL2);
632         tmp = RREG8(DAC_DATA);
633         tmp |= 0x8;
634         WREG8(DAC_DATA, tmp);
635
636         /* wait 10 us */
637         udelay(10);
638
639         /* 3- deassert rstlvl2 */
640         tmp &= ~0x08;
641         WREG8(DAC_INDEX, MGA1064_REMHEADCTL2);
642         WREG8(DAC_DATA, tmp);
643
644         /* 4- remove mask of scan request */
645         WREG8(DAC_INDEX, MGA1064_SPAREREG);
646         tmp = RREG8(DAC_DATA);
647         tmp &= ~0x80;
648         WREG8(DAC_DATA, tmp);
649
650         /* 5- put back a 0 on the misc<0> line */
651         WREG8(DAC_INDEX, MGA1064_GEN_IO_DATA);
652         tmp = RREG8(DAC_DATA);
653         tmp &= ~0x10;
654         WREG_DAC(MGA1064_GEN_IO_DATA, tmp);
655 }
656
657
658 void mga_set_start_address(struct drm_crtc *crtc, unsigned offset)
659 {
660         struct mga_device *mdev = crtc->dev->dev_private;
661         u32 addr;
662         int count;
663
664         while (RREG8(0x1fda) & 0x08);
665         while (!(RREG8(0x1fda) & 0x08));
666
667         count = RREG8(MGAREG_VCOUNT) + 2;
668         while (RREG8(MGAREG_VCOUNT) < count);
669
670         addr = offset >> 2;
671         WREG_CRT(0x0d, (u8)(addr & 0xff));
672         WREG_CRT(0x0c, (u8)(addr >> 8) & 0xff);
673         WREG_CRT(0xaf, (u8)(addr >> 16) & 0xf);
674 }
675
676
677 /* ast is different - we will force move buffers out of VRAM */
678 static int mga_crtc_do_set_base(struct drm_crtc *crtc,
679                                 struct drm_framebuffer *fb,
680                                 int x, int y, int atomic)
681 {
682         struct mga_device *mdev = crtc->dev->dev_private;
683         struct drm_gem_object *obj;
684         struct mga_framebuffer *mga_fb;
685         struct mgag200_bo *bo;
686         int ret;
687         u64 gpu_addr;
688
689         /* push the previous fb to system ram */
690         if (!atomic && fb) {
691                 mga_fb = to_mga_framebuffer(fb);
692                 obj = mga_fb->obj;
693                 bo = gem_to_mga_bo(obj);
694                 ret = mgag200_bo_reserve(bo, false);
695                 if (ret)
696                         return ret;
697                 mgag200_bo_push_sysram(bo);
698                 mgag200_bo_unreserve(bo);
699         }
700
701         mga_fb = to_mga_framebuffer(crtc->fb);
702         obj = mga_fb->obj;
703         bo = gem_to_mga_bo(obj);
704
705         ret = mgag200_bo_reserve(bo, false);
706         if (ret)
707                 return ret;
708
709         ret = mgag200_bo_pin(bo, TTM_PL_FLAG_VRAM, &gpu_addr);
710         if (ret) {
711                 mgag200_bo_unreserve(bo);
712                 return ret;
713         }
714
715         if (&mdev->mfbdev->mfb == mga_fb) {
716                 /* if pushing console in kmap it */
717                 ret = ttm_bo_kmap(&bo->bo, 0, bo->bo.num_pages, &bo->kmap);
718                 if (ret)
719                         DRM_ERROR("failed to kmap fbcon\n");
720
721         }
722         mgag200_bo_unreserve(bo);
723
724         DRM_INFO("mga base %llx\n", gpu_addr);
725
726         mga_set_start_address(crtc, (u32)gpu_addr);
727
728         return 0;
729 }
730
731 static int mga_crtc_mode_set_base(struct drm_crtc *crtc, int x, int y,
732                                   struct drm_framebuffer *old_fb)
733 {
734         return mga_crtc_do_set_base(crtc, old_fb, x, y, 0);
735 }
736
737 static int mga_crtc_mode_set(struct drm_crtc *crtc,
738                                 struct drm_display_mode *mode,
739                                 struct drm_display_mode *adjusted_mode,
740                                 int x, int y, struct drm_framebuffer *old_fb)
741 {
742         struct drm_device *dev = crtc->dev;
743         struct mga_device *mdev = dev->dev_private;
744         int hdisplay, hsyncstart, hsyncend, htotal;
745         int vdisplay, vsyncstart, vsyncend, vtotal;
746         int pitch;
747         int option = 0, option2 = 0;
748         int i;
749         unsigned char misc = 0;
750         unsigned char ext_vga[6];
751         unsigned char ext_vga_index24;
752         unsigned char dac_index90 = 0;
753         u8 bppshift;
754
755         static unsigned char dacvalue[] = {
756                 /* 0x00: */        0,    0,    0,    0,    0,    0, 0x00,    0,
757                 /* 0x08: */        0,    0,    0,    0,    0,    0,    0,    0,
758                 /* 0x10: */        0,    0,    0,    0,    0,    0,    0,    0,
759                 /* 0x18: */     0x00,    0, 0xC9, 0xFF, 0xBF, 0x20, 0x1F, 0x20,
760                 /* 0x20: */     0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
761                 /* 0x28: */     0x00, 0x00, 0x00, 0x00,    0,    0,    0, 0x40,
762                 /* 0x30: */     0x00, 0xB0, 0x00, 0xC2, 0x34, 0x14, 0x02, 0x83,
763                 /* 0x38: */     0x00, 0x93, 0x00, 0x77, 0x00, 0x00, 0x00, 0x3A,
764                 /* 0x40: */        0,    0,    0,    0,    0,    0,    0,    0,
765                 /* 0x48: */        0,    0,    0,    0,    0,    0,    0,    0
766         };
767
768         bppshift = mdev->bpp_shifts[(crtc->fb->bits_per_pixel >> 3) - 1];
769
770         switch (mdev->type) {
771         case G200_SE_A:
772         case G200_SE_B:
773                 dacvalue[MGA1064_VREF_CTL] = 0x03;
774                 dacvalue[MGA1064_PIX_CLK_CTL] = MGA1064_PIX_CLK_CTL_SEL_PLL;
775                 dacvalue[MGA1064_MISC_CTL] = MGA1064_MISC_CTL_DAC_EN |
776                                              MGA1064_MISC_CTL_VGA8 |
777                                              MGA1064_MISC_CTL_DAC_RAM_CS;
778                 if (mdev->has_sdram)
779                         option = 0x40049120;
780                 else
781                         option = 0x4004d120;
782                 option2 = 0x00008000;
783                 break;
784         case G200_WB:
785                 dacvalue[MGA1064_VREF_CTL] = 0x07;
786                 option = 0x41049120;
787                 option2 = 0x0000b000;
788                 break;
789         case G200_EV:
790                 dacvalue[MGA1064_PIX_CLK_CTL] = MGA1064_PIX_CLK_CTL_SEL_PLL;
791                 dacvalue[MGA1064_MISC_CTL] = MGA1064_MISC_CTL_VGA8 |
792                                              MGA1064_MISC_CTL_DAC_RAM_CS;
793                 option = 0x00000120;
794                 option2 = 0x0000b000;
795                 break;
796         case G200_EH:
797                 dacvalue[MGA1064_MISC_CTL] = MGA1064_MISC_CTL_VGA8 |
798                                              MGA1064_MISC_CTL_DAC_RAM_CS;
799                 option = 0x00000120;
800                 option2 = 0x0000b000;
801                 break;
802         case G200_ER:
803                 dac_index90 = 0;
804                 break;
805         }
806
807         switch (crtc->fb->bits_per_pixel) {
808         case 8:
809                 dacvalue[MGA1064_MUL_CTL] = MGA1064_MUL_CTL_8bits;
810                 break;
811         case 16:
812                 if (crtc->fb->depth == 15)
813                         dacvalue[MGA1064_MUL_CTL] = MGA1064_MUL_CTL_15bits;
814                 else
815                         dacvalue[MGA1064_MUL_CTL] = MGA1064_MUL_CTL_16bits;
816                 break;
817         case 24:
818                 dacvalue[MGA1064_MUL_CTL] = MGA1064_MUL_CTL_24bits;
819                 break;
820         case 32:
821                 dacvalue[MGA1064_MUL_CTL] = MGA1064_MUL_CTL_32_24bits;
822                 break;
823         }
824
825         if (mode->flags & DRM_MODE_FLAG_NHSYNC)
826                 misc |= 0x40;
827         if (mode->flags & DRM_MODE_FLAG_NVSYNC)
828                 misc |= 0x80;
829
830
831         for (i = 0; i < sizeof(dacvalue); i++) {
832                 if ((i <= 0x17) ||
833                     (i == 0x1b) ||
834                     (i == 0x1c) ||
835                     ((i >= 0x1f) && (i <= 0x29)) ||
836                     ((i >= 0x30) && (i <= 0x37)))
837                         continue;
838                 if (IS_G200_SE(mdev) &&
839                     ((i == 0x2c) || (i == 0x2d) || (i == 0x2e)))
840                         continue;
841                 if ((mdev->type == G200_EV || mdev->type == G200_WB || mdev->type == G200_EH) &&
842                     (i >= 0x44) && (i <= 0x4e))
843                         continue;
844
845                 WREG_DAC(i, dacvalue[i]);
846         }
847
848         if (mdev->type == G200_ER) {
849                 WREG_DAC(0x90, dac_index90);
850         }
851
852
853         if (option)
854                 pci_write_config_dword(dev->pdev, PCI_MGA_OPTION, option);
855         if (option2)
856                 pci_write_config_dword(dev->pdev, PCI_MGA_OPTION2, option2);
857
858         WREG_SEQ(2, 0xf);
859         WREG_SEQ(3, 0);
860         WREG_SEQ(4, 0xe);
861
862         pitch = crtc->fb->pitches[0] / (crtc->fb->bits_per_pixel / 8);
863         if (crtc->fb->bits_per_pixel == 24)
864                 pitch = pitch >> (4 - bppshift);
865         else
866                 pitch = pitch >> (4 - bppshift);
867
868         hdisplay = mode->hdisplay / 8 - 1;
869         hsyncstart = mode->hsync_start / 8 - 1;
870         hsyncend = mode->hsync_end / 8 - 1;
871         htotal = mode->htotal / 8 - 1;
872
873         /* Work around hardware quirk */
874         if ((htotal & 0x07) == 0x06 || (htotal & 0x07) == 0x04)
875                 htotal++;
876
877         vdisplay = mode->vdisplay - 1;
878         vsyncstart = mode->vsync_start - 1;
879         vsyncend = mode->vsync_end - 1;
880         vtotal = mode->vtotal - 2;
881
882         WREG_GFX(0, 0);
883         WREG_GFX(1, 0);
884         WREG_GFX(2, 0);
885         WREG_GFX(3, 0);
886         WREG_GFX(4, 0);
887         WREG_GFX(5, 0x40);
888         WREG_GFX(6, 0x5);
889         WREG_GFX(7, 0xf);
890         WREG_GFX(8, 0xf);
891
892         WREG_CRT(0, htotal - 4);
893         WREG_CRT(1, hdisplay);
894         WREG_CRT(2, hdisplay);
895         WREG_CRT(3, (htotal & 0x1F) | 0x80);
896         WREG_CRT(4, hsyncstart);
897         WREG_CRT(5, ((htotal & 0x20) << 2) | (hsyncend & 0x1F));
898         WREG_CRT(6, vtotal & 0xFF);
899         WREG_CRT(7, ((vtotal & 0x100) >> 8) |
900                  ((vdisplay & 0x100) >> 7) |
901                  ((vsyncstart & 0x100) >> 6) |
902                  ((vdisplay & 0x100) >> 5) |
903                  ((vdisplay & 0x100) >> 4) | /* linecomp */
904                  ((vtotal & 0x200) >> 4)|
905                  ((vdisplay & 0x200) >> 3) |
906                  ((vsyncstart & 0x200) >> 2));
907         WREG_CRT(9, ((vdisplay & 0x200) >> 4) |
908                  ((vdisplay & 0x200) >> 3));
909         WREG_CRT(10, 0);
910         WREG_CRT(11, 0);
911         WREG_CRT(12, 0);
912         WREG_CRT(13, 0);
913         WREG_CRT(14, 0);
914         WREG_CRT(15, 0);
915         WREG_CRT(16, vsyncstart & 0xFF);
916         WREG_CRT(17, (vsyncend & 0x0F) | 0x20);
917         WREG_CRT(18, vdisplay & 0xFF);
918         WREG_CRT(19, pitch & 0xFF);
919         WREG_CRT(20, 0);
920         WREG_CRT(21, vdisplay & 0xFF);
921         WREG_CRT(22, (vtotal + 1) & 0xFF);
922         WREG_CRT(23, 0xc3);
923         WREG_CRT(24, vdisplay & 0xFF);
924
925         ext_vga[0] = 0;
926         ext_vga[5] = 0;
927
928         /* TODO interlace */
929
930         ext_vga[0] |= (pitch & 0x300) >> 4;
931         ext_vga[1] = (((htotal - 4) & 0x100) >> 8) |
932                 ((hdisplay & 0x100) >> 7) |
933                 ((hsyncstart & 0x100) >> 6) |
934                 (htotal & 0x40);
935         ext_vga[2] = ((vtotal & 0xc00) >> 10) |
936                 ((vdisplay & 0x400) >> 8) |
937                 ((vdisplay & 0xc00) >> 7) |
938                 ((vsyncstart & 0xc00) >> 5) |
939                 ((vdisplay & 0x400) >> 3);
940         if (crtc->fb->bits_per_pixel == 24)
941                 ext_vga[3] = (((1 << bppshift) * 3) - 1) | 0x80;
942         else
943                 ext_vga[3] = ((1 << bppshift) - 1) | 0x80;
944         ext_vga[4] = 0;
945         if (mdev->type == G200_WB)
946                 ext_vga[1] |= 0x88;
947
948         ext_vga_index24 = 0x05;
949
950         /* Set pixel clocks */
951         misc = 0x2d;
952         WREG8(MGA_MISC_OUT, misc);
953
954         mga_crtc_set_plls(mdev, mode->clock);
955
956         for (i = 0; i < 6; i++) {
957                 WREG_ECRT(i, ext_vga[i]);
958         }
959
960         if (mdev->type == G200_ER)
961                 WREG_ECRT(24, ext_vga_index24);
962
963         if (mdev->type == G200_EV) {
964                 WREG_ECRT(6, 0);
965         }
966
967         WREG_ECRT(0, ext_vga[0]);
968         /* Enable mga pixel clock */
969         misc = 0x2d;
970
971         WREG8(MGA_MISC_OUT, misc);
972
973         if (adjusted_mode)
974                 memcpy(&mdev->mode, mode, sizeof(struct drm_display_mode));
975
976         mga_crtc_do_set_base(crtc, old_fb, x, y, 0);
977
978         /* reset tagfifo */
979         if (mdev->type == G200_ER) {
980                 u32 mem_ctl = RREG32(MGAREG_MEMCTL);
981                 u8 seq1;
982
983                 /* screen off */
984                 WREG8(MGAREG_SEQ_INDEX, 0x01);
985                 seq1 = RREG8(MGAREG_SEQ_DATA) | 0x20;
986                 WREG8(MGAREG_SEQ_DATA, seq1);
987
988                 WREG32(MGAREG_MEMCTL, mem_ctl | 0x00200000);
989                 udelay(1000);
990                 WREG32(MGAREG_MEMCTL, mem_ctl & ~0x00200000);
991
992                 WREG8(MGAREG_SEQ_DATA, seq1 & ~0x20);
993         }
994
995
996         if (IS_G200_SE(mdev)) {
997                 if (mdev->reg_1e24 >= 0x02) {
998                         u8 hi_pri_lvl;
999                         u32 bpp;
1000                         u32 mb;
1001
1002                         if (crtc->fb->bits_per_pixel > 16)
1003                                 bpp = 32;
1004                         else if (crtc->fb->bits_per_pixel > 8)
1005                                 bpp = 16;
1006                         else
1007                                 bpp = 8;
1008
1009                         mb = (mode->clock * bpp) / 1000;
1010                         if (mb > 3100)
1011                                 hi_pri_lvl = 0;
1012                         else if (mb > 2600)
1013                                 hi_pri_lvl = 1;
1014                         else if (mb > 1900)
1015                                 hi_pri_lvl = 2;
1016                         else if (mb > 1160)
1017                                 hi_pri_lvl = 3;
1018                         else if (mb > 440)
1019                                 hi_pri_lvl = 4;
1020                         else
1021                                 hi_pri_lvl = 5;
1022
1023                         WREG8(0x1fde, 0x06);
1024                         WREG8(0x1fdf, hi_pri_lvl);
1025                 } else {
1026                         if (mdev->reg_1e24 >= 0x01)
1027                                 WREG8(0x1fdf, 0x03);
1028                         else
1029                                 WREG8(0x1fdf, 0x04);
1030                 }
1031         }
1032         return 0;
1033 }
1034
1035 #if 0 /* code from mjg to attempt D3 on crtc dpms off - revisit later */
1036 static int mga_suspend(struct drm_crtc *crtc)
1037 {
1038         struct mga_crtc *mga_crtc = to_mga_crtc(crtc);
1039         struct drm_device *dev = crtc->dev;
1040         struct mga_device *mdev = dev->dev_private;
1041         struct pci_dev *pdev = dev->pdev;
1042         int option;
1043
1044         if (mdev->suspended)
1045                 return 0;
1046
1047         WREG_SEQ(1, 0x20);
1048         WREG_ECRT(1, 0x30);
1049         /* Disable the pixel clock */
1050         WREG_DAC(0x1a, 0x05);
1051         /* Power down the DAC */
1052         WREG_DAC(0x1e, 0x18);
1053         /* Power down the pixel PLL */
1054         WREG_DAC(0x1a, 0x0d);
1055
1056         /* Disable PLLs and clocks */
1057         pci_read_config_dword(pdev, PCI_MGA_OPTION, &option);
1058         option &= ~(0x1F8024);
1059         pci_write_config_dword(pdev, PCI_MGA_OPTION, option);
1060         pci_set_power_state(pdev, PCI_D3hot);
1061         pci_disable_device(pdev);
1062
1063         mdev->suspended = true;
1064
1065         return 0;
1066 }
1067
1068 static int mga_resume(struct drm_crtc *crtc)
1069 {
1070         struct mga_crtc *mga_crtc = to_mga_crtc(crtc);
1071         struct drm_device *dev = crtc->dev;
1072         struct mga_device *mdev = dev->dev_private;
1073         struct pci_dev *pdev = dev->pdev;
1074         int option;
1075
1076         if (!mdev->suspended)
1077                 return 0;
1078
1079         pci_set_power_state(pdev, PCI_D0);
1080         pci_enable_device(pdev);
1081
1082         /* Disable sysclk */
1083         pci_read_config_dword(pdev, PCI_MGA_OPTION, &option);
1084         option &= ~(0x4);
1085         pci_write_config_dword(pdev, PCI_MGA_OPTION, option);
1086
1087         mdev->suspended = false;
1088
1089         return 0;
1090 }
1091
1092 #endif
1093
1094 static void mga_crtc_dpms(struct drm_crtc *crtc, int mode)
1095 {
1096         struct drm_device *dev = crtc->dev;
1097         struct mga_device *mdev = dev->dev_private;
1098         u8 seq1 = 0, crtcext1 = 0;
1099
1100         switch (mode) {
1101         case DRM_MODE_DPMS_ON:
1102                 seq1 = 0;
1103                 crtcext1 = 0;
1104                 mga_crtc_load_lut(crtc);
1105                 break;
1106         case DRM_MODE_DPMS_STANDBY:
1107                 seq1 = 0x20;
1108                 crtcext1 = 0x10;
1109                 break;
1110         case DRM_MODE_DPMS_SUSPEND:
1111                 seq1 = 0x20;
1112                 crtcext1 = 0x20;
1113                 break;
1114         case DRM_MODE_DPMS_OFF:
1115                 seq1 = 0x20;
1116                 crtcext1 = 0x30;
1117                 break;
1118         }
1119
1120 #if 0
1121         if (mode == DRM_MODE_DPMS_OFF) {
1122                 mga_suspend(crtc);
1123         }
1124 #endif
1125         WREG8(MGAREG_SEQ_INDEX, 0x01);
1126         seq1 |= RREG8(MGAREG_SEQ_DATA) & ~0x20;
1127         mga_wait_vsync(mdev);
1128         mga_wait_busy(mdev);
1129         WREG8(MGAREG_SEQ_DATA, seq1);
1130         msleep(20);
1131         WREG8(MGAREG_CRTCEXT_INDEX, 0x01);
1132         crtcext1 |= RREG8(MGAREG_CRTCEXT_DATA) & ~0x30;
1133         WREG8(MGAREG_CRTCEXT_DATA, crtcext1);
1134
1135 #if 0
1136         if (mode == DRM_MODE_DPMS_ON && mdev->suspended == true) {
1137                 mga_resume(crtc);
1138                 drm_helper_resume_force_mode(dev);
1139         }
1140 #endif
1141 }
1142
1143 /*
1144  * This is called before a mode is programmed. A typical use might be to
1145  * enable DPMS during the programming to avoid seeing intermediate stages,
1146  * but that's not relevant to us
1147  */
1148 static void mga_crtc_prepare(struct drm_crtc *crtc)
1149 {
1150         struct drm_device *dev = crtc->dev;
1151         struct mga_device *mdev = dev->dev_private;
1152         u8 tmp;
1153
1154         /*      mga_resume(crtc);*/
1155
1156         WREG8(MGAREG_CRTC_INDEX, 0x11);
1157         tmp = RREG8(MGAREG_CRTC_DATA);
1158         WREG_CRT(0x11, tmp | 0x80);
1159
1160         if (mdev->type == G200_SE_A || mdev->type == G200_SE_B) {
1161                 WREG_SEQ(0, 1);
1162                 msleep(50);
1163                 WREG_SEQ(1, 0x20);
1164                 msleep(20);
1165         } else {
1166                 WREG8(MGAREG_SEQ_INDEX, 0x1);
1167                 tmp = RREG8(MGAREG_SEQ_DATA);
1168
1169                 /* start sync reset */
1170                 WREG_SEQ(0, 1);
1171                 WREG_SEQ(1, tmp | 0x20);
1172         }
1173
1174         if (mdev->type == G200_WB)
1175                 mga_g200wb_prepare(crtc);
1176
1177         WREG_CRT(17, 0);
1178 }
1179
1180 /*
1181  * This is called after a mode is programmed. It should reverse anything done
1182  * by the prepare function
1183  */
1184 static void mga_crtc_commit(struct drm_crtc *crtc)
1185 {
1186         struct drm_device *dev = crtc->dev;
1187         struct mga_device *mdev = dev->dev_private;
1188         struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
1189         u8 tmp;
1190
1191         if (mdev->type == G200_WB)
1192                 mga_g200wb_commit(crtc);
1193
1194         if (mdev->type == G200_SE_A || mdev->type == G200_SE_B) {
1195                 msleep(50);
1196                 WREG_SEQ(1, 0x0);
1197                 msleep(20);
1198                 WREG_SEQ(0, 0x3);
1199         } else {
1200                 WREG8(MGAREG_SEQ_INDEX, 0x1);
1201                 tmp = RREG8(MGAREG_SEQ_DATA);
1202
1203                 tmp &= ~0x20;
1204                 WREG_SEQ(0x1, tmp);
1205                 WREG_SEQ(0, 3);
1206         }
1207         crtc_funcs->dpms(crtc, DRM_MODE_DPMS_ON);
1208 }
1209
1210 /*
1211  * The core can pass us a set of gamma values to program. We actually only
1212  * use this for 8-bit mode so can't perform smooth fades on deeper modes,
1213  * but it's a requirement that we provide the function
1214  */
1215 static void mga_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
1216                                   u16 *blue, uint32_t start, uint32_t size)
1217 {
1218         struct mga_crtc *mga_crtc = to_mga_crtc(crtc);
1219         int end = (start + size > MGAG200_LUT_SIZE) ? MGAG200_LUT_SIZE : start + size;
1220         int i;
1221
1222         for (i = start; i < end; i++) {
1223                 mga_crtc->lut_r[i] = red[i] >> 8;
1224                 mga_crtc->lut_g[i] = green[i] >> 8;
1225                 mga_crtc->lut_b[i] = blue[i] >> 8;
1226         }
1227         mga_crtc_load_lut(crtc);
1228 }
1229
1230 /* Simple cleanup function */
1231 static void mga_crtc_destroy(struct drm_crtc *crtc)
1232 {
1233         struct mga_crtc *mga_crtc = to_mga_crtc(crtc);
1234
1235         drm_crtc_cleanup(crtc);
1236         kfree(mga_crtc);
1237 }
1238
1239 /* These provide the minimum set of functions required to handle a CRTC */
1240 static const struct drm_crtc_funcs mga_crtc_funcs = {
1241         .gamma_set = mga_crtc_gamma_set,
1242         .set_config = drm_crtc_helper_set_config,
1243         .destroy = mga_crtc_destroy,
1244 };
1245
1246 static const struct drm_crtc_helper_funcs mga_helper_funcs = {
1247         .dpms = mga_crtc_dpms,
1248         .mode_fixup = mga_crtc_mode_fixup,
1249         .mode_set = mga_crtc_mode_set,
1250         .mode_set_base = mga_crtc_mode_set_base,
1251         .prepare = mga_crtc_prepare,
1252         .commit = mga_crtc_commit,
1253         .load_lut = mga_crtc_load_lut,
1254 };
1255
1256 /* CRTC setup */
1257 static void mga_crtc_init(struct mga_device *mdev)
1258 {
1259         struct mga_crtc *mga_crtc;
1260         int i;
1261
1262         mga_crtc = kzalloc(sizeof(struct mga_crtc) +
1263                               (MGAG200FB_CONN_LIMIT * sizeof(struct drm_connector *)),
1264                               GFP_KERNEL);
1265
1266         if (mga_crtc == NULL)
1267                 return;
1268
1269         drm_crtc_init(mdev->dev, &mga_crtc->base, &mga_crtc_funcs);
1270
1271         drm_mode_crtc_set_gamma_size(&mga_crtc->base, MGAG200_LUT_SIZE);
1272         mdev->mode_info.crtc = mga_crtc;
1273
1274         for (i = 0; i < MGAG200_LUT_SIZE; i++) {
1275                 mga_crtc->lut_r[i] = i;
1276                 mga_crtc->lut_g[i] = i;
1277                 mga_crtc->lut_b[i] = i;
1278         }
1279
1280         drm_crtc_helper_add(&mga_crtc->base, &mga_helper_funcs);
1281 }
1282
1283 /** Sets the color ramps on behalf of fbcon */
1284 void mga_crtc_fb_gamma_set(struct drm_crtc *crtc, u16 red, u16 green,
1285                               u16 blue, int regno)
1286 {
1287         struct mga_crtc *mga_crtc = to_mga_crtc(crtc);
1288
1289         mga_crtc->lut_r[regno] = red >> 8;
1290         mga_crtc->lut_g[regno] = green >> 8;
1291         mga_crtc->lut_b[regno] = blue >> 8;
1292 }
1293
1294 /** Gets the color ramps on behalf of fbcon */
1295 void mga_crtc_fb_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green,
1296                               u16 *blue, int regno)
1297 {
1298         struct mga_crtc *mga_crtc = to_mga_crtc(crtc);
1299
1300         *red = (u16)mga_crtc->lut_r[regno] << 8;
1301         *green = (u16)mga_crtc->lut_g[regno] << 8;
1302         *blue = (u16)mga_crtc->lut_b[regno] << 8;
1303 }
1304
1305 /*
1306  * The encoder comes after the CRTC in the output pipeline, but before
1307  * the connector. It's responsible for ensuring that the digital
1308  * stream is appropriately converted into the output format. Setup is
1309  * very simple in this case - all we have to do is inform qemu of the
1310  * colour depth in order to ensure that it displays appropriately
1311  */
1312
1313 /*
1314  * These functions are analagous to those in the CRTC code, but are intended
1315  * to handle any encoder-specific limitations
1316  */
1317 static bool mga_encoder_mode_fixup(struct drm_encoder *encoder,
1318                                    const struct drm_display_mode *mode,
1319                                    struct drm_display_mode *adjusted_mode)
1320 {
1321         return true;
1322 }
1323
1324 static void mga_encoder_mode_set(struct drm_encoder *encoder,
1325                                 struct drm_display_mode *mode,
1326                                 struct drm_display_mode *adjusted_mode)
1327 {
1328
1329 }
1330
1331 static void mga_encoder_dpms(struct drm_encoder *encoder, int state)
1332 {
1333         return;
1334 }
1335
1336 static void mga_encoder_prepare(struct drm_encoder *encoder)
1337 {
1338 }
1339
1340 static void mga_encoder_commit(struct drm_encoder *encoder)
1341 {
1342 }
1343
1344 void mga_encoder_destroy(struct drm_encoder *encoder)
1345 {
1346         struct mga_encoder *mga_encoder = to_mga_encoder(encoder);
1347         drm_encoder_cleanup(encoder);
1348         kfree(mga_encoder);
1349 }
1350
1351 static const struct drm_encoder_helper_funcs mga_encoder_helper_funcs = {
1352         .dpms = mga_encoder_dpms,
1353         .mode_fixup = mga_encoder_mode_fixup,
1354         .mode_set = mga_encoder_mode_set,
1355         .prepare = mga_encoder_prepare,
1356         .commit = mga_encoder_commit,
1357 };
1358
1359 static const struct drm_encoder_funcs mga_encoder_encoder_funcs = {
1360         .destroy = mga_encoder_destroy,
1361 };
1362
1363 static struct drm_encoder *mga_encoder_init(struct drm_device *dev)
1364 {
1365         struct drm_encoder *encoder;
1366         struct mga_encoder *mga_encoder;
1367
1368         mga_encoder = kzalloc(sizeof(struct mga_encoder), GFP_KERNEL);
1369         if (!mga_encoder)
1370                 return NULL;
1371
1372         encoder = &mga_encoder->base;
1373         encoder->possible_crtcs = 0x1;
1374
1375         drm_encoder_init(dev, encoder, &mga_encoder_encoder_funcs,
1376                          DRM_MODE_ENCODER_DAC);
1377         drm_encoder_helper_add(encoder, &mga_encoder_helper_funcs);
1378
1379         return encoder;
1380 }
1381
1382
1383 static int mga_vga_get_modes(struct drm_connector *connector)
1384 {
1385         struct mga_connector *mga_connector = to_mga_connector(connector);
1386         struct edid *edid;
1387         int ret = 0;
1388
1389         edid = drm_get_edid(connector, &mga_connector->i2c->adapter);
1390         if (edid) {
1391                 drm_mode_connector_update_edid_property(connector, edid);
1392                 ret = drm_add_edid_modes(connector, edid);
1393                 kfree(edid);
1394         }
1395         return ret;
1396 }
1397
1398 static int mga_vga_mode_valid(struct drm_connector *connector,
1399                                  struct drm_display_mode *mode)
1400 {
1401         struct drm_device *dev = connector->dev;
1402         struct mga_device *mdev = (struct mga_device*)dev->dev_private;
1403         struct mga_fbdev *mfbdev = mdev->mfbdev;
1404         struct drm_fb_helper *fb_helper = &mfbdev->helper;
1405         struct drm_fb_helper_connector *fb_helper_conn = NULL;
1406         int bpp = 32;
1407         int i = 0;
1408
1409         /* FIXME: Add bandwidth and g200se limitations */
1410
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) {
1415                 return MODE_BAD;
1416         }
1417
1418         /* Validate the mode input by the user */
1419         for (i = 0; i < fb_helper->connector_count; i++) {
1420                 if (fb_helper->connector_info[i]->connector == connector) {
1421                         /* Found the helper for this connector */
1422                         fb_helper_conn = fb_helper->connector_info[i];
1423                         if (fb_helper_conn->cmdline_mode.specified) {
1424                                 if (fb_helper_conn->cmdline_mode.bpp_specified) {
1425                                         bpp = fb_helper_conn->cmdline_mode.bpp;
1426                                 }
1427                         }
1428                 }
1429         }
1430
1431         if ((mode->hdisplay * mode->vdisplay * (bpp/8)) > mdev->mc.vram_size) {
1432                 if (fb_helper_conn)
1433                         fb_helper_conn->cmdline_mode.specified = false;
1434                 return MODE_BAD;
1435         }
1436
1437         return MODE_OK;
1438 }
1439
1440 struct drm_encoder *mga_connector_best_encoder(struct drm_connector
1441                                                   *connector)
1442 {
1443         int enc_id = connector->encoder_ids[0];
1444         struct drm_mode_object *obj;
1445         struct drm_encoder *encoder;
1446
1447         /* pick the encoder ids */
1448         if (enc_id) {
1449                 obj =
1450                     drm_mode_object_find(connector->dev, enc_id,
1451                                          DRM_MODE_OBJECT_ENCODER);
1452                 if (!obj)
1453                         return NULL;
1454                 encoder = obj_to_encoder(obj);
1455                 return encoder;
1456         }
1457         return NULL;
1458 }
1459
1460 static enum drm_connector_status mga_vga_detect(struct drm_connector
1461                                                    *connector, bool force)
1462 {
1463         return connector_status_connected;
1464 }
1465
1466 static void mga_connector_destroy(struct drm_connector *connector)
1467 {
1468         struct mga_connector *mga_connector = to_mga_connector(connector);
1469         mgag200_i2c_destroy(mga_connector->i2c);
1470         drm_connector_cleanup(connector);
1471         kfree(connector);
1472 }
1473
1474 struct drm_connector_helper_funcs mga_vga_connector_helper_funcs = {
1475         .get_modes = mga_vga_get_modes,
1476         .mode_valid = mga_vga_mode_valid,
1477         .best_encoder = mga_connector_best_encoder,
1478 };
1479
1480 struct drm_connector_funcs mga_vga_connector_funcs = {
1481         .dpms = drm_helper_connector_dpms,
1482         .detect = mga_vga_detect,
1483         .fill_modes = drm_helper_probe_single_connector_modes,
1484         .destroy = mga_connector_destroy,
1485 };
1486
1487 static struct drm_connector *mga_vga_init(struct drm_device *dev)
1488 {
1489         struct drm_connector *connector;
1490         struct mga_connector *mga_connector;
1491
1492         mga_connector = kzalloc(sizeof(struct mga_connector), GFP_KERNEL);
1493         if (!mga_connector)
1494                 return NULL;
1495
1496         connector = &mga_connector->base;
1497
1498         drm_connector_init(dev, connector,
1499                            &mga_vga_connector_funcs, DRM_MODE_CONNECTOR_VGA);
1500
1501         drm_connector_helper_add(connector, &mga_vga_connector_helper_funcs);
1502
1503         mga_connector->i2c = mgag200_i2c_create(dev);
1504         if (!mga_connector->i2c)
1505                 DRM_ERROR("failed to add ddc bus\n");
1506
1507         return connector;
1508 }
1509
1510
1511 int mgag200_modeset_init(struct mga_device *mdev)
1512 {
1513         struct drm_encoder *encoder;
1514         struct drm_connector *connector;
1515         int ret;
1516
1517         mdev->mode_info.mode_config_initialized = true;
1518
1519         mdev->dev->mode_config.max_width = MGAG200_MAX_FB_WIDTH;
1520         mdev->dev->mode_config.max_height = MGAG200_MAX_FB_HEIGHT;
1521
1522         mdev->dev->mode_config.fb_base = mdev->mc.vram_base;
1523
1524         mga_crtc_init(mdev);
1525
1526         encoder = mga_encoder_init(mdev->dev);
1527         if (!encoder) {
1528                 DRM_ERROR("mga_encoder_init failed\n");
1529                 return -1;
1530         }
1531
1532         connector = mga_vga_init(mdev->dev);
1533         if (!connector) {
1534                 DRM_ERROR("mga_vga_init failed\n");
1535                 return -1;
1536         }
1537
1538         drm_mode_connector_attach_encoder(connector, encoder);
1539
1540         ret = mgag200_fbdev_init(mdev);
1541         if (ret) {
1542                 DRM_ERROR("mga_fbdev_init failed\n");
1543                 return ret;
1544         }
1545
1546         return 0;
1547 }
1548
1549 void mgag200_modeset_fini(struct mga_device *mdev)
1550 {
1551
1552 }