Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
instead of from code
|
|
|
|
|
|
|
|
|
|
First pass at merging both trees. So far, this has only been tested
on the PCI-rework build on a PCI G450.
|
|
git+ssh://git.freedesktop.org/git/xorg/driver/xf86-video-mga into pci-rework
|
|
|
|
git+ssh://git.freedesktop.org/git/xorg/driver/xf86-video-mga into pci-rework
|
|
git+ssh://git.freedesktop.org/git/xorg/driver/xf86-video-mga into pci-rework
Conflicts:
src/mga_macros.h
|
|
|
|
|
|
Several places in the driver contain if-statements that test Chipset against
several different values to determine what functionality to use. Some of
these tests, HALCHIPSETS in particular, test as many as 6 different values.
This bloats the code size unnecessarilly. Instead we cache the results of
some of those tests in single bit flags stored in pMga.
These changes are similar to some changes in the pci-rework branch.
|
|
git+ssh://git.freedesktop.org/git/xorg/driver/xf86-video-mga into pci-rework
|
|
|
|
This makes both paths behave the same way.
|
|
|
|
Based on ajax' mga-exa-2.patch with some straight forward fixes
by myself.
|
|
pci-rework branch.
|
|
|
|
|
|
|
|
(Ian Romanick)
|
|
|
|
|
|
- Disable building the gamma driver
- Fix numerous Imakefiles to get header paths and subdirs right
- Symlink client-side GLX lib source from Mesa
- Add new shader subdirs to the Mesa core build
- Tweak the DDX drivers to not ask for "xf86dri.h"; they don't need it,
since they don't generate protocol, and it was breaking the build.
|
|
physical bus used for the card. This allows accurate detection of PCI
cards that use a PCI-to-PCI bridge with an AGP chip.
Correctly disable DRI on PCI cards used with pre-3.2 DRM. Previously the
test was performed based on PCI ID (see above for why this is wrong)
and was done *before* the DRM version was known.
Bug #3759: <https://bugs.freedesktop.org/show_bug.cgi?id=3759> Correctly
determine the PLL reference frequency from the PInS data. Previously
the wrong bit was tested. Blame the dumb programmer that used
cut-and-paste (that would be me).
|
|
|
|
This patch dumps all of the old BIOS processing code from the MGA DDX. The
new code, located in mga_bios.c, is modeled after the code in
matroxfb_misc.c (though no actual code was copied). Basically, the BIOS
is processed in one place, with "device independent" values stored in a
data structure. This data is then used, without extra switch-statments,
throughout the driver.
In addition, this patch adds support for processing the BIOS on PowerPC
systems. On PPC cards, the magic offset values (that give the location
of the PInS data) is not in the BIOS. Instead the driver has to search
the BIOS for the PInS structure signature. The patch does this and
correctly handles byte-ordering (and data alignement) issues.
This code has been tested on an AGP G400 on x86 and a PCI G450 on PowerPC.
NOTE: The file mga_bios.h is also removed. The "documentation" in that file
was moved to the file mga_PInS.txt. This file documents, as much as
possible, the layout of the various PInS datastructure versions. The
information in that file is 100% based on the old mga_bios.h and the
code in matroxfb_misc.c. No additional information from Matrox
documentation is included in that file. This just puts the information
that was already known in one place.
Xorg Bug: 3553
|
|
Update MGA DDX to use new features of MGA DRM ersion 3.2 to enable DRI
support on PCI cards. Backwards compatability with older client-side
drivers is enabled with new Device section settings. See mga.man for
details.
Xorg bug: 3259 Reviewed by: Eric Anholt
|
|
MGA driver.
- Use mga_drm.h instead of mga_common.h. Due to this, all the MGA-specific
DRM names were changed to generic versions (i.e., drmMGALock became
drm_lock_t).
- Merge MGADRIMapInit into MGADRIAGPInit and rename the resulting function
MGADRIBootstrapDMA.
- Eliminate several unnecessary drmMap calls. The server has no need to map
MMIO space, primary DMA buffer space, secondary DMA buffer space, WARP
microcode space, or the DRM status page.
- Clarified which portions of the client / server DRI interface are no
longer used.
- Removed some unused fields from MGADRIServerPrivateRec.
- Bump MGA_PATCHLEVEL.
Reviewed by: Adam Jackson Reviewed by: Eric Anholt
|
|
(Ryan Underwood) (http://bugs.xfree86.org/show_bug.cgi?id=1098)
- expose I2CStart; needed for mga maven support (Ryan Underwood)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|