22 Nov, 2019

1 commit

  • Include cs_internal.h (and pcmcia/cistpl.h as required by
    cs_internal.h) for the declearions of cb_alloc and cb_free
    to silence the following sparse warnings:

    drivers/pcmcia/cardbus.c:64:11: warning: symbol 'cb_alloc' was not declared. Should it be static?
    drivers/pcmcia/cardbus.c:103:6: warning: symbol 'cb_free' was not declared. Should it be static?

    Signed-off-by: Ben Dooks
    Signed-off-by: Dominik Brodowski

    Ben Dooks (Codethink)
     

19 Jun, 2019

1 commit

  • Based on 2 normalized pattern(s):

    this program is free software you can redistribute it and or modify
    it under the terms of the gnu general public license version 2 as
    published by the free software foundation

    this program is free software you can redistribute it and or modify
    it under the terms of the gnu general public license version 2 as
    published by the free software foundation #

    extracted by the scancode license scanner the SPDX license identifier

    GPL-2.0-only

    has been chosen to replace the boilerplate/reference in 4122 file(s).

    Signed-off-by: Thomas Gleixner
    Reviewed-by: Enrico Weigelt
    Reviewed-by: Kate Stewart
    Reviewed-by: Allison Randal
    Cc: linux-spdx@vger.kernel.org
    Link: https://lkml.kernel.org/r/20190604081206.933168790@linutronix.de
    Signed-off-by: Greg Kroah-Hartman

    Thomas Gleixner
     

07 Nov, 2017

