diff options
author | Tejun Heo <tj@kernel.org> | 2009-09-22 04:34:48 -0400 |
---|---|---|
committer | Jesse Barnes <jbarnes@virtuousgeek.org> | 2009-11-04 11:47:11 -0500 |
commit | 15ea76d407d560f985224b65fe59c9db01692a0d (patch) | |
tree | dd9dd1cd4cab4bff26c34853a1c67898e8500243 /drivers/pci/pci.c | |
parent | 4c0eec7a86303ce6e3edf7825d0ef1d414e76767 (diff) |
pccard: configure CLS on attach
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 <tj@kernel.org>
Cc: Daniel Ritz <daniel.ritz@gmx.ch>
Cc: Dominik Brodowski <linux@dominikbrodowski.net>
Cc: Greg KH <greg@kroah.com>
Cc: Kenji Kaneshige <kaneshige.kenji@jp.fujitsu.com>
Cc: Axel Birndt <towerlexa@gmx.de>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Diffstat (limited to 'drivers/pci/pci.c')
-rw-r--r-- | drivers/pci/pci.c | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c index 01337b7a215f..d1afbae5b1fb 100644 --- a/drivers/pci/pci.c +++ b/drivers/pci/pci.c | |||
@@ -1875,23 +1875,6 @@ void pci_clear_master(struct pci_dev *dev) | |||
1875 | __pci_set_master(dev, false); | 1875 | __pci_set_master(dev, false); |
1876 | } | 1876 | } |
1877 | 1877 | ||
1878 | #ifdef PCI_DISABLE_MWI | ||
1879 | int pci_set_mwi(struct pci_dev *dev) | ||
1880 | { | ||
1881 | return 0; | ||
1882 | } | ||
1883 | |||
1884 | int pci_try_set_mwi(struct pci_dev *dev) | ||
1885 | { | ||
1886 | return 0; | ||
1887 | } | ||
1888 | |||
1889 | void pci_clear_mwi(struct pci_dev *dev) | ||
1890 | { | ||
1891 | } | ||
1892 | |||
1893 | #else | ||
1894 | |||
1895 | /** | 1878 | /** |
1896 | * pci_set_cacheline_size - ensure the CACHE_LINE_SIZE register is programmed | 1879 | * pci_set_cacheline_size - ensure the CACHE_LINE_SIZE register is programmed |
1897 | * @dev: the PCI device for which MWI is to be enabled | 1880 | * @dev: the PCI device for which MWI is to be enabled |
@@ -1902,13 +1885,12 @@ void pci_clear_mwi(struct pci_dev *dev) | |||
1902 | * | 1885 | * |
1903 | * RETURNS: An appropriate -ERRNO error value on error, or zero for success. | 1886 | * RETURNS: An appropriate -ERRNO error value on error, or zero for success. |
1904 | */ | 1887 | */ |
1905 | static int | 1888 | int pci_set_cacheline_size(struct pci_dev *dev) |
1906 | pci_set_cacheline_size(struct pci_dev *dev) | ||
1907 | { | 1889 | { |
1908 | u8 cacheline_size; | 1890 | u8 cacheline_size; |
1909 | 1891 | ||
1910 | if (!pci_cache_line_size) | 1892 | if (!pci_cache_line_size) |
1911 | return -EINVAL; /* The system doesn't support MWI. */ | 1893 | return -EINVAL; |
1912 | 1894 | ||
1913 | /* Validate current setting: the PCI_CACHE_LINE_SIZE must be | 1895 | /* Validate current setting: the PCI_CACHE_LINE_SIZE must be |
1914 | equal to or multiple of the right value. */ | 1896 | equal to or multiple of the right value. */ |
@@ -1929,6 +1911,24 @@ pci_set_cacheline_size(struct pci_dev *dev) | |||
1929 | 1911 | ||
1930 | return -EINVAL; | 1912 | return -EINVAL; |
1931 | } | 1913 | } |
1914 | EXPORT_SYMBOL_GPL(pci_set_cacheline_size); | ||
1915 | |||
1916 | #ifdef PCI_DISABLE_MWI | ||
1917 | int pci_set_mwi(struct pci_dev *dev) | ||
1918 | { | ||
1919 | return 0; | ||
1920 | } | ||
1921 | |||
1922 | int pci_try_set_mwi(struct pci_dev *dev) | ||
1923 | { | ||
1924 | return 0; | ||
1925 | } | ||
1926 | |||
1927 | void pci_clear_mwi(struct pci_dev *dev) | ||
1928 | { | ||
1929 | } | ||
1930 | |||
1931 | #else | ||
1932 | 1932 | ||
1933 | /** | 1933 | /** |
1934 | * pci_set_mwi - enables memory-write-invalidate PCI transaction | 1934 | * pci_set_mwi - enables memory-write-invalidate PCI transaction |