summaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/via/crtc_hw.h
blob: 2fbce928b1240aca8bfbd184eb22eb530c286997 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
/*
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sub license,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice (including the
 * next paragraph) shall be included in all copies or substantial portions
 * of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 * DEALINGS IN THE SOFTWARE.
 *
 * Authors:
 * James Simmons <jsimmons@infradead.org>
 */

#ifndef __CRTC_HW_H__
#define __CRTC_HW_H__

#include <video/vga.h>

#include <drm/drmP.h>


/* To be used with via_analog_set_dpms_control inline function. */
#define VIA_ANALOG_DPMS_ON		0x00
#define VIA_ANALOG_DPMS_STANDBY		0x01
#define VIA_ANALOG_DPMS_SUSPEND		0x02
#define VIA_ANALOG_DPMS_OFF		0x03


struct vga_regset {
	u16	ioport;
	u8	io_addr;
	u8	start_bit;
	u8	end_bit;
};

struct vga_registers {
	unsigned int count;
	struct vga_regset *regs;
};

/************************************************
 *****     Display Timing       *****
 ************************************************/

struct crtc_timings {
	struct vga_registers htotal;
	struct vga_registers hdisplay;
	struct vga_registers hblank_start;
	struct vga_registers hblank_end;
	struct vga_registers hsync_start;
	struct vga_registers hsync_end;
	struct vga_registers vtotal;
	struct vga_registers vdisplay;
	struct vga_registers vblank_start;
	struct vga_registers vblank_end;
	struct vga_registers vsync_start;
	struct vga_registers vsync_end;
};

/* Write a value to misc register with a mask */
static inline void svga_wmisc_mask(void __iomem *regbase, u8 data, u8 mask)
{
	vga_w(regbase, VGA_MIS_W, (data & mask) | (vga_r(regbase, VGA_MIS_R) & ~mask));
}

/* Write a value to a sequence register with a mask */
static inline void svga_wseq_mask(void __iomem *regbase, u8 index, u8 data, u8 mask)
{
	vga_wseq(regbase, index, (data & mask) | (vga_rseq(regbase, index) & ~mask));
}

/* Write a value to a CRT register with a mask */
static inline void svga_wcrt_mask(void __iomem *regbase, u8 index, u8 data, u8 mask)
{
	vga_wcrt(regbase, index, (data & mask) | (vga_rcrt(regbase, index) & ~mask));
}


/***********************************************************************

 VIA Technologies Chrome IGP Register Access Helper Functions

***********************************************************************/

/*
 * Sets DVP0 (Digital Video Port 0) I/O pad state.
 */
static inline void
via_dvp0_set_io_pad_state(void __iomem *regs, u8 io_pad_state)
{
	/* 3C5.1E[7:6] - DVP0 Power Control
	 *               0x: Pad always off
	 *               10: Depend on the other control signal
	 *               11: Pad on/off according to the
	 *                   Power Management Status (PMS) */
	svga_wseq_mask(regs, 0x1E, io_pad_state << 6, BIT(7) | BIT(6));
	DRM_DEBUG_KMS("DVP0 I/O Pad State: %s\n",
			((io_pad_state & (BIT(1) | BIT(0))) == 0x03) ? "On" :
			((io_pad_state & (BIT(1) | BIT(0))) == 0x02) ? "Conditional" :
			((io_pad_state & (BIT(1) | BIT(0))) == 0x01) ? "Off" :
								       "Off");
}

/*
 * Sets DVP0 (Digital Video Port 0) clock I/O pad drive strength.
 */
static inline void
via_dvp0_set_clock_drive_strength(void __iomem *regs,
					u8 clock_drive_strength)
{
	/* 3C5.1E[2] - DVP0 Clock Drive Strength Bit [0] */
	svga_wseq_mask(regs, 0x1E,
			clock_drive_strength << 2, BIT(2));

	/* 3C5.2A[4] - DVP0 Clock Drive Strength Bit [1] */
	svga_wseq_mask(regs, 0x2A,
			clock_drive_strength << 3, BIT(4));

	DRM_DEBUG_KMS("DVP0 Clock I/O Pad Drive Strength: %lu\n",
			clock_drive_strength & (BIT(1) | BIT(0)));
}

