-
Notifications
You must be signed in to change notification settings - Fork 12
drivers/imx-enet: Add support for ethernet in imxrt1064-evk #96
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
Open
julianuziemblo
wants to merge
16
commits into
master
Choose a base branch
from
julianuziemblo/enet-imxrt1064-evk
base: master
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.
Conversation
This file contains hidden or 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
3185e73
to
a582983
Compare
b8059e4
to
2af33ab
Compare
2af33ab
to
f5e973e
Compare
nalajcie
requested changes
Sep 3, 2024
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.
Partial review as current commit structure prevents efficient code review (the browser crashed with the amount of changes/comments in single commit :)).
Short summary:
- fix commit message titles (see
git history
for examples), at least prefix them with module name (also include in commit message bodies what / why was changed), add missing JIRA ID - clearly split the changes into separate atomic commits (eg. changing type name is not bringing new functionality and should be a separate change)
- fix coding style (according to our coding convention / MISRA as described in some comments)
- please test the code after changes on imx6ull-evk and DTR project (from CI I see that something is broken there), check also if the performance is not degraded
f5e973e
to
7dbbd7e
Compare
7dbbd7e
to
710b1d1
Compare
e11d5db
to
067dc1b
Compare
8c41250
to
fc32052
Compare
converting to draft until it will be ready for next review |
fc32052
to
f42a4cc
Compare
23199d4
to
949cbf1
Compare
949cbf1
to
c11c661
Compare
f73b229
to
860b5b9
Compare
ziemleszcz
reviewed
Apr 15, 2025
8a237ea
to
3718bce
Compare
JIRA: RTOS-507
refactor printfs with repeated format pattern into ephy_printf JIRA: RTOS-507
add ephy_debug_printf toggled by EPHY_DEBUG inside drivers/ephy.c and add debug prints for easier debugging JIRA: RTOS-507
JIRA: RTOS-507
JIRA: RTOS-507
first step to add separate implementation files for imx6ull and imxrt106x gpio JIRA: RTOS-507
remove active value inversion in gpio_wait because the value is already being inverted in gpio_get JIRA: RTOS-507
JIRA: RTOS-507
KSZ8081RNB is the actual Ethernet PHY on iMX 6ULL's evaluation board JIRA: RTOS-507
fix 7b90e8e: - add _Atomic specifier to volatile vars used as atomics - change operations on the vars to atomic_* JIRA: RTOS-507
refactor packet buffer handling to support target with PAGE_SIZE < pkt_buf_sz JIRA: RTOS-507
This eliminates the need for extra call to mphys to check if we got contiguous memory - we can just call va2pa. JIRA: RTOS-507
3718bce
to
37110e8
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
Add Ethernet support for iMX RT106x, merging the code with existing driver for iMX 6ULL in
drivers/imx-enet.c
.Motivation and Context
https://jira.phoenix-rtos.com/browse/RTOS-507
Types of changes
How Has This Been Tested?
armv7a7-imx6ull-evk
,armv7m7-imxrt106x-evk
,armv7a7-imx6ull-dataro
,ia32-generc-qemu
.Checklist:
Special treatment