forked from raspberrypi/pico-extras
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vga_modes.c
362 lines (280 loc) · 7.89 KB
/
vga_modes.c
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
/*
* Copyright (c) 2020 Raspberry Pi (Trading) Ltd.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#include "video.h"
// todo support for inverted-y (probably belongs in the scanline generators, as would inverted x)
const uint32_t video_clock_freq = 24000000;
extern const video_pio_program_t video_24mhz_composable;
const video_timing_t vga_timing_640x480_60_default =
{
.clock_freq = 24000000,
.h_active = 640,
.v_active = 480,
.h_front_porch = 16,
.h_pulse = 64,
.h_total = 800,
.h_sync_polarity = 1,
.v_front_porch = 1,
.v_pulse = 2,
.v_total = 500,
.v_sync_polarity = 1,
.enable_clock = 0,
.clock_polarity = 0,
.enable_den = 0
};
const video_timing_t vga_timing_640x240_60_default =
{
.clock_freq = 24000000,
.h_active = 640,
.v_active = 240,
.h_front_porch = 16,
.h_pulse = 64,
.h_total = 800,
.h_sync_polarity = 1,
.v_front_porch = 1,
.v_pulse = 2,
.v_total = 250,
.v_sync_polarity = 1,
.enable_clock = 0,
.clock_polarity = 0,
.enable_den = 0
};
const video_timing_t vga_timing_648x480_60_alt1 =
{
.clock_freq = 24000000,
.h_active = 640,
.v_active = 480,
.h_front_porch = 16,
.h_pulse = 48,
.h_total = 768,
.h_sync_polarity = 1,
.v_front_porch = 10,
.v_pulse = 2,
.v_total = 523,
.v_sync_polarity = 1,
.enable_clock = 0,
.clock_polarity = 0,
.enable_den = 0
};
const video_timing_t vga_timing_648x480_50ish =
{
.clock_freq = 24000000,
.h_active = 640,
.v_active = 480,
.h_front_porch = 56,
.h_pulse = 72,
.h_total = 896,
.h_sync_polarity = 1,
.v_front_porch = 30,
.v_pulse = 2,
.v_total = 536,
.v_sync_polarity = 1,
.enable_clock = 0,
.clock_polarity = 0,
.enable_den = 0
};
const video_timing_t vga_timing_648x480_50ish2 =
{
.clock_freq = 24000000,
.h_active = 640,
.v_active = 480,
.h_front_porch = 32,
.h_pulse = 64,
.h_total = 832,
.h_sync_polarity = 1,
.v_front_porch = 27,
.v_pulse = 2,
.v_total = 577,
.v_sync_polarity = 1,
.enable_clock = 0,
.clock_polarity = 0,
.enable_den = 0
};
const video_timing_t vga_timing_648x480_50ish3 =
{
.clock_freq = 24000000,
.h_active = 640,
.v_active = 480,
.h_front_porch = 72,
.h_pulse = 96,
.h_total = 928,
.h_sync_polarity = 1,
.v_front_porch = 8,
.v_pulse = 2,
.v_total = 518,
.v_sync_polarity = 1,
.enable_clock = 0,
.clock_polarity = 0,
.enable_den = 0
};
#define actual_vga_timing_50 vga_timing_648x480_50ish3
const video_mode_t vga_mode_160x120_60 =
{
.default_timing = &vga_timing_640x480_60_default,
.pio_program = &video_24mhz_composable,
.width = 160,
.height = 120,
.xscale = 4,
.yscale = 4,
};
const video_mode_t vga_mode_213x160_60 =
{
.default_timing = &vga_timing_640x480_60_default,
.pio_program = &video_24mhz_composable,
.width = 213,
.height = 160,
.xscale = 3,
.yscale = 3,
};
const video_mode_t vga_mode_320x240_60 =
{
.default_timing = &vga_timing_640x240_60_default,
.pio_program = &video_24mhz_composable,
.width = 320,
.height = 240,
.xscale = 2,
.yscale = 1,
};
const video_mode_t vga_mode_320x480_60 =
{
.default_timing = &vga_timing_640x480_60_default,
.pio_program = &video_24mhz_composable,
.width = 320,
.height = 480,
.xscale = 2,
.yscale = 2,
};
const video_mode_t vga_mode_640x480_60 =
{
.default_timing = &vga_timing_640x480_60_default,
.pio_program = &video_24mhz_composable,
.width = 640,
.height = 480,
.xscale = 1,
.yscale = 1,
};
const video_mode_t vga_mode_640x480_50 =
{
.default_timing = &actual_vga_timing_50,
.pio_program = &video_24mhz_composable,
.width = 640,
.height = 480,
.xscale = 1,
.yscale = 1,
};
const video_mode_t vga_mode_320x240_50 =
{
.default_timing = &actual_vga_timing_50,
.pio_program = &video_24mhz_composable,
.width = 320,
.height = 240,
.xscale = 2,
.yscale = 2,
};
/* this is 50 hz */
const video_timing_t vga_timing_wide_480_50 =
{
.clock_freq = 24000000,
.h_active = 800,
.v_active = 480,
.h_front_porch = 32,
.h_pulse = 48,
.h_total = 960,
.h_sync_polarity = 0,
.v_front_porch = 1,
.v_pulse = 2,
.v_total = 500,
.v_sync_polarity = 0,
.enable_clock = 1,
.clock_polarity = 0,
.enable_den = 1
};
const video_mode_t vga_mode_tft_800x480_50 =
{
.default_timing = &vga_timing_wide_480_50,
.pio_program = &video_24mhz_composable,
.width = 800,
.height = 480,
.xscale = 1,
.yscale = 1,
};
const video_mode_t vga_mode_tft_400x240_50 =
{
.default_timing = &vga_timing_wide_480_50,
.pio_program = &video_24mhz_composable,
.width = 400,
.height = 240,
.xscale = 2,
.yscale = 2,
};
const video_timing_t vga_timing_512x576_50_attempt1 =
{
.clock_freq = 24000000,
.h_active = 512,
.v_active = 576,
.h_front_porch = 64,
.h_pulse = 64,
.h_total = 768,
.h_sync_polarity = 1,
.v_front_porch = 30,
.v_pulse = 2,
.v_total = 612,
.v_sync_polarity = 1,
.enable_clock = 0,
.clock_polarity = 0,
.enable_den = 0
};
const video_timing_t vga_timing_512x576_60_attempt1 =
{
.clock_freq = 24000000,
.h_active = 512,
.v_active = 576,
.h_front_porch = 64,
.h_pulse = 64,
.h_total = 768,
.h_sync_polarity = 1,
.v_front_porch = 30,
.v_pulse = 2,
.v_total = 612,
.v_sync_polarity = 1,
.enable_clock = 0,
.clock_polarity = 0,
.enable_den = 0
};
const video_mode_t vga_mode_256x192_50 =
{
.default_timing = &vga_timing_512x576_50_attempt1,
.pio_program = &video_24mhz_composable,
.width = 256,
.height = 192,
.xscale = 2,
.yscale = 3,
};
const video_timing_t vga_timing_800x600_38 =
{
.clock_freq = 24000000,
.h_active = 800,
.v_active = 600,
.h_front_porch = 24,
.h_pulse = 80,
.h_total = 1008,
.h_sync_polarity = 1,
.v_front_porch = 3,
.v_pulse = 4,
.v_total = 621,
.v_sync_polarity = 1,
.enable_clock = 0,
.clock_polarity = 0,
.enable_den = 0
};
const video_mode_t vga_mode_800x600_38 =
{
.default_timing = &vga_timing_800x600_38,
.pio_program = &video_24mhz_composable,
.width = 800,
.height = 600,
.xscale = 1,
.yscale = 1,
};