8cac69819054457ceb5c5c8e3e8f9b11c97a4f7d
[firefly-linux-kernel-4.4.55.git] / drivers / gpu / drm / radeon / radeon_combios.c
1 /*
2  * Copyright 2004 ATI Technologies Inc., Markham, Ontario
3  * Copyright 2007-8 Advanced Micro Devices, Inc.
4  * Copyright 2008 Red Hat Inc.
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a
7  * copy of this software and associated documentation files (the "Software"),
8  * to deal in the Software without restriction, including without limitation
9  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10  * and/or sell copies of the Software, and to permit persons to whom the
11  * Software is furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
19  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
20  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22  * OTHER DEALINGS IN THE SOFTWARE.
23  *
24  * Authors: Dave Airlie
25  *          Alex Deucher
26  */
27 #include <drm/drmP.h>
28 #include <drm/radeon_drm.h>
29 #include "radeon.h"
30 #include "atom.h"
31
32 #ifdef CONFIG_PPC_PMAC
33 /* not sure which of these are needed */
34 #include <asm/machdep.h>
35 #include <asm/pmac_feature.h>
36 #include <asm/prom.h>
37 #include <asm/pci-bridge.h>
38 #endif /* CONFIG_PPC_PMAC */
39
40 /* from radeon_encoder.c */
41 extern uint32_t
42 radeon_get_encoder_enum(struct drm_device *dev, uint32_t supported_device,
43                         uint8_t dac);
44 extern void radeon_link_encoder_connector(struct drm_device *dev);
45
46 /* from radeon_connector.c */
47 extern void
48 radeon_add_legacy_connector(struct drm_device *dev,
49                             uint32_t connector_id,
50                             uint32_t supported_device,
51                             int connector_type,
52                             struct radeon_i2c_bus_rec *i2c_bus,
53                             uint16_t connector_object_id,
54                             struct radeon_hpd *hpd);
55
56 /* from radeon_legacy_encoder.c */
57 extern void
58 radeon_add_legacy_encoder(struct drm_device *dev, uint32_t encoder_enum,
59                           uint32_t supported_device);
60
61 /* old legacy ATI BIOS routines */
62
63 /* COMBIOS table offsets */
64 enum radeon_combios_table_offset {
65         /* absolute offset tables */
66         COMBIOS_ASIC_INIT_1_TABLE,
67         COMBIOS_BIOS_SUPPORT_TABLE,
68         COMBIOS_DAC_PROGRAMMING_TABLE,
69         COMBIOS_MAX_COLOR_DEPTH_TABLE,
70         COMBIOS_CRTC_INFO_TABLE,
71         COMBIOS_PLL_INFO_TABLE,
72         COMBIOS_TV_INFO_TABLE,
73         COMBIOS_DFP_INFO_TABLE,
74         COMBIOS_HW_CONFIG_INFO_TABLE,
75         COMBIOS_MULTIMEDIA_INFO_TABLE,
76         COMBIOS_TV_STD_PATCH_TABLE,
77         COMBIOS_LCD_INFO_TABLE,
78         COMBIOS_MOBILE_INFO_TABLE,
79         COMBIOS_PLL_INIT_TABLE,
80         COMBIOS_MEM_CONFIG_TABLE,
81         COMBIOS_SAVE_MASK_TABLE,
82         COMBIOS_HARDCODED_EDID_TABLE,
83         COMBIOS_ASIC_INIT_2_TABLE,
84         COMBIOS_CONNECTOR_INFO_TABLE,
85         COMBIOS_DYN_CLK_1_TABLE,
86         COMBIOS_RESERVED_MEM_TABLE,
87         COMBIOS_EXT_TMDS_INFO_TABLE,
88         COMBIOS_MEM_CLK_INFO_TABLE,
89         COMBIOS_EXT_DAC_INFO_TABLE,
90         COMBIOS_MISC_INFO_TABLE,
91         COMBIOS_CRT_INFO_TABLE,
92         COMBIOS_INTEGRATED_SYSTEM_INFO_TABLE,
93         COMBIOS_COMPONENT_VIDEO_INFO_TABLE,
94         COMBIOS_FAN_SPEED_INFO_TABLE,
95         COMBIOS_OVERDRIVE_INFO_TABLE,
96         COMBIOS_OEM_INFO_TABLE,
97         COMBIOS_DYN_CLK_2_TABLE,
98         COMBIOS_POWER_CONNECTOR_INFO_TABLE,
99         COMBIOS_I2C_INFO_TABLE,
100         /* relative offset tables */
101         COMBIOS_ASIC_INIT_3_TABLE,      /* offset from misc info */
102         COMBIOS_ASIC_INIT_4_TABLE,      /* offset from misc info */
103         COMBIOS_DETECTED_MEM_TABLE,     /* offset from misc info */
104         COMBIOS_ASIC_INIT_5_TABLE,      /* offset from misc info */
105         COMBIOS_RAM_RESET_TABLE,        /* offset from mem config */
106         COMBIOS_POWERPLAY_INFO_TABLE,   /* offset from mobile info */
107         COMBIOS_GPIO_INFO_TABLE,        /* offset from mobile info */
108         COMBIOS_LCD_DDC_INFO_TABLE,     /* offset from mobile info */
109         COMBIOS_TMDS_POWER_TABLE,       /* offset from mobile info */
110         COMBIOS_TMDS_POWER_ON_TABLE,    /* offset from tmds power */
111         COMBIOS_TMDS_POWER_OFF_TABLE,   /* offset from tmds power */
112 };
113
114 enum radeon_combios_ddc {
115         DDC_NONE_DETECTED,
116         DDC_MONID,
117         DDC_DVI,
118         DDC_VGA,
119         DDC_CRT2,
120         DDC_LCD,
121         DDC_GPIO,
122 };
123
124 enum radeon_combios_connector {
125         CONNECTOR_NONE_LEGACY,
126         CONNECTOR_PROPRIETARY_LEGACY,
127         CONNECTOR_CRT_LEGACY,
128         CONNECTOR_DVI_I_LEGACY,
129         CONNECTOR_DVI_D_LEGACY,
130         CONNECTOR_CTV_LEGACY,
131         CONNECTOR_STV_LEGACY,
132         CONNECTOR_UNSUPPORTED_LEGACY
133 };
134
135 const int legacy_connector_convert[] = {
136         DRM_MODE_CONNECTOR_Unknown,
137         DRM_MODE_CONNECTOR_DVID,
138         DRM_MODE_CONNECTOR_VGA,
139         DRM_MODE_CONNECTOR_DVII,
140         DRM_MODE_CONNECTOR_DVID,
141         DRM_MODE_CONNECTOR_Composite,
142         DRM_MODE_CONNECTOR_SVIDEO,
143         DRM_MODE_CONNECTOR_Unknown,
144 };
145
146 static uint16_t combios_get_table_offset(struct drm_device *dev,
147                                          enum radeon_combios_table_offset table)
148 {
149         struct radeon_device *rdev = dev->dev_private;
150         int rev, size;
151         uint16_t offset = 0, check_offset;
152
153         if (!rdev->bios)
154                 return 0;
155
156         switch (table) {
157                 /* absolute offset tables */
158         case COMBIOS_ASIC_INIT_1_TABLE:
159                 check_offset = 0xc;
160                 break;
161         case COMBIOS_BIOS_SUPPORT_TABLE:
162                 check_offset = 0x14;
163                 break;
164         case COMBIOS_DAC_PROGRAMMING_TABLE:
165                 check_offset = 0x2a;
166                 break;
167         case COMBIOS_MAX_COLOR_DEPTH_TABLE:
168                 check_offset = 0x2c;
169                 break;
170         case COMBIOS_CRTC_INFO_TABLE:
171                 check_offset = 0x2e;
172                 break;
173         case COMBIOS_PLL_INFO_TABLE:
174                 check_offset = 0x30;
175                 break;
176         case COMBIOS_TV_INFO_TABLE:
177                 check_offset = 0x32;
178                 break;
179         case COMBIOS_DFP_INFO_TABLE:
180                 check_offset = 0x34;
181                 break;
182         case COMBIOS_HW_CONFIG_INFO_TABLE:
183                 check_offset = 0x36;
184                 break;
185         case COMBIOS_MULTIMEDIA_INFO_TABLE:
186                 check_offset = 0x38;
187                 break;
188         case COMBIOS_TV_STD_PATCH_TABLE:
189                 check_offset = 0x3e;
190                 break;
191         case COMBIOS_LCD_INFO_TABLE:
192                 check_offset = 0x40;
193                 break;
194         case COMBIOS_MOBILE_INFO_TABLE:
195                 check_offset = 0x42;
196                 break;
197         case COMBIOS_PLL_INIT_TABLE:
198                 check_offset = 0x46;
199                 break;
200         case COMBIOS_MEM_CONFIG_TABLE:
201                 check_offset = 0x48;
202                 break;
203         case COMBIOS_SAVE_MASK_TABLE:
204                 check_offset = 0x4a;
205                 break;
206         case COMBIOS_HARDCODED_EDID_TABLE:
207                 check_offset = 0x4c;
208                 break;
209         case COMBIOS_ASIC_INIT_2_TABLE:
210                 check_offset = 0x4e;
211                 break;
212         case COMBIOS_CONNECTOR_INFO_TABLE:
213                 check_offset = 0x50;
214                 break;
215         case COMBIOS_DYN_CLK_1_TABLE:
216                 check_offset = 0x52;
217                 break;
218         case COMBIOS_RESERVED_MEM_TABLE:
219                 check_offset = 0x54;
220                 break;
221         case COMBIOS_EXT_TMDS_INFO_TABLE:
222                 check_offset = 0x58;
223                 break;
224         case COMBIOS_MEM_CLK_INFO_TABLE:
225                 check_offset = 0x5a;
226                 break;
227         case COMBIOS_EXT_DAC_INFO_TABLE:
228                 check_offset = 0x5c;
229                 break;
230         case COMBIOS_MISC_INFO_TABLE:
231                 check_offset = 0x5e;
232                 break;
233         case COMBIOS_CRT_INFO_TABLE:
234                 check_offset = 0x60;
235                 break;
236         case COMBIOS_INTEGRATED_SYSTEM_INFO_TABLE:
237                 check_offset = 0x62;
238                 break;
239         case COMBIOS_COMPONENT_VIDEO_INFO_TABLE:
240                 check_offset = 0x64;
241                 break;
242         case COMBIOS_FAN_SPEED_INFO_TABLE:
243                 check_offset = 0x66;
244                 break;
245         case COMBIOS_OVERDRIVE_INFO_TABLE:
246                 check_offset = 0x68;
247                 break;
248         case COMBIOS_OEM_INFO_TABLE:
249                 check_offset = 0x6a;
250                 break;
251         case COMBIOS_DYN_CLK_2_TABLE:
252                 check_offset = 0x6c;
253                 break;
254         case COMBIOS_POWER_CONNECTOR_INFO_TABLE:
255                 check_offset = 0x6e;
256                 break;
257         case COMBIOS_I2C_INFO_TABLE:
258                 check_offset = 0x70;
259                 break;
260                 /* relative offset tables */
261         case COMBIOS_ASIC_INIT_3_TABLE: /* offset from misc info */
262                 check_offset =
263                     combios_get_table_offset(dev, COMBIOS_MISC_INFO_TABLE);
264                 if (check_offset) {
265                         rev = RBIOS8(check_offset);
266                         if (rev > 0) {
267                                 check_offset = RBIOS16(check_offset + 0x3);
268                                 if (check_offset)
269                                         offset = check_offset;
270                         }
271                 }
272                 break;
273         case COMBIOS_ASIC_INIT_4_TABLE: /* offset from misc info */
274                 check_offset =
275                     combios_get_table_offset(dev, COMBIOS_MISC_INFO_TABLE);
276                 if (check_offset) {
277                         rev = RBIOS8(check_offset);
278                         if (rev > 0) {
279                                 check_offset = RBIOS16(check_offset + 0x5);
280                                 if (check_offset)
281                                         offset = check_offset;
282                         }
283                 }
284                 break;
285         case COMBIOS_DETECTED_MEM_TABLE:        /* offset from misc info */
286                 check_offset =
287                     combios_get_table_offset(dev, COMBIOS_MISC_INFO_TABLE);
288                 if (check_offset) {
289                         rev = RBIOS8(check_offset);
290                         if (rev > 0) {
291                                 check_offset = RBIOS16(check_offset + 0x7);
292                                 if (check_offset)
293                                         offset = check_offset;
294                         }
295                 }
296                 break;
297         case COMBIOS_ASIC_INIT_5_TABLE: /* offset from misc info */
298                 check_offset =
299                     combios_get_table_offset(dev, COMBIOS_MISC_INFO_TABLE);
300                 if (check_offset) {
301                         rev = RBIOS8(check_offset);
302                         if (rev == 2) {
303                                 check_offset = RBIOS16(check_offset + 0x9);
304                                 if (check_offset)
305                                         offset = check_offset;
306                         }
307                 }
308                 break;
309         case COMBIOS_RAM_RESET_TABLE:   /* offset from mem config */
310                 check_offset =
311                     combios_get_table_offset(dev, COMBIOS_MEM_CONFIG_TABLE);
312                 if (check_offset) {
313                         while (RBIOS8(check_offset++));
314                         check_offset += 2;
315                         if (check_offset)
316                                 offset = check_offset;
317                 }
318                 break;
319         case COMBIOS_POWERPLAY_INFO_TABLE:      /* offset from mobile info */
320                 check_offset =
321                     combios_get_table_offset(dev, COMBIOS_MOBILE_INFO_TABLE);
322                 if (check_offset) {
323                         check_offset = RBIOS16(check_offset + 0x11);
324                         if (check_offset)
325                                 offset = check_offset;
326                 }
327                 break;
328         case COMBIOS_GPIO_INFO_TABLE:   /* offset from mobile info */
329                 check_offset =
330                     combios_get_table_offset(dev, COMBIOS_MOBILE_INFO_TABLE);
331                 if (check_offset) {
332                         check_offset = RBIOS16(check_offset + 0x13);
333                         if (check_offset)
334                                 offset = check_offset;
335                 }
336                 break;
337         case COMBIOS_LCD_DDC_INFO_TABLE:        /* offset from mobile info */
338                 check_offset =
339                     combios_get_table_offset(dev, COMBIOS_MOBILE_INFO_TABLE);
340                 if (check_offset) {
341                         check_offset = RBIOS16(check_offset + 0x15);
342                         if (check_offset)
343                                 offset = check_offset;
344                 }
345                 break;
346         case COMBIOS_TMDS_POWER_TABLE:  /* offset from mobile info */
347                 check_offset =
348                     combios_get_table_offset(dev, COMBIOS_MOBILE_INFO_TABLE);
349                 if (check_offset) {
350                         check_offset = RBIOS16(check_offset + 0x17);
351                         if (check_offset)
352                                 offset = check_offset;
353                 }
354                 break;
355         case COMBIOS_TMDS_POWER_ON_TABLE:       /* offset from tmds power */
356                 check_offset =
357                     combios_get_table_offset(dev, COMBIOS_TMDS_POWER_TABLE);
358                 if (check_offset) {
359                         check_offset = RBIOS16(check_offset + 0x2);
360                         if (check_offset)
361                                 offset = check_offset;
362                 }
363                 break;
364         case COMBIOS_TMDS_POWER_OFF_TABLE:      /* offset from tmds power */
365                 check_offset =
366                     combios_get_table_offset(dev, COMBIOS_TMDS_POWER_TABLE);
367                 if (check_offset) {
368                         check_offset = RBIOS16(check_offset + 0x4);
369                         if (check_offset)
370                                 offset = check_offset;
371                 }
372                 break;
373         default:
374                 check_offset = 0;
375                 break;
376         }
377
378         size = RBIOS8(rdev->bios_header_start + 0x6);
379         /* check absolute offset tables */
380         if (table < COMBIOS_ASIC_INIT_3_TABLE && check_offset && check_offset < size)
381                 offset = RBIOS16(rdev->bios_header_start + check_offset);
382
383         return offset;
384 }
385
386 bool radeon_combios_check_hardcoded_edid(struct radeon_device *rdev)
387 {
388         int edid_info, size;
389         struct edid *edid;
390         unsigned char *raw;
391         edid_info = combios_get_table_offset(rdev->ddev, COMBIOS_HARDCODED_EDID_TABLE);
392         if (!edid_info)
393                 return false;
394
395         raw = rdev->bios + edid_info;
396         size = EDID_LENGTH * (raw[0x7e] + 1);
397         edid = kmalloc(size, GFP_KERNEL);
398         if (edid == NULL)
399                 return false;
400
401         memcpy((unsigned char *)edid, raw, size);
402
403         if (!drm_edid_is_valid(edid)) {
404                 kfree(edid);
405                 return false;
406         }
407
408         rdev->mode_info.bios_hardcoded_edid = edid;
409         rdev->mode_info.bios_hardcoded_edid_size = size;
410         return true;
411 }
412
413 /* this is used for atom LCDs as well */
414 struct edid *
415 radeon_bios_get_hardcoded_edid(struct radeon_device *rdev)
416 {
417         struct edid *edid;
418
419         if (rdev->mode_info.bios_hardcoded_edid) {
420                 edid = kmalloc(rdev->mode_info.bios_hardcoded_edid_size, GFP_KERNEL);
421                 if (edid) {
422                         memcpy((unsigned char *)edid,
423                                (unsigned char *)rdev->mode_info.bios_hardcoded_edid,
424                                rdev->mode_info.bios_hardcoded_edid_size);
425                         return edid;
426                 }
427         }
428         return NULL;
429 }
430
431 static struct radeon_i2c_bus_rec combios_setup_i2c_bus(struct radeon_device *rdev,
432                                                        enum radeon_combios_ddc ddc,
433                                                        u32 clk_mask,
434                                                        u32 data_mask)
435 {
436         struct radeon_i2c_bus_rec i2c;
437         int ddc_line = 0;
438
439         /* ddc id            = mask reg
440          * DDC_NONE_DETECTED = none
441          * DDC_DVI           = RADEON_GPIO_DVI_DDC
442          * DDC_VGA           = RADEON_GPIO_VGA_DDC
443          * DDC_LCD           = RADEON_GPIOPAD_MASK
444          * DDC_GPIO          = RADEON_MDGPIO_MASK
445          * r1xx
446          * DDC_MONID         = RADEON_GPIO_MONID
447          * DDC_CRT2          = RADEON_GPIO_CRT2_DDC
448          * r200
449          * DDC_MONID         = RADEON_GPIO_MONID
450          * DDC_CRT2          = RADEON_GPIO_DVI_DDC
451          * r300/r350
452          * DDC_MONID         = RADEON_GPIO_DVI_DDC
453          * DDC_CRT2          = RADEON_GPIO_DVI_DDC
454          * rv2xx/rv3xx
455          * DDC_MONID         = RADEON_GPIO_MONID
456          * DDC_CRT2          = RADEON_GPIO_MONID
457          * rs3xx/rs4xx
458          * DDC_MONID         = RADEON_GPIOPAD_MASK
459          * DDC_CRT2          = RADEON_GPIO_MONID
460          */
461         switch (ddc) {
462         case DDC_NONE_DETECTED:
463         default:
464                 ddc_line = 0;
465                 break;
466         case DDC_DVI:
467                 ddc_line = RADEON_GPIO_DVI_DDC;
468                 break;
469         case DDC_VGA:
470                 ddc_line = RADEON_GPIO_VGA_DDC;
471                 break;
472         case DDC_LCD:
473                 ddc_line = RADEON_GPIOPAD_MASK;
474                 break;
475         case DDC_GPIO:
476                 ddc_line = RADEON_MDGPIO_MASK;
477                 break;
478         case DDC_MONID:
479                 if (rdev->family == CHIP_RS300 ||
480                     rdev->family == CHIP_RS400 ||
481                     rdev->family == CHIP_RS480)
482                         ddc_line = RADEON_GPIOPAD_MASK;
483                 else if (rdev->family == CHIP_R300 ||
484                          rdev->family == CHIP_R350) {
485                         ddc_line = RADEON_GPIO_DVI_DDC;
486                         ddc = DDC_DVI;
487                 } else
488                         ddc_line = RADEON_GPIO_MONID;
489                 break;
490         case DDC_CRT2:
491                 if (rdev->family == CHIP_R200 ||
492                     rdev->family == CHIP_R300 ||
493                     rdev->family == CHIP_R350) {
494                         ddc_line = RADEON_GPIO_DVI_DDC;
495                         ddc = DDC_DVI;
496                 } else if (rdev->family == CHIP_RS300 ||
497                            rdev->family == CHIP_RS400 ||
498                            rdev->family == CHIP_RS480)
499                         ddc_line = RADEON_GPIO_MONID;
500                 else if (rdev->family >= CHIP_RV350) {
501                         ddc_line = RADEON_GPIO_MONID;
502                         ddc = DDC_MONID;
503                 } else
504                         ddc_line = RADEON_GPIO_CRT2_DDC;
505                 break;
506         }
507
508         if (ddc_line == RADEON_GPIOPAD_MASK) {
509                 i2c.mask_clk_reg = RADEON_GPIOPAD_MASK;
510                 i2c.mask_data_reg = RADEON_GPIOPAD_MASK;
511                 i2c.a_clk_reg = RADEON_GPIOPAD_A;
512                 i2c.a_data_reg = RADEON_GPIOPAD_A;
513                 i2c.en_clk_reg = RADEON_GPIOPAD_EN;
514                 i2c.en_data_reg = RADEON_GPIOPAD_EN;
515                 i2c.y_clk_reg = RADEON_GPIOPAD_Y;
516                 i2c.y_data_reg = RADEON_GPIOPAD_Y;
517         } else if (ddc_line == RADEON_MDGPIO_MASK) {
518                 i2c.mask_clk_reg = RADEON_MDGPIO_MASK;
519                 i2c.mask_data_reg = RADEON_MDGPIO_MASK;
520                 i2c.a_clk_reg = RADEON_MDGPIO_A;
521                 i2c.a_data_reg = RADEON_MDGPIO_A;
522                 i2c.en_clk_reg = RADEON_MDGPIO_EN;
523                 i2c.en_data_reg = RADEON_MDGPIO_EN;
524                 i2c.y_clk_reg = RADEON_MDGPIO_Y;
525                 i2c.y_data_reg = RADEON_MDGPIO_Y;
526         } else {
527                 i2c.mask_clk_reg = ddc_line;
528                 i2c.mask_data_reg = ddc_line;
529                 i2c.a_clk_reg = ddc_line;
530                 i2c.a_data_reg = ddc_line;
531                 i2c.en_clk_reg = ddc_line;
532                 i2c.en_data_reg = ddc_line;
533                 i2c.y_clk_reg = ddc_line;
534                 i2c.y_data_reg = ddc_line;
535         }
536
537         if (clk_mask && data_mask) {
538                 /* system specific masks */
539                 i2c.mask_clk_mask = clk_mask;
540                 i2c.mask_data_mask = data_mask;
541                 i2c.a_clk_mask = clk_mask;
542                 i2c.a_data_mask = data_mask;
543                 i2c.en_clk_mask = clk_mask;
544                 i2c.en_data_mask = data_mask;
545                 i2c.y_clk_mask = clk_mask;
546                 i2c.y_data_mask = data_mask;
547         } else if ((ddc_line == RADEON_GPIOPAD_MASK) ||
548                    (ddc_line == RADEON_MDGPIO_MASK)) {
549                 /* default gpiopad masks */
550                 i2c.mask_clk_mask = (0x20 << 8);
551                 i2c.mask_data_mask = 0x80;
552                 i2c.a_clk_mask = (0x20 << 8);
553                 i2c.a_data_mask = 0x80;
554                 i2c.en_clk_mask = (0x20 << 8);
555                 i2c.en_data_mask = 0x80;
556                 i2c.y_clk_mask = (0x20 << 8);
557                 i2c.y_data_mask = 0x80;
558         } else {
559                 /* default masks for ddc pads */
560                 i2c.mask_clk_mask = RADEON_GPIO_MASK_1;
561                 i2c.mask_data_mask = RADEON_GPIO_MASK_0;
562                 i2c.a_clk_mask = RADEON_GPIO_A_1;
563                 i2c.a_data_mask = RADEON_GPIO_A_0;
564                 i2c.en_clk_mask = RADEON_GPIO_EN_1;
565                 i2c.en_data_mask = RADEON_GPIO_EN_0;
566                 i2c.y_clk_mask = RADEON_GPIO_Y_1;
567                 i2c.y_data_mask = RADEON_GPIO_Y_0;
568         }
569
570         switch (rdev->family) {
571         case CHIP_R100:
572         case CHIP_RV100:
573         case CHIP_RS100:
574         case CHIP_RV200:
575         case CHIP_RS200:
576         case CHIP_RS300:
577                 switch (ddc_line) {
578                 case RADEON_GPIO_DVI_DDC:
579                         i2c.hw_capable = true;
580                         break;
581                 default:
582                         i2c.hw_capable = false;
583                         break;
584                 }
585                 break;
586         case CHIP_R200:
587                 switch (ddc_line) {
588                 case RADEON_GPIO_DVI_DDC:
589                 case RADEON_GPIO_MONID:
590                         i2c.hw_capable = true;
591                         break;
592                 default:
593                         i2c.hw_capable = false;
594                         break;
595                 }
596                 break;
597         case CHIP_RV250:
598         case CHIP_RV280:
599                 switch (ddc_line) {
600                 case RADEON_GPIO_VGA_DDC:
601                 case RADEON_GPIO_DVI_DDC:
602                 case RADEON_GPIO_CRT2_DDC:
603                         i2c.hw_capable = true;
604                         break;
605                 default:
606                         i2c.hw_capable = false;
607                         break;
608                 }
609                 break;
610         case CHIP_R300:
611         case CHIP_R350:
612                 switch (ddc_line) {
613                 case RADEON_GPIO_VGA_DDC:
614                 case RADEON_GPIO_DVI_DDC:
615                         i2c.hw_capable = true;
616                         break;
617                 default:
618                         i2c.hw_capable = false;
619                         break;
620                 }
621                 break;
622         case CHIP_RV350:
623         case CHIP_RV380:
624         case CHIP_RS400:
625         case CHIP_RS480:
626                 switch (ddc_line) {
627                 case RADEON_GPIO_VGA_DDC:
628                 case RADEON_GPIO_DVI_DDC:
629                         i2c.hw_capable = true;
630                         break;
631                 case RADEON_GPIO_MONID:
632                         /* hw i2c on RADEON_GPIO_MONID doesn't seem to work
633                          * reliably on some pre-r4xx hardware; not sure why.
634                          */
635                         i2c.hw_capable = false;
636                         break;
637                 default:
638                         i2c.hw_capable = false;
639                         break;
640                 }
641                 break;
642         default:
643                 i2c.hw_capable = false;
644                 break;
645         }
646         i2c.mm_i2c = false;
647
648         i2c.i2c_id = ddc;
649         i2c.hpd = RADEON_HPD_NONE;
650
651         if (ddc_line)
652                 i2c.valid = true;
653         else
654                 i2c.valid = false;
655
656         return i2c;
657 }
658
659 static struct radeon_i2c_bus_rec radeon_combios_get_i2c_info_from_table(struct radeon_device *rdev)
660 {
661         struct drm_device *dev = rdev->ddev;
662         struct radeon_i2c_bus_rec i2c;
663         u16 offset;
664         u8 id, blocks, clk, data;
665         int i;
666
667         i2c.valid = false;
668
669         offset = combios_get_table_offset(dev, COMBIOS_I2C_INFO_TABLE);
670         if (offset) {
671                 blocks = RBIOS8(offset + 2);
672                 for (i = 0; i < blocks; i++) {
673                         id = RBIOS8(offset + 3 + (i * 5) + 0);
674                         if (id == 136) {
675                                 clk = RBIOS8(offset + 3 + (i * 5) + 3);
676                                 data = RBIOS8(offset + 3 + (i * 5) + 4);
677                                 /* gpiopad */
678                                 i2c = combios_setup_i2c_bus(rdev, DDC_MONID,
679                                                             (1 << clk), (1 << data));
680                                 break;
681                         }
682                 }
683         }
684         return i2c;
685 }
686
687 void radeon_combios_i2c_init(struct radeon_device *rdev)
688 {
689         struct drm_device *dev = rdev->ddev;
690         struct radeon_i2c_bus_rec i2c;
691
692         /* actual hw pads
693          * r1xx/rs2xx/rs3xx
694          * 0x60, 0x64, 0x68, 0x6c, gpiopads, mm
695          * r200
696          * 0x60, 0x64, 0x68, mm
697          * r300/r350
698          * 0x60, 0x64, mm
699          * rv2xx/rv3xx/rs4xx
700          * 0x60, 0x64, 0x68, gpiopads, mm
701          */
702
703         /* 0x60 */
704         i2c = combios_setup_i2c_bus(rdev, DDC_DVI, 0, 0);
705         rdev->i2c_bus[0] = radeon_i2c_create(dev, &i2c, "DVI_DDC");
706         /* 0x64 */
707         i2c = combios_setup_i2c_bus(rdev, DDC_VGA, 0, 0);
708         rdev->i2c_bus[1] = radeon_i2c_create(dev, &i2c, "VGA_DDC");
709
710         /* mm i2c */
711         i2c.valid = true;
712         i2c.hw_capable = true;
713         i2c.mm_i2c = true;
714         i2c.i2c_id = 0xa0;
715         rdev->i2c_bus[2] = radeon_i2c_create(dev, &i2c, "MM_I2C");
716
717         if (rdev->family == CHIP_R300 ||
718             rdev->family == CHIP_R350) {
719                 /* only 2 sw i2c pads */
720         } else if (rdev->family == CHIP_RS300 ||
721                    rdev->family == CHIP_RS400 ||
722                    rdev->family == CHIP_RS480) {
723                 /* 0x68 */
724                 i2c = combios_setup_i2c_bus(rdev, DDC_CRT2, 0, 0);
725                 rdev->i2c_bus[3] = radeon_i2c_create(dev, &i2c, "MONID");
726
727                 /* gpiopad */
728                 i2c = radeon_combios_get_i2c_info_from_table(rdev);
729                 if (i2c.valid)
730                         rdev->i2c_bus[4] = radeon_i2c_create(dev, &i2c, "GPIOPAD_MASK");
731         } else if ((rdev->family == CHIP_R200) ||
732                    (rdev->family >= CHIP_R300)) {
733                 /* 0x68 */
734                 i2c = combios_setup_i2c_bus(rdev, DDC_MONID, 0, 0);
735                 rdev->i2c_bus[3] = radeon_i2c_create(dev, &i2c, "MONID");
736         } else {
737                 /* 0x68 */
738                 i2c = combios_setup_i2c_bus(rdev, DDC_MONID, 0, 0);
739                 rdev->i2c_bus[3] = radeon_i2c_create(dev, &i2c, "MONID");
740                 /* 0x6c */
741                 i2c = combios_setup_i2c_bus(rdev, DDC_CRT2, 0, 0);
742                 rdev->i2c_bus[4] = radeon_i2c_create(dev, &i2c, "CRT2_DDC");
743         }
744 }
745
746 bool radeon_combios_get_clock_info(struct drm_device *dev)
747 {
748         struct radeon_device *rdev = dev->dev_private;
749         uint16_t pll_info;
750         struct radeon_pll *p1pll = &rdev->clock.p1pll;
751         struct radeon_pll *p2pll = &rdev->clock.p2pll;
752         struct radeon_pll *spll = &rdev->clock.spll;
753         struct radeon_pll *mpll = &rdev->clock.mpll;
754         int8_t rev;
755         uint16_t sclk, mclk;
756
757         pll_info = combios_get_table_offset(dev, COMBIOS_PLL_INFO_TABLE);
758         if (pll_info) {
759                 rev = RBIOS8(pll_info);
760
761                 /* pixel clocks */
762                 p1pll->reference_freq = RBIOS16(pll_info + 0xe);
763                 p1pll->reference_div = RBIOS16(pll_info + 0x10);
764                 p1pll->pll_out_min = RBIOS32(pll_info + 0x12);
765                 p1pll->pll_out_max = RBIOS32(pll_info + 0x16);
766                 p1pll->lcd_pll_out_min = p1pll->pll_out_min;
767                 p1pll->lcd_pll_out_max = p1pll->pll_out_max;
768
769                 if (rev > 9) {
770                         p1pll->pll_in_min = RBIOS32(pll_info + 0x36);
771                         p1pll->pll_in_max = RBIOS32(pll_info + 0x3a);
772                 } else {
773                         p1pll->pll_in_min = 40;
774                         p1pll->pll_in_max = 500;
775                 }
776                 *p2pll = *p1pll;
777
778                 /* system clock */
779                 spll->reference_freq = RBIOS16(pll_info + 0x1a);
780                 spll->reference_div = RBIOS16(pll_info + 0x1c);
781                 spll->pll_out_min = RBIOS32(pll_info + 0x1e);
782                 spll->pll_out_max = RBIOS32(pll_info + 0x22);
783
784                 if (rev > 10) {
785                         spll->pll_in_min = RBIOS32(pll_info + 0x48);
786                         spll->pll_in_max = RBIOS32(pll_info + 0x4c);
787                 } else {
788                         /* ??? */
789                         spll->pll_in_min = 40;
790                         spll->pll_in_max = 500;
791                 }
792
793                 /* memory clock */
794                 mpll->reference_freq = RBIOS16(pll_info + 0x26);
795                 mpll->reference_div = RBIOS16(pll_info + 0x28);
796                 mpll->pll_out_min = RBIOS32(pll_info + 0x2a);
797                 mpll->pll_out_max = RBIOS32(pll_info + 0x2e);
798
799                 if (rev > 10) {
800                         mpll->pll_in_min = RBIOS32(pll_info + 0x5a);
801                         mpll->pll_in_max = RBIOS32(pll_info + 0x5e);
802                 } else {
803                         /* ??? */
804                         mpll->pll_in_min = 40;
805                         mpll->pll_in_max = 500;
806                 }
807
808                 /* default sclk/mclk */
809                 sclk = RBIOS16(pll_info + 0xa);
810                 mclk = RBIOS16(pll_info + 0x8);
811                 if (sclk == 0)
812                         sclk = 200 * 100;
813                 if (mclk == 0)
814                         mclk = 200 * 100;
815
816                 rdev->clock.default_sclk = sclk;
817                 rdev->clock.default_mclk = mclk;
818
819                 if (RBIOS32(pll_info + 0x16))
820                         rdev->clock.max_pixel_clock = RBIOS32(pll_info + 0x16);
821                 else
822                         rdev->clock.max_pixel_clock = 35000; /* might need something asic specific */
823
824                 return true;
825         }
826         return false;
827 }
828
829 bool radeon_combios_sideport_present(struct radeon_device *rdev)
830 {
831         struct drm_device *dev = rdev->ddev;
832         u16 igp_info;
833
834         /* sideport is AMD only */
835         if (rdev->family == CHIP_RS400)
836                 return false;
837
838         igp_info = combios_get_table_offset(dev, COMBIOS_INTEGRATED_SYSTEM_INFO_TABLE);
839
840         if (igp_info) {
841                 if (RBIOS16(igp_info + 0x4))
842                         return true;
843         }
844         return false;
845 }
846
847 static const uint32_t default_primarydac_adj[CHIP_LAST] = {
848         0x00000808,             /* r100  */
849         0x00000808,             /* rv100 */
850         0x00000808,             /* rs100 */
851         0x00000808,             /* rv200 */
852         0x00000808,             /* rs200 */
853         0x00000808,             /* r200  */
854         0x00000808,             /* rv250 */
855         0x00000000,             /* rs300 */
856         0x00000808,             /* rv280 */
857         0x00000808,             /* r300  */
858         0x00000808,             /* r350  */
859         0x00000808,             /* rv350 */
860         0x00000808,             /* rv380 */
861         0x00000808,             /* r420  */
862         0x00000808,             /* r423  */
863         0x00000808,             /* rv410 */
864         0x00000000,             /* rs400 */
865         0x00000000,             /* rs480 */
866 };
867
868 static void radeon_legacy_get_primary_dac_info_from_table(struct radeon_device *rdev,
869                                                           struct radeon_encoder_primary_dac *p_dac)
870 {
871         p_dac->ps2_pdac_adj = default_primarydac_adj[rdev->family];
872         return;
873 }
874
875 struct radeon_encoder_primary_dac *radeon_combios_get_primary_dac_info(struct
876                                                                        radeon_encoder
877                                                                        *encoder)
878 {
879         struct drm_device *dev = encoder->base.dev;
880         struct radeon_device *rdev = dev->dev_private;
881         uint16_t dac_info;
882         uint8_t rev, bg, dac;
883         struct radeon_encoder_primary_dac *p_dac = NULL;
884         int found = 0;
885
886         p_dac = kzalloc(sizeof(struct radeon_encoder_primary_dac),
887                         GFP_KERNEL);
888
889         if (!p_dac)
890                 return NULL;
891
892         /* check CRT table */
893         dac_info = combios_get_table_offset(dev, COMBIOS_CRT_INFO_TABLE);
894         if (dac_info) {
895                 rev = RBIOS8(dac_info) & 0x3;
896                 if (rev < 2) {
897                         bg = RBIOS8(dac_info + 0x2) & 0xf;
898                         dac = (RBIOS8(dac_info + 0x2) >> 4) & 0xf;
899                         p_dac->ps2_pdac_adj = (bg << 8) | (dac);
900                 } else {
901                         bg = RBIOS8(dac_info + 0x2) & 0xf;
902                         dac = RBIOS8(dac_info + 0x3) & 0xf;
903                         p_dac->ps2_pdac_adj = (bg << 8) | (dac);
904                 }
905                 /* if the values are zeros, use the table */
906                 if ((dac == 0) || (bg == 0))
907                         found = 0;
908                 else
909                         found = 1;
910         }
911
912         /* quirks */
913         /* Radeon 7000 (RV100) */
914         if (((dev->pdev->device == 0x5159) &&
915             (dev->pdev->subsystem_vendor == 0x174B) &&
916             (dev->pdev->subsystem_device == 0x7c28)) ||
917         /* Radeon 9100 (R200) */
918            ((dev->pdev->device == 0x514D) &&
919             (dev->pdev->subsystem_vendor == 0x174B) &&
920             (dev->pdev->subsystem_device == 0x7149))) {
921                 /* vbios value is bad, use the default */
922                 found = 0;
923         }
924
925         if (!found) /* fallback to defaults */
926                 radeon_legacy_get_primary_dac_info_from_table(rdev, p_dac);
927
928         return p_dac;
929 }
930
931 enum radeon_tv_std
932 radeon_combios_get_tv_info(struct radeon_device *rdev)
933 {
934         struct drm_device *dev = rdev->ddev;
935         uint16_t tv_info;
936         enum radeon_tv_std tv_std = TV_STD_NTSC;
937
938         tv_info = combios_get_table_offset(dev, COMBIOS_TV_INFO_TABLE);
939         if (tv_info) {
940                 if (RBIOS8(tv_info + 6) == 'T') {
941                         switch (RBIOS8(tv_info + 7) & 0xf) {
942                         case 1:
943                                 tv_std = TV_STD_NTSC;
944                                 DRM_DEBUG_KMS("Default TV standard: NTSC\n");
945                                 break;
946                         case 2:
947                                 tv_std = TV_STD_PAL;
948                                 DRM_DEBUG_KMS("Default TV standard: PAL\n");
949                                 break;
950                         case 3:
951                                 tv_std = TV_STD_PAL_M;
952                                 DRM_DEBUG_KMS("Default TV standard: PAL-M\n");
953                                 break;
954                         case 4:
955                                 tv_std = TV_STD_PAL_60;
956                                 DRM_DEBUG_KMS("Default TV standard: PAL-60\n");
957                                 break;
958                         case 5:
959                                 tv_std = TV_STD_NTSC_J;
960                                 DRM_DEBUG_KMS("Default TV standard: NTSC-J\n");
961                                 break;
962                         case 6:
963                                 tv_std = TV_STD_SCART_PAL;
964                                 DRM_DEBUG_KMS("Default TV standard: SCART-PAL\n");
965                                 break;
966                         default:
967                                 tv_std = TV_STD_NTSC;
968                                 DRM_DEBUG_KMS
969                                     ("Unknown TV standard; defaulting to NTSC\n");
970                                 break;
971                         }
972
973                         switch ((RBIOS8(tv_info + 9) >> 2) & 0x3) {
974                         case 0:
975                                 DRM_DEBUG_KMS("29.498928713 MHz TV ref clk\n");
976                                 break;
977                         case 1:
978                                 DRM_DEBUG_KMS("28.636360000 MHz TV ref clk\n");
979                                 break;
980                         case 2:
981                                 DRM_DEBUG_KMS("14.318180000 MHz TV ref clk\n");
982                                 break;
983                         case 3:
984                                 DRM_DEBUG_KMS("27.000000000 MHz TV ref clk\n");
985                                 break;
986                         default:
987                                 break;
988                         }
989                 }
990         }
991         return tv_std;
992 }
993
994 static const uint32_t default_tvdac_adj[CHIP_LAST] = {
995         0x00000000,             /* r100  */
996         0x00280000,             /* rv100 */
997         0x00000000,             /* rs100 */
998         0x00880000,             /* rv200 */
999         0x00000000,             /* rs200 */
1000         0x00000000,             /* r200  */
1001         0x00770000,             /* rv250 */
1002         0x00290000,             /* rs300 */
1003         0x00560000,             /* rv280 */
1004         0x00780000,             /* r300  */
1005         0x00770000,             /* r350  */
1006         0x00780000,             /* rv350 */
1007         0x00780000,             /* rv380 */
1008         0x01080000,             /* r420  */
1009         0x01080000,             /* r423  */
1010         0x01080000,             /* rv410 */
1011         0x00780000,             /* rs400 */
1012         0x00780000,             /* rs480 */
1013 };
1014
1015 static void radeon_legacy_get_tv_dac_info_from_table(struct radeon_device *rdev,
1016                                                      struct radeon_encoder_tv_dac *tv_dac)
1017 {
1018         tv_dac->ps2_tvdac_adj = default_tvdac_adj[rdev->family];
1019         if ((rdev->flags & RADEON_IS_MOBILITY) && (rdev->family == CHIP_RV250))
1020                 tv_dac->ps2_tvdac_adj = 0x00880000;
1021         tv_dac->pal_tvdac_adj = tv_dac->ps2_tvdac_adj;
1022         tv_dac->ntsc_tvdac_adj = tv_dac->ps2_tvdac_adj;
1023         return;
1024 }
1025
1026 struct radeon_encoder_tv_dac *radeon_combios_get_tv_dac_info(struct
1027                                                              radeon_encoder
1028                                                              *encoder)
1029 {
1030         struct drm_device *dev = encoder->base.dev;
1031         struct radeon_device *rdev = dev->dev_private;
1032         uint16_t dac_info;
1033         uint8_t rev, bg, dac;
1034         struct radeon_encoder_tv_dac *tv_dac = NULL;
1035         int found = 0;
1036
1037         tv_dac = kzalloc(sizeof(struct radeon_encoder_tv_dac), GFP_KERNEL);
1038         if (!tv_dac)
1039                 return NULL;
1040
1041         /* first check TV table */
1042         dac_info = combios_get_table_offset(dev, COMBIOS_TV_INFO_TABLE);
1043         if (dac_info) {
1044                 rev = RBIOS8(dac_info + 0x3);
1045                 if (rev > 4) {
1046                         bg = RBIOS8(dac_info + 0xc) & 0xf;
1047                         dac = RBIOS8(dac_info + 0xd) & 0xf;
1048                         tv_dac->ps2_tvdac_adj = (bg << 16) | (dac << 20);
1049
1050                         bg = RBIOS8(dac_info + 0xe) & 0xf;
1051                         dac = RBIOS8(dac_info + 0xf) & 0xf;
1052                         tv_dac->pal_tvdac_adj = (bg << 16) | (dac << 20);
1053
1054                         bg = RBIOS8(dac_info + 0x10) & 0xf;
1055                         dac = RBIOS8(dac_info + 0x11) & 0xf;
1056                         tv_dac->ntsc_tvdac_adj = (bg << 16) | (dac << 20);
1057                         /* if the values are all zeros, use the table */
1058                         if (tv_dac->ps2_tvdac_adj)
1059                                 found = 1;
1060                 } else if (rev > 1) {
1061                         bg = RBIOS8(dac_info + 0xc) & 0xf;
1062                         dac = (RBIOS8(dac_info + 0xc) >> 4) & 0xf;
1063                         tv_dac->ps2_tvdac_adj = (bg << 16) | (dac << 20);
1064
1065                         bg = RBIOS8(dac_info + 0xd) & 0xf;
1066                         dac = (RBIOS8(dac_info + 0xd) >> 4) & 0xf;
1067                         tv_dac->pal_tvdac_adj = (bg << 16) | (dac << 20);
1068
1069                         bg = RBIOS8(dac_info + 0xe) & 0xf;
1070                         dac = (RBIOS8(dac_info + 0xe) >> 4) & 0xf;
1071                         tv_dac->ntsc_tvdac_adj = (bg << 16) | (dac << 20);
1072                         /* if the values are all zeros, use the table */
1073                         if (tv_dac->ps2_tvdac_adj)
1074                                 found = 1;
1075                 }
1076                 tv_dac->tv_std = radeon_combios_get_tv_info(rdev);
1077         }
1078         if (!found) {
1079                 /* then check CRT table */
1080                 dac_info =
1081                     combios_get_table_offset(dev, COMBIOS_CRT_INFO_TABLE);
1082                 if (dac_info) {
1083                         rev = RBIOS8(dac_info) & 0x3;
1084                         if (rev < 2) {
1085                                 bg = RBIOS8(dac_info + 0x3) & 0xf;
1086                                 dac = (RBIOS8(dac_info + 0x3) >> 4) & 0xf;
1087                                 tv_dac->ps2_tvdac_adj =
1088                                     (bg << 16) | (dac << 20);
1089                                 tv_dac->pal_tvdac_adj = tv_dac->ps2_tvdac_adj;
1090                                 tv_dac->ntsc_tvdac_adj = tv_dac->ps2_tvdac_adj;
1091                                 /* if the values are all zeros, use the table */
1092                                 if (tv_dac->ps2_tvdac_adj)
1093                                         found = 1;
1094                         } else {
1095                                 bg = RBIOS8(dac_info + 0x4) & 0xf;
1096                                 dac = RBIOS8(dac_info + 0x5) & 0xf;
1097                                 tv_dac->ps2_tvdac_adj =
1098                                     (bg << 16) | (dac << 20);
1099                                 tv_dac->pal_tvdac_adj = tv_dac->ps2_tvdac_adj;
1100                                 tv_dac->ntsc_tvdac_adj = tv_dac->ps2_tvdac_adj;
1101                                 /* if the values are all zeros, use the table */
1102                                 if (tv_dac->ps2_tvdac_adj)
1103                                         found = 1;
1104                         }
1105                 } else {
1106                         DRM_INFO("No TV DAC info found in BIOS\n");
1107                 }
1108         }
1109
1110         if (!found) /* fallback to defaults */
1111                 radeon_legacy_get_tv_dac_info_from_table(rdev, tv_dac);
1112
1113         return tv_dac;
1114 }
1115
1116 static struct radeon_encoder_lvds *radeon_legacy_get_lvds_info_from_regs(struct
1117                                                                          radeon_device
1118                                                                          *rdev)
1119 {
1120         struct radeon_encoder_lvds *lvds = NULL;
1121         uint32_t fp_vert_stretch, fp_horz_stretch;
1122         uint32_t ppll_div_sel, ppll_val;
1123         uint32_t lvds_ss_gen_cntl = RREG32(RADEON_LVDS_SS_GEN_CNTL);
1124
1125         lvds = kzalloc(sizeof(struct radeon_encoder_lvds), GFP_KERNEL);
1126
1127         if (!lvds)
1128                 return NULL;
1129
1130         fp_vert_stretch = RREG32(RADEON_FP_VERT_STRETCH);
1131         fp_horz_stretch = RREG32(RADEON_FP_HORZ_STRETCH);
1132
1133         /* These should be fail-safe defaults, fingers crossed */
1134         lvds->panel_pwr_delay = 200;
1135         lvds->panel_vcc_delay = 2000;
1136
1137         lvds->lvds_gen_cntl = RREG32(RADEON_LVDS_GEN_CNTL);
1138         lvds->panel_digon_delay = (lvds_ss_gen_cntl >> RADEON_LVDS_PWRSEQ_DELAY1_SHIFT) & 0xf;
1139         lvds->panel_blon_delay = (lvds_ss_gen_cntl >> RADEON_LVDS_PWRSEQ_DELAY2_SHIFT) & 0xf;
1140
1141         if (fp_vert_stretch & RADEON_VERT_STRETCH_ENABLE)
1142                 lvds->native_mode.vdisplay =
1143                     ((fp_vert_stretch & RADEON_VERT_PANEL_SIZE) >>
1144                      RADEON_VERT_PANEL_SHIFT) + 1;
1145         else
1146                 lvds->native_mode.vdisplay =
1147                     (RREG32(RADEON_CRTC_V_TOTAL_DISP) >> 16) + 1;
1148
1149         if (fp_horz_stretch & RADEON_HORZ_STRETCH_ENABLE)
1150                 lvds->native_mode.hdisplay =
1151                     (((fp_horz_stretch & RADEON_HORZ_PANEL_SIZE) >>
1152                       RADEON_HORZ_PANEL_SHIFT) + 1) * 8;
1153         else
1154                 lvds->native_mode.hdisplay =
1155                     ((RREG32(RADEON_CRTC_H_TOTAL_DISP) >> 16) + 1) * 8;
1156
1157         if ((lvds->native_mode.hdisplay < 640) ||
1158             (lvds->native_mode.vdisplay < 480)) {
1159                 lvds->native_mode.hdisplay = 640;
1160                 lvds->native_mode.vdisplay = 480;
1161         }
1162
1163         ppll_div_sel = RREG8(RADEON_CLOCK_CNTL_INDEX + 1) & 0x3;
1164         ppll_val = RREG32_PLL(RADEON_PPLL_DIV_0 + ppll_div_sel);
1165         if ((ppll_val & 0x000707ff) == 0x1bb)
1166                 lvds->use_bios_dividers = false;
1167         else {
1168                 lvds->panel_ref_divider =
1169                     RREG32_PLL(RADEON_PPLL_REF_DIV) & 0x3ff;
1170                 lvds->panel_post_divider = (ppll_val >> 16) & 0x7;
1171                 lvds->panel_fb_divider = ppll_val & 0x7ff;
1172
1173                 if ((lvds->panel_ref_divider != 0) &&
1174                     (lvds->panel_fb_divider > 3))
1175                         lvds->use_bios_dividers = true;
1176         }
1177         lvds->panel_vcc_delay = 200;
1178
1179         DRM_INFO("Panel info derived from registers\n");
1180         DRM_INFO("Panel Size %dx%d\n", lvds->native_mode.hdisplay,
1181                  lvds->native_mode.vdisplay);
1182
1183         return lvds;
1184 }
1185
1186 struct radeon_encoder_lvds *radeon_combios_get_lvds_info(struct radeon_encoder
1187                                                          *encoder)
1188 {
1189         struct drm_device *dev = encoder->base.dev;
1190         struct radeon_device *rdev = dev->dev_private;
1191         uint16_t lcd_info;
1192         uint32_t panel_setup;
1193         char stmp[30];
1194         int tmp, i;
1195         struct radeon_encoder_lvds *lvds = NULL;
1196
1197         lcd_info = combios_get_table_offset(dev, COMBIOS_LCD_INFO_TABLE);
1198
1199         if (lcd_info) {
1200                 lvds = kzalloc(sizeof(struct radeon_encoder_lvds), GFP_KERNEL);
1201
1202                 if (!lvds)
1203                         return NULL;
1204
1205                 for (i = 0; i < 24; i++)
1206                         stmp[i] = RBIOS8(lcd_info + i + 1);
1207                 stmp[24] = 0;
1208
1209                 DRM_INFO("Panel ID String: %s\n", stmp);
1210
1211                 lvds->native_mode.hdisplay = RBIOS16(lcd_info + 0x19);
1212                 lvds->native_mode.vdisplay = RBIOS16(lcd_info + 0x1b);
1213
1214                 DRM_INFO("Panel Size %dx%d\n", lvds->native_mode.hdisplay,
1215                          lvds->native_mode.vdisplay);
1216
1217                 lvds->panel_vcc_delay = RBIOS16(lcd_info + 0x2c);
1218                 lvds->panel_vcc_delay = min_t(u16, lvds->panel_vcc_delay, 2000);
1219
1220                 lvds->panel_pwr_delay = RBIOS8(lcd_info + 0x24);
1221                 lvds->panel_digon_delay = RBIOS16(lcd_info + 0x38) & 0xf;
1222                 lvds->panel_blon_delay = (RBIOS16(lcd_info + 0x38) >> 4) & 0xf;
1223
1224                 lvds->panel_ref_divider = RBIOS16(lcd_info + 0x2e);
1225                 lvds->panel_post_divider = RBIOS8(lcd_info + 0x30);
1226                 lvds->panel_fb_divider = RBIOS16(lcd_info + 0x31);
1227                 if ((lvds->panel_ref_divider != 0) &&
1228                     (lvds->panel_fb_divider > 3))
1229                         lvds->use_bios_dividers = true;
1230
1231                 panel_setup = RBIOS32(lcd_info + 0x39);
1232                 lvds->lvds_gen_cntl = 0xff00;
1233                 if (panel_setup & 0x1)
1234                         lvds->lvds_gen_cntl |= RADEON_LVDS_PANEL_FORMAT;
1235
1236                 if ((panel_setup >> 4) & 0x1)
1237                         lvds->lvds_gen_cntl |= RADEON_LVDS_PANEL_TYPE;
1238
1239                 switch ((panel_setup >> 8) & 0x7) {
1240                 case 0:
1241                         lvds->lvds_gen_cntl |= RADEON_LVDS_NO_FM;
1242                         break;
1243                 case 1:
1244                         lvds->lvds_gen_cntl |= RADEON_LVDS_2_GREY;
1245                         break;
1246                 case 2:
1247                         lvds->lvds_gen_cntl |= RADEON_LVDS_4_GREY;
1248                         break;
1249                 default:
1250                         break;
1251                 }
1252
1253                 if ((panel_setup >> 16) & 0x1)
1254                         lvds->lvds_gen_cntl |= RADEON_LVDS_FP_POL_LOW;
1255
1256                 if ((panel_setup >> 17) & 0x1)
1257                         lvds->lvds_gen_cntl |= RADEON_LVDS_LP_POL_LOW;
1258
1259                 if ((panel_setup >> 18) & 0x1)
1260                         lvds->lvds_gen_cntl |= RADEON_LVDS_DTM_POL_LOW;
1261
1262                 if ((panel_setup >> 23) & 0x1)
1263                         lvds->lvds_gen_cntl |= RADEON_LVDS_BL_CLK_SEL;
1264
1265                 lvds->lvds_gen_cntl |= (panel_setup & 0xf0000000);
1266
1267                 for (i = 0; i < 32; i++) {
1268                         tmp = RBIOS16(lcd_info + 64 + i * 2);
1269                         if (tmp == 0)
1270                                 break;
1271
1272                         if ((RBIOS16(tmp) == lvds->native_mode.hdisplay) &&
1273                             (RBIOS16(tmp + 2) == lvds->native_mode.vdisplay)) {
1274                                 u32 hss = (RBIOS16(tmp + 21) - RBIOS16(tmp + 19) - 1) * 8;
1275
1276                                 if (hss > lvds->native_mode.hdisplay)
1277                                         hss = (10 - 1) * 8;
1278
1279                                 lvds->native_mode.htotal = lvds->native_mode.hdisplay +
1280                                         (RBIOS16(tmp + 17) - RBIOS16(tmp + 19)) * 8;
1281                                 lvds->native_mode.hsync_start = lvds->native_mode.hdisplay +
1282                                         hss;
1283                                 lvds->native_mode.hsync_end = lvds->native_mode.hsync_start +
1284                                         (RBIOS8(tmp + 23) * 8);
1285
1286                                 lvds->native_mode.vtotal = lvds->native_mode.vdisplay +
1287                                         (RBIOS16(tmp + 24) - RBIOS16(tmp + 26));
1288                                 lvds->native_mode.vsync_start = lvds->native_mode.vdisplay +
1289                                         ((RBIOS16(tmp + 28) & 0x7ff) - RBIOS16(tmp + 26));
1290                                 lvds->native_mode.vsync_end = lvds->native_mode.vsync_start +
1291                                         ((RBIOS16(tmp + 28) & 0xf800) >> 11);
1292
1293                                 lvds->native_mode.clock = RBIOS16(tmp + 9) * 10;
1294                                 lvds->native_mode.flags = 0;
1295                                 /* set crtc values */
1296                                 drm_mode_set_crtcinfo(&lvds->native_mode, CRTC_INTERLACE_HALVE_V);
1297
1298                         }
1299                 }
1300         } else {
1301                 DRM_INFO("No panel info found in BIOS\n");
1302                 lvds = radeon_legacy_get_lvds_info_from_regs(rdev);
1303         }
1304
1305         if (lvds)
1306                 encoder->native_mode = lvds->native_mode;
1307         return lvds;
1308 }
1309
1310 static const struct radeon_tmds_pll default_tmds_pll[CHIP_LAST][4] = {
1311         {{12000, 0xa1b}, {0xffffffff, 0xa3f}, {0, 0}, {0, 0}},  /* CHIP_R100  */
1312         {{12000, 0xa1b}, {0xffffffff, 0xa3f}, {0, 0}, {0, 0}},  /* CHIP_RV100 */
1313         {{0, 0}, {0, 0}, {0, 0}, {0, 0}},       /* CHIP_RS100 */
1314         {{15000, 0xa1b}, {0xffffffff, 0xa3f}, {0, 0}, {0, 0}},  /* CHIP_RV200 */
1315         {{12000, 0xa1b}, {0xffffffff, 0xa3f}, {0, 0}, {0, 0}},  /* CHIP_RS200 */
1316         {{15000, 0xa1b}, {0xffffffff, 0xa3f}, {0, 0}, {0, 0}},  /* CHIP_R200  */
1317         {{15500, 0x81b}, {0xffffffff, 0x83f}, {0, 0}, {0, 0}},  /* CHIP_RV250 */
1318         {{0, 0}, {0, 0}, {0, 0}, {0, 0}},       /* CHIP_RS300 */
1319         {{13000, 0x400f4}, {15000, 0x400f7}, {0xffffffff, 0x40111}, {0, 0}},    /* CHIP_RV280 */
1320         {{0xffffffff, 0xb01cb}, {0, 0}, {0, 0}, {0, 0}},        /* CHIP_R300  */
1321         {{0xffffffff, 0xb01cb}, {0, 0}, {0, 0}, {0, 0}},        /* CHIP_R350  */
1322         {{15000, 0xb0155}, {0xffffffff, 0xb01cb}, {0, 0}, {0, 0}},      /* CHIP_RV350 */
1323         {{15000, 0xb0155}, {0xffffffff, 0xb01cb}, {0, 0}, {0, 0}},      /* CHIP_RV380 */
1324         {{0xffffffff, 0xb01cb}, {0, 0}, {0, 0}, {0, 0}},        /* CHIP_R420  */
1325         {{0xffffffff, 0xb01cb}, {0, 0}, {0, 0}, {0, 0}},        /* CHIP_R423  */
1326         {{0xffffffff, 0xb01cb}, {0, 0}, {0, 0}, {0, 0}},        /* CHIP_RV410 */
1327         { {0, 0}, {0, 0}, {0, 0}, {0, 0} },     /* CHIP_RS400 */
1328         { {0, 0}, {0, 0}, {0, 0}, {0, 0} },     /* CHIP_RS480 */
1329 };
1330
1331 bool radeon_legacy_get_tmds_info_from_table(struct radeon_encoder *encoder,
1332                                             struct radeon_encoder_int_tmds *tmds)
1333 {
1334         struct drm_device *dev = encoder->base.dev;
1335         struct radeon_device *rdev = dev->dev_private;
1336         int i;
1337
1338         for (i = 0; i < 4; i++) {
1339                 tmds->tmds_pll[i].value =
1340                         default_tmds_pll[rdev->family][i].value;
1341                 tmds->tmds_pll[i].freq = default_tmds_pll[rdev->family][i].freq;
1342         }
1343
1344         return true;
1345 }
1346
1347 bool radeon_legacy_get_tmds_info_from_combios(struct radeon_encoder *encoder,
1348                                               struct radeon_encoder_int_tmds *tmds)
1349 {
1350         struct drm_device *dev = encoder->base.dev;
1351         struct radeon_device *rdev = dev->dev_private;
1352         uint16_t tmds_info;
1353         int i, n;
1354         uint8_t ver;
1355
1356         tmds_info = combios_get_table_offset(dev, COMBIOS_DFP_INFO_TABLE);
1357
1358         if (tmds_info) {
1359                 ver = RBIOS8(tmds_info);
1360                 DRM_DEBUG_KMS("DFP table revision: %d\n", ver);
1361                 if (ver == 3) {
1362                         n = RBIOS8(tmds_info + 5) + 1;
1363                         if (n > 4)
1364                                 n = 4;
1365                         for (i = 0; i < n; i++) {
1366                                 tmds->tmds_pll[i].value =
1367                                     RBIOS32(tmds_info + i * 10 + 0x08);
1368                                 tmds->tmds_pll[i].freq =
1369                                     RBIOS16(tmds_info + i * 10 + 0x10);
1370                                 DRM_DEBUG_KMS("TMDS PLL From COMBIOS %u %x\n",
1371                                           tmds->tmds_pll[i].freq,
1372                                           tmds->tmds_pll[i].value);
1373                         }
1374                 } else if (ver == 4) {
1375                         int stride = 0;
1376                         n = RBIOS8(tmds_info + 5) + 1;
1377                         if (n > 4)
1378                                 n = 4;
1379                         for (i = 0; i < n; i++) {
1380                                 tmds->tmds_pll[i].value =
1381                                     RBIOS32(tmds_info + stride + 0x08);
1382                                 tmds->tmds_pll[i].freq =
1383                                     RBIOS16(tmds_info + stride + 0x10);
1384                                 if (i == 0)
1385                                         stride += 10;
1386                                 else
1387                                         stride += 6;
1388                                 DRM_DEBUG_KMS("TMDS PLL From COMBIOS %u %x\n",
1389                                           tmds->tmds_pll[i].freq,
1390                                           tmds->tmds_pll[i].value);
1391                         }
1392                 }
1393         } else {
1394                 DRM_INFO("No TMDS info found in BIOS\n");
1395                 return false;
1396         }
1397         return true;
1398 }
1399
1400 bool radeon_legacy_get_ext_tmds_info_from_table(struct radeon_encoder *encoder,
1401                                                 struct radeon_encoder_ext_tmds *tmds)
1402 {
1403         struct drm_device *dev = encoder->base.dev;
1404         struct radeon_device *rdev = dev->dev_private;
1405         struct radeon_i2c_bus_rec i2c_bus;
1406
1407         /* default for macs */
1408         i2c_bus = combios_setup_i2c_bus(rdev, DDC_MONID, 0, 0);
1409         tmds->i2c_bus = radeon_i2c_lookup(rdev, &i2c_bus);
1410
1411         /* XXX some macs have duallink chips */
1412         switch (rdev->mode_info.connector_table) {
1413         case CT_POWERBOOK_EXTERNAL:
1414         case CT_MINI_EXTERNAL:
1415         default:
1416                 tmds->dvo_chip = DVO_SIL164;
1417                 tmds->slave_addr = 0x70 >> 1; /* 7 bit addressing */
1418                 break;
1419         }
1420
1421         return true;
1422 }
1423
1424 bool radeon_legacy_get_ext_tmds_info_from_combios(struct radeon_encoder *encoder,
1425                                                   struct radeon_encoder_ext_tmds *tmds)
1426 {
1427         struct drm_device *dev = encoder->base.dev;
1428         struct radeon_device *rdev = dev->dev_private;
1429         uint16_t offset;
1430         uint8_t ver;
1431         enum radeon_combios_ddc gpio;
1432         struct radeon_i2c_bus_rec i2c_bus;
1433
1434         tmds->i2c_bus = NULL;
1435         if (rdev->flags & RADEON_IS_IGP) {
1436                 i2c_bus = combios_setup_i2c_bus(rdev, DDC_MONID, 0, 0);
1437                 tmds->i2c_bus = radeon_i2c_lookup(rdev, &i2c_bus);
1438                 tmds->dvo_chip = DVO_SIL164;
1439                 tmds->slave_addr = 0x70 >> 1; /* 7 bit addressing */
1440         } else {
1441                 offset = combios_get_table_offset(dev, COMBIOS_EXT_TMDS_INFO_TABLE);
1442                 if (offset) {
1443                         ver = RBIOS8(offset);
1444                         DRM_DEBUG_KMS("External TMDS Table revision: %d\n", ver);
1445                         tmds->slave_addr = RBIOS8(offset + 4 + 2);
1446                         tmds->slave_addr >>= 1; /* 7 bit addressing */
1447                         gpio = RBIOS8(offset + 4 + 3);
1448                         if (gpio == DDC_LCD) {
1449                                 /* MM i2c */
1450                                 i2c_bus.valid = true;
1451                                 i2c_bus.hw_capable = true;
1452                                 i2c_bus.mm_i2c = true;
1453                                 i2c_bus.i2c_id = 0xa0;
1454                         } else
1455                                 i2c_bus = combios_setup_i2c_bus(rdev, gpio, 0, 0);
1456                         tmds->i2c_bus = radeon_i2c_lookup(rdev, &i2c_bus);
1457                 }
1458         }
1459
1460         if (!tmds->i2c_bus) {
1461                 DRM_INFO("No valid Ext TMDS info found in BIOS\n");
1462                 return false;
1463         }
1464
1465         return true;
1466 }
1467
1468 bool radeon_get_legacy_connector_info_from_table(struct drm_device *dev)
1469 {
1470         struct radeon_device *rdev = dev->dev_private;
1471         struct radeon_i2c_bus_rec ddc_i2c;
1472         struct radeon_hpd hpd;
1473
1474         rdev->mode_info.connector_table = radeon_connector_table;
1475         if (rdev->mode_info.connector_table == CT_NONE) {
1476 #ifdef CONFIG_PPC_PMAC
1477                 if (of_machine_is_compatible("PowerBook3,3")) {
1478                         /* powerbook with VGA */
1479                         rdev->mode_info.connector_table = CT_POWERBOOK_VGA;
1480                 } else if (of_machine_is_compatible("PowerBook3,4") ||
1481                            of_machine_is_compatible("PowerBook3,5")) {
1482                         /* powerbook with internal tmds */
1483                         rdev->mode_info.connector_table = CT_POWERBOOK_INTERNAL;
1484                 } else if (of_machine_is_compatible("PowerBook5,1") ||
1485                            of_machine_is_compatible("PowerBook5,2") ||
1486                            of_machine_is_compatible("PowerBook5,3") ||
1487                            of_machine_is_compatible("PowerBook5,4") ||
1488                            of_machine_is_compatible("PowerBook5,5")) {
1489                         /* powerbook with external single link tmds (sil164) */
1490                         rdev->mode_info.connector_table = CT_POWERBOOK_EXTERNAL;
1491                 } else if (of_machine_is_compatible("PowerBook5,6")) {
1492                         /* powerbook with external dual or single link tmds */
1493                         rdev->mode_info.connector_table = CT_POWERBOOK_EXTERNAL;
1494                 } else if (of_machine_is_compatible("PowerBook5,7") ||
1495                            of_machine_is_compatible("PowerBook5,8") ||
1496                            of_machine_is_compatible("PowerBook5,9")) {
1497                         /* PowerBook6,2 ? */
1498                         /* powerbook with external dual link tmds (sil1178?) */
1499                         rdev->mode_info.connector_table = CT_POWERBOOK_EXTERNAL;
1500                 } else if (of_machine_is_compatible("PowerBook4,1") ||
1501                            of_machine_is_compatible("PowerBook4,2") ||
1502                            of_machine_is_compatible("PowerBook4,3") ||
1503                            of_machine_is_compatible("PowerBook6,3") ||
1504                            of_machine_is_compatible("PowerBook6,5") ||
1505                            of_machine_is_compatible("PowerBook6,7")) {
1506                         /* ibook */
1507                         rdev->mode_info.connector_table = CT_IBOOK;
1508                 } else if (of_machine_is_compatible("PowerMac3,5")) {
1509                         /* PowerMac G4 Silver radeon 7500 */
1510                         rdev->mode_info.connector_table = CT_MAC_G4_SILVER;
1511                 } else if (of_machine_is_compatible("PowerMac4,4")) {
1512                         /* emac */
1513                         rdev->mode_info.connector_table = CT_EMAC;
1514                 } else if (of_machine_is_compatible("PowerMac10,1")) {
1515                         /* mini with internal tmds */
1516                         rdev->mode_info.connector_table = CT_MINI_INTERNAL;
1517                 } else if (of_machine_is_compatible("PowerMac10,2")) {
1518                         /* mini with external tmds */
1519                         rdev->mode_info.connector_table = CT_MINI_EXTERNAL;
1520                 } else if (of_machine_is_compatible("PowerMac12,1")) {
1521                         /* PowerMac8,1 ? */
1522                         /* imac g5 isight */
1523                         rdev->mode_info.connector_table = CT_IMAC_G5_ISIGHT;
1524                 } else if ((rdev->pdev->device == 0x4a48) &&
1525                            (rdev->pdev->subsystem_vendor == 0x1002) &&
1526                            (rdev->pdev->subsystem_device == 0x4a48)) {
1527                         /* Mac X800 */
1528                         rdev->mode_info.connector_table = CT_MAC_X800;
1529                 } else if ((of_machine_is_compatible("PowerMac7,2") ||
1530                             of_machine_is_compatible("PowerMac7,3")) &&
1531                            (rdev->pdev->device == 0x4150) &&
1532                            (rdev->pdev->subsystem_vendor == 0x1002) &&
1533                            (rdev->pdev->subsystem_device == 0x4150)) {
1534                         /* Mac G5 tower 9600 */
1535                         rdev->mode_info.connector_table = CT_MAC_G5_9600;
1536                 } else if ((rdev->pdev->device == 0x4c66) &&
1537                            (rdev->pdev->subsystem_vendor == 0x1002) &&
1538                            (rdev->pdev->subsystem_device == 0x4c66)) {
1539                         /* SAM440ep RV250 embedded board */
1540                         rdev->mode_info.connector_table = CT_SAM440EP;
1541                 } else
1542 #endif /* CONFIG_PPC_PMAC */
1543 #ifdef CONFIG_PPC64
1544                 if (ASIC_IS_RN50(rdev))
1545                         rdev->mode_info.connector_table = CT_RN50_POWER;
1546                 else
1547 #endif
1548                         rdev->mode_info.connector_table = CT_GENERIC;
1549         }
1550
1551         switch (rdev->mode_info.connector_table) {
1552         case CT_GENERIC:
1553                 DRM_INFO("Connector Table: %d (generic)\n",
1554                          rdev->mode_info.connector_table);
1555                 /* these are the most common settings */
1556                 if (rdev->flags & RADEON_SINGLE_CRTC) {
1557                         /* VGA - primary dac */
1558                         ddc_i2c = combios_setup_i2c_bus(rdev, DDC_VGA, 0, 0);
1559                         hpd.hpd = RADEON_HPD_NONE;
1560                         radeon_add_legacy_encoder(dev,
1561                                                   radeon_get_encoder_enum(dev,
1562                                                                         ATOM_DEVICE_CRT1_SUPPORT,
1563                                                                         1),
1564                                                   ATOM_DEVICE_CRT1_SUPPORT);
1565                         radeon_add_legacy_connector(dev, 0,
1566                                                     ATOM_DEVICE_CRT1_SUPPORT,
1567                                                     DRM_MODE_CONNECTOR_VGA,
1568                                                     &ddc_i2c,
1569                                                     CONNECTOR_OBJECT_ID_VGA,
1570                                                     &hpd);
1571                 } else if (rdev->flags & RADEON_IS_MOBILITY) {
1572                         /* LVDS */
1573                         ddc_i2c = combios_setup_i2c_bus(rdev, DDC_NONE_DETECTED, 0, 0);
1574                         hpd.hpd = RADEON_HPD_NONE;
1575                         radeon_add_legacy_encoder(dev,
1576                                                   radeon_get_encoder_enum(dev,
1577                                                                         ATOM_DEVICE_LCD1_SUPPORT,
1578                                                                         0),
1579                                                   ATOM_DEVICE_LCD1_SUPPORT);
1580                         radeon_add_legacy_connector(dev, 0,
1581                                                     ATOM_DEVICE_LCD1_SUPPORT,
1582                                                     DRM_MODE_CONNECTOR_LVDS,
1583                                                     &ddc_i2c,
1584                                                     CONNECTOR_OBJECT_ID_LVDS,
1585                                                     &hpd);
1586
1587                         /* VGA - primary dac */
1588                         ddc_i2c = combios_setup_i2c_bus(rdev, DDC_VGA, 0, 0);
1589                         hpd.hpd = RADEON_HPD_NONE;
1590                         radeon_add_legacy_encoder(dev,
1591                                                   radeon_get_encoder_enum(dev,
1592                                                                         ATOM_DEVICE_CRT1_SUPPORT,
1593                                                                         1),
1594                                                   ATOM_DEVICE_CRT1_SUPPORT);
1595                         radeon_add_legacy_connector(dev, 1,
1596                                                     ATOM_DEVICE_CRT1_SUPPORT,
1597                                                     DRM_MODE_CONNECTOR_VGA,
1598                                                     &ddc_i2c,
1599                                                     CONNECTOR_OBJECT_ID_VGA,
1600                                                     &hpd);
1601                 } else {
1602                         /* DVI-I - tv dac, int tmds */
1603                         ddc_i2c = combios_setup_i2c_bus(rdev, DDC_DVI, 0, 0);
1604                         hpd.hpd = RADEON_HPD_1;
1605                         radeon_add_legacy_encoder(dev,
1606                                                   radeon_get_encoder_enum(dev,
1607                                                                         ATOM_DEVICE_DFP1_SUPPORT,
1608                                                                         0),
1609                                                   ATOM_DEVICE_DFP1_SUPPORT);
1610                         radeon_add_legacy_encoder(dev,
1611                                                   radeon_get_encoder_enum(dev,
1612                                                                         ATOM_DEVICE_CRT2_SUPPORT,
1613                                                                         2),
1614                                                   ATOM_DEVICE_CRT2_SUPPORT);
1615                         radeon_add_legacy_connector(dev, 0,
1616                                                     ATOM_DEVICE_DFP1_SUPPORT |
1617                                                     ATOM_DEVICE_CRT2_SUPPORT,
1618                                                     DRM_MODE_CONNECTOR_DVII,
1619                                                     &ddc_i2c,
1620                                                     CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I,
1621                                                     &hpd);
1622
1623                         /* VGA - primary dac */
1624                         ddc_i2c = combios_setup_i2c_bus(rdev, DDC_VGA, 0, 0);
1625                         hpd.hpd = RADEON_HPD_NONE;
1626                         radeon_add_legacy_encoder(dev,
1627                                                   radeon_get_encoder_enum(dev,
1628                                                                         ATOM_DEVICE_CRT1_SUPPORT,
1629                                                                         1),
1630                                                   ATOM_DEVICE_CRT1_SUPPORT);
1631                         radeon_add_legacy_connector(dev, 1,
1632                                                     ATOM_DEVICE_CRT1_SUPPORT,
1633                                                     DRM_MODE_CONNECTOR_VGA,
1634                                                     &ddc_i2c,
1635                                                     CONNECTOR_OBJECT_ID_VGA,
1636                                                     &hpd);
1637                 }
1638
1639                 if (rdev->family != CHIP_R100 && rdev->family != CHIP_R200) {
1640                         /* TV - tv dac */
1641                         ddc_i2c.valid = false;
1642                         hpd.hpd = RADEON_HPD_NONE;
1643                         radeon_add_legacy_encoder(dev,
1644                                                   radeon_get_encoder_enum(dev,
1645                                                                         ATOM_DEVICE_TV1_SUPPORT,
1646                                                                         2),
1647                                                   ATOM_DEVICE_TV1_SUPPORT);
1648                         radeon_add_legacy_connector(dev, 2,
1649                                                     ATOM_DEVICE_TV1_SUPPORT,
1650                                                     DRM_MODE_CONNECTOR_SVIDEO,
1651                                                     &ddc_i2c,
1652                                                     CONNECTOR_OBJECT_ID_SVIDEO,
1653                                                     &hpd);
1654                 }
1655                 break;
1656         case CT_IBOOK:
1657                 DRM_INFO("Connector Table: %d (ibook)\n",
1658                          rdev->mode_info.connector_table);
1659                 /* LVDS */
1660                 ddc_i2c = combios_setup_i2c_bus(rdev, DDC_DVI, 0, 0);
1661                 hpd.hpd = RADEON_HPD_NONE;
1662                 radeon_add_legacy_encoder(dev,
1663                                           radeon_get_encoder_enum(dev,
1664                                                                 ATOM_DEVICE_LCD1_SUPPORT,
1665                                                                 0),
1666                                           ATOM_DEVICE_LCD1_SUPPORT);
1667                 radeon_add_legacy_connector(dev, 0, ATOM_DEVICE_LCD1_SUPPORT,
1668                                             DRM_MODE_CONNECTOR_LVDS, &ddc_i2c,
1669                                             CONNECTOR_OBJECT_ID_LVDS,
1670                                             &hpd);
1671                 /* VGA - TV DAC */
1672                 ddc_i2c = combios_setup_i2c_bus(rdev, DDC_VGA, 0, 0);
1673                 hpd.hpd = RADEON_HPD_NONE;
1674                 radeon_add_legacy_encoder(dev,
1675                                           radeon_get_encoder_enum(dev,
1676                                                                 ATOM_DEVICE_CRT2_SUPPORT,
1677                                                                 2),
1678                                           ATOM_DEVICE_CRT2_SUPPORT);
1679                 radeon_add_legacy_connector(dev, 1, ATOM_DEVICE_CRT2_SUPPORT,
1680                                             DRM_MODE_CONNECTOR_VGA, &ddc_i2c,
1681                                             CONNECTOR_OBJECT_ID_VGA,
1682                                             &hpd);
1683                 /* TV - TV DAC */
1684                 ddc_i2c.valid = false;
1685                 hpd.hpd = RADEON_HPD_NONE;
1686                 radeon_add_legacy_encoder(dev,
1687                                           radeon_get_encoder_enum(dev,
1688                                                                 ATOM_DEVICE_TV1_SUPPORT,
1689                                                                 2),
1690                                           ATOM_DEVICE_TV1_SUPPORT);
1691                 radeon_add_legacy_connector(dev, 2, ATOM_DEVICE_TV1_SUPPORT,
1692                                             DRM_MODE_CONNECTOR_SVIDEO,
1693                                             &ddc_i2c,
1694                                             CONNECTOR_OBJECT_ID_SVIDEO,
1695                                             &hpd);
1696                 break;
1697         case CT_POWERBOOK_EXTERNAL:
1698                 DRM_INFO("Connector Table: %d (powerbook external tmds)\n",
1699                          rdev->mode_info.connector_table);
1700                 /* LVDS */
1701                 ddc_i2c = combios_setup_i2c_bus(rdev, DDC_DVI, 0, 0);
1702                 hpd.hpd = RADEON_HPD_NONE;
1703                 radeon_add_legacy_encoder(dev,
1704                                           radeon_get_encoder_enum(dev,
1705                                                                 ATOM_DEVICE_LCD1_SUPPORT,
1706                                                                 0),
1707                                           ATOM_DEVICE_LCD1_SUPPORT);
1708                 radeon_add_legacy_connector(dev, 0, ATOM_DEVICE_LCD1_SUPPORT,
1709                                             DRM_MODE_CONNECTOR_LVDS, &ddc_i2c,
1710                                             CONNECTOR_OBJECT_ID_LVDS,
1711                                             &hpd);
1712                 /* DVI-I - primary dac, ext tmds */
1713                 ddc_i2c = combios_setup_i2c_bus(rdev, DDC_VGA, 0, 0);
1714                 hpd.hpd = RADEON_HPD_2; /* ??? */
1715                 radeon_add_legacy_encoder(dev,
1716                                           radeon_get_encoder_enum(dev,
1717                                                                 ATOM_DEVICE_DFP2_SUPPORT,
1718                                                                 0),
1719                                           ATOM_DEVICE_DFP2_SUPPORT);
1720                 radeon_add_legacy_encoder(dev,
1721                                           radeon_get_encoder_enum(dev,
1722                                                                 ATOM_DEVICE_CRT1_SUPPORT,
1723                                                                 1),
1724                                           ATOM_DEVICE_CRT1_SUPPORT);
1725                 /* XXX some are SL */
1726                 radeon_add_legacy_connector(dev, 1,
1727                                             ATOM_DEVICE_DFP2_SUPPORT |
1728                                             ATOM_DEVICE_CRT1_SUPPORT,
1729                                             DRM_MODE_CONNECTOR_DVII, &ddc_i2c,
1730                                             CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_I,
1731                                             &hpd);
1732                 /* TV - TV DAC */
1733                 ddc_i2c.valid = false;
1734                 hpd.hpd = RADEON_HPD_NONE;
1735                 radeon_add_legacy_encoder(dev,
1736                                           radeon_get_encoder_enum(dev,
1737                                                                 ATOM_DEVICE_TV1_SUPPORT,
1738                                                                 2),
1739                                           ATOM_DEVICE_TV1_SUPPORT);
1740                 radeon_add_legacy_connector(dev, 2, ATOM_DEVICE_TV1_SUPPORT,
1741                                             DRM_MODE_CONNECTOR_SVIDEO,
1742                                             &ddc_i2c,
1743                                             CONNECTOR_OBJECT_ID_SVIDEO,
1744                                             &hpd);
1745                 break;
1746         case CT_POWERBOOK_INTERNAL:
1747                 DRM_INFO("Connector Table: %d (powerbook internal tmds)\n",
1748                          rdev->mode_info.connector_table);
1749                 /* LVDS */
1750                 ddc_i2c = combios_setup_i2c_bus(rdev, DDC_DVI, 0, 0);
1751                 hpd.hpd = RADEON_HPD_NONE;
1752                 radeon_add_legacy_encoder(dev,
1753                                           radeon_get_encoder_enum(dev,
1754                                                                 ATOM_DEVICE_LCD1_SUPPORT,
1755                                                                 0),
1756                                           ATOM_DEVICE_LCD1_SUPPORT);
1757                 radeon_add_legacy_connector(dev, 0, ATOM_DEVICE_LCD1_SUPPORT,
1758                                             DRM_MODE_CONNECTOR_LVDS, &ddc_i2c,
1759                                             CONNECTOR_OBJECT_ID_LVDS,
1760                                             &hpd);
1761                 /* DVI-I - primary dac, int tmds */
1762                 ddc_i2c = combios_setup_i2c_bus(rdev, DDC_VGA, 0, 0);
1763                 hpd.hpd = RADEON_HPD_1; /* ??? */
1764                 radeon_add_legacy_encoder(dev,
1765                                           radeon_get_encoder_enum(dev,
1766                                                                 ATOM_DEVICE_DFP1_SUPPORT,
1767                                                                 0),
1768                                           ATOM_DEVICE_DFP1_SUPPORT);
1769                 radeon_add_legacy_encoder(dev,
1770                                           radeon_get_encoder_enum(dev,
1771                                                                 ATOM_DEVICE_CRT1_SUPPORT,
1772                                                                 1),
1773                                           ATOM_DEVICE_CRT1_SUPPORT);
1774                 radeon_add_legacy_connector(dev, 1,
1775                                             ATOM_DEVICE_DFP1_SUPPORT |
1776                                             ATOM_DEVICE_CRT1_SUPPORT,
1777                                             DRM_MODE_CONNECTOR_DVII, &ddc_i2c,
1778                                             CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I,
1779                                             &hpd);
1780                 /* TV - TV DAC */
1781                 ddc_i2c.valid = false;
1782                 hpd.hpd = RADEON_HPD_NONE;
1783                 radeon_add_legacy_encoder(dev,
1784                                           radeon_get_encoder_enum(dev,
1785                                                                 ATOM_DEVICE_TV1_SUPPORT,
1786                                                                 2),
1787                                           ATOM_DEVICE_TV1_SUPPORT);
1788                 radeon_add_legacy_connector(dev, 2, ATOM_DEVICE_TV1_SUPPORT,
1789                                             DRM_MODE_CONNECTOR_SVIDEO,
1790                                             &ddc_i2c,
1791                                             CONNECTOR_OBJECT_ID_SVIDEO,
1792                                             &hpd);
1793                 break;
1794         case CT_POWERBOOK_VGA:
1795                 DRM_INFO("Connector Table: %d (powerbook vga)\n",
1796                          rdev->mode_info.connector_table);
1797                 /* LVDS */
1798                 ddc_i2c = combios_setup_i2c_bus(rdev, DDC_DVI, 0, 0);
1799                 hpd.hpd = RADEON_HPD_NONE;
1800                 radeon_add_legacy_encoder(dev,
1801                                           radeon_get_encoder_enum(dev,
1802                                                                 ATOM_DEVICE_LCD1_SUPPORT,
1803                                                                 0),
1804                                           ATOM_DEVICE_LCD1_SUPPORT);
1805                 radeon_add_legacy_connector(dev, 0, ATOM_DEVICE_LCD1_SUPPORT,
1806                                             DRM_MODE_CONNECTOR_LVDS, &ddc_i2c,
1807                                             CONNECTOR_OBJECT_ID_LVDS,
1808                                             &hpd);
1809                 /* VGA - primary dac */
1810                 ddc_i2c = combios_setup_i2c_bus(rdev, DDC_VGA, 0, 0);
1811                 hpd.hpd = RADEON_HPD_NONE;
1812                 radeon_add_legacy_encoder(dev,
1813                                           radeon_get_encoder_enum(dev,
1814                                                                 ATOM_DEVICE_CRT1_SUPPORT,
1815                                                                 1),
1816                                           ATOM_DEVICE_CRT1_SUPPORT);
1817                 radeon_add_legacy_connector(dev, 1, ATOM_DEVICE_CRT1_SUPPORT,
1818                                             DRM_MODE_CONNECTOR_VGA, &ddc_i2c,
1819                                             CONNECTOR_OBJECT_ID_VGA,
1820                                             &hpd);
1821                 /* TV - TV DAC */
1822                 ddc_i2c.valid = false;
1823                 hpd.hpd = RADEON_HPD_NONE;
1824                 radeon_add_legacy_encoder(dev,
1825                                           radeon_get_encoder_enum(dev,
1826                                                                 ATOM_DEVICE_TV1_SUPPORT,
1827                                                                 2),
1828                                           ATOM_DEVICE_TV1_SUPPORT);
1829                 radeon_add_legacy_connector(dev, 2, ATOM_DEVICE_TV1_SUPPORT,
1830                                             DRM_MODE_CONNECTOR_SVIDEO,
1831                                             &ddc_i2c,
1832                                             CONNECTOR_OBJECT_ID_SVIDEO,
1833                                             &hpd);
1834                 break;
1835         case CT_MINI_EXTERNAL:
1836                 DRM_INFO("Connector Table: %d (mini external tmds)\n",
1837                          rdev->mode_info.connector_table);
1838                 /* DVI-I - tv dac, ext tmds */
1839                 ddc_i2c = combios_setup_i2c_bus(rdev, DDC_CRT2, 0, 0);
1840                 hpd.hpd = RADEON_HPD_2; /* ??? */
1841                 radeon_add_legacy_encoder(dev,
1842                                           radeon_get_encoder_enum(dev,
1843                                                                 ATOM_DEVICE_DFP2_SUPPORT,
1844                                                                 0),
1845                                           ATOM_DEVICE_DFP2_SUPPORT);
1846                 radeon_add_legacy_encoder(dev,
1847                                           radeon_get_encoder_enum(dev,
1848                                                                 ATOM_DEVICE_CRT2_SUPPORT,
1849                                                                 2),
1850                                           ATOM_DEVICE_CRT2_SUPPORT);
1851                 /* XXX are any DL? */
1852                 radeon_add_legacy_connector(dev, 0,
1853                                             ATOM_DEVICE_DFP2_SUPPORT |
1854                                             ATOM_DEVICE_CRT2_SUPPORT,
1855                                             DRM_MODE_CONNECTOR_DVII, &ddc_i2c,
1856                                             CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I,
1857                                             &hpd);
1858                 /* TV - TV DAC */
1859                 ddc_i2c.valid = false;
1860                 hpd.hpd = RADEON_HPD_NONE;
1861                 radeon_add_legacy_encoder(dev,
1862                                           radeon_get_encoder_enum(dev,
1863                                                                 ATOM_DEVICE_TV1_SUPPORT,
1864                                                                 2),
1865                                           ATOM_DEVICE_TV1_SUPPORT);
1866                 radeon_add_legacy_connector(dev, 1, ATOM_DEVICE_TV1_SUPPORT,
1867                                             DRM_MODE_CONNECTOR_SVIDEO,
1868                                             &ddc_i2c,
1869                                             CONNECTOR_OBJECT_ID_SVIDEO,
1870                                             &hpd);
1871                 break;
1872         case CT_MINI_INTERNAL:
1873                 DRM_INFO("Connector Table: %d (mini internal tmds)\n",
1874                          rdev->mode_info.connector_table);
1875                 /* DVI-I - tv dac, int tmds */
1876                 ddc_i2c = combios_setup_i2c_bus(rdev, DDC_CRT2, 0, 0);
1877                 hpd.hpd = RADEON_HPD_1; /* ??? */
1878                 radeon_add_legacy_encoder(dev,
1879                                           radeon_get_encoder_enum(dev,
1880                                                                 ATOM_DEVICE_DFP1_SUPPORT,
1881                                                                 0),
1882                                           ATOM_DEVICE_DFP1_SUPPORT);
1883                 radeon_add_legacy_encoder(dev,
1884                                           radeon_get_encoder_enum(dev,
1885                                                                 ATOM_DEVICE_CRT2_SUPPORT,
1886                                                                 2),
1887                                           ATOM_DEVICE_CRT2_SUPPORT);
1888                 radeon_add_legacy_connector(dev, 0,
1889                                             ATOM_DEVICE_DFP1_SUPPORT |
1890                                             ATOM_DEVICE_CRT2_SUPPORT,
1891                                             DRM_MODE_CONNECTOR_DVII, &ddc_i2c,
1892                                             CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I,
1893                                             &hpd);
1894                 /* TV - TV DAC */
1895                 ddc_i2c.valid = false;
1896                 hpd.hpd = RADEON_HPD_NONE;
1897                 radeon_add_legacy_encoder(dev,
1898                                           radeon_get_encoder_enum(dev,
1899                                                                 ATOM_DEVICE_TV1_SUPPORT,
1900                                                                 2),
1901                                           ATOM_DEVICE_TV1_SUPPORT);
1902                 radeon_add_legacy_connector(dev, 1, ATOM_DEVICE_TV1_SUPPORT,
1903                                             DRM_MODE_CONNECTOR_SVIDEO,
1904                                             &ddc_i2c,
1905                                             CONNECTOR_OBJECT_ID_SVIDEO,
1906                                             &hpd);
1907                 break;
1908         case CT_IMAC_G5_ISIGHT:
1909                 DRM_INFO("Connector Table: %d (imac g5 isight)\n",
1910                          rdev->mode_info.connector_table);
1911                 /* DVI-D - int tmds */
1912                 ddc_i2c = combios_setup_i2c_bus(rdev, DDC_MONID, 0, 0);
1913                 hpd.hpd = RADEON_HPD_1; /* ??? */
1914                 radeon_add_legacy_encoder(dev,
1915                                           radeon_get_encoder_enum(dev,
1916                                                                 ATOM_DEVICE_DFP1_SUPPORT,
1917                                                                 0),
1918                                           ATOM_DEVICE_DFP1_SUPPORT);
1919                 radeon_add_legacy_connector(dev, 0, ATOM_DEVICE_DFP1_SUPPORT,
1920                                             DRM_MODE_CONNECTOR_DVID, &ddc_i2c,
1921                                             CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_D,
1922                                             &hpd);
1923                 /* VGA - tv dac */
1924                 ddc_i2c = combios_setup_i2c_bus(rdev, DDC_DVI, 0, 0);
1925                 hpd.hpd = RADEON_HPD_NONE;
1926                 radeon_add_legacy_encoder(dev,
1927                                           radeon_get_encoder_enum(dev,
1928                                                                 ATOM_DEVICE_CRT2_SUPPORT,
1929                                                                 2),
1930                                           ATOM_DEVICE_CRT2_SUPPORT);
1931                 radeon_add_legacy_connector(dev, 1, ATOM_DEVICE_CRT2_SUPPORT,
1932                                             DRM_MODE_CONNECTOR_VGA, &ddc_i2c,
1933                                             CONNECTOR_OBJECT_ID_VGA,
1934                                             &hpd);
1935                 /* TV - TV DAC */
1936                 ddc_i2c.valid = false;
1937                 hpd.hpd = RADEON_HPD_NONE;
1938                 radeon_add_legacy_encoder(dev,
1939                                           radeon_get_encoder_enum(dev,
1940                                                                 ATOM_DEVICE_TV1_SUPPORT,
1941                                                                 2),
1942                                           ATOM_DEVICE_TV1_SUPPORT);
1943                 radeon_add_legacy_connector(dev, 2, ATOM_DEVICE_TV1_SUPPORT,
1944                                             DRM_MODE_CONNECTOR_SVIDEO,
1945                                             &ddc_i2c,
1946                                             CONNECTOR_OBJECT_ID_SVIDEO,
1947                                             &hpd);
1948                 break;
1949         case CT_EMAC:
1950                 DRM_INFO("Connector Table: %d (emac)\n",
1951                          rdev->mode_info.connector_table);
1952                 /* VGA - primary dac */
1953                 ddc_i2c = combios_setup_i2c_bus(rdev, DDC_VGA, 0, 0);
1954                 hpd.hpd = RADEON_HPD_NONE;
1955                 radeon_add_legacy_encoder(dev,
1956                                           radeon_get_encoder_enum(dev,
1957                                                                 ATOM_DEVICE_CRT1_SUPPORT,
1958                                                                 1),
1959                                           ATOM_DEVICE_CRT1_SUPPORT);
1960                 radeon_add_legacy_connector(dev, 0, ATOM_DEVICE_CRT1_SUPPORT,
1961                                             DRM_MODE_CONNECTOR_VGA, &ddc_i2c,
1962                                             CONNECTOR_OBJECT_ID_VGA,
1963                                             &hpd);
1964                 /* VGA - tv dac */
1965                 ddc_i2c = combios_setup_i2c_bus(rdev, DDC_CRT2, 0, 0);
1966                 hpd.hpd = RADEON_HPD_NONE;
1967                 radeon_add_legacy_encoder(dev,
1968                                           radeon_get_encoder_enum(dev,
1969                                                                 ATOM_DEVICE_CRT2_SUPPORT,
1970                                                                 2),
1971                                           ATOM_DEVICE_CRT2_SUPPORT);
1972                 radeon_add_legacy_connector(dev, 1, ATOM_DEVICE_CRT2_SUPPORT,
1973                                             DRM_MODE_CONNECTOR_VGA, &ddc_i2c,
1974                                             CONNECTOR_OBJECT_ID_VGA,
1975                                             &hpd);
1976                 /* TV - TV DAC */
1977                 ddc_i2c.valid = false;
1978                 hpd.hpd = RADEON_HPD_NONE;
1979                 radeon_add_legacy_encoder(dev,
1980                                           radeon_get_encoder_enum(dev,
1981                                                                 ATOM_DEVICE_TV1_SUPPORT,
1982                                                                 2),
1983                                           ATOM_DEVICE_TV1_SUPPORT);
1984                 radeon_add_legacy_connector(dev, 2, ATOM_DEVICE_TV1_SUPPORT,
1985                                             DRM_MODE_CONNECTOR_SVIDEO,
1986                                             &ddc_i2c,
1987                                             CONNECTOR_OBJECT_ID_SVIDEO,
1988                                             &hpd);
1989                 break;
1990         case CT_RN50_POWER:
1991                 DRM_INFO("Connector Table: %d (rn50-power)\n",
1992                          rdev->mode_info.connector_table);
1993                 /* VGA - primary dac */
1994                 ddc_i2c = combios_setup_i2c_bus(rdev, DDC_VGA, 0, 0);
1995                 hpd.hpd = RADEON_HPD_NONE;
1996                 radeon_add_legacy_encoder(dev,
1997                                           radeon_get_encoder_enum(dev,
1998                                                                 ATOM_DEVICE_CRT1_SUPPORT,
1999                                                                 1),
2000                                           ATOM_DEVICE_CRT1_SUPPORT);
2001                 radeon_add_legacy_connector(dev, 0, ATOM_DEVICE_CRT1_SUPPORT,
2002                                             DRM_MODE_CONNECTOR_VGA, &ddc_i2c,
2003                                             CONNECTOR_OBJECT_ID_VGA,
2004                                             &hpd);
2005                 ddc_i2c = combios_setup_i2c_bus(rdev, DDC_CRT2, 0, 0);
2006                 hpd.hpd = RADEON_HPD_NONE;
2007                 radeon_add_legacy_encoder(dev,
2008                                           radeon_get_encoder_enum(dev,
2009                                                                 ATOM_DEVICE_CRT2_SUPPORT,
2010                                                                 2),
2011                                           ATOM_DEVICE_CRT2_SUPPORT);
2012                 radeon_add_legacy_connector(dev, 1, ATOM_DEVICE_CRT2_SUPPORT,
2013                                             DRM_MODE_CONNECTOR_VGA, &ddc_i2c,
2014                                             CONNECTOR_OBJECT_ID_VGA,
2015                                             &hpd);
2016                 break;
2017         case CT_MAC_X800:
2018                 DRM_INFO("Connector Table: %d (mac x800)\n",
2019                          rdev->mode_info.connector_table);
2020                 /* DVI - primary dac, internal tmds */
2021                 ddc_i2c = combios_setup_i2c_bus(rdev, DDC_DVI, 0, 0);
2022                 hpd.hpd = RADEON_HPD_1; /* ??? */
2023                 radeon_add_legacy_encoder(dev,
2024                                           radeon_get_encoder_enum(dev,
2025                                                                   ATOM_DEVICE_DFP1_SUPPORT,
2026                                                                   0),
2027                                           ATOM_DEVICE_DFP1_SUPPORT);
2028                 radeon_add_legacy_encoder(dev,
2029                                           radeon_get_encoder_enum(dev,
2030                                                                   ATOM_DEVICE_CRT1_SUPPORT,
2031                                                                   1),
2032                                           ATOM_DEVICE_CRT1_SUPPORT);
2033                 radeon_add_legacy_connector(dev, 0,
2034                                             ATOM_DEVICE_DFP1_SUPPORT |
2035                                             ATOM_DEVICE_CRT1_SUPPORT,
2036                                             DRM_MODE_CONNECTOR_DVII, &ddc_i2c,
2037                                             CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I,
2038                                             &hpd);
2039                 /* DVI - tv dac, dvo */
2040                 ddc_i2c = combios_setup_i2c_bus(rdev, DDC_MONID, 0, 0);
2041                 hpd.hpd = RADEON_HPD_2; /* ??? */
2042                 radeon_add_legacy_encoder(dev,
2043                                           radeon_get_encoder_enum(dev,
2044                                                                   ATOM_DEVICE_DFP2_SUPPORT,
2045                                                                   0),
2046                                           ATOM_DEVICE_DFP2_SUPPORT);
2047                 radeon_add_legacy_encoder(dev,
2048                                           radeon_get_encoder_enum(dev,
2049                                                                   ATOM_DEVICE_CRT2_SUPPORT,
2050                                                                   2),
2051                                           ATOM_DEVICE_CRT2_SUPPORT);
2052                 radeon_add_legacy_connector(dev, 1,
2053                                             ATOM_DEVICE_DFP2_SUPPORT |
2054                                             ATOM_DEVICE_CRT2_SUPPORT,
2055                                             DRM_MODE_CONNECTOR_DVII, &ddc_i2c,
2056                                             CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_I,
2057                                             &hpd);
2058                 break;
2059         case CT_MAC_G5_9600:
2060                 DRM_INFO("Connector Table: %d (mac g5 9600)\n",
2061                          rdev->mode_info.connector_table);
2062                 /* DVI - tv dac, dvo */
2063                 ddc_i2c = combios_setup_i2c_bus(rdev, DDC_DVI, 0, 0);
2064                 hpd.hpd = RADEON_HPD_1; /* ??? */
2065                 radeon_add_legacy_encoder(dev,
2066                                           radeon_get_encoder_enum(dev,
2067                                                                   ATOM_DEVICE_DFP2_SUPPORT,
2068                                                                   0),
2069                                           ATOM_DEVICE_DFP2_SUPPORT);
2070                 radeon_add_legacy_encoder(dev,
2071                                           radeon_get_encoder_enum(dev,
2072                                                                   ATOM_DEVICE_CRT2_SUPPORT,
2073                                                                   2),
2074                                           ATOM_DEVICE_CRT2_SUPPORT);
2075                 radeon_add_legacy_connector(dev, 0,
2076                                             ATOM_DEVICE_DFP2_SUPPORT |
2077                                             ATOM_DEVICE_CRT2_SUPPORT,
2078                                             DRM_MODE_CONNECTOR_DVII, &ddc_i2c,
2079                                             CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I,
2080                                             &hpd);
2081                 /* ADC - primary dac, internal tmds */
2082                 ddc_i2c = combios_setup_i2c_bus(rdev, DDC_VGA, 0, 0);
2083                 hpd.hpd = RADEON_HPD_2; /* ??? */
2084                 radeon_add_legacy_encoder(dev,
2085                                           radeon_get_encoder_enum(dev,
2086                                                                   ATOM_DEVICE_DFP1_SUPPORT,
2087                                                                   0),
2088                                           ATOM_DEVICE_DFP1_SUPPORT);
2089                 radeon_add_legacy_encoder(dev,
2090                                           radeon_get_encoder_enum(dev,
2091                                                                   ATOM_DEVICE_CRT1_SUPPORT,
2092                                                                   1),
2093                                           ATOM_DEVICE_CRT1_SUPPORT);
2094                 radeon_add_legacy_connector(dev, 1,
2095                                             ATOM_DEVICE_DFP1_SUPPORT |
2096                                             ATOM_DEVICE_CRT1_SUPPORT,
2097                                             DRM_MODE_CONNECTOR_DVII, &ddc_i2c,
2098                                             CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I,
2099                                             &hpd);
2100                 /* TV - TV DAC */
2101                 ddc_i2c.valid = false;
2102                 hpd.hpd = RADEON_HPD_NONE;
2103                 radeon_add_legacy_encoder(dev,
2104                                           radeon_get_encoder_enum(dev,
2105                                                                 ATOM_DEVICE_TV1_SUPPORT,
2106                                                                 2),
2107                                           ATOM_DEVICE_TV1_SUPPORT);
2108                 radeon_add_legacy_connector(dev, 2, ATOM_DEVICE_TV1_SUPPORT,
2109                                             DRM_MODE_CONNECTOR_SVIDEO,
2110                                             &ddc_i2c,
2111                                             CONNECTOR_OBJECT_ID_SVIDEO,
2112                                             &hpd);
2113                 break;
2114         case CT_SAM440EP:
2115                 DRM_INFO("Connector Table: %d (SAM440ep embedded board)\n",
2116                          rdev->mode_info.connector_table);
2117                 /* LVDS */
2118                 ddc_i2c = combios_setup_i2c_bus(rdev, DDC_NONE_DETECTED, 0, 0);
2119                 hpd.hpd = RADEON_HPD_NONE;
2120                 radeon_add_legacy_encoder(dev,
2121                                           radeon_get_encoder_enum(dev,
2122                                                                 ATOM_DEVICE_LCD1_SUPPORT,
2123                                                                 0),
2124                                           ATOM_DEVICE_LCD1_SUPPORT);
2125                 radeon_add_legacy_connector(dev, 0, ATOM_DEVICE_LCD1_SUPPORT,
2126                                             DRM_MODE_CONNECTOR_LVDS, &ddc_i2c,
2127                                             CONNECTOR_OBJECT_ID_LVDS,
2128                                             &hpd);
2129                 /* DVI-I - secondary dac, int tmds */
2130                 ddc_i2c = combios_setup_i2c_bus(rdev, DDC_DVI, 0, 0);
2131                 hpd.hpd = RADEON_HPD_1; /* ??? */
2132                 radeon_add_legacy_encoder(dev,
2133                                           radeon_get_encoder_enum(dev,
2134                                                                 ATOM_DEVICE_DFP1_SUPPORT,
2135                                                                 0),
2136                                           ATOM_DEVICE_DFP1_SUPPORT);
2137                 radeon_add_legacy_encoder(dev,
2138                                           radeon_get_encoder_enum(dev,
2139                                                                 ATOM_DEVICE_CRT2_SUPPORT,
2140                                                                 2),
2141                                           ATOM_DEVICE_CRT2_SUPPORT);
2142                 radeon_add_legacy_connector(dev, 1,
2143                                             ATOM_DEVICE_DFP1_SUPPORT |
2144                                             ATOM_DEVICE_CRT2_SUPPORT,
2145                                             DRM_MODE_CONNECTOR_DVII, &ddc_i2c,
2146                                             CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I,
2147                                             &hpd);
2148                 /* VGA - primary dac */
2149                 ddc_i2c = combios_setup_i2c_bus(rdev, DDC_VGA, 0, 0);
2150                 hpd.hpd = RADEON_HPD_NONE;
2151                 radeon_add_legacy_encoder(dev,
2152                                           radeon_get_encoder_enum(dev,
2153                                                                 ATOM_DEVICE_CRT1_SUPPORT,
2154                                                                 1),
2155                                           ATOM_DEVICE_CRT1_SUPPORT);
2156                 radeon_add_legacy_connector(dev, 2,
2157                                             ATOM_DEVICE_CRT1_SUPPORT,
2158                                             DRM_MODE_CONNECTOR_VGA, &ddc_i2c,
2159                                             CONNECTOR_OBJECT_ID_VGA,
2160                                             &hpd);
2161                 /* TV - TV DAC */
2162                 ddc_i2c.valid = false;
2163                 hpd.hpd = RADEON_HPD_NONE;
2164                 radeon_add_legacy_encoder(dev,
2165                                           radeon_get_encoder_enum(dev,
2166                                                                 ATOM_DEVICE_TV1_SUPPORT,
2167                                                                 2),
2168                                           ATOM_DEVICE_TV1_SUPPORT);
2169                 radeon_add_legacy_connector(dev, 3, ATOM_DEVICE_TV1_SUPPORT,
2170                                             DRM_MODE_CONNECTOR_SVIDEO,
2171                                             &ddc_i2c,
2172                                             CONNECTOR_OBJECT_ID_SVIDEO,
2173                                             &hpd);
2174                 break;
2175         case CT_MAC_G4_SILVER:
2176                 DRM_INFO("Connector Table: %d (mac g4 silver)\n",
2177                          rdev->mode_info.connector_table);
2178                 /* DVI-I - tv dac, int tmds */
2179                 ddc_i2c = combios_setup_i2c_bus(rdev, DDC_DVI, 0, 0);
2180                 hpd.hpd = RADEON_HPD_1; /* ??? */
2181                 radeon_add_legacy_encoder(dev,
2182                                           radeon_get_encoder_enum(dev,
2183                                                                 ATOM_DEVICE_DFP1_SUPPORT,
2184                                                                 0),
2185                                           ATOM_DEVICE_DFP1_SUPPORT);
2186                 radeon_add_legacy_encoder(dev,
2187                                           radeon_get_encoder_enum(dev,
2188                                                                 ATOM_DEVICE_CRT2_SUPPORT,
2189                                                                 2),
2190                                           ATOM_DEVICE_CRT2_SUPPORT);
2191                 radeon_add_legacy_connector(dev, 0,
2192                                             ATOM_DEVICE_DFP1_SUPPORT |
2193                                             ATOM_DEVICE_CRT2_SUPPORT,
2194                                             DRM_MODE_CONNECTOR_DVII, &ddc_i2c,
2195                                             CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I,
2196                                             &hpd);
2197                 /* VGA - primary dac */
2198                 ddc_i2c = combios_setup_i2c_bus(rdev, DDC_VGA, 0, 0);
2199                 hpd.hpd = RADEON_HPD_NONE;
2200                 radeon_add_legacy_encoder(dev,
2201                                           radeon_get_encoder_enum(dev,
2202                                                                 ATOM_DEVICE_CRT1_SUPPORT,
2203                                                                 1),
2204                                           ATOM_DEVICE_CRT1_SUPPORT);
2205                 radeon_add_legacy_connector(dev, 1, ATOM_DEVICE_CRT1_SUPPORT,
2206                                             DRM_MODE_CONNECTOR_VGA, &ddc_i2c,
2207                                             CONNECTOR_OBJECT_ID_VGA,
2208                                             &hpd);
2209                 /* TV - TV DAC */
2210                 ddc_i2c.valid = false;
2211                 hpd.hpd = RADEON_HPD_NONE;
2212                 radeon_add_legacy_encoder(dev,
2213                                           radeon_get_encoder_enum(dev,
2214                                                                 ATOM_DEVICE_TV1_SUPPORT,
2215                                                                 2),
2216                                           ATOM_DEVICE_TV1_SUPPORT);
2217                 radeon_add_legacy_connector(dev, 2, ATOM_DEVICE_TV1_SUPPORT,
2218                                             DRM_MODE_CONNECTOR_SVIDEO,
2219                                             &ddc_i2c,
2220                                             CONNECTOR_OBJECT_ID_SVIDEO,
2221                                             &hpd);
2222                 break;
2223         default:
2224                 DRM_INFO("Connector table: %d (invalid)\n",
2225                          rdev->mode_info.connector_table);
2226                 return false;
2227         }
2228
2229         radeon_link_encoder_connector(dev);
2230
2231         return true;
2232 }
2233
2234 static bool radeon_apply_legacy_quirks(struct drm_device *dev,
2235                                        int bios_index,
2236                                        enum radeon_combios_connector
2237                                        *legacy_connector,
2238                                        struct radeon_i2c_bus_rec *ddc_i2c,
2239                                        struct radeon_hpd *hpd)
2240 {
2241
2242         /* Certain IBM chipset RN50s have a BIOS reporting two VGAs,
2243            one with VGA DDC and one with CRT2 DDC. - kill the CRT2 DDC one */
2244         if (dev->pdev->device == 0x515e &&
2245             dev->pdev->subsystem_vendor == 0x1014) {
2246                 if (*legacy_connector == CONNECTOR_CRT_LEGACY &&
2247                     ddc_i2c->mask_clk_reg == RADEON_GPIO_CRT2_DDC)
2248                         return false;
2249         }
2250
2251         /* X300 card with extra non-existent DVI port */
2252         if (dev->pdev->device == 0x5B60 &&
2253             dev->pdev->subsystem_vendor == 0x17af &&
2254             dev->pdev->subsystem_device == 0x201e && bios_index == 2) {
2255                 if (*legacy_connector == CONNECTOR_DVI_I_LEGACY)
2256                         return false;
2257         }
2258
2259         return true;
2260 }
2261
2262 static bool radeon_apply_legacy_tv_quirks(struct drm_device *dev)
2263 {
2264         /* Acer 5102 has non-existent TV port */
2265         if (dev->pdev->device == 0x5975 &&
2266             dev->pdev->subsystem_vendor == 0x1025 &&
2267             dev->pdev->subsystem_device == 0x009f)
2268                 return false;
2269
2270         /* HP dc5750 has non-existent TV port */
2271         if (dev->pdev->device == 0x5974 &&
2272             dev->pdev->subsystem_vendor == 0x103c &&
2273             dev->pdev->subsystem_device == 0x280a)
2274                 return false;
2275
2276         /* MSI S270 has non-existent TV port */
2277         if (dev->pdev->device == 0x5955 &&
2278             dev->pdev->subsystem_vendor == 0x1462 &&
2279             dev->pdev->subsystem_device == 0x0131)
2280                 return false;
2281
2282         return true;
2283 }
2284
2285 static uint16_t combios_check_dl_dvi(struct drm_device *dev, int is_dvi_d)
2286 {
2287         struct radeon_device *rdev = dev->dev_private;
2288         uint32_t ext_tmds_info;
2289
2290         if (rdev->flags & RADEON_IS_IGP) {
2291                 if (is_dvi_d)
2292                         return CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_D;
2293                 else
2294                         return CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I;
2295         }
2296         ext_tmds_info = combios_get_table_offset(dev, COMBIOS_EXT_TMDS_INFO_TABLE);
2297         if (ext_tmds_info) {
2298                 uint8_t rev = RBIOS8(ext_tmds_info);
2299                 uint8_t flags = RBIOS8(ext_tmds_info + 4 + 5);
2300                 if (rev >= 3) {
2301                         if (is_dvi_d)
2302                                 return CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_D;
2303                         else
2304                                 return CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_I;
2305                 } else {
2306                         if (flags & 1) {
2307                                 if (is_dvi_d)
2308                                         return CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_D;
2309                                 else
2310                                         return CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_I;
2311                         }
2312                 }
2313         }
2314         if (is_dvi_d)
2315                 return CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_D;
2316         else
2317                 return CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I;
2318 }
2319
2320 bool radeon_get_legacy_connector_info_from_bios(struct drm_device *dev)
2321 {
2322         struct radeon_device *rdev = dev->dev_private;
2323         uint32_t conn_info, entry, devices;
2324         uint16_t tmp, connector_object_id;
2325         enum radeon_combios_ddc ddc_type;
2326         enum radeon_combios_connector connector;
2327         int i = 0;
2328         struct radeon_i2c_bus_rec ddc_i2c;
2329         struct radeon_hpd hpd;
2330
2331         conn_info = combios_get_table_offset(dev, COMBIOS_CONNECTOR_INFO_TABLE);
2332         if (conn_info) {
2333                 for (i = 0; i < 4; i++) {
2334                         entry = conn_info + 2 + i * 2;
2335
2336                         if (!RBIOS16(entry))
2337                                 break;
2338
2339                         tmp = RBIOS16(entry);
2340
2341                         connector = (tmp >> 12) & 0xf;
2342
2343                         ddc_type = (tmp >> 8) & 0xf;
2344                         if (ddc_type == 5)
2345                                 ddc_i2c = radeon_combios_get_i2c_info_from_table(rdev);
2346                         else
2347                                 ddc_i2c = combios_setup_i2c_bus(rdev, ddc_type, 0, 0);
2348
2349                         switch (connector) {
2350                         case CONNECTOR_PROPRIETARY_LEGACY:
2351                         case CONNECTOR_DVI_I_LEGACY:
2352                         case CONNECTOR_DVI_D_LEGACY:
2353                                 if ((tmp >> 4) & 0x1)
2354                                         hpd.hpd = RADEON_HPD_2;
2355                                 else
2356                                         hpd.hpd = RADEON_HPD_1;
2357                                 break;
2358                         default:
2359                                 hpd.hpd = RADEON_HPD_NONE;
2360                                 break;
2361                         }
2362
2363                         if (!radeon_apply_legacy_quirks(dev, i, &connector,
2364                                                         &ddc_i2c, &hpd))
2365                                 continue;
2366
2367                         switch (connector) {
2368                         case CONNECTOR_PROPRIETARY_LEGACY:
2369                                 if ((tmp >> 4) & 0x1)
2370                                         devices = ATOM_DEVICE_DFP2_SUPPORT;
2371                                 else
2372                                         devices = ATOM_DEVICE_DFP1_SUPPORT;
2373                                 radeon_add_legacy_encoder(dev,
2374                                                           radeon_get_encoder_enum
2375                                                           (dev, devices, 0),
2376                                                           devices);
2377                                 radeon_add_legacy_connector(dev, i, devices,
2378                                                             legacy_connector_convert
2379                                                             [connector],
2380                                                             &ddc_i2c,
2381                                                             CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_D,
2382                                                             &hpd);
2383                                 break;
2384                         case CONNECTOR_CRT_LEGACY:
2385                                 if (tmp & 0x1) {
2386                                         devices = ATOM_DEVICE_CRT2_SUPPORT;
2387                                         radeon_add_legacy_encoder(dev,
2388                                                                   radeon_get_encoder_enum
2389                                                                   (dev,
2390                                                                    ATOM_DEVICE_CRT2_SUPPORT,
2391                                                                    2),
2392                                                                   ATOM_DEVICE_CRT2_SUPPORT);
2393                                 } else {
2394                                         devices = ATOM_DEVICE_CRT1_SUPPORT;
2395                                         radeon_add_legacy_encoder(dev,
2396                                                                   radeon_get_encoder_enum
2397                                                                   (dev,
2398                                                                    ATOM_DEVICE_CRT1_SUPPORT,
2399                                                                    1),
2400                                                                   ATOM_DEVICE_CRT1_SUPPORT);
2401                                 }
2402                                 radeon_add_legacy_connector(dev,
2403                                                             i,
2404                                                             devices,
2405                                                             legacy_connector_convert
2406                                                             [connector],
2407                                                             &ddc_i2c,
2408                                                             CONNECTOR_OBJECT_ID_VGA,
2409                                                             &hpd);
2410                                 break;
2411                         case CONNECTOR_DVI_I_LEGACY:
2412                                 devices = 0;
2413                                 if (tmp & 0x1) {
2414                                         devices |= ATOM_DEVICE_CRT2_SUPPORT;
2415                                         radeon_add_legacy_encoder(dev,
2416                                                                   radeon_get_encoder_enum
2417                                                                   (dev,
2418                                                                    ATOM_DEVICE_CRT2_SUPPORT,
2419                                                                    2),
2420                                                                   ATOM_DEVICE_CRT2_SUPPORT);
2421                                 } else {
2422                                         devices |= ATOM_DEVICE_CRT1_SUPPORT;
2423                                         radeon_add_legacy_encoder(dev,
2424                                                                   radeon_get_encoder_enum
2425                                                                   (dev,
2426                                                                    ATOM_DEVICE_CRT1_SUPPORT,
2427                                                                    1),
2428                                                                   ATOM_DEVICE_CRT1_SUPPORT);
2429                                 }
2430                                 /* RV100 board with external TDMS bit mis-set.
2431                                  * Actually uses internal TMDS, clear the bit.
2432                                  */
2433                                 if (dev->pdev->device == 0x5159 &&
2434                                     dev->pdev->subsystem_vendor == 0x1014 &&
2435                                     dev->pdev->subsystem_device == 0x029A) {
2436                                         tmp &= ~(1 << 4);
2437                                 }
2438                                 if ((tmp >> 4) & 0x1) {
2439                                         devices |= ATOM_DEVICE_DFP2_SUPPORT;
2440                                         radeon_add_legacy_encoder(dev,
2441                                                                   radeon_get_encoder_enum
2442                                                                   (dev,
2443                                                                    ATOM_DEVICE_DFP2_SUPPORT,
2444                                                                    0),
2445                                                                   ATOM_DEVICE_DFP2_SUPPORT);
2446                                         connector_object_id = combios_check_dl_dvi(dev, 0);
2447                                 } else {
2448                                         devices |= ATOM_DEVICE_DFP1_SUPPORT;
2449                                         radeon_add_legacy_encoder(dev,
2450                                                                   radeon_get_encoder_enum
2451                                                                   (dev,
2452                                                                    ATOM_DEVICE_DFP1_SUPPORT,
2453                                                                    0),
2454                                                                   ATOM_DEVICE_DFP1_SUPPORT);
2455                                         connector_object_id = CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I;
2456                                 }
2457                                 radeon_add_legacy_connector(dev,
2458                                                             i,
2459                                                             devices,
2460                                                             legacy_connector_convert
2461                                                             [connector],
2462                                                             &ddc_i2c,
2463                                                             connector_object_id,
2464                                                             &hpd);
2465                                 break;
2466                         case CONNECTOR_DVI_D_LEGACY:
2467                                 if ((tmp >> 4) & 0x1) {
2468                                         devices = ATOM_DEVICE_DFP2_SUPPORT;
2469                                         connector_object_id = combios_check_dl_dvi(dev, 1);
2470                                 } else {
2471                                         devices = ATOM_DEVICE_DFP1_SUPPORT;
2472                                         connector_object_id = CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I;
2473                                 }
2474                                 radeon_add_legacy_encoder(dev,
2475                                                           radeon_get_encoder_enum
2476                                                           (dev, devices, 0),
2477                                                           devices);
2478                                 radeon_add_legacy_connector(dev, i, devices,
2479                                                             legacy_connector_convert
2480                                                             [connector],
2481                                                             &ddc_i2c,
2482                                                             connector_object_id,
2483                                                             &hpd);
2484                                 break;
2485                         case CONNECTOR_CTV_LEGACY:
2486                         case CONNECTOR_STV_LEGACY:
2487                                 radeon_add_legacy_encoder(dev,
2488                                                           radeon_get_encoder_enum
2489                                                           (dev,
2490                                                            ATOM_DEVICE_TV1_SUPPORT,
2491                                                            2),
2492                                                           ATOM_DEVICE_TV1_SUPPORT);
2493                                 radeon_add_legacy_connector(dev, i,
2494                                                             ATOM_DEVICE_TV1_SUPPORT,
2495                                                             legacy_connector_convert
2496                                                             [connector],
2497                                                             &ddc_i2c,
2498                                                             CONNECTOR_OBJECT_ID_SVIDEO,
2499                                                             &hpd);
2500                                 break;
2501                         default:
2502                                 DRM_ERROR("Unknown connector type: %d\n",
2503                                           connector);
2504                                 continue;
2505                         }
2506
2507                 }
2508         } else {
2509                 uint16_t tmds_info =
2510                     combios_get_table_offset(dev, COMBIOS_DFP_INFO_TABLE);
2511                 if (tmds_info) {
2512                         DRM_DEBUG_KMS("Found DFP table, assuming DVI connector\n");
2513
2514                         radeon_add_legacy_encoder(dev,
2515                                                   radeon_get_encoder_enum(dev,
2516                                                                         ATOM_DEVICE_CRT1_SUPPORT,
2517                                                                         1),
2518                                                   ATOM_DEVICE_CRT1_SUPPORT);
2519                         radeon_add_legacy_encoder(dev,
2520                                                   radeon_get_encoder_enum(dev,
2521                                                                         ATOM_DEVICE_DFP1_SUPPORT,
2522                                                                         0),
2523                                                   ATOM_DEVICE_DFP1_SUPPORT);
2524
2525                         ddc_i2c = combios_setup_i2c_bus(rdev, DDC_DVI, 0, 0);
2526                         hpd.hpd = RADEON_HPD_1;
2527                         radeon_add_legacy_connector(dev,
2528                                                     0,
2529                                                     ATOM_DEVICE_CRT1_SUPPORT |
2530                                                     ATOM_DEVICE_DFP1_SUPPORT,
2531                                                     DRM_MODE_CONNECTOR_DVII,
2532                                                     &ddc_i2c,
2533                                                     CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I,
2534                                                     &hpd);
2535                 } else {
2536                         uint16_t crt_info =
2537                                 combios_get_table_offset(dev, COMBIOS_CRT_INFO_TABLE);
2538                         DRM_DEBUG_KMS("Found CRT table, assuming VGA connector\n");
2539                         if (crt_info) {
2540                                 radeon_add_legacy_encoder(dev,
2541                                                           radeon_get_encoder_enum(dev,
2542                                                                                 ATOM_DEVICE_CRT1_SUPPORT,
2543                                                                                 1),
2544                                                           ATOM_DEVICE_CRT1_SUPPORT);
2545                                 ddc_i2c = combios_setup_i2c_bus(rdev, DDC_VGA, 0, 0);
2546                                 hpd.hpd = RADEON_HPD_NONE;
2547                                 radeon_add_legacy_connector(dev,
2548                                                             0,
2549                                                             ATOM_DEVICE_CRT1_SUPPORT,
2550                                                             DRM_MODE_CONNECTOR_VGA,
2551                                                             &ddc_i2c,
2552                                                             CONNECTOR_OBJECT_ID_VGA,
2553                                                             &hpd);
2554                         } else {
2555                                 DRM_DEBUG_KMS("No connector info found\n");
2556                                 return false;
2557                         }
2558                 }
2559         }
2560
2561         if (rdev->flags & RADEON_IS_MOBILITY || rdev->flags & RADEON_IS_IGP) {
2562                 uint16_t lcd_info =
2563                     combios_get_table_offset(dev, COMBIOS_LCD_INFO_TABLE);
2564                 if (lcd_info) {
2565                         uint16_t lcd_ddc_info =
2566                             combios_get_table_offset(dev,
2567                                                      COMBIOS_LCD_DDC_INFO_TABLE);
2568
2569                         radeon_add_legacy_encoder(dev,
2570                                                   radeon_get_encoder_enum(dev,
2571                                                                         ATOM_DEVICE_LCD1_SUPPORT,
2572                                                                         0),
2573                                                   ATOM_DEVICE_LCD1_SUPPORT);
2574
2575                         if (lcd_ddc_info) {
2576                                 ddc_type = RBIOS8(lcd_ddc_info + 2);
2577                                 switch (ddc_type) {
2578                                 case DDC_LCD:
2579                                         ddc_i2c =
2580                                                 combios_setup_i2c_bus(rdev,
2581                                                                       DDC_LCD,
2582                                                                       RBIOS32(lcd_ddc_info + 3),
2583                                                                       RBIOS32(lcd_ddc_info + 7));
2584                                         radeon_i2c_add(rdev, &ddc_i2c, "LCD");
2585                                         break;
2586                                 case DDC_GPIO:
2587                                         ddc_i2c =
2588                                                 combios_setup_i2c_bus(rdev,
2589                                                                       DDC_GPIO,
2590                                                                       RBIOS32(lcd_ddc_info + 3),
2591                                                                       RBIOS32(lcd_ddc_info + 7));
2592                                         radeon_i2c_add(rdev, &ddc_i2c, "LCD");
2593                                         break;
2594                                 default:
2595                                         ddc_i2c =
2596                                                 combios_setup_i2c_bus(rdev, ddc_type, 0, 0);
2597                                         break;
2598                                 }
2599                                 DRM_DEBUG_KMS("LCD DDC Info Table found!\n");
2600                         } else
2601                                 ddc_i2c.valid = false;
2602
2603                         hpd.hpd = RADEON_HPD_NONE;
2604                         radeon_add_legacy_connector(dev,
2605                                                     5,
2606                                                     ATOM_DEVICE_LCD1_SUPPORT,
2607                                                     DRM_MODE_CONNECTOR_LVDS,
2608                                                     &ddc_i2c,
2609                                                     CONNECTOR_OBJECT_ID_LVDS,
2610                                                     &hpd);
2611                 }
2612         }
2613
2614         /* check TV table */
2615         if (rdev->family != CHIP_R100 && rdev->family != CHIP_R200) {
2616                 uint32_t tv_info =
2617                     combios_get_table_offset(dev, COMBIOS_TV_INFO_TABLE);
2618                 if (tv_info) {
2619                         if (RBIOS8(tv_info + 6) == 'T') {
2620                                 if (radeon_apply_legacy_tv_quirks(dev)) {
2621                                         hpd.hpd = RADEON_HPD_NONE;
2622                                         ddc_i2c.valid = false;
2623                                         radeon_add_legacy_encoder(dev,
2624                                                                   radeon_get_encoder_enum
2625                                                                   (dev,
2626                                                                    ATOM_DEVICE_TV1_SUPPORT,
2627                                                                    2),
2628                                                                   ATOM_DEVICE_TV1_SUPPORT);
2629                                         radeon_add_legacy_connector(dev, 6,
2630                                                                     ATOM_DEVICE_TV1_SUPPORT,
2631                                                                     DRM_MODE_CONNECTOR_SVIDEO,
2632                                                                     &ddc_i2c,
2633                                                                     CONNECTOR_OBJECT_ID_SVIDEO,
2634                                                                     &hpd);
2635                                 }
2636                         }
2637                 }
2638         }
2639
2640         radeon_link_encoder_connector(dev);
2641
2642         return true;
2643 }
2644
2645 static const char *thermal_controller_names[] = {
2646         "NONE",
2647         "lm63",
2648         "adm1032",
2649 };
2650
2651 void radeon_combios_get_power_modes(struct radeon_device *rdev)
2652 {
2653         struct drm_device *dev = rdev->ddev;
2654         u16 offset, misc, misc2 = 0;
2655         u8 rev, blocks, tmp;
2656         int state_index = 0;
2657         struct radeon_i2c_bus_rec i2c_bus;
2658
2659         rdev->pm.default_power_state_index = -1;
2660
2661         /* allocate 2 power states */
2662         rdev->pm.power_state = kzalloc(sizeof(struct radeon_power_state) * 2, GFP_KERNEL);
2663         if (rdev->pm.power_state) {
2664                 /* allocate 1 clock mode per state */
2665                 rdev->pm.power_state[0].clock_info =
2666                         kzalloc(sizeof(struct radeon_pm_clock_info) * 1, GFP_KERNEL);
2667                 rdev->pm.power_state[1].clock_info =
2668                         kzalloc(sizeof(struct radeon_pm_clock_info) * 1, GFP_KERNEL);
2669                 if (!rdev->pm.power_state[0].clock_info ||
2670                     !rdev->pm.power_state[1].clock_info)
2671                         goto pm_failed;
2672         } else
2673                 goto pm_failed;
2674
2675         /* check for a thermal chip */
2676         offset = combios_get_table_offset(dev, COMBIOS_OVERDRIVE_INFO_TABLE);
2677         if (offset) {
2678                 u8 thermal_controller = 0, gpio = 0, i2c_addr = 0, clk_bit = 0, data_bit = 0;
2679
2680                 rev = RBIOS8(offset);
2681
2682                 if (rev == 0) {
2683                         thermal_controller = RBIOS8(offset + 3);
2684                         gpio = RBIOS8(offset + 4) & 0x3f;
2685                         i2c_addr = RBIOS8(offset + 5);
2686                 } else if (rev == 1) {
2687                         thermal_controller = RBIOS8(offset + 4);
2688                         gpio = RBIOS8(offset + 5) & 0x3f;
2689                         i2c_addr = RBIOS8(offset + 6);
2690                 } else if (rev == 2) {
2691                         thermal_controller = RBIOS8(offset + 4);
2692                         gpio = RBIOS8(offset + 5) & 0x3f;
2693                         i2c_addr = RBIOS8(offset + 6);
2694                         clk_bit = RBIOS8(offset + 0xa);
2695                         data_bit = RBIOS8(offset + 0xb);
2696                 }
2697                 if ((thermal_controller > 0) && (thermal_controller < 3)) {
2698                         DRM_INFO("Possible %s thermal controller at 0x%02x\n",
2699                                  thermal_controller_names[thermal_controller],
2700                                  i2c_addr >> 1);
2701                         if (gpio == DDC_LCD) {
2702                                 /* MM i2c */
2703                                 i2c_bus.valid = true;
2704                                 i2c_bus.hw_capable = true;
2705                                 i2c_bus.mm_i2c = true;
2706                                 i2c_bus.i2c_id = 0xa0;
2707                         } else if (gpio == DDC_GPIO)
2708                                 i2c_bus = combios_setup_i2c_bus(rdev, gpio, 1 << clk_bit, 1 << data_bit);
2709                         else
2710                                 i2c_bus = combios_setup_i2c_bus(rdev, gpio, 0, 0);
2711                         rdev->pm.i2c_bus = radeon_i2c_lookup(rdev, &i2c_bus);
2712                         if (rdev->pm.i2c_bus) {
2713                                 struct i2c_board_info info = { };
2714                                 const char *name = thermal_controller_names[thermal_controller];
2715                                 info.addr = i2c_addr >> 1;
2716                                 strlcpy(info.type, name, sizeof(info.type));
2717                                 i2c_new_device(&rdev->pm.i2c_bus->adapter, &info);
2718                         }
2719                 }
2720         } else {
2721                 /* boards with a thermal chip, but no overdrive table */
2722
2723                 /* Asus 9600xt has an f75375 on the monid bus */
2724                 if ((dev->pdev->device == 0x4152) &&
2725                     (dev->pdev->subsystem_vendor == 0x1043) &&
2726                     (dev->pdev->subsystem_device == 0xc002)) {
2727                         i2c_bus = combios_setup_i2c_bus(rdev, DDC_MONID, 0, 0);
2728                         rdev->pm.i2c_bus = radeon_i2c_lookup(rdev, &i2c_bus);
2729                         if (rdev->pm.i2c_bus) {
2730                                 struct i2c_board_info info = { };
2731                                 const char *name = "f75375";
2732                                 info.addr = 0x28;
2733                                 strlcpy(info.type, name, sizeof(info.type));
2734                                 i2c_new_device(&rdev->pm.i2c_bus->adapter, &info);
2735                                 DRM_INFO("Possible %s thermal controller at 0x%02x\n",
2736                                          name, info.addr);
2737                         }
2738                 }
2739         }
2740
2741         if (rdev->flags & RADEON_IS_MOBILITY) {
2742                 offset = combios_get_table_offset(dev, COMBIOS_POWERPLAY_INFO_TABLE);
2743                 if (offset) {
2744                         rev = RBIOS8(offset);
2745                         blocks = RBIOS8(offset + 0x2);
2746                         /* power mode 0 tends to be the only valid one */
2747                         rdev->pm.power_state[state_index].num_clock_modes = 1;
2748                         rdev->pm.power_state[state_index].clock_info[0].mclk = RBIOS32(offset + 0x5 + 0x2);
2749                         rdev->pm.power_state[state_index].clock_info[0].sclk = RBIOS32(offset + 0x5 + 0x6);
2750                         if ((rdev->pm.power_state[state_index].clock_info[0].mclk == 0) ||
2751                             (rdev->pm.power_state[state_index].clock_info[0].sclk == 0))
2752                                 goto default_mode;
2753                         rdev->pm.power_state[state_index].type =
2754                                 POWER_STATE_TYPE_BATTERY;
2755                         misc = RBIOS16(offset + 0x5 + 0x0);
2756                         if (rev > 4)
2757                                 misc2 = RBIOS16(offset + 0x5 + 0xe);
2758                         rdev->pm.power_state[state_index].misc = misc;
2759                         rdev->pm.power_state[state_index].misc2 = misc2;
2760                         if (misc & 0x4) {
2761                                 rdev->pm.power_state[state_index].clock_info[0].voltage.type = VOLTAGE_GPIO;
2762                                 if (misc & 0x8)
2763                                         rdev->pm.power_state[state_index].clock_info[0].voltage.active_high =
2764                                                 true;
2765                                 else
2766                                         rdev->pm.power_state[state_index].clock_info[0].voltage.active_high =
2767                                                 false;
2768                                 rdev->pm.power_state[state_index].clock_info[0].voltage.gpio.valid = true;
2769                                 if (rev < 6) {
2770                                         rdev->pm.power_state[state_index].clock_info[0].voltage.gpio.reg =
2771                                                 RBIOS16(offset + 0x5 + 0xb) * 4;
2772                                         tmp = RBIOS8(offset + 0x5 + 0xd);
2773                                         rdev->pm.power_state[state_index].clock_info[0].voltage.gpio.mask = (1 << tmp);
2774                                 } else {
2775                                         u8 entries = RBIOS8(offset + 0x5 + 0xb);
2776                                         u16 voltage_table_offset = RBIOS16(offset + 0x5 + 0xc);
2777                                         if (entries && voltage_table_offset) {
2778                                                 rdev->pm.power_state[state_index].clock_info[0].voltage.gpio.reg =
2779                                                         RBIOS16(voltage_table_offset) * 4;
2780                                                 tmp = RBIOS8(voltage_table_offset + 0x2);
2781                                                 rdev->pm.power_state[state_index].clock_info[0].voltage.gpio.mask = (1 << tmp);
2782                                         } else
2783                                                 rdev->pm.power_state[state_index].clock_info[0].voltage.gpio.valid = false;
2784                                 }
2785                                 switch ((misc2 & 0x700) >> 8) {
2786                                 case 0:
2787                                 default:
2788                                         rdev->pm.power_state[state_index].clock_info[0].voltage.delay = 0;
2789                                         break;
2790                                 case 1:
2791                                         rdev->pm.power_state[state_index].clock_info[0].voltage.delay = 33;
2792                                         break;
2793                                 case 2:
2794                                         rdev->pm.power_state[state_index].clock_info[0].voltage.delay = 66;
2795                                         break;
2796                                 case 3:
2797                                         rdev->pm.power_state[state_index].clock_info[0].voltage.delay = 99;
2798                                         break;
2799                                 case 4:
2800                                         rdev->pm.power_state[state_index].clock_info[0].voltage.delay = 132;
2801                                         break;
2802                                 }
2803                         } else
2804                                 rdev->pm.power_state[state_index].clock_info[0].voltage.type = VOLTAGE_NONE;
2805                         if (rev > 6)
2806                                 rdev->pm.power_state[state_index].pcie_lanes =
2807                                         RBIOS8(offset + 0x5 + 0x10);
2808                         rdev->pm.power_state[state_index].flags = RADEON_PM_STATE_SINGLE_DISPLAY_ONLY;
2809                         state_index++;
2810                 } else {
2811                         /* XXX figure out some good default low power mode for mobility cards w/out power tables */
2812                 }
2813         } else {
2814                 /* XXX figure out some good default low power mode for desktop cards */
2815         }
2816
2817 default_mode:
2818         /* add the default mode */
2819         rdev->pm.power_state[state_index].type =
2820                 POWER_STATE_TYPE_DEFAULT;
2821         rdev->pm.power_state[state_index].num_clock_modes = 1;
2822         rdev->pm.power_state[state_index].clock_info[0].mclk = rdev->clock.default_mclk;
2823         rdev->pm.power_state[state_index].clock_info[0].sclk = rdev->clock.default_sclk;
2824         rdev->pm.power_state[state_index].default_clock_mode = &rdev->pm.power_state[state_index].clock_info[0];
2825         if ((state_index > 0) &&
2826             (rdev->pm.power_state[0].clock_info[0].voltage.type == VOLTAGE_GPIO))
2827                 rdev->pm.power_state[state_index].clock_info[0].voltage =
2828                         rdev->pm.power_state[0].clock_info[0].voltage;
2829         else
2830                 rdev->pm.power_state[state_index].clock_info[0].voltage.type = VOLTAGE_NONE;
2831         rdev->pm.power_state[state_index].pcie_lanes = 16;
2832         rdev->pm.power_state[state_index].flags = 0;
2833         rdev->pm.default_power_state_index = state_index;
2834         rdev->pm.num_power_states = state_index + 1;
2835
2836         rdev->pm.current_power_state_index = rdev->pm.default_power_state_index;
2837         rdev->pm.current_clock_mode_index = 0;
2838         return;
2839
2840 pm_failed:
2841         rdev->pm.default_power_state_index = state_index;
2842         rdev->pm.num_power_states = 0;
2843
2844         rdev->pm.current_power_state_index = rdev->pm.default_power_state_index;
2845         rdev->pm.current_clock_mode_index = 0;
2846 }
2847
2848 void radeon_external_tmds_setup(struct drm_encoder *encoder)
2849 {
2850         struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder);
2851         struct radeon_encoder_ext_tmds *tmds = radeon_encoder->enc_priv;
2852
2853         if (!tmds)
2854                 return;
2855
2856         switch (tmds->dvo_chip) {
2857         case DVO_SIL164:
2858                 /* sil 164 */
2859                 radeon_i2c_put_byte(tmds->i2c_bus,
2860                                     tmds->slave_addr,
2861                                     0x08, 0x30);
2862                 radeon_i2c_put_byte(tmds->i2c_bus,
2863                                        tmds->slave_addr,
2864                                        0x09, 0x00);
2865                 radeon_i2c_put_byte(tmds->i2c_bus,
2866                                     tmds->slave_addr,
2867                                     0x0a, 0x90);
2868                 radeon_i2c_put_byte(tmds->i2c_bus,
2869                                     tmds->slave_addr,
2870                                     0x0c, 0x89);
2871                 radeon_i2c_put_byte(tmds->i2c_bus,
2872                                        tmds->slave_addr,
2873                                        0x08, 0x3b);
2874                 break;
2875         case DVO_SIL1178:
2876                 /* sil 1178 - untested */
2877                 /*
2878                  * 0x0f, 0x44
2879                  * 0x0f, 0x4c
2880                  * 0x0e, 0x01
2881                  * 0x0a, 0x80
2882                  * 0x09, 0x30
2883                  * 0x0c, 0xc9
2884                  * 0x0d, 0x70
2885                  * 0x08, 0x32
2886                  * 0x08, 0x33
2887                  */
2888                 break;
2889         default:
2890                 break;
2891         }
2892
2893 }
2894
2895 bool radeon_combios_external_tmds_setup(struct drm_encoder *encoder)
2896 {
2897         struct drm_device *dev = encoder->dev;
2898         struct radeon_device *rdev = dev->dev_private;
2899         struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder);
2900         uint16_t offset;
2901         uint8_t blocks, slave_addr, rev;
2902         uint32_t index, id;
2903         uint32_t reg, val, and_mask, or_mask;
2904         struct radeon_encoder_ext_tmds *tmds = radeon_encoder->enc_priv;
2905
2906         if (!tmds)
2907                 return false;
2908
2909         if (rdev->flags & RADEON_IS_IGP) {
2910                 offset = combios_get_table_offset(dev, COMBIOS_TMDS_POWER_ON_TABLE);
2911                 rev = RBIOS8(offset);
2912                 if (offset) {
2913                         rev = RBIOS8(offset);
2914                         if (rev > 1) {
2915                                 blocks = RBIOS8(offset + 3);
2916                                 index = offset + 4;
2917                                 while (blocks > 0) {
2918                                         id = RBIOS16(index);
2919                                         index += 2;
2920                                         switch (id >> 13) {
2921                                         case 0:
2922                                                 reg = (id & 0x1fff) * 4;
2923                                                 val = RBIOS32(index);
2924                                                 index += 4;
2925                                                 WREG32(reg, val);
2926                                                 break;
2927                                         case 2:
2928                                                 reg = (id & 0x1fff) * 4;
2929                                                 and_mask = RBIOS32(index);
2930                                                 index += 4;
2931                                                 or_mask = RBIOS32(index);
2932                                                 index += 4;
2933                                                 val = RREG32(reg);
2934                                                 val = (val & and_mask) | or_mask;
2935                                                 WREG32(reg, val);
2936                                                 break;
2937                                         case 3:
2938                                                 val = RBIOS16(index);
2939                                                 index += 2;
2940                                                 udelay(val);
2941                                                 break;
2942                                         case 4:
2943                                                 val = RBIOS16(index);
2944                                                 index += 2;
2945                                                 mdelay(val);
2946                                                 break;
2947                                         case 6:
2948                                                 slave_addr = id & 0xff;
2949                                                 slave_addr >>= 1; /* 7 bit addressing */
2950                                                 index++;
2951                                                 reg = RBIOS8(index);
2952                                                 index++;
2953                                                 val = RBIOS8(index);
2954                                                 index++;
2955                                                 radeon_i2c_put_byte(tmds->i2c_bus,
2956                                                                     slave_addr,
2957                                                                     reg, val);
2958                                                 break;
2959                                         default:
2960                                                 DRM_ERROR("Unknown id %d\n", id >> 13);
2961                                                 break;
2962                                         }
2963                                         blocks--;
2964                                 }
2965                                 return true;
2966                         }
2967                 }
2968         } else {
2969                 offset = combios_get_table_offset(dev, COMBIOS_EXT_TMDS_INFO_TABLE);
2970                 if (offset) {
2971                         index = offset + 10;
2972                         id = RBIOS16(index);
2973                         while (id != 0xffff) {
2974                                 index += 2;
2975                                 switch (id >> 13) {
2976                                 case 0:
2977                                         reg = (id & 0x1fff) * 4;
2978                                         val = RBIOS32(index);
2979                                         WREG32(reg, val);
2980                                         break;
2981                                 case 2:
2982                                         reg = (id & 0x1fff) * 4;
2983                                         and_mask = RBIOS32(index);
2984                                         index += 4;
2985                                         or_mask = RBIOS32(index);
2986                                         index += 4;
2987                                         val = RREG32(reg);
2988                                         val = (val & and_mask) | or_mask;
2989                                         WREG32(reg, val);
2990                                         break;
2991                                 case 4:
2992                                         val = RBIOS16(index);
2993                                         index += 2;
2994                                         udelay(val);
2995                                         break;
2996                                 case 5:
2997                                         reg = id & 0x1fff;
2998                                         and_mask = RBIOS32(index);
2999                                         index += 4;
3000                                         or_mask = RBIOS32(index);
3001                                         index += 4;
3002                                         val = RREG32_PLL(reg);
3003                                         val = (val & and_mask) | or_mask;
3004                                         WREG32_PLL(reg, val);
3005                                         break;
3006                                 case 6:
3007                                         reg = id & 0x1fff;
3008                                         val = RBIOS8(index);
3009                                         index += 1;
3010                                         radeon_i2c_put_byte(tmds->i2c_bus,
3011                                                             tmds->slave_addr,
3012                                                             reg, val);
3013                                         break;
3014                                 default:
3015                                         DRM_ERROR("Unknown id %d\n", id >> 13);
3016                                         break;
3017                                 }
3018                                 id = RBIOS16(index);
3019                         }
3020                         return true;
3021                 }
3022         }
3023         return false;
3024 }
3025
3026 static void combios_parse_mmio_table(struct drm_device *dev, uint16_t offset)
3027 {
3028         struct radeon_device *rdev = dev->dev_private;
3029
3030         if (offset) {
3031                 while (RBIOS16(offset)) {
3032                         uint16_t cmd = ((RBIOS16(offset) & 0xe000) >> 13);
3033                         uint32_t addr = (RBIOS16(offset) & 0x1fff);
3034                         uint32_t val, and_mask, or_mask;
3035                         uint32_t tmp;
3036
3037                         offset += 2;
3038                         switch (cmd) {
3039                         case 0:
3040                                 val = RBIOS32(offset);
3041                                 offset += 4;
3042                                 WREG32(addr, val);
3043                                 break;
3044                         case 1:
3045                                 val = RBIOS32(offset);
3046                                 offset += 4;
3047                                 WREG32(addr, val);
3048                                 break;
3049                         case 2:
3050                                 and_mask = RBIOS32(offset);
3051                                 offset += 4;
3052                                 or_mask = RBIOS32(offset);
3053                                 offset += 4;
3054                                 tmp = RREG32(addr);
3055                                 tmp &= and_mask;
3056                                 tmp |= or_mask;
3057                                 WREG32(addr, tmp);
3058                                 break;
3059                         case 3:
3060                                 and_mask = RBIOS32(offset);
3061                                 offset += 4;
3062                                 or_mask = RBIOS32(offset);
3063                                 offset += 4;
3064                                 tmp = RREG32(addr);
3065                                 tmp &= and_mask;
3066                                 tmp |= or_mask;
3067                                 WREG32(addr, tmp);
3068                                 break;
3069                         case 4:
3070                                 val = RBIOS16(offset);
3071                                 offset += 2;
3072                                 udelay(val);
3073                                 break;
3074                         case 5:
3075                                 val = RBIOS16(offset);
3076                                 offset += 2;
3077                                 switch (addr) {
3078                                 case 8:
3079                                         while (val--) {
3080                                                 if (!
3081                                                     (RREG32_PLL
3082                                                      (RADEON_CLK_PWRMGT_CNTL) &
3083                                                      RADEON_MC_BUSY))
3084                                                         break;
3085                                         }
3086                                         break;
3087                                 case 9:
3088                                         while (val--) {
3089                                                 if ((RREG32(RADEON_MC_STATUS) &
3090                                                      RADEON_MC_IDLE))
3091                                                         break;
3092                                         }
3093                                         break;
3094                                 default:
3095                                         break;
3096                                 }
3097                                 break;
3098                         default:
3099                                 break;
3100                         }
3101                 }
3102         }
3103 }
3104
3105 static void combios_parse_pll_table(struct drm_device *dev, uint16_t offset)
3106 {
3107         struct radeon_device *rdev = dev->dev_private;
3108
3109         if (offset) {
3110                 while (RBIOS8(offset)) {
3111                         uint8_t cmd = ((RBIOS8(offset) & 0xc0) >> 6);
3112                         uint8_t addr = (RBIOS8(offset) & 0x3f);
3113                         uint32_t val, shift, tmp;
3114                         uint32_t and_mask, or_mask;
3115
3116                         offset++;
3117                         switch (cmd) {
3118                         case 0:
3119                                 val = RBIOS32(offset);
3120                                 offset += 4;
3121                                 WREG32_PLL(addr, val);
3122                                 break;
3123                         case 1:
3124                                 shift = RBIOS8(offset) * 8;
3125                                 offset++;
3126                                 and_mask = RBIOS8(offset) << shift;
3127                                 and_mask |= ~(0xff << shift);
3128                                 offset++;
3129                                 or_mask = RBIOS8(offset) << shift;
3130                                 offset++;
3131                                 tmp = RREG32_PLL(addr);
3132                                 tmp &= and_mask;
3133                                 tmp |= or_mask;
3134                                 WREG32_PLL(addr, tmp);
3135                                 break;
3136                         case 2:
3137                         case 3:
3138                                 tmp = 1000;
3139                                 switch (addr) {
3140                                 case 1:
3141                                         udelay(150);
3142                                         break;
3143                                 case 2:
3144                                         mdelay(1);
3145                                         break;
3146                                 case 3:
3147                                         while (tmp--) {
3148                                                 if (!
3149                                                     (RREG32_PLL
3150                                                      (RADEON_CLK_PWRMGT_CNTL) &
3151                                                      RADEON_MC_BUSY))
3152                                                         break;
3153                                         }
3154                                         break;
3155                                 case 4:
3156                                         while (tmp--) {
3157                                                 if (RREG32_PLL
3158                                                     (RADEON_CLK_PWRMGT_CNTL) &
3159                                                     RADEON_DLL_READY)
3160                                                         break;
3161                                         }
3162                                         break;
3163                                 case 5:
3164                                         tmp =
3165                                             RREG32_PLL(RADEON_CLK_PWRMGT_CNTL);
3166                                         if (tmp & RADEON_CG_NO1_DEBUG_0) {
3167 #if 0
3168                                                 uint32_t mclk_cntl =
3169                                                     RREG32_PLL
3170                                                     (RADEON_MCLK_CNTL);
3171                                                 mclk_cntl &= 0xffff0000;
3172                                                 /*mclk_cntl |= 0x00001111;*//* ??? */
3173                                                 WREG32_PLL(RADEON_MCLK_CNTL,
3174                                                            mclk_cntl);
3175                                                 mdelay(10);
3176 #endif
3177                                                 WREG32_PLL
3178                                                     (RADEON_CLK_PWRMGT_CNTL,
3179                                                      tmp &
3180                                                      ~RADEON_CG_NO1_DEBUG_0);
3181                                                 mdelay(10);
3182                                         }
3183                                         break;
3184                                 default:
3185                                         break;
3186                                 }
3187                                 break;
3188                         default:
3189                                 break;
3190                         }
3191                 }
3192         }
3193 }
3194
3195 static void combios_parse_ram_reset_table(struct drm_device *dev,
3196                                           uint16_t offset)
3197 {
3198         struct radeon_device *rdev = dev->dev_private;
3199         uint32_t tmp;
3200
3201         if (offset) {
3202                 uint8_t val = RBIOS8(offset);
3203                 while (val != 0xff) {
3204                         offset++;
3205
3206                         if (val == 0x0f) {
3207                                 uint32_t channel_complete_mask;
3208
3209                                 if (ASIC_IS_R300(rdev))
3210                                         channel_complete_mask =
3211                                             R300_MEM_PWRUP_COMPLETE;
3212                                 else
3213                                         channel_complete_mask =
3214                                             RADEON_MEM_PWRUP_COMPLETE;
3215                                 tmp = 20000;
3216                                 while (tmp--) {
3217                                         if ((RREG32(RADEON_MEM_STR_CNTL) &
3218                                              channel_complete_mask) ==
3219                                             channel_complete_mask)
3220                                                 break;
3221                                 }
3222                         } else {
3223                                 uint32_t or_mask = RBIOS16(offset);
3224                                 offset += 2;
3225
3226                                 tmp = RREG32(RADEON_MEM_SDRAM_MODE_REG);
3227                                 tmp &= RADEON_SDRAM_MODE_MASK;
3228                                 tmp |= or_mask;
3229                                 WREG32(RADEON_MEM_SDRAM_MODE_REG, tmp);
3230
3231                                 or_mask = val << 24;
3232                                 tmp = RREG32(RADEON_MEM_SDRAM_MODE_REG);
3233                                 tmp &= RADEON_B3MEM_RESET_MASK;
3234                                 tmp |= or_mask;
3235                                 WREG32(RADEON_MEM_SDRAM_MODE_REG, tmp);
3236                         }
3237                         val = RBIOS8(offset);
3238                 }
3239         }
3240 }
3241
3242 static uint32_t combios_detect_ram(struct drm_device *dev, int ram,
3243                                    int mem_addr_mapping)
3244 {
3245         struct radeon_device *rdev = dev->dev_private;
3246         uint32_t mem_cntl;
3247         uint32_t mem_size;
3248         uint32_t addr = 0;
3249
3250         mem_cntl = RREG32(RADEON_MEM_CNTL);
3251         if (mem_cntl & RV100_HALF_MODE)
3252                 ram /= 2;
3253         mem_size = ram;
3254         mem_cntl &= ~(0xff << 8);
3255         mem_cntl |= (mem_addr_mapping & 0xff) << 8;
3256         WREG32(RADEON_MEM_CNTL, mem_cntl);
3257         RREG32(RADEON_MEM_CNTL);
3258
3259         /* sdram reset ? */
3260
3261         /* something like this????  */
3262         while (ram--) {
3263                 addr = ram * 1024 * 1024;
3264                 /* write to each page */
3265                 WREG32_IDX((addr) | RADEON_MM_APER, 0xdeadbeef);
3266                 /* read back and verify */
3267                 if (RREG32_IDX((addr) | RADEON_MM_APER) != 0xdeadbeef)
3268                         return 0;
3269         }
3270
3271         return mem_size;
3272 }
3273
3274 static void combios_write_ram_size(struct drm_device *dev)
3275 {
3276         struct radeon_device *rdev = dev->dev_private;
3277         uint8_t rev;
3278         uint16_t offset;
3279         uint32_t mem_size = 0;
3280         uint32_t mem_cntl = 0;
3281
3282         /* should do something smarter here I guess... */
3283         if (rdev->flags & RADEON_IS_IGP)
3284                 return;
3285
3286         /* first check detected mem table */
3287         offset = combios_get_table_offset(dev, COMBIOS_DETECTED_MEM_TABLE);
3288         if (offset) {
3289                 rev = RBIOS8(offset);
3290                 if (rev < 3) {
3291                         mem_cntl = RBIOS32(offset + 1);
3292                         mem_size = RBIOS16(offset + 5);
3293                         if ((rdev->family < CHIP_R200) &&
3294                             !ASIC_IS_RN50(rdev))
3295                                 WREG32(RADEON_MEM_CNTL, mem_cntl);
3296                 }
3297         }
3298
3299         if (!mem_size) {
3300                 offset =
3301                     combios_get_table_offset(dev, COMBIOS_MEM_CONFIG_TABLE);
3302                 if (offset) {
3303                         rev = RBIOS8(offset - 1);
3304                         if (rev < 1) {
3305                                 if ((rdev->family < CHIP_R200)
3306                                     && !ASIC_IS_RN50(rdev)) {
3307                                         int ram = 0;
3308                                         int mem_addr_mapping = 0;
3309
3310                                         while (RBIOS8(offset)) {
3311                                                 ram = RBIOS8(offset);
3312                                                 mem_addr_mapping =
3313                                                     RBIOS8(offset + 1);
3314                                                 if (mem_addr_mapping != 0x25)
3315                                                         ram *= 2;
3316                                                 mem_size =
3317                                                     combios_detect_ram(dev, ram,
3318                                                                        mem_addr_mapping);
3319                                                 if (mem_size)
3320                                                         break;
3321                                                 offset += 2;
3322                                         }
3323                                 } else
3324                                         mem_size = RBIOS8(offset);
3325                         } else {
3326                                 mem_size = RBIOS8(offset);
3327                                 mem_size *= 2;  /* convert to MB */
3328                         }
3329                 }
3330         }
3331
3332         mem_size *= (1024 * 1024);      /* convert to bytes */
3333         WREG32(RADEON_CONFIG_MEMSIZE, mem_size);
3334 }
3335
3336 void radeon_combios_asic_init(struct drm_device *dev)
3337 {
3338         struct radeon_device *rdev = dev->dev_private;
3339         uint16_t table;
3340
3341         /* port hardcoded mac stuff from radeonfb */
3342         if (rdev->bios == NULL)
3343                 return;
3344
3345         /* ASIC INIT 1 */
3346         table = combios_get_table_offset(dev, COMBIOS_ASIC_INIT_1_TABLE);
3347         if (table)
3348                 combios_parse_mmio_table(dev, table);
3349
3350         /* PLL INIT */
3351         table = combios_get_table_offset(dev, COMBIOS_PLL_INIT_TABLE);
3352         if (table)
3353                 combios_parse_pll_table(dev, table);
3354
3355         /* ASIC INIT 2 */
3356         table = combios_get_table_offset(dev, COMBIOS_ASIC_INIT_2_TABLE);
3357         if (table)
3358                 combios_parse_mmio_table(dev, table);
3359
3360         if (!(rdev->flags & RADEON_IS_IGP)) {
3361                 /* ASIC INIT 4 */
3362                 table =
3363                     combios_get_table_offset(dev, COMBIOS_ASIC_INIT_4_TABLE);
3364                 if (table)
3365                         combios_parse_mmio_table(dev, table);
3366
3367                 /* RAM RESET */
3368                 table = combios_get_table_offset(dev, COMBIOS_RAM_RESET_TABLE);
3369                 if (table)
3370                         combios_parse_ram_reset_table(dev, table);
3371
3372                 /* ASIC INIT 3 */
3373                 table =
3374                     combios_get_table_offset(dev, COMBIOS_ASIC_INIT_3_TABLE);
3375                 if (table)
3376                         combios_parse_mmio_table(dev, table);
3377
3378                 /* write CONFIG_MEMSIZE */
3379                 combios_write_ram_size(dev);
3380         }
3381
3382         /* quirk for rs4xx HP nx6125 laptop to make it resume
3383          * - it hangs on resume inside the dynclk 1 table.
3384          */
3385         if (rdev->family == CHIP_RS480 &&
3386             rdev->pdev->subsystem_vendor == 0x103c &&
3387             rdev->pdev->subsystem_device == 0x308b)
3388                 return;
3389
3390         /* quirk for rs4xx HP dv5000 laptop to make it resume
3391          * - it hangs on resume inside the dynclk 1 table.
3392          */
3393         if (rdev->family == CHIP_RS480 &&
3394             rdev->pdev->subsystem_vendor == 0x103c &&
3395             rdev->pdev->subsystem_device == 0x30a4)
3396                 return;
3397
3398         /* quirk for rs4xx Compaq Presario V5245EU laptop to make it resume
3399          * - it hangs on resume inside the dynclk 1 table.
3400          */
3401         if (rdev->family == CHIP_RS480 &&
3402             rdev->pdev->subsystem_vendor == 0x103c &&
3403             rdev->pdev->subsystem_device == 0x30ae)
3404                 return;
3405
3406         /* DYN CLK 1 */
3407         table = combios_get_table_offset(dev, COMBIOS_DYN_CLK_1_TABLE);
3408         if (table)
3409                 combios_parse_pll_table(dev, table);
3410
3411 }
3412
3413 void radeon_combios_initialize_bios_scratch_regs(struct drm_device *dev)
3414 {
3415         struct radeon_device *rdev = dev->dev_private;
3416         uint32_t bios_0_scratch, bios_6_scratch, bios_7_scratch;
3417
3418         bios_0_scratch = RREG32(RADEON_BIOS_0_SCRATCH);
3419         bios_6_scratch = RREG32(RADEON_BIOS_6_SCRATCH);
3420         bios_7_scratch = RREG32(RADEON_BIOS_7_SCRATCH);
3421
3422         /* let the bios control the backlight */
3423         bios_0_scratch &= ~RADEON_DRIVER_BRIGHTNESS_EN;
3424
3425         /* tell the bios not to handle mode switching */
3426         bios_6_scratch |= (RADEON_DISPLAY_SWITCHING_DIS |
3427                            RADEON_ACC_MODE_CHANGE);
3428
3429         /* tell the bios a driver is loaded */
3430         bios_7_scratch |= RADEON_DRV_LOADED;
3431
3432         WREG32(RADEON_BIOS_0_SCRATCH, bios_0_scratch);
3433         WREG32(RADEON_BIOS_6_SCRATCH, bios_6_scratch);
3434         WREG32(RADEON_BIOS_7_SCRATCH, bios_7_scratch);
3435 }
3436
3437 void radeon_combios_output_lock(struct drm_encoder *encoder, bool lock)
3438 {
3439         struct drm_device *dev = encoder->dev;
3440         struct radeon_device *rdev = dev->dev_private;
3441         uint32_t bios_6_scratch;
3442
3443         bios_6_scratch = RREG32(RADEON_BIOS_6_SCRATCH);
3444
3445         if (lock)
3446                 bios_6_scratch |= RADEON_DRIVER_CRITICAL;
3447         else
3448                 bios_6_scratch &= ~RADEON_DRIVER_CRITICAL;
3449
3450         WREG32(RADEON_BIOS_6_SCRATCH, bios_6_scratch);
3451 }
3452
3453 void
3454 radeon_combios_connected_scratch_regs(struct drm_connector *connector,
3455                                       struct drm_encoder *encoder,
3456                                       bool connected)
3457 {
3458         struct drm_device *dev = connector->dev;
3459         struct radeon_device *rdev = dev->dev_private;
3460         struct radeon_connector *radeon_connector =
3461             to_radeon_connector(connector);
3462         struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder);
3463         uint32_t bios_4_scratch = RREG32(RADEON_BIOS_4_SCRATCH);
3464         uint32_t bios_5_scratch = RREG32(RADEON_BIOS_5_SCRATCH);
3465
3466         if ((radeon_encoder->devices & ATOM_DEVICE_TV1_SUPPORT) &&
3467             (radeon_connector->devices & ATOM_DEVICE_TV1_SUPPORT)) {
3468                 if (connected) {
3469                         DRM_DEBUG_KMS("TV1 connected\n");
3470                         /* fix me */
3471                         bios_4_scratch |= RADEON_TV1_ATTACHED_SVIDEO;
3472                         /*save->bios_4_scratch |= RADEON_TV1_ATTACHED_COMP; */
3473                         bios_5_scratch |= RADEON_TV1_ON;
3474                         bios_5_scratch |= RADEON_ACC_REQ_TV1;
3475                 } else {
3476                         DRM_DEBUG_KMS("TV1 disconnected\n");
3477                         bios_4_scratch &= ~RADEON_TV1_ATTACHED_MASK;
3478                         bios_5_scratch &= ~RADEON_TV1_ON;
3479                         bios_5_scratch &= ~RADEON_ACC_REQ_TV1;
3480                 }
3481         }
3482         if ((radeon_encoder->devices & ATOM_DEVICE_LCD1_SUPPORT) &&
3483             (radeon_connector->devices & ATOM_DEVICE_LCD1_SUPPORT)) {
3484                 if (connected) {
3485                         DRM_DEBUG_KMS("LCD1 connected\n");
3486                         bios_4_scratch |= RADEON_LCD1_ATTACHED;
3487                         bios_5_scratch |= RADEON_LCD1_ON;
3488                         bios_5_scratch |= RADEON_ACC_REQ_LCD1;
3489                 } else {
3490                         DRM_DEBUG_KMS("LCD1 disconnected\n");
3491                         bios_4_scratch &= ~RADEON_LCD1_ATTACHED;
3492                         bios_5_scratch &= ~RADEON_LCD1_ON;
3493                         bios_5_scratch &= ~RADEON_ACC_REQ_LCD1;
3494                 }
3495         }
3496         if ((radeon_encoder->devices & ATOM_DEVICE_CRT1_SUPPORT) &&
3497             (radeon_connector->devices & ATOM_DEVICE_CRT1_SUPPORT)) {
3498                 if (connected) {
3499                         DRM_DEBUG_KMS("CRT1 connected\n");
3500                         bios_4_scratch |= RADEON_CRT1_ATTACHED_COLOR;
3501                         bios_5_scratch |= RADEON_CRT1_ON;
3502                         bios_5_scratch |= RADEON_ACC_REQ_CRT1;
3503                 } else {
3504                         DRM_DEBUG_KMS("CRT1 disconnected\n");
3505                         bios_4_scratch &= ~RADEON_CRT1_ATTACHED_MASK;
3506                         bios_5_scratch &= ~RADEON_CRT1_ON;
3507                         bios_5_scratch &= ~RADEON_ACC_REQ_CRT1;
3508                 }
3509         }
3510         if ((radeon_encoder->devices & ATOM_DEVICE_CRT2_SUPPORT) &&
3511             (radeon_connector->devices & ATOM_DEVICE_CRT2_SUPPORT)) {
3512                 if (connected) {
3513                         DRM_DEBUG_KMS("CRT2 connected\n");
3514                         bios_4_scratch |= RADEON_CRT2_ATTACHED_COLOR;
3515                         bios_5_scratch |= RADEON_CRT2_ON;
3516                         bios_5_scratch |= RADEON_ACC_REQ_CRT2;
3517                 } else {
3518                         DRM_DEBUG_KMS("CRT2 disconnected\n");
3519                         bios_4_scratch &= ~RADEON_CRT2_ATTACHED_MASK;
3520                         bios_5_scratch &= ~RADEON_CRT2_ON;
3521                         bios_5_scratch &= ~RADEON_ACC_REQ_CRT2;
3522                 }
3523         }
3524         if ((radeon_encoder->devices & ATOM_DEVICE_DFP1_SUPPORT) &&
3525             (radeon_connector->devices & ATOM_DEVICE_DFP1_SUPPORT)) {
3526                 if (connected) {
3527                         DRM_DEBUG_KMS("DFP1 connected\n");
3528                         bios_4_scratch |= RADEON_DFP1_ATTACHED;
3529                         bios_5_scratch |= RADEON_DFP1_ON;
3530                         bios_5_scratch |= RADEON_ACC_REQ_DFP1;
3531                 } else {
3532                         DRM_DEBUG_KMS("DFP1 disconnected\n");
3533                         bios_4_scratch &= ~RADEON_DFP1_ATTACHED;
3534                         bios_5_scratch &= ~RADEON_DFP1_ON;
3535                         bios_5_scratch &= ~RADEON_ACC_REQ_DFP1;
3536                 }
3537         }
3538         if ((radeon_encoder->devices & ATOM_DEVICE_DFP2_SUPPORT) &&
3539             (radeon_connector->devices & ATOM_DEVICE_DFP2_SUPPORT)) {
3540                 if (connected) {
3541                         DRM_DEBUG_KMS("DFP2 connected\n");
3542                         bios_4_scratch |= RADEON_DFP2_ATTACHED;
3543                         bios_5_scratch |= RADEON_DFP2_ON;
3544                         bios_5_scratch |= RADEON_ACC_REQ_DFP2;
3545                 } else {
3546                         DRM_DEBUG_KMS("DFP2 disconnected\n");
3547                         bios_4_scratch &= ~RADEON_DFP2_ATTACHED;
3548                         bios_5_scratch &= ~RADEON_DFP2_ON;
3549                         bios_5_scratch &= ~RADEON_ACC_REQ_DFP2;
3550                 }
3551         }
3552         WREG32(RADEON_BIOS_4_SCRATCH, bios_4_scratch);
3553         WREG32(RADEON_BIOS_5_SCRATCH, bios_5_scratch);
3554 }
3555
3556 void
3557 radeon_combios_encoder_crtc_scratch_regs(struct drm_encoder *encoder, int crtc)
3558 {
3559         struct drm_device *dev = encoder->dev;
3560         struct radeon_device *rdev = dev->dev_private;
3561         struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder);
3562         uint32_t bios_5_scratch = RREG32(RADEON_BIOS_5_SCRATCH);
3563
3564         if (radeon_encoder->devices & ATOM_DEVICE_TV1_SUPPORT) {
3565                 bios_5_scratch &= ~RADEON_TV1_CRTC_MASK;
3566                 bios_5_scratch |= (crtc << RADEON_TV1_CRTC_SHIFT);
3567         }
3568         if (radeon_encoder->devices & ATOM_DEVICE_CRT1_SUPPORT) {
3569                 bios_5_scratch &= ~RADEON_CRT1_CRTC_MASK;
3570                 bios_5_scratch |= (crtc << RADEON_CRT1_CRTC_SHIFT);
3571         }
3572         if (radeon_encoder->devices & ATOM_DEVICE_CRT2_SUPPORT) {
3573                 bios_5_scratch &= ~RADEON_CRT2_CRTC_MASK;
3574                 bios_5_scratch |= (crtc << RADEON_CRT2_CRTC_SHIFT);
3575         }
3576         if (radeon_encoder->devices & ATOM_DEVICE_LCD1_SUPPORT) {
3577                 bios_5_scratch &= ~RADEON_LCD1_CRTC_MASK;
3578                 bios_5_scratch |= (crtc << RADEON_LCD1_CRTC_SHIFT);
3579         }
3580         if (radeon_encoder->devices & ATOM_DEVICE_DFP1_SUPPORT) {
3581                 bios_5_scratch &= ~RADEON_DFP1_CRTC_MASK;
3582                 bios_5_scratch |= (crtc << RADEON_DFP1_CRTC_SHIFT);
3583         }
3584         if (radeon_encoder->devices & ATOM_DEVICE_DFP2_SUPPORT) {
3585                 bios_5_scratch &= ~RADEON_DFP2_CRTC_MASK;
3586                 bios_5_scratch |= (crtc << RADEON_DFP2_CRTC_SHIFT);
3587         }
3588         WREG32(RADEON_BIOS_5_SCRATCH, bios_5_scratch);
3589 }
3590
3591 void
3592 radeon_combios_encoder_dpms_scratch_regs(struct drm_encoder *encoder, bool on)
3593 {
3594         struct drm_device *dev = encoder->dev;
3595         struct radeon_device *rdev = dev->dev_private;
3596         struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder);
3597         uint32_t bios_6_scratch = RREG32(RADEON_BIOS_6_SCRATCH);
3598
3599         if (radeon_encoder->devices & (ATOM_DEVICE_TV_SUPPORT)) {
3600                 if (on)
3601                         bios_6_scratch |= RADEON_TV_DPMS_ON;
3602                 else
3603                         bios_6_scratch &= ~RADEON_TV_DPMS_ON;
3604         }
3605         if (radeon_encoder->devices & (ATOM_DEVICE_CRT_SUPPORT)) {
3606                 if (on)
3607                         bios_6_scratch |= RADEON_CRT_DPMS_ON;
3608                 else
3609                         bios_6_scratch &= ~RADEON_CRT_DPMS_ON;
3610         }
3611         if (radeon_encoder->devices & (ATOM_DEVICE_LCD_SUPPORT)) {
3612                 if (on)
3613                         bios_6_scratch |= RADEON_LCD_DPMS_ON;
3614                 else
3615                         bios_6_scratch &= ~RADEON_LCD_DPMS_ON;
3616         }
3617         if (radeon_encoder->devices & (ATOM_DEVICE_DFP_SUPPORT)) {
3618                 if (on)
3619                         bios_6_scratch |= RADEON_DFP_DPMS_ON;
3620                 else
3621                         bios_6_scratch &= ~RADEON_DFP_DPMS_ON;
3622         }
3623         WREG32(RADEON_BIOS_6_SCRATCH, bios_6_scratch);
3624 }