Searched refs:pI830 (Results 1 - 25 of 45) sorted by relevance

12

/xsrc/external/mit/xf86-video-intel-old/dist/src/
H A Di830_ring.h36 pI830->ring_next, (unsigned int)(n), \
37 pI830->ring.tail_mask); \
38 *(volatile uint32_t *)(pI830->ring.virtual_start + \
39 pI830->ring_next) = n; \
40 pI830->ring_used += 4; \
41 pI830->ring_next += 4; \
42 pI830->ring_next &= pI830->ring.tail_mask; \
52 if (pI830->ring_emitting == 0) \
55 if (pI830
[all...]
H A Di830_batchbuffer.c46 I830Ptr pI830 = I830PTR(pScrn); local in function:intel_nondrm_exec
62 I830Ptr pI830 = I830PTR(pScrn); local in function:intel_nondrm_exec_i830
67 OUT_RING(bo->offset + pI830->batch_used - 4);
107 I830Ptr pI830 = I830PTR(pScrn); local in function:intel_next_batch
110 if (IS_I865G(pI830))
111 pI830->batch_bo = dri_bo_alloc(pI830->bufmgr, "batch", 4096, 4096);
113 pI830->batch_bo = dri_bo_alloc(pI830->bufmgr, "batch", 4096 * 4, 4096);
115 if (dri_bo_map(pI830
131 I830Ptr pI830 = I830PTR(pScrn); local in function:intel_batch_init
158 I830Ptr pI830 = I830PTR(pScrn); local in function:intel_batch_teardown
175 I830Ptr pI830 = I830PTR(pScrn); local in function:intel_batch_flush
233 I830Ptr pI830 = I830PTR(scrn); local in function:intel_batch_wait_last
[all...]
H A Di830_batchbuffer.h41 intel_batch_space(I830Ptr pI830) argument
43 return (pI830->batch_bo->size - BATCH_RESERVED) - (pI830->batch_used);
47 intel_batch_require_space(ScrnInfoPtr pScrn, I830Ptr pI830, GLuint sz) argument
49 assert(sz < pI830->batch_bo->size - 8);
50 if (intel_batch_space(pI830) < sz)
57 I830Ptr pI830 = I830PTR(pScrn); local in function:intel_batch_start_atomic
59 assert(!pI830->in_batch_atomic);
60 intel_batch_require_space(pScrn, pI830, sz * 4);
62 pI830
69 I830Ptr pI830 = I830PTR(pScrn); local in function:intel_batch_end_atomic
77 intel_batch_emit_dword(I830Ptr pI830,uint32_t dword) argument
86 intel_batch_emit_reloc(I830Ptr pI830,dri_bo * bo,uint32_t read_domains,uint32_t write_domains,uint32_t delta) argument
100 intel_batch_emit_reloc_pixmap(I830Ptr pI830,PixmapPtr pPixmap,uint32_t read_domains,uint32_t write_domain,uint32_t delta) argument
[all...]
H A Di830_driver.c243 I830Ptr pI830; local in function:I830GetRec
247 pI830 = pScrn->driverPrivate = xnfcalloc(sizeof(I830Rec), 1);
254 I830Ptr pI830; local in function:I830FreeRec
261 pI830 = I830PTR(pScrn);
270 I830Ptr pI830 = I830PTR(pScrn); local in function:I830DetectMemory
277 if (IS_I965G(pI830)) {
304 } else if (IS_G33CLASS(pI830)) {
319 gtt_size = pI830->FbMapSize / (1024*1024);
330 if (IS_G4X(pI830) || IS_IGD(pI830) || IS_IGDN
422 I830Ptr pI830 = I830PTR(pScrn); local in function:I830MapMMIO
484 I830Ptr pI830 = I830PTR(pScrn); local in function:I830MapMem
508 I830Ptr pI830 = I830PTR(pScrn); local in function:I830UnmapMMIO
522 I830Ptr pI830 = I830PTR(pScrn); local in function:I830UnmapMem
608 I830Ptr pI830 = I830PTR(pScrn); local in function:i830CreateScreenResources
646 I830Ptr pI830 = I830PTR(pScrn); local in function:I830SetupOutputs
705 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_init_clock_gating
745 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_init_bios_control
779 I830Ptr pI830 = I830PTR(pScrn); local in function:I830PreInitDDC
801 I830Ptr pI830 = I830PTR(pScrn); local in function:PreInitCleanup
933 I830Ptr pI830 = I830PTR(pScrn); local in function:i830SetHotkeyControl
985 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_detect_chipset
1220 I830Ptr pI830 = I830PTR(pScrn); local in function:I830LoadSyms
1238 I830Ptr pI830 = I830PTR(pScrn); local in function:I830GetEarlyOptions
1278 I830Ptr pI830 = I830PTR(pScrn); local in function:I830PreInitCrtcConfig
1302 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_check_dri_option
1317 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_user_modesetting_init
1433 I830Ptr pI830 = I830PTR(pScrn); local in function:I830DrmModeInit
1452 I830Ptr pI830 = I830PTR(pScrn); local in function:I830XvInit
1491 I830Ptr pI830; local in function:I830PreInit
1645 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_stop_ring
1666 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_start_ring
1699 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_refresh_ring
1720 i830_pipe_enabled(I830Ptr pI830,enum pipe pipe) argument
1729 i830_save_palette(I830Ptr pI830,enum pipe pipe) argument
1745 i830_restore_palette(I830Ptr pI830,enum pipe pipe) argument
1764 I830Ptr pI830 = I830PTR(pScrn); local in function:SaveHWState
1892 I830Ptr pI830 = I830PTR(pScrn); local in function:RestoreHWState
2138 I830Ptr pI830 = I830PTR(pScrn); local in function:IntelEmitInvarientState
2161 I830Ptr pI830 = I830PTR(pScrn); local in function:I830BlockHandler
2201 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_fixup_mtrrs
2244 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_try_memory_allocation
2279 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_memory_init
2323 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_init_bufmgr
2354 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_crtc_on
2382 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_crtc_to_pipe
2399 I830Ptr pI830; local in function:I830AdjustMemory
2454 I830Ptr pI830 = I830PTR(pScrn); local in function:I830SwapPipes
2485 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_disable_render_standby
2504 I830Ptr pI830; local in function:I830ScreenInit
2807 I830Ptr pI830 = I830PTR(pScrn); local in function:i830AdjustFrame
2832 I830Ptr pI830 = I830PTR(pScrn); local in function:I830FreeScreen
2848 I830Ptr pI830 = I830PTR(pScrn); local in function:I830LeaveVT
2915 I830Ptr pI830 = I830PTR(pScrn); local in function:I830EnterVT
3051 I830Ptr pI830 = I830PTR(pScrn); local in function:I830CloseScreen
3134 I830Ptr pI830 = I830PTR(pScrn); local in function:I830PMEvent
[all...]
H A Di830_hwmc.c52 I830Ptr pI830 = I830PTR(pScrn); local in function:intel_xvmc_probe
55 if (!pI830->XvMCEnabled)
58 if (pI830->use_drm_mode &&
59 (IS_I915G(pI830) || IS_I915GM(pI830)))
62 if (IS_I9XX(pI830)) {
63 if (IS_I915(pI830))
65 else if (IS_G4X(pI830) || IS_IGDNG(pI830))
86 I830Ptr pI830 local in function:intel_xvmc_driver_init
114 I830Ptr pI830 = I830PTR(pScrn); local in function:intel_xvmc_screen_init
146 I830Ptr pI830 = I830PTR(pScrn); local in function:intel_xvmc_init_batch
167 I830Ptr pI830 = I830PTR(pScrn); local in function:intel_xvmc_fini_batch
[all...]
H A Di830_accel.c58 I830Ptr pI830 = I830PTR(pScrn); local in function:intel_get_pixmap_offset
60 return (unsigned long)pPix->devPrivate.ptr - (unsigned long)pI830->FbBase;
72 I830Ptr pI830 = I830PTR(pScrn); local in function:I830WaitLpRing
73 I830RingBuffer *ring = &pI830->ring;
109 if (IS_I965G(pI830))
114 pI830->uxa_driver = NULL;
135 I830Ptr pI830 = I830PTR(pScrn); local in function:I830Sync
140 if (!pScrn->vtSema || !pI830->batch_bo)
152 I830Ptr pI830 = I830PTR(pScrn); local in function:I830EmitFlush
155 if (IS_I965G(pI830))
185 I830Ptr pI830 = I830PTR(pScrn); local in function:I830AccelInit
[all...]
H A Di830_memory.c61 * (pI830->pEnt->videoRam != 0), in which case allocations have to fit within
111 i830_get_fence_size(I830Ptr pI830, unsigned long size) argument
116 if (IS_I965G(pI830)) {
123 if (IS_I9XX(pI830))
140 i830_get_fence_pitch(I830Ptr pI830, unsigned long pitch, int format) argument
149 if (IS_I965G(pI830))
164 i830_get_fence_alignment(I830Ptr pI830, unsigned long size) argument
166 if (IS_I965G(pI830))
169 return i830_get_fence_size(pI830, size);
175 I830Ptr pI830 local in function:i830_check_display_stride
198 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_bind_memory
239 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_unbind_memory
278 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_free_memory
315 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_reset_allocations
363 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_allocator_init
477 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_allocator_fini
504 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_get_gtt_physical
546 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_get_stolen_physical
587 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_allocate_aperture
668 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_allocate_agp_memory
707 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_allocate_memory_bo
817 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_allocate_memory
871 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_describe_allocations
954 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_allocate_ringbuffer
983 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_allocate_overlay
1018 I830Ptr pI830 = I830PTR(pScrn); local in function:IsTileable
1058 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_allocate_framebuffer
1124 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_allocate_cursor_buffers
1185 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_setup_fb_compression
1257 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_allocate_2d_memory
1309 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_allocate_pwrctx
1339 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_set_tiling
1531 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_clear_tiling
1552 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_bind_all_memory
1601 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_unbind_all_memory
1662 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_allocate_xvmc_buffer
1690 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_free_xvmc_buffer
1703 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_set_max_gtt_map_size
[all...]
H A Di915_render.c242 I830Ptr pI830 = I830PTR(pScrn); local in function:i915_texture_setup
250 pI830->scale_units[unit][0] = pPix->drawable.width;
251 pI830->scale_units[unit][1] = pPix->drawable.height;
294 pI830->mapstate[unit * 3 + 0] = 0; /* offset filled in at emit time */
295 pI830->mapstate[unit * 3 + 1] = format |
299 pI830->mapstate[unit * 3 + 2] = ((pitch / 4) - 1) << MS4_PITCH_SHIFT;
301 pI830->samplerstate[unit * 3 + 0] = (MIPFILTER_NONE <<
303 pI830->samplerstate[unit * 3 + 0] |= filter;
304 pI830->samplerstate[unit * 3 + 1] = SS3_NORMALIZED_COORDS;
305 pI830
321 I830Ptr pI830 = I830PTR(pScrn); local in function:i915_prepare_composite
377 I830Ptr pI830 = I830PTR(pScrn); local in function:i915_emit_composite_setup
564 I830Ptr pI830 = I830PTR(pScrn); local in function:i915_emit_composite_primitive
731 I830Ptr pI830 = I830PTR(pScrn); local in function:i915_composite
747 I830Ptr pI830 = I830PTR(pScrn); local in function:i915_batch_flush_notify
[all...]
H A Di830_render.c276 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_texture_setup
282 pI830->scale_units[unit][0] = pPix->drawable.width;
283 pI830->scale_units[unit][1] = pPix->drawable.height;
284 pI830->transform[unit] = pPict->transform;
286 if (i830_transform_is_affine(pI830->transform[unit]))
408 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_prepare_composite
410 pI830->render_src_picture = pSrcPicture;
411 pI830->render_src = pSrc;
412 pI830->render_mask_picture = pMaskPicture;
413 pI830
533 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_emit_composite_state
624 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_emit_composite_primitive
789 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_composite
[all...]
H A Di830_cursor.c63 I830Ptr pI830 = I830PTR(pScrn); local in function:I830SetPipeCursorBase
78 I830Ptr pI830 = I830PTR(pScrn); local in function:I830InitHWCursor
84 if (!IS_I9XX(pI830))
93 if (IS_MOBILE(pI830) || IS_I9XX(pI830))
130 I830Ptr pI830 = I830PTR(crtc->scrn); local in function:i830_crtc_load_cursor_argb
134 pcurs = (uint32_t *) (pI830->FbBase + intel_crtc->cursor_argb_offset);
145 I830Ptr pI830 = I830PTR(scrn); local in function:i830_crtc_set_cursor_position
178 I830Ptr pI830 = I830PTR(scrn); local in function:i830_crtc_show_cursor
187 if (IS_MOBILE(pI830) || IS_I9X
216 I830Ptr pI830 = I830PTR(scrn); local in function:i830_crtc_hide_cursor
242 I830Ptr pI830 = I830PTR(scrn); local in function:i830_crtc_set_cursor_colors
256 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_update_cursor_offsets
[all...]
H A Di830_bios.c117 parse_integrated_panel_data(I830Ptr pI830, struct bdb_header *bdb) argument
129 pI830->lvds_dither = 0;
135 pI830->lvds_dither = lvds_options->pixel_dither;
155 if (pI830->skip_panel_detect)
165 pI830->lvds_fixed_mode = fixed_mode;
169 parse_sdvo_panel_data(I830Ptr pI830, struct bdb_header *bdb) argument
175 pI830->sdvo_lvds_fixed_mode = NULL;
192 pI830->sdvo_lvds_fixed_mode = fixed_mode;
197 parse_panel_data(I830Ptr pI830, struct bdb_header *bdb) argument
199 parse_integrated_panel_data(pI830, bd
204 parse_general_features(I830Ptr pI830,struct bdb_header * bdb) argument
226 parse_driver_feature(I830Ptr pI830,struct bdb_header * bdb) argument
261 I830Ptr pI830 = I830PTR(pScrn); local in function:parse_sdvo_mapping
345 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_bios_init
[all...]
H A Di965_video.c157 I830Ptr pI830 = I830PTR(pScrn);
179 I830Ptr pI830 = I830PTR(scrn);
233 I830Ptr pI830 = I830PTR(scrn);
370 I830Ptr pI830 = I830PTR(scrn); local in function:i965_create_dst_surface_state
375 if (intel_alloc_and_map(pI830, "textured video surface state", 4096,
381 if (pI830->cpp == 2) {
422 I830Ptr pI830 = I830PTR(scrn); local in function:i965_create_src_surface_state
426 if (intel_alloc_and_map(pI830, "textured video surface state", 4096,
466 I830Ptr pI830 = I830PTR(scrn); local in function:i965_create_binding_table
473 if (intel_alloc_and_map(pI830, "texture
489 I830Ptr pI830 = I830PTR(scrn); local in function:i965_create_sampler_state
510 I830Ptr pI830 = I830PTR(scrn); local in function:i965_create_vs_state
535 I830Ptr pI830 = I830PTR(scrn); local in function:i965_create_program
551 I830Ptr pI830 = I830PTR(scrn); local in function:i965_create_sf_state
614 I830Ptr pI830 = I830PTR(scrn); local in function:i965_create_wm_state
693 I830Ptr pI830 = I830PTR(scrn); local in function:i965_create_cc_vp_state
711 I830Ptr pI830 = I830PTR(scrn); local in function:i965_create_cc_state
753 I830Ptr pI830 = I830PTR(pScrn); local in function:i965_emit_video_setup
974 I830Ptr pI830 = I830PTR(pScrn); local in function:I965DisplayVideoTextured
1264 I830Ptr pI830 = I830PTR(scrn); local in function:i965_free_video
[all...]
H A Di830_quirks.c169 static void quirk_pfit_safe (I830Ptr pI830) argument
171 pI830->quirk_flag |= QUIRK_PFIT_SAFE;
178 static void quirk_reset_modes (I830Ptr pI830) argument
180 pI830->quirk_flag |= QUIRK_RESET_MODES;
183 static void quirk_pipea_force (I830Ptr pI830) argument
185 pI830->quirk_flag |= QUIRK_PIPEA_FORCE;
188 static void quirk_ignore_tv (I830Ptr pI830) argument
190 pI830->quirk_flag |= QUIRK_IGNORE_TV;
193 static void quirk_ignore_lvds (I830Ptr pI830) argument
195 pI830
198 quirk_ignore_crt(I830Ptr pI830) argument
203 quirk_mac_mini(I830Ptr pI830) argument
208 quirk_lenovo_tv_dmi(I830Ptr pI830) argument
226 quirk_msi_lvds_dmi(I830Ptr pI830) argument
240 quirk_ibase_lvds(I830Ptr pI830) argument
251 quirk_ivch_dvob(I830Ptr pI830) argument
258 quirk_broken_acpi_lid(I830Ptr pI830) argument
408 I830Ptr pI830 = I830PTR(scrn); local in function:i830_fixup_devices
[all...]
H A Di830_lvds.c137 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_set_lvds_backlight_method
143 } else if (IS_I965GM(pI830) || IS_GM45(pI830)) {
153 pI830->backlight_control_method = method;
163 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_lvds_set_backlight_native
175 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_lvds_get_backlight_native
187 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_lvds_get_backlight_max_native
191 if (IS_I965GM(pI830) || IS_GM45(pI830)) {
209 I830Ptr pI830 local in function:i830_lvds_set_backlight_legacy
219 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_lvds_get_backlight_legacy
234 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_lvds_set_backlight_combo
263 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_lvds_get_backlight_combo
381 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_lvds_acpi_lid_open
458 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_lvds_swf_lid_close
484 I830Ptr pI830 = I830PTR(pScrn); local in function:i830SetLVDSPanelPower
546 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_lvds_save
563 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_lvds_restore
582 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_lvds_mode_valid
605 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_lvds_mode_fixup
895 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_lvds_mode_set
965 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_lvds_get_modes
1055 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_lvds_destroy
1110 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_lvds_set_backlight_control
1169 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_lvds_create_resources
1269 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_lvds_set_property
1378 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_lvds_get_property
1410 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_lvds_get_crtc
1444 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_lvds_init
[all...]
H A Di830_dvo.c88 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_dvo_dpms
109 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_dvo_save
116 pI830->saveDVOA = INREG(DVOA);
117 pI830->saveDVOB = INREG(DVOB);
118 pI830->saveDVOC = INREG(DVOC);
127 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_dvo_restore
133 OUTREG(DVOA, pI830->saveDVOA);
134 OUTREG(DVOB, pI830->saveDVOB);
135 OUTREG(DVOC, pI830->saveDVOC);
142 I830Ptr pI830 local in function:i830_dvo_mode_valid
166 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_dvo_mode_fixup
198 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_dvo_mode_set
266 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_dvo_get_modes
314 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_dvo_get_crtc
351 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_dvo_get_current_mode
394 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_dvo_init
[all...]
H A Di830_crt.c41 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_crt_dpms
70 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_crt_save
72 pI830->saveADPA = INREG(ADPA);
79 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_crt_restore
81 OUTREG(ADPA, pI830->saveADPA);
88 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_crt_mode_valid
97 if (!IS_I9XX(pI830))
120 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_crt_mode_set
134 if (IS_I965G(pI830))
172 I830Ptr pI830 local in function:i830_crt_detect_hotplug
239 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_crt_detect_load
395 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_crt_detect
452 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_crt_get_crtc
531 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_crt_init
[all...]
H A Di830_display.c412 I830Ptr pI830 = I830PTR(pScrn); local in function:intel_limit_g4x
434 I830Ptr pI830 = I830PTR(pScrn); local in function:intel_limit
437 if (IS_G4X(pI830)) {
439 } else if (IS_I9XX(pI830) && !IS_IGD(pI830)) {
444 } else if (IS_IGD(pI830)) {
488 static void intel_clock(I830Ptr pI830, int refclk, intel_clock_t *clock) argument
490 if (IS_I9XX(pI830)) {
491 if (IS_IGD(pI830))
545 I830Ptr pI830 local in function:i830PllIsValid
577 I830Ptr pI830 = I830PTR(pScrn); local in function:intel_find_pll_i8xx_and_i9xx
635 I830Ptr pI830 = I830PTR(pScrn); local in function:intel_find_pll_g4x
699 I830Ptr pI830 = I830PTR(pScrn); local in function:i830PipeSetBase
815 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_display_tiled
846 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_enable_fb_compression_8xx
899 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_disable_fb_compression_8xx
916 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_disable_fb_compression2
930 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_enable_fb_compression2
961 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_enable_fb_compression
973 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_disable_fb_compression
986 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_use_fb_compression
1044 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_modeset_ctl
1078 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_disable_vga_plane
1110 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_crtc_enable
1167 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_crtc_disable
1244 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_crtc_dpms
1342 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_get_core_clock_speed
1398 i830_panel_fitter_pipe(I830Ptr pI830) argument
1430 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_update_dsparb
1498 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_crtc_mode_set
1864 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_crtc_load_lut
1909 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_crtc_shadow_allocate
1940 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_crtc_shadow_create
2014 I830Ptr pI830 = I830PTR(pScrn); local in function:i830DescribeOutputConfiguration
2197 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_crtc_clock_get
2290 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_crtc_mode_get
[all...]
H A Di965_render.c631 I830Ptr pI830 = I830PTR(scrn); local in function:gen4_create_sf_state
635 sf_state_bo = drm_intel_bo_alloc(pI830->bufmgr, "gen4 SF state",
771 I830Ptr pI830 = I830PTR(scrn); local in function:gen4_create_sampler_state
775 sampler_state_bo = drm_intel_bo_alloc(pI830->bufmgr, "gen4 sampler state",
844 I830Ptr pI830 = I830PTR(scrn); local in function:gen4_create_wm_state
848 wm_state_bo = drm_intel_bo_alloc(pI830->bufmgr, "gen4 WM state",
876 if (IS_IGDNG(pI830))
909 if (IS_IGDNG(pI830))
920 I830Ptr pI830 = I830PTR(scrn); local in function:gen4_create_cc_viewport
927 bo = drm_intel_bo_alloc(pI830
937 I830Ptr pI830 = I830PTR(scrn); local in function:gen4_create_vs_unit_state
961 I830Ptr pI830 = I830PTR(scrn); local in function:gen4_create_cc_unit_state
1110 I830Ptr pI830 = I830PTR(pScrn); local in function:i965_emit_composite_state
1415 I830Ptr pI830 = I830PTR(pScrn); local in function:i965_composite_check_aperture
1444 I830Ptr pI830 = I830PTR(pScrn); local in function:i965_prepare_composite
1602 I830Ptr pI830 = I830PTR(pScrn); local in function:i965_get_vb_space
1631 I830Ptr pI830 = I830PTR(pScrn); local in function:i965_composite
1804 I830Ptr pI830 = I830PTR(pScrn); local in function:i965_batch_flush_notify
1824 I830Ptr pI830 = I830PTR(pScrn); local in function:gen4_render_state_init
1927 I830Ptr pI830 = I830PTR(pScrn); local in function:gen4_render_state_cleanup
[all...]
H A Di830_uxa.c96 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_pixmap_tiled
115 if (offset == pI830->front_buffer->offset &&
116 pI830->front_buffer->tiling != TILE_NONE)
127 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_get_aperture_space
129 if (pI830->batch_bo == NULL)
132 bo_table[0] = pI830->batch_bo;
135 bo_table[0] = pI830->batch_bo;
152 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_pixmap_pitch_is_aligned
154 return i830_pixmap_pitch(pixmap) % pI830->accel_pixmap_pitch_alignment == 0;
164 I830Ptr pI830 local in function:i830_uxa_prepare_solid
211 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_uxa_solid
259 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_uxa_prepare_copy
300 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_uxa_copy
[all...]
H A Di830_dri.c87 I830Ptr pI830 = I830PTR(pScrn); local in function:I830DRI2CreateBuffers
116 if (SUPPORTS_YTILING(pI830))
129 if (!pI830->tiling ||
130 (!IS_I965G(pI830) && !pI830->kernel_exec_fencing))
170 I830Ptr pI830 = I830PTR(pScrn); local in function:I830DRI2CreateBuffer
194 if (SUPPORTS_YTILING(pI830))
207 if (!pI830->tiling ||
208 (!IS_I965G(pI830) && !pI830
287 I830Ptr pI830 = I830PTR(pScrn); local in function:I830DRI2CopyRegion
365 I830Ptr pI830 = I830PTR(pScrn); local in function:I830DRI2ScreenInit
439 I830Ptr pI830 = I830PTR(pScrn); local in function:I830DRI2CloseScreen
[all...]
H A Di830_video.c335 #define I830OVERLAYREG(pI830) ((I830OverlayRegPtr)\
336 ((pI830)->FbBase + \
337 (pI830)->overlay_regs->offset))
340 CompareOverlay(I830Ptr pI830, uint32_t * overlay, int size) argument
365 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_overlay_switch_to_crtc
371 if ((!IS_I965G(pI830) && (INREG(pipeconf_reg) & PIPEACONF_DOUBLE_WIDE))
423 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_overlay_on
424 I830OverlayRegPtr overlay = I830OVERLAYREG(pI830);
425 I830PortPrivPtr pPriv = pI830->adaptor->pPortPrivates[0].ptr;
428 if (pI830
470 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_overlay_continue
497 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_overlay_off
546 I830Ptr pI830 = I830PTR(pScrn); local in function:I830InitVideo
648 I830Ptr pI830 = I830PTR(pScrn); local in function:I830ResetVideo
737 I830Ptr pI830 = I830PTR(pScrn); local in function:I830SetOneLineModeRatio
799 I830Ptr pI830 = I830PTR(pScrn); local in function:I830UpdateGamma
835 I830Ptr pI830 = I830PTR(pScrn); local in function:I830SetupImageVideoOverlay
1095 I830Ptr pI830 = I830PTR(pScrn); local in function:I830SetPortAttributeOverlay
1186 I830Ptr pI830 = I830PTR(pScrn); local in function:I830GetPortAttribute
1250 I830Ptr pI830 = I830PTR(pScrn); local in function:I830CopyPackedData
1358 I830Ptr pI830 = I830PTR(pScrn); local in function:I830CopyPlanarData
1774 i830_swidth(I830Ptr pI830,unsigned int offset,unsigned int width,unsigned int mask,int shift) argument
1981 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_display_video
2231 I830Ptr pI830 = I830PTR(pScrn); local in function:I830PutImage
2571 I830Ptr pI830 = I830PTR(pScrn); local in function:I830QueryImageAttributes
2655 I830Ptr pI830 = I830PTR(pScrn); local in function:I830VideoBlockHandler
2708 I830Ptr pI830 = I830PTR(pScrn); local in function:I830AllocateSurface
2801 I830Ptr pI830 = I830PTR(pScrn); local in function:I830DisplaySurface
2855 I830Ptr pI830 = I830PTR(pScrn); local in function:I830InitOffscreenImages
2888 I830Ptr pI830 = I830PTR(pScrn); local in function:i830_crtc_dpms_video
[all...]
/xsrc/external/mit/xf86-video-intel-old/dist/src/reg_dumper/
H A Dgtt.c44 I830Ptr pI830 = &i830; local in function:main
48 intel_i830rec_init(pI830);
50 if (!IS_I9XX(pI830)) {
55 if (IS_G4X(pI830) || IS_IGDNG(pI830))
56 gtt = (unsigned char *)(pI830->mmio + MB(2));
57 else if (IS_I965G(pI830))
58 gtt = (unsigned char *)(pI830->mmio + KB(512));
62 err = pci_device_map_range (pI830->PciInfo,
63 pI830
[all...]
H A Dreg_dumper.h50 /* Fields in common with the real pI830 */
63 I830Ptr pI830; member in struct:_scrn
66 #define I830PTR(pScrn) (pScrn->pI830)
70 #define INREG8(reg) (*(volatile uint8_t *)((pI830)->mmio + (reg)))
71 #define INREG16(reg) (*(volatile uint16_t *)((pI830)->mmio + (reg)))
72 #define INREG(reg) (*(volatile uint32_t *)((pI830)->mmio + (reg)))
74 *(volatile uint8_t *)((pI830)->mmio + (reg)) = (val)
76 *(volatile uint16_t *)((pI830)->mmio + (reg)) = (val)
78 *(volatile uint32_t *)((pI830)->mmio + (reg)) = (val)
87 void intel_i830rec_init(I830Ptr pI830);
[all...]
H A Dutil.c39 * Sets up the pI830 for use by common.h-style macros, particularly
42 void intel_i830rec_init(I830Ptr pI830) argument
68 pI830->PciInfo = dev;
70 mmio_bar = IS_I9XX(pI830) ? 0 : 1;
82 pI830->mmio = mmio;
H A Dstatuspage.c45 I830Ptr pI830 = &i830; local in function:main
50 intel_i830rec_init(pI830);
52 if (HWS_NEED_GFX(pI830))

Completed in 24 milliseconds

12