-
Notifications
You must be signed in to change notification settings - Fork 6
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
Keyboards with multiple bitmask (NKRO) style key reports don't work correctly #55
Comments
The report descriptor is broken. It does not define usage number for 2-nd and 3-rd collections. |
Why does this report descriptor have 3 collections instead of single one? Just defining of 3 reports should be enough. |
hm, usage number is not global for all subsequent collections in the descriptor? okay.. With either a single collection or usage set before each top level collection, hkbd now only has the same issue as ukbd, key repeat only working for the last report. |
IIRC, Upper 16 bits of usage or UsagePage is global for all HID items including collection, input an so on. Lower 16bit or just Usage is local for each item.
It is expected. hkbd is almost untouched copy of ukbd, so it shares all issues with latter on single collection report descriptors.
You should get 3 evdevs with different keys repeated on different evdevs or not repeating at all, depending on incoming report sequence. It also worth a try to test hskbd. It was not pushed to 13 and still left only in iichid |
You can test current iichid or port commit aaf8987 to FreeBSD 13/14 |
hmm looks like that failed to fix the problem, actually made it worse (now a single report is broken too). I don't think there should be a condition, but instead only the part of |
Done. Please test again. |
Maybe, bit clearing should be done in separate pass to properly handle a cases when several physical keys reports the same logical value. |
Okay, take 2 works fine 👍 |
Done in take 3. Could you test it? It should fix autorepeats for keyboards which use boot-alike protocol and coexist with other device like "consumer page" or mouse living on other ReportID also. Such a devices are exotic in USB world but are very common in bluetooth one. |
nah in take 3 repeat is broken again. Possibly because you forgot UPD: yes, that. --- i/sys/dev/hid/hkbd.c
+++ w/sys/dev/hid/hkbd.c
@@ -731,6 +731,7 @@ hkbd_intr_callback(void *context, void *data, hid_size_t len)
continue;
/* set key in bitmap */
bit_set(sc->sc_ndata, key);
+ bit_set(sc->sc_ndata0, key);
}
}
#ifdef HID_DEBUG |
I tried to reproduce your case with periodic injecting of packets with different ReportID but it did not break repeats for me. Strange thing. |
Could you share console output of your case after |
Oops, sorry, it actually works fine without that line. *facepalm* What was happening was Also, debug required https://reviews.freebsd.org/D28995 |
It's been a few months :) maybe it's time to commit these |
Ok. I have started reviewing process: https://reviews.freebsd.org/D31469 |
Admittedly I am doing somewhat cursed things with keyboard firmware :D Here it is:
Basically this is splitting the key bits
across three reports of max length 8, due to microcontroller USB stack limitations
For each key state change the keyboard fires off all three reports in sequence.
This works fine on Linux, keys from the different report IDs actually end up on different corresponding evdevs.
With
ukbd
, all keys are recognized, but only keys from the last report have working repeat. Seems like each report resets the whole bitmask in the driver, making it forget the keys from the previous reports in the batch.With
hkbd
, only keys from the first report are recognized at all.The text was updated successfully, but these errors were encountered: