summaryrefslogtreecommitdiff
path: root/src/bios_reader
AgeCommit message (Collapse)Author
2009-03-02Update driver feature block definition for missed fieldsZhenyu Wang
2009-02-28warnings cleanupEric Anholt
2009-02-25Update LVDS config bits definition in driver feature blockZhenyu Wang
ALL_LVDS is actually not defined before and include GM45. Embedded DP bit will be used for newer chips.
2009-02-18bios_reader: parse driver feature BDBZhenyu Wang
2009-01-13bios_reader: make mode timing output friendlierJesse Barnes
Print out the calculated mode line values (as i830_bios.c uses) and check for validity against known problems.
2009-01-07Prevent redefinitions of CARD8 and friends. Fixes build.Ian Romanick
2008-12-03Include <X11/Xfuncproto.h> prior to including "edid.h" from the sdk.Paulo Cesar Pereira de Andrade
2008-10-06Fix bios_reader build against old servers.Eric Anholt
The server's pci_device structure ends up conflicting with libpciaccess's. Just don't include the server structure for this non-server tool.
2008-10-06Document more VBIOS functionalityJesse Barnes
Document a few more VBT structures and comment on VBIOS communication a bit. There should be enough there now for a sufficiently motivated developer to start implementing support for hotkeys and other features on pre-IGD OpRegion machines.
2008-09-30Be more verbose about panel data in VBIOS dumperJesse Barnes
Dump more panel data, including number of expected entries. Had to refactor things a bit, but now each function should get size information so further checking can be added more easily.
2008-08-21Fix compiler warnings in VBIOS utilsJesse Barnes
2008-08-20Add more panel debugging info to register dump & vbios readerJesse Barnes
2008-08-19Add swf_dumper to .gitignoreJesse Barnes
2008-08-19Add VBIOS software flags dumper programJesse Barnes
Still need to actually print all the flags & test on various platforms, but at least the bits are documented now.
2008-08-05Reorganize VBIOS codeJesse Barnes
Make VBT parsing happen at driver init time rather than in each output init function, to save time and better separate VBIOS code into i830_bios.[ch]. The changes end up touching the output files due to field name changes, and allow us to reorder & simplify our LFP mode detection code.
2008-05-21Define DEFFILEMODE for OS'es that don't have itAlan Coopersmith
2008-03-11Remove i830+ driver's use of CARD*/INT* types for great justice.Eric Anholt
Several uses are actually left, which are determined by the X Server interfaces we're implementing.
2008-03-11Crack down on warnings.Kristian Høgsberg
Fix printf formatting warnings, wrap a couple of long lines, nuke unused variables, add missing #include <unistd.h>.
2008-02-26Bug #14649: Fix build if pciaccess headers are not with other xorg headers.Mark Kettenis
We failed to include the pciaccess header flags in our build. Even if the server was to include those flags for us, it would leave us broken for the tools-only case, and it's easier to just put the flags everywhere so we avoid future copy'n'paste mistakes.
2007-10-01Restore building of pciaccess-based tools even if the server doesn't use it.Eric Anholt
2007-08-26Intel driver configuration (only) changes for X server libpciaccess usage.Keith Packard
Detect whether the target X server uses libpciaccess, using it in the driver compilation as necessary. This change means that utilities that used to use libpciaccess will not do so unless the driver itself uses libpciaccess. Yes, that could be fixed, but it doesn't seem that important. This patch does not include any code changes necessary to actually have the driver build against an X server using libpciaccess.
2007-08-06Add the file mode for bios_dumper output so it doesn't have 000 permissions.Eric Anholt
2007-05-16Add i830_bios_get_aim_data_block to read AIM data from BIOSKeith Packard
Add-in modules have per-module data in the BIOS which contains configuration information which cannot be entirely discovered.
2007-03-30Don't forget the warnings CFLAGS in subdirectories.Eric Anholt
2007-03-16Move vendor ID check in the utils to after pci_device_probe.Eric Anholt
Even current libpciaccess seems to require this.
2007-03-04Add a little BIOS dumper program.Eric Anholt
This isn't actually tested yet as libpciaccess doesn't do rom access on non-linux yet.
2007-02-16Check for presence of xf86Modes.h file.Keith Packard
xf86Modes.h file signals the availability of the new modes API in the server; use that instead of counting on X server version numbers. Also, finish eliminating use of local copies of those header files.
2006-04-16Add a standalone program for parsing VBT.Eric Anholt