summaryrefslogtreecommitdiff
path: root/hw/xfree86/ddc/xf86DDC.c
AgeCommit message (Collapse)AuthorFilesLines
2009-07-17ddc: mv xf86DDC.c ddc.cAdam Jackson1-449/+0
2009-07-17ddc: Yet more code motionAdam Jackson1-1/+120
2009-07-17ddc: Code motion to eliminate forward declsAdam Jackson1-83/+67
2009-07-17ddc: Update a comment.Adam Jackson1-4/+4
2009-02-27DDC: Redo extended device probe slightly.Adam Jackson1-1/+6
We'll now only mention the E-EDID segment register if the device is actually E-EDID-capable. While we're here, check for DDC/CI and standard EEPROM support too.
2008-12-03Rework symbol visibility for easier maintenancePaulo Cesar Pereira de Andrade1-3/+3
Save in a few special cases, _X_EXPORT should not be used in C source files. Instead, it should be used in headers, and the proper C source include that header. Some special cases are symbols that need to be shared between modules, but not expected to be used by external drivers, and symbols that are accessible via LoaderSymbol/dlopen. This patch also adds conditionally some new sdk header files, depending on extensions enabled. These files were added to match pattern for other extensions/modules, that is, have the headers "deciding" symbol visibility in the sdk. These headers are: o Xext/panoramiXsrv.h, Xext/panoramiX.h o fbpict.h (unconditionally) o vidmodeproc.h o mioverlay.h (unconditionally, used only by xaa) o xfixes.h (unconditionally, symbols required by dri2) LoaderSymbol and similar functions now don't have different prototypes, in loaderProcs.h and xf86Module.h, so that both headers can be included, without the need of defining IN_LOADER. xf86NewInputDevice() device prototype readded to xf86Xinput.h, but not exported (and with a comment about it).
2008-11-28Make visible symbols required by xorg modules.Paulo Cesar Pereira de Andrade1-3/+3
This patch exports all symbols required by the compilable (in a x86 linux computer) xorg/driver/* modules. Still missing symbols worth mentioning are: sunleo miFindMaxBand no longer available intel (uxa/uxa-accel.c) fbShmPutImage no longer available (and should have been static) mga MGAGetClientPointer (should come from matrox's libhal) This is not a definitive "visibility" patch, as all it does is to export missing symbols, but the modules that current don't compile, may require more symbols once fixed, and third party drivers should also require more symbols exported. A "definitive" patch should export symbols defined in the sdk.
2008-10-10Revert "Don't leak EDID_block"Adam Jackson1-1/+0
This reverts commit 05cdef18ca668ffc86b71033f71cfbd262cdd994. http://lists.freedesktop.org/archives/xorg/2008-October/039305.html
2008-10-10Don't leak EDID_blockZhenyu Wang1-0/+1
2008-06-30Actually fetch all blocks of EEDID if asked to.Adam Jackson1-16/+16
2008-03-28Compile fix.Adam Jackson1-1/+1
2008-03-28Add E-EDID segment selection.Adam Jackson1-34/+71
2008-03-28Refactor DDC2 code to allow for proper segmented addressing.Adam Jackson1-68/+64
2008-03-28Start E-EDID support in the DDC module.Adam Jackson1-29/+45
Since there's no way to safely know how many blocks xf86DoEDID_DDC2 would return, add a new xf86DoEEDID entrypoint to do that, and implement the one in terms of the other.
2008-03-01clean some "unused" warningsGeorge Sapountzis1-9/+0
2007-06-02Delete VDIF support; it was never used anyway.Adam Jackson1-41/+0
2007-03-25Since ddc, i2c, and ramdac are in core now, remove their ModuleData stubs.Adam Jackson1-46/+0
2007-03-17Slow down DDC I2C bus using a RiseFallTime of 20us for old monitors.Keith Packard1-0/+6
This time value makes the bus run slowly enough for even the least reliable of monitors. Thanks to Pavel Troller for finding the necessary change.
2007-03-17Remove extra (and wrong) I2C ByteTimeout setting in DDC code.Keith Packard1-1/+0
The DDC code sets the I2C timeouts to VESA standards, except that it had an extra setting of the ByteTimeout value which was wrong (off by a factor of 50). Removing this should help DDC work on many more monitors. Note that the Intel driver duplicated these settings, along with the error. Yay for cult and paste coding.
2007-02-15Merge crtc/output-based mode selection code.Keith Packard1-0/+4
This code comes from the intel driver, so there's no history in this tree. As the crtc/output-based mode selection code uses ddc, the ddc and i2c modules have been merged into the server. Attempts to load them are safely ignored now.
2006-07-21Delete internal usage of the symbol ref/req lists.Adam Jackson1-17/+0
2006-07-18get rid of XFree86LOADER, XFree86Server, XFree86Module, and IN_MODULEDaniel Stone1-2/+0
Get rid of almost all uses of these definitions. They're still defined for delinquent out-of-tree drivers, and also for the Mesa build. As well as for miinitext.c. But largely gone.
2006-06-18Add a couple of (doxygen) comments I wrote while looking at modesetting.Eric Anholt1-0/+22
2006-06-05Ensure all *ModuleData symbols are marked _X_EXPORT. Start removingAdam Jackson1-12/+1
XFree86LOADER ifdefs, non-loadable hasn't been supported for a while now. Remove completely gratuitious REMOVE_LOADER_CHECK_MODULE_INFO ifdefs surrounding a call to a function added in XFree86 4.1 (!). Miscellaneous static markings.
2006-02-10Remove libcwrapper usage from xorg server modules. The libcwrapper is onlyEric Anholt1-1/+1
of (marginal) use in the drivers, and that usage remains.
2005-11-18Bug #4859: Don't segfault on bad DDC read. (Tony Houghton)Adam Jackson1-5/+8
2005-07-03Change <X11/misc.h> and <X11/os.h> to "misc.h" and "os.h".Daniel Stone1-1/+1
2005-07-03Add Xtrans definitions (FONT_t, TRANS_CLIENT) to clean up warnings.Daniel Stone1-0/+4
Add XSERV_t, TRANS_SERVER, TRANS_REOPEN to quash warnings. Add #include <dix-config.h> or <xorg-config.h>, as appropriate, to all source files in the xserver/xorg tree, predicated on defines of HAVE_{DIX,XORG}_CONFIG_H. Change all Xfont includes to <X11/fonts/foo.h>.
2005-07-01Change all misc.h and os.h references to <X11/foo.h>.Daniel Stone1-1/+1
2004-07-31Change several LoaderSymbol calls introduced by the bug #400 patch toAdam Jackson1-3/+3
*Weak() resolver functions.
2004-04-23Merging XORG-CURRENT into trunkEgbert Eich1-2/+2
2004-03-14Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004Egbert Eich1-1/+1
2004-03-03Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004Egbert Eich1-1/+1
2004-02-26readding XFree86's cvs IDsEgbert Eich1-1/+1
2004-02-26Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004Egbert Eich1-1/+1
2003-11-25XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folksKaleb Keithley1-19/+20
2003-11-14Initial revisionKaleb Keithley1-0/+379