- 
                Notifications
    
You must be signed in to change notification settings  - Fork 8.2k
 
modules: hal_nordic: multi-instance DPPI minor fixes #81602
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
Conversation
…ader The resource reservation header is now included according to a Kconfig value. The Kconfig can be overriden out-of-tree in case a different header is needed. Upstream PR: zephyrproject-rtos/zephyr#81602 Signed-off-by: Rafał Kuźnia <[email protected]>
Changed the CMakeLists to enable the nrfx_gppi utilities based solely on the CONFIG_NRFX_GPPI Kconfig. This unifies the configuration on all nRF SoC families. Upstream PR: zephyrproject-rtos/zephyr#81602 Signed-off-by: Rafał Kuźnia <[email protected]>
The NRF54L_SERIES define is more specific and should be used in favor of LUMOS_XXAA. Upstream PR: zephyrproject-rtos/zephyr#81602 Signed-off-by: Rafał Kuźnia <[email protected]>
Added dppic0 node label, alongside the dppic to maintain backward compatibility. The use of dppic0 is preferred. Upstream PR: zephyrproject-rtos/zephyr#81602 Signed-off-by: Rafał Kuźnia <[email protected]>
…ader The resource reservation header is now included according to a Kconfig value. The Kconfig can be overriden out-of-tree in case a different header is needed. Upstream PR: zephyrproject-rtos/zephyr#81602 Signed-off-by: Rafał Kuźnia <[email protected]>
Changed the CMakeLists to enable the nrfx_gppi utilities based solely on the CONFIG_NRFX_GPPI Kconfig. This unifies the configuration on all nRF SoC families. Upstream PR: zephyrproject-rtos/zephyr#81602 Signed-off-by: Rafał Kuźnia <[email protected]>
The NRF54L_SERIES define is more specific and should be used in favor of LUMOS_XXAA. Upstream PR: zephyrproject-rtos/zephyr#81602 Signed-off-by: Rafał Kuźnia <[email protected]>
Added dppic0 node label, alongside the dppic to maintain backward compatibility. The use of dppic0 is preferred. Upstream PR: zephyrproject-rtos/zephyr#81602 Signed-off-by: Rafał Kuźnia <[email protected]>
…tforms Changed the CMakeLists to enable the nrfx_gppi utilities based solely on the CONFIG_NRFX_GPPI Kconfig. This unifies the configuration on all nRF SoC families. Upstream PR: zephyrproject-rtos/zephyr#81602 Signed-off-by: Rafał Kuźnia <[email protected]>
…RIES The NRF54L_SERIES define is more specific and should be used in favor of LUMOS_XXAA. Upstream PR: zephyrproject-rtos/zephyr#81602 Signed-off-by: Rafał Kuźnia <[email protected]>
Added dppic0 node label, alongside the dppic to maintain backward compatibility. The use of dppic0 is preferred. Upstream PR: zephyrproject-rtos/zephyr#81602 Signed-off-by: Rafał Kuźnia <[email protected]>
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.
nice :)
        
          
                modules/hal_nordic/nrfx/Kconfig
              
                Outdated
          
        
      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.
There's no need to check both these labels. dppic0 is enough.
| depends on ($(dt_nodelabel_has_compat,dppic,$(DT_COMPAT_NORDIC_NRF_DPPIC)) || \ | |
| $(dt_nodelabel_has_compat,dppic0,$(DT_COMPAT_NORDIC_NRF_DPPIC))) | |
| depends $(dt_nodelabel_has_compat,dppic0,$(DT_COMPAT_NORDIC_NRF_DPPIC)) | 
        
          
                modules/hal_nordic/nrfx/nrfx_glue.h
              
                Outdated
          
        
      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.
Is it actually possible that this will not be defined?
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.
It shouldn't be, but I was asked to add it regardless before making the PR.
The resource reservation header is now included according to a Kconfig value. The Kconfig can be overriden out-of-tree in case a different header is needed. Signed-off-by: Rafał Kuźnia <[email protected]>
Changed the CMakeLists to enable the nrfx_gppi utilities based solely on the CONFIG_NRFX_GPPI Kconfig. This unifies the configuration on all nRF SoC families. Signed-off-by: Rafał Kuźnia <[email protected]>
The NRF54L_SERIES define is more specific and should be used in favor of LUMOS_XXAA. Signed-off-by: Rafał Kuźnia <[email protected]>
Added dppic0 node label, alongside the dppic to maintain backward compatibility. The use of dppic0 is preferred. Signed-off-by: Rafał Kuźnia <[email protected]>
Addressed remaining comments from PR #79857
Added a Kconfig value that allows for changing the resource reservation header file.