Age | Commit message (Collapse) | Author |
|
|
|
This is a precursor for r300/500 vbo support.
Signed-off-by: Dave Airlie <airlied@redhat.com>
|
|
The server 1.2 as shipped in the tarball on the web does not contain the
modes code. It was added just after and found in git branch server-1.2-branch.
The modes code was initially included in version ati 6.8.0 and fails to compile
with server 1.2 as it requires randr 1.2. The modes code is included in server
versions 1.3 and later, so there is no need to provide an unknown version of
the modes code in the ati driver tarball. It will never be used.
This patch makes the ati driver requiring server 1.3 or later.
Version 6.8.0 configures and builds ok on server 1.3
Master branch post 6.13.1 configures and builds ok on server 1.3
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
|
|
When we get a hotplug event from the kernel we should notify the client side to reconfigure displays.
based on work by ajax in intel driver.
Signed-off-by: Dave Airlie <airlied@redhat.com>
|
|
radeon_dummy_bufmgr.h
radeon_vbo.h
simple_list.h
Replace leading spaces with tab for radeon_atomwrapper.h
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
|
|
This ports the mesa DMA buffer handling with the 3 lists,
Signed-off-by: Dave Airlie <airlied@redhat.com>
|
|
This fixes compilation if libdrm_radeon is installed to non-standard location like /opt.
|
|
|
|
|
|
This adds DRI2 + KMS + driver pixmaps support to the driver.
I've decided to just do a completely separate KMS driver file
instead of hacking the crap out of radeon_driver.c. So now
I do the KMS check in radeon_probe.c time and set the DDX
pointed up to a completely different set at this stage.
This avoids a lot of if (kms) type crap in the code at
the expense of making sure we make changes to both files
if necessary.
This code is still disabled in configure.ac as I broke EXA composite
rendering somehow in KMS mode
|
|
- replaces DynamicClocks Option as the name was misleading
- unified interface for atom and com based bioses
- fix up clock gating code for newer r3xx asics
|
|
patches from Christian Koenig with some adjustments from me
|
|
|
|
|
|
|
|
This is a setup patch for the kms/memory management code.
|
|
|
|
This makes sure the driver ends up with a DT_NEEDED reference to
the libraries it's using.
|
|
See bug 14594. Based on suggestion by Henry Zhao
|
|
bsd requires a different pragma pack than Linux.
See bug 14594.
|
|
|
|
|
|
|
|
Based on the kdrive ati video code by Eric Anholt.
R3xx/R4xx still have some clipping issues in certain situations
|
|
add pciids for each subdriver, make no use of the match_data functionality.
thanks to Alex Deucher for reviewing and testing.
|
|
|
|
|
|
|
|
compile-tested only
|
|
egrep LOADER\|SymLists\|Symbols src/*.[hc]
not needed after server commit bca9364f3f4a2376edbcf57a34f704ce28be21ba, i.e.
xserver 1.2
compile-tested only
|
|
|
|
|
|
|
|
noted by ndim on #radeonhd
|
|
Conflicts:
src/radeon_chipset.h
src/radeon_driver.c
src/radeon_probe.c
|
|
This uses a single file with all the pciids and parameters for radeon
family and setup in it. I don't run the perl script at build time to avoid
a perl dependency on build but adding pci ids should be done via the csv file
with openoffice or gnumeric if possible.
|
|
I commented out the object parsing for the time being as
using it will require some thought as to new output
related data structures.
|
|
- add r3xx/r4xx MC access macros and functions
|
|
ATOM builds, but it's not hooked up yet.
|
|
|
|
Surprisingly easy, thanks to George's pci-rework changes.
|
|
It still uses the old probe method though, this is due to the ati wrapper.
|
|
Conflicts:
src/ati.c
|
|
Based on the GATOS tv-out support by Federico Ulivi <fulivi@lycos.com>
and information from ati with substantial rework by myself.
Code is not actually hooked up yet.
|
|
|
|
- move crtc stuff to radeon_crtc.c
- move output stuff to radeon_output.c
|
|
|
|
|
|
|
|
Subdrivers are now loaded from the wrapper Probe function rather than at screen
creation time.
The wrapper Identify callback only prints chip families now, chip lists are
printed when a subdriver is loaded. This also avoids duplication of subdriver
Identify callbacks.
Unknown radeons should still get a list of known radeon and then probe fails...
Probe for atimisc last to avoid needless loading in most cases (r128, radeon).
|