/*
 * Sets DVP0 (Digital Video Port 0) data I/O pads drive strength.
 */
static inline void
via_dvp0_set_data_drive_strength(void __iomem *regs,
					u8 data_drive_strength)
{
	/* 3C5.1B[1] - DVP0 Data Drive Strength Bit [0] */
	svga_wseq_mask(regs, 0x1B,
			data_drive_strength << 1, BIT(1));

	/* 3C5.2A[5] - DVP0 Data Drive Strength Bit [1] */
	svga_wseq_mask(regs, 0x2A,
			data_drive_strength << 4, BIT(5));

	DRM_DEBUG_KMS("DVP0 Data I/O Pads Drive Strength: %lu\n",
			data_drive_strength & (BIT(1) | BIT(0)));
}

/*
 * Sets the display source of DVP0 (Digital Video Port 0) interface.
 */
static inline void
via_dvp0_set_display_source(void __iomem *regs, u8 display_source)
{
	/* 3X5.96[4] - DVP0 Data Source Selection
	 *             0: Primary Display
	 *             1: Secondary Display */
	svga_wcrt_mask(regs, 0x96, display_source << 4, BIT(4));
	DRM_DEBUG_KMS("DVP0 Display Source: IGA%d\n",
			(display_source & 0x01) + 1);
}

/*
 * Sets DVP1 (Digital Video Port 1) I/O pad state.
 */
static inline void
via_dvp1_set_io_pad_state(void __iomem *regs, u8 io_pad_state)
{
	/* 3C5.1E[5:4] - DVP1 Power Control
	 *               0x: Pad always off
	 *               10: Depend on the other control signal
	 *               11: Pad on/off according to the
	 *                   Power Management Status (PMS) */
	svga_wseq_mask(regs, 0x1E, io_pad_state << 4, BIT(5) | BIT(4));
	DRM_DEBUG_KMS("DVP1 I/O Pad State: %s\n",
			((io_pad_state & (BIT(1) | BIT(0))) == 0x03) ? "On" :
			((io_pad_state & (BIT(1) | BIT(0))) == 0x02) ? "Conditional" :
			((io_pad_state & (BIT(1) | BIT(0))) == 0x01) ? "Off" :
								       "Off");
}

/*
 * Sets DVP1 (Digital Video Port 1) clock I/O pad drive strength.
 */
static inline void
via_dvp1_set_clock_drive_strength(void __iomem *regs,
					u8 clock_drive_strength)
{
	/* 3C5.65[3:2] - DVP1 Clock Pads Driving Select [1:0]
	 *               00: lowest
	 *               01: low
	 *               10: high
	 *               11: highest */
	svga_wseq_mask(regs, 0x65,
			clock_drive_strength << 2, BIT(3) | BIT(2));
	DRM_DEBUG_KMS("DVP1 Clock I/O Pad Drive Strength: %lu\n",
			clock_drive_strength & (BIT(1) | BIT(0)));
}

/*
 * Sets DVP1 (Digital Video Port 1) data I/O pads drive strength.
 */
static inline void
via_dvp1_set_data_drive_strength(void __iomem *regs,
					u8 data_drive_strength)
{
	/* 3C5.65[1:0] - DVP1 Data Pads Driving Select [1:0}
	 *               00: lowest
	 *               01: low
	 *               10: high
	 *               11: highest */
	svga_wseq_mask(regs, 0x65,
			data_drive_strength, BIT(1) | BIT(0));
	DRM_DEBUG_KMS("DVP1 Data I/O Pads Drive Strength: %lu\n",
			data_drive_strength & (BIT(1) | BIT(0)));
}

/*
 * Sets the display source of DVP1 (Digital Video Port 1) interface.
 */
static inline void
via_dvp1_set_display_source(void __iomem *regs, u8 display_source)
{
	/* 3X5.9B[4] - DVP1 Data Source Selection
	 *             0: Primary Display
	 *             1: Secondary Display */
	svga_wcrt_mask(regs, 0x9B, display_source << 4, BIT(4));
	DRM_DEBUG_KMS("DVP1 Display Source: IGA%d\n",
			(display_source & 0x01) + 1);
}

