1. 20 5月, 2012 1 次提交
  2. 29 3月, 2012 1 次提交
  3. 17 1月, 2012 1 次提交
  4. 14 5月, 2011 1 次提交
  5. 04 2月, 2011 1 次提交
    • S
      agp: ensure GART has an address before enabling it · a70b95c0
      Stephen Kitt 提交于
      Some BIOSs (eg.  the AMI BIOS on the Asus P4P800 motherboard) don't
      initialise the GART address, and pcibios_assign_resources() can ignore it
      because it can be marked as a host bridge (see
      https://bugzilla.kernel.org/show_bug.cgi?id=24392#c5 for details).  This
      was handled correctly up to 2.6.35, but the pci_enable_device() cleanup in
      2.6.36 96576a9e ("agp: intel-agp: do not use PCI resources before
      pci_enable_device()") means that the kernel tries to enable the GART
      before assigning it an address; in such cases the GART overlaps with other
      device assignments and ends up being disabled.
      
      This patch fixes https://bugzilla.kernel.org/show_bug.cgi?id=24392
      
      Note that I imagine efficeon-agp.c probably has the same problem, but
      I can't test that and I'd like to make sure this patch is suitable for
      -stable (since 2.6.36 and 2.6.37 are affected).
      Signed-off-by: NStephen Kitt <steve@sk2.org>
      Cc: Bjorn Helgaas <bjorn.helgaas@hp.com>
      Cc: Maciej Rutecki <maciej.rutecki@gmail.com>
      Cc: "Rafael J. Wysocki" <rjw@sisk.pl>
      Cc: Kulikov Vasiliy <segooon@gmail.com>
      Cc: Florian Mickler <florian@mickler.org>
      Cc: <stable@kernel.org>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NDave Airlie <airlied@redhat.com>
      a70b95c0
  6. 15 1月, 2011 1 次提交
  7. 24 11月, 2010 1 次提交
  8. 19 10月, 2010 1 次提交
  9. 17 9月, 2010 1 次提交
  10. 09 9月, 2010 2 次提交
    • D
      agp/intel: make intel-gtt.c into a real source file · e2404e7c
      Daniel Vetter 提交于
      Now that the disentangling is complete, stop including intel-gtt.c
      from intel-agp.c.
      
      The linux build system _really_ doesn't allow .c source files with the
      same name as the module. It fails with the following message when trying
      to build such a bugger:
      
      make[3]: Circular drivers/char/agp/intel-agp.o <- drivers/char/agp/intel-agp.o dependency dropped.
      
      Instead of renameing intel-agp.c I've simply created a new module out
      of intel-gtt.c. Renaming intel-agp.ko to something else is not an option
      for it will surely kill someones boot process.
      
      This also paves the way to use the gtt code without loading the agp
      driver.
      Signed-off-by: NDaniel Vetter <daniel.vetter@ffwll.ch>
      Signed-off-by: NChris Wilson <chris@chris-wilson.co.uk>
      e2404e7c
    • D
      agp/intel: split out gmch/gtt probe, part 2 · 02c026ce
      Daniel Vetter 提交于
      This just splits the device list into two and moves the gtt related stuff
      to intel-gtt.c. The two new devices lists also lose the not longer needed
      fields. There where only about 5 cases anyway with both a gmch and a
      possible agp port, so the duplication of entries is rather small.
      Additionally kill 2 out of the three Ironlake mobile entries that
      only differed in host bridge pci id.
      Signed-off-by: NDaniel Vetter <daniel.vetter@ffwll.ch>
      Signed-off-by: NChris Wilson <chris@chris-wilson.co.uk>
      02c026ce
  11. 07 9月, 2010 2 次提交
  12. 22 8月, 2010 2 次提交
  13. 05 8月, 2010 1 次提交
  14. 02 8月, 2010 1 次提交
  15. 23 4月, 2010 1 次提交
    • J
      agp: use scratch page on memory remove and at GATT creation V4 · 61cf0593
      Jerome Glisse 提交于
      Convert most AGP chipset to use scratch page as default entries.
      This help avoiding GPU querying 0 address and trigger computer
      fault. With KMS and memory manager we bind/unbind AGP memory
      constantly and it seems that some GPU are still doing AGP
      traffic even after GPU report being idle with the memory segment.
      
      Tested (radeon GPU KMS + Xorg + compiz + glxgears + quake3) on :
      - SIS 1039:0001 & 1039:0003
      - Intel 865 8086:2571
      
      Compile tested for other bridges
      
      V2 enable scratch page on uninorth
      V3 fix unbound check in uninorth insert memory (Michel Dänzer)
      V4 rebase on top of drm-next branch with the lastest intel AGP
         changeset (stable should use version V3 of the patch)
      Signed-off-by: NJerome Glisse <jglisse@redhat.com>
      Signed-off-by: NMichel Dänzer <michel@daenzer.net>
      Signed-off-by: NDave Airlie <airlied@redhat.com>
      61cf0593
  16. 20 4月, 2010 1 次提交
  17. 19 4月, 2010 5 次提交
  18. 30 3月, 2010 1 次提交
    • T
      include cleanup: Update gfp.h and slab.h includes to prepare for breaking... · 5a0e3ad6
      Tejun Heo 提交于
      include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
      
      percpu.h is included by sched.h and module.h and thus ends up being
      included when building most .c files.  percpu.h includes slab.h which
      in turn includes gfp.h making everything defined by the two files
      universally available and complicating inclusion dependencies.
      
      percpu.h -> slab.h dependency is about to be removed.  Prepare for
      this change by updating users of gfp and slab facilities include those
      headers directly instead of assuming availability.  As this conversion
      needs to touch large number of source files, the following script is
      used as the basis of conversion.
      
        http://userweb.kernel.org/~tj/misc/slabh-sweep.py
      
      The script does the followings.
      
      * Scan files for gfp and slab usages and update includes such that
        only the necessary includes are there.  ie. if only gfp is used,
        gfp.h, if slab is used, slab.h.
      
      * When the script inserts a new include, it looks at the include
        blocks and try to put the new include such that its order conforms
        to its surrounding.  It's put in the include block which contains
        core kernel includes, in the same order that the rest are ordered -
        alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
        doesn't seem to be any matching order.
      
      * If the script can't find a place to put a new include (mostly
        because the file doesn't have fitting include block), it prints out
        an error message indicating which .h file needs to be added to the
        file.
      
      The conversion was done in the following steps.
      
      1. The initial automatic conversion of all .c files updated slightly
         over 4000 files, deleting around 700 includes and adding ~480 gfp.h
         and ~3000 slab.h inclusions.  The script emitted errors for ~400
         files.
      
      2. Each error was manually checked.  Some didn't need the inclusion,
         some needed manual addition while adding it to implementation .h or
         embedding .c file was more appropriate for others.  This step added
         inclusions to around 150 files.
      
      3. The script was run again and the output was compared to the edits
         from #2 to make sure no file was left behind.
      
      4. Several build tests were done and a couple of problems were fixed.
         e.g. lib/decompress_*.c used malloc/free() wrappers around slab
         APIs requiring slab.h to be added manually.
      
      5. The script was run on all .h files but without automatically
         editing them as sprinkling gfp.h and slab.h inclusions around .h
         files could easily lead to inclusion dependency hell.  Most gfp.h
         inclusion directives were ignored as stuff from gfp.h was usually
         wildly available and often used in preprocessor macros.  Each
         slab.h inclusion directive was examined and added manually as
         necessary.
      
      6. percpu.h was updated not to include slab.h.
      
      7. Build test were done on the following configurations and failures
         were fixed.  CONFIG_GCOV_KERNEL was turned off for all tests (as my
         distributed build env didn't work with gcov compiles) and a few
         more options had to be turned off depending on archs to make things
         build (like ipr on powerpc/64 which failed due to missing writeq).
      
         * x86 and x86_64 UP and SMP allmodconfig and a custom test config.
         * powerpc and powerpc64 SMP allmodconfig
         * sparc and sparc64 SMP allmodconfig
         * ia64 SMP allmodconfig
         * s390 SMP allmodconfig
         * alpha SMP allmodconfig
         * um on x86_64 SMP allmodconfig
      
      8. percpu.h modifications were reverted so that it could be applied as
         a separate patch and serve as bisection point.
      
      Given the fact that I had only a couple of failures from tests on step
      6, I'm fairly confident about the coverage of this conversion patch.
      If there is a breakage, it's likely to be something in one of the arch
      headers which should be easily discoverable easily on most builds of
      the specific arch.
      Signed-off-by: NTejun Heo <tj@kernel.org>
      Guess-its-ok-by: NChristoph Lameter <cl@linux-foundation.org>
      Cc: Ingo Molnar <mingo@redhat.com>
      Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
      5a0e3ad6
  19. 26 3月, 2010 1 次提交
  20. 19 3月, 2010 2 次提交
  21. 27 2月, 2010 5 次提交
  22. 23 2月, 2010 1 次提交
  23. 09 2月, 2010 1 次提交
  24. 23 1月, 2010 1 次提交
  25. 16 1月, 2010 1 次提交
  26. 08 12月, 2009 2 次提交
  27. 19 11月, 2009 1 次提交