Shannon Nelson | 7589670 | 2007-10-16 01:27:41 -0700 | [diff] [blame] | 1 | /* |
Maciej Sosnowski | 211a22c | 2009-02-26 11:05:43 +0100 | [diff] [blame] | 2 | * Copyright(c) 2007 - 2009 Intel Corporation. All rights reserved. |
Shannon Nelson | 7589670 | 2007-10-16 01:27:41 -0700 | [diff] [blame] | 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify it |
| 5 | * under the terms of the GNU General Public License as published by the Free |
| 6 | * Software Foundation; either version 2 of the License, or (at your option) |
| 7 | * any later version. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, but WITHOUT |
| 10 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 11 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 12 | * more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License along with |
| 15 | * this program; if not, write to the Free Software Foundation, Inc., 59 |
| 16 | * Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
| 17 | * |
| 18 | * The full GNU General Public License is included in this distribution in the |
| 19 | * file called COPYING. |
| 20 | */ |
| 21 | |
| 22 | /* |
| 23 | * This driver supports an interface for DCA clients and providers to meet. |
| 24 | */ |
| 25 | |
| 26 | #include <linux/kernel.h> |
| 27 | #include <linux/notifier.h> |
| 28 | #include <linux/device.h> |
| 29 | #include <linux/dca.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 30 | #include <linux/slab.h> |
Paul Gortmaker | d229807 | 2011-07-03 13:37:11 -0400 | [diff] [blame] | 31 | #include <linux/module.h> |
Shannon Nelson | 7589670 | 2007-10-16 01:27:41 -0700 | [diff] [blame] | 32 | |
Maciej Sosnowski | 1a5aeee | 2009-09-10 15:05:58 +0200 | [diff] [blame] | 33 | #define DCA_VERSION "1.12.1" |
Shannon Nelson | 7589670 | 2007-10-16 01:27:41 -0700 | [diff] [blame] | 34 | |
Maciej Sosnowski | 7f1b358 | 2008-07-22 17:30:57 -0700 | [diff] [blame] | 35 | MODULE_VERSION(DCA_VERSION); |
| 36 | MODULE_LICENSE("GPL"); |
| 37 | MODULE_AUTHOR("Intel Corporation"); |
Shannon Nelson | 7589670 | 2007-10-16 01:27:41 -0700 | [diff] [blame] | 38 | |
Mike Galbraith | a1741e7 | 2010-07-07 10:29:01 +0200 | [diff] [blame] | 39 | static DEFINE_RAW_SPINLOCK(dca_lock); |
Shannon Nelson | 7589670 | 2007-10-16 01:27:41 -0700 | [diff] [blame] | 40 | |
Maciej Sosnowski | 1a5aeee | 2009-09-10 15:05:58 +0200 | [diff] [blame] | 41 | static LIST_HEAD(dca_domains); |
| 42 | |
Sosnowski, Maciej | 4e8cec2 | 2010-09-16 06:02:26 +0000 | [diff] [blame] | 43 | static BLOCKING_NOTIFIER_HEAD(dca_provider_chain); |
| 44 | |
| 45 | static int dca_providers_blocked; |
| 46 | |
Maciej Sosnowski | 1a5aeee | 2009-09-10 15:05:58 +0200 | [diff] [blame] | 47 | static struct pci_bus *dca_pci_rc_from_dev(struct device *dev) |
| 48 | { |
| 49 | struct pci_dev *pdev = to_pci_dev(dev); |
| 50 | struct pci_bus *bus = pdev->bus; |
| 51 | |
| 52 | while (bus->parent) |
| 53 | bus = bus->parent; |
| 54 | |
| 55 | return bus; |
| 56 | } |
| 57 | |
| 58 | static struct dca_domain *dca_allocate_domain(struct pci_bus *rc) |
| 59 | { |
| 60 | struct dca_domain *domain; |
| 61 | |
| 62 | domain = kzalloc(sizeof(*domain), GFP_NOWAIT); |
| 63 | if (!domain) |
| 64 | return NULL; |
| 65 | |
| 66 | INIT_LIST_HEAD(&domain->dca_providers); |
| 67 | domain->pci_rc = rc; |
| 68 | |
| 69 | return domain; |
| 70 | } |
| 71 | |
| 72 | static void dca_free_domain(struct dca_domain *domain) |
| 73 | { |
| 74 | list_del(&domain->node); |
| 75 | kfree(domain); |
| 76 | } |
| 77 | |
Sosnowski, Maciej | 4e8cec2 | 2010-09-16 06:02:26 +0000 | [diff] [blame] | 78 | static int dca_provider_ioat_ver_3_0(struct device *dev) |
| 79 | { |
| 80 | struct pci_dev *pdev = to_pci_dev(dev); |
| 81 | |
| 82 | return ((pdev->vendor == PCI_VENDOR_ID_INTEL) && |
| 83 | ((pdev->device == PCI_DEVICE_ID_INTEL_IOAT_TBG0) || |
| 84 | (pdev->device == PCI_DEVICE_ID_INTEL_IOAT_TBG1) || |
| 85 | (pdev->device == PCI_DEVICE_ID_INTEL_IOAT_TBG2) || |
| 86 | (pdev->device == PCI_DEVICE_ID_INTEL_IOAT_TBG3) || |
| 87 | (pdev->device == PCI_DEVICE_ID_INTEL_IOAT_TBG4) || |
| 88 | (pdev->device == PCI_DEVICE_ID_INTEL_IOAT_TBG5) || |
| 89 | (pdev->device == PCI_DEVICE_ID_INTEL_IOAT_TBG6) || |
| 90 | (pdev->device == PCI_DEVICE_ID_INTEL_IOAT_TBG7))); |
| 91 | } |
| 92 | |
| 93 | static void unregister_dca_providers(void) |
| 94 | { |
| 95 | struct dca_provider *dca, *_dca; |
| 96 | struct list_head unregistered_providers; |
| 97 | struct dca_domain *domain; |
| 98 | unsigned long flags; |
| 99 | |
| 100 | blocking_notifier_call_chain(&dca_provider_chain, |
| 101 | DCA_PROVIDER_REMOVE, NULL); |
| 102 | |
| 103 | INIT_LIST_HEAD(&unregistered_providers); |
| 104 | |
Mike Galbraith | a1741e7 | 2010-07-07 10:29:01 +0200 | [diff] [blame] | 105 | raw_spin_lock_irqsave(&dca_lock, flags); |
Sosnowski, Maciej | 4e8cec2 | 2010-09-16 06:02:26 +0000 | [diff] [blame] | 106 | |
| 107 | if (list_empty(&dca_domains)) { |
Mike Galbraith | a1741e7 | 2010-07-07 10:29:01 +0200 | [diff] [blame] | 108 | raw_spin_unlock_irqrestore(&dca_lock, flags); |
Sosnowski, Maciej | 4e8cec2 | 2010-09-16 06:02:26 +0000 | [diff] [blame] | 109 | return; |
| 110 | } |
| 111 | |
| 112 | /* at this point only one domain in the list is expected */ |
| 113 | domain = list_first_entry(&dca_domains, struct dca_domain, node); |
Sosnowski, Maciej | 4e8cec2 | 2010-09-16 06:02:26 +0000 | [diff] [blame] | 114 | |
Kirill A. Shutemov | 3bb598f | 2011-03-22 16:34:18 -0700 | [diff] [blame] | 115 | list_for_each_entry_safe(dca, _dca, &domain->dca_providers, node) |
| 116 | list_move(&dca->node, &unregistered_providers); |
Sosnowski, Maciej | 4e8cec2 | 2010-09-16 06:02:26 +0000 | [diff] [blame] | 117 | |
| 118 | dca_free_domain(domain); |
| 119 | |
Mike Galbraith | a1741e7 | 2010-07-07 10:29:01 +0200 | [diff] [blame] | 120 | raw_spin_unlock_irqrestore(&dca_lock, flags); |
Sosnowski, Maciej | 4e8cec2 | 2010-09-16 06:02:26 +0000 | [diff] [blame] | 121 | |
| 122 | list_for_each_entry_safe(dca, _dca, &unregistered_providers, node) { |
| 123 | dca_sysfs_remove_provider(dca); |
| 124 | list_del(&dca->node); |
| 125 | } |
| 126 | } |
| 127 | |
Maciej Sosnowski | 1a5aeee | 2009-09-10 15:05:58 +0200 | [diff] [blame] | 128 | static struct dca_domain *dca_find_domain(struct pci_bus *rc) |
| 129 | { |
| 130 | struct dca_domain *domain; |
| 131 | |
| 132 | list_for_each_entry(domain, &dca_domains, node) |
| 133 | if (domain->pci_rc == rc) |
| 134 | return domain; |
| 135 | |
| 136 | return NULL; |
| 137 | } |
| 138 | |
| 139 | static struct dca_domain *dca_get_domain(struct device *dev) |
| 140 | { |
| 141 | struct pci_bus *rc; |
| 142 | struct dca_domain *domain; |
| 143 | |
| 144 | rc = dca_pci_rc_from_dev(dev); |
| 145 | domain = dca_find_domain(rc); |
| 146 | |
| 147 | if (!domain) { |
Mike Galbraith | a1741e7 | 2010-07-07 10:29:01 +0200 | [diff] [blame] | 148 | if (dca_provider_ioat_ver_3_0(dev) && !list_empty(&dca_domains)) |
Sosnowski, Maciej | 4e8cec2 | 2010-09-16 06:02:26 +0000 | [diff] [blame] | 149 | dca_providers_blocked = 1; |
Maciej Sosnowski | 1a5aeee | 2009-09-10 15:05:58 +0200 | [diff] [blame] | 150 | } |
| 151 | |
| 152 | return domain; |
| 153 | } |
Maciej Sosnowski | 7f1b358 | 2008-07-22 17:30:57 -0700 | [diff] [blame] | 154 | |
| 155 | static struct dca_provider *dca_find_provider_by_dev(struct device *dev) |
| 156 | { |
Maciej Sosnowski | 1a5aeee | 2009-09-10 15:05:58 +0200 | [diff] [blame] | 157 | struct dca_provider *dca; |
| 158 | struct pci_bus *rc; |
| 159 | struct dca_domain *domain; |
Maciej Sosnowski | 7f1b358 | 2008-07-22 17:30:57 -0700 | [diff] [blame] | 160 | |
Maciej Sosnowski | 1a5aeee | 2009-09-10 15:05:58 +0200 | [diff] [blame] | 161 | if (dev) { |
| 162 | rc = dca_pci_rc_from_dev(dev); |
| 163 | domain = dca_find_domain(rc); |
| 164 | if (!domain) |
| 165 | return NULL; |
| 166 | } else { |
| 167 | if (!list_empty(&dca_domains)) |
| 168 | domain = list_first_entry(&dca_domains, |
| 169 | struct dca_domain, |
| 170 | node); |
| 171 | else |
| 172 | return NULL; |
Maciej Sosnowski | 7f1b358 | 2008-07-22 17:30:57 -0700 | [diff] [blame] | 173 | } |
| 174 | |
Maciej Sosnowski | 1a5aeee | 2009-09-10 15:05:58 +0200 | [diff] [blame] | 175 | list_for_each_entry(dca, &domain->dca_providers, node) |
| 176 | if ((!dev) || (dca->ops->dev_managed(dca, dev))) |
| 177 | return dca; |
| 178 | |
| 179 | return NULL; |
Maciej Sosnowski | 7f1b358 | 2008-07-22 17:30:57 -0700 | [diff] [blame] | 180 | } |
Shannon Nelson | 7589670 | 2007-10-16 01:27:41 -0700 | [diff] [blame] | 181 | |
| 182 | /** |
| 183 | * dca_add_requester - add a dca client to the list |
| 184 | * @dev - the device that wants dca service |
| 185 | */ |
| 186 | int dca_add_requester(struct device *dev) |
| 187 | { |
Maciej Sosnowski | 7f1b358 | 2008-07-22 17:30:57 -0700 | [diff] [blame] | 188 | struct dca_provider *dca; |
| 189 | int err, slot = -ENODEV; |
Maciej Sosnowski | eb4400e | 2009-02-02 23:26:57 -0800 | [diff] [blame] | 190 | unsigned long flags; |
Maciej Sosnowski | 1a5aeee | 2009-09-10 15:05:58 +0200 | [diff] [blame] | 191 | struct pci_bus *pci_rc; |
| 192 | struct dca_domain *domain; |
Shannon Nelson | 7589670 | 2007-10-16 01:27:41 -0700 | [diff] [blame] | 193 | |
Maciej Sosnowski | 7f1b358 | 2008-07-22 17:30:57 -0700 | [diff] [blame] | 194 | if (!dev) |
| 195 | return -EFAULT; |
Shannon Nelson | 7589670 | 2007-10-16 01:27:41 -0700 | [diff] [blame] | 196 | |
Mike Galbraith | a1741e7 | 2010-07-07 10:29:01 +0200 | [diff] [blame] | 197 | raw_spin_lock_irqsave(&dca_lock, flags); |
Shannon Nelson | 7589670 | 2007-10-16 01:27:41 -0700 | [diff] [blame] | 198 | |
Maciej Sosnowski | 7f1b358 | 2008-07-22 17:30:57 -0700 | [diff] [blame] | 199 | /* check if the requester has not been added already */ |
| 200 | dca = dca_find_provider_by_dev(dev); |
| 201 | if (dca) { |
Mike Galbraith | a1741e7 | 2010-07-07 10:29:01 +0200 | [diff] [blame] | 202 | raw_spin_unlock_irqrestore(&dca_lock, flags); |
Maciej Sosnowski | 7f1b358 | 2008-07-22 17:30:57 -0700 | [diff] [blame] | 203 | return -EEXIST; |
| 204 | } |
| 205 | |
Maciej Sosnowski | 1a5aeee | 2009-09-10 15:05:58 +0200 | [diff] [blame] | 206 | pci_rc = dca_pci_rc_from_dev(dev); |
| 207 | domain = dca_find_domain(pci_rc); |
| 208 | if (!domain) { |
Mike Galbraith | a1741e7 | 2010-07-07 10:29:01 +0200 | [diff] [blame] | 209 | raw_spin_unlock_irqrestore(&dca_lock, flags); |
Maciej Sosnowski | 1a5aeee | 2009-09-10 15:05:58 +0200 | [diff] [blame] | 210 | return -ENODEV; |
| 211 | } |
| 212 | |
| 213 | list_for_each_entry(dca, &domain->dca_providers, node) { |
Maciej Sosnowski | 7f1b358 | 2008-07-22 17:30:57 -0700 | [diff] [blame] | 214 | slot = dca->ops->add_requester(dca, dev); |
| 215 | if (slot >= 0) |
| 216 | break; |
| 217 | } |
Maciej Sosnowski | eb4400e | 2009-02-02 23:26:57 -0800 | [diff] [blame] | 218 | |
Mike Galbraith | a1741e7 | 2010-07-07 10:29:01 +0200 | [diff] [blame] | 219 | raw_spin_unlock_irqrestore(&dca_lock, flags); |
Maciej Sosnowski | eb4400e | 2009-02-02 23:26:57 -0800 | [diff] [blame] | 220 | |
| 221 | if (slot < 0) |
Maciej Sosnowski | 7f1b358 | 2008-07-22 17:30:57 -0700 | [diff] [blame] | 222 | return slot; |
Maciej Sosnowski | 7f1b358 | 2008-07-22 17:30:57 -0700 | [diff] [blame] | 223 | |
| 224 | err = dca_sysfs_add_req(dca, dev, slot); |
Shannon Nelson | 7589670 | 2007-10-16 01:27:41 -0700 | [diff] [blame] | 225 | if (err) { |
Mike Galbraith | a1741e7 | 2010-07-07 10:29:01 +0200 | [diff] [blame] | 226 | raw_spin_lock_irqsave(&dca_lock, flags); |
Maciej Sosnowski | eb4400e | 2009-02-02 23:26:57 -0800 | [diff] [blame] | 227 | if (dca == dca_find_provider_by_dev(dev)) |
| 228 | dca->ops->remove_requester(dca, dev); |
Mike Galbraith | a1741e7 | 2010-07-07 10:29:01 +0200 | [diff] [blame] | 229 | raw_spin_unlock_irqrestore(&dca_lock, flags); |
Shannon Nelson | 7589670 | 2007-10-16 01:27:41 -0700 | [diff] [blame] | 230 | return err; |
| 231 | } |
| 232 | |
| 233 | return 0; |
| 234 | } |
| 235 | EXPORT_SYMBOL_GPL(dca_add_requester); |
| 236 | |
| 237 | /** |
| 238 | * dca_remove_requester - remove a dca client from the list |
| 239 | * @dev - the device that wants dca service |
| 240 | */ |
| 241 | int dca_remove_requester(struct device *dev) |
| 242 | { |
Maciej Sosnowski | 7f1b358 | 2008-07-22 17:30:57 -0700 | [diff] [blame] | 243 | struct dca_provider *dca; |
Shannon Nelson | 7589670 | 2007-10-16 01:27:41 -0700 | [diff] [blame] | 244 | int slot; |
Maciej Sosnowski | eb4400e | 2009-02-02 23:26:57 -0800 | [diff] [blame] | 245 | unsigned long flags; |
Maciej Sosnowski | 7f1b358 | 2008-07-22 17:30:57 -0700 | [diff] [blame] | 246 | |
| 247 | if (!dev) |
| 248 | return -EFAULT; |
Shannon Nelson | 7589670 | 2007-10-16 01:27:41 -0700 | [diff] [blame] | 249 | |
Mike Galbraith | a1741e7 | 2010-07-07 10:29:01 +0200 | [diff] [blame] | 250 | raw_spin_lock_irqsave(&dca_lock, flags); |
Maciej Sosnowski | 7f1b358 | 2008-07-22 17:30:57 -0700 | [diff] [blame] | 251 | dca = dca_find_provider_by_dev(dev); |
| 252 | if (!dca) { |
Mike Galbraith | a1741e7 | 2010-07-07 10:29:01 +0200 | [diff] [blame] | 253 | raw_spin_unlock_irqrestore(&dca_lock, flags); |
Maciej Sosnowski | 7f1b358 | 2008-07-22 17:30:57 -0700 | [diff] [blame] | 254 | return -ENODEV; |
| 255 | } |
| 256 | slot = dca->ops->remove_requester(dca, dev); |
Mike Galbraith | a1741e7 | 2010-07-07 10:29:01 +0200 | [diff] [blame] | 257 | raw_spin_unlock_irqrestore(&dca_lock, flags); |
Maciej Sosnowski | eb4400e | 2009-02-02 23:26:57 -0800 | [diff] [blame] | 258 | |
| 259 | if (slot < 0) |
Shannon Nelson | 7589670 | 2007-10-16 01:27:41 -0700 | [diff] [blame] | 260 | return slot; |
| 261 | |
Maciej Sosnowski | 7f1b358 | 2008-07-22 17:30:57 -0700 | [diff] [blame] | 262 | dca_sysfs_remove_req(dca, slot); |
| 263 | |
Shannon Nelson | 7589670 | 2007-10-16 01:27:41 -0700 | [diff] [blame] | 264 | return 0; |
| 265 | } |
| 266 | EXPORT_SYMBOL_GPL(dca_remove_requester); |
| 267 | |
| 268 | /** |
Maciej Sosnowski | 7f1b358 | 2008-07-22 17:30:57 -0700 | [diff] [blame] | 269 | * dca_common_get_tag - return the dca tag (serves both new and old api) |
| 270 | * @dev - the device that wants dca service |
| 271 | * @cpu - the cpuid as returned by get_cpu() |
| 272 | */ |
| 273 | u8 dca_common_get_tag(struct device *dev, int cpu) |
| 274 | { |
| 275 | struct dca_provider *dca; |
| 276 | u8 tag; |
Maciej Sosnowski | eb4400e | 2009-02-02 23:26:57 -0800 | [diff] [blame] | 277 | unsigned long flags; |
Maciej Sosnowski | 7f1b358 | 2008-07-22 17:30:57 -0700 | [diff] [blame] | 278 | |
Mike Galbraith | a1741e7 | 2010-07-07 10:29:01 +0200 | [diff] [blame] | 279 | raw_spin_lock_irqsave(&dca_lock, flags); |
Maciej Sosnowski | 7f1b358 | 2008-07-22 17:30:57 -0700 | [diff] [blame] | 280 | |
| 281 | dca = dca_find_provider_by_dev(dev); |
| 282 | if (!dca) { |
Mike Galbraith | a1741e7 | 2010-07-07 10:29:01 +0200 | [diff] [blame] | 283 | raw_spin_unlock_irqrestore(&dca_lock, flags); |
Maciej Sosnowski | 7f1b358 | 2008-07-22 17:30:57 -0700 | [diff] [blame] | 284 | return -ENODEV; |
| 285 | } |
| 286 | tag = dca->ops->get_tag(dca, dev, cpu); |
| 287 | |
Mike Galbraith | a1741e7 | 2010-07-07 10:29:01 +0200 | [diff] [blame] | 288 | raw_spin_unlock_irqrestore(&dca_lock, flags); |
Maciej Sosnowski | 7f1b358 | 2008-07-22 17:30:57 -0700 | [diff] [blame] | 289 | return tag; |
| 290 | } |
| 291 | |
| 292 | /** |
| 293 | * dca3_get_tag - return the dca tag to the requester device |
| 294 | * for the given cpu (new api) |
| 295 | * @dev - the device that wants dca service |
| 296 | * @cpu - the cpuid as returned by get_cpu() |
| 297 | */ |
| 298 | u8 dca3_get_tag(struct device *dev, int cpu) |
| 299 | { |
| 300 | if (!dev) |
| 301 | return -EFAULT; |
| 302 | |
| 303 | return dca_common_get_tag(dev, cpu); |
| 304 | } |
| 305 | EXPORT_SYMBOL_GPL(dca3_get_tag); |
| 306 | |
| 307 | /** |
| 308 | * dca_get_tag - return the dca tag for the given cpu (old api) |
Shannon Nelson | 7589670 | 2007-10-16 01:27:41 -0700 | [diff] [blame] | 309 | * @cpu - the cpuid as returned by get_cpu() |
| 310 | */ |
| 311 | u8 dca_get_tag(int cpu) |
| 312 | { |
Maciej Sosnowski | 7f1b358 | 2008-07-22 17:30:57 -0700 | [diff] [blame] | 313 | struct device *dev = NULL; |
| 314 | |
| 315 | return dca_common_get_tag(dev, cpu); |
Shannon Nelson | 7589670 | 2007-10-16 01:27:41 -0700 | [diff] [blame] | 316 | } |
| 317 | EXPORT_SYMBOL_GPL(dca_get_tag); |
| 318 | |
| 319 | /** |
| 320 | * alloc_dca_provider - get data struct for describing a dca provider |
| 321 | * @ops - pointer to struct of dca operation function pointers |
| 322 | * @priv_size - size of extra mem to be added for provider's needs |
| 323 | */ |
| 324 | struct dca_provider *alloc_dca_provider(struct dca_ops *ops, int priv_size) |
| 325 | { |
| 326 | struct dca_provider *dca; |
| 327 | int alloc_size; |
| 328 | |
| 329 | alloc_size = (sizeof(*dca) + priv_size); |
| 330 | dca = kzalloc(alloc_size, GFP_KERNEL); |
| 331 | if (!dca) |
| 332 | return NULL; |
| 333 | dca->ops = ops; |
| 334 | |
| 335 | return dca; |
| 336 | } |
| 337 | EXPORT_SYMBOL_GPL(alloc_dca_provider); |
| 338 | |
| 339 | /** |
| 340 | * free_dca_provider - release the dca provider data struct |
| 341 | * @ops - pointer to struct of dca operation function pointers |
| 342 | * @priv_size - size of extra mem to be added for provider's needs |
| 343 | */ |
| 344 | void free_dca_provider(struct dca_provider *dca) |
| 345 | { |
| 346 | kfree(dca); |
| 347 | } |
| 348 | EXPORT_SYMBOL_GPL(free_dca_provider); |
| 349 | |
Shannon Nelson | 7589670 | 2007-10-16 01:27:41 -0700 | [diff] [blame] | 350 | /** |
| 351 | * register_dca_provider - register a dca provider |
| 352 | * @dca - struct created by alloc_dca_provider() |
| 353 | * @dev - device providing dca services |
| 354 | */ |
| 355 | int register_dca_provider(struct dca_provider *dca, struct device *dev) |
| 356 | { |
| 357 | int err; |
Maciej Sosnowski | eb4400e | 2009-02-02 23:26:57 -0800 | [diff] [blame] | 358 | unsigned long flags; |
Mike Galbraith | a1741e7 | 2010-07-07 10:29:01 +0200 | [diff] [blame] | 359 | struct dca_domain *domain, *newdomain = NULL; |
Shannon Nelson | 7589670 | 2007-10-16 01:27:41 -0700 | [diff] [blame] | 360 | |
Mike Galbraith | a1741e7 | 2010-07-07 10:29:01 +0200 | [diff] [blame] | 361 | raw_spin_lock_irqsave(&dca_lock, flags); |
Sosnowski, Maciej | 4e8cec2 | 2010-09-16 06:02:26 +0000 | [diff] [blame] | 362 | if (dca_providers_blocked) { |
Mike Galbraith | a1741e7 | 2010-07-07 10:29:01 +0200 | [diff] [blame] | 363 | raw_spin_unlock_irqrestore(&dca_lock, flags); |
Sosnowski, Maciej | 4e8cec2 | 2010-09-16 06:02:26 +0000 | [diff] [blame] | 364 | return -ENODEV; |
| 365 | } |
Mike Galbraith | a1741e7 | 2010-07-07 10:29:01 +0200 | [diff] [blame] | 366 | raw_spin_unlock_irqrestore(&dca_lock, flags); |
Sosnowski, Maciej | 4e8cec2 | 2010-09-16 06:02:26 +0000 | [diff] [blame] | 367 | |
Shannon Nelson | 7589670 | 2007-10-16 01:27:41 -0700 | [diff] [blame] | 368 | err = dca_sysfs_add_provider(dca, dev); |
| 369 | if (err) |
| 370 | return err; |
Maciej Sosnowski | eb4400e | 2009-02-02 23:26:57 -0800 | [diff] [blame] | 371 | |
Mike Galbraith | a1741e7 | 2010-07-07 10:29:01 +0200 | [diff] [blame] | 372 | raw_spin_lock_irqsave(&dca_lock, flags); |
Maciej Sosnowski | 1a5aeee | 2009-09-10 15:05:58 +0200 | [diff] [blame] | 373 | domain = dca_get_domain(dev); |
| 374 | if (!domain) { |
Mike Galbraith | a1741e7 | 2010-07-07 10:29:01 +0200 | [diff] [blame] | 375 | struct pci_bus *rc; |
| 376 | |
Sosnowski, Maciej | 4e8cec2 | 2010-09-16 06:02:26 +0000 | [diff] [blame] | 377 | if (dca_providers_blocked) { |
Mike Galbraith | a1741e7 | 2010-07-07 10:29:01 +0200 | [diff] [blame] | 378 | raw_spin_unlock_irqrestore(&dca_lock, flags); |
Sosnowski, Maciej | 4e8cec2 | 2010-09-16 06:02:26 +0000 | [diff] [blame] | 379 | dca_sysfs_remove_provider(dca); |
| 380 | unregister_dca_providers(); |
Mike Galbraith | a1741e7 | 2010-07-07 10:29:01 +0200 | [diff] [blame] | 381 | return -ENODEV; |
Sosnowski, Maciej | 4e8cec2 | 2010-09-16 06:02:26 +0000 | [diff] [blame] | 382 | } |
Mike Galbraith | a1741e7 | 2010-07-07 10:29:01 +0200 | [diff] [blame] | 383 | |
| 384 | raw_spin_unlock_irqrestore(&dca_lock, flags); |
| 385 | rc = dca_pci_rc_from_dev(dev); |
| 386 | newdomain = dca_allocate_domain(rc); |
| 387 | if (!newdomain) |
| 388 | return -ENODEV; |
| 389 | raw_spin_lock_irqsave(&dca_lock, flags); |
| 390 | /* Recheck, we might have raced after dropping the lock */ |
| 391 | domain = dca_get_domain(dev); |
| 392 | if (!domain) { |
| 393 | domain = newdomain; |
| 394 | newdomain = NULL; |
| 395 | list_add(&domain->node, &dca_domains); |
| 396 | } |
Maciej Sosnowski | 1a5aeee | 2009-09-10 15:05:58 +0200 | [diff] [blame] | 397 | } |
| 398 | list_add(&dca->node, &domain->dca_providers); |
Mike Galbraith | a1741e7 | 2010-07-07 10:29:01 +0200 | [diff] [blame] | 399 | raw_spin_unlock_irqrestore(&dca_lock, flags); |
Maciej Sosnowski | eb4400e | 2009-02-02 23:26:57 -0800 | [diff] [blame] | 400 | |
Shannon Nelson | 7589670 | 2007-10-16 01:27:41 -0700 | [diff] [blame] | 401 | blocking_notifier_call_chain(&dca_provider_chain, |
| 402 | DCA_PROVIDER_ADD, NULL); |
Mike Galbraith | a1741e7 | 2010-07-07 10:29:01 +0200 | [diff] [blame] | 403 | kfree(newdomain); |
Shannon Nelson | 7589670 | 2007-10-16 01:27:41 -0700 | [diff] [blame] | 404 | return 0; |
| 405 | } |
| 406 | EXPORT_SYMBOL_GPL(register_dca_provider); |
| 407 | |
| 408 | /** |
| 409 | * unregister_dca_provider - remove a dca provider |
| 410 | * @dca - struct created by alloc_dca_provider() |
| 411 | */ |
Maciej Sosnowski | 1a5aeee | 2009-09-10 15:05:58 +0200 | [diff] [blame] | 412 | void unregister_dca_provider(struct dca_provider *dca, struct device *dev) |
Shannon Nelson | 7589670 | 2007-10-16 01:27:41 -0700 | [diff] [blame] | 413 | { |
Maciej Sosnowski | eb4400e | 2009-02-02 23:26:57 -0800 | [diff] [blame] | 414 | unsigned long flags; |
Maciej Sosnowski | 1a5aeee | 2009-09-10 15:05:58 +0200 | [diff] [blame] | 415 | struct pci_bus *pci_rc; |
| 416 | struct dca_domain *domain; |
Maciej Sosnowski | eb4400e | 2009-02-02 23:26:57 -0800 | [diff] [blame] | 417 | |
Shannon Nelson | 7589670 | 2007-10-16 01:27:41 -0700 | [diff] [blame] | 418 | blocking_notifier_call_chain(&dca_provider_chain, |
| 419 | DCA_PROVIDER_REMOVE, NULL); |
Maciej Sosnowski | eb4400e | 2009-02-02 23:26:57 -0800 | [diff] [blame] | 420 | |
Mike Galbraith | a1741e7 | 2010-07-07 10:29:01 +0200 | [diff] [blame] | 421 | raw_spin_lock_irqsave(&dca_lock, flags); |
Maciej Sosnowski | 1a5aeee | 2009-09-10 15:05:58 +0200 | [diff] [blame] | 422 | |
Maciej Sosnowski | c419fcf | 2012-05-23 17:27:07 +0200 | [diff] [blame] | 423 | if (list_empty(&dca_domains)) { |
| 424 | raw_spin_unlock_irqrestore(&dca_lock, flags); |
| 425 | return; |
| 426 | } |
| 427 | |
Maciej Sosnowski | 7f1b358 | 2008-07-22 17:30:57 -0700 | [diff] [blame] | 428 | list_del(&dca->node); |
Maciej Sosnowski | 1a5aeee | 2009-09-10 15:05:58 +0200 | [diff] [blame] | 429 | |
| 430 | pci_rc = dca_pci_rc_from_dev(dev); |
| 431 | domain = dca_find_domain(pci_rc); |
| 432 | if (list_empty(&domain->dca_providers)) |
| 433 | dca_free_domain(domain); |
| 434 | |
Mike Galbraith | a1741e7 | 2010-07-07 10:29:01 +0200 | [diff] [blame] | 435 | raw_spin_unlock_irqrestore(&dca_lock, flags); |
Maciej Sosnowski | eb4400e | 2009-02-02 23:26:57 -0800 | [diff] [blame] | 436 | |
Shannon Nelson | 7589670 | 2007-10-16 01:27:41 -0700 | [diff] [blame] | 437 | dca_sysfs_remove_provider(dca); |
| 438 | } |
| 439 | EXPORT_SYMBOL_GPL(unregister_dca_provider); |
| 440 | |
| 441 | /** |
| 442 | * dca_register_notify - register a client's notifier callback |
| 443 | */ |
| 444 | void dca_register_notify(struct notifier_block *nb) |
| 445 | { |
| 446 | blocking_notifier_chain_register(&dca_provider_chain, nb); |
| 447 | } |
| 448 | EXPORT_SYMBOL_GPL(dca_register_notify); |
| 449 | |
| 450 | /** |
| 451 | * dca_unregister_notify - remove a client's notifier callback |
| 452 | */ |
| 453 | void dca_unregister_notify(struct notifier_block *nb) |
| 454 | { |
| 455 | blocking_notifier_chain_unregister(&dca_provider_chain, nb); |
| 456 | } |
| 457 | EXPORT_SYMBOL_GPL(dca_unregister_notify); |
| 458 | |
| 459 | static int __init dca_init(void) |
| 460 | { |
Stephen Hemminger | 084dac5 | 2009-09-13 09:07:37 -0700 | [diff] [blame] | 461 | pr_info("dca service started, version %s\n", DCA_VERSION); |
Shannon Nelson | 7589670 | 2007-10-16 01:27:41 -0700 | [diff] [blame] | 462 | return dca_sysfs_init(); |
| 463 | } |
| 464 | |
| 465 | static void __exit dca_exit(void) |
| 466 | { |
| 467 | dca_sysfs_exit(); |
| 468 | } |
| 469 | |
Dan Williams | 652afc2 | 2009-01-06 11:38:22 -0700 | [diff] [blame] | 470 | arch_initcall(dca_init); |
Shannon Nelson | 7589670 | 2007-10-16 01:27:41 -0700 | [diff] [blame] | 471 | module_exit(dca_exit); |
| 472 | |