/*
 * Sets analog (VGA) DAC power.
 */
static inline void
via_analog_set_power(void __iomem *regs, bool output_state)
{
	/* 3X5.47[2] - DACOFF Backdoor Register
	 *             0: DAC on
	 *             1: DAC off */
	svga_wcrt_mask(regs, 0x47,
			output_state ? 0x00 : BIT(2), BIT(2));
	DRM_DEBUG_KMS("Analog (VGA) Power: %s\n",
			output_state ? "On" : "Off");
}

/*
 * Sets analog (VGA) DPMS state.
 */
static inline void
via_analog_set_dpms_control(void __iomem *regs, u8 dpms_control)
{
	/* 3X5.36[5:4] - DPMS Control
	 *               00: On
	 *               01: Stand-by
	 *               10: Suspend
	 *               11: Off */
	svga_wcrt_mask(regs, 0x36,
			dpms_control << 4, BIT(5) | BIT(4));
	DRM_DEBUG_KMS("Analog (VGA) DPMS: %s\n",
			((dpms_control & (BIT(1) | BIT(0))) == 0x03) ?
				"Off" :
			((dpms_control & (BIT(1) | BIT(0))) == 0x02) ?
				"Suspend" :
			((dpms_control & (BIT(1) | BIT(0))) == 0x01) ?
				"Standby" :
				"On");
}

/*
 * Sets analog (VGA) sync polarity.
 */
static inline void
via_analog_set_sync_polarity(void __iomem *regs, u8 sync_polarity)
{
	/* 3C2[7] - Analog Vertical Sync Polarity
	 *          0: Positive
	 *          1: Negative
	 * 3C2[6] - Analog Horizontal Sync Polarity
	 *          0: Positive
	 *          1: Negative */
	svga_wmisc_mask(regs,
			sync_polarity << 6, (BIT(1) | BIT(0)) << 6);
	DRM_DEBUG_KMS("Analog (VGA) Horizontal Sync Polarity: %s\n",
			(sync_polarity & BIT(0)) ? "-" : "+");
	DRM_DEBUG_KMS("Analog (VGA) Vertical Sync Polarity: %s\n",
			(sync_polarity & BIT(1)) ? "-" : "+");
}

/*
 * Sets analog (VGA) display source.
 */
static inline void
via_analog_set_display_source(void __iomem *regs, u8 display_source)
{
	/* 3C5.16[6] - CRT Display Source
	 *             0: Primary Display Stream (IGA1)
	 *             1: Secondary Display Stream (IGA2) */
	svga_wseq_mask(regs, 0x16,
			display_source << 6, BIT(6));
	DRM_DEBUG_KMS("Analog (VGA) Display Source: IGA%d\n",
			(display_source & 0x01) + 1);
}

/*
 * Sets KM400 or later chipset's FP primary power sequence control
 * type.
 */
static inline void
via_fp_set_primary_power_seq_type(void __iomem *regs, bool ctrl_type)
{
	/* 3X5.91[0] - FP Primary Power Sequence Control Type
	 *             0: Hardware Control
	 *             1: Software Control */
	svga_wcrt_mask(regs, 0x91,
			ctrl_type ? 0x00 : BIT(0), BIT(0));
	DRM_DEBUG_KMS("FP Primary Power Sequence Control Type: "
			"%s Control\n",
			ctrl_type ? "Hardware" : "Software");
}

/*
 * Sets KM400 or later chipset's FP primary software controlled
 * back light.
 */
static inline void
via_fp_set_primary_soft_back_light(void __iomem *regs, bool soft_on)
{
	/* 3X5.91[1] - FP Primary Software Back Light On
	 *             0: Off
	 *             1: On */
	svga_wcrt_mask(regs, 0x91,
			soft_on ? BIT(1) : 0x00, BIT(1));
	DRM_DEBUG_KMS("FP Primary Software Controlled Back Light: "
			"%s\n", soft_on ? "On" : "Off");
}

/*
 * Sets KM400 or later chipset's FP primary software controlled
 * VEE.
 */
