1. 28 11月, 2022 1 次提交
  2. 30 5月, 2022 1 次提交
  3. 18 5月, 2022 1 次提交
  4. 10 3月, 2022 1 次提交
  5. 18 2月, 2022 4 次提交
  6. 03 2月, 2022 1 次提交
  7. 08 12月, 2021 3 次提交
  8. 27 11月, 2021 1 次提交
    • E
      iwlwifi: integrate with iwlmei · 6d19a5eb
      Emmanuel Grumbach 提交于
      iwlmei needs to know about the follwing events:
      
      * Association
      * De-association
      * Country Code change
      * SW Rfkill change
      * SAR table changes
      
      iwlmei can take the device away from us, so report the new
      rfkill type when this happens.
      Advertise the required data from the CSME firmware to the
      usersapce: mostly, the AP that the CSME firmware is currently
      associated to in case there is an active link protection
      session.
      Generate the HOST_ASSOC / HOST_DISSASSOC messages.
      
      Don't support WPA1 (non-RSNA) for now.
      Don't support shared wep either.
      We can then determine the AUTH parameter by checking the AKM.
      Feed the cipher from the key installation.
      
      SW Rfkill will be implemented later when cfg80211 will
      allow us to read the SW Rfkill state.
      Co-Developed-by: NAyala Beker <ayala.beker@intel.com>
      Signed-off-by: NAyala Beker <ayala.beker@intel.com>
      Signed-off-by: NEmmanuel Grumbach <emmanuel.grumbach@intel.com>
      
      v7: Ayala added her signed-off
          remove pointless function declaration
          fix a bug due to merge conflict in the HOST_ASSOC message
      v8: leave a print if we have a SAP connection on a device we do
          not support (yet)
      Signed-off-by: NKalle Valo <kvalo@codeaurora.org>
      Link: https://lore.kernel.org/r/20211112062814.7502-4-emmanuel.grumbach@intel.com
      6d19a5eb
  9. 28 10月, 2021 1 次提交
  10. 22 10月, 2021 4 次提交
  11. 29 8月, 2021 1 次提交
    • C
      intel: switch from 'pci_' to 'dma_' API · ebe9e651
      Christophe JAILLET 提交于
      The wrappers in include/linux/pci-dma-compat.h should go away.
      
      The patch has been generated with the coccinelle script below.
      
      It has been hand modified to use 'dma_set_mask_and_coherent()' instead of
      'pci_set_dma_mask()/pci_set_consistent_dma_mask()' when applicable.
      This is less verbose.
      
      It has been compile tested.
      
      @@
      @@
      -    PCI_DMA_BIDIRECTIONAL
      +    DMA_BIDIRECTIONAL
      
      @@
      @@
      -    PCI_DMA_TODEVICE
      +    DMA_TO_DEVICE
      
      @@
      @@
      -    PCI_DMA_FROMDEVICE
      +    DMA_FROM_DEVICE
      
      @@
      @@
      -    PCI_DMA_NONE
      +    DMA_NONE
      
      @@
      expression e1, e2, e3;
      @@
      -    pci_alloc_consistent(e1, e2, e3)
      +    dma_alloc_coherent(&e1->dev, e2, e3, GFP_)
      
      @@
      expression e1, e2, e3;
      @@
      -    pci_zalloc_consistent(e1, e2, e3)
      +    dma_alloc_coherent(&e1->dev, e2, e3, GFP_)
      
      @@
      expression e1, e2, e3, e4;
      @@
      -    pci_free_consistent(e1, e2, e3, e4)
      +    dma_free_coherent(&e1->dev, e2, e3, e4)
      
      @@
      expression e1, e2, e3, e4;
      @@
      -    pci_map_single(e1, e2, e3, e4)
      +    dma_map_single(&e1->dev, e2, e3, e4)
      
      @@
      expression e1, e2, e3, e4;
      @@
      -    pci_unmap_single(e1, e2, e3, e4)
      +    dma_unmap_single(&e1->dev, e2, e3, e4)
      
      @@
      expression e1, e2, e3, e4, e5;
      @@
      -    pci_map_page(e1, e2, e3, e4, e5)
      +    dma_map_page(&e1->dev, e2, e3, e4, e5)
      
      @@
      expression e1, e2, e3, e4;
      @@
      -    pci_unmap_page(e1, e2, e3, e4)
      +    dma_unmap_page(&e1->dev, e2, e3, e4)
      
      @@
      expression e1, e2, e3, e4;
      @@
      -    pci_map_sg(e1, e2, e3, e4)
      +    dma_map_sg(&e1->dev, e2, e3, e4)
      
      @@
      expression e1, e2, e3, e4;
      @@
      -    pci_unmap_sg(e1, e2, e3, e4)
      +    dma_unmap_sg(&e1->dev, e2, e3, e4)
      
      @@
      expression e1, e2, e3, e4;
      @@
      -    pci_dma_sync_single_for_cpu(e1, e2, e3, e4)
      +    dma_sync_single_for_cpu(&e1->dev, e2, e3, e4)
      
      @@
      expression e1, e2, e3, e4;
      @@
      -    pci_dma_sync_single_for_device(e1, e2, e3, e4)
      +    dma_sync_single_for_device(&e1->dev, e2, e3, e4)
      
      @@
      expression e1, e2, e3, e4;
      @@
      -    pci_dma_sync_sg_for_cpu(e1, e2, e3, e4)
      +    dma_sync_sg_for_cpu(&e1->dev, e2, e3, e4)
      
      @@
      expression e1, e2, e3, e4;
      @@
      -    pci_dma_sync_sg_for_device(e1, e2, e3, e4)
      +    dma_sync_sg_for_device(&e1->dev, e2, e3, e4)
      
      @@
      expression e1, e2;
      @@
      -    pci_dma_mapping_error(e1, e2)
      +    dma_mapping_error(&e1->dev, e2)
      
      @@
      expression e1, e2;
      @@
      -    pci_set_dma_mask(e1, e2)
      +    dma_set_mask(&e1->dev, e2)
      
      @@
      expression e1, e2;
      @@
      -    pci_set_consistent_dma_mask(e1, e2)
      +    dma_set_coherent_mask(&e1->dev, e2)
      Signed-off-by: NChristophe JAILLET <christophe.jaillet@wanadoo.fr>
      Signed-off-by: NKalle Valo <kvalo@codeaurora.org>
      Link: https://lore.kernel.org/r/f55043d0c847bfae60087707778563cf732a7bf9.1629619229.git.christophe.jaillet@wanadoo.fr
      ebe9e651
  12. 27 8月, 2021 3 次提交
  13. 22 6月, 2021 4 次提交
  14. 18 4月, 2021 1 次提交
  15. 14 4月, 2021 1 次提交
  16. 10 2月, 2021 4 次提交
  17. 05 2月, 2021 4 次提交
  18. 25 1月, 2021 2 次提交
  19. 10 12月, 2020 2 次提交