1 commit

  • The following pattern is often used:

    list_for_each_entry(dev, &bus->devices, bus_list) {
    if (pci_is_bridge(dev)) {
    ...
    }
    }

    Add a for_each_pci_bridge() helper to make that code easier to write and
    read by reducing indentation level. It also saves one or few lines of code
    in each occurrence.

    Convert PCI core parts here at the same time.

    Signed-off-by: Andy Shevchenko
    [bhelgaas: fold in http://lkml.kernel.org/r/20171013165352.25550-1-andriy.shevchenko@linux.intel.com]
    Signed-off-by: Bjorn Helgaas

    Andy Shevchenko
     

28 May, 2014

1 commit


15 Jan, 2014

1 commit

  • Multiple race conditions are possible between the cardbus PCI device
    addition and removal and the generic PCI bus rescan and device removal that
    can be triggered via sysfs.

    To avoid those race conditions make the cardbus code use global PCI
    rescan-remove locking.

    Signed-off-by: Rafael J. Wysocki
    Signed-off-by: Bjorn Helgaas

    Rafael J. Wysocki
     

26 Jul, 2013

1 commit

  • We currently enable PCI bridges after scanning a bus and assigning
    resources. This is often done in arch code.

    This patch changes this so we don't enable a bridge until necessary, i.e.,
    until we enable a PCI device behind the bridge. We do this in the generic
    pci_enable_device() path, so this also removes the arch-specific code to
    enable bridges.

    [bhelgaas: changelog]
    Signed-off-by: Yinghai Lu
    Signed-off-by: Bjorn Helgaas

    Yinghai Lu
     

23 Aug, 2012

1 commit

  • Use pci_stop_and_remove_bus_device() like most other hotplug drivers
    rather than the special-purpose "behind_bridge" variant. This just
    means we have to iterate through all the devices downstream of the
    bridge ourselves, which is the same thing pci_stop_behind_bridge()
    did.

    Signed-off-by: Bjorn Helgaas
    Acked-by: Yinghai Lu

    Bjorn Helgaas
     

14 Jun, 2012

1 commit


28 Feb, 2012

1 commit


10 May, 2010

1 commit


03 Mar, 2010

1 commit

  • Fix most of the remaining CodingStyle issues in drivers/pcmcia , which
    related to wrong indent -- PCMCIA historically used 4 spaces. Also, remove
    a custom min() implementation with the generic one.

    Signed-off-by: Dominik Brodowski

    Dominik Brodowski
     

18 Jan, 2010

1 commit

  • At least no in-kernel CardBus-capable PCI driver makes use of the CIS
    access functions. Therefore, it seems sensible to remove this unused
    code, and cleanup cardbus.c a lot.

    CC: Jesse Barnes
    CC: Linus Torvalds
    Tested-by: Wolfram Sang
    Signed-off-by: Dominik Brodowski

    Dominik Brodowski
     

17 Dec, 2009

1 commit

  • The cardbus code creates PCI devices without ever going through the
    necessary fixup bits and pieces that normal PCI devices go through.

    There's in fact a commented out call to pcibios_fixup_bus() in there,
    it's commented because ... it doesn't work.

    I could make pcibios_fixup_bus() do the right thing on powerpc easily
    but I felt it cleaner instead to provide a specific hook pci_fixup_cardbus
    for which a weak empty implementation is provided by the PCI core.

    This fixes cardbus on powerbooks and probably all other PowerPC
    platforms which was broken completely for ever on some platforms and
    since 2.6.31 on others such as PowerBooks when we made the DMA ops
    mandatory (since those are setup by the fixups).

    Acked-by: Dominik Brodowski
    Signed-off-by: Benjamin Herrenschmidt
    Signed-off-by: Jesse Barnes

    Benjamin Herrenschmidt
     

15 Dec, 2009

1 commit


12 Dec, 2009

1 commit

  • * 'linux-next' of git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6: (109 commits)
    PCI: fix coding style issue in pci_save_state()
    PCI: add pci_request_acs
    PCI: fix BUG_ON triggered by logical PCIe root port removal
    PCI: remove ifdefed pci_cleanup_aer_correct_error_status
    PCI: unconditionally clear AER uncorr status register during cleanup
    x86/PCI: claim SR-IOV BARs in pcibios_allocate_resource
    PCI: portdrv: remove redundant definitions
    PCI: portdrv: remove unnecessary struct pcie_port_data
    PCI: portdrv: minor cleanup for pcie_port_device_register
    PCI: portdrv: add missing irq cleanup
    PCI: portdrv: enable device before irq initialization
    PCI: portdrv: cleanup service irqs initialization
    PCI: portdrv: check capabilities first
    PCI: portdrv: move PME capability check
    PCI: portdrv: remove redundant pcie type calculation
    PCI: portdrv: cleanup pcie_device registration
    PCI: portdrv: remove redundant pcie_port_device_probe
    PCI: Always set prefetchable base/limit upper32 registers
    PCI: read-modify-write the pcie device control register when initiating pcie flr
    PCI: show dma_mask bits in /sys
    ...

    Fixed up conflicts in:
    arch/x86/kernel/amd_iommu_init.c
    drivers/pci/dmar.c
    drivers/pci/hotplug/acpiphp_glue.c

    Linus Torvalds
     

08 Dec, 2009

1 commit

  • Fix several CodingStyle issues in drivers/pcmcia/ . checkpatch.pl no longer
    reports errors in the PCMCIA core. The remaining warnings mostly relate to
    wrong indent -- PCMCIA historically used 4 spaces --, to lines over 80
    characters and to hundreds of typedefs. The cleanup of those will follow
    in the future.

    Signed-off-by: Dominik Brodowski

    Dominik Brodowski
     

09 Nov, 2009

1 commit

  • Use the generic "dynamic debug" infrastructure instead of
    CONIG_PCMCIA_DEBUG in the PCMCIA core (pcmcia.ko and pcmcia_core.ko). To
    enable debugging, enable CONFIG_DYNAMIC_DEBUG, mount debugfs and

    $ echo -n 'module pcmcia_core +p' > /sys/kernel/debug/dynamic_debug/control

    for the complete module "pcmcia_core", for example. For more detailled
    instructions, please see Documentation/dynamic-debug-howto.txt

    Signed-off-by: Dominik Brodowski

    Dominik Brodowski
     

05 Nov, 2009

1 commit

  • For non hotplug PCI devices, the system firmware usually configures
    CLS correctly. For pccard devices system firmware can't do it and
    Linux PCI layer doesn't do it either. Unfortunately this leads to
    poor performance for certain devices (sata_sil). Unless MWI, which
    requires separate configuration, is to be used, CLS doesn't affect
    correctness, so the configuration should be harmless.

    This patch makes pci_set_cacheline_size() always built and export it
    and make pccard call it during attach.

    Please note that some other PCI hotplug drivers (shpchp and pciehp)
    also configure CLS on hotplug.

    Signed-off-by: Tejun Heo
    Cc: Daniel Ritz
    Cc: Dominik Brodowski
    Cc: Greg KH
    Cc: Kenji Kaneshige
    Cc: Axel Birndt
    Signed-off-by: Jesse Barnes

    Tejun Heo
     

23 Aug, 2008

1 commit

  • Instead of using own error or success codes, the PCMCIA code should rely on
    the generic return values. Therefore, replace all occurrences of CS_SUCCESS
    with 0.

    CC: netdev@vger.kernel.org
    Signed-off-by: Dominik Brodowski

    Dominik Brodowski
     

24 Jun, 2008

2 commits

  • IN_CARD_SERVICES was #define'd but not used, so let's remove it.

    Signed-off-by: Adrian Bunk
    Signed-off-by: Dominik Brodowski

    Adrian Bunk
     
  • The code in include/pcmcia/bulkmem.h was only kept for compatibility reasons.
    Therefore, move the remaining region_info_t definition to ds.h

    [linux@dominikbrodowski.net: do not modify the IOCTL, move definition to
    ds.h, and update changelog]
    Signed-off-by: Magnus Damm
    Signed-off-by: Dominik Brodowski

    Magnus Damm
     

01 May, 2008

1 commit

  • cb_alloc() uses a function (pci_scan_slot) that will be annotated __devinit.

    Annotate cb_alloc() with __ref to tell modpost to ignore this reference.

    Signed-off-by: Sam Ravnborg
    Cc: Dominik Brodowski
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Sam Ravnborg