All of lore.kernel.org
 help / color / mirror / Atom feed
From: Mika Westerberg <mika.westerberg@linux.intel.com>
To: linux-usb@vger.kernel.org
Cc: Yehezkel Bernat <YehezkelShB@gmail.com>,
	Michael Jamet <michael.jamet@intel.com>,
	Lukas Wunner <lukas@wunner.de>,
	Andreas Noever <andreas.noever@gmail.com>,
	Gil Fine <gil.fine@linux.intel.com>,
	Mika Westerberg <mika.westerberg@linux.intel.com>
Subject: [PATCH 00/20] thunderbolt: Rework TMU and CLx support
Date: Mon, 29 May 2023 13:04:05 +0300	[thread overview]
Message-ID: <20230529100425.6125-1-mika.westerberg@linux.intel.com> (raw)

Hi all,

This series reworks the TMU and CLx support code to match better what we
do elsewhere in the driver and prepares for USB4v2 adaptive TMU support
that we are going to add in the subsequent series (I'm sending that out
later this week). I've split this part as separate from USB4v2 support
hoping that it makes reviewing them easier.

Gil Fine (1):
  thunderbolt: Introduce tb_switch_downstream_port()

Mika Westerberg (19):
  thunderbolt: Introduce tb_xdomain_downstream_port()
  thunderbolt: Fix a couple of style issues in TMU code
  thunderbolt: Drop useless 'unidirectional' parameter from tb_switch_tmu_is_enabled()
  thunderbolt: Rework Titan Ridge TMU objection disable function
  thunderbolt: Get rid of tb_switch_enable_tmu_1st_child()
  thunderbolt: Move TMU configuration to tb_enable_tmu()
  thunderbolt: Move tb_enable_tmu() close to other TMU functions
  thunderbolt: Check valid TMU configuration in tb_switch_tmu_configure()
  thunderbolt: Move CLx support functions into clx.c
  thunderbolt: Get rid of __tb_switch_[en|dis]able_clx()
  thunderbolt: Move CLx enabling into tb_enable_clx()
  thunderbolt: Switch CL states from enum to a bitmask
  thunderbolt: Check for first depth router in tb.c
  thunderbolt: Do not call CLx functions from TMU code
  thunderbolt: Prefix TMU post time log message with "TMU: "
  thunderbolt: Prefix CL state related log messages with "CLx: "
  thunderbolt: Initialize CL states from the hardware
  thunderbolt: Make tb_switch_clx_disable() return CL states that were enabled
  thunderbolt: Disable CL states when a DMA tunnel is established

 drivers/thunderbolt/Makefile  |   2 +-
 drivers/thunderbolt/acpi.c    |   5 +-
 drivers/thunderbolt/clx.c     | 416 ++++++++++++++++++++++++++++++++++
 drivers/thunderbolt/debugfs.c |  35 ++-
 drivers/thunderbolt/icm.c     |  24 +-
 drivers/thunderbolt/switch.c  | 378 +-----------------------------
 drivers/thunderbolt/tb.c      | 227 +++++++++++++------
 drivers/thunderbolt/tb.h      | 102 ++++-----
 drivers/thunderbolt/tmu.c     | 152 ++++---------
 drivers/thunderbolt/usb4.c    |   9 +-
 drivers/thunderbolt/xdomain.c |  16 +-
 11 files changed, 719 insertions(+), 647 deletions(-)
 create mode 100644 drivers/thunderbolt/clx.c

-- 
2.39.2


             reply	other threads:[~2023-05-29 10:04 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-05-29 10:04 Mika Westerberg [this message]
2023-05-29 10:04 ` [PATCH 01/20] thunderbolt: Introduce tb_switch_downstream_port() Mika Westerberg
2023-05-29 10:04 ` [PATCH 02/20] thunderbolt: Introduce tb_xdomain_downstream_port() Mika Westerberg
2023-05-29 10:04 ` [PATCH 03/20] thunderbolt: Fix a couple of style issues in TMU code Mika Westerberg
2023-05-29 10:04 ` [PATCH 04/20] thunderbolt: Drop useless 'unidirectional' parameter from tb_switch_tmu_is_enabled() Mika Westerberg
2023-05-29 10:04 ` [PATCH 05/20] thunderbolt: Rework Titan Ridge TMU objection disable function Mika Westerberg
2023-05-29 10:04 ` [PATCH 06/20] thunderbolt: Get rid of tb_switch_enable_tmu_1st_child() Mika Westerberg
2023-05-29 10:04 ` [PATCH 07/20] thunderbolt: Move TMU configuration to tb_enable_tmu() Mika Westerberg
2023-05-29 10:04 ` [PATCH 08/20] thunderbolt: Move tb_enable_tmu() close to other TMU functions Mika Westerberg
2023-05-29 10:04 ` [PATCH 09/20] thunderbolt: Check valid TMU configuration in tb_switch_tmu_configure() Mika Westerberg
2023-05-29 10:04 ` [PATCH 10/20] thunderbolt: Move CLx support functions into clx.c Mika Westerberg
2023-05-29 10:04 ` [PATCH 11/20] thunderbolt: Get rid of __tb_switch_[en|dis]able_clx() Mika Westerberg
2023-05-29 10:04 ` [PATCH 12/20] thunderbolt: Move CLx enabling into tb_enable_clx() Mika Westerberg
2023-05-29 10:04 ` [PATCH 13/20] thunderbolt: Switch CL states from enum to a bitmask Mika Westerberg
2023-05-29 10:04 ` [PATCH 14/20] thunderbolt: Check for first depth router in tb.c Mika Westerberg
2023-05-29 10:04 ` [PATCH 15/20] thunderbolt: Do not call CLx functions from TMU code Mika Westerberg
2023-05-29 10:04 ` [PATCH 16/20] thunderbolt: Prefix TMU post time log message with "TMU: " Mika Westerberg
2023-05-29 10:04 ` [PATCH 17/20] thunderbolt: Prefix CL state related log messages with "CLx: " Mika Westerberg
2023-05-29 10:04 ` [PATCH 18/20] thunderbolt: Initialize CL states from the hardware Mika Westerberg
2023-05-29 10:04 ` [PATCH 19/20] thunderbolt: Make tb_switch_clx_disable() return CL states that were enabled Mika Westerberg
2023-05-29 10:04 ` [PATCH 20/20] thunderbolt: Disable CL states when a DMA tunnel is established Mika Westerberg
2023-06-09  9:09 ` [PATCH 00/20] thunderbolt: Rework TMU and CLx support Mika Westerberg

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230529100425.6125-1-mika.westerberg@linux.intel.com \
    --to=mika.westerberg@linux.intel.com \
    --cc=YehezkelShB@gmail.com \
    --cc=andreas.noever@gmail.com \
    --cc=gil.fine@linux.intel.com \
    --cc=linux-usb@vger.kernel.org \
    --cc=lukas@wunner.de \
    --cc=michael.jamet@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.