-
Notifications
You must be signed in to change notification settings - Fork 11
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
drivers/imx-enet: Add support for ethernet in imxrt1064-evk #96
base: master
Are you sure you want to change the base?
Conversation
3185e73
to
a582983
Compare
b8059e4
to
2af33ab
Compare
2af33ab
to
f5e973e
Compare
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
Unit Test Results7 958 tests +233 7 414 ✅ +404 41m 38s ⏱️ + 4m 29s For more details on these failures, see this check. Results for commit efdd19e. ± Comparison against base commit b0964a1. This pull request removes 730 and adds 963 tests. Note that renamed tests count towards both.
This pull request removes 137 skipped tests and adds 36 skipped tests. Note that renamed tests count towards both.
♻️ This comment has been updated with latest results. |
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
c90ea6b
to
6b1f87c
Compare
6b1f87c
to
d8acbf1
Compare
d8acbf1
to
1242ca1
Compare
6da7579
to
5eb5717
Compare
5eb5717
to
6b68262
Compare
6b68262
to
dc60c0c
Compare
change code style to match coding conventions JIRA: RTOS-507
refactor printfs with repeated format pattern into ephy_printf JIRA: RTOS-507
JIRA: RTOS-507
JIRA: RTOS-507
first step to add separate implementation files for imx6ull and imxrt106x gpio JIRA: RTOS-507
JIRA: RTOS-507
remove active value inversion in gpio_wait because the value is already being inverted in gpio_get JIRA: RTOS-507
dc60c0c
to
c5e6945
Compare
JIRA: RTOS-507
c5e6945
to
7ac9f36
Compare
fix 7b90e8e: - add _Atomic specifier to volatile vars used as atomics - change operations on the vars to atomic_* JIRA: RTOS-507
fix packet buffer handling for targets with page size less than packet buffer size JIRA: RTOS-507
7ac9f36
to
efdd19e
Compare
Description
Add Ethernet support for iMX RT106x, merging the code with existing driver for iMX 6ULL in
drivers/imx-enet.c
Some tests for
armv7a7-imx6ull-evk
may not be passing without phoenix-rtos/phoenix-rtos-project#1134Motivation 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
.Checklist:
Special treatment