1. 25 3月, 2010 4 次提交
  2. 07 3月, 2010 1 次提交
  3. 23 2月, 2010 2 次提交
  4. 05 2月, 2010 1 次提交
    • A
      CS5536: apply pci quirk for BIOS SMBUS bug · 73d2eaac
      Andres Salomon 提交于
      The new cs5535-* drivers use PCI header config info rather than MSRs to
      determine the memory region to use for things like GPIOs and MFGPTs.  As
      anticipated, we've run into a buggy BIOS:
      
      [    0.081818] pci 0000:00:14.0: reg 10: [io  0x6000-0x7fff]
      [    0.081906] pci 0000:00:14.0: reg 14: [io  0x6100-0x61ff]
      [    0.082015] pci 0000:00:14.0: reg 18: [io  0x6200-0x63ff]
      [    0.082917] pci 0000:00:14.2: reg 20: [io  0xe000-0xe00f]
      [    0.083551] pci 0000:00:15.0: reg 10: [mem 0xa0010000-0xa0010fff]
      [    0.084436] pci 0000:00:15.1: reg 10: [mem 0xa0011000-0xa0011fff]
      [    0.088816] PCI: pci_cache_line_size set to 32 bytes
      [    0.088938] pci 0000:00:14.0: address space collision: [io 0x6100-0x61ff] already in use
      [    0.089052] pci 0000:00:14.0: can't reserve [io  0x6100-0x61ff]
      
      This is a Soekris board, and its BIOS sets the size of the PCI ISA bridge
      device's BAR0 to 8k.  In reality, it should be 8 bytes (BAR0 is used for
      SMBus stuff).  This quirk checks for an incorrect size, and resets it
      accordingly.
      Signed-off-by: NAndres Salomon <dilinger@collabora.co.uk>
      Tested-by: NLeigh Porter <leigh@leighporter.org>
      Tested-by: NJens Rottmann <JRottmann@LiPPERTEmbedded.de>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      73d2eaac
  5. 01 1月, 2010 2 次提交
  6. 17 12月, 2009 4 次提交
  7. 05 11月, 2009 3 次提交
  8. 16 10月, 2009 1 次提交
  9. 12 10月, 2009 3 次提交
  10. 08 10月, 2009 1 次提交
  11. 15 9月, 2009 1 次提交
  12. 11 9月, 2009 1 次提交
  13. 10 9月, 2009 4 次提交
  14. 30 6月, 2009 1 次提交
    • A
      PCI: More PATA quirks for not entering D3 · 7a661c6f
      Alan Cox 提交于
      The ALi loses some state if it goes into D3. Unfortunately even with the
      chipset documents I can't figure out how to restore some bits of it.
      
      The VIA one saves/restores apparently fine but the ACPI _GTM methods break
      on some platforms if we do this and this causes cable misdetections.
      
      These are both effectively regressions as historically nothing matched the
      devices and then decided not to bind to them. Nowdays something is binding
      to all sorts of devices and a result they get dumped into D3.
      Signed-off-by: NAlan Cox <alan@linux.intel.com>
      Acked-by: NJeff Garzik <jeff@garzik.org>
      Signed-off-by: NJesse Barnes <jbarnes@virtuousgeek.org>
      7a661c6f
  15. 17 6月, 2009 2 次提交
  16. 12 6月, 2009 1 次提交
  17. 07 5月, 2009 1 次提交
  18. 23 4月, 2009 1 次提交
  19. 07 4月, 2009 2 次提交
  20. 31 3月, 2009 1 次提交
  21. 27 3月, 2009 1 次提交
  22. 21 3月, 2009 2 次提交
    • D
      PCI: Compaq Evo D510 SMBus quirk using USB instead of VGA · 8293b0f6
      David O'Shea 提交于
      On the Compaq Evo D510 SFF/CMT, a PCI quirk activated the SMBus device
      based on detection of the on-board VGA controller, but the on-board
      VGA is disabled if an AGP card is inserted, so look for one of the USB
      controllers instead.
      Signed-off-by: NDavid O'Shea <dcoshea@hotmail.com>
      Signed-off-by: NJean Delvare <khali@linux-fr.org>
      Signed-off-by: NJesse Barnes <jbarnes@virtuousgeek.org>
      8293b0f6
    • Y
      PCI: allow assignment of memory resources with a specified alignment · 32a9a682
      Yuji Shimada 提交于
      This patch allows memory resources to be assigned with a specified
      alignment at boot-time or run-time. The patch is useful when we use PCI
      pass-through, because page-aligned memory resources are required to
      securely share PCI resources with guest drivers.
      
      If you want to assign the resource at boot time, please set
      "pci=resource_alignment=" boot parameter.
      
      This is format of "pci=resource_alignment=" boot parameter:
      
              [<order of align>@][<domain>:]<bus>:<slot>.<func>[; ...]
                      Specifies alignment and device to reassign
                      aligned memory resources.
                      If <order of align> is not specified, PAGE_SIZE is
                      used as alignment.
                      PCI-PCI bridge can be specified, if resource
                      windows need to be expanded.
      
      This is example:
      
              pci=resource_alignment=20@07:00.0;18@0f:00.0;00:1d.7
      
      If you want to assign the resource at run-time, please set
      "/sys/bus/pci/resource_alignment" file, and hot-remove the device and
      hot-add the device.  For this purpose, fakephp or PCI hotplug interfaces
      can be used.
      
      The format of "/sys/bus/pci/resource_alignment" file is the same with
      boot parameter. You can use "," instead of ";".
      
      For example:
      
              # cd /sys/bus/pci
              # echo -n 20@12:00.0 > resource_alignment
              # echo 1 > devices/0000:12:00.0/remove
              # echo 1 > rescan
      Reviewed-by: NAlex Chiang <achiang@hp.com>
      Reviewed-by: NYu Zhao <yu.zhao@intel.com>
      Signed-off-by: NYuji Shimada <shimada-yxb@necst.nec.co.jp>
      Signed-off-by: NJesse Barnes <jbarnes@virtuousgeek.org>
      32a9a682