static inline void
via_fp_set_primary_soft_vee(void __iomem *regs, bool soft_on)
{
	/* 3X5.91[2] - FP Primary Software VEE On
	 *             0: Off
	 *             1: On */
	svga_wcrt_mask(regs, 0x91,
			soft_on ? BIT(2) : 0x00, BIT(2));
	DRM_DEBUG_KMS("FP Primary Software Controlled VEE: %s\n",
			soft_on ? "On" : "Off");
}

/*
 * Sets KM400 or later chipset's FP primary software controlled
 * data.
 */
static inline void
via_fp_set_primary_soft_data(void __iomem *regs, bool soft_on)
{
	/* 3X5.91[3] - FP Primary Software Data On
	 *             0: Off
	 *             1: On */
	svga_wcrt_mask(regs, 0x91,
			soft_on ? BIT(3) : 0x00, BIT(3));
	DRM_DEBUG_KMS("FP Primary Software Controlled Data: %s\n",
			soft_on ? "On" : "Off");
}

/*
 * Sets KM400 or later chipset's FP primary software controlled
 * VDD.
 */
static inline void
via_fp_set_primary_soft_vdd(void __iomem *regs, bool soft_on)
{
	/* 3X5.91[4] - FP Primary Software VDD On
	 *             0: Off
	 *             1: On */
	svga_wcrt_mask(regs, 0x91,
			soft_on ? BIT(4) : 0x00, BIT(4));
	DRM_DEBUG_KMS("FP Primary Software Controlled VDD: %s\n",
			soft_on ? "On" : "Off");
}

/*
 * Sets KM400 or later chipset's FP primary direct back
 * light control.
 */
static inline void
via_fp_set_primary_direct_back_light_ctrl(void __iomem *regs, bool direct_on)
{
	/* 3X5.91[6] - FP Primary Direct Back Light Control
	 *             0: On
	 *             1: Off */
	svga_wcrt_mask(regs, 0x91,
			direct_on ? 0x00 : BIT(6), BIT(6));
	DRM_DEBUG_KMS("FP Primary Direct Back Light Control: %s\n",
			direct_on ? "On" : "Off");
}

/*
 * Sets KM400 or later chipset's FP primary direct display
 * period control.
 */
static inline void
via_fp_set_primary_direct_display_period(void __iomem *regs, bool direct_on)
{
	/* 3X5.91[7] - FP Primary Direct Display Period Control
	 *             0: On
	 *             1: Off */
	svga_wcrt_mask(regs, 0x91,
			direct_on ? 0x00 : BIT(7), BIT(7));
	DRM_DEBUG_KMS("FP Primary Direct Display Period Control: %s\n",
			direct_on ? "On" : "Off");
}

/*
 * Sets KM400 or later chipset's FP primary hardware controlled
 * power sequence.
 */
static inline void
via_fp_set_primary_hard_power(void __iomem *regs, bool power_state)
{
	/* 3X5.6A[3] - FP Primary Hardware Controlled Power Sequence
	 *             0: Hardware Controlled Power Off
	 *             1: Hardware Controlled Power On */
	svga_wcrt_mask(regs, 0x6A,
			power_state ? BIT(3) : 0x00, BIT(3));
	DRM_DEBUG_KMS("FP Primary Hardware Controlled Power "
			"Sequence: %s\n", power_state ? "On" : "Off");
}

/*
 * Sets CX700 / VX700 or later chipset's FP secondary
 * power sequence control type.
 */
static inline void
via_fp_set_secondary_power_seq_type(void __iomem *regs,
					bool ctrl_type)
{
	/* 3X5.D3[0] - FP Secondary Power Sequence Control Type
	 *             0: Hardware Control
	 *             1: Software Control */
	svga_wcrt_mask(regs, 0xD3,
			ctrl_type ? 0x00 : BIT(0), BIT(0));
	DRM_DEBUG_KMS("FP Secondary Power Sequence Control Type: "
			"%s Control\n",
			ctrl_type ? "Hardware" : "Software");
}

/*
 * Sets CX700 / VX700 or later chipset's FP secondary
 * software controlled back light.
 */
