Skip to content

dts/boards: nordic: Fix reg and ranges property issues #93144

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

Open
wants to merge 4 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
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
/ {
ipc {
/delete-node/ ipc-1-2;
/delete-node/ ipc-1-3;

cpusec_cpuapp_ipc: ipc-1-2 {
compatible = "nordic,ironside-call";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

/ {
reserved-memory {
ranges;
/* The first 64kb are reserved for SecDom.
* The next 4kb are reserved for IPC between SecDom and Cellcore.
*/
Expand Down
1 change: 1 addition & 0 deletions dts/arm/nordic/nrf91.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
};

peripheral@50000000 {
reg = <0x50000000 0x10000000>;
#address-cells = <1>;
#size-cells = <1>;
ranges = <0x0 0x50000000 0x10000000>;
Expand Down
1 change: 1 addition & 0 deletions dts/arm/nordic/nrf91ns.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
};

peripheral@40000000 {
reg = <0x40000000 0x10000000>;
#address-cells = <1>;
#size-cells = <1>;
ranges = <0x0 0x40000000 0x10000000>;
Expand Down
5 changes: 4 additions & 1 deletion dts/vendor/nordic/nrf9280.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@
};

cpuapp_peripherals: peripheral@52000000 {
reg = <0x52000000 0x1000000>;
#address-cells = <1>;
#size-cells = <1>;
ranges = <0x0 0x52000000 0x1000000>;
Expand Down Expand Up @@ -359,9 +360,11 @@
};

global_peripherals: peripheral@5f000000 {
reg = <0x5f000000 0x1000000>;
#address-cells = <1>;
#size-cells = <1>;
ranges = <0x0 0x5f000000 0x1000000>;
ranges = <0x0 0x5f000000 0x1000000
0x2f700000 0x2f700000 0x40000>;

usbhs: usbhs@86000 {
compatible = "nordic,nrf-usbhs", "snps,dwc2";
Expand Down