-
Notifications
You must be signed in to change notification settings - Fork 13
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
Adapt drivers to USB architecture rework #524
Open
adamgreloch
wants to merge
8
commits into
adamgreloch/RTOS-937
Choose a base branch
from
adamgreloch/RTOS-970
base: adamgreloch/RTOS-937
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 tasks
adamgreloch
changed the title
Rework USB architecture
Adapt drivers to USB architecture rework
Nov 22, 2024
adamgreloch
force-pushed
the
adamgreloch/RTOS-937
branch
from
November 25, 2024 07:33
4f82b76
to
cc07580
Compare
adamgreloch
force-pushed
the
adamgreloch/RTOS-970
branch
from
November 25, 2024 07:35
6d772bc
to
f9f118e
Compare
adamgreloch
force-pushed
the
adamgreloch/RTOS-937
branch
2 times, most recently
from
November 25, 2024 09:04
31602b7
to
6f3a818
Compare
adamgreloch
force-pushed
the
adamgreloch/RTOS-970
branch
2 times, most recently
from
November 25, 2024 09:07
d21d2bf
to
79d2758
Compare
adamgreloch
force-pushed
the
adamgreloch/RTOS-970
branch
from
November 27, 2024 12:47
79d2758
to
d0cce17
Compare
adamgreloch
force-pushed
the
adamgreloch/RTOS-970
branch
from
November 29, 2024 08:38
d0cce17
to
b49924f
Compare
adamgreloch
force-pushed
the
adamgreloch/RTOS-937
branch
from
November 29, 2024 08:39
6f3a818
to
d597901
Compare
adamgreloch
force-pushed
the
adamgreloch/RTOS-970
branch
4 times, most recently
from
December 5, 2024 13:57
fb0d6d3
to
6cf12ee
Compare
agkaminski
reviewed
Dec 20, 2024
NAME := umass | ||
ifeq ($(TARGET_FAMILY),ia32) | ||
UMASS_LIBS := libext2 | ||
UMASS_CFLAGS := -DUMASS_MOUNT_EXT2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why limit this feature to the ia32 only?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Out of all targets that currently include umass (ia32 and imxrt*) only ia32 is built with libext2
adamgreloch
force-pushed
the
adamgreloch/RTOS-970
branch
from
December 23, 2024 08:37
6cf12ee
to
7f01119
Compare
adamgreloch
force-pushed
the
adamgreloch/RTOS-970
branch
from
January 10, 2025 11:14
7f01119
to
3508c8a
Compare
adamgreloch
force-pushed
the
adamgreloch/RTOS-937
branch
from
January 10, 2025 11:46
2c407d6
to
f5a7d7e
Compare
adamgreloch
force-pushed
the
adamgreloch/RTOS-970
branch
from
January 10, 2025 12:17
3508c8a
to
b66b306
Compare
adamgreloch
force-pushed
the
adamgreloch/RTOS-937
branch
from
January 17, 2025 08:56
f5a7d7e
to
44b80e3
Compare
adamgreloch
force-pushed
the
adamgreloch/RTOS-970
branch
from
January 17, 2025 08:57
b2f0607
to
82fb814
Compare
adamgreloch
force-pushed
the
adamgreloch/RTOS-937
branch
from
January 17, 2025 11:35
44b80e3
to
ed8084b
Compare
JIRA: RTOS-970
JIRA: RTOS-970
JIRA: RTOS-970
JIRA: RTOS-970
JIRA: RTOS-970
This fixes race conditions happening when there are multiple usb insertion/deletion/completion threads. Access to usbacm_common.devices struct was not guarded, which lead i.e. to multiple concurrent attempts of /dev/usbacm0 creation during insertion and possible double-free on destruction, since usbacm_freeAll was also called outside of critical section JIRA: RTOS-970
JIRA: RTOS-970
Some real world sticks always fail few first commands but if REQUEST SENSE is done immediately afterwards, they will later work with no errors. Some others fail the first few READ commands, but recover after few retries. JIRA: RTOS-970
adamgreloch
force-pushed
the
adamgreloch/RTOS-970
branch
from
January 17, 2025 11:36
82fb814
to
db4628d
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Motivation and Context
Types of changes
How Has This Been Tested?
Checklist:
Special treatment
Rework USB architecture phoenix-rtos-usb#35
usb: Adapt USB stack to work on ia32 #525