static inline void
via_fp_set_secondary_soft_back_light(void __iomem *regs,
					bool soft_on)
{
	/* 3X5.D3[1] - FP Secondary Software Back Light On
	 *             0: Off
	 *             1: On */
	svga_wcrt_mask(regs, 0xD3,
			soft_on ? BIT(1) : 0x00, BIT(1));
	DRM_DEBUG_KMS("FP Secondary Software Controlled Back Light: "
			"%s\n", soft_on ? "On" : "Off");
}

/*
 * Sets CX700 / VX700 or later chipset's FP secondary software
 * controlled VEE.
 */
static inline void
via_fp_set_secondary_soft_vee(void __iomem *regs,
				bool soft_on)
{
	/* 3X5.D3[2] - FP Secondary Software VEE On
	 *             0: Off
	 *             1: On */
	svga_wcrt_mask(regs, 0xD3,
			soft_on ? BIT(2) : 0x00, BIT(2));
	DRM_DEBUG_KMS("FP Secondary Software Controlled VEE: %s\n",
			soft_on ? "On" : "Off");
}

/*
 * Sets CX700 / VX700 or later chipset's FP secondary software
 * controlled data.
 */
static inline void
via_fp_set_secondary_soft_data(void __iomem *regs,
				bool soft_on)
{
	/* 3X5.D3[3] - FP Secondary Software Data On
	 *             0: Off
	 *             1: On */
	svga_wcrt_mask(regs, 0xD3,
			soft_on ? BIT(3) : 0x00, BIT(3));
	DRM_DEBUG_KMS("FP Secondary Software Controlled Data: %s\n",
			soft_on ? "On" : "Off");
}

/*
 * Sets FPDP (Flat Panel Display Port) Low I/O pad state.
 */
static inline void
via_fpdp_low_set_io_pad_state(void __iomem *regs, u8 io_pad_state)
{
	/* 3C5.2A[1:0] - FPDP Low I/O Pad Control
	 *               0x: Pad always off
	 *               10: Depend on the other control signal
	 *               11: Pad on/off according to the
	 *                   Power Management Status (PMS) */
	svga_wseq_mask(regs, 0x2A,
			io_pad_state, BIT(1) | BIT(0));
	DRM_DEBUG_KMS("FPDP Low I/O Pad State: %s\n",
			((io_pad_state & (BIT(1) | BIT(0))) == 0x03) ?
				"On" :
			((io_pad_state & (BIT(1) | BIT(0))) == 0x02) ?
				"Conditional" :
			((io_pad_state & (BIT(1) | BIT(0))) == 0x01) ?
				"Off" :
				"Off");
}

/*
 * Sets FPDP (Flat Panel Display Port) Low interface display source.
 */
static inline void
via_fpdp_low_set_display_source(void __iomem *regs, u8 display_source)
{
	/* 3X5.99[4] - FPDP Low Data Source Selection
	 *             0: Primary Display
	 *             1: Secondary Display */
	svga_wcrt_mask(regs, 0x99,
			display_source << 4, BIT(4));
	DRM_DEBUG_KMS("FPDP Low Display Source: IGA%d\n",
			(display_source & 0x01) + 1);
}

/*
 * Sets FPDP (Flat Panel Display Port) High I/O pad state.
 */
static inline void
via_fpdp_high_set_io_pad_state(void __iomem *regs, u8 io_pad_state)
{
	/* 3C5.2A[3:2] - FPDP High I/O Pad Control
	 *               0x: Pad always off
	 *               10: Depend on the other control signal
	 *               11: Pad on/off according to the
	 *                   Power Management Status (PMS) */
	svga_wseq_mask(regs, 0x2A,
			io_pad_state << 2, BIT(3) | BIT(2));
	DRM_DEBUG_KMS("FPDP High I/O Pad State: %s\n",
			((io_pad_state & (BIT(1) | BIT(0))) == 0x03) ?
				"On" :
			((io_pad_state & (BIT(1) | BIT(0))) == 0x02) ?
				"Conditional" :
			((io_pad_state & (BIT(1) | BIT(0))) == 0x01) ?
				"Off" :
				"Off");
}

/*
 * Sets FPDP (Flat Panel Display Port) High interface display source.
 */
