summaryrefslogtreecommitdiff
path: root/src/gallium/winsys/drm/i965
AgeCommit message (Collapse)Author
2010-01-17i965g: Link against drm_intel instead of drm_radeonJakob Bornecrantz
2010-01-16i965g: make xorg state tracker build i965g_drv.soDave Airlie
don't make modesetting_drv.so anymore
2010-01-12winsys/drm: Use egl_g3d to build EGL drivers.Chia-I Wu
The new EGL drivers use egl_g3d and respect EGL_DISPLAYS. They are named after the display supported and the DRM name. Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
2010-01-12winsys/drm: Add name field to drm_api.Chia-I Wu
The name can be used for driver selection. It has the same name as the DRI driver does right now. Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
2010-01-01scons: Aggregate all tiny libraries in a single library.José Fonseca
Makes integration of gallium into out of tree components much easier. No pratical change for components in this tree,
2009-12-21ws/i965: respect DEBUG_WINSYS flagKeith Whitwell
2009-11-30i965g: pass backbuffer tiling information to driverKeith Whitwell
The gem winsys gets this information, needs to pass it on.
2009-11-30ws/i965: more debug outputKeith Whitwell
2009-11-30ws/i965: rename and change sense of I965_SEND_CMD to BRW_NO_HWKeith Whitwell
2009-11-30brw: add dumping to gem winsysKeith Whitwell
2009-11-28i965g: link xorg state tracker with -ldrm_intelDave Airlie
2009-11-06i965g: Fixup buffer creation functionJakob Bornecrantz
First tri!
2009-11-06i965g: trivial/clear can now send stuff to hardwareJakob Bornecrantz
Added a flag if we should send commands to hardware as what we send isn't all that correct.
2009-11-06i965g: Winsys whitespaceJakob Bornecrantz
2009-11-06i965g: Build winsys againJakob Bornecrantz
2009-11-05i965g: clean up winsys dumping code a littleKeith Whitwell
2009-11-05i965g: pass relocation information in an array with bo_subdataKeith Whitwell
Makes it easier to dump as we get all of the information about the upload in a single hit. Opens the window to simplification in the driver if these relocation arrays can be maintained statically rather than being recreated whenever we check for a new upload. Still needs some cleanup to avoid uglyness introduced with the delta values.
2009-11-05i965g: propogate map-buffer-range semantics down to winsysKeith Whitwell
2009-11-05i965g: make the winsys responsible for all buffer->offset handlingKeith Whitwell
The winsys now inserts the presumed offset into referring buffers from inside of bo_emit_reloc(). Remove the many locally coded places where this was happening in the driver and eliminate the worry of getting it wrong. No longer need to expose offset values to the driver at all, so no need to worry about what to do in the driver when they change. Just use zero values wherever we had offsets previously -- the relocations will fix it all up for us.
2009-11-05brw: push more dumping into the winsysKeith Whitwell
2009-11-05i965g: disassemble more than one instruction at a timeKeith Whitwell
2009-11-05i965g: call dissassembler for appropriate data uploadsKeith Whitwell
2009-11-05i965g: add lots of error checks and early returnsKeith Whitwell
Any allocation that may fail should be checked, and propogate the error upwards. At the highest level we will flush batch and retry. This is an alternate strategy to what the original DRI driver did of attempting to flush batch from the lowest levels (eg inside BEGIN_BATCH). The trouble with that strategy was that flushes could occur at unexpected times, and additionally there was a need for a wierd notification mechanism to propogate the 'lost context' state back up to higher levels. Propogating the errors directly gives us a lot of flexibility how to deal with these states, at the expense of a lot more checking in the code. Will add some sanity checks later to make sure that out-of-memory conditions are properly escalated and not lost halfway up the stack.
2009-11-05i965g: hook up dumpers in dumping winsysKeith Whitwell
2009-11-05i965g: add data type tags to aid dumping/decodingKeith Whitwell
2009-11-05i965g: Do not create a symlink for i965_dri.soJakob Bornecrantz
2009-11-04i965g: consolidate some includesKeith Whitwell
2009-11-04ws/i965: allow NULL buffer in winsys::bo_unreferenceKeith Whitwell
Special case to avoid clutter in the driver
2009-11-04i965g: hook up flush-frontbufferKeith Whitwell
2009-11-04i965g: add missing buffer functionsKeith Whitwell
2009-11-04ws/i965: add load-time driver registrationKeith Whitwell
Otherwise xlib state-tracker doesn't know about us.
2009-11-04ws/i965: add butt-ugly linker hackKeith Whitwell
Need more linker magic to keep the glX symbols externally visible even though they started off in a .a file.
2009-11-04i965g: add standalone xlib debug winsysKeith Whitwell
Create a dummy winsys that just debug-prints on calls into the winsys functions. Will use this to get to the point where we are generating sane-looking debug dumps and diassembly. Also fix various warnings generated with the new compiler flags set in this config.
2009-11-04i965g: convert read/write domain pairs into single usage valueKeith Whitwell
Easier to understand what's going on in the driver sources, convert stereotype usage values back to GEM read/write domain flags in the winsys.
2009-11-01i965g: driver and winsys compileKeith Whitwell
A milestone of sorts. Still a long way from something working -- the old one compiled too, at least some of the time...
2009-10-24ws/i965: renames from i915, hook up makefilesKeith Whitwell
2009-10-23ws/i965: pull in the rest of the i915 winsys tree.Keith Whitwell
The intel_xorg file looks like it's got quite a bit of code that could be lifted up into the xorg state tracker -- should really just have a list of pci ids and a pointer to a screen create func.
2009-10-23ws/i965: clone the i915 winsysKeith Whitwell
I'll want to rework this, not sure trying to share this code is a very good idea at least until the interfaces from the two drivers calm down.