Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rumble needs ERTM enabled to work reliably #272

Closed
kakra opened this issue Jan 31, 2021 · 12 comments
Closed

Rumble needs ERTM enabled to work reliably #272

kakra opened this issue Jan 31, 2021 · 12 comments
Assignees
Labels
0 | type: hardware support Support third-party hardware and clones 0 | type: third party bug 1 | state: testing solution Solution is in testing phase

Comments

@kakra
Copy link
Collaborator

kakra commented Jan 31, 2021

With the L2CAP patch (which enabled you to connect with ERTM enabled) getting some more thorough testing, I've found the following interesting behavior: Rumble actually works stable (no controller crashes) if ERTM is enabled.

The L2CAP patch is currently in the process of being upstreamed, probably appearing in kernel 5.12, and maybe backported.

Consequently, I'll be linking rumble-related issues to this, possibly closing them as duplicate.

This means that you should enable ERTM. But it won't work unless your distribution includes the L2CAP patch in the kernel.

Also, tests showed that the controller has to be removed from Bluetooth and re-paired after toggling ERTM, otherwise the connection may be quite unstable or not establish at all.

@orbea
Copy link

orbea commented Jan 31, 2021

Can you link to the L2CAP patch please?

@kakra
Copy link
Collaborator Author

kakra commented Feb 1, 2021

@orbea
Copy link

orbea commented Feb 1, 2021

Thanks, I noticed now its also part of kakra/linux#11. I will need to retest after removing and repairing my xbox one gamepad.

@kakra
Copy link
Collaborator Author

kakra commented Feb 1, 2021

It has been part of it since kernel 5.4 which I was using. That explains why I was not seeing some of the problems people reported. I actually used the driver with ERTM disabled for the past weeks (months?) and could reproduce many issues, now I turned ERTM on again and at least the rumble problems went away.

@Mikaka27
Copy link
Contributor

Mikaka27 commented Apr 29, 2021

Hi, I've updated my manjaro linux to 5.12 kernel. Then I removed disabling of ertm from /etc/modprobe.d/99-xpadneo-bluetooth.conf
After removing and repairing gamepad it connects successfully with ertm enabled.

What would be the way forward? Could we add a check for kernel version in dkmx.post_install script to not disable ertm if kernel is 5.12 or later?

@kakra
Copy link
Collaborator Author

kakra commented Apr 29, 2021

What would be the way forward? Could we add a check for kernel version in dkmx.post_install script to not disable ertm if kernel is 5.12 or later?

Yes, that would probably be a solution I was thinking about, too. But I wanted to wait for actual kernel versions to emerge in distributions, so we can actually test such an implementation. If you feel like you could add such a check, I'd happily take pull requests. Otherwise, you'd need to wait a few days until I implemented it, and I'd like you to test that then.

I think this is a good step forward. Ultimately, I'd rather completely remove the ERTM stuff from xpadneo (there are patches in my queue for this). I'm rethinking this when the LTS kernel comes out which will probably be 5.15 or 5.16 at the end of the year.

@Mikaka27
Copy link
Contributor

I can try to create a pull request later today.

@ionenwks
Copy link

I'll do something similar for the official Gentoo ebuild if that sounds good, previous ERTM warning if <5.12, otherwise different warning to suggest re-enabling + re-pair only if disabled ertm is detected (currently it nags if enabled instead).

@kakra
Copy link
Collaborator Author

kakra commented Apr 29, 2021

@ionenwks Thanks, I'm actually doing development on Gentoo but never checked the ebuild because I'm running directly from the xpadneo source anyways. But I looked at the ebuild lately and it looks fine. BTW: From v0.10 forward (and current master), you may pass in the current version directly to the make file through VERSION="v${PV}-gentoo" (see this change). There will be a few more changes probably soon which affect the 9999 ebuild. If you like, I can tag your username in such pull-requests so you can test it first. Or we check if it's possible to test the 9999 ebuild in the Azure CI pipeline but I don't know if they support Gentoo.

