Lenovo ThinkPad X1 Yoga (Gen 3)
The Lenovo ThinkPad X1 Yoga, 3th generation (X1Y3) is a 2-in-1 convertible laptop introduced in 2018. There are several different models (20ld, , , ). Its design is closely related to the Lenovo ThinkPad X1 Carbon (Gen 6). It features a 14" screen, 8th-gen Intel Core processors (Kaby Lake), an integrated stylus, and integrated Intel UHD 620 graphics.
To ensure you have this version, install the package and run:
| Hardware | PCI/USB ID | Working? |
|---|---|---|
| Touchpad | (I2C) | Yes |
| TrackPoint | (I2C) | Yes |
| Touchscreen | 056a:5144 (?) | Yes |
| Pen | 056a:5146 | Yes |
| Keyboard | Yes | |
| GPU | 8086:5917 | Yes |
| Webcam | 04f2:b61e | Yes |
| Ethernet | 8086:15d7 | Yes |
| Bluetooth | 8087:0a2b | Yes |
| MicroSD card slot | 0bda:0328 | Yes |
| Audio | 8086:9d71 | Yes |
| Wireless | 8086:24fd | Yes |
| Mobile broadband | 8086:7360 (PCI mode)(USB mode) | Yes, in USB mode See #Mobile broadband |
| Fingerprint Reader | Yes |
Firmware
Several linux users reported their systems were bricked after enabling "Thunderbolt BIOS assist" in the UEFI menu. Lenovo has released BIOS version 1.27 which prevents this issue. See this thread on the Lenovo forums for details.
Under BIOS version 1.24 the embedded controller will no longer spin the fan up properly during high system load causing CPU throttling issues. Reverting to version 1.21 will restore normal functions or you can use the ThinkFanAUR package to control it via the OS. See Fan speed control#ThinkPad laptops for details.
Updates
In August of 2018 Lenovo has joined the Linux Vendor Firmware Service (LVFS) project, which enables firmware updates from within the OS. BIOS updates (and possibly other firmware such as the Thunderbolt controller) can be queried for and installed through fwupd.
Manual
Download the latest BIOS image from the Lenovo Thinkpad X1 Yoga 3rd Gen downloads page. Obtain and run on the downloaded ISO file to create a valid El Torito image file, then flash this file on a USB drive via like you would flash Arch installation media. For further information see flashing BIOS from Linux.
The ThinkPad X1 Yoga supports setting a custom splash image at the earliest boot stage (instead of the red "Lenovo" logo), more information can be found in the located in the folder of the update image.
Mobile broadband
Fibocom L850-GL works after turning it into USB mode with https://github.com/xmm7360/xmm7360-usb-modeswitch.
Install the kernel module, then run the tool as root, then wait a few seconds for the USB modem to come up.
Power management
To check whether S3 is recognized and usable by Linux, run:
# dmesg | grep -i "acpi: (supports"
and check for in the list.
Enabling S3 (with BIOS version 1.33 and after)
Since of May 17, 2019, Lenovo released firmware 1.33, which let you enable legacy S3 sleep in UEFI/BIOS. You can find the option in ThinkPad Setup: Config -> Power and disable the option "Optimized Sleep State for Modern Standby".
Optimized Sleep State for Modern Standby (after BIOS 1.35 the wording has changed to "Sleep State"):
- Disabled: "legacy" S3 sleep (after BIOS 1.35 the wording has changed to "Linux")
- Enabled: modern standby (after BIOS 1.35 the wording has changed to "Windows 10")
By setting this option to "Disabled", a warning will appear. The warning describes that a reinstallation of your OS might be mandatory. Accept the warning and both Windows and Linux should work fine. You can do this step even if you already installed a patch to enable s3 sleep. After disabling the optimized sleep state in the bios, and if you did the method to enable s3 sleep before the 1.33 bios update, it is best to remove GRUB_EARLY_INITRD_LINUX_CUSTOM="/acpi_override" in your /etc/default/grub (if you placed that there before), and regenerate the grub cfg using
# update-grub
Do not forget to remove the acpi_override file as well.
Reboot and verify whether S3 is working by running:
# dmesg | grep -i "acpi: (supports"
You should now see something like this:
[ 0.230796] ACPI: (supports S0 S3 S4 S5)
Enabling S3 (before BIOS version 1.33)
There is an automated script called x1carbon2018s3 by fiji-flo that was originally intended for use for the X1 Carbon 6th Gen (source). The script and documentation were updated and maintained by lsmith77 to adapt it for the X1 Yoga 3rd Gen. The latest known version is in a fork by ryankhart currently awaiting a pull request. These scripts are recommended for debian-based distributions because of the script including debian-based bash commands.
(Optional) To check out this script and its history, visit these GitHub repositories:
Manual method
The manual method can be used in any distribution of Linux. Below is a modified version of the source instructions because some things are hard to understand.
1. Reboot, enter BIOS/UEFI. Go to Config - Thunderbolt (TM) 3 - set Thunderbolt BIOS Assist Mode to Enabled. Set also Security - Secure Boot to Disabled.
2. Install iasl (Intel's compiler/decompiler for ACPI machine language) and cpio. iasl in Ubuntu and possibly other distributions probably do not have the latest release for it to fully work. To make sure you have the latest version, download the source code and make install iasl. cpio can be installed normally with your distribution's package manager
3. Get a dump of ACPI DSDT table:
4. Decompile the dump, which will generate a .dsl source based on the .aml ACPI machine language dump:
5. Download the [patch](https://kernel.dk/acpi.patch) and apply it against dsdt.dsl:
Hunk 2 failed for me, I manually looked for the following in dsdt.dsl:
Name (SS1, 0x00) Name (SS2, 0x00) Name (SS3, One) One Name (SS4, One) One
and replaced it with the following (removing the two "One" lines):
Name (SS1, 0x00) Name (SS2, 0x00) Name (SS3, One) Name (SS4, One)
6. Recompile your patched version of the .dsl source:
7. Create a CPIO archive with the correct structure, which GRUB can load on boot. We name the final image acpi_override and copy it into /boot/:
mkdir -p kernel/firmware/acpi cp dsdt.aml kernel/firmware/acpi find kernel | cpio -H newc --create > acpi_override cp acpi_override /boot
8. GRUB needs to boot the kernel with a parameter setting the deep sleep state as default. Edit and add the following:
9. Regenerate the GRUB configuration:
# update-grub
If the second line of the previous step does not generate the grub to make the initrd lines look like "initrd /boot/acpi_override" in the beginning, then follow the next steps as normal. If it does generate those lines, skip to step 11
10. Tell GRUB to load the new DSDT table on boot in its configuration file usually located in . Find the relevant GRUB menu entry
and add the new image to the initrd lines for the images that you want the s3 sleep to work in:
Before: initrd /initramfs-4.17.4-200.fc28.x86_64.img After: initrd /boot/acpi_override /initramfs-4.17.4-200.fc28.x86_64.img
11. Reboot and enjoy having a laptop running Linux again... close the lid and the battery does not get drained in a few hours, also the battery no longer stays warm in sleep mode. To verify that things are working:
# dmesg | grep ACPI | grep supports #[ 0.195933] ACPI: (supports S0 S3 S4 S5) cat /sys/power/mem_sleep #s2idle [deep]
Fix touchscreen after resume
The X1Y3 has a firmware bug where the touchscreen may not come up again after waking up from S3 suspend/resume.
The following fixes were pulled from: Lenovo Linux Forums
Using acpi_call
This method is preferable because it does not require disabling functionality of the laptop or tinkering with the power management, such as replacing S3 power management by something else such as s2idle.
1. Install and enable the kernel module.
2. Add the following systemd service:
3. Enable .
Disabling Thunderbolt
Some users have reported that disabling Thunderbolt in BIOS -> Security -> IO ports -> Thunderbolt permanently fixes the touchscreen issue. As a consequence, docking stations may have some features disabled.
Using s2idle
When S3 suspend is enabled, the touchscreen will not work upon resume from sleep. The touchscreen functionality can be restored by freezing the system (s2idle) after system comes out of suspend.
Method 1 - calling a script from systemd-sleep
1. Create a script to be called by systemd-sleep
2. Make sure it is executable
Method 2 - systemd service
1. Create a systemd system service file to force the system to enter freeze momentarily
2. Enable .
Other fixes
Some users have reported one or two of these temporary fixes to work for them:
- Quickly close and open the lid to enable sleep.
- Use the power button (instead of/before opening the lid) to resume from sleep.
Enabling S2idle
From the Lenovo forums: Add the following kernel parameter to enable S2idle support:
acpi.ec_no_wakeup=1
For example, for GRUB, one might edit and edit :
GRUB_CMDLINE_LINUX_DEFAULT="quiet acpi.ec_no_wakeup=1"
then perform
# update-grub
and restart the system.
The power consumption might still be higher than that of the S3 state in this case.
Fingerprint reader
Install the python-validity-gitAUR package.
Touchscreen ghost touches
Some Thinkpad X1Y3 touchscreens are affected by a hardware issue that manifests itself as "ghost touch" events along the outer edges of the screen. On X11, with the driver installed, it's possible to work around this by configuring the tablet driver to ignore touch events in the outermost row of pixels.
First, use to show the sensors (touch, stylus etc.) supported by the touchscreen:
Note down the ID of the TOUCH sensor, then check the active area of the touchscreen:
Now configure the Area parameter by moving all edges inward by 1:
If you are still getting ghost clicks, they might be from the stylus tool, in that case repeat the operation with the stylus ID:
Function keys
| Key | Visible?1 | Marked?2 | Effect |
|---|---|---|---|
| No | Yes | Enables Fn lock | |
| Yes | Yes | ||
| Yes | Yes | XF86AudioMute | |
| Yes | Yes | ||
| Yes | Yes | ||
| Yes | Yes | ||
Fn+F5 | Yes | Yes | |
| Yes | Yes | ||
| Yes | Yes | ||
| Yes | Yes | ||
Fn+F9 | Yes | Yes | |
| Yes | Yes | XF86Bluetooth | |
| No | Yes | Unknown | |
| Yes | Yes | ||
| Yes | No | ||
| Yes | No | ||
Fn+P | Yes | No | |
| Yes | No | ||
Fn+Left Arrow | Yes | No | |
| Yes | No | ||
| No | Yes | Toggle Keyboard Backlight |
- The key is visible to and similar tools.
- The physical key has a symbol on it, which describes its function.