Skip to content
Snippets Groups Projects
  1. Apr 11, 2022
  2. Nov 24, 2021
  3. Nov 23, 2021
  4. Nov 17, 2021
  5. Nov 05, 2021
  6. Nov 03, 2021
  7. Oct 30, 2021
    • Sudeep Holla's avatar
      mailbox: pcc: Use PCC mailbox channel pointer instead of standard · 7b6da7fe
      Sudeep Holla authored
      
      Now that we have all the shared memory region information populated in
      the pcc_mbox_chan, let us propagate the pointer to the same as the
      return value to pcc_mbox_request channel.
      
      This eliminates the need for the individual users of PCC mailbox to
      parse the PCCT subspace entries and fetch the shmem information. This
      also eliminates the need for PCC mailbox controller to set con_priv to
      PCCT subspace entries. This is required as con_priv is private to the
      controller driver to attach private data associated with the channel and
      not meant to be used by the mailbox client/users.
      
      Let us convert all the users of pcc_mbox_{request,free}_channel to use
      new interface.
      
      Cc: Jean Delvare <jdelvare@suse.com>
      Signed-off-by: default avatarSudeep Holla <sudeep.holla@arm.com>
      Acked-by: default avatarWolfram Sang <wsa@kernel.org>
      Acked-by: default avatarGuenter Roeck <linux@roeck-us.net>
      Signed-off-by: default avatarJassi Brar <jaswinder.singh@linaro.org>
      7b6da7fe
  8. Oct 28, 2021
  9. Oct 27, 2021
  10. Oct 26, 2021
  11. Oct 22, 2021
  12. Oct 19, 2021
    • Rafael J. Wysocki's avatar
      ACPI: PM: Turn off wakeup power resources on _DSW/_PSW errors · a9a8f827
      Rafael J. Wysocki authored
      
      If acpi_device_sleep_wake() called by acpi_enable_wakeup_device_power()
      returns an error which means that the evaluation of either _DWS or
      _PSW has failed, turn off all of the device's wakeup power resources
      to be consistent with the clearing of dev->wakeup.prepare_count.
      
      Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
      a9a8f827
    • Rafael J. Wysocki's avatar
      ACPI: PM: Fix sharing of wakeup power resources · a2d7b2e0
      Rafael J. Wysocki authored
      
      If an ACPI wakeup power resource is shared between multiple devices,
      it may not be managed correctly.
      
      Suppose, for example, that two devices, A and B, share a wakeup power
      resource P whose wakeup_enabled flag is 0 initially.  Next, suppose
      that wakeup power is enabled for A and B, in this order, and disabled
      for B.  When wakeup power is enabled for A, P will be turned on and
      its wakeup_enabled flag will be set.  Next, when wakeup power is
      enabled for B, P will not be touched, because its wakeup_enabled flag
      is set.  Now, when wakeup power is disabled for B, P will be turned
      off which is incorrect, because A will still need P in order to signal
      wakeup.
      
      Moreover, if wakeup power is enabled for A and then disabled for B,
      the latter will cause P to be turned off incorrectly (it will be still
      needed by A), because acpi_disable_wakeup_device_power() is allowed
      to manipulate power resources when the wakeup.prepare_count counter
      of the given device is 0.
      
      While the first issue could be addressed by changing the
      wakeup_enabled power resource flag into a counter, addressing the
      second one requires modifying acpi_disable_wakeup_device_power() to
      do nothing when the target device's wakeup.prepare_count reference
      counter is zero and that would cause the new counter to be redundant.
      Namely, if acpi_disable_wakeup_device_power() is modified as per the
      above, every change of the new counter following a wakeup.prepare_count
      change would be reflected by the analogous change of the main reference
      counter of the given power resource.
      
      Accordingly, modify acpi_disable_wakeup_device_power() to do nothing
      when the target device's wakeup.prepare_count reference counter is
      zero and drop the power resource wakeup_enabled flag altogether.
      
      While at it, ensure that all of the power resources that can be
      turned off will be turned off when disabling device wakeup due to
      a power resource manipulation error, to prevent energy from being
      wasted.
      
      Fixes: b5d667eb ("ACPI / PM: Take unusual configurations of power resources into account")
      Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
      a2d7b2e0
    • Rafael J. Wysocki's avatar
      ACPI: PM: Turn off unused wakeup power resources · 7a63296d
      Rafael J. Wysocki authored
      
      If an ACPI power resource is found to be "on" during the
      initialization of the list of wakeup power resources of a device,
      it is reference counted and its wakeup_enabled flag is set, which is
      problematic if the deivce in question is the only user of the given
      power resource, it is never runtime-suspended and it is not allowed
      to wake up the system from sleep, because in that case the given
      power resource will stay "on" until the system reboots and energy
      will be wasted.
      
      It is better to simply turn off wakeup power resources that are "on"
      during the initialization unless their reference counters are not
      zero, because that may be the only opportunity to prevent them from
      staying in the "on" state all the time.
      
      Fixes: b5d667eb ("ACPI / PM: Take unusual configurations of power resources into account")
      Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
      7a63296d
    • Rafael J. Wysocki's avatar
      ACPI: PM: Check states of power resources during initialization · a1224f34
      Rafael J. Wysocki authored
      
      To avoid situations in which the actual states of certain ACPI power
      resources are not known just because they have never been referenced
      by any device configuration objects, check the initial states of all
      power resources as soon as they are found in the ACPI namespace (and
      fall back to turning them on if the state check fails).
      
      Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
      Tested-by: default avatarAndreas K. Huettel <andreas.huettel@ur.de>
      a1224f34
    • Rafael J. Wysocki's avatar
      ACPI: PM: Do not turn off power resources in unknown state · bc283685
      Rafael J. Wysocki authored
      Commit 6381195a ("ACPI: power: Rework turning off unused power
      resources") caused power resources in unknown state with reference
      counters equal to zero to be turned off too, but that caused issues
      to appear in the field, so modify the code to only turn off power
      resources that are known to be "on".
      
      Link: https://lore.kernel.org/linux-acpi/6faf4b92-78d5-47a4-63df-cc2bab7769d0@molgen.mpg.de/
      
      
      Fixes: 6381195a ("ACPI: power: Rework turning off unused power resources")
      Reported-by: default avatarAndreas K. Huettel <andreas.huettel@ur.de>
      Tested-by: default avatarAndreas K. Huettel <andreas.huettel@ur.de>
      Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
      Cc: 5.14+ <stable@vger.kernel.org> # 5.14+
      bc283685
  13. Oct 17, 2021
  14. Oct 15, 2021
    • Jonathan Cameron's avatar
      topology: Represent clusters of CPUs within a die · c5e22fef
      Jonathan Cameron authored
      Both ACPI and DT provide the ability to describe additional layers of
      topology between that of individual cores and higher level constructs
      such as the level at which the last level cache is shared.
      In ACPI this can be represented in PPTT as a Processor Hierarchy
      Node Structure [1] that is the parent of the CPU cores and in turn
      has a parent Processor Hierarchy Nodes Structure representing
      a higher level of topology.
      
      For example Kunpeng 920 has 6 or 8 clusters in each NUMA node, and each
      cluster has 4 cpus. All clusters share L3 cache data, but each cluster
      has local L3 tag. On the other hand, each clusters will share some
      internal system bus.
      
      +-----------------------------------+                          +---------+
      |  +------+    +------+             +--------------------------+         |
      |  | CPU0 |    | cpu1 |             |    +-----------+         |         |
      |  +------+    +------+             |    |           |         |         |
      |                                   +----+    L3     |         |         |
      |  +------+    +------+   cluster   |    |    tag    |         |         |
      |  | CPU2 |    | CPU3 |             |    |           |         |         |
      |  +------+    +------+             |    +-----------+         |         |
      |                                   |                          |         |
      +-----------------------------------+                          |         |
      +-----------------------------------+                          |         |
      |  +------+    +------+             +--------------------------+         |
      |  |      |    |      |             |    +-----------+         |         |
      |  +------+    +------+             |    |           |         |         |
      |                                   |    |    L3     |         |         |
      |  +------+    +------+             +----+    tag    |         |         |
      |  |      |    |      |             |    |           |         |         |
      |  +------+    +------+             |    +-----------+         |         |
      |                                   |                          |         |
      +-----------------------------------+                          |   L3    |
                                                                     |   data  |
      +-----------------------------------+                          |         |
      |  +------+    +------+             |    +-----------+         |         |
      |  |      |    |      |             |    |           |         |         |
      |  +------+    +------+             +----+    L3     |         |         |
      |                                   |    |    tag    |         |         |
      |  +------+    +------+             |    |           |         |         |
      |  |      |    |      |             |    +-----------+         |         |
      |  +------+    +------+             +--------------------------+         |
      +-----------------------------------|                          |         |
      +-----------------------------------|                          |         |
      |  +------+    +------+             +--------------------------+         |
      |  |      |    |      |             |    +-----------+         |         |
      |  +------+    +------+             |    |           |         |         |
      |                                   +----+    L3     |         |         |
      |  +------+    +------+             |    |    tag    |         |         |
      |  |      |    |      |             |    |           |         |         |
      |  +------+    +------+             |    +-----------+         |         |
      |                                   |                          |         |
      +-----------------------------------+                          |         |
      +-----------------------------------+                          |         |
      |  +------+    +------+             +--------------------------+         |
      |  |      |    |      |             |   +-----------+          |         |
      |  +------+    +------+             |   |           |          |         |
      |                                   |   |    L3     |          |         |
      |  +------+    +------+             +---+    tag    |          |         |
      |  |      |    |      |             |   |           |          |         |
      |  +------+    +------+             |   +-----------+          |         |
      |                                   |                          |         |
      +-----------------------------------+                          |         |
      +-----------------------------------+                          |         |
      |  +------+    +------+             +--------------------------+         |
      |  |      |    |      |             |  +-----------+           |         |
      |  +------+    +------+             |  |           |           |         |
      |                                   |  |    L3     |           |         |
      |  +------+    +------+             +--+    tag    |           |         |
      |  |      |    |      |             |  |           |           |         |
      |  +------+    +------+             |  +-----------+           |         |
      |                                   |                          +---------+
      +-----------------------------------+
      
      That means spreading tasks among clusters will bring more bandwidth
      while packing tasks within one cluster will lead to smaller cache
      synchronization latency. So both kernel and userspace will have
      a chance to leverage this topology to deploy tasks accordingly to
      achieve either smaller cache latency within one cluster or an even
      distribution of load among clusters for higher throughput.
      
      This patch exposes cluster topology to both kernel and userspace.
      Libraried like hwloc will know cluster by cluster_cpus and related
      sysfs attributes. PoC of HWLOC support at [2].
      
      Note this patch only handle the ACPI case.
      
      Special consideration is needed for SMT processors, where it is
      necessary to move 2 levels up the hierarchy from the leaf nodes
      (thus skipping the processor core level).
      
      Note that arm64 / ACPI does not provide any means of identifying
      a die level in the topology but that may be unrelate to the cluster
      level.
      
      [1] ACPI Specification 6.3 - section 5.2.29.1 processor hierarchy node
          structure (Type 0)
      [2] https://github.com/hisilicon/hwloc/tree/linux-cluster
      
      
      
      Signed-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
      Signed-off-by: default avatarTian Tao <tiantao6@hisilicon.com>
      Signed-off-by: default avatarBarry Song <song.bao.hua@hisilicon.com>
      Signed-off-by: default avatarPeter Zijlstra (Intel) <peterz@infradead.org>
      Link: https://lore.kernel.org/r/20210924085104.44806-2-21cnbao@gmail.com
      c5e22fef
  15. Oct 13, 2021
  16. Oct 12, 2021
  17. Oct 05, 2021
  18. Sep 28, 2021
Loading