1. 03 11月, 2017 4 次提交
  2. 18 10月, 2017 2 次提交
  3. 06 10月, 2017 10 次提交
    • L
      iwlwifi: remove dflt_pwr_limit from the transport · f2abcfa6
      Luca Coelho 提交于
      The default power limit read from the SPLC method in ACPI doesn't
      have anything to do with the transport and is only used in the opmode,
      so we can remove it from the trans.  Additionally, this value is only
      user when the opmode is starting, so we don't need to store it
      anywhere.
      
      Remove the dflt_pwr_limit element from the trans and move call to
      iwl_acpi_get_pwr_limit() call to mvm.
      Signed-off-by: NLuca Coelho <luciano.coelho@intel.com>
      f2abcfa6
    • L
      iwlwifi: acpi: move code that reads SPLC to acpi · 1184611e
      Luca Coelho 提交于
      Move most of the set_dflt_pwr_limit() function to acpi.c and make it
      return the pwr_limit value instead of setting directly.  Also rename
      it to iwl_acpi_get_pwr_limit().
      Signed-off-by: NLuca Coelho <luciano.coelho@intel.com>
      1184611e
    • L
      iwlwifi: acpi: remove a couple of unnecessary ifdefs · d953cdb8
      Luca Coelho 提交于
      Some of the #ifdef CONFIG_ACPI are not needed anymore, so they can be
      removed.
      Signed-off-by: NLuca Coelho <luciano.coelho@intel.com>
      d953cdb8
    • L
      iwlwifi: acpi: use iwl_acpi_get_wifi_pkg when reading reading SPLC · 45a5c6f6
      Luca Coelho 提交于
      Instead of finding the wifi package with its own code, we can reuse
      the new iwl_acpi_get_wifi_pkg() function when reading the default
      power limit from SPLC.
      Signed-off-by: NLuca Coelho <luciano.coelho@intel.com>
      45a5c6f6
    • L
      iwlwifi: acpi: move ACPI method definitions to acpi.h · 1c73acf5
      Luca Coelho 提交于
      Instead of defining each method where they are used and re-defining
      WIFI_DOMAIN in each one of them, move all the definitions to a central
      place and define the domain only a single time.
      Signed-off-by: NLuca Coelho <luciano.coelho@intel.com>
      1c73acf5
    • L
      iwlwifi: acpi: add common code to read from ACPI · 813df5ce
      Luca Coelho 提交于
      There are many places where the same process of invoking a method from
      ACPI is used, causing a lot of duplicate code.  To improve this,
      introduce a new function to get an ACPI object by invoking an ACPI
      method that can be reused.
      
      Additionally, since this function needs to be called when we only have
      the trans, the opmode or the device, introduce a new debug macro that
      gets the device as a parameter so it can be used in the new function.
      Signed-off-by: NLuca Coelho <luciano.coelho@intel.com>
      813df5ce
    • R
      iwlwifi: pcie: dump registers when HW becomes inaccessible · a6d24fad
      Rajat Jain 提交于
      We conclude the HW became inaccessible when we timeout waiting for
      a bit to be set in a memory mapped register (CSR_GP_CNTRL). This
      conclusion may not be true because the bit may not get set due to:
      - a firmware issue
      - a driver issue
      - a PCI bus issue
      - a platform issue
      There are a lot of such reports with really no good debug information
      beyond this message to help us.
      
      Add some debug information and attempt to dump the different register
      spaces at such a failure:
      
      * Dump some configuration space of device - this will tell us if
      something very basic is broken in the PCIe bus (so that configuration
      accesses are failing). If this works, the PCIe bus seems OK. If this
      does not work, it is definitely an PCIe issue.
      
      * Dump some memory mapped registers - if we're reading some sane'ish
      values, this will tell us that the PCIe bus is OK, but may be a firmware
      / driver issue. If this does not work, it may be a PCI configuration
      issue or a driver/firmware issue.
      
      * Dump parent and device's AER registers, will give us some straws to
      chew on.
      
      This is the sample output:
      [   13.082651] ------------[ cut here ]------------
      [   13.086791] iwlwifi 0000:01:00.0: iwlwifi transaction failed, dumping registers
      [   13.086793] iwlwifi 0000:01:00.0: iwlwifi device config registers:
      [   13.086893] iwlwifi 0000:01:00.0: 00000000: 095a8086 00100406 02800059 00000000 00000004 00000000 00000000 00000000
      [   13.086895] iwlwifi 0000:01:00.0: 00000020: 00000000 00000000 00000000 50108086 00000000 000000c8 00000000 00000100
      [   13.086901] iwlwifi 0000:01:00.0: iwlwifi device memory mapped registers:
      [   13.086989] iwlwifi 0000:01:00.0: 00000000: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff
      [   13.086991] iwlwifi 0000:01:00.0: 00000020: ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff
      [   13.086999] iwlwifi 0000:01:00.0: iwlwifi device AER capability structure:
      [   13.087033] iwlwifi 0000:01:00.0: 00000000: 14010001 00100000 00000000 00462031 00002000 00002000 00000014 40000001
      [   13.087034] iwlwifi 0000:01:00.0: 00000020: 0000000f d140000c 00000000
      [   13.087036] iwlwifi 0000:01:00.0: iwlwifi parent port (0000:00:1c.0) config registers:
      [   13.087074] iwlwifi 0000:00:1c.0: 00000000: 9d108086 00100506 060400f1 00810010 00000000 00000000 00010100 200000f0
      [   13.087075] iwlwifi 0000:00:1c.0: 00000020: d140d140 0001fff1 00000000 00000000 00000000 00000040 00000000 0006010b
      [   13.087087] ------------[ cut here ]------------
      [   13.087095] WARNING: CPU: 0 PID: 1759 at drivers/net/wireless/iwl7000/iwlwifi/pcie/trans.c:2082 iwl_trans_pcie_reclaim+0x1ee4/0x2b9a [iwlwifi]()
      [   13.087096] Timeout waiting for hardware access (CSR_GP_CNTRL 0xffffffff)
      Signed-off-by: NRajat Jain <rajatja@google.com>
      Signed-off-by: NLuca Coelho <luciano.coelho@intel.com>
      a6d24fad
    • S
      iwlwifi: pcie: dynamic Tx command queue size · dd05f9aa
      Shahar S Matityahu 提交于
      Devices in the A000 family can use a different size for the command queue.
      To allow this, make the command queue size configurable and set the size
      for A000 devices to 32.
      Signed-off-by: NShahar S Matityahu <shahar.s.matityahu@intel.com>
      Signed-off-by: NLuca Coelho <luciano.coelho@intel.com>
      dd05f9aa
    • O
      iwlwifi: add a new a000 device · d048b36b
      Oren Givon 提交于
      Add a new a000 device with PCI ID (0x2720, 0x0030).
      Signed-off-by: NOren Givon <oren.givon@intel.com>
      Signed-off-by: NLuca Coelho <luciano.coelho@intel.com>
      d048b36b
    • O
      iwlwifi: fix wrong struct for a000 device · f7f5873b
      Oren Givon 提交于
      The PCI ID (0x2720, 0x0070) was set with the config struct
      iwla000_2ax_cfg_hr instead of iwla000_2ac_cfg_hr_cdb.
      
      Fixes: 175b87c6 ("iwlwifi: add the new a000_2ax series")
      Signed-off-by: NOren Givon <oren.givon@intel.com>
      Signed-off-by: NLuca Coelho <luciano.coelho@intel.com>
      f7f5873b
  4. 24 8月, 2017 1 次提交
    • L
      iwlwifi: pcie: move rx workqueue initialization to iwl_trans_pcie_alloc() · 10a54d81
      Luca Coelho 提交于
      Work queues cannot be allocated when a mutex is held because the mutex
      may be in use and that would make it sleep.  Doing so generates the
      following splat with 4.13+:
      
      [   19.513298] ======================================================
      [   19.513429] WARNING: possible circular locking dependency detected
      [   19.513557] 4.13.0-rc5+ #6 Not tainted
      [   19.513638] ------------------------------------------------------
      [   19.513767] cpuhp/0/12 is trying to acquire lock:
      [   19.513867]  (&tz->lock){+.+.+.}, at: [<ffffffff924afebb>] thermal_zone_get_temp+0x5b/0xb0
      [   19.514047]
      [   19.514047] but task is already holding lock:
      [   19.514166]  (cpuhp_state){+.+.+.}, at: [<ffffffff91cc4baa>] cpuhp_thread_fun+0x3a/0x210
      [   19.514338]
      [   19.514338] which lock already depends on the new lock.
      
      This lock dependency already existed with previous kernel versions,
      but it was not detected until commit 49dfe2a6 ("cpuhotplug: Link
      lock stacks for hotplug callbacks") was introduced.
      Reported-by: NDavid Weinehall <david.weinehall@intel.com>
      Reported-by: NJiri Kosina <jikos@kernel.org>
      Signed-off-by: NLuca Coelho <luciano.coelho@intel.com>
      Signed-off-by: NKalle Valo <kvalo@codeaurora.org>
      10a54d81
  5. 18 8月, 2017 3 次提交
  6. 10 8月, 2017 3 次提交
  7. 09 8月, 2017 1 次提交
  8. 01 8月, 2017 4 次提交
  9. 21 7月, 2017 2 次提交
  10. 30 6月, 2017 4 次提交
  11. 29 6月, 2017 6 次提交