summaryrefslogtreecommitdiff
path: root/src/radeon_vip.c
AgeCommit message (Collapse)AuthorFilesLines
2008-05-12Replace CARD{8,16,32} with uint{8,16,32}_tMatt Turner1-21/+21
As has been done with xf86-video-intel, replace all CARD* datatypes with uint*_t datatypes available from stdint.h.
2007-09-20RADEON: fix video in on RV380 (tested on X600 VIVO)Maciej Cencora1-0/+7
2006-11-22clean up previous VIP commit.Alex Deucher1-1/+1
2006-11-22Don't mess with the VIP bus on mobility chips. Seems to cause fanAlex Deucher1-1/+1
problems on asus laptops (see bug 7463). We don't support video-in on any laptops at the moment anyway.
2006-03-22Convert use of xf86fopen() and other xf86 wrapped libc symbols to use libcKristian Høgsberg1-0/+2
symbols directly. The xf86* versions aren't supposed to be used directly. Drop libc wrapper; don't include xf86_ansic.h and add includes now missing.
2006-03-12Stop using xf86PciInfo.h, instead use a local copy of the PCI IDs we needBenjamin Herrenschmidt1-1/+1
in atipciids.h so we can update the ATI driver independently of the server when new chips are added
2005-09-06Handle VIP timeouts more gracefully -- impose a hard limit of 10ms onDave Airlie1-3/+15
waiting for VIP_BUSY so we don't lock up hard, spinning.
2005-07-11Prep for modular builds by adding guarded #include "config.h" everywhere.Adam Jackson1-0/+4
2005-04-20Fix includes right throughout the Xserver tree:Daniel Stone1-1/+1
change "foo.h" to <X11/foo.h> for core headers, e.g. X.h, Xpoll.h; change "foo.h", "extensions/foo.h" and "X11/foo.h" to <X11/extensions/foo.h> for extension headers, e.g. Xv.h; change "foo.[ch]" to <X11/Xtrans/foo.[ch]> for Xtrans files.
2005-04-17Added functions that access the FIFO on RT200Bogdan Diaconescu1-2/+139
2005-03-24- radeon PLL access errata workarounds (Benjamin Herrenschmidt, acked byAlex Deucher1-1/+1
Hui Yu)
2004-10-02Modified:Vladimir Dergachev1-0/+200
xc/programs/Xserver/hw/xfree86/drivers/ati/Imakefile xc/programs/Xserver/hw/xfree86/drivers/ati/radeon_reg.h xc/programs/Xserver/hw/xfree86/drivers/ati/radeon_video.[c,h] xc/programs/Xserver/hw/xfree86/drivers/ati/radeon_vip.c Add VIP bus access code, hook it into initialization system.