LCOV - code coverage report
Current view: top level - drivers/net/ethernet/aquantia/atlantic - aq_pci_func.c (source / functions) Hit Total Coverage
Test: combined.info Lines: 100 209 47.8 %
Date: 2022-04-01 13:59:58 Functions: 6 16 37.5 %
Branches: 29 92 31.5 %

           Branch data     Line data    Source code
       1                 :            : // SPDX-License-Identifier: GPL-2.0-only
       2                 :            : /*
       3                 :            :  * aQuantia Corporation Network Driver
       4                 :            :  * Copyright (C) 2014-2019 aQuantia Corporation. All rights reserved
       5                 :            :  */
       6                 :            : 
       7                 :            : /* File aq_pci_func.c: Definition of PCI functions. */
       8                 :            : 
       9                 :            : #include <linux/interrupt.h>
      10                 :            : #include <linux/module.h>
      11                 :            : 
      12                 :            : #include "aq_main.h"
      13                 :            : #include "aq_nic.h"
      14                 :            : #include "aq_vec.h"
      15                 :            : #include "aq_hw.h"
      16                 :            : #include "aq_pci_func.h"
      17                 :            : #include "hw_atl/hw_atl_a0.h"
      18                 :            : #include "hw_atl/hw_atl_b0.h"
      19                 :            : #include "aq_filters.h"
      20                 :            : #include "aq_drvinfo.h"
      21                 :            : 
      22                 :            : static const struct pci_device_id aq_pci_tbl[] = {
      23                 :            :         { PCI_VDEVICE(AQUANTIA, AQ_DEVICE_ID_0001), },
      24                 :            :         { PCI_VDEVICE(AQUANTIA, AQ_DEVICE_ID_D100), },
      25                 :            :         { PCI_VDEVICE(AQUANTIA, AQ_DEVICE_ID_D107), },
      26                 :            :         { PCI_VDEVICE(AQUANTIA, AQ_DEVICE_ID_D108), },
      27                 :            :         { PCI_VDEVICE(AQUANTIA, AQ_DEVICE_ID_D109), },
      28                 :            : 
      29                 :            :         { PCI_VDEVICE(AQUANTIA, AQ_DEVICE_ID_AQC100), },
      30                 :            :         { PCI_VDEVICE(AQUANTIA, AQ_DEVICE_ID_AQC107), },
      31                 :            :         { PCI_VDEVICE(AQUANTIA, AQ_DEVICE_ID_AQC108), },
      32                 :            :         { PCI_VDEVICE(AQUANTIA, AQ_DEVICE_ID_AQC109), },
      33                 :            :         { PCI_VDEVICE(AQUANTIA, AQ_DEVICE_ID_AQC111), },
      34                 :            :         { PCI_VDEVICE(AQUANTIA, AQ_DEVICE_ID_AQC112), },
      35                 :            : 
      36                 :            :         { PCI_VDEVICE(AQUANTIA, AQ_DEVICE_ID_AQC100S), },
      37                 :            :         { PCI_VDEVICE(AQUANTIA, AQ_DEVICE_ID_AQC107S), },
      38                 :            :         { PCI_VDEVICE(AQUANTIA, AQ_DEVICE_ID_AQC108S), },
      39                 :            :         { PCI_VDEVICE(AQUANTIA, AQ_DEVICE_ID_AQC109S), },
      40                 :            :         { PCI_VDEVICE(AQUANTIA, AQ_DEVICE_ID_AQC111S), },
      41                 :            :         { PCI_VDEVICE(AQUANTIA, AQ_DEVICE_ID_AQC112S), },
      42                 :            : 
      43                 :            :         {}
      44                 :            : };
      45                 :            : 
      46                 :            : static const struct aq_board_revision_s hw_atl_boards[] = {
      47                 :            :         { AQ_DEVICE_ID_0001,    AQ_HWREV_1,     &hw_atl_ops_a0, &hw_atl_a0_caps_aqc107, },
      48                 :            :         { AQ_DEVICE_ID_D100,    AQ_HWREV_1,     &hw_atl_ops_a0, &hw_atl_a0_caps_aqc100, },
      49                 :            :         { AQ_DEVICE_ID_D107,    AQ_HWREV_1,     &hw_atl_ops_a0, &hw_atl_a0_caps_aqc107, },
      50                 :            :         { AQ_DEVICE_ID_D108,    AQ_HWREV_1,     &hw_atl_ops_a0, &hw_atl_a0_caps_aqc108, },
      51                 :            :         { AQ_DEVICE_ID_D109,    AQ_HWREV_1,     &hw_atl_ops_a0, &hw_atl_a0_caps_aqc109, },
      52                 :            : 
      53                 :            :         { AQ_DEVICE_ID_0001,    AQ_HWREV_2,     &hw_atl_ops_b0, &hw_atl_b0_caps_aqc107, },
      54                 :            :         { AQ_DEVICE_ID_D100,    AQ_HWREV_2,     &hw_atl_ops_b0, &hw_atl_b0_caps_aqc100, },
      55                 :            :         { AQ_DEVICE_ID_D107,    AQ_HWREV_2,     &hw_atl_ops_b0, &hw_atl_b0_caps_aqc107, },
      56                 :            :         { AQ_DEVICE_ID_D108,    AQ_HWREV_2,     &hw_atl_ops_b0, &hw_atl_b0_caps_aqc108, },
      57                 :            :         { AQ_DEVICE_ID_D109,    AQ_HWREV_2,     &hw_atl_ops_b0, &hw_atl_b0_caps_aqc109, },
      58                 :            : 
      59                 :            :         { AQ_DEVICE_ID_AQC100,  AQ_HWREV_ANY,   &hw_atl_ops_b1, &hw_atl_b0_caps_aqc107, },
      60                 :            :         { AQ_DEVICE_ID_AQC107,  AQ_HWREV_ANY,   &hw_atl_ops_b1, &hw_atl_b0_caps_aqc107, },
      61                 :            :         { AQ_DEVICE_ID_AQC108,  AQ_HWREV_ANY,   &hw_atl_ops_b1, &hw_atl_b0_caps_aqc108, },
      62                 :            :         { AQ_DEVICE_ID_AQC109,  AQ_HWREV_ANY,   &hw_atl_ops_b1, &hw_atl_b0_caps_aqc109, },
      63                 :            :         { AQ_DEVICE_ID_AQC111,  AQ_HWREV_ANY,   &hw_atl_ops_b1, &hw_atl_b0_caps_aqc111, },
      64                 :            :         { AQ_DEVICE_ID_AQC112,  AQ_HWREV_ANY,   &hw_atl_ops_b1, &hw_atl_b0_caps_aqc112, },
      65                 :            : 
      66                 :            :         { AQ_DEVICE_ID_AQC100S, AQ_HWREV_ANY,   &hw_atl_ops_b1, &hw_atl_b0_caps_aqc100s, },
      67                 :            :         { AQ_DEVICE_ID_AQC107S, AQ_HWREV_ANY,   &hw_atl_ops_b1, &hw_atl_b0_caps_aqc107s, },
      68                 :            :         { AQ_DEVICE_ID_AQC108S, AQ_HWREV_ANY,   &hw_atl_ops_b1, &hw_atl_b0_caps_aqc108s, },
      69                 :            :         { AQ_DEVICE_ID_AQC109S, AQ_HWREV_ANY,   &hw_atl_ops_b1, &hw_atl_b0_caps_aqc109s, },
      70                 :            :         { AQ_DEVICE_ID_AQC111S, AQ_HWREV_ANY,   &hw_atl_ops_b1, &hw_atl_b0_caps_aqc111s, },
      71                 :            :         { AQ_DEVICE_ID_AQC112S, AQ_HWREV_ANY,   &hw_atl_ops_b1, &hw_atl_b0_caps_aqc112s, },
      72                 :            : };
      73                 :            : 
      74                 :            : MODULE_DEVICE_TABLE(pci, aq_pci_tbl);
      75                 :            : 
      76                 :         78 : static int aq_pci_probe_get_hw_by_id(struct pci_dev *pdev,
      77                 :            :                                      const struct aq_hw_ops **ops,
      78                 :            :                                      const struct aq_hw_caps_s **caps)
      79                 :            : {
      80                 :         78 :         int i;
      81                 :            : 
      82         [ +  - ]:         78 :         if (pdev->vendor != PCI_VENDOR_ID_AQUANTIA)
      83                 :            :                 return -EINVAL;
      84                 :            : 
      85         [ +  - ]:        858 :         for (i = 0; i < ARRAY_SIZE(hw_atl_boards); i++) {
      86         [ +  + ]:        858 :                 if (hw_atl_boards[i].devid == pdev->device &&
      87         [ -  + ]:         78 :                     (hw_atl_boards[i].revision == AQ_HWREV_ANY ||
      88         [ #  # ]:          0 :                      hw_atl_boards[i].revision == pdev->revision)) {
      89                 :         78 :                         *ops = hw_atl_boards[i].ops;
      90                 :         78 :                         *caps = hw_atl_boards[i].caps;
      91                 :         78 :                         break;
      92                 :            :                 }
      93                 :            :         }
      94                 :            : 
      95         [ -  + ]:         78 :         if (i == ARRAY_SIZE(hw_atl_boards))
      96                 :          0 :                 return -EINVAL;
      97                 :            : 
      98                 :            :         return 0;
      99                 :            : }
     100                 :            : 
     101                 :         78 : int aq_pci_func_init(struct pci_dev *pdev)
     102                 :            : {
     103                 :         78 :         int err;
     104                 :            : 
     105                 :         78 :         err = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
     106         [ +  - ]:         78 :         if (!err) {
     107                 :         78 :                 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
     108                 :            : 
     109                 :            :         }
     110         [ -  + ]:         78 :         if (err) {
     111                 :          0 :                 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
     112         [ #  # ]:          0 :                 if (!err)
     113                 :          0 :                         err = pci_set_consistent_dma_mask(pdev,
     114                 :            :                                                           DMA_BIT_MASK(32));
     115                 :            :         }
     116         [ -  + ]:         78 :         if (err != 0) {
     117                 :          0 :                 err = -ENOSR;
     118                 :          0 :                 goto err_exit;
     119                 :            :         }
     120                 :            : 
     121                 :         78 :         err = pci_request_regions(pdev, AQ_CFG_DRV_NAME "_mmio");
     122         [ -  + ]:         78 :         if (err < 0)
     123                 :          0 :                 goto err_exit;
     124                 :            : 
     125                 :         78 :         pci_set_master(pdev);
     126                 :            : 
     127                 :         78 :         return 0;
     128                 :            : 
     129                 :            : err_exit:
     130                 :            :         return err;
     131                 :            : }
     132                 :            : 
     133                 :         33 : int aq_pci_func_alloc_irq(struct aq_nic_s *self, unsigned int i,
     134                 :            :                           char *name, irq_handler_t irq_handler,
     135                 :            :                           void *irq_arg, cpumask_t *affinity_mask)
     136                 :            : {
     137                 :         33 :         struct pci_dev *pdev = self->pdev;
     138                 :         33 :         int err;
     139                 :            : 
     140         [ -  + ]:         33 :         if (pdev->msix_enabled || pdev->msi_enabled)
     141                 :          0 :                 err = request_irq(pci_irq_vector(pdev, i), irq_handler, 0,
     142                 :            :                                   name, irq_arg);
     143                 :            :         else
     144                 :         33 :                 err = request_irq(pci_irq_vector(pdev, i), aq_vec_isr_legacy,
     145                 :            :                                   IRQF_SHARED, name, irq_arg);
     146                 :            : 
     147         [ +  - ]:         33 :         if (err >= 0) {
     148                 :         33 :                 self->msix_entry_mask |= (1 << i);
     149                 :            : 
     150   [ -  +  -  - ]:         33 :                 if (pdev->msix_enabled && affinity_mask)
     151                 :          0 :                         irq_set_affinity_hint(pci_irq_vector(pdev, i),
     152                 :            :                                               affinity_mask);
     153                 :            :         }
     154                 :            : 
     155                 :         33 :         return err;
     156                 :            : }
     157                 :            : 
     158                 :          0 : void aq_pci_func_free_irqs(struct aq_nic_s *self)
     159                 :            : {
     160                 :          0 :         struct pci_dev *pdev = self->pdev;
     161                 :          0 :         unsigned int i;
     162                 :          0 :         void *irq_data;
     163                 :            : 
     164         [ #  # ]:          0 :         for (i = 32U; i--;) {
     165         [ #  # ]:          0 :                 if (!((1U << i) & self->msix_entry_mask))
     166                 :          0 :                         continue;
     167   [ #  #  #  # ]:          0 :                 if (self->aq_nic_cfg.link_irq_vec &&
     168                 :            :                     i == self->aq_nic_cfg.link_irq_vec)
     169                 :            :                         irq_data = self;
     170         [ #  # ]:          0 :                 else if (i < AQ_CFG_VECS_MAX)
     171                 :          0 :                         irq_data = self->aq_vec[i];
     172                 :            :                 else
     173                 :          0 :                         continue;
     174                 :            : 
     175         [ #  # ]:          0 :                 if (pdev->msix_enabled)
     176                 :          0 :                         irq_set_affinity_hint(pci_irq_vector(pdev, i), NULL);
     177                 :          0 :                 free_irq(pci_irq_vector(pdev, i), irq_data);
     178                 :          0 :                 self->msix_entry_mask &= ~(1U << i);
     179                 :            :         }
     180                 :          0 : }
     181                 :            : 
     182                 :         78 : unsigned int aq_pci_func_get_irq_type(struct aq_nic_s *self)
     183                 :            : {
     184         [ +  - ]:         78 :         if (self->pdev->msix_enabled)
     185                 :            :                 return AQ_HW_IRQ_MSIX;
     186         [ -  + ]:         78 :         if (self->pdev->msi_enabled)
     187                 :          0 :                 return AQ_HW_IRQ_MSI;
     188                 :            : 
     189                 :            :         return AQ_HW_IRQ_LEGACY;
     190                 :            : }
     191                 :            : 
     192                 :         45 : static void aq_pci_free_irq_vectors(struct aq_nic_s *self)
     193                 :            : {
     194                 :         45 :         pci_free_irq_vectors(self->pdev);
     195                 :         45 : }
     196                 :            : 
     197                 :         78 : static int aq_pci_probe(struct pci_dev *pdev,
     198                 :            :                         const struct pci_device_id *pci_id)
     199                 :            : {
     200                 :         78 :         struct net_device *ndev;
     201                 :         78 :         resource_size_t mmio_pa;
     202                 :         78 :         struct aq_nic_s *self;
     203                 :         78 :         u32 numvecs;
     204                 :         78 :         u32 bar;
     205                 :         78 :         int err;
     206                 :            : 
     207                 :         78 :         err = pci_enable_device(pdev);
     208         [ +  - ]:         78 :         if (err)
     209                 :            :                 return err;
     210                 :            : 
     211                 :         78 :         err = aq_pci_func_init(pdev);
     212         [ -  + ]:         78 :         if (err)
     213                 :          0 :                 goto err_pci_func;
     214                 :            : 
     215                 :         78 :         ndev = aq_ndev_alloc();
     216         [ -  + ]:         78 :         if (!ndev) {
     217                 :          0 :                 err = -ENOMEM;
     218                 :          0 :                 goto err_ndev;
     219                 :            :         }
     220                 :            : 
     221                 :         78 :         self = netdev_priv(ndev);
     222                 :         78 :         self->pdev = pdev;
     223                 :         78 :         SET_NETDEV_DEV(ndev, &pdev->dev);
     224                 :         78 :         pci_set_drvdata(pdev, self);
     225                 :            : 
     226                 :         78 :         mutex_init(&self->fwreq_mutex);
     227                 :            : 
     228                 :         78 :         err = aq_pci_probe_get_hw_by_id(pdev, &self->aq_hw_ops,
     229                 :         78 :                                         &aq_nic_get_cfg(self)->aq_hw_caps);
     230         [ -  + ]:         78 :         if (err)
     231                 :          0 :                 goto err_ioremap;
     232                 :            : 
     233                 :         78 :         self->aq_hw = kzalloc(sizeof(*self->aq_hw), GFP_KERNEL);
     234         [ -  + ]:         78 :         if (!self->aq_hw) {
     235                 :          0 :                 err = -ENOMEM;
     236                 :          0 :                 goto err_ioremap;
     237                 :            :         }
     238                 :         78 :         self->aq_hw->aq_nic_cfg = aq_nic_get_cfg(self);
     239                 :            : 
     240         [ +  - ]:         78 :         for (bar = 0; bar < 4; ++bar) {
     241         [ +  - ]:         78 :                 if (IORESOURCE_MEM & pci_resource_flags(pdev, bar)) {
     242                 :         78 :                         resource_size_t reg_sz;
     243                 :            : 
     244                 :         78 :                         mmio_pa = pci_resource_start(pdev, bar);
     245         [ -  + ]:         78 :                         if (mmio_pa == 0U) {
     246                 :          0 :                                 err = -EIO;
     247                 :          0 :                                 goto err_free_aq_hw;
     248                 :            :                         }
     249                 :            : 
     250                 :         78 :                         reg_sz = pci_resource_len(pdev, bar);
     251         [ -  + ]:         78 :                         if ((reg_sz <= 24 /*ATL_REGS_SIZE*/)) {
     252                 :          0 :                                 err = -EIO;
     253                 :          0 :                                 goto err_free_aq_hw;
     254                 :            :                         }
     255                 :            : 
     256                 :         78 :                         self->aq_hw->mmio = ioremap(mmio_pa, reg_sz);
     257         [ -  + ]:         78 :                         if (!self->aq_hw->mmio) {
     258                 :          0 :                                 err = -EIO;
     259                 :          0 :                                 goto err_free_aq_hw;
     260                 :            :                         }
     261                 :            :                         break;
     262                 :            :                 }
     263                 :            :         }
     264                 :            : 
     265         [ -  + ]:         78 :         if (bar == 4) {
     266                 :          0 :                 err = -EIO;
     267                 :          0 :                 goto err_free_aq_hw;
     268                 :            :         }
     269                 :            : 
     270                 :         78 :         numvecs = min((u8)AQ_CFG_VECS_DEF,
     271                 :            :                       aq_nic_get_cfg(self)->aq_hw_caps->msix_irqs);
     272                 :         78 :         numvecs = min(numvecs, num_online_cpus());
     273                 :            :         /* Request IRQ vector for PTP */
     274                 :         78 :         numvecs += 1;
     275                 :            : 
     276                 :         78 :         numvecs += AQ_HW_SERVICE_IRQS;
     277                 :            :         /*enable interrupts */
     278                 :            : #if !AQ_CFG_FORCE_LEGACY_INT
     279                 :         78 :         err = pci_alloc_irq_vectors(self->pdev, 1, numvecs,
     280                 :            :                                     PCI_IRQ_MSIX | PCI_IRQ_MSI |
     281                 :            :                                     PCI_IRQ_LEGACY);
     282                 :            : 
     283         [ -  + ]:         78 :         if (err < 0)
     284                 :          0 :                 goto err_hwinit;
     285                 :         78 :         numvecs = err;
     286                 :            : #endif
     287                 :         78 :         self->irqvecs = numvecs;
     288                 :            : 
     289                 :            :         /* net device init */
     290                 :         78 :         aq_nic_cfg_start(self);
     291                 :            : 
     292                 :         78 :         aq_nic_ndev_init(self);
     293                 :            : 
     294                 :         78 :         err = aq_nic_ndev_register(self);
     295         [ +  + ]:         78 :         if (err < 0)
     296                 :         45 :                 goto err_register;
     297                 :            : 
     298                 :         33 :         aq_drvinfo_init(ndev);
     299                 :            : 
     300                 :         33 :         return 0;
     301                 :            : 
     302                 :            : err_register:
     303                 :         45 :         aq_nic_free_vectors(self);
     304                 :         45 :         aq_pci_free_irq_vectors(self);
     305                 :         45 : err_hwinit:
     306                 :         45 :         iounmap(self->aq_hw->mmio);
     307                 :         45 : err_free_aq_hw:
     308                 :         45 :         kfree(self->aq_hw);
     309                 :         45 : err_ioremap:
     310                 :         45 :         free_netdev(ndev);
     311                 :         45 : err_ndev:
     312                 :         45 :         pci_release_regions(pdev);
     313                 :         45 : err_pci_func:
     314                 :         45 :         pci_disable_device(pdev);
     315                 :            : 
     316                 :         45 :         return err;
     317                 :            : }
     318                 :            : 
     319                 :          0 : static void aq_pci_remove(struct pci_dev *pdev)
     320                 :            : {
     321         [ #  # ]:          0 :         struct aq_nic_s *self = pci_get_drvdata(pdev);
     322                 :            : 
     323         [ #  # ]:          0 :         if (self->ndev) {
     324                 :          0 :                 aq_clear_rxnfc_all_rules(self);
     325         [ #  # ]:          0 :                 if (self->ndev->reg_state == NETREG_REGISTERED)
     326                 :          0 :                         unregister_netdev(self->ndev);
     327                 :          0 :                 aq_nic_free_vectors(self);
     328                 :          0 :                 aq_pci_free_irq_vectors(self);
     329                 :          0 :                 iounmap(self->aq_hw->mmio);
     330                 :          0 :                 kfree(self->aq_hw);
     331                 :          0 :                 pci_release_regions(pdev);
     332                 :          0 :                 free_netdev(self->ndev);
     333                 :            :         }
     334                 :            : 
     335                 :          0 :         pci_disable_device(pdev);
     336                 :          0 : }
     337                 :            : 
     338                 :          0 : static void aq_pci_shutdown(struct pci_dev *pdev)
     339                 :            : {
     340                 :          0 :         struct aq_nic_s *self = pci_get_drvdata(pdev);
     341                 :            : 
     342                 :          0 :         aq_nic_shutdown(self);
     343                 :            : 
     344                 :          0 :         pci_disable_device(pdev);
     345                 :            : 
     346         [ #  # ]:          0 :         if (system_state == SYSTEM_POWER_OFF) {
     347                 :          0 :                 pci_wake_from_d3(pdev, false);
     348                 :          0 :                 pci_set_power_state(pdev, PCI_D3hot);
     349                 :            :         }
     350                 :          0 : }
     351                 :            : 
     352                 :          0 : static int aq_suspend_common(struct device *dev, bool deep)
     353                 :            : {
     354                 :          0 :         struct aq_nic_s *nic = pci_get_drvdata(to_pci_dev(dev));
     355                 :            : 
     356                 :          0 :         rtnl_lock();
     357                 :            : 
     358                 :          0 :         nic->power_state = AQ_HW_POWER_STATE_D3;
     359                 :          0 :         netif_device_detach(nic->ndev);
     360                 :          0 :         netif_tx_stop_all_queues(nic->ndev);
     361                 :            : 
     362         [ #  # ]:          0 :         if (netif_running(nic->ndev))
     363                 :          0 :                 aq_nic_stop(nic);
     364                 :            : 
     365         [ #  # ]:          0 :         if (deep) {
     366                 :          0 :                 aq_nic_deinit(nic, !nic->aq_hw->aq_nic_cfg->wol);
     367                 :          0 :                 aq_nic_set_power(nic);
     368                 :            :         }
     369                 :            : 
     370                 :          0 :         rtnl_unlock();
     371                 :            : 
     372                 :          0 :         return 0;
     373                 :            : }
     374                 :            : 
     375                 :          0 : static int atl_resume_common(struct device *dev, bool deep)
     376                 :            : {
     377                 :          0 :         struct pci_dev *pdev = to_pci_dev(dev);
     378                 :          0 :         struct aq_nic_s *nic;
     379                 :          0 :         int ret = 0;
     380                 :            : 
     381                 :          0 :         nic = pci_get_drvdata(pdev);
     382                 :            : 
     383                 :          0 :         rtnl_lock();
     384                 :            : 
     385                 :          0 :         pci_set_power_state(pdev, PCI_D0);
     386                 :          0 :         pci_restore_state(pdev);
     387                 :            : 
     388         [ #  # ]:          0 :         if (deep) {
     389                 :          0 :                 ret = aq_nic_init(nic);
     390         [ #  # ]:          0 :                 if (ret)
     391                 :          0 :                         goto err_exit;
     392                 :            :         }
     393                 :            : 
     394         [ #  # ]:          0 :         if (netif_running(nic->ndev)) {
     395                 :          0 :                 ret = aq_nic_start(nic);
     396         [ #  # ]:          0 :                 if (ret)
     397                 :          0 :                         goto err_exit;
     398                 :            :         }
     399                 :            : 
     400                 :          0 :         netif_device_attach(nic->ndev);
     401                 :          0 :         netif_tx_start_all_queues(nic->ndev);
     402                 :            : 
     403                 :          0 : err_exit:
     404                 :          0 :         rtnl_unlock();
     405                 :            : 
     406                 :          0 :         return ret;
     407                 :            : }
     408                 :            : 
     409                 :          0 : static int aq_pm_freeze(struct device *dev)
     410                 :            : {
     411                 :          0 :         return aq_suspend_common(dev, false);
     412                 :            : }
     413                 :            : 
     414                 :          0 : static int aq_pm_suspend_poweroff(struct device *dev)
     415                 :            : {
     416                 :          0 :         return aq_suspend_common(dev, true);
     417                 :            : }
     418                 :            : 
     419                 :          0 : static int aq_pm_thaw(struct device *dev)
     420                 :            : {
     421                 :          0 :         return atl_resume_common(dev, false);
     422                 :            : }
     423                 :            : 
     424                 :          0 : static int aq_pm_resume_restore(struct device *dev)
     425                 :            : {
     426                 :          0 :         return atl_resume_common(dev, true);
     427                 :            : }
     428                 :            : 
     429                 :            : static const struct dev_pm_ops aq_pm_ops = {
     430                 :            :         .suspend = aq_pm_suspend_poweroff,
     431                 :            :         .poweroff = aq_pm_suspend_poweroff,
     432                 :            :         .freeze = aq_pm_freeze,
     433                 :            :         .resume = aq_pm_resume_restore,
     434                 :            :         .restore = aq_pm_resume_restore,
     435                 :            :         .thaw = aq_pm_thaw,
     436                 :            : };
     437                 :            : 
     438                 :            : static struct pci_driver aq_pci_ops = {
     439                 :            :         .name = AQ_CFG_DRV_NAME,
     440                 :            :         .id_table = aq_pci_tbl,
     441                 :            :         .probe = aq_pci_probe,
     442                 :            :         .remove = aq_pci_remove,
     443                 :            :         .shutdown = aq_pci_shutdown,
     444                 :            : #ifdef CONFIG_PM
     445                 :            :         .driver.pm = &aq_pm_ops,
     446                 :            : #endif
     447                 :            : };
     448                 :            : 
     449                 :         78 : int aq_pci_func_register_driver(void)
     450                 :            : {
     451                 :         78 :         return pci_register_driver(&aq_pci_ops);
     452                 :            : }
     453                 :            : 
     454                 :          0 : void aq_pci_func_unregister_driver(void)
     455                 :            : {
     456                 :          0 :         pci_unregister_driver(&aq_pci_ops);
     457                 :          0 : }
     458                 :            : 

Generated by: LCOV version 1.14