summaryrefslogtreecommitdiff
path: root/linux-core/radeon_display.c
AgeCommit message (Collapse)Author
2008-09-26radeon: make atom on r4xx a module optionAlex Deucher
default is legacy modesetting. pass module option r4xx_atom to try using atom on r4xx.
2008-09-25radeon: first pass at using atombios on r4xx hwAlex Deucher
2008-09-23radeon: Fix type in check for tmds type.Kristian Høgsberg
2008-09-23Store the buffer object backing the fb as a void pointer, not a handle.Kristian Høgsberg
This lets us defer handle creation until userspace acutally asks for one, at which point we also have a drm_file to associate it with.
2008-09-18radeon: pll and interlace updates from the ddxAlex Deucher
also some formatting cleanup in radeon_reg.h
2008-09-18radeon: Add functions to set mem/eng clocksAlex Deucher
2008-09-18Radeon: restructure PLL dataAlex Deucher
- store pixel clocks, core clock, and memory clocks separately - grab all pll limits from bios tables
2008-09-18radeon: don't do full edid for detection purposesDave Airlie
2008-09-04radeon: fixup a number of avivo checks for rs690Dave Airlie
2008-08-17radeon: first pass at bios scratch regsAlex Deucher
- todo: updated connected status
2008-08-14Restructure cursor handling and add support for legacy cursorsAlex Deucher
2008-08-14LUT updatesAlex Deucher
- Add gamma set for legacy chips - Add 16 bpp gamma set
2008-08-14various cleanupsAlex Deucher
- white space - move i2c_lock to radeon_i2c.c - enable tv dac on legacy
2008-08-14unify connector, i2c handling for atom and legacyAlex Deucher
2008-08-14Brute force port of legacy crtc/encoder codeAlex Deucher
- removed save/init/restore chain with set functions
2008-08-08radeon: add initial support for legacy crtc/encoders.Dave Airlie
not all there yet
2008-07-26radeon: add initial atombios modesetting and GEM -> TTM translation layer.Dave Airlie
This is an initial import of the atom bios parser with modesetting support for r500 hw using atombios. It also includes a simple memory manager layer that translates a radeon GEM style interface onto TTM internally. So far this memory manager has only been used for pinned object allocation for the DDX to test modesetting.