From: Mika Westerberg <mika.westerberg@linux.intel.com> To: linux-kernel@vger.kernel.org Cc: Andreas Noever <andreas.noever@gmail.com>, Michael Jamet <michael.jamet@intel.com>, Yehezkel Bernat <YehezkelShB@gmail.com>, "Rafael J. Wysocki" <rjw@rjwysocki.net>, Len Brown <lenb@kernel.org>, Lukas Wunner <lukas@wunner.de>, Mario.Limonciello@dell.com, Anthony Wong <anthony.wong@canonical.com>, Rajmohan Mani <rajmohan.mani@intel.com>, Raanan Avargil <raanan.avargil@intel.com>, David Laight <David.Laight@ACULAB.COM>, Mika Westerberg <mika.westerberg@linux.intel.com>, linux-acpi@vger.kernel.org Subject: [PATCH v3 0/8] thunderbolt: Intel Ice Lake support Date: Mon, 19 Aug 2019 14:22:15 +0300 Message-ID: <20190819112223.15359-1-mika.westerberg@linux.intel.com> (raw) Hi all, This is third iteration of the patch series adding support for the Intel Ice Lake integrated Thunderbolt controller. The biggest difference from the previous discrete controllers is that the Ice Lake Thunderbolt controller is now integrated as part of the SoC. The firmware messages pretty much follow Titan Ridge but there are some differences as well (such as the new RTD3 veto notification). Also Ice Lake does not implement security levels so DMA protection is handled by IOMMU. The previous versions of the series can be found here: v2: https://lwn.net/Articles/795979/ v1: https://lwn.net/Articles/793066/ Changes from v2: * Moved ICL specific NHI ops into a separate file (nhi_ops.c) * Postpone rescan thread during resume when if get device connected notification from the firmware. This fixes an issue that happened occasionally when resuming with full chain of devices. The driver started to remove last devices in the chain even if they are still connected. * Move call to nhi->ops->init() before CM specific probe happens. * Added ack from Rafael Changes from v1: * Check !x86_apple_machine for Titan Ridge also. * Drop ioread32() when updating prod/cons because hardware ignores writes to the read-only parts of the register this allows us to save one read. * Remove Light Ridge specific handling in eeprom.c as it is not necessary after patch 4/8. * Moved RTD3 veto handling into separate functions to avoid code duplication. * Reworked struct nhi_ops so that it provides hooks such as runtime_suspend and so on. The NHI implementation then can use those hooks to implement whatever additional logic is needed. This should allow us to move those bits into a separate files in future if needed. I also looked whether we could replace quirk_apple_poweroff_thunderbolt() using struct nhi_ops as well but it turns out to be unsuitable. The reason is that the ACPI magic sequence needs to be done after PCI core has moved the device into D3. The NHI driver does not have easy means to do so. * Clarified comment in icl_nhi_suspend() * Added clarification comment to icl_nhi_force_power() * Use "Thunderbolt" instead of "TBT" in new GUID entries * Added reviewed tag from Yehezkel Mika Westerberg (8): thunderbolt: Correct path indices for PCIe tunnel thunderbolt: Move NVM upgrade support flag to struct icm thunderbolt: Use 32-bit writes when writing ring producer/consumer thunderbolt: Do not fail adding switch if some port is not implemented thunderbolt: Hide switch attributes that are not set thunderbolt: Expose active parts of NVM even if upgrade is not supported thunderbolt: Add support for Intel Ice Lake ACPI / property: Add two new Thunderbolt property GUIDs to the list drivers/acpi/property.c | 6 + drivers/thunderbolt/Makefile | 2 +- drivers/thunderbolt/ctl.c | 23 +++- drivers/thunderbolt/eeprom.c | 4 - drivers/thunderbolt/icm.c | 194 ++++++++++++++++++++++++++++++--- drivers/thunderbolt/nhi.c | 134 +++++++++++++++++++++-- drivers/thunderbolt/nhi.h | 22 ++++ drivers/thunderbolt/nhi_ops.c | 179 ++++++++++++++++++++++++++++++ drivers/thunderbolt/nhi_regs.h | 37 +++++++ drivers/thunderbolt/switch.c | 52 +++++++-- drivers/thunderbolt/tb_msgs.h | 16 ++- drivers/thunderbolt/tunnel.c | 4 +- include/linux/thunderbolt.h | 2 + 13 files changed, 622 insertions(+), 53 deletions(-) create mode 100644 drivers/thunderbolt/nhi_ops.c -- 2.23.0.rc1
next reply index Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top 2019-08-19 11:22 Mika Westerberg [this message] 2019-08-19 11:22 ` [PATCH v3 1/8] thunderbolt: Correct path indices for PCIe tunnel Mika Westerberg 2019-08-19 11:22 ` [PATCH v3 2/8] thunderbolt: Move NVM upgrade support flag to struct icm Mika Westerberg 2019-08-19 11:22 ` [PATCH v3 3/8] thunderbolt: Use 32-bit writes when writing ring producer/consumer Mika Westerberg 2019-08-19 11:22 ` [PATCH v3 4/8] thunderbolt: Do not fail adding switch if some port is not implemented Mika Westerberg 2019-08-19 11:22 ` [PATCH v3 5/8] thunderbolt: Hide switch attributes that are not set Mika Westerberg 2019-08-19 11:22 ` [PATCH v3 6/8] thunderbolt: Expose active parts of NVM even if upgrade is not supported Mika Westerberg 2019-08-19 11:22 ` [PATCH v3 7/8] thunderbolt: Add support for Intel Ice Lake Mika Westerberg 2019-08-19 11:22 ` [PATCH v3 8/8] ACPI / property: Add two new Thunderbolt property GUIDs to the list Mika Westerberg 2019-08-19 16:29 ` [PATCH v3 0/8] thunderbolt: Intel Ice Lake support Mario.Limonciello 2019-08-19 17:57 ` Mika Westerberg 2019-08-19 18:22 ` Mario.Limonciello 2019-08-19 19:36 ` Mario.Limonciello 2019-08-20 10:01 ` Mika Westerberg 2019-08-20 11:34 ` Lukas Wunner 2019-08-20 17:00 ` Mario.Limonciello 2019-08-26 9:20 ` 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=20190819112223.15359-1-mika.westerberg@linux.intel.com \ --to=mika.westerberg@linux.intel.com \ --cc=David.Laight@ACULAB.COM \ --cc=Mario.Limonciello@dell.com \ --cc=YehezkelShB@gmail.com \ --cc=andreas.noever@gmail.com \ --cc=anthony.wong@canonical.com \ --cc=lenb@kernel.org \ --cc=linux-acpi@vger.kernel.org \ --cc=linux-kernel@vger.kernel.org \ --cc=lukas@wunner.de \ --cc=michael.jamet@intel.com \ --cc=raanan.avargil@intel.com \ --cc=rajmohan.mani@intel.com \ --cc=rjw@rjwysocki.net \ /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
Linux-ACPI Archive on lore.kernel.org Archives are clonable: git clone --mirror https://lore.kernel.org/linux-acpi/0 linux-acpi/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 linux-acpi linux-acpi/ https://lore.kernel.org/linux-acpi \ linux-acpi@vger.kernel.org public-inbox-index linux-acpi Example config snippet for mirrors Newsgroup available over NNTP: nntp://nntp.lore.kernel.org/org.kernel.vger.linux-acpi AGPL code for this site: git clone https://public-inbox.org/public-inbox.git