You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1005 B
68 lines
1005 B
/* |
|
* Copyright (c) 2025 Nordic Semiconductor ASA |
|
* |
|
* SPDX-License-Identifier: Apache-2.0 |
|
*/ |
|
|
|
/dts-v1/; |
|
#include <nordic/nrf54lm20a_enga_cpuflpr.dtsi> |
|
#include "nrf54lm20dk_nrf54lm20a-common.dtsi" |
|
|
|
/ { |
|
model = "Nordic nRF54LM20 DK nRF54LM20A FLPR MCU"; |
|
compatible = "nordic,nrf54lm20dk_nrf54lm20a-cpuflpr"; |
|
|
|
chosen { |
|
zephyr,console = &uart30; |
|
zephyr,shell-uart = &uart30; |
|
zephyr,code-partition = &cpuflpr_code_partition; |
|
zephyr,flash = &cpuflpr_rram; |
|
zephyr,sram = &cpuflpr_sram; |
|
}; |
|
}; |
|
|
|
&cpuflpr_sram { |
|
status = "okay"; |
|
}; |
|
|
|
&cpuflpr_rram { |
|
partitions { |
|
compatible = "fixed-partitions"; |
|
#address-cells = <1>; |
|
#size-cells = <1>; |
|
|
|
cpuflpr_code_partition: partition@0 { |
|
label = "image-0"; |
|
reg = <0x0 DT_SIZE_K(96)>; |
|
}; |
|
}; |
|
}; |
|
|
|
&grtc { |
|
owned-channels = <3 4>; |
|
status = "okay"; |
|
}; |
|
|
|
&uart30 { |
|
status = "okay"; |
|
}; |
|
|
|
&gpio0 { |
|
status = "okay"; |
|
}; |
|
|
|
&gpio1 { |
|
status = "okay"; |
|
}; |
|
|
|
&gpio2 { |
|
status = "okay"; |
|
}; |
|
|
|
&gpiote20 { |
|
status = "okay"; |
|
}; |
|
|
|
&gpiote30 { |
|
status = "okay"; |
|
};
|
|
|