mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-05 00:52:44 +00:00
Update the files which contain no license information with the 'Apache-2.0' SPDX license identifier. Many source files in the tree are missing licensing information, which makes it harder for compliance tools to determine the correct license. By default all files without license information are under the default license of Zephyr, which is Apache version 2. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
53 lines
791 B
Plaintext
53 lines
791 B
Plaintext
/* SPDX-License-Identifier: Apache-2.0 */
|
|
|
|
#include "skeleton.dtsi"
|
|
|
|
/ {
|
|
cpus {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
cpu@0 {
|
|
device_type = "cpu";
|
|
compatible = "qemu,nios2";
|
|
reg = <0>;
|
|
};
|
|
|
|
};
|
|
|
|
flash0: flash@0 {
|
|
compatible = "soc-nv-flash";
|
|
reg = <0x420000 0x20000>;
|
|
};
|
|
|
|
sram0: memory@400000 {
|
|
device_type = "memory";
|
|
compatible = "mmio-sram";
|
|
reg = <0x400000 0x20000>;
|
|
};
|
|
|
|
soc {
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
compatible = "simple-bus";
|
|
ranges;
|
|
|
|
jtag_uart: uart@201000 {
|
|
compatible = "altera,jtag-uart";
|
|
reg = <0x201000 0x400>;
|
|
label = "jtag_uart0";
|
|
|
|
status = "disabled";
|
|
};
|
|
|
|
ns16550_uart: uart@440000 {
|
|
compatible = "ns16550";
|
|
reg = <0x440000 0x400>;
|
|
label = "UART_0";
|
|
|
|
status = "disabled";
|
|
};
|
|
|
|
};
|
|
};
|