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
|
/*
* Copyright (c) 2006 Advanced Micro Devices, Inc.
*
* 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, sublicense,
* 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 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.
*
* Neither the name of the Advanced Micro Devices, Inc. nor the names of its
* contributors may be used to endorse or promote products derived from this
* software without specific prior written permission.
*/
/*
* Cimarron function prototypes.
*/
#ifndef _cim_rtns_h
#define _cim_rtns_h
/* INCLUDE USER PARAMETER DEFINITIONS */
#include "cim_parm.h"
/* COMPILER OPTION FOR C++ PROGRAMS */
#ifdef __cplusplus
extern "C"
{
#endif
/*--------------------------*/
/* CIMARRON MEMORY POINTERS */
/*--------------------------*/
extern unsigned char *cim_gp_ptr;
extern unsigned char *cim_fb_ptr;
extern unsigned char *cim_cmd_base_ptr;
extern unsigned char *cim_cmd_ptr;
extern unsigned char *cim_vid_ptr;
extern unsigned char *cim_vip_ptr;
extern unsigned char *cim_vg_ptr;
/*----------------------------------------*/
/* INITIALIZATION ROUTINE DEFINITIONS */
/*----------------------------------------*/
int init_detect_cpu(unsigned long *cpu_revision,
unsigned long *companion_revision);
unsigned long init_read_pci(unsigned long address);
int init_read_base_addresses(INIT_BASE_ADDRESSES * base_addresses);
int init_read_cpu_frequency(unsigned long *cpu_frequency);
/*----------------------------------------*/
/* GRAPHICS PROCESSOR ROUTINE DEFINITIONS */
/*----------------------------------------*/
void gp_set_limit_on_buffer_lead(unsigned long lead);
void gp_set_command_buffer_base(unsigned long address,
unsigned long start, unsigned long stop);
void gp_set_frame_buffer_base(unsigned long address, unsigned long size);
void gp_set_bpp(int bpp);
void gp_declare_blt(unsigned long flags);
void gp_declare_vector(unsigned long flags);
void gp_write_parameters(void);
void gp_set_raster_operation(unsigned char ROP);
void gp_set_alpha_operation(int alpha_operation, int alpha_type,
int channel, int apply_alpha, unsigned char alpha);
void gp_set_solid_pattern(unsigned long color);
void gp_set_mono_pattern(unsigned long bgcolor, unsigned long fgcolor,
unsigned long data0, unsigned long data1, int transparent, int x,
int y);
void gp_set_pattern_origin(int x, int y);
void gp_set_color_pattern(unsigned long *pattern, int format, int x,
int y);
void gp_set_mono_source(unsigned long bgcolor, unsigned long fgcolor,
int transparent);
void gp_set_solid_source(unsigned long color);
void gp_set_source_transparency(unsigned long color, unsigned long mask);
void gp_program_lut(unsigned long *colors, int full_lut);
void gp_set_vector_pattern(unsigned long pattern, unsigned long color,
int length);
void gp_set_strides(unsigned long dst_stride, unsigned long src_stride);
void gp_set_source_format(int format);
void gp_pattern_fill(unsigned long dstoffset, unsigned long width,
unsigned long height);
void gp_screen_to_screen_blt(unsigned long dstoffset,
unsigned long srcoffset, unsigned long width,
unsigned long height, int flags);
void gp_screen_to_screen_convert(unsigned long dstoffset,
unsigned long srcoffset, unsigned long width,
unsigned long height, int nibble);
void gp_color_bitmap_to_screen_blt(unsigned long dstoffset,
unsigned long srcx, unsigned long width, unsigned long height,
unsigned char *data, long pitch);
void gp_color_convert_blt(unsigned long dstoffset, unsigned long srcx,
unsigned long width, unsigned long height, unsigned char *data,
long pitch);
void gp_custom_convert_blt(unsigned long dstoffset, unsigned long srcx,
unsigned long width, unsigned long height, unsigned char *data,
long pitch);
void gp_rotate_blt(unsigned long dstoffset, unsigned long srcoffset,
unsigned long width, unsigned long height, int degrees);
void gp_mono_bitmap_to_screen_blt(unsigned long dstoffset,
unsigned long srcx, unsigned long width, unsigned long height,
unsigned char *data, long stride);
void gp_text_blt(unsigned long dstoffset, unsigned long width,
unsigned long height, unsigned char *data);
void gp_mono_expand_blt(unsigned long dstoffset, unsigned long srcoffset,
unsigned long srcx, unsigned long width, unsigned long height,
int byte_packed);
void gp_antialiased_text(unsigned long dstoffset, unsigned long srcx,
unsigned long width, unsigned long height, unsigned char *data,
long stride, int fourbpp);
void gp_blend_mask_blt(unsigned long dstoffset, unsigned long srcx,
unsigned long width, unsigned long height, unsigned long,
long stride, int operation, int fourbpp);
void gp_masked_blt(unsigned long dstoffset, unsigned long width,
unsigned long height, unsigned long mono_srcx,
unsigned long color_srcx, unsigned char *mono_mask,
unsigned char *color_data, long mono_pitch, long color_pitch);
void gp_screen_to_screen_masked(unsigned long dstoffset,
unsigned long srcoffset, unsigned long width,
unsigned long height, unsigned long mono_srcx,
unsigned char *mono_mask, long mono_pitch);
void gp_bresenham_line(unsigned long dstoffset, unsigned short length,
unsigned short initerr, unsigned short axialerr,
unsigned short diagerr, unsigned long flags);
void gp_line_from_endpoints(unsigned long dstoffset, unsigned long x0,
unsigned long y0, unsigned long x1, unsigned long y1, int inclusive);
int gp_test_blt_pending(void);
void gp_wait_blt_pending(void);
void gp_wait_until_idle(void);
int gp_test_blt_busy(void);
void gp_save_state(GP_SAVE_RESTORE * gp_state);
void gp_restore_state(GP_SAVE_RESTORE * gp_state);
/*----------------------------------------*/
/* VIDEO GENERATOR ROUTINE DEFINITIONS */
/*----------------------------------------*/
int vg_delay_milliseconds(unsigned long ms);
int vg_set_display_mode(unsigned long src_width, unsigned long src_height,
unsigned long dst_width, unsigned long dst_height, int bpp, int hz,
unsigned long flags);
int vg_set_panel_mode(unsigned long src_width, unsigned long src_height,
unsigned long dst_width, unsigned long dst_height,
unsigned long panel_width, unsigned long panel_height,
int bpp, unsigned long flags);
int vg_set_tv_mode(unsigned long *src_width, unsigned long *src_height,
unsigned long encoder, unsigned long tvres, int bpp,
unsigned long flags, unsigned long h_overscan,
unsigned long v_overscan);
int vg_set_custom_mode(VG_DISPLAY_MODE * mode_params, int bpp);
int vg_set_display_bpp(int bpp);
int vg_get_display_mode_index(VG_QUERY_MODE * query);
int vg_get_display_mode_information(unsigned int index,
VG_DISPLAY_MODE * vg_mode);
int vg_get_display_mode_count(void);
int vg_get_current_display_mode(VG_DISPLAY_MODE * current_display,
int *bpp);
int vg_set_scaler_filter_coefficients(long h_taps[][5], long v_taps[][3]);
int vg_configure_flicker_filter(unsigned long flicker_strength,
int flicker_alpha);
int vg_set_clock_frequency(unsigned long frequency,
unsigned long pll_flags);
int vg_set_border_color(unsigned long border_color);
int vg_set_cursor_enable(int enable);
int vg_set_mono_cursor_colors(unsigned long bkcolor,
unsigned long fgcolor);
int vg_set_cursor_position(long xpos, long ypos,
VG_PANNING_COORDINATES * panning);
int vg_set_mono_cursor_shape32(unsigned long memoffset,
unsigned long *andmask, unsigned long *xormask,
unsigned long x_hotspot, unsigned long y_hotspot);
int vg_set_mono_cursor_shape64(unsigned long memoffset,
unsigned long *andmask, unsigned long *xormask,
unsigned long x_hotspot, unsigned long y_hotspot);
int vg_set_color_cursor_shape(unsigned long memoffset,
unsigned char *data, unsigned long width, unsigned long height,
long pitch, unsigned long x_hotspot, unsigned long y_hotspot);
int vg_pan_desktop(unsigned long x, unsigned long y,
VG_PANNING_COORDINATES * panning);
int vg_set_display_offset(unsigned long address);
int vg_set_display_pitch(unsigned long pitch);
int vg_set_display_palette_entry(unsigned long index,
unsigned long palette);
int vg_set_display_palette(unsigned long *palette);
int vg_set_compression_enable(int enable);
int vg_configure_compression(VG_COMPRESSION_DATA * comp_data);
int vg_test_timing_active(void);
int vg_test_vertical_active(void);
int vg_wait_vertical_blank(void);
int vg_test_even_field(void);
int vg_configure_line_interrupt(VG_INTERRUPT_PARAMS * interrupt_info);
unsigned long vg_test_and_clear_interrupt(void);
unsigned long vg_test_flip_status(void);
int vg_save_state(VG_SAVE_RESTORE * vg_state);
int vg_restore_state(VG_SAVE_RESTORE * vg_state);
/*----------------------------------------*/
/* VIDEO GENERATOR READ ROUTINES */
/*----------------------------------------*/
unsigned long vg_read_graphics_crc(int crc_source);
unsigned long vg_read_window_crc(int crc_source, unsigned long x,
unsigned long y, unsigned long width, unsigned long height);
int vg_get_scaler_filter_coefficients(long h_taps[][5], long v_taps[][3]);
int vg_get_flicker_filter_configuration(unsigned long *strength,
int *flicker_alpha);
unsigned long vg_get_display_pitch(void);
unsigned long vg_get_frame_buffer_line_size(void);
unsigned long vg_get_current_vline(void);
unsigned long vg_get_display_offset(void);
int vg_get_cursor_info(VG_CURSOR_DATA * cursor_data);
int vg_get_display_palette_entry(unsigned long index,
unsigned long *entry);
unsigned long vg_get_border_color(void);
int vg_get_display_palette(unsigned long *palette);
int vg_get_compression_info(VG_COMPRESSION_DATA * comp_data);
int vg_get_compression_enable(void);
int vg_get_valid_bit(int line);
/*----------------------------------------*/
/* DISPLAY FILTER ROUTINE DEFINITIONS */
/*----------------------------------------*/
int df_set_crt_enable(int crt_output);
int df_set_panel_enable(int panel_output);
int df_configure_video_source(DF_VIDEO_SOURCE_PARAMS * video_source_odd,
DF_VIDEO_SOURCE_PARAMS * video_source_even);
int df_set_video_offsets(int even, unsigned long y_offset,
unsigned long u_offset, unsigned long v_offset);
int df_set_video_scale(unsigned long src_width, unsigned long src_height,
unsigned long dst_width, unsigned long dst_height,
unsigned long flags);
int df_set_video_position(DF_VIDEO_POSITION * video_window);
int df_set_video_filter_coefficients(long taps[][4], int phase256);
int df_set_video_enable(int enable, unsigned long flags);
int df_set_video_color_key(unsigned long key, unsigned long mask,
int graphics);
int df_set_video_palette(unsigned long *palette);
int df_set_video_palette_entry(unsigned long index,
unsigned long palette);
int df_configure_video_cursor_color_key(DF_VIDEO_CURSOR_PARAMS *
cursor_color_key);
int df_set_video_cursor_color_key_enable(int enable);
int df_configure_alpha_window(int window,
DF_ALPHA_REGION_PARAMS * alpha_data);
int df_set_alpha_window_enable(int window, int enable);
int df_set_no_ck_outside_alpha(int enable);
int df_set_video_request(unsigned long x, unsigned long y);
int df_set_output_color_space(int color_space);
int df_set_output_path(int format);
unsigned long df_test_video_flip_status(void);
int df_save_state(DF_SAVE_RESTORE * gp_state);
int df_restore_state(DF_SAVE_RESTORE * gp_state);
/*----------------------------------------*/
/* DISPLAY FILTER READ ROUTINES */
/*----------------------------------------*/
unsigned long df_read_composite_crc(int crc_source);
unsigned long df_read_composite_window_crc(unsigned long x,
unsigned long y, unsigned long width, unsigned long height,
int source);
unsigned long df_read_panel_crc(void);
int df_get_video_enable(int *enable, unsigned long *flags);
int df_get_video_source_configuration(DF_VIDEO_SOURCE_PARAMS *
video_source_odd, DF_VIDEO_SOURCE_PARAMS * video_source_even);
int df_get_video_position(DF_VIDEO_POSITION * video_window);
int df_get_video_scale(unsigned long *x_scale, unsigned long *y_scale);
int df_get_video_filter_coefficients(long taps[][4], int *phase256);
int df_get_video_color_key(unsigned long *key, unsigned long *mask,
int *graphics);
int df_get_video_palette_entry(unsigned long index,
unsigned long *palette);
int df_get_video_palette(unsigned long *palette);
int df_get_video_cursor_color_key(DF_VIDEO_CURSOR_PARAMS *
cursor_color_key);
int df_get_video_cursor_color_key_enable(void);
int df_get_alpha_window_configuration(int window,
DF_ALPHA_REGION_PARAMS * alpha_data);
int df_get_alpha_window_enable(int window);
int df_get_video_request(unsigned long *x, unsigned long *y);
int df_get_output_color_space(int *color_space);
/*----------------------------------------*/
/* MSR ROUTINE DEFINITIONS */
/*----------------------------------------*/
int msr_init_table(void);
int msr_create_geodelink_table(GEODELINK_NODE * gliu_nodes);
int msr_create_device_list(GEODELINK_NODE * gliu_nodes, int max_devices);
int msr_read64(unsigned long device, unsigned long msr_register,
Q_WORD * msr_value);
int msr_write64(unsigned long device, unsigned long msr_register,
Q_WORD * msr_value);
/*----------------------------------------*/
/* VIP ROUTINE DEFINITIONS */
/*----------------------------------------*/
int vip_initialize(VIPSETMODEBUFFER * buffer);
int vip_update_601_params(VIP_601PARAMS * buffer);
int vip_terminate(void);
int vip_configure_capture_buffers(int buffer_type,
VIPINPUTBUFFER * buffer);
int vip_toggle_video_offsets(int buffer_type, VIPINPUTBUFFER * buffer);
int vip_max_address_enable(unsigned long max_address, int enable);
int vip_set_interrupt_enable(unsigned long mask, int enable);
unsigned long vip_get_interrupt_state(void);
int vip_set_capture_state(unsigned long state);
int vip_set_vsync_error(unsigned long vertical_count,
unsigned long window_before, unsigned long window_after, int enable);
int vip_configure_fifo(unsigned long fifo_type, unsigned long fifo_size);
int vip_set_loopback_enable(int bEnable);
int vip_configure_genlock(VIPGENLOCKBUFFER * buffer);
int vip_set_genlock_enable(int bEnable);
int vip_configure_pages(int page_count, unsigned long page_offset);
int vip_set_interrupt_line(int line);
int vip_reset(void);
int vip_set_subwindow_enable(VIPSUBWINDOWBUFFER * buffer);
int vip_reset_interrupt_state(unsigned long interrupt_mask);
int vip_save_state(VIPSTATEBUFFER * save_buffer);
int vip_restore_state(VIPSTATEBUFFER * restore_buffer);
int vip_set_power_characteristics(VIPPOWERBUFFER * buffer);
int vip_set_priority_characteristics(VIPPRIORITYBUFFER * buffer);
int vip_set_debug_characteristics(VIPDEBUGBUFFER * buffer);
int vip_test_genlock_active(void);
int vip_test_signal_status(void);
unsigned long vip_get_current_field(void);
/*----------------------------------------*/
/* VIP READ ROUTINES */
/*----------------------------------------*/
int vip_get_current_mode(VIPSETMODEBUFFER * buffer);
int vip_get_601_configuration(VIP_601PARAMS * buffer);
int vip_get_buffer_configuration(int buffer_type,
VIPINPUTBUFFER * buffer);
int vip_get_genlock_configuration(VIPGENLOCKBUFFER * buffer);
int vip_get_genlock_enable(void);
int vip_is_buffer_update_latched(void);
unsigned long vip_get_capture_state(void);
unsigned long vip_get_current_line(void);
unsigned long vip_read_fifo(unsigned long fifo_address);
int vip_write_fifo(unsigned long fifo_address, unsigned long fifo_data);
int vip_enable_fifo_access(int enable);
int vip_get_capability_characteristics(VIPCAPABILITIESBUFFER * buffer);
int vip_get_power_characteristics(VIPPOWERBUFFER * buffer);
int vip_get_priority_characteristics(VIPPRIORITYBUFFER * buffer);
/*----------------------------------------*/
/* VOP ROUTINE DEFINITIONS */
/*----------------------------------------*/
int vop_set_vbi_window(VOPVBIWINDOWBUFFER * buffer);
int vop_enable_vbi_output(int enable);
int vop_set_configuration(VOPCONFIGURATIONBUFFER * config);
int vop_save_state(VOPSTATEBUFFER * save_buffer);
int vop_restore_state(VOPSTATEBUFFER * save_buffer);
/*----------------------------------------*/
/* VOP READ ROUTINES */
/*----------------------------------------*/
int vop_get_current_mode(VOPCONFIGURATIONBUFFER * config);
int vop_get_vbi_configuration(VOPVBIWINDOWBUFFER * buffer);
int vop_get_vbi_enable(void);
unsigned long vop_get_crc(void);
unsigned long vop_read_vbi_crc(void);
/* CLOSE BRACKET FOR C++ COMPLILATION */
#ifdef __cplusplus
}
#endif
#endif
|