Skip to content
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

Set status okay to DPPI and PPIB nodes on nrf54l #2319

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion drivers/serial/Kconfig.nrfx_uart_instance
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ config UART_$(nrfx_uart_num)_ASYNC

config UART_$(nrfx_uart_num)_ENHANCED_POLL_OUT
bool "Efficient poll out on port $(nrfx_uart_num)"
depends on !$(dt_nodelabel_has_prop,uart$(nrfx_uart_num),short-endtx-stoptx)
depends on !$(dt_nodelabel_has_prop,uart$(nrfx_uart_num),endtx-stoptx-supported)
default y
depends on HAS_HW_NRF_UARTE$(nrfx_uart_num)
depends on HAS_HW_NRF_PPI || HAS_HW_NRF_DPPIC
Expand Down
48 changes: 48 additions & 0 deletions dts/arm/nordic/nrf54l20_enga_cpuapp.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,51 @@ nvic: &cpuapp_nvic {};
&gpiote30 {
interrupts = <269 NRF_DEFAULT_IRQ_PRIORITY>;
};

&dppic00 {
status = "okay";
};

&dppic10 {
status = "okay";
};

&dppic20 {
status = "okay";
};

&dppic30 {
status = "okay";
};

&ppib00 {
status = "okay";
};

&ppib01 {
status = "okay";
};

&ppib10 {
status = "okay";
};

&ppib11 {
status = "okay";
};

&ppib20 {
status = "okay";
};

&ppib21 {
status = "okay";
};

&ppib22 {
status = "okay";
};

&ppib30 {
status = "okay";
};
48 changes: 48 additions & 0 deletions dts/arm/nordic/nrf54l_05_10_15_cpuapp.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -85,3 +85,51 @@ nvic: &cpuapp_nvic {};
interrupts = <269 NRF_DEFAULT_IRQ_PRIORITY>;
#endif
};

&dppic00 {
status = "okay";
};

&dppic10 {
status = "okay";
};

&dppic20 {
status = "okay";
};

&dppic30 {
status = "okay";
};

&ppib00 {
status = "okay";
};

&ppib01 {
status = "okay";
};

&ppib10 {
status = "okay";
};

&ppib11 {
status = "okay";
};

&ppib20 {
status = "okay";
};

&ppib21 {
status = "okay";
};

&ppib22 {
status = "okay";
};

&ppib30 {
status = "okay";
};
Loading