An error occurred fetching the project authors.
  1. 06 Jul, 2016 1 commit
  2. 05 Jul, 2016 2 commits
  3. 01 Jul, 2016 1 commit
  4. 10 May, 2016 3 commits
  5. 12 Apr, 2016 2 commits
  6. 30 Mar, 2016 6 commits
  7. 09 Mar, 2016 1 commit
  8. 02 Mar, 2016 1 commit
  9. 28 Feb, 2016 1 commit
  10. 31 Jan, 2016 1 commit
  11. 20 Dec, 2015 1 commit
  12. 16 Dec, 2015 1 commit
  13. 01 Dec, 2015 1 commit
  14. 26 Nov, 2015 3 commits
  15. 18 Nov, 2015 1 commit
  16. 05 Oct, 2015 1 commit
  17. 04 Aug, 2015 2 commits
    • Avraham Stern's avatar
      iwlwifi: add new TLV capability flag for gscan support · 17564dde
      Avraham Stern authored
      Gscan is a scan feature which is supported on certain devices only,
      hence the need for a TLV flag for it. For devices that support gscan
      store the gscan capabilities advertised by the FW so the driver can
      report it to upper layers.
      Signed-off-by: default avatarAvraham Stern <avraham.stern@intel.com>
      Signed-off-by: default avatarEmmanuel Grumbach <emmanuel.grumbach@intel.com>
      17564dde
    • Matti Gottlieb's avatar
      iwlwifi: mvm: Add FW paging mechanism for the UMAC on PCI · a6c4fb44
      Matti Gottlieb authored
      Family 8000 products has 2 embedded processors, the first
      known as LMAC (lower MAC) and implements the functionality from
      previous products, the second one is known as UMAC (upper MAC)
      and is used mainly for driver offloads as well as new features.
      The UMAC is typically “less” real-time than the LMAC and is used
      for higher level controls.
      The UMAC's code/data size is estimated to be in the mega-byte arena,
      taking into account the code it needs to replace in the driver and
      the set of new features.
      
      In order to allow the UMAC to execute code that is bigger than its code
      memory, we allow the UMAC embedded processor to page out code pages on
      DRAM.
      
      When the device is master on the bus(PCI) the driver saves the UMAC's
      image pages in blocks of 32K in the DRAM and sends the layout of the
      pages to the FW. The FW can load / unload the pages on its own.
      
      The driver can support up to 1 MB of pages.
      
      Add paging mechanism for the UMAC on PCI in order to allow the program
      to use a larger virtual space while using less physical memory on the
      device.
      Signed-off-by: default avatarEran Harary <eran.harary@intel.com>
      Signed-off-by: default avatarMatti Gottlieb <matti.gottlieb@intel.com>
      Signed-off-by: default avatarEmmanuel Grumbach <emmanuel.grumbach@intel.com>
      a6c4fb44
  18. 03 Jun, 2015 1 commit
    • Johannes Berg's avatar
      iwlwifi: prepare for higher API/CAPA bits · 859d914c
      Johannes Berg authored
      Currently, loading the firmware fails when it has higher API or CAPA
      bits than the driver supports. That's an issue with integration.
      
      At the same time, actually using api[0] and capa[0] will become
      confusing when we also have api[1] and capa[1], and it's almost
      certain that we'll mix up the bits and use the bits for api[1] with
      api[0] by accident.
      
      Avoid all this by translating the API/CAPA bits to the regular kernel
      test_bit() format, and also providing wrapper functions. Also use the
      __bitwise__ facility of sparse to check that we're testing the right
      one.
      Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
      Signed-off-by: default avatarEmmanuel Grumbach <emmanuel.grumbach@intel.com>
      859d914c
  19. 28 May, 2015 1 commit
  20. 02 Apr, 2015 2 commits
  21. 01 Apr, 2015 1 commit
  22. 26 Mar, 2015 1 commit
  23. 24 Mar, 2015 1 commit
    • Larry Finger's avatar
      iwlwifi: Fix memory leak in iwl_req_fw_callback() · a71aaf66
      Larry Finger authored
      In this routine, kzalloc allocates a memory block. This allocation is
      freed in the error paths, but not in the normal exit, thus the allocation
      is leaked.
      
      The kmemleak facility was used to find the leak.
      Signed-off-by: default avatarLarry Finger <Larry.Finger@lwfinger.net>
      Cc: Johannes Berg <johannes.berg@intel.com>
      Cc: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
      Cc: Intel Linux Wireless <ilw@linux.intel.com>
      a71aaf66
  24. 12 Mar, 2015 2 commits
  25. 02 Mar, 2015 1 commit
    • Emmanuel Grumbach's avatar
      iwlwifi: mvm: add framework for triggers for fw dump · d2709ad7
      Emmanuel Grumbach authored
      Most of the time, the issues we want to debug with the
      firmware dump mechanism are transient. It is then very
      hard to stop the recording on time and get meaningful
      data.
      In order to solve this, I add here an infrastucture
      of triggers. The user will supply a list of triggers
      that will start / stop the recording. We have two types
      of triggers: start and stop. Start triggers can start a
      specific configuration. The stop triggers will be able to
      kick the collection of the data with the currently running
      configuration. These triggers are given to the driver by
      the .ucode file - just like the configuration.
      
      In the next patches, I'll add triggers in the code.
      Signed-off-by: default avatarEmmanuel Grumbach <emmanuel.grumbach@intel.com>
      d2709ad7
  26. 01 Mar, 2015 1 commit