lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Date:	Tue, 12 Aug 2008 01:18:27 +0100 (IST)
From:	Dave Airlie <airlied@...ux.ie>
To:	torvalds@...ux-foundation.org,
	Andrew Morton <akpm@...ux-foundation.org>
cc:	linux-kernel@...r.kernel.org
Subject: [git pull] agp patches for 2.6.27-rc3


Hi Linus,

Please pull the 'agp-patches' branch from
ssh://master.kernel.org/pub/scm/linux/kernel/git/airlied/agp-2.6.git agp-patches

I either decided to leave these in linux-next for a week and forgot about 
them or forgot about them in the first place. The biggest bit is better 
suspend/resume support for Intel AGP.

Dave.

 drivers/char/agp/agp.h          |    3 +
 drivers/char/agp/ali-agp.c      |   10 ++--
 drivers/char/agp/amd-k7-agp.c   |   10 ++--
 drivers/char/agp/amd64-agp.c    |   51 ++++++++++++++---------
 drivers/char/agp/ati-agp.c      |    7 +--
 drivers/char/agp/backend.c      |   28 ++++++++-----
 drivers/char/agp/generic.c      |   41 +++++++++++++++----
 drivers/char/agp/intel-agp.c    |   83 ++++++++++++++++++++++-----------------
 drivers/char/agp/isoch.c        |   37 +++++++++--------
 drivers/char/agp/sis-agp.c      |   17 ++++----
 drivers/char/agp/sworks-agp.c   |   25 ++++++------
 drivers/char/agp/uninorth-agp.c |   32 +++++++-------
 include/linux/agp_backend.h     |    5 ++
 13 files changed, 205 insertions(+), 144 deletions(-)

commit 91397585e3fb47b3900e17d70c6edc356e36bb46
Author: Krzysztof Helt <krzysztof.h1@...pl>
Date:   Wed Aug 6 18:48:45 2008 +0200

    agp: fix SIS 5591/5592 wrong PCI id
    
    The correct id is the id of the main host (5591) not
    the id of the PCI-to-PCI bridge AGP (0001).
    Output from "lspci -nv" shows that only the former
    has AGP capabilities flag set:
    
    00:00.0 0600: 1039:5591 (rev 02)
            Flags: bus master, medium devsel, latency 64
            Memory at ec000000 (32-bit, non-prefetchable) [size=32M]
            Capabilities: [c0] AGP version 1.0
    
    00:02.0 0604: 1039:0001 (prog-if 00 [Normal decode])
            Flags: bus master, fast devsel, latency 0
            Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
            I/O behind bridge: 0000c000-0000cfff
            Memory behind bridge: eb500000-eb5fffff
            Prefetchable memory behind bridge: eb300000-eb3fffff
    
    Signed-off-by: Krzysztof Helt <krzysztof.h1@...pl>
    Signed-off-by: Dave Airlie <airlied@...hat.com>

commit a8c84df9f71e4a7b14bdd41687a70d366c087eef
Author: Keith Packard <keithp@...thp.com>
Date:   Thu Jul 31 15:48:07 2008 +1000

    intel/agp: rewrite GTT on resume
    
    On my Intel chipset (965GM), the GTT is entirely erased across
    suspend/resume.  This patch simply re-plays the current mapping at resume
    time to restore the table.=20
    
    I noticed this once I started relying on persistent GTT mappings across VT
    switch in our GEM work -- the old X server and DRM code carefully unbind
    all memory from the GTT on VT switch, but GEM does not bother.
    
    I placed the list management and rewrite code in the generic layer on the
    assumption that it will be needed on other hardware, but I did not add the
    rewrite call to anything other than the Intel resume function.
    
    Keep a list of current GATT mappings.  At resume time, rewrite them into
    the GATT.  This is needed on Intel (at least) as the entire GATT is
    cleared across suspend/resume.
    
    [akpm@...ux-foundation.org: coding-style fixes]
    Signed-off-by: Keith Packard <keithp@...thp.com>
    Cc: Dave Jones <davej@...emonkey.org.uk>
    Cc: Andi Kleen <andi@...stfloor.org>
    Signed-off-by: Andrew Morton <akpm@...ux-foundation.org>
    Signed-off-by: Dave Airlie <airlied@...hat.com>

commit e3cf69511a2c5369c58f6fd6a065de152c3d4b22
Author: Bjorn Helgaas <bjorn.helgaas@...com>
Date:   Wed Jul 30 12:26:51 2008 -0700

    agp: use dev_printk when possible
    
    Convert printks to use dev_printk().
    
    Signed-off-by: Bjorn Helgaas <bjorn.helgaas@...com>
    Signed-off-by: Andrew Morton <akpm@...ux-foundation.org>
    Signed-off-by: Dave Airlie <airlied@...hat.com>

commit 55814b74c95a73dae6795e167294e6edc733aae9
Author: Bjorn Helgaas <bjorn.helgaas@...com>
Date:   Wed Jul 30 12:26:51 2008 -0700

    amd64-agp: run fallback when no bridges found, not when driver registration fails
    
    I think the intent was that if no bridges matched agp_amd64_pci_table[],
    we would fall back to checking for any bridge with the AGP capability.
    But in the current code, we execute the fallback path only when
    pci_register_driver() itself fails, which is unrelated to whether any
    matching devices were found.
    
    This patch counts the AGP bridges found in the probe() method and executes
    the fallback path when none is found.
    
    Signed-off-by: Bjorn Helgaas <bjorn.helgaas@...com>
    Signed-off-by: Andrew Morton <akpm@...ux-foundation.org>
    Signed-off-by: Dave Airlie <airlied@...hat.com>

commit 99d32bd5c7b1caa05d1fe3c89b08aabd459bc12a
Author: Zhenyu Wang <zhenyu.z.wang@...el.com>
Date:   Wed Jul 30 12:26:50 2008 -0700

    intel_agp: official name for GM45 chipset
    
    Signed-off-by: Zhenyu Wang <zhenyu.z.wang@...el.com>
    Cc: Dave Airlie <airlied@...ux.ie>
    Signed-off-by: Andrew Morton <akpm@...ux-foundation.org>
    Signed-off-by: Dave Airlie <airlied@...hat.com>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