soc: nordic: enable DPPI and PPIB nodes by default

The DPPI and PPIB peripheral nodes must be enabled to allow the
CONFIG_HAS_HW_NRF_DPPIC to be set. This change is consistent with what
was done on nRF5340 and does not introduce any additional memory
overhead, because there is no Zephyr driver behind the nrf-dppic and
nrf-ppib bindings.

Signed-off-by: Rafał Kuźnia <rafal.kuznia@nordicsemi.no>
This commit is contained in:
Rafał Kuźnia 2024-11-28 14:29:23 +01:00 committed by Benjamin Cabé
parent ec1f662dc9
commit d890cfd818
2 changed files with 96 additions and 0 deletions

View File

@ -40,3 +40,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";
};

View File

@ -84,3 +84,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";
};