Aliases defined for peripheral nodes in the nRF SoC definitions were used in drivers to properly match the hardware instances. After the drivers were converted to use the new DT API, these aliases became needless. Signed-off-by: Andrzej Głąbek <andrzej.glabek@nordicsemi.no>
96 lines
1.8 KiB
Text
96 lines
1.8 KiB
Text
/*
|
|
* Copyright (c) 2018 Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <arm/armv8-m.dtsi>
|
|
#include <dt-bindings/i2c/i2c.h>
|
|
#include <dt-bindings/gpio/gpio.h>
|
|
|
|
/ {
|
|
cpus {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
cpu@0 {
|
|
device_type = "cpu";
|
|
compatible = "arm,cortex-m33f";
|
|
reg = <0>;
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
mpu: mpu@e000ed90 {
|
|
compatible = "arm,armv8m-mpu";
|
|
reg = <0xe000ed90 0x40>;
|
|
arm,num-mpu-regions = <16>;
|
|
};
|
|
};
|
|
};
|
|
|
|
chosen {
|
|
zephyr,flash-controller = &flash_controller;
|
|
};
|
|
|
|
soc {
|
|
sram0: memory@20000000 {
|
|
compatible = "mmio-sram";
|
|
};
|
|
|
|
peripheral@50000000 {
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
ranges = <0x0 0x50000000 0x10000000>;
|
|
|
|
/* Common nRF9160 peripheral description */
|
|
#include "nrf9160_common.dtsi"
|
|
};
|
|
|
|
/* Additional Secure peripherals */
|
|
cryptocell: crypto@50840000 {
|
|
compatible = "nordic,nrf-cc310";
|
|
reg = <0x50840000 0x1000>;
|
|
label = "CRYPTOCELL";
|
|
status = "okay";
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
cryptocell310: crypto@50841000 {
|
|
compatible = "arm,cryptocell-310";
|
|
reg = <0x50841000 0x1000>;
|
|
interrupts = <64 1>;
|
|
label = "CRYPTOCELL310";
|
|
};
|
|
};
|
|
|
|
gpiote: gpiote@5000d000 {
|
|
compatible = "nordic,nrf-gpiote";
|
|
reg = <0x5000d000 0x1000>;
|
|
interrupts = <13 5>;
|
|
status = "disabled";
|
|
label = "GPIOTE_0";
|
|
};
|
|
|
|
spu: spu@50003000 {
|
|
compatible = "nordic,nrf-spu";
|
|
reg = <0x50003000 0x1000>;
|
|
interrupts = <3 1>;
|
|
status = "okay";
|
|
};
|
|
|
|
ficr: ficr@ff0000 {
|
|
compatible = "nordic,nrf-ficr";
|
|
reg = <0xff0000 0x1000>;
|
|
status = "okay";
|
|
};
|
|
|
|
uicr: uicr@ff8000 {
|
|
compatible = "nordic,nrf-uicr";
|
|
reg = <0xff8000 0x1000>;
|
|
status = "okay";
|
|
};
|
|
};
|
|
};
|
|
|
|
&nvic {
|
|
arm,num-irq-priority-bits = <3>;
|
|
};
|