BTW: The re-connect loop is actually not really due to ERTM. In fact, ERTM enabled makes the gamepad run more stable - it just won't pair in this case most of the times unless the L2CAP patch is there. In Gentoo it's easy to put the L2CAP patch into /etc/portage/patches/sys-kernel/gentoo-sources (which is what I did). The ebuild could suggest that. The patch is included and could be installed along the docs.

The reconnect loop more likely stems from other factors:

  1. Surrounding RF noise from nearby Bluetooth devices (but most likely not, but MS suggests that)
  2. KDE Plasma constantly running BT inquiries (scan for devices): This happens if kdeconnect is installed with Bluetooth support: Xbox Elite 2 controller stops sending data during inquiries from nearby devices bluez/bluez#123 (may affect other desktop environments which scan for BT devices)
  3. Unsupported order of Bluetooth events: Xbox One S gamepad fails to connect (auth failed after reading encryption key size) bluez/bluez#127 (most common, no work-around known)

@ionenwks
Copy link

ionenwks commented Apr 29, 2021

@kakra The ebuild's addition is fairly recent (since mid-March), currently managed through proxy-maint project in Gentoo but I'm working toward gaining direct access for faster updates.

I'll adjust the ERTM warning to be more accurate, thanks for the info. Adding a brief mention of the patch + installing in docs also sounds fair should users not want to upgrade to 5.12 yet. (Edit: hoping it gets backported so it won't really matter, then I'll cleanup minus a check to encourage re-enabling ERTM if anyone still has it disabled)

I'm thankful for the recent version handling changes, it allowed to remove workarounds. Currently it's working as expected and reporting v0.9.1 / v0.9-62-g994958f without manually specifying anything by reading the VERSION file. Adding -gentoo is not something we usually do unless we're making custom code changes upstream need to know about.

I already test the live ebuild fairly regularly alongside new kernel versions, and users are expected to use releases more than -9999, so don't worry too much about breaking it.

@kakra
Copy link
Collaborator Author

kakra commented Apr 30, 2021

encourage re-enabling ERTM if anyone still has it disabled

aka "reverting to default".

I'm thankful for the recent version handling changes

It was actually tailored that way for exactly that purpose. I found that many package maintainers jumped some loops and hoops here, and I still don't like the result 100%, I'd prefer removing the VERSION text file completely so I wouldn't need to carry it around as an extra patch in the tagged releases. But I'm not sure yet how to solve this. At least, the file is gone in version built directly from git master. But this is getting off-topic now. If you need any help with the ebuild, feel free to open an issue report. I'm proxy-maintained for a few ebuilds myself.

ionenwks added a commit to ionenwks/gentoo that referenced this issue Apr 30, 2021
The L2CAP patch is upstreamed in >=5.12, and ERTM is now instead
recommended by upstream to help with rumble stability:
atar-axis/xpadneo#272

Also install the L2CAP patch in docs/ as reference or in case
users wish to patch older kernels.

Signed-off-by: Ionen Wolkens <sudinave@gmail.com>
ionenwks added a commit to ionenwks/gentoo that referenced this issue Apr 30, 2021
The L2CAP patch is upstreamed in >=5.12, and ERTM is now instead
recommended by upstream to help with rumble stability:
atar-axis/xpadneo#272

For non-live, also install the L2CAP patch in docs/ as reference.

Signed-off-by: Ionen Wolkens <sudinave@gmail.com>
@kakra kakra moved this from Known to Fixed in kernel 5.12 (L2CAP) in Bluetooth issues May 1, 2021
@kakra
Copy link
Collaborator Author

kakra commented May 3, 2021

Should be fixed by #288

@kakra kakra closed this as completed May 3, 2021
Compatibility and Compliance automation moved this from To do to Done May 3, 2021
@kakra kakra unpinned this issue Jun 20, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
0 | type: hardware support Support third-party hardware and clones 0 | type: third party bug 1 | state: testing solution Solution is in testing phase
Projects
Bluetooth issues
  
Fixed in kernel 5.12 (L2CAP)
Development

No branches or pull requests

4 participants