35 lines
419 B
Text
35 lines
419 B
Text
|
/*
|
||
|
* Copyright (c) 2019 Richard Osterloh <richard.osterloh@gmail.com>
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*/
|
||
|
|
||
|
|
||
|
#include <arm/armv7-m.dtsi>
|
||
|
|
||
|
/ {
|
||
|
cpus {
|
||
|
#address-cells = <1>;
|
||
|
#size-cells = <0>;
|
||
|
|
||
|
cpu@0 {
|
||
|
device_type = "cpu";
|
||
|
compatible = "arm,cortex-m4f";
|
||
|
reg = <0>;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
sram0: memory@20000000 {
|
||
|
compatible = "mmio-sram";
|
||
|
};
|
||
|
|
||
|
soc {
|
||
|
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
&nvic {
|
||
|
arm,num-irq-priority-bits = <4>;
|
||
|
};
|