-
Notifications
You must be signed in to change notification settings - Fork 6.6k
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
bugfix: esp32: allows QIO and QOUT flash modes #79286
Merged
henrikbrixandersen
merged 2 commits into
zephyrproject-rtos:main
from
wmrsouza:bugfix/QIO_mode
Oct 16, 2024
Merged
bugfix: esp32: allows QIO and QOUT flash modes #79286
henrikbrixandersen
merged 2 commits into
zephyrproject-rtos:main
from
wmrsouza:bugfix/QIO_mode
Oct 16, 2024
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
wmrsouza
force-pushed
the
bugfix/QIO_mode
branch
from
October 1, 2024 19:08
a756e4f
to
58f37e6
Compare
The following west manifest projects have been modified in this Pull Request:
Note: This message is automatically posted and updated by the Manifest GitHub Action. |
zephyrbot
added
manifest
manifest-hal_espressif
DNM
This PR should not be merged (Do Not Merge)
labels
Oct 1, 2024
wmrsouza
force-pushed
the
bugfix/QIO_mode
branch
from
October 8, 2024 19:18
58f37e6
to
43151dc
Compare
wmrsouza
changed the title
bugfix: esp32s3: allows QIO flash mode
bugfix: esp32s3: allows QIO and QOUT flash modes
Oct 8, 2024
zephyrbot
requested review from
LucasTambor,
marekmatej,
raffarost,
sylvioalves and
uLipe
October 8, 2024 20:11
wmrsouza
force-pushed
the
bugfix/QIO_mode
branch
from
October 8, 2024 20:13
43151dc
to
d8822a6
Compare
sylvioalves
reviewed
Oct 8, 2024
soc/espressif/esp32s3/default.ld
Outdated
@@ -436,6 +436,10 @@ SECTIONS | |||
*libzephyr.a:bootloader_console.*(.literal .text .literal.* .text.*) | |||
*libzephyr.a:bootloader_panic.*(.literal .text .literal.* .text.*) | |||
|
|||
#if defined(CONFIG_ESPTOOLPY_FLASHMODE_QIO) || defined(CONFIG_ESPTOOLPY_FLASHMODE_QOUT) |
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.
I think you can dismiss this conditions in both cases.
wmrsouza
force-pushed
the
bugfix/QIO_mode
branch
3 times, most recently
from
October 10, 2024 12:23
adb1ae9
to
e8a07aa
Compare
wmrsouza
changed the title
bugfix: esp32s3: allows QIO and QOUT flash modes
bugfix: esp32: allows QIO and QOUT flash modes
Oct 10, 2024
wmrsouza
force-pushed
the
bugfix/QIO_mode
branch
2 times, most recently
from
October 10, 2024 15:48
c7dfa83
to
528bba1
Compare
raffarost
previously approved these changes
Oct 10, 2024
wmrsouza
force-pushed
the
bugfix/QIO_mode
branch
2 times, most recently
from
October 11, 2024 17:07
156e931
to
6894fc3
Compare
wmrsouza
force-pushed
the
bugfix/QIO_mode
branch
from
October 11, 2024 17:11
6894fc3
to
f8d89c7
Compare
wmrsouza
added
DNM
This PR should not be merged (Do Not Merge)
and removed
DNM
This PR should not be merged (Do Not Merge)
labels
Oct 11, 2024
wmrsouza
force-pushed
the
bugfix/QIO_mode
branch
from
October 11, 2024 17:51
f8d89c7
to
31be034
Compare
LucasTambor
approved these changes
Oct 11, 2024
wmrsouza
force-pushed
the
bugfix/QIO_mode
branch
from
October 11, 2024 17:57
31be034
to
27922b0
Compare
Update hal to cover latest features and fixes. Signed-off-by: Marcio Ribeiro <marcio.ribeiro@espressif.com>
Allows QIO and QOUT flash mode to work on: - esp32s2 - esp32s3 - esp32c2 - esp32c3 - esp32c6 Fixes zephyrproject-rtos#73677 Signed-off-by: Marcio Ribeiro <marcio.ribeiro@espressif.com>
wmrsouza
force-pushed
the
bugfix/QIO_mode
branch
from
October 11, 2024 23:34
27922b0
to
21ef7c9
Compare
uLipe
approved these changes
Oct 14, 2024
sylvioalves
approved these changes
Oct 16, 2024
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.
Allows QIO and QOUT flash modes to work in:
Fixes #73677