static inline void
via_fpdp_high_set_display_source(void __iomem *regs, u8 display_source)
{
	/* 3X5.97[4] - FPDP High Data Source Selection
	 *             0: Primary Display
	 *             1: Secondary Display */
	svga_wcrt_mask(regs, 0x97,
			display_source << 4, BIT(4));
	DRM_DEBUG_KMS("FPDP High Display Source: IGA%d\n",
			(display_source & 0x01) + 1);
}

/*
 * Sets CX700 or later single chipset's LVDS1 power sequence type.
 */
static inline void
via_lvds1_set_power_seq(void __iomem *regs, bool softCtrl)
{
	/* Set LVDS1 power sequence type. */
	/* 3X5.91[0] - LVDS1 Hardware or Software Control Power Sequence
	 *             0: Hardware Control
	 *             1: Software Control */
	svga_wcrt_mask(regs, 0x91, softCtrl ? BIT(0) : 0, BIT(0));
	DRM_DEBUG_KMS("LVDS1 Power Sequence: %s Control\n",
			softCtrl ? "Software" : "Hardware");
}

/*
 * Sets CX700 or later single chipset's LVDS1 software controlled
 * data path state.
 */
static inline void
via_lvds1_set_soft_data(void __iomem *regs, bool softOn)
{
	/* Set LVDS1 software controlled data path state. */
	/* 3X5.91[3] - Software Data On
	 *             0: Off
	 *             1: On */
	svga_wcrt_mask(regs, 0x91, softOn ? BIT(3) : 0, BIT(3));
	DRM_DEBUG_KMS("LVDS1 Software Controlled Data Path: %s\n",
			softOn ? "On" : "Off");
}

/*
 * Sets CX700 or later single chipset's LVDS1 software controlled Vdd.
 */
static inline void
via_lvds1_set_soft_vdd(void __iomem *regs, bool softOn)
{
	/* Set LVDS1 software controlled Vdd. */
	/* 3X5.91[4] - Software VDD On
	 *             0: Off
	 *             1: On */
	svga_wcrt_mask(regs, 0x91, softOn ? BIT(4) : 0, BIT(4));
	DRM_DEBUG_KMS("LVDS1 Software Controlled Vdd: %s\n",
			softOn ? "On" : "Off");
}

/*
 * Sets CX700 or later single chipset's LVDS1 software controlled
 * display period.
 */
static inline void
via_lvds1_set_soft_display_period(void __iomem *regs, bool softOn)
{
	/* Set LVDS1 software controlled display period state. */
	/* 3X5.91[7] - Software Direct On / Off Display Period
	 *             in the Panel Path
	 *             0: On
	 *             1: Off */
	svga_wcrt_mask(regs, 0x91, softOn ? 0 : BIT(7), BIT(7));
	DRM_DEBUG_KMS("LVDS1 Software Controlled Display Period: %s\n",
			softOn ? "On" : "Off");
}

/*
 * Sets LVDS1 I/O pad state.
 */
static inline void
via_lvds1_set_io_pad_setting(void __iomem *regs, u8 io_pad_state)
{
	/* 3C5.2A[1:0] - LVDS1 I/O Pad Control
	 *               0x: Pad always off
	 *               10: Depend on the other control signal
	 *               11: Pad on/off according to the
	 *                   Power Management Status (PMS) */
	svga_wcrt_mask(regs, 0x2A,
			io_pad_state, BIT(1) | BIT(0));
	DRM_DEBUG_KMS("LVDS1 I/O Pad State: %s\n",
			((io_pad_state & (BIT(1) | BIT(0))) == 0x03) ?
				"On" :
			((io_pad_state & (BIT(1) | BIT(0))) == 0x02) ?
				"Conditional" :
			((io_pad_state & (BIT(1) | BIT(0))) == 0x01) ?
				"Off" :
				"Off");
}

/*
 * Sets LVDS1 display source.
 */
static inline void
via_lvds1_set_display_source(void __iomem *regs, u8 display_source)
{
	/* 3X5.99[4] - LVDS Channel 1 Data Source Selection
	 *             0: Primary Display
	 *             1: Secondary Display */
	svga_wcrt_mask(regs, 0x99,
			display_source << 4, BIT(4));
	DRM_DEBUG_KMS("LVDS1 Display Source: IGA%d\n",
			(display_source & 0x01) + 1);
}

