-
Notifications
You must be signed in to change notification settings - Fork 1k
feat: add usb msc support for nrf52840 #5011
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
base: dev
Are you sure you want to change the base?
Conversation
|
I tried this, but sadly it doesn't work. |
|
No worries, my nrf52840 just showed up so I'll investigate |
|
@mikesmitty any update on this? I would really like to have it for something... 😸 |
|
Oh yeah, this fell off my radar. I've got a debugger just about set up with an nrf52840 now so I can dig into this again |
af1b8fe to
f246bff
Compare
|
Ok, at least in my testing it looks like it's just a problem with m.buf being too small. My test device has a write block size of 4 bytes, which I didn't think would ever happen. The m.buf buffer is set, perhaps a bit naively, to use the write block size as a capacity, but it needs to be 64 bytes at a minimum to be able to store a full usb packet and it's panicking. #5017 also modifies these buffer sizes but in a more expansive way so this will likely end up just being a temporary patch. I just saw Ayke commented again on that one so I'll swap back to that one next |
|
Pinging Dr. @mikesmitty 😸 |
|
Sorry, been getting distracted a lot recently haha. I'll start working on this again this weekend |
|
Thank you! |
|
Same happens with |
f246bff to
ced1d5c
Compare
|
Ok, finally getting back into this now. Let me see where I left off |
|
Just in case it helps in any way, here is UF2 bootloader for nRF52 chips. https://github.com/adafruit/Adafruit_nRF52_Bootloader/blob/master/src/usb/usb.c |
|
Woof, that was an adventure. The usb endpoint handling logic for nrf52840 was unconditionally accepting packets and I ended up having to rework it a little bit in order to allow returning a NAK when needed, but it seems to be working for me now if you guys want to give it a shot |
|
@ysoldak please give this PR another try if you get a chance. |
|
Still can't see Mass Storage Device when flashing usb-storage example to XIAO BLE board. There is no popup with Eject, Ignore and Initialize... buttons anymore, but nothing else either. Is there any other (better) way to test? |
|
Sorry, I've been playing whackamole with bugs in this one a little bit. I started putting together a branch with tests to try and iron those out properly. I'll trim this back and put those in the other branch |
4e18962 to
649a66d
Compare
|
@mikesmitty #5109 has been merged, perhaps this PR can now be rebased and retested? |
649a66d to
40e51a3
Compare
|
I rebased if you want to give it a go, but I haven't tested it yet. I spent a bunch of time arguing with both the jlink and the nrf52 board, but I've finally got a reliable workflow going again |
|
Ok, nailed down the bug I was stuck on for the longest time where endpoint stalls were hanging indefinitely and the CSW was not being returned. In order to reset the DATA0/DATA1 in |
|
Alrighty, I fixed the last bug I was running into and pushed the changes up on #5110 since that's where I was doing my testing. I tried porting the change back over to this branch, but it's running into some fatal bug on this branch and I don't have time to sort it out this morning. I'll sort out/split up the changes a bit later, but for now you can try out the changes on that other PR Edit: Oh, actually there's another new bug, but it enumerates properly now. I'll take a look into it a bit later |
Thanks for working on this @mikesmitty ❤️ |
|
I'm still working on this btw. I'm beginning to suspect that easyDMA was named in the same way greenland was (iceland being green, greenland being icy). Getting delayed ACKs to work properly with it is anything but easy |
|
Sorry, dumb joke. Anyway, this now finally tests out on my msc.RamDisk test device as well as machine.Flash on an nrf52840. I need to go over it with a fine-tooth comb, but I've spent so many hours on this over the last several weeks my noodle is cooked. There's a few random fixes for bodges I added at the end of adding it for the rp2s, but I haven't yet tested this on the rp2s, just the nrf so far. It should work just fine, but wanted to call it out as untested. |
|
Hello @mikesmitty finally got a chance to test this out on my xiao-ble: First I flashed it: Then I tried the test script you provided previously: $ sudo ./test_msc.sh /dev/sda
Target Device: /dev/sda
Device Size: 776 KB (794624 bytes)
Limit: 16 MB
-------------------------------------------------------------
WARNING: ALL DATA ON /dev/sda WILL BE OVERWRITTEN!
-------------------------------------------------------------
Type 'YES' to continue: YES
[22:21:41] Running Test: SinglePacket_64B (Size: 64 bytes, Offset: 0 blocks)
[22:21:41] Writing data...
1+0 records in
1+0 records out
64 bytes copied, 0,155933 s, 0,4 kB/s
[22:21:42] Reading data back...
1+0 records in
1+0 records out
64 bytes copied, 0,000133493 s, 479 kB/s
[22:21:42] FAILURE: Checksum mismatch!
[22:21:42] Expected: 693e5f0f347a5d70acbb7baaab9beb988301b3e9588e32c73d7dcdfb7b2c4604
[22:21:42] Got: 24016a4ae339cfff64a6840fa7e2999edd8af6fbf6dd321acc17e0590fc1430c
--- Expected Data (First 64 bytes) ---
0000000 aa aa aa aa aa aa aa aa aa aa aa aa aa aa aa aa
*
0000100
--- Got Data (First 64 bytes) ---
0000000 a8 a8 a8 8a 82 a8 02 02 20 28 00 aa 80 00 20 28
0000020 02 aa 00 00 00 a0 08 00 08 02 a8 a2 28 a8 20 28
0000040 00 20 20 20 00 20 a8 a8 a8 8a aa a2 a0 aa 28 a8
0000060 aa 0a 88 a8 00 20 08 02 0a aa 02 2a a2 a0 80 2a
0000100
--- First 10 Mismatches (Byte Offset | Expected | Got) ---
1 252 250
2 252 250
3 252 250
4 252 212
5 252 202
6 252 250
7 252 2
8 252 2
9 252 40
10 252 50
-------------------------------------------------------------
TESTS FAILED.So for sure progress, but either not working yet or user error on my part? What do you think? |
|
Oh, you most likely need to erase machine.Flash before running the script. Implementing erase before write is probably going to be necessary. I added a little function to my test app once I got the RamDisk variant working. Erasing at startup without a goroutine caused it to timeout iirc: Then with a freshly erased disk: |



I don't have an nrf52840 on hand to test yet (should have one tomorrow), but I figured I'd push this up in case @aykevl or anyone else wanted to give it a whirl
#4844 (comment)