1. 29 10月, 2005 3 次提交
  2. 22 9月, 2005 2 次提交
  3. 18 9月, 2005 3 次提交
  4. 10 9月, 2005 1 次提交
    • R
      [PATCH] PCI: Fix PCI bus mastering enable problem in pciehp · 7c56075e
      Rajesh Shah 提交于
      Martin Franc reported that the pciehp driver was not enabling bus
      master capability on his hot-plugged card. pciehprm_enable_card()
      was updating the PCI command register only if _HPP indicated a
      value for SERR or PERR that was different from the current setting.
      I don't have hardware that reproduces this problem, but Martin
      reports that this patch fixes the problem for him.
      Signed-off-by: NRajesh Shah <rajesh.shah@intel.com>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
      From rzarev@its.caltech.edu Tue Sep  6 18:29:50 2005
      Date: Tue, 6 Sep 2005 13:39:32 -0700 (PDT)
      From: Rumen Ivanov Zarev <rzarev@its.caltech.edu>
      Message-Id: <200509062039.j86KdWMr014934@inky.its.caltech.edu>
      To: gregkh@suse.de
      Subject: PCI: Unhide SMBus on Compaq Evo N620c
      Cc: linux-kernel@vger.kernel.org
      
      Trivial patch against 2.6.13 to unhide SMBus on Compaq Evo N620c laptop using
      Intel 82855PM chipset.
      Signed-off-by: NRumen Zarev <rzarev@caltech.edu>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
      
      ---
       drivers/pci/quirks.c |    6 ++++++
       1 file changed, 6 insertions(+)
      
      --- gregkh-2.6.orig/drivers/pci/quirks.c	2005-09-09 10:28:55.000000000 -0700
      +++ gregkh-2.6/drivers/pci/quirks.c	2005-09-09 13:51:44.000000000 -0700
      @@ -876,6 +876,12 @@ static void __init asus_hides_smbus_host
                              case 0xC00C: /* Samsung P35 notebook */
                                      asus_hides_smbus = 1;
                              }
      +	} else if (unlikely(dev->subsystem_vendor == PCI_VENDOR_ID_COMPAQ)) {
      +		if (dev->device == PCI_DEVICE_ID_INTEL_82855PM_HB)
      +			switch(dev->subsystem_device) {
      +			case 0x0058: /* Compaq Evo N620c */
      +				asus_hides_smbus = 1;
      +			}
       	}
       }
       DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL,	PCI_DEVICE_ID_INTEL_82845_HB,	asus_hides_smbus_hostbridge );
      7c56075e
  5. 09 9月, 2005 9 次提交
  6. 25 8月, 2005 1 次提交
  7. 17 8月, 2005 1 次提交
  8. 07 7月, 2005 1 次提交
  9. 28 6月, 2005 7 次提交
  10. 21 6月, 2005 2 次提交
  11. 09 6月, 2005 1 次提交
  12. 01 6月, 2005 3 次提交
  13. 18 5月, 2005 3 次提交
    • S
      [PATCH] PCI Hotplug: CPCI update · 43b7d7cf
      Scott Murray 提交于
      [PATCH] CPCI: update
      
      I have finally done some work to update the CompactPCI hotplug driver to
      fix some of the outstanding issues in 2.6:
      - Added adapter and latch status ops so that those files will get created
        by the current PCI hotplug core.  This used to not be required, but
        seems to be now after some of the sysfs rework in the core.
      - Replaced slot list spinlock with a r/w semaphore to avoid any potential
        issues with sleeping.  This quiets all of the runtime warnings.
      - Reworked interrupt driven hot extraction handling to remove need for a
        polling operator for ENUM# status.  There are a lot of boards that only
        have an interrupt driven by ENUM#, so this lowers the bar to entry.
      - Replaced pci_visit_dev usage with better use of the PCI core functions.
        The new code is functionally equivalent to the previous code, but the
        use of pci_enable_device on insert needs to be investigated further, as
        I need to do some more testing to see if it is still necessary.
      Signed-off-by: NScott Murray <scottm@somanetworks.com>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
      43b7d7cf
    • D
      [PATCH] PCI Hotplug: get pciehp to work on the downstream port of a switch · 8b245e45
      Dely Sy 提交于
      Here is the updated patch to get pciehp driver to work for downstream
      port of a switch and handle the difference in the offset value of PCI
      Express capability list item of different ports.
      Signed-off-by: NDely Sy <dely.l.sy@intel.com>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
      8b245e45
    • D
      [PATCH] PCI Hotplug: Fix echoing 1 to power file of enabled slot problem with SHPC driver · ee17fd93
      Dely Sy 提交于
      Here is a patch to fix the problem of echoing 1 to "power" file
      to enabled slot causing the slot to power down, and echoing 0
      to disabled slot causing shpchp_disabled_slot() to be called
      twice. This problem was reported by kenji Kaneshige.
      
      Thanks,
      Dely
      Signed-off-by: NDely Sy <dely.l.sy@intel.com>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
      ee17fd93
  14. 04 5月, 2005 3 次提交