/*
 * Sets LVDS2 I/O pad state.
 */
static inline void
via_lvds2_set_io_pad_setting(void __iomem *regs, u8 io_pad_state)
{
	/* 3C5.2A[3:2] - LVDS2 I/O Pad Control
	 *               0x: Pad always off
	 *               10: Depend on the other control signal
	 *               11: Pad on/off according to the
	 *                   Power Management Status (PMS) */
	svga_wcrt_mask(regs, 0x2A,
			io_pad_state << 2, BIT(3) | BIT(2));
	DRM_DEBUG_KMS("LVDS2 I/O Pad State: %s\n",
			((io_pad_state & (BIT(1) | BIT(0))) == 0x03) ?
				"On" :
			((io_pad_state & (BIT(1) | BIT(0))) == 0x02) ?
				"Conditional" :
			((io_pad_state & (BIT(1) | BIT(0))) == 0x01) ?
				"Off" :
				"Off");
}

/*
 * Sets LVDS2 display source.
 */
static inline void
via_lvds2_set_display_source(void __iomem *regs, u8 display_source)
{
	/* 3X5.97[4] - LVDS Channel 2 Data Source Selection
	 *             0: Primary Display
	 *             1: Secondary Display */
	svga_wcrt_mask(regs, 0x97,
			display_source << 4, BIT(4));
	DRM_DEBUG_KMS("LVDS2 Display Source: IGA%d\n",
			(display_source & 0x01) + 1);
}

/*
 * Sets CX700 / VX700 and VX800 chipsets' TMDS (DVI) power state.
 */
static inline void
via_tmds_set_power(void __iomem *regs, bool powerState)
{
	/* 3X5.D2[3] - Power Down (Active High) for DVI
	 *             0: TMDS power on
	 *             1: TMDS power down */
	svga_wcrt_mask(regs, 0xD2,
			powerState ? 0x00 : BIT(3), BIT(3));
	DRM_DEBUG_KMS("TMDS (DVI) Power State: %s\n",
			powerState ? "On" : "Off");
}

/*
 * Sets CX700 / VX700 and VX800 chipsets' TMDS (DVI) sync polarity.
 */
static inline void
via_tmds_set_sync_polarity(void __iomem *regs, u8 syncPolarity)
{
	/* Set TMDS (DVI) sync polarity. */
	/* 3X5.97[6] - DVI (TMDS) VSYNC Polarity
	 *              0: Positive
	 *              1: Negative
	 * 3X5.97[5] - DVI (TMDS) HSYNC Polarity
	 *              0: Positive
	 *              1: Negative */
	svga_wcrt_mask(regs, 0x97,
			syncPolarity << 5, BIT(6) | BIT(5));
	DRM_DEBUG_KMS("TMDS (DVI) Horizontal Sync Polarity: %s\n",
			(syncPolarity & BIT(0)) ? "-" : "+");
	DRM_DEBUG_KMS("TMDS (DVI) Vertical Sync Polarity: %s\n",
			(syncPolarity & BIT(1)) ? "-" : "+");
}

/*
 * Sets TMDS (DVI) display source.
 */
static inline void
via_tmds_set_display_source(void __iomem *regs, u8 displaySource)
{
	/* The integrated TMDS transmitter appears to utilize LVDS1's
	 * data source selection bit (3X5.99[4]). */
	/* 3X5.99[4] - LVDS Channel1 Data Source Selection
	 *             0: Primary Display
	 *             1: Secondary Display */
	svga_wcrt_mask(regs, 0x99,
			displaySource << 4, BIT(4));
	DRM_DEBUG_KMS("TMDS (DVI) Display Source: IGA%d\n",
			(displaySource & 0x01) + 1);
}


extern void load_register_tables(void __iomem *regbase, struct vga_registers *regs);
extern void load_value_to_registers(void __iomem *regbase, struct vga_registers *regs,
					unsigned int value);

#endif /* __CRTC_HW_H__ */