aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/agp/agp_i810.c
Commit message (Expand)AuthorAgeFilesLines
* Fix undefined behavior: (1 << 31) is not defined as 1 is an int and thisEitan Adler2013-11-301-2/+2
* Remove the deprecated VM_ALLOC_RETRY flag for the vm_page_grab(9).Konstantin Belousov2013-08-221-1/+1
* Switch the vm_object mutex to be a rwlock. This will enable in theAttilio Rao2013-03-091-4/+5
* Fix reversed condition in the logic to wait for the chipset buffersKonstantin Belousov2013-01-271-1/+1
* Add pci id for the xeon hd4000 (IvyBridge server GT2)Baptiste Daroussin2012-12-111-0/+5
* Remove unneeded header from agp: opt_bus.hEitan Adler2012-11-151-2/+0
* This isn't functionally identical. In some cases a hint to disableEitan Adler2012-10-221-0/+2
* Now that device disabling is generic, remove extraneous code from theEitan Adler2012-10-221-2/+0
* After the PHYS_TO_VM_PAGE() function was de-inlined, the main reasonKonstantin Belousov2012-08-051-0/+1
* Revert revision 238172 of agp_i810.c. Correctness is considered moreMarcel Moolenaar2012-07-091-1/+2
* agp.c:Marcel Moolenaar2012-07-061-2/+1
* Correct device id for GPU on some server SandyBridge model.Konstantin Belousov2012-06-231-1/+1
* A rewrite of the i810 bits of the agp(4) driver. New driver supportsKonstantin Belousov2012-05-221-635/+2051
* Push down the acquisition of the page queues lock into vm_page_unwire().Alan Cox2010-05-051-2/+0
* Acquire the page lock around vm_page_unwire(). For consistency, extend theAlan Cox2010-05-031-1/+3
* Add support of Intel Pineview chips, aka IGD.Robert Noland2010-03-121-4/+20
* Add pci ids for Intel Ironlake chipsets.Robert Noland2010-03-121-0/+4
* Add pci id's for Intel G41 chipsetRobert Noland2009-10-111-0/+2
* John Baldwin suggested that 'stolen memory' only happens in the case ofNick Hibma2009-09-141-8/+6
* Move the printing of aperture size and stolen memory behind bootverbose.Nick Hibma2009-09-101-9/+9
* vm_offset_t is unsigned and therefore can not be negative.Robert Noland2009-03-201-3/+3
* Fix prototypes to be consistent.Warner Losh2009-03-091-3/+3
* Fix up handling of Intel G4X chips some more.Robert Noland2008-12-231-5/+12
* Correctly handle Intel g33 chips and add support for g45 chipsRobert Noland2008-10-021-18/+120
* Enable the support for G33/Q35/Q33 now that both the G33 and Q35 have beenJohn Baldwin2008-08-011-2/+0
* Fix PCI id for 945GME Express Integrated Graphics Controller:Oleksandr Tymoshenko2008-06-201-1/+1
* Add resume support to the agp_i810 family.Remko Lodder2008-03-121-0/+17
* Add the 845M GMCH controller.Remko Lodder2007-11-261-0/+2
* Move the agp(4) driver from sys/pci to sys/dev/agp. __FreeBSD_version wasJohn Baldwin2007-11-121-2/+2
* Split agp_generic_detach() up into two routines: agp_free_cdev() destroysJohn Baldwin2007-10-301-4/+2
* Add the PCI id for the Intel 7221's integrated graphics controller. It isAlan Cox2007-09-151-0/+2
* Add support for G965/Q965/GM965/GME965/GME945 AGP.Eric Anholt2007-07-131-223/+305
* Add support for 945G/GM AGP chipsets.Eric Anholt2006-09-271-13/+29
* Fix breakage of CHIP_I855 in the last revision.Eric Anholt2006-06-271-3/+4
* Replace the three copies of the list of pci ids with a single centralized list.Eric Anholt2006-06-251-143/+122
* Add support for allocating one larger than page-sized contiguous block of memoryEric Anholt2006-05-161-26/+110
* Don't add an agp child in vgapci's attach routine if the PCIY_AGPJohn Baldwin2006-02-011-0/+10
* - Bump FreeBSD version for the hostb(4) and vgapci(4) drivers as well asJohn Baldwin2005-12-201-36/+4
* Add support for i915 GMCH AGP. This diff is a combination of work by myselfEric Anholt2005-12-021-31/+143
* Return BUS_PROBE_DEFAULT instead of 0.Warner Losh2005-02-241-1/+1
* Use VM_ALLOC_NOBUSY to eliminate an unneeded vm_page_wakeup() call and theAlan Cox2004-10-241-4/+1
* Add missing <sys/module.h> includesPoul-Henning Kamp2004-05-301-0/+1
* Get rid of a lockmgr consumer by making agp(4) use a standard mutex,Maxime Henrion2004-05-221-1/+0
* Push down the responsibility for zeroing a physical page from theAlan Cox2004-04-241-2/+0
* Add the ability to disable agp devices at the loader prompt. Usage isNate Lawson2004-04-031-0/+2
* Convert callers to the new bus_alloc_resource_any(9) API.Nate Lawson2004-03-171-2/+2
* Use a switch statement on the devid instead of if-else for determing whichJohn Baldwin2003-10-231-6/+18
* Make the i810 AGP device create a "drmsub" child device. This will be attachedEric Anholt2003-10-021-2/+31
* Prefer new location of pci include files (which have only been in theWarner Losh2003-08-221-2/+2
* Add vm object locking.Alan Cox2003-06-131-1/+8