-
Notifications
You must be signed in to change notification settings - Fork 8.1k
support NXP_WIFI_FW_DEBUG for RW612 and IW610 #97331
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
support NXP_WIFI_FW_DEBUG for RW612 and IW610 #97331
Conversation
The following west manifest projects have changed revision in this Pull Request:
✅ All manifest checks OK Note: This message is automatically posted and updated by the Manifest GitHub Action. |
manifest change needs to be first? |
c0611d1
to
8fb06c6
Compare
updated |
ec2c707
to
b07fd99
Compare
rebase on TOT and update the hal_nxp SHA. |
drivers/wifi/nxp/Kconfig.nxp
Outdated
config NXP_FW_DUMP_FLASH_START_ADDR | ||
hex "Start address in flash to store FW dump" | ||
default 0x0B000000 if NXP_RW610 | ||
default 0x60500000 if BOARD_MIMXRT1060_EVK |
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.
This should be set at the board level
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.
@MaochenWang1 what @mmahadevan108 is saying is that you should go to the BOARD_MIMXRT1060_EVK and set this value. Don't put it down in the driver file. Look at board\nxp\mimxrt1060_evk\Kconfig.defconfig. There you would put:
config NXP_FW_DUMP_FLASH_START_ADDR default 0x60500000
In the case of the NXP_RW610 there are comparable Kconfig.defconfig files in the soc folder.
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.
updated, please review again.
b07fd99
to
1fe65e8
Compare
upgrade wifi driver version to r52.p11. fix several bugs and support fw dump. Signed-off-by: Maochen Wang <[email protected]>
Remove the redundant dependency of NXP_WIFI_EXTRA_DEBUG in Kconfig. Add NXP_FW_DUMP_FLASH_START_ADDR for the start address in flash to store FW dump. Add NXP_FW_DUMP_FLASH_ERASE_LENGTH for the erased length in flash to store FW dump. Signed-off-by: Maochen Wang <[email protected]>
Build flexspi and mflash to support save the FW dump into flash for debug purpose. Signed-off-by: Maochen Wang <[email protected]>
Enable NXP_WIFI_FW_DEBUG for RW612 and IW610 to support save FW dump into flash for debug purpose. Signed-off-by: Maochen Wang <[email protected]>
Set different default value for NXP_FW_DUMP_FLASH_START_ADDR, based on mimxrt1060_evk board and rw612 soc. Signed-off-by: Maochen Wang <[email protected]>
1fe65e8
to
e759adb
Compare
|
manifest: sync hal_nxp to upgrade NXP wifi driver
samples: net: wifi: enable NXP_WIFI_FW_DEBUG for RW612 and IW610
modules: hal_nxp: build flexspi and mflash for FW dump case
drivers: wifi: nxp: update Kconfig to support FW dump