2 * Copyright 1998-2008 VIA Technologies, Inc. All Rights Reserved.
3 * Copyright 2001-2008 S3 Graphics, Inc. All Rights Reserved.
4 * Copyright 2010 Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public
8 * License as published by the Free Software Foundation;
9 * either version 2, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTIES OR REPRESENTATIONS; without even
13 * the implied warranty of MERCHANTABILITY or FITNESS FOR
14 * A PARTICULAR PURPOSE.See the GNU General Public License
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
20 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 * basic modesetting functions
26 #include <linux/kernel.h>
27 #include <linux/via-core.h>
28 #include "via_modesetting.h"
33 void via_set_primary_timing(const struct display_timing
*timing
)
35 struct display_timing raw
;
37 raw
.hor_total
= timing
->hor_total
/ 8 - 5;
38 raw
.hor_addr
= timing
->hor_addr
/ 8 - 1;
39 raw
.hor_blank_start
= timing
->hor_blank_start
/ 8 - 1;
40 raw
.hor_blank_end
= timing
->hor_blank_end
/ 8 - 1;
41 raw
.hor_sync_start
= timing
->hor_sync_start
/ 8;
42 raw
.hor_sync_end
= timing
->hor_sync_end
/ 8;
43 raw
.ver_total
= timing
->ver_total
- 2;
44 raw
.ver_addr
= timing
->ver_addr
- 1;
45 raw
.ver_blank_start
= timing
->ver_blank_start
- 1;
46 raw
.ver_blank_end
= timing
->ver_blank_end
- 1;
47 raw
.ver_sync_start
= timing
->ver_sync_start
- 1;
48 raw
.ver_sync_end
= timing
->ver_sync_end
- 1;
50 /* unlock timing registers */
51 via_write_reg_mask(VIACR
, 0x11, 0x00, 0x80);
53 via_write_reg(VIACR
, 0x00, raw
.hor_total
& 0xFF);
54 via_write_reg(VIACR
, 0x01, raw
.hor_addr
& 0xFF);
55 via_write_reg(VIACR
, 0x02, raw
.hor_blank_start
& 0xFF);
56 via_write_reg_mask(VIACR
, 0x03, raw
.hor_blank_end
& 0x1F, 0x1F);
57 via_write_reg(VIACR
, 0x04, raw
.hor_sync_start
& 0xFF);
58 via_write_reg_mask(VIACR
, 0x05, (raw
.hor_sync_end
& 0x1F)
59 | (raw
.hor_blank_end
<< (7 - 5) & 0x80), 0x9F);
60 via_write_reg(VIACR
, 0x06, raw
.ver_total
& 0xFF);
61 via_write_reg_mask(VIACR
, 0x07, (raw
.ver_total
>> 8 & 0x01)
62 | (raw
.ver_addr
>> (8 - 1) & 0x02)
63 | (raw
.ver_sync_start
>> (8 - 2) & 0x04)
64 | (raw
.ver_blank_start
>> (8 - 3) & 0x08)
65 | (raw
.ver_total
>> (9 - 5) & 0x20)
66 | (raw
.ver_addr
>> (9 - 6) & 0x40)
67 | (raw
.ver_sync_start
>> (9 - 7) & 0x80), 0xEF);
68 via_write_reg_mask(VIACR
, 0x09, raw
.ver_blank_start
>> (9 - 5) & 0x20,
70 via_write_reg(VIACR
, 0x10, raw
.ver_sync_start
& 0xFF);
71 via_write_reg_mask(VIACR
, 0x11, raw
.ver_sync_end
& 0x0F, 0x0F);
72 via_write_reg(VIACR
, 0x12, raw
.ver_addr
& 0xFF);
73 via_write_reg(VIACR
, 0x15, raw
.ver_blank_start
& 0xFF);
74 via_write_reg(VIACR
, 0x16, raw
.ver_blank_end
& 0xFF);
75 via_write_reg_mask(VIACR
, 0x33, (raw
.hor_sync_start
>> (8 - 4) & 0x10)
76 | (raw
.hor_blank_end
>> (6 - 5) & 0x20), 0x30);
77 via_write_reg_mask(VIACR
, 0x35, (raw
.ver_total
>> 10 & 0x01)
78 | (raw
.ver_sync_start
>> (10 - 1) & 0x02)
79 | (raw
.ver_addr
>> (10 - 2) & 0x04)
80 | (raw
.ver_blank_start
>> (10 - 3) & 0x08), 0x0F);
81 via_write_reg_mask(VIACR
, 0x36, raw
.hor_total
>> (8 - 3) & 0x08, 0x08);
83 /* lock timing registers */
84 via_write_reg_mask(VIACR
, 0x11, 0x80, 0x80);
86 /* reset timing control */
87 via_write_reg_mask(VIACR
, 0x17, 0x00, 0x80);
88 via_write_reg_mask(VIACR
, 0x17, 0x80, 0x80);
91 void via_set_secondary_timing(const struct display_timing
*timing
)
93 struct display_timing raw
;
95 raw
.hor_total
= timing
->hor_total
- 1;
96 raw
.hor_addr
= timing
->hor_addr
- 1;
97 raw
.hor_blank_start
= timing
->hor_blank_start
- 1;
98 raw
.hor_blank_end
= timing
->hor_blank_end
- 1;
99 raw
.hor_sync_start
= timing
->hor_sync_start
- 1;
100 raw
.hor_sync_end
= timing
->hor_sync_end
- 1;
101 raw
.ver_total
= timing
->ver_total
- 1;
102 raw
.ver_addr
= timing
->ver_addr
- 1;
103 raw
.ver_blank_start
= timing
->ver_blank_start
- 1;
104 raw
.ver_blank_end
= timing
->ver_blank_end
- 1;
105 raw
.ver_sync_start
= timing
->ver_sync_start
- 1;
106 raw
.ver_sync_end
= timing
->ver_sync_end
- 1;
108 via_write_reg(VIACR
, 0x50, raw
.hor_total
& 0xFF);
109 via_write_reg(VIACR
, 0x51, raw
.hor_addr
& 0xFF);
110 via_write_reg(VIACR
, 0x52, raw
.hor_blank_start
& 0xFF);
111 via_write_reg(VIACR
, 0x53, raw
.hor_blank_end
& 0xFF);
112 via_write_reg(VIACR
, 0x54, (raw
.hor_blank_start
>> 8 & 0x07)
113 | (raw
.hor_blank_end
>> (8 - 3) & 0x38)
114 | (raw
.hor_sync_start
>> (8 - 6) & 0xC0));
115 via_write_reg_mask(VIACR
, 0x55, (raw
.hor_total
>> 8 & 0x0F)
116 | (raw
.hor_addr
>> (8 - 4) & 0x70), 0x7F);
117 via_write_reg(VIACR
, 0x56, raw
.hor_sync_start
& 0xFF);
118 via_write_reg(VIACR
, 0x57, raw
.hor_sync_end
& 0xFF);
119 via_write_reg(VIACR
, 0x58, raw
.ver_total
& 0xFF);
120 via_write_reg(VIACR
, 0x59, raw
.ver_addr
& 0xFF);
121 via_write_reg(VIACR
, 0x5A, raw
.ver_blank_start
& 0xFF);
122 via_write_reg(VIACR
, 0x5B, raw
.ver_blank_end
& 0xFF);
123 via_write_reg(VIACR
, 0x5C, (raw
.ver_blank_start
>> 8 & 0x07)
124 | (raw
.ver_blank_end
>> (8 - 3) & 0x38)
125 | (raw
.hor_sync_end
>> (8 - 6) & 0x40)
126 | (raw
.hor_sync_start
>> (10 - 7) & 0x80));
127 via_write_reg(VIACR
, 0x5D, (raw
.ver_total
>> 8 & 0x07)
128 | (raw
.ver_addr
>> (8 - 3) & 0x38)
129 | (raw
.hor_blank_end
>> (11 - 6) & 0x40)
130 | (raw
.hor_sync_start
>> (11 - 7) & 0x80));
131 via_write_reg(VIACR
, 0x5E, raw
.ver_sync_start
& 0xFF);
132 via_write_reg(VIACR
, 0x5F, (raw
.ver_sync_end
& 0x1F)
133 | (raw
.ver_sync_start
>> (8 - 5) & 0xE0));
136 void via_set_primary_address(u32 addr
)
138 DEBUG_MSG(KERN_DEBUG
"via_set_primary_address(0x%08X)\n", addr
);
139 via_write_reg(VIACR
, 0x0D, addr
& 0xFF);
140 via_write_reg(VIACR
, 0x0C, (addr
>> 8) & 0xFF);
141 via_write_reg(VIACR
, 0x34, (addr
>> 16) & 0xFF);
142 via_write_reg_mask(VIACR
, 0x48, (addr
>> 24) & 0x1F, 0x1F);
145 void via_set_secondary_address(u32 addr
)
147 DEBUG_MSG(KERN_DEBUG
"via_set_secondary_address(0x%08X)\n", addr
);
148 /* secondary display supports only quadword aligned memory */
149 via_write_reg_mask(VIACR
, 0x62, (addr
>> 2) & 0xFE, 0xFE);
150 via_write_reg(VIACR
, 0x63, (addr
>> 10) & 0xFF);
151 via_write_reg(VIACR
, 0x64, (addr
>> 18) & 0xFF);
152 via_write_reg_mask(VIACR
, 0xA3, (addr
>> 26) & 0x07, 0x07);
155 void via_set_primary_pitch(u32 pitch
)
157 DEBUG_MSG(KERN_DEBUG
"via_set_primary_pitch(0x%08X)\n", pitch
);
158 /* spec does not say that first adapter skips 3 bits but old
159 * code did it and seems to be reasonable in analogy to 2nd adapter
162 via_write_reg(VIACR
, 0x13, pitch
& 0xFF);
163 via_write_reg_mask(VIACR
, 0x35, (pitch
>> (8 - 5)) & 0xE0, 0xE0);
166 void via_set_secondary_pitch(u32 pitch
)
168 DEBUG_MSG(KERN_DEBUG
"via_set_secondary_pitch(0x%08X)\n", pitch
);
170 via_write_reg(VIACR
, 0x66, pitch
& 0xFF);
171 via_write_reg_mask(VIACR
, 0x67, (pitch
>> 8) & 0x03, 0x03);
172 via_write_reg_mask(VIACR
, 0x71, (pitch
>> (10 - 7)) & 0x80, 0x80);
175 void via_set_primary_color_depth(u8 depth
)
179 DEBUG_MSG(KERN_DEBUG
"via_set_primary_color_depth(%d)\n", depth
);
197 printk(KERN_WARNING
"via_set_primary_color_depth: "
198 "Unsupported depth: %d\n", depth
);
202 via_write_reg_mask(VIASR
, 0x15, value
, 0x1C);
205 void via_set_secondary_color_depth(u8 depth
)
209 DEBUG_MSG(KERN_DEBUG
"via_set_secondary_color_depth(%d)\n", depth
);
224 printk(KERN_WARNING
"via_set_secondary_color_depth: "
225 "Unsupported depth: %d\n", depth
);
229 via_write_reg_mask(VIACR
, 0x67, value
, 0xC0);