LCOV - code coverage report
Current view: top level - drivers/pci - pci-driver.c (source / functions) Hit Total Coverage
Test: combined.info Lines: 140 631 22.2 %
Date: 2022-04-01 14:17:54 Functions: 17 53 32.1 %
Branches: 45 498 9.0 %

           Branch data     Line data    Source code
       1                 :            : // SPDX-License-Identifier: GPL-2.0
       2                 :            : /*
       3                 :            :  * (C) Copyright 2002-2004, 2007 Greg Kroah-Hartman <greg@kroah.com>
       4                 :            :  * (C) Copyright 2007 Novell Inc.
       5                 :            :  */
       6                 :            : 
       7                 :            : #include <linux/pci.h>
       8                 :            : #include <linux/module.h>
       9                 :            : #include <linux/init.h>
      10                 :            : #include <linux/device.h>
      11                 :            : #include <linux/mempolicy.h>
      12                 :            : #include <linux/string.h>
      13                 :            : #include <linux/slab.h>
      14                 :            : #include <linux/sched.h>
      15                 :            : #include <linux/cpu.h>
      16                 :            : #include <linux/pm_runtime.h>
      17                 :            : #include <linux/suspend.h>
      18                 :            : #include <linux/kexec.h>
      19                 :            : #include <linux/of_device.h>
      20                 :            : #include <linux/acpi.h>
      21                 :            : #include "pci.h"
      22                 :            : #include "pcie/portdrv.h"
      23                 :            : 
      24                 :            : struct pci_dynid {
      25                 :            :         struct list_head node;
      26                 :            :         struct pci_device_id id;
      27                 :            : };
      28                 :            : 
      29                 :            : /**
      30                 :            :  * pci_add_dynid - add a new PCI device ID to this driver and re-probe devices
      31                 :            :  * @drv: target pci driver
      32                 :            :  * @vendor: PCI vendor ID
      33                 :            :  * @device: PCI device ID
      34                 :            :  * @subvendor: PCI subvendor ID
      35                 :            :  * @subdevice: PCI subdevice ID
      36                 :            :  * @class: PCI class
      37                 :            :  * @class_mask: PCI class mask
      38                 :            :  * @driver_data: private driver data
      39                 :            :  *
      40                 :            :  * Adds a new dynamic pci device ID to this driver and causes the
      41                 :            :  * driver to probe for all devices again.  @drv must have been
      42                 :            :  * registered prior to calling this function.
      43                 :            :  *
      44                 :            :  * CONTEXT:
      45                 :            :  * Does GFP_KERNEL allocation.
      46                 :            :  *
      47                 :            :  * RETURNS:
      48                 :            :  * 0 on success, -errno on failure.
      49                 :            :  */
      50                 :          0 : int pci_add_dynid(struct pci_driver *drv,
      51                 :            :                   unsigned int vendor, unsigned int device,
      52                 :            :                   unsigned int subvendor, unsigned int subdevice,
      53                 :            :                   unsigned int class, unsigned int class_mask,
      54                 :            :                   unsigned long driver_data)
      55                 :            : {
      56                 :          0 :         struct pci_dynid *dynid;
      57                 :            : 
      58                 :          0 :         dynid = kzalloc(sizeof(*dynid), GFP_KERNEL);
      59         [ #  # ]:          0 :         if (!dynid)
      60                 :            :                 return -ENOMEM;
      61                 :            : 
      62                 :          0 :         dynid->id.vendor = vendor;
      63                 :          0 :         dynid->id.device = device;
      64                 :          0 :         dynid->id.subvendor = subvendor;
      65                 :          0 :         dynid->id.subdevice = subdevice;
      66                 :          0 :         dynid->id.class = class;
      67                 :          0 :         dynid->id.class_mask = class_mask;
      68                 :          0 :         dynid->id.driver_data = driver_data;
      69                 :            : 
      70                 :          0 :         spin_lock(&drv->dynids.lock);
      71                 :          0 :         list_add_tail(&dynid->node, &drv->dynids.list);
      72                 :          0 :         spin_unlock(&drv->dynids.lock);
      73                 :            : 
      74                 :          0 :         return driver_attach(&drv->driver);
      75                 :            : }
      76                 :            : EXPORT_SYMBOL_GPL(pci_add_dynid);
      77                 :            : 
      78                 :         11 : static void pci_free_dynids(struct pci_driver *drv)
      79                 :            : {
      80                 :         11 :         struct pci_dynid *dynid, *n;
      81                 :            : 
      82                 :         11 :         spin_lock(&drv->dynids.lock);
      83         [ -  + ]:         11 :         list_for_each_entry_safe(dynid, n, &drv->dynids.list, node) {
      84                 :          0 :                 list_del(&dynid->node);
      85                 :          0 :                 kfree(dynid);
      86                 :            :         }
      87                 :         11 :         spin_unlock(&drv->dynids.lock);
      88                 :         11 : }
      89                 :            : 
      90                 :            : /**
      91                 :            :  * store_new_id - sysfs frontend to pci_add_dynid()
      92                 :            :  * @driver: target device driver
      93                 :            :  * @buf: buffer for scanning device ID data
      94                 :            :  * @count: input size
      95                 :            :  *
      96                 :            :  * Allow PCI IDs to be added to an existing driver via sysfs.
      97                 :            :  */
      98                 :          0 : static ssize_t new_id_store(struct device_driver *driver, const char *buf,
      99                 :            :                             size_t count)
     100                 :            : {
     101                 :          0 :         struct pci_driver *pdrv = to_pci_driver(driver);
     102                 :          0 :         const struct pci_device_id *ids = pdrv->id_table;
     103                 :          0 :         u32 vendor, device, subvendor = PCI_ANY_ID,
     104                 :          0 :                 subdevice = PCI_ANY_ID, class = 0, class_mask = 0;
     105                 :          0 :         unsigned long driver_data = 0;
     106                 :          0 :         int fields = 0;
     107                 :          0 :         int retval = 0;
     108                 :            : 
     109                 :          0 :         fields = sscanf(buf, "%x %x %x %x %x %x %lx",
     110                 :            :                         &vendor, &device, &subvendor, &subdevice,
     111                 :            :                         &class, &class_mask, &driver_data);
     112         [ #  # ]:          0 :         if (fields < 2)
     113                 :            :                 return -EINVAL;
     114                 :            : 
     115         [ #  # ]:          0 :         if (fields != 7) {
     116                 :          0 :                 struct pci_dev *pdev = kzalloc(sizeof(*pdev), GFP_KERNEL);
     117         [ #  # ]:          0 :                 if (!pdev)
     118                 :            :                         return -ENOMEM;
     119                 :            : 
     120                 :          0 :                 pdev->vendor = vendor;
     121                 :          0 :                 pdev->device = device;
     122                 :          0 :                 pdev->subsystem_vendor = subvendor;
     123                 :          0 :                 pdev->subsystem_device = subdevice;
     124                 :          0 :                 pdev->class = class;
     125                 :            : 
     126         [ #  # ]:          0 :                 if (pci_match_id(pdrv->id_table, pdev))
     127                 :          0 :                         retval = -EEXIST;
     128                 :            : 
     129                 :          0 :                 kfree(pdev);
     130                 :            : 
     131         [ #  # ]:          0 :                 if (retval)
     132                 :          0 :                         return retval;
     133                 :            :         }
     134                 :            : 
     135                 :            :         /* Only accept driver_data values that match an existing id_table
     136                 :            :            entry */
     137         [ #  # ]:          0 :         if (ids) {
     138                 :            :                 retval = -EINVAL;
     139   [ #  #  #  #  :          0 :                 while (ids->vendor || ids->subvendor || ids->class_mask) {
                   #  # ]
     140         [ #  # ]:          0 :                         if (driver_data == ids->driver_data) {
     141                 :            :                                 retval = 0;
     142                 :            :                                 break;
     143                 :            :                         }
     144                 :          0 :                         ids++;
     145                 :            :                 }
     146         [ #  # ]:          0 :                 if (retval)     /* No match */
     147                 :          0 :                         return retval;
     148                 :            :         }
     149                 :            : 
     150                 :          0 :         retval = pci_add_dynid(pdrv, vendor, device, subvendor, subdevice,
     151                 :            :                                class, class_mask, driver_data);
     152         [ #  # ]:          0 :         if (retval)
     153                 :          0 :                 return retval;
     154                 :          0 :         return count;
     155                 :            : }
     156                 :            : static DRIVER_ATTR_WO(new_id);
     157                 :            : 
     158                 :            : /**
     159                 :            :  * store_remove_id - remove a PCI device ID from this driver
     160                 :            :  * @driver: target device driver
     161                 :            :  * @buf: buffer for scanning device ID data
     162                 :            :  * @count: input size
     163                 :            :  *
     164                 :            :  * Removes a dynamic pci device ID to this driver.
     165                 :            :  */
     166                 :          0 : static ssize_t remove_id_store(struct device_driver *driver, const char *buf,
     167                 :            :                                size_t count)
     168                 :            : {
     169                 :          0 :         struct pci_dynid *dynid, *n;
     170                 :          0 :         struct pci_driver *pdrv = to_pci_driver(driver);
     171                 :          0 :         u32 vendor, device, subvendor = PCI_ANY_ID,
     172                 :          0 :                 subdevice = PCI_ANY_ID, class = 0, class_mask = 0;
     173                 :          0 :         int fields = 0;
     174                 :          0 :         size_t retval = -ENODEV;
     175                 :            : 
     176                 :          0 :         fields = sscanf(buf, "%x %x %x %x %x %x",
     177                 :            :                         &vendor, &device, &subvendor, &subdevice,
     178                 :            :                         &class, &class_mask);
     179         [ #  # ]:          0 :         if (fields < 2)
     180                 :            :                 return -EINVAL;
     181                 :            : 
     182                 :          0 :         spin_lock(&pdrv->dynids.lock);
     183         [ #  # ]:          0 :         list_for_each_entry_safe(dynid, n, &pdrv->dynids.list, node) {
     184                 :          0 :                 struct pci_device_id *id = &dynid->id;
     185         [ #  # ]:          0 :                 if ((id->vendor == vendor) &&
     186         [ #  # ]:          0 :                     (id->device == device) &&
     187   [ #  #  #  # ]:          0 :                     (subvendor == PCI_ANY_ID || id->subvendor == subvendor) &&
     188   [ #  #  #  # ]:          0 :                     (subdevice == PCI_ANY_ID || id->subdevice == subdevice) &&
     189         [ #  # ]:          0 :                     !((id->class ^ class) & class_mask)) {
     190                 :          0 :                         list_del(&dynid->node);
     191                 :          0 :                         kfree(dynid);
     192                 :          0 :                         retval = count;
     193                 :          0 :                         break;
     194                 :            :                 }
     195                 :            :         }
     196                 :          0 :         spin_unlock(&pdrv->dynids.lock);
     197                 :            : 
     198                 :          0 :         return retval;
     199                 :            : }
     200                 :            : static DRIVER_ATTR_WO(remove_id);
     201                 :            : 
     202                 :            : static struct attribute *pci_drv_attrs[] = {
     203                 :            :         &driver_attr_new_id.attr,
     204                 :            :         &driver_attr_remove_id.attr,
     205                 :            :         NULL,
     206                 :            : };
     207                 :            : ATTRIBUTE_GROUPS(pci_drv);
     208                 :            : 
     209                 :            : /**
     210                 :            :  * pci_match_id - See if a pci device matches a given pci_id table
     211                 :            :  * @ids: array of PCI device id structures to search in
     212                 :            :  * @dev: the PCI device structure to match against.
     213                 :            :  *
     214                 :            :  * Used by a driver to check whether a PCI device present in the
     215                 :            :  * system is in its list of supported devices.  Returns the matching
     216                 :            :  * pci_device_id structure or %NULL if there is no match.
     217                 :            :  *
     218                 :            :  * Deprecated, don't use this as it will not catch any dynamic ids
     219                 :            :  * that a driver might want to check for.
     220                 :            :  */
     221                 :       2684 : const struct pci_device_id *pci_match_id(const struct pci_device_id *ids,
     222                 :            :                                          struct pci_dev *dev)
     223                 :            : {
     224         [ +  - ]:       2684 :         if (ids) {
     225   [ +  +  -  +  :     133243 :                 while (ids->vendor || ids->subvendor || ids->class_mask) {
                   -  + ]
     226         [ +  + ]:     130669 :                         if (pci_match_one_device(ids, dev))
     227                 :        110 :                                 return ids;
     228                 :     130559 :                         ids++;
     229                 :            :                 }
     230                 :            :         }
     231                 :            :         return NULL;
     232                 :            : }
     233                 :            : EXPORT_SYMBOL(pci_match_id);
     234                 :            : 
     235                 :            : static const struct pci_device_id pci_device_id_any = {
     236                 :            :         .vendor = PCI_ANY_ID,
     237                 :            :         .device = PCI_ANY_ID,
     238                 :            :         .subvendor = PCI_ANY_ID,
     239                 :            :         .subdevice = PCI_ANY_ID,
     240                 :            : };
     241                 :            : 
     242                 :            : /**
     243                 :            :  * pci_match_device - Tell if a PCI device structure has a matching PCI device id structure
     244                 :            :  * @drv: the PCI driver to match against
     245                 :            :  * @dev: the PCI device structure to match against
     246                 :            :  *
     247                 :            :  * Used by a driver to check whether a PCI device present in the
     248                 :            :  * system is in its list of supported devices.  Returns the matching
     249                 :            :  * pci_device_id structure or %NULL if there is no match.
     250                 :            :  */
     251                 :       2519 : static const struct pci_device_id *pci_match_device(struct pci_driver *drv,
     252                 :            :                                                     struct pci_dev *dev)
     253                 :            : {
     254                 :       2519 :         struct pci_dynid *dynid;
     255                 :       2519 :         const struct pci_device_id *found_id = NULL;
     256                 :            : 
     257                 :            :         /* When driver_override is set, only bind to the matching driver */
     258   [ -  +  -  - ]:       2519 :         if (dev->driver_override && strcmp(dev->driver_override, drv->name))
     259                 :            :                 return NULL;
     260                 :            : 
     261                 :            :         /* Look at the dynamic ids first, before the static ones */
     262                 :       2519 :         spin_lock(&drv->dynids.lock);
     263         [ -  + ]:       2519 :         list_for_each_entry(dynid, &drv->dynids.list, node) {
     264         [ #  # ]:          0 :                 if (pci_match_one_device(&dynid->id, dev)) {
     265                 :            :                         found_id = &dynid->id;
     266                 :            :                         break;
     267                 :            :                 }
     268                 :            :         }
     269                 :       2519 :         spin_unlock(&drv->dynids.lock);
     270                 :            : 
     271         [ +  - ]:       2519 :         if (!found_id)
     272                 :       2519 :                 found_id = pci_match_id(drv->id_table, dev);
     273                 :            : 
     274                 :            :         /* driver_override will always match, send a dummy id */
     275   [ +  +  -  + ]:       2519 :         if (!found_id && dev->driver_override)
     276                 :          0 :                 found_id = &pci_device_id_any;
     277                 :            : 
     278                 :            :         return found_id;
     279                 :            : }
     280                 :            : 
     281                 :            : struct drv_dev_and_id {
     282                 :            :         struct pci_driver *drv;
     283                 :            :         struct pci_dev *dev;
     284                 :            :         const struct pci_device_id *id;
     285                 :            : };
     286                 :            : 
     287                 :         55 : static long local_pci_probe(void *_ddi)
     288                 :            : {
     289                 :         55 :         struct drv_dev_and_id *ddi = _ddi;
     290                 :         55 :         struct pci_dev *pci_dev = ddi->dev;
     291                 :         55 :         struct pci_driver *pci_drv = ddi->drv;
     292                 :         55 :         struct device *dev = &pci_dev->dev;
     293                 :         55 :         int rc;
     294                 :            : 
     295                 :            :         /*
     296                 :            :          * Unbound PCI devices are always put in D0, regardless of
     297                 :            :          * runtime PM status.  During probe, the device is set to
     298                 :            :          * active and the usage count is incremented.  If the driver
     299                 :            :          * supports runtime PM, it should call pm_runtime_put_noidle(),
     300                 :            :          * or any other runtime PM helper function decrementing the usage
     301                 :            :          * count, in its probe routine and pm_runtime_get_noresume() in
     302                 :            :          * its remove routine.
     303                 :            :          */
     304                 :         55 :         pm_runtime_get_sync(dev);
     305                 :         55 :         pci_dev->driver = pci_drv;
     306                 :         55 :         rc = pci_drv->probe(pci_dev, ddi->id);
     307         [ +  + ]:         55 :         if (!rc)
     308                 :            :                 return rc;
     309         [ +  - ]:         33 :         if (rc < 0) {
     310                 :         33 :                 pci_dev->driver = NULL;
     311                 :         33 :                 pm_runtime_put_sync(dev);
     312                 :         33 :                 return rc;
     313                 :            :         }
     314                 :            :         /*
     315                 :            :          * Probe function should return < 0 for failure, 0 for success
     316                 :            :          * Treat values > 0 as success, but warn.
     317                 :            :          */
     318                 :          0 :         pci_warn(pci_dev, "Driver probe function unexpectedly returned %d\n",
     319                 :            :                  rc);
     320                 :          0 :         return 0;
     321                 :            : }
     322                 :            : 
     323                 :          0 : static bool pci_physfn_is_probed(struct pci_dev *dev)
     324                 :            : {
     325                 :            : #ifdef CONFIG_PCI_IOV
     326                 :            :         return dev->is_virtfn && dev->physfn->is_probed;
     327                 :            : #else
     328                 :          0 :         return false;
     329                 :            : #endif
     330                 :            : }
     331                 :            : 
     332                 :         55 : static int pci_call_probe(struct pci_driver *drv, struct pci_dev *dev,
     333                 :            :                           const struct pci_device_id *id)
     334                 :            : {
     335                 :         55 :         int error, node, cpu;
     336                 :         55 :         struct drv_dev_and_id ddi = { drv, dev, id };
     337                 :            : 
     338                 :            :         /*
     339                 :            :          * Execute driver initialization on node where the device is
     340                 :            :          * attached.  This way the driver likely allocates its local memory
     341                 :            :          * on the right node.
     342                 :            :          */
     343                 :         55 :         node = dev_to_node(&dev->dev);
     344                 :         55 :         dev->is_probed = 1;
     345                 :            : 
     346                 :         55 :         cpu_hotplug_disable();
     347                 :            : 
     348                 :            :         /*
     349                 :            :          * Prevent nesting work_on_cpu() for the case where a Virtual Function
     350                 :            :          * device is probed from work_on_cpu() of the Physical device.
     351                 :            :          */
     352   [ -  +  -  - ]:         55 :         if (node < 0 || node >= MAX_NUMNODES || !node_online(node) ||
     353                 :            :             pci_physfn_is_probed(dev))
     354                 :         55 :                 cpu = nr_cpu_ids;
     355                 :            :         else
     356                 :          0 :                 cpu = cpumask_any_and(cpumask_of_node(node), cpu_online_mask);
     357                 :            : 
     358         [ -  + ]:         55 :         if (cpu < nr_cpu_ids)
     359                 :          0 :                 error = work_on_cpu(cpu, local_pci_probe, &ddi);
     360                 :            :         else
     361                 :         55 :                 error = local_pci_probe(&ddi);
     362                 :            : 
     363                 :         55 :         dev->is_probed = 0;
     364                 :         55 :         cpu_hotplug_enable();
     365                 :         55 :         return error;
     366                 :            : }
     367                 :            : 
     368                 :            : /**
     369                 :            :  * __pci_device_probe - check if a driver wants to claim a specific PCI device
     370                 :            :  * @drv: driver to call to check if it wants the PCI device
     371                 :            :  * @pci_dev: PCI device being probed
     372                 :            :  *
     373                 :            :  * returns 0 on success, else error.
     374                 :            :  * side-effect: pci_dev->driver is set to drv when drv claims pci_dev.
     375                 :            :  */
     376                 :         55 : static int __pci_device_probe(struct pci_driver *drv, struct pci_dev *pci_dev)
     377                 :            : {
     378                 :         55 :         const struct pci_device_id *id;
     379                 :         55 :         int error = 0;
     380                 :            : 
     381   [ +  -  +  - ]:         55 :         if (!pci_dev->driver && drv->probe) {
     382                 :         55 :                 error = -ENODEV;
     383                 :            : 
     384                 :         55 :                 id = pci_match_device(drv, pci_dev);
     385         [ +  - ]:         55 :                 if (id)
     386                 :         55 :                         error = pci_call_probe(drv, pci_dev, id);
     387                 :            :         }
     388                 :         55 :         return error;
     389                 :            : }
     390                 :            : 
     391                 :         55 : int __weak pcibios_alloc_irq(struct pci_dev *dev)
     392                 :            : {
     393                 :         55 :         return 0;
     394                 :            : }
     395                 :            : 
     396                 :         33 : void __weak pcibios_free_irq(struct pci_dev *dev)
     397                 :            : {
     398                 :         33 : }
     399                 :            : 
     400                 :            : #ifdef CONFIG_PCI_IOV
     401                 :            : static inline bool pci_device_can_probe(struct pci_dev *pdev)
     402                 :            : {
     403                 :            :         return (!pdev->is_virtfn || pdev->physfn->sriov->drivers_autoprobe ||
     404                 :            :                 pdev->driver_override);
     405                 :            : }
     406                 :            : #else
     407                 :         55 : static inline bool pci_device_can_probe(struct pci_dev *pdev)
     408                 :            : {
     409                 :         55 :         return true;
     410                 :            : }
     411                 :            : #endif
     412                 :            : 
     413                 :            : void probe_fail(void);
     414                 :         55 : static int pci_device_probe(struct device *dev)
     415                 :            : {
     416                 :         55 :         int error;
     417                 :         55 :         struct pci_dev *pci_dev = to_pci_dev(dev);
     418                 :         55 :         struct pci_driver *drv = to_pci_driver(dev->driver);
     419                 :            : 
     420                 :         55 :         if (!pci_device_can_probe(pci_dev))
     421                 :            :                 return -ENODEV;
     422                 :            : 
     423                 :         55 :         pci_assign_irq(pci_dev);
     424                 :            : 
     425                 :         55 :         error = pcibios_alloc_irq(pci_dev);
     426         [ +  - ]:         55 :         if (error < 0)
     427                 :            :                 return error;
     428                 :            : 
     429                 :         55 :         pci_dev_get(pci_dev);
     430                 :         55 :         error = __pci_device_probe(drv, pci_dev);
     431         [ +  + ]:         55 :         if (error) {
     432                 :         33 :                 pcibios_free_irq(pci_dev);
     433                 :         33 :                 pci_dev_put(pci_dev);
     434                 :         33 :                 probe_fail();
     435                 :            :         }
     436                 :            : 
     437                 :            :         return error;
     438                 :            : }
     439                 :            : 
     440                 :          0 : static int pci_device_remove(struct device *dev)
     441                 :            : {
     442                 :          0 :         struct pci_dev *pci_dev = to_pci_dev(dev);
     443                 :          0 :         struct pci_driver *drv = pci_dev->driver;
     444                 :            : 
     445         [ #  # ]:          0 :         if (drv) {
     446         [ #  # ]:          0 :                 if (drv->remove) {
     447                 :          0 :                         pm_runtime_get_sync(dev);
     448                 :          0 :                         drv->remove(pci_dev);
     449                 :          0 :                         pm_runtime_put_noidle(dev);
     450                 :            :                 }
     451                 :          0 :                 pcibios_free_irq(pci_dev);
     452                 :          0 :                 pci_dev->driver = NULL;
     453                 :          0 :                 pci_iov_remove(pci_dev);
     454                 :            :         }
     455                 :            : 
     456                 :            :         /* Undo the runtime PM settings in local_pci_probe() */
     457                 :          0 :         pm_runtime_put_sync(dev);
     458                 :            : 
     459                 :            :         /*
     460                 :            :          * If the device is still on, set the power state as "unknown",
     461                 :            :          * since it might change by the next time we load the driver.
     462                 :            :          */
     463         [ #  # ]:          0 :         if (pci_dev->current_state == PCI_D0)
     464                 :          0 :                 pci_dev->current_state = PCI_UNKNOWN;
     465                 :            : 
     466                 :            :         /*
     467                 :            :          * We would love to complain here if pci_dev->is_enabled is set, that
     468                 :            :          * the driver should have called pci_disable_device(), but the
     469                 :            :          * unfortunate fact is there are too many odd BIOS and bridge setups
     470                 :            :          * that don't like drivers doing that all of the time.
     471                 :            :          * Oh well, we can dream of sane hardware when we sleep, no matter how
     472                 :            :          * horrible the crap we have to deal with is when we are awake...
     473                 :            :          */
     474                 :            : 
     475                 :          0 :         pci_dev_put(pci_dev);
     476                 :          0 :         return 0;
     477                 :            : }
     478                 :            : 
     479                 :          0 : static void pci_device_shutdown(struct device *dev)
     480                 :            : {
     481                 :          0 :         struct pci_dev *pci_dev = to_pci_dev(dev);
     482                 :          0 :         struct pci_driver *drv = pci_dev->driver;
     483                 :            : 
     484                 :          0 :         pm_runtime_resume(dev);
     485                 :            : 
     486   [ #  #  #  # ]:          0 :         if (drv && drv->shutdown)
     487                 :          0 :                 drv->shutdown(pci_dev);
     488                 :            : 
     489                 :            :         /*
     490                 :            :          * If this is a kexec reboot, turn off Bus Master bit on the
     491                 :            :          * device to tell it to not continue to do DMA. Don't touch
     492                 :            :          * devices in D3cold or unknown states.
     493                 :            :          * If it is not a kexec reboot, firmware will hit the PCI
     494                 :            :          * devices with big hammer and stop their DMA any way.
     495                 :            :          */
     496   [ #  #  #  # ]:          0 :         if (kexec_in_progress && (pci_dev->current_state <= PCI_D3hot))
     497                 :          0 :                 pci_clear_master(pci_dev);
     498                 :          0 : }
     499                 :            : 
     500                 :            : #ifdef CONFIG_PM
     501                 :            : 
     502                 :            : /* Auxiliary functions used for system resume and run-time resume. */
     503                 :            : 
     504                 :            : /**
     505                 :            :  * pci_restore_standard_config - restore standard config registers of PCI device
     506                 :            :  * @pci_dev: PCI device to handle
     507                 :            :  */
     508                 :          0 : static int pci_restore_standard_config(struct pci_dev *pci_dev)
     509                 :            : {
     510                 :          0 :         pci_update_current_state(pci_dev, PCI_UNKNOWN);
     511                 :            : 
     512         [ #  # ]:          0 :         if (pci_dev->current_state != PCI_D0) {
     513                 :          0 :                 int error = pci_set_power_state(pci_dev, PCI_D0);
     514         [ #  # ]:          0 :                 if (error)
     515                 :            :                         return error;
     516                 :            :         }
     517                 :            : 
     518                 :          0 :         pci_restore_state(pci_dev);
     519                 :          0 :         pci_pme_restore(pci_dev);
     520                 :          0 :         return 0;
     521                 :            : }
     522                 :            : 
     523                 :          0 : static void pci_pm_default_resume(struct pci_dev *pci_dev)
     524                 :            : {
     525                 :          0 :         pci_fixup_device(pci_fixup_resume, pci_dev);
     526                 :          0 :         pci_enable_wake(pci_dev, PCI_D0, false);
     527                 :          0 : }
     528                 :            : 
     529                 :            : #endif
     530                 :            : 
     531                 :            : #ifdef CONFIG_PM_SLEEP
     532                 :            : 
     533                 :          0 : static void pci_pm_default_resume_early(struct pci_dev *pci_dev)
     534                 :            : {
     535                 :          0 :         pci_power_up(pci_dev);
     536                 :          0 :         pci_update_current_state(pci_dev, PCI_D0);
     537                 :          0 :         pci_restore_state(pci_dev);
     538                 :          0 :         pci_pme_restore(pci_dev);
     539                 :          0 : }
     540                 :            : 
     541                 :            : /*
     542                 :            :  * Default "suspend" method for devices that have no driver provided suspend,
     543                 :            :  * or not even a driver at all (second part).
     544                 :            :  */
     545                 :          0 : static void pci_pm_set_unknown_state(struct pci_dev *pci_dev)
     546                 :            : {
     547                 :            :         /*
     548                 :            :          * mark its power state as "unknown", since we don't know if
     549                 :            :          * e.g. the BIOS will change its device state when we suspend.
     550                 :            :          */
     551                 :          0 :         if (pci_dev->current_state == PCI_D0)
     552                 :          0 :                 pci_dev->current_state = PCI_UNKNOWN;
     553                 :            : }
     554                 :            : 
     555                 :            : /*
     556                 :            :  * Default "resume" method for devices that have no driver provided resume,
     557                 :            :  * or not even a driver at all (second part).
     558                 :            :  */
     559                 :          0 : static int pci_pm_reenable_device(struct pci_dev *pci_dev)
     560                 :            : {
     561                 :          0 :         int retval;
     562                 :            : 
     563                 :            :         /* if the device was enabled before suspend, reenable */
     564                 :          0 :         retval = pci_reenable_device(pci_dev);
     565                 :            :         /*
     566                 :            :          * if the device was busmaster before the suspend, make it busmaster
     567                 :            :          * again
     568                 :            :          */
     569         [ #  # ]:          0 :         if (pci_dev->is_busmaster)
     570                 :          0 :                 pci_set_master(pci_dev);
     571                 :            : 
     572                 :          0 :         return retval;
     573                 :            : }
     574                 :            : 
     575                 :          0 : static int pci_legacy_suspend(struct device *dev, pm_message_t state)
     576                 :            : {
     577                 :          0 :         struct pci_dev *pci_dev = to_pci_dev(dev);
     578                 :          0 :         struct pci_driver *drv = pci_dev->driver;
     579                 :            : 
     580   [ #  #  #  # ]:          0 :         if (drv && drv->suspend) {
     581                 :          0 :                 pci_power_t prev = pci_dev->current_state;
     582                 :          0 :                 int error;
     583                 :            : 
     584                 :          0 :                 error = drv->suspend(pci_dev, state);
     585                 :          0 :                 suspend_report_result(drv->suspend, error);
     586         [ #  # ]:          0 :                 if (error)
     587                 :            :                         return error;
     588                 :            : 
     589   [ #  #  #  # ]:          0 :                 if (!pci_dev->state_saved && pci_dev->current_state != PCI_D0
     590         [ #  # ]:          0 :                     && pci_dev->current_state != PCI_UNKNOWN) {
     591   [ #  #  #  #  :          0 :                         pci_WARN_ONCE(pci_dev, pci_dev->current_state != prev,
                   #  # ]
     592                 :            :                                       "PCI PM: Device state not saved by %pS\n",
     593                 :            :                                       drv->suspend);
     594                 :            :                 }
     595                 :            :         }
     596                 :            : 
     597                 :          0 :         pci_fixup_device(pci_fixup_suspend, pci_dev);
     598                 :            : 
     599                 :          0 :         return 0;
     600                 :            : }
     601                 :            : 
     602                 :            : static int pci_legacy_suspend_late(struct device *dev, pm_message_t state)
     603                 :            : {
     604                 :            :         struct pci_dev *pci_dev = to_pci_dev(dev);
     605                 :            : 
     606                 :            :         if (!pci_dev->state_saved)
     607                 :            :                 pci_save_state(pci_dev);
     608                 :            : 
     609                 :            :         pci_pm_set_unknown_state(pci_dev);
     610                 :            : 
     611                 :            :         pci_fixup_device(pci_fixup_suspend_late, pci_dev);
     612                 :            : 
     613                 :            :         return 0;
     614                 :            : }
     615                 :            : 
     616                 :          0 : static int pci_legacy_resume(struct device *dev)
     617                 :            : {
     618                 :          0 :         struct pci_dev *pci_dev = to_pci_dev(dev);
     619                 :          0 :         struct pci_driver *drv = pci_dev->driver;
     620                 :            : 
     621                 :          0 :         pci_fixup_device(pci_fixup_resume, pci_dev);
     622                 :            : 
     623         [ #  # ]:          0 :         return drv && drv->resume ?
     624         [ #  # ]:          0 :                         drv->resume(pci_dev) : pci_pm_reenable_device(pci_dev);
     625                 :            : }
     626                 :            : 
     627                 :            : /* Auxiliary functions used by the new power management framework */
     628                 :            : 
     629                 :          0 : static void pci_pm_default_suspend(struct pci_dev *pci_dev)
     630                 :            : {
     631                 :            :         /* Disable non-bridge devices without PM support */
     632                 :          0 :         if (!pci_has_subordinate(pci_dev))
     633                 :          0 :                 pci_disable_enabled_device(pci_dev);
     634                 :            : }
     635                 :            : 
     636                 :          0 : static bool pci_has_legacy_pm_support(struct pci_dev *pci_dev)
     637                 :            : {
     638                 :          0 :         struct pci_driver *drv = pci_dev->driver;
     639   [ #  #  #  #  :          0 :         bool ret = drv && (drv->suspend || drv->resume);
                   #  # ]
     640                 :            : 
     641                 :            :         /*
     642                 :            :          * Legacy PM support is used by default, so warn if the new framework is
     643                 :            :          * supported as well.  Drivers are supposed to support either the
     644                 :            :          * former, or the latter, but not both at the same time.
     645                 :            :          */
     646   [ #  #  #  #  :          0 :         pci_WARN(pci_dev, ret && drv->driver.pm, "device %04x:%04x\n",
             #  #  #  # ]
     647                 :            :                  pci_dev->vendor, pci_dev->device);
     648                 :            : 
     649                 :          0 :         return ret;
     650                 :            : }
     651                 :            : 
     652                 :            : /* New power management framework */
     653                 :            : 
     654                 :          0 : static int pci_pm_prepare(struct device *dev)
     655                 :            : {
     656                 :          0 :         struct pci_dev *pci_dev = to_pci_dev(dev);
     657         [ #  # ]:          0 :         const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
     658                 :            : 
     659   [ #  #  #  # ]:          0 :         if (pm && pm->prepare) {
     660                 :          0 :                 int error = pm->prepare(dev);
     661         [ #  # ]:          0 :                 if (error < 0)
     662                 :            :                         return error;
     663                 :            : 
     664   [ #  #  #  # ]:          0 :                 if (!error && dev_pm_test_driver_flags(dev, DPM_FLAG_SMART_PREPARE))
     665                 :            :                         return 0;
     666                 :            :         }
     667         [ #  # ]:          0 :         if (pci_dev_need_resume(pci_dev))
     668                 :            :                 return 0;
     669                 :            : 
     670                 :            :         /*
     671                 :            :          * The PME setting needs to be adjusted here in case the direct-complete
     672                 :            :          * optimization is used with respect to this device.
     673                 :            :          */
     674                 :          0 :         pci_dev_adjust_pme(pci_dev);
     675                 :          0 :         return 1;
     676                 :            : }
     677                 :            : 
     678                 :          0 : static void pci_pm_complete(struct device *dev)
     679                 :            : {
     680                 :          0 :         struct pci_dev *pci_dev = to_pci_dev(dev);
     681                 :            : 
     682                 :          0 :         pci_dev_complete_resume(pci_dev);
     683                 :          0 :         pm_generic_complete(dev);
     684                 :            : 
     685                 :            :         /* Resume device if platform firmware has put it in reset-power-on */
     686   [ #  #  #  #  :          0 :         if (pm_runtime_suspended(dev) && pm_resume_via_firmware()) {
                   #  # ]
     687                 :          0 :                 pci_power_t pre_sleep_state = pci_dev->current_state;
     688                 :            : 
     689                 :          0 :                 pci_refresh_power_state(pci_dev);
     690                 :            :                 /*
     691                 :            :                  * On platforms with ACPI this check may also trigger for
     692                 :            :                  * devices sharing power resources if one of those power
     693                 :            :                  * resources has been activated as a result of a change of the
     694                 :            :                  * power state of another device sharing it.  However, in that
     695                 :            :                  * case it is also better to resume the device, in general.
     696                 :            :                  */
     697         [ #  # ]:          0 :                 if (pci_dev->current_state < pre_sleep_state)
     698                 :          0 :                         pm_request_resume(dev);
     699                 :            :         }
     700                 :          0 : }
     701                 :            : 
     702                 :            : #else /* !CONFIG_PM_SLEEP */
     703                 :            : 
     704                 :            : #define pci_pm_prepare  NULL
     705                 :            : #define pci_pm_complete NULL
     706                 :            : 
     707                 :            : #endif /* !CONFIG_PM_SLEEP */
     708                 :            : 
     709                 :            : #ifdef CONFIG_SUSPEND
     710                 :          0 : static void pcie_pme_root_status_cleanup(struct pci_dev *pci_dev)
     711                 :            : {
     712                 :            :         /*
     713                 :            :          * Some BIOSes forget to clear Root PME Status bits after system
     714                 :            :          * wakeup, which breaks ACPI-based runtime wakeup on PCI Express.
     715                 :            :          * Clear those bits now just in case (shouldn't hurt).
     716                 :            :          */
     717   [ #  #  #  # ]:          0 :         if (pci_is_pcie(pci_dev) &&
     718         [ #  # ]:          0 :             (pci_pcie_type(pci_dev) == PCI_EXP_TYPE_ROOT_PORT ||
     719                 :            :              pci_pcie_type(pci_dev) == PCI_EXP_TYPE_RC_EC))
     720                 :          0 :                 pcie_clear_root_pme_status(pci_dev);
     721                 :          0 : }
     722                 :            : 
     723                 :          0 : static int pci_pm_suspend(struct device *dev)
     724                 :            : {
     725                 :          0 :         struct pci_dev *pci_dev = to_pci_dev(dev);
     726         [ #  # ]:          0 :         const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
     727                 :            : 
     728                 :          0 :         pci_dev->skip_bus_pm = false;
     729                 :            : 
     730         [ #  # ]:          0 :         if (pci_has_legacy_pm_support(pci_dev))
     731                 :          0 :                 return pci_legacy_suspend(dev, PMSG_SUSPEND);
     732                 :            : 
     733         [ #  # ]:          0 :         if (!pm) {
     734         [ #  # ]:          0 :                 pci_pm_default_suspend(pci_dev);
     735                 :          0 :                 return 0;
     736                 :            :         }
     737                 :            : 
     738                 :            :         /*
     739                 :            :          * PCI devices suspended at run time may need to be resumed at this
     740                 :            :          * point, because in general it may be necessary to reconfigure them for
     741                 :            :          * system suspend.  Namely, if the device is expected to wake up the
     742                 :            :          * system from the sleep state, it may have to be reconfigured for this
     743                 :            :          * purpose, or if the device is not expected to wake up the system from
     744                 :            :          * the sleep state, it should be prevented from signaling wakeup events
     745                 :            :          * going forward.
     746                 :            :          *
     747                 :            :          * Also if the driver of the device does not indicate that its system
     748                 :            :          * suspend callbacks can cope with runtime-suspended devices, it is
     749                 :            :          * better to resume the device from runtime suspend here.
     750                 :            :          */
     751   [ #  #  #  # ]:          0 :         if (!dev_pm_test_driver_flags(dev, DPM_FLAG_SMART_SUSPEND) ||
     752                 :          0 :             pci_dev_need_resume(pci_dev)) {
     753                 :          0 :                 pm_runtime_resume(dev);
     754                 :          0 :                 pci_dev->state_saved = false;
     755                 :            :         } else {
     756                 :          0 :                 pci_dev_adjust_pme(pci_dev);
     757                 :            :         }
     758                 :            : 
     759         [ #  # ]:          0 :         if (pm->suspend) {
     760                 :          0 :                 pci_power_t prev = pci_dev->current_state;
     761                 :          0 :                 int error;
     762                 :            : 
     763                 :          0 :                 error = pm->suspend(dev);
     764                 :          0 :                 suspend_report_result(pm->suspend, error);
     765         [ #  # ]:          0 :                 if (error)
     766                 :            :                         return error;
     767                 :            : 
     768   [ #  #  #  # ]:          0 :                 if (!pci_dev->state_saved && pci_dev->current_state != PCI_D0
     769         [ #  # ]:          0 :                     && pci_dev->current_state != PCI_UNKNOWN) {
     770   [ #  #  #  #  :          0 :                         pci_WARN_ONCE(pci_dev, pci_dev->current_state != prev,
                   #  # ]
     771                 :            :                                       "PCI PM: State of device not saved by %pS\n",
     772                 :            :                                       pm->suspend);
     773                 :            :                 }
     774                 :            :         }
     775                 :            : 
     776                 :            :         return 0;
     777                 :            : }
     778                 :            : 
     779                 :          0 : static int pci_pm_suspend_late(struct device *dev)
     780                 :            : {
     781         [ #  # ]:          0 :         if (dev_pm_smart_suspend_and_suspended(dev))
     782                 :            :                 return 0;
     783                 :            : 
     784                 :          0 :         pci_fixup_device(pci_fixup_suspend, to_pci_dev(dev));
     785                 :            : 
     786                 :          0 :         return pm_generic_suspend_late(dev);
     787                 :            : }
     788                 :            : 
     789                 :          0 : static int pci_pm_suspend_noirq(struct device *dev)
     790                 :            : {
     791                 :          0 :         struct pci_dev *pci_dev = to_pci_dev(dev);
     792         [ #  # ]:          0 :         const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
     793                 :            : 
     794         [ #  # ]:          0 :         if (dev_pm_smart_suspend_and_suspended(dev)) {
     795                 :          0 :                 dev->power.may_skip_resume = true;
     796                 :          0 :                 return 0;
     797                 :            :         }
     798                 :            : 
     799         [ #  # ]:          0 :         if (pci_has_legacy_pm_support(pci_dev))
     800                 :          0 :                 return pci_legacy_suspend_late(dev, PMSG_SUSPEND);
     801                 :            : 
     802         [ #  # ]:          0 :         if (!pm) {
     803                 :          0 :                 pci_save_state(pci_dev);
     804                 :          0 :                 goto Fixup;
     805                 :            :         }
     806                 :            : 
     807         [ #  # ]:          0 :         if (pm->suspend_noirq) {
     808                 :          0 :                 pci_power_t prev = pci_dev->current_state;
     809                 :          0 :                 int error;
     810                 :            : 
     811                 :          0 :                 error = pm->suspend_noirq(dev);
     812                 :          0 :                 suspend_report_result(pm->suspend_noirq, error);
     813         [ #  # ]:          0 :                 if (error)
     814                 :            :                         return error;
     815                 :            : 
     816   [ #  #  #  # ]:          0 :                 if (!pci_dev->state_saved && pci_dev->current_state != PCI_D0
     817         [ #  # ]:          0 :                     && pci_dev->current_state != PCI_UNKNOWN) {
     818   [ #  #  #  #  :          0 :                         pci_WARN_ONCE(pci_dev, pci_dev->current_state != prev,
                   #  # ]
     819                 :            :                                       "PCI PM: State of device not saved by %pS\n",
     820                 :            :                                       pm->suspend_noirq);
     821                 :          0 :                         goto Fixup;
     822                 :            :                 }
     823                 :            :         }
     824                 :            : 
     825         [ #  # ]:          0 :         if (pci_dev->skip_bus_pm) {
     826                 :            :                 /*
     827                 :            :                  * Either the device is a bridge with a child in D0 below it, or
     828                 :            :                  * the function is running for the second time in a row without
     829                 :            :                  * going through full resume, which is possible only during
     830                 :            :                  * suspend-to-idle in a spurious wakeup case.  The device should
     831                 :            :                  * be in D0 at this point, but if it is a bridge, it may be
     832                 :            :                  * necessary to save its state.
     833                 :            :                  */
     834         [ #  # ]:          0 :                 if (!pci_dev->state_saved)
     835                 :          0 :                         pci_save_state(pci_dev);
     836         [ #  # ]:          0 :         } else if (!pci_dev->state_saved) {
     837                 :          0 :                 pci_save_state(pci_dev);
     838   [ #  #  #  # ]:          0 :                 if (pci_power_manageable(pci_dev))
     839                 :          0 :                         pci_prepare_to_sleep(pci_dev);
     840                 :            :         }
     841                 :            : 
     842                 :          0 :         pci_dbg(pci_dev, "PCI PM: Suspend power state: %s\n",
     843                 :            :                 pci_power_name(pci_dev->current_state));
     844                 :            : 
     845         [ #  # ]:          0 :         if (pci_dev->current_state == PCI_D0) {
     846                 :          0 :                 pci_dev->skip_bus_pm = true;
     847                 :            :                 /*
     848                 :            :                  * Per PCI PM r1.2, table 6-1, a bridge must be in D0 if any
     849                 :            :                  * downstream device is in D0, so avoid changing the power state
     850                 :            :                  * of the parent bridge by setting the skip_bus_pm flag for it.
     851                 :            :                  */
     852         [ #  # ]:          0 :                 if (pci_dev->bus->self)
     853                 :          0 :                         pci_dev->bus->self->skip_bus_pm = true;
     854                 :            :         }
     855                 :            : 
     856   [ #  #  #  # ]:          0 :         if (pci_dev->skip_bus_pm && pm_suspend_no_platform()) {
     857                 :          0 :                 pci_dbg(pci_dev, "PCI PM: Skipped\n");
     858                 :          0 :                 goto Fixup;
     859                 :            :         }
     860                 :            : 
     861         [ #  # ]:          0 :         pci_pm_set_unknown_state(pci_dev);
     862                 :            : 
     863                 :            :         /*
     864                 :            :          * Some BIOSes from ASUS have a bug: If a USB EHCI host controller's
     865                 :            :          * PCI COMMAND register isn't 0, the BIOS assumes that the controller
     866                 :            :          * hasn't been quiesced and tries to turn it off.  If the controller
     867                 :            :          * is already in D3, this can hang or cause memory corruption.
     868                 :            :          *
     869                 :            :          * Since the value of the COMMAND register doesn't matter once the
     870                 :            :          * device has been suspended, we can safely set it to 0 here.
     871                 :            :          */
     872         [ #  # ]:          0 :         if (pci_dev->class == PCI_CLASS_SERIAL_USB_EHCI)
     873                 :          0 :                 pci_write_config_word(pci_dev, PCI_COMMAND, 0);
     874                 :            : 
     875                 :          0 : Fixup:
     876                 :          0 :         pci_fixup_device(pci_fixup_suspend_late, pci_dev);
     877                 :            : 
     878                 :            :         /*
     879                 :            :          * If the target system sleep state is suspend-to-idle, it is sufficient
     880                 :            :          * to check whether or not the device's wakeup settings are good for
     881                 :            :          * runtime PM.  Otherwise, the pm_resume_via_firmware() check will cause
     882                 :            :          * pci_pm_complete() to take care of fixing up the device's state
     883                 :            :          * anyway, if need be.
     884                 :            :          */
     885   [ #  #  #  #  :          0 :         dev->power.may_skip_resume = device_may_wakeup(dev) ||
                   #  # ]
     886                 :            :                                         !device_can_wakeup(dev);
     887                 :            : 
     888                 :          0 :         return 0;
     889                 :            : }
     890                 :            : 
     891                 :          0 : static int pci_pm_resume_noirq(struct device *dev)
     892                 :            : {
     893                 :          0 :         struct pci_dev *pci_dev = to_pci_dev(dev);
     894         [ #  # ]:          0 :         const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
     895                 :          0 :         pci_power_t prev_state = pci_dev->current_state;
     896                 :          0 :         bool skip_bus_pm = pci_dev->skip_bus_pm;
     897                 :            : 
     898         [ #  # ]:          0 :         if (dev_pm_may_skip_resume(dev))
     899                 :            :                 return 0;
     900                 :            : 
     901                 :            :         /*
     902                 :            :          * Devices with DPM_FLAG_SMART_SUSPEND may be left in runtime suspend
     903                 :            :          * during system suspend, so update their runtime PM status to "active"
     904                 :            :          * as they are going to be put into D0 shortly.
     905                 :            :          */
     906         [ #  # ]:          0 :         if (dev_pm_smart_suspend_and_suspended(dev))
     907                 :          0 :                 pm_runtime_set_active(dev);
     908                 :            : 
     909                 :            :         /*
     910                 :            :          * In the suspend-to-idle case, devices left in D0 during suspend will
     911                 :            :          * stay in D0, so it is not necessary to restore or update their
     912                 :            :          * configuration here and attempting to put them into D0 again is
     913                 :            :          * pointless, so avoid doing that.
     914                 :            :          */
     915   [ #  #  #  # ]:          0 :         if (!(skip_bus_pm && pm_suspend_no_platform()))
     916                 :          0 :                 pci_pm_default_resume_early(pci_dev);
     917                 :            : 
     918                 :          0 :         pci_fixup_device(pci_fixup_resume_early, pci_dev);
     919                 :          0 :         pcie_pme_root_status_cleanup(pci_dev);
     920                 :            : 
     921         [ #  # ]:          0 :         if (!skip_bus_pm && prev_state == PCI_D3cold)
     922                 :          0 :                 pci_bridge_wait_for_secondary_bus(pci_dev);
     923                 :            : 
     924         [ #  # ]:          0 :         if (pci_has_legacy_pm_support(pci_dev))
     925                 :            :                 return 0;
     926                 :            : 
     927   [ #  #  #  # ]:          0 :         if (pm && pm->resume_noirq)
     928                 :          0 :                 return pm->resume_noirq(dev);
     929                 :            : 
     930                 :            :         return 0;
     931                 :            : }
     932                 :            : 
     933                 :          0 : static int pci_pm_resume(struct device *dev)
     934                 :            : {
     935                 :          0 :         struct pci_dev *pci_dev = to_pci_dev(dev);
     936         [ #  # ]:          0 :         const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
     937                 :            : 
     938                 :            :         /*
     939                 :            :          * This is necessary for the suspend error path in which resume is
     940                 :            :          * called without restoring the standard config registers of the device.
     941                 :            :          */
     942         [ #  # ]:          0 :         if (pci_dev->state_saved)
     943                 :          0 :                 pci_restore_standard_config(pci_dev);
     944                 :            : 
     945         [ #  # ]:          0 :         if (pci_has_legacy_pm_support(pci_dev))
     946                 :          0 :                 return pci_legacy_resume(dev);
     947                 :            : 
     948                 :          0 :         pci_pm_default_resume(pci_dev);
     949                 :            : 
     950         [ #  # ]:          0 :         if (pm) {
     951         [ #  # ]:          0 :                 if (pm->resume)
     952                 :          0 :                         return pm->resume(dev);
     953                 :            :         } else {
     954                 :          0 :                 pci_pm_reenable_device(pci_dev);
     955                 :            :         }
     956                 :            : 
     957                 :            :         return 0;
     958                 :            : }
     959                 :            : 
     960                 :            : #else /* !CONFIG_SUSPEND */
     961                 :            : 
     962                 :            : #define pci_pm_suspend          NULL
     963                 :            : #define pci_pm_suspend_late     NULL
     964                 :            : #define pci_pm_suspend_noirq    NULL
     965                 :            : #define pci_pm_resume           NULL
     966                 :            : #define pci_pm_resume_noirq     NULL
     967                 :            : 
     968                 :            : #endif /* !CONFIG_SUSPEND */
     969                 :            : 
     970                 :            : #ifdef CONFIG_HIBERNATE_CALLBACKS
     971                 :            : 
     972                 :            : /*
     973                 :            :  * pcibios_pm_ops - provide arch-specific hooks when a PCI device is doing
     974                 :            :  * a hibernate transition
     975                 :            :  */
     976                 :            : struct dev_pm_ops __weak pcibios_pm_ops;
     977                 :            : 
     978                 :          0 : static int pci_pm_freeze(struct device *dev)
     979                 :            : {
     980                 :          0 :         struct pci_dev *pci_dev = to_pci_dev(dev);
     981         [ #  # ]:          0 :         const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
     982                 :            : 
     983         [ #  # ]:          0 :         if (pci_has_legacy_pm_support(pci_dev))
     984                 :          0 :                 return pci_legacy_suspend(dev, PMSG_FREEZE);
     985                 :            : 
     986         [ #  # ]:          0 :         if (!pm) {
     987         [ #  # ]:          0 :                 pci_pm_default_suspend(pci_dev);
     988                 :          0 :                 return 0;
     989                 :            :         }
     990                 :            : 
     991                 :            :         /*
     992                 :            :          * Resume all runtime-suspended devices before creating a snapshot
     993                 :            :          * image of system memory, because the restore kernel generally cannot
     994                 :            :          * be expected to always handle them consistently and they need to be
     995                 :            :          * put into the runtime-active metastate during system resume anyway,
     996                 :            :          * so it is better to ensure that the state saved in the image will be
     997                 :            :          * always consistent with that.
     998                 :            :          */
     999                 :          0 :         pm_runtime_resume(dev);
    1000                 :          0 :         pci_dev->state_saved = false;
    1001                 :            : 
    1002         [ #  # ]:          0 :         if (pm->freeze) {
    1003                 :          0 :                 int error;
    1004                 :            : 
    1005                 :          0 :                 error = pm->freeze(dev);
    1006                 :          0 :                 suspend_report_result(pm->freeze, error);
    1007         [ #  # ]:          0 :                 if (error)
    1008                 :          0 :                         return error;
    1009                 :            :         }
    1010                 :            : 
    1011                 :            :         return 0;
    1012                 :            : }
    1013                 :            : 
    1014                 :          0 : static int pci_pm_freeze_noirq(struct device *dev)
    1015                 :            : {
    1016                 :          0 :         struct pci_dev *pci_dev = to_pci_dev(dev);
    1017         [ #  # ]:          0 :         const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
    1018                 :            : 
    1019         [ #  # ]:          0 :         if (pci_has_legacy_pm_support(pci_dev))
    1020                 :          0 :                 return pci_legacy_suspend_late(dev, PMSG_FREEZE);
    1021                 :            : 
    1022   [ #  #  #  # ]:          0 :         if (pm && pm->freeze_noirq) {
    1023                 :          0 :                 int error;
    1024                 :            : 
    1025                 :          0 :                 error = pm->freeze_noirq(dev);
    1026                 :          0 :                 suspend_report_result(pm->freeze_noirq, error);
    1027         [ #  # ]:          0 :                 if (error)
    1028                 :            :                         return error;
    1029                 :            :         }
    1030                 :            : 
    1031         [ #  # ]:          0 :         if (!pci_dev->state_saved)
    1032                 :          0 :                 pci_save_state(pci_dev);
    1033                 :            : 
    1034         [ #  # ]:          0 :         pci_pm_set_unknown_state(pci_dev);
    1035                 :            : 
    1036         [ #  # ]:          0 :         if (pcibios_pm_ops.freeze_noirq)
    1037                 :          0 :                 return pcibios_pm_ops.freeze_noirq(dev);
    1038                 :            : 
    1039                 :            :         return 0;
    1040                 :            : }
    1041                 :            : 
    1042                 :          0 : static int pci_pm_thaw_noirq(struct device *dev)
    1043                 :            : {
    1044                 :          0 :         struct pci_dev *pci_dev = to_pci_dev(dev);
    1045         [ #  # ]:          0 :         const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
    1046                 :          0 :         int error;
    1047                 :            : 
    1048         [ #  # ]:          0 :         if (pcibios_pm_ops.thaw_noirq) {
    1049                 :          0 :                 error = pcibios_pm_ops.thaw_noirq(dev);
    1050         [ #  # ]:          0 :                 if (error)
    1051                 :            :                         return error;
    1052                 :            :         }
    1053                 :            : 
    1054                 :            :         /*
    1055                 :            :          * The pm->thaw_noirq() callback assumes the device has been
    1056                 :            :          * returned to D0 and its config state has been restored.
    1057                 :            :          *
    1058                 :            :          * In addition, pci_restore_state() restores MSI-X state in MMIO
    1059                 :            :          * space, which requires the device to be in D0, so return it to D0
    1060                 :            :          * in case the driver's "freeze" callbacks put it into a low-power
    1061                 :            :          * state.
    1062                 :            :          */
    1063                 :          0 :         pci_set_power_state(pci_dev, PCI_D0);
    1064                 :          0 :         pci_restore_state(pci_dev);
    1065                 :            : 
    1066         [ #  # ]:          0 :         if (pci_has_legacy_pm_support(pci_dev))
    1067                 :            :                 return 0;
    1068                 :            : 
    1069   [ #  #  #  # ]:          0 :         if (pm && pm->thaw_noirq)
    1070                 :          0 :                 return pm->thaw_noirq(dev);
    1071                 :            : 
    1072                 :            :         return 0;
    1073                 :            : }
    1074                 :            : 
    1075                 :          0 : static int pci_pm_thaw(struct device *dev)
    1076                 :            : {
    1077                 :          0 :         struct pci_dev *pci_dev = to_pci_dev(dev);
    1078         [ #  # ]:          0 :         const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
    1079                 :          0 :         int error = 0;
    1080                 :            : 
    1081         [ #  # ]:          0 :         if (pci_has_legacy_pm_support(pci_dev))
    1082                 :          0 :                 return pci_legacy_resume(dev);
    1083                 :            : 
    1084         [ #  # ]:          0 :         if (pm) {
    1085         [ #  # ]:          0 :                 if (pm->thaw)
    1086                 :          0 :                         error = pm->thaw(dev);
    1087                 :            :         } else {
    1088                 :          0 :                 pci_pm_reenable_device(pci_dev);
    1089                 :            :         }
    1090                 :            : 
    1091                 :          0 :         pci_dev->state_saved = false;
    1092                 :            : 
    1093                 :          0 :         return error;
    1094                 :            : }
    1095                 :            : 
    1096                 :          0 : static int pci_pm_poweroff(struct device *dev)
    1097                 :            : {
    1098                 :          0 :         struct pci_dev *pci_dev = to_pci_dev(dev);
    1099         [ #  # ]:          0 :         const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
    1100                 :            : 
    1101         [ #  # ]:          0 :         if (pci_has_legacy_pm_support(pci_dev))
    1102                 :          0 :                 return pci_legacy_suspend(dev, PMSG_HIBERNATE);
    1103                 :            : 
    1104         [ #  # ]:          0 :         if (!pm) {
    1105         [ #  # ]:          0 :                 pci_pm_default_suspend(pci_dev);
    1106                 :          0 :                 return 0;
    1107                 :            :         }
    1108                 :            : 
    1109                 :            :         /* The reason to do that is the same as in pci_pm_suspend(). */
    1110   [ #  #  #  # ]:          0 :         if (!dev_pm_test_driver_flags(dev, DPM_FLAG_SMART_SUSPEND) ||
    1111                 :          0 :             pci_dev_need_resume(pci_dev)) {
    1112                 :          0 :                 pm_runtime_resume(dev);
    1113                 :          0 :                 pci_dev->state_saved = false;
    1114                 :            :         } else {
    1115                 :          0 :                 pci_dev_adjust_pme(pci_dev);
    1116                 :            :         }
    1117                 :            : 
    1118         [ #  # ]:          0 :         if (pm->poweroff) {
    1119                 :          0 :                 int error;
    1120                 :            : 
    1121                 :          0 :                 error = pm->poweroff(dev);
    1122                 :          0 :                 suspend_report_result(pm->poweroff, error);
    1123         [ #  # ]:          0 :                 if (error)
    1124                 :          0 :                         return error;
    1125                 :            :         }
    1126                 :            : 
    1127                 :            :         return 0;
    1128                 :            : }
    1129                 :            : 
    1130                 :          0 : static int pci_pm_poweroff_late(struct device *dev)
    1131                 :            : {
    1132         [ #  # ]:          0 :         if (dev_pm_smart_suspend_and_suspended(dev))
    1133                 :            :                 return 0;
    1134                 :            : 
    1135                 :          0 :         pci_fixup_device(pci_fixup_suspend, to_pci_dev(dev));
    1136                 :            : 
    1137                 :          0 :         return pm_generic_poweroff_late(dev);
    1138                 :            : }
    1139                 :            : 
    1140                 :          0 : static int pci_pm_poweroff_noirq(struct device *dev)
    1141                 :            : {
    1142                 :          0 :         struct pci_dev *pci_dev = to_pci_dev(dev);
    1143         [ #  # ]:          0 :         const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
    1144                 :            : 
    1145         [ #  # ]:          0 :         if (dev_pm_smart_suspend_and_suspended(dev))
    1146                 :            :                 return 0;
    1147                 :            : 
    1148         [ #  # ]:          0 :         if (pci_has_legacy_pm_support(pci_dev))
    1149                 :          0 :                 return pci_legacy_suspend_late(dev, PMSG_HIBERNATE);
    1150                 :            : 
    1151         [ #  # ]:          0 :         if (!pm) {
    1152                 :          0 :                 pci_fixup_device(pci_fixup_suspend_late, pci_dev);
    1153                 :          0 :                 return 0;
    1154                 :            :         }
    1155                 :            : 
    1156         [ #  # ]:          0 :         if (pm->poweroff_noirq) {
    1157                 :          0 :                 int error;
    1158                 :            : 
    1159                 :          0 :                 error = pm->poweroff_noirq(dev);
    1160                 :          0 :                 suspend_report_result(pm->poweroff_noirq, error);
    1161         [ #  # ]:          0 :                 if (error)
    1162                 :            :                         return error;
    1163                 :            :         }
    1164                 :            : 
    1165   [ #  #  #  # ]:          0 :         if (!pci_dev->state_saved && !pci_has_subordinate(pci_dev))
    1166                 :          0 :                 pci_prepare_to_sleep(pci_dev);
    1167                 :            : 
    1168                 :            :         /*
    1169                 :            :          * The reason for doing this here is the same as for the analogous code
    1170                 :            :          * in pci_pm_suspend_noirq().
    1171                 :            :          */
    1172         [ #  # ]:          0 :         if (pci_dev->class == PCI_CLASS_SERIAL_USB_EHCI)
    1173                 :          0 :                 pci_write_config_word(pci_dev, PCI_COMMAND, 0);
    1174                 :            : 
    1175                 :          0 :         pci_fixup_device(pci_fixup_suspend_late, pci_dev);
    1176                 :            : 
    1177         [ #  # ]:          0 :         if (pcibios_pm_ops.poweroff_noirq)
    1178                 :          0 :                 return pcibios_pm_ops.poweroff_noirq(dev);
    1179                 :            : 
    1180                 :            :         return 0;
    1181                 :            : }
    1182                 :            : 
    1183                 :          0 : static int pci_pm_restore_noirq(struct device *dev)
    1184                 :            : {
    1185                 :          0 :         struct pci_dev *pci_dev = to_pci_dev(dev);
    1186         [ #  # ]:          0 :         const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
    1187                 :          0 :         int error;
    1188                 :            : 
    1189         [ #  # ]:          0 :         if (pcibios_pm_ops.restore_noirq) {
    1190                 :          0 :                 error = pcibios_pm_ops.restore_noirq(dev);
    1191         [ #  # ]:          0 :                 if (error)
    1192                 :            :                         return error;
    1193                 :            :         }
    1194                 :            : 
    1195                 :          0 :         pci_pm_default_resume_early(pci_dev);
    1196                 :          0 :         pci_fixup_device(pci_fixup_resume_early, pci_dev);
    1197                 :            : 
    1198         [ #  # ]:          0 :         if (pci_has_legacy_pm_support(pci_dev))
    1199                 :            :                 return 0;
    1200                 :            : 
    1201   [ #  #  #  # ]:          0 :         if (pm && pm->restore_noirq)
    1202                 :          0 :                 return pm->restore_noirq(dev);
    1203                 :            : 
    1204                 :            :         return 0;
    1205                 :            : }
    1206                 :            : 
    1207                 :          0 : static int pci_pm_restore(struct device *dev)
    1208                 :            : {
    1209                 :          0 :         struct pci_dev *pci_dev = to_pci_dev(dev);
    1210         [ #  # ]:          0 :         const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
    1211                 :            : 
    1212                 :            :         /*
    1213                 :            :          * This is necessary for the hibernation error path in which restore is
    1214                 :            :          * called without restoring the standard config registers of the device.
    1215                 :            :          */
    1216         [ #  # ]:          0 :         if (pci_dev->state_saved)
    1217                 :          0 :                 pci_restore_standard_config(pci_dev);
    1218                 :            : 
    1219         [ #  # ]:          0 :         if (pci_has_legacy_pm_support(pci_dev))
    1220                 :          0 :                 return pci_legacy_resume(dev);
    1221                 :            : 
    1222                 :          0 :         pci_pm_default_resume(pci_dev);
    1223                 :            : 
    1224         [ #  # ]:          0 :         if (pm) {
    1225         [ #  # ]:          0 :                 if (pm->restore)
    1226                 :          0 :                         return pm->restore(dev);
    1227                 :            :         } else {
    1228                 :          0 :                 pci_pm_reenable_device(pci_dev);
    1229                 :            :         }
    1230                 :            : 
    1231                 :            :         return 0;
    1232                 :            : }
    1233                 :            : 
    1234                 :            : #else /* !CONFIG_HIBERNATE_CALLBACKS */
    1235                 :            : 
    1236                 :            : #define pci_pm_freeze           NULL
    1237                 :            : #define pci_pm_freeze_noirq     NULL
    1238                 :            : #define pci_pm_thaw             NULL
    1239                 :            : #define pci_pm_thaw_noirq       NULL
    1240                 :            : #define pci_pm_poweroff         NULL
    1241                 :            : #define pci_pm_poweroff_late    NULL
    1242                 :            : #define pci_pm_poweroff_noirq   NULL
    1243                 :            : #define pci_pm_restore          NULL
    1244                 :            : #define pci_pm_restore_noirq    NULL
    1245                 :            : 
    1246                 :            : #endif /* !CONFIG_HIBERNATE_CALLBACKS */
    1247                 :            : 
    1248                 :            : #ifdef CONFIG_PM
    1249                 :            : 
    1250                 :          0 : static int pci_pm_runtime_suspend(struct device *dev)
    1251                 :            : {
    1252                 :          0 :         struct pci_dev *pci_dev = to_pci_dev(dev);
    1253         [ #  # ]:          0 :         const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
    1254                 :          0 :         pci_power_t prev = pci_dev->current_state;
    1255                 :          0 :         int error;
    1256                 :            : 
    1257                 :            :         /*
    1258                 :            :          * If pci_dev->driver is not set (unbound), we leave the device in D0,
    1259                 :            :          * but it may go to D3cold when the bridge above it runtime suspends.
    1260                 :            :          * Save its config space in case that happens.
    1261                 :            :          */
    1262         [ #  # ]:          0 :         if (!pci_dev->driver) {
    1263                 :          0 :                 pci_save_state(pci_dev);
    1264                 :          0 :                 return 0;
    1265                 :            :         }
    1266                 :            : 
    1267                 :          0 :         pci_dev->state_saved = false;
    1268   [ #  #  #  # ]:          0 :         if (pm && pm->runtime_suspend) {
    1269                 :          0 :                 error = pm->runtime_suspend(dev);
    1270                 :            :                 /*
    1271                 :            :                  * -EBUSY and -EAGAIN is used to request the runtime PM core
    1272                 :            :                  * to schedule a new suspend, so log the event only with debug
    1273                 :            :                  * log level.
    1274                 :            :                  */
    1275         [ #  # ]:          0 :                 if (error == -EBUSY || error == -EAGAIN) {
    1276                 :            :                         pci_dbg(pci_dev, "can't suspend now (%ps returned %d)\n",
    1277                 :            :                                 pm->runtime_suspend, error);
    1278                 :            :                         return error;
    1279         [ #  # ]:          0 :                 } else if (error) {
    1280                 :          0 :                         pci_err(pci_dev, "can't suspend (%ps returned %d)\n",
    1281                 :            :                                 pm->runtime_suspend, error);
    1282                 :          0 :                         return error;
    1283                 :            :                 }
    1284                 :            :         }
    1285                 :            : 
    1286                 :          0 :         pci_fixup_device(pci_fixup_suspend, pci_dev);
    1287                 :            : 
    1288   [ #  #  #  # ]:          0 :         if (pm && pm->runtime_suspend
    1289   [ #  #  #  # ]:          0 :             && !pci_dev->state_saved && pci_dev->current_state != PCI_D0
    1290         [ #  # ]:          0 :             && pci_dev->current_state != PCI_UNKNOWN) {
    1291   [ #  #  #  #  :          0 :                 pci_WARN_ONCE(pci_dev, pci_dev->current_state != prev,
                   #  # ]
    1292                 :            :                               "PCI PM: State of device not saved by %pS\n",
    1293                 :            :                               pm->runtime_suspend);
    1294                 :          0 :                 return 0;
    1295                 :            :         }
    1296                 :            : 
    1297         [ #  # ]:          0 :         if (!pci_dev->state_saved) {
    1298                 :          0 :                 pci_save_state(pci_dev);
    1299                 :          0 :                 pci_finish_runtime_suspend(pci_dev);
    1300                 :            :         }
    1301                 :            : 
    1302                 :            :         return 0;
    1303                 :            : }
    1304                 :            : 
    1305                 :          0 : static int pci_pm_runtime_resume(struct device *dev)
    1306                 :            : {
    1307                 :          0 :         struct pci_dev *pci_dev = to_pci_dev(dev);
    1308         [ #  # ]:          0 :         const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
    1309                 :          0 :         pci_power_t prev_state = pci_dev->current_state;
    1310                 :          0 :         int error = 0;
    1311                 :            : 
    1312                 :            :         /*
    1313                 :            :          * Restoring config space is necessary even if the device is not bound
    1314                 :            :          * to a driver because although we left it in D0, it may have gone to
    1315                 :            :          * D3cold when the bridge above it runtime suspended.
    1316                 :            :          */
    1317                 :          0 :         pci_restore_standard_config(pci_dev);
    1318                 :            : 
    1319         [ #  # ]:          0 :         if (!pci_dev->driver)
    1320                 :            :                 return 0;
    1321                 :            : 
    1322                 :          0 :         pci_fixup_device(pci_fixup_resume_early, pci_dev);
    1323                 :          0 :         pci_pm_default_resume(pci_dev);
    1324                 :            : 
    1325         [ #  # ]:          0 :         if (prev_state == PCI_D3cold)
    1326                 :          0 :                 pci_bridge_wait_for_secondary_bus(pci_dev);
    1327                 :            : 
    1328   [ #  #  #  # ]:          0 :         if (pm && pm->runtime_resume)
    1329                 :          0 :                 error = pm->runtime_resume(dev);
    1330                 :            : 
    1331                 :          0 :         pci_dev->runtime_d3cold = false;
    1332                 :            : 
    1333                 :          0 :         return error;
    1334                 :            : }
    1335                 :            : 
    1336                 :          0 : static int pci_pm_runtime_idle(struct device *dev)
    1337                 :            : {
    1338                 :          0 :         struct pci_dev *pci_dev = to_pci_dev(dev);
    1339         [ #  # ]:          0 :         const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
    1340                 :            : 
    1341                 :            :         /*
    1342                 :            :          * If pci_dev->driver is not set (unbound), the device should
    1343                 :            :          * always remain in D0 regardless of the runtime PM status
    1344                 :            :          */
    1345         [ #  # ]:          0 :         if (!pci_dev->driver)
    1346                 :            :                 return 0;
    1347                 :            : 
    1348         [ #  # ]:          0 :         if (!pm)
    1349                 :            :                 return -ENOSYS;
    1350                 :            : 
    1351         [ #  # ]:          0 :         if (pm->runtime_idle)
    1352                 :          0 :                 return pm->runtime_idle(dev);
    1353                 :            : 
    1354                 :            :         return 0;
    1355                 :            : }
    1356                 :            : 
    1357                 :            : static const struct dev_pm_ops pci_dev_pm_ops = {
    1358                 :            :         .prepare = pci_pm_prepare,
    1359                 :            :         .complete = pci_pm_complete,
    1360                 :            :         .suspend = pci_pm_suspend,
    1361                 :            :         .suspend_late = pci_pm_suspend_late,
    1362                 :            :         .resume = pci_pm_resume,
    1363                 :            :         .freeze = pci_pm_freeze,
    1364                 :            :         .thaw = pci_pm_thaw,
    1365                 :            :         .poweroff = pci_pm_poweroff,
    1366                 :            :         .poweroff_late = pci_pm_poweroff_late,
    1367                 :            :         .restore = pci_pm_restore,
    1368                 :            :         .suspend_noirq = pci_pm_suspend_noirq,
    1369                 :            :         .resume_noirq = pci_pm_resume_noirq,
    1370                 :            :         .freeze_noirq = pci_pm_freeze_noirq,
    1371                 :            :         .thaw_noirq = pci_pm_thaw_noirq,
    1372                 :            :         .poweroff_noirq = pci_pm_poweroff_noirq,
    1373                 :            :         .restore_noirq = pci_pm_restore_noirq,
    1374                 :            :         .runtime_suspend = pci_pm_runtime_suspend,
    1375                 :            :         .runtime_resume = pci_pm_runtime_resume,
    1376                 :            :         .runtime_idle = pci_pm_runtime_idle,
    1377                 :            : };
    1378                 :            : 
    1379                 :            : #define PCI_PM_OPS_PTR  (&pci_dev_pm_ops)
    1380                 :            : 
    1381                 :            : #else /* !CONFIG_PM */
    1382                 :            : 
    1383                 :            : #define pci_pm_runtime_suspend  NULL
    1384                 :            : #define pci_pm_runtime_resume   NULL
    1385                 :            : #define pci_pm_runtime_idle     NULL
    1386                 :            : 
    1387                 :            : #define PCI_PM_OPS_PTR  NULL
    1388                 :            : 
    1389                 :            : #endif /* !CONFIG_PM */
    1390                 :            : 
    1391                 :            : /**
    1392                 :            :  * __pci_register_driver - register a new pci driver
    1393                 :            :  * @drv: the driver structure to register
    1394                 :            :  * @owner: owner module of drv
    1395                 :            :  * @mod_name: module name string
    1396                 :            :  *
    1397                 :            :  * Adds the driver structure to the list of registered drivers.
    1398                 :            :  * Returns a negative value on error, otherwise 0.
    1399                 :            :  * If no error occurred, the driver remains registered even if
    1400                 :            :  * no device was claimed during registration.
    1401                 :            :  */
    1402                 :        352 : int __pci_register_driver(struct pci_driver *drv, struct module *owner,
    1403                 :            :                           const char *mod_name)
    1404                 :            : {
    1405                 :            :         /* initialize common driver fields */
    1406                 :        352 :         drv->driver.name = drv->name;
    1407                 :        352 :         drv->driver.bus = &pci_bus_type;
    1408                 :        352 :         drv->driver.owner = owner;
    1409                 :        352 :         drv->driver.mod_name = mod_name;
    1410                 :        352 :         drv->driver.groups = drv->groups;
    1411                 :            : 
    1412                 :        352 :         spin_lock_init(&drv->dynids.lock);
    1413                 :        352 :         INIT_LIST_HEAD(&drv->dynids.list);
    1414                 :            : 
    1415                 :            :         /* register with core */
    1416                 :        352 :         return driver_register(&drv->driver);
    1417                 :            : }
    1418                 :            : EXPORT_SYMBOL(__pci_register_driver);
    1419                 :            : 
    1420                 :            : /**
    1421                 :            :  * pci_unregister_driver - unregister a pci driver
    1422                 :            :  * @drv: the driver structure to unregister
    1423                 :            :  *
    1424                 :            :  * Deletes the driver structure from the list of registered PCI drivers,
    1425                 :            :  * gives it a chance to clean up by calling its remove() function for
    1426                 :            :  * each device it was responsible for, and marks those devices as
    1427                 :            :  * driverless.
    1428                 :            :  */
    1429                 :            : 
    1430                 :         11 : void pci_unregister_driver(struct pci_driver *drv)
    1431                 :            : {
    1432                 :         11 :         driver_unregister(&drv->driver);
    1433                 :         11 :         pci_free_dynids(drv);
    1434                 :         11 : }
    1435                 :            : EXPORT_SYMBOL(pci_unregister_driver);
    1436                 :            : 
    1437                 :            : static struct pci_driver pci_compat_driver = {
    1438                 :            :         .name = "compat"
    1439                 :            : };
    1440                 :            : 
    1441                 :            : /**
    1442                 :            :  * pci_dev_driver - get the pci_driver of a device
    1443                 :            :  * @dev: the device to query
    1444                 :            :  *
    1445                 :            :  * Returns the appropriate pci_driver structure or %NULL if there is no
    1446                 :            :  * registered driver for the device.
    1447                 :            :  */
    1448                 :          0 : struct pci_driver *pci_dev_driver(const struct pci_dev *dev)
    1449                 :            : {
    1450         [ #  # ]:          0 :         if (dev->driver)
    1451                 :            :                 return dev->driver;
    1452                 :            :         else {
    1453                 :            :                 int i;
    1454         [ #  # ]:          0 :                 for (i = 0; i <= PCI_ROM_RESOURCE; i++)
    1455         [ #  # ]:          0 :                         if (dev->resource[i].flags & IORESOURCE_BUSY)
    1456                 :            :                                 return &pci_compat_driver;
    1457                 :            :         }
    1458                 :            :         return NULL;
    1459                 :            : }
    1460                 :            : EXPORT_SYMBOL(pci_dev_driver);
    1461                 :            : 
    1462                 :            : /**
    1463                 :            :  * pci_bus_match - Tell if a PCI device structure has a matching PCI device id structure
    1464                 :            :  * @dev: the PCI device structure to match against
    1465                 :            :  * @drv: the device driver to search for matching PCI device id structures
    1466                 :            :  *
    1467                 :            :  * Used by a driver to check whether a PCI device present in the
    1468                 :            :  * system is in its list of supported devices. Returns the matching
    1469                 :            :  * pci_device_id structure or %NULL if there is no match.
    1470                 :            :  */
    1471                 :       2464 : static int pci_bus_match(struct device *dev, struct device_driver *drv)
    1472                 :            : {
    1473                 :       2464 :         struct pci_dev *pci_dev = to_pci_dev(dev);
    1474                 :       2464 :         struct pci_driver *pci_drv;
    1475                 :       2464 :         const struct pci_device_id *found_id;
    1476                 :            : 
    1477         [ +  - ]:       2464 :         if (!pci_dev->match_driver)
    1478                 :            :                 return 0;
    1479                 :            : 
    1480                 :       2464 :         pci_drv = to_pci_driver(drv);
    1481                 :       2464 :         found_id = pci_match_device(pci_drv, pci_dev);
    1482         [ +  + ]:       2464 :         if (found_id)
    1483                 :         55 :                 return 1;
    1484                 :            : 
    1485                 :            :         return 0;
    1486                 :            : }
    1487                 :            : 
    1488                 :            : /**
    1489                 :            :  * pci_dev_get - increments the reference count of the pci device structure
    1490                 :            :  * @dev: the device being referenced
    1491                 :            :  *
    1492                 :            :  * Each live reference to a device should be refcounted.
    1493                 :            :  *
    1494                 :            :  * Drivers for PCI devices should normally record such references in
    1495                 :            :  * their probe() methods, when they bind to a device, and release
    1496                 :            :  * them by calling pci_dev_put(), in their disconnect() methods.
    1497                 :            :  *
    1498                 :            :  * A pointer to the device with the incremented reference counter is returned.
    1499                 :            :  */
    1500                 :        506 : struct pci_dev *pci_dev_get(struct pci_dev *dev)
    1501                 :            : {
    1502   [ +  +  +  - ]:        506 :         if (dev)
    1503                 :         66 :                 get_device(&dev->dev);
    1504                 :         55 :         return dev;
    1505                 :            : }
    1506                 :            : EXPORT_SYMBOL(pci_dev_get);
    1507                 :            : 
    1508                 :            : /**
    1509                 :            :  * pci_dev_put - release a use of the pci device structure
    1510                 :            :  * @dev: device that's been disconnected
    1511                 :            :  *
    1512                 :            :  * Must be called when a user of a device is finished with it.  When the last
    1513                 :            :  * user of the device calls this function, the memory of the device is freed.
    1514                 :            :  */
    1515                 :       1375 : void pci_dev_put(struct pci_dev *dev)
    1516                 :            : {
    1517   [ +  +  -  -  :       1375 :         if (dev)
                   +  - ]
    1518                 :        671 :                 put_device(&dev->dev);
    1519                 :       1342 : }
    1520                 :            : EXPORT_SYMBOL(pci_dev_put);
    1521                 :            : 
    1522                 :        649 : static int pci_uevent(struct device *dev, struct kobj_uevent_env *env)
    1523                 :            : {
    1524                 :        649 :         struct pci_dev *pdev;
    1525                 :            : 
    1526         [ +  - ]:        649 :         if (!dev)
    1527                 :            :                 return -ENODEV;
    1528                 :            : 
    1529                 :        649 :         pdev = to_pci_dev(dev);
    1530                 :            : 
    1531         [ +  - ]:        649 :         if (add_uevent_var(env, "PCI_CLASS=%04X", pdev->class))
    1532                 :            :                 return -ENOMEM;
    1533                 :            : 
    1534         [ +  - ]:        649 :         if (add_uevent_var(env, "PCI_ID=%04X:%04X", pdev->vendor, pdev->device))
    1535                 :            :                 return -ENOMEM;
    1536                 :            : 
    1537         [ +  - ]:        649 :         if (add_uevent_var(env, "PCI_SUBSYS_ID=%04X:%04X", pdev->subsystem_vendor,
    1538                 :        649 :                            pdev->subsystem_device))
    1539                 :            :                 return -ENOMEM;
    1540                 :            : 
    1541   [ +  -  +  - ]:       1298 :         if (add_uevent_var(env, "PCI_SLOT_NAME=%s", pci_name(pdev)))
    1542                 :            :                 return -ENOMEM;
    1543                 :            : 
    1544         [ -  + ]:        649 :         if (add_uevent_var(env, "MODALIAS=pci:v%08Xd%08Xsv%08Xsd%08Xbc%02Xsc%02Xi%02X",
    1545                 :        649 :                            pdev->vendor, pdev->device,
    1546                 :        649 :                            pdev->subsystem_vendor, pdev->subsystem_device,
    1547                 :        649 :                            (u8)(pdev->class >> 16), (u8)(pdev->class >> 8),
    1548                 :        649 :                            (u8)(pdev->class)))
    1549                 :          0 :                 return -ENOMEM;
    1550                 :            : 
    1551                 :            :         return 0;
    1552                 :            : }
    1553                 :            : 
    1554                 :            : #if defined(CONFIG_PCIEPORTBUS) || defined(CONFIG_EEH)
    1555                 :            : /**
    1556                 :            :  * pci_uevent_ers - emit a uevent during recovery path of PCI device
    1557                 :            :  * @pdev: PCI device undergoing error recovery
    1558                 :            :  * @err_type: type of error event
    1559                 :            :  */
    1560                 :          0 : void pci_uevent_ers(struct pci_dev *pdev, enum pci_ers_result err_type)
    1561                 :            : {
    1562                 :          0 :         int idx = 0;
    1563                 :          0 :         char *envp[3];
    1564                 :            : 
    1565   [ #  #  #  # ]:          0 :         switch (err_type) {
    1566                 :          0 :         case PCI_ERS_RESULT_NONE:
    1567                 :            :         case PCI_ERS_RESULT_CAN_RECOVER:
    1568                 :          0 :                 envp[idx++] = "ERROR_EVENT=BEGIN_RECOVERY";
    1569                 :          0 :                 envp[idx++] = "DEVICE_ONLINE=0";
    1570                 :          0 :                 break;
    1571                 :          0 :         case PCI_ERS_RESULT_RECOVERED:
    1572                 :          0 :                 envp[idx++] = "ERROR_EVENT=SUCCESSFUL_RECOVERY";
    1573                 :          0 :                 envp[idx++] = "DEVICE_ONLINE=1";
    1574                 :          0 :                 break;
    1575                 :          0 :         case PCI_ERS_RESULT_DISCONNECT:
    1576                 :          0 :                 envp[idx++] = "ERROR_EVENT=FAILED_RECOVERY";
    1577                 :          0 :                 envp[idx++] = "DEVICE_ONLINE=0";
    1578                 :          0 :                 break;
    1579                 :            :         default:
    1580                 :            :                 break;
    1581                 :            :         }
    1582                 :            : 
    1583                 :          0 :         if (idx > 0) {
    1584                 :          0 :                 envp[idx++] = NULL;
    1585                 :          0 :                 kobject_uevent_env(&pdev->dev.kobj, KOBJ_CHANGE, envp);
    1586                 :            :         }
    1587                 :          0 : }
    1588                 :            : #endif
    1589                 :            : 
    1590                 :          0 : static int pci_bus_num_vf(struct device *dev)
    1591                 :            : {
    1592                 :          0 :         return pci_num_vf(to_pci_dev(dev));
    1593                 :            : }
    1594                 :            : 
    1595                 :            : /**
    1596                 :            :  * pci_dma_configure - Setup DMA configuration
    1597                 :            :  * @dev: ptr to dev structure
    1598                 :            :  *
    1599                 :            :  * Function to update PCI devices's DMA configuration using the same
    1600                 :            :  * info from the OF node or ACPI node of host bridge's parent (if any).
    1601                 :            :  */
    1602                 :         55 : static int pci_dma_configure(struct device *dev)
    1603                 :            : {
    1604                 :         55 :         struct device *bridge;
    1605                 :         55 :         int ret = 0;
    1606                 :            : 
    1607                 :         55 :         bridge = pci_get_host_bridge_device(to_pci_dev(dev));
    1608                 :            : 
    1609                 :         55 :         if (IS_ENABLED(CONFIG_OF) && bridge->parent &&
    1610                 :            :             bridge->parent->of_node) {
    1611                 :            :                 ret = of_dma_configure(dev, bridge->parent->of_node, true);
    1612         [ +  - ]:         55 :         } else if (has_acpi_companion(bridge)) {
    1613         [ +  - ]:         55 :                 struct acpi_device *adev = to_acpi_device_node(bridge->fwnode);
    1614                 :            : 
    1615                 :         55 :                 ret = acpi_dma_configure(dev, acpi_get_dma_attr(adev));
    1616                 :            :         }
    1617                 :            : 
    1618                 :         55 :         pci_put_host_bridge_device(bridge);
    1619                 :         55 :         return ret;
    1620                 :            : }
    1621                 :            : 
    1622                 :            : struct bus_type pci_bus_type = {
    1623                 :            :         .name           = "pci",
    1624                 :            :         .match          = pci_bus_match,
    1625                 :            :         .uevent         = pci_uevent,
    1626                 :            :         .probe          = pci_device_probe,
    1627                 :            :         .remove         = pci_device_remove,
    1628                 :            :         .shutdown       = pci_device_shutdown,
    1629                 :            :         .dev_groups     = pci_dev_groups,
    1630                 :            :         .bus_groups     = pci_bus_groups,
    1631                 :            :         .drv_groups     = pci_drv_groups,
    1632                 :            :         .pm             = PCI_PM_OPS_PTR,
    1633                 :            :         .num_vf         = pci_bus_num_vf,
    1634                 :            :         .dma_configure  = pci_dma_configure,
    1635                 :            : };
    1636                 :            : EXPORT_SYMBOL(pci_bus_type);
    1637                 :            : 
    1638                 :            : #ifdef CONFIG_PCIEPORTBUS
    1639                 :          0 : static int pcie_port_bus_match(struct device *dev, struct device_driver *drv)
    1640                 :            : {
    1641                 :          0 :         struct pcie_device *pciedev;
    1642                 :          0 :         struct pcie_port_service_driver *driver;
    1643                 :            : 
    1644   [ #  #  #  # ]:          0 :         if (drv->bus != &pcie_port_bus_type || dev->bus != &pcie_port_bus_type)
    1645                 :            :                 return 0;
    1646                 :            : 
    1647                 :          0 :         pciedev = to_pcie_device(dev);
    1648                 :          0 :         driver = to_service_driver(drv);
    1649                 :            : 
    1650         [ #  # ]:          0 :         if (driver->service != pciedev->service)
    1651                 :            :                 return 0;
    1652                 :            : 
    1653   [ #  #  #  # ]:          0 :         if (driver->port_type != PCIE_ANY_PORT &&
    1654         [ #  # ]:          0 :             driver->port_type != pci_pcie_type(pciedev->port))
    1655                 :          0 :                 return 0;
    1656                 :            : 
    1657                 :            :         return 1;
    1658                 :            : }
    1659                 :            : 
    1660                 :            : struct bus_type pcie_port_bus_type = {
    1661                 :            :         .name           = "pci_express",
    1662                 :            :         .match          = pcie_port_bus_match,
    1663                 :            : };
    1664                 :            : EXPORT_SYMBOL_GPL(pcie_port_bus_type);
    1665                 :            : #endif
    1666                 :            : 
    1667                 :         11 : static int __init pci_driver_init(void)
    1668                 :            : {
    1669                 :         11 :         int ret;
    1670                 :            : 
    1671                 :         11 :         ret = bus_register(&pci_bus_type);
    1672         [ +  - ]:         11 :         if (ret)
    1673                 :            :                 return ret;
    1674                 :            : 
    1675                 :            : #ifdef CONFIG_PCIEPORTBUS
    1676                 :         11 :         ret = bus_register(&pcie_port_bus_type);
    1677         [ +  - ]:         11 :         if (ret)
    1678                 :            :                 return ret;
    1679                 :            : #endif
    1680                 :         11 :         dma_debug_add_bus(&pci_bus_type);
    1681                 :         11 :         return 0;
    1682                 :            : }
    1683                 :            : postcore_initcall(pci_driver_init);

Generated by: LCOV version 1.14