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.
54 lines
898 B
54 lines
898 B
/* |
|
* Copyright (c) 2021 Space Cubics, LLC. <yashi@spacecubics.com> |
|
* |
|
* SPDX-License-Identifier: Apache-2.0 |
|
*/ |
|
|
|
/dts-v1/; |
|
#include <arm/armv7-m.dtsi> |
|
#include <mem.h> |
|
|
|
/ { |
|
model = "Space Cubics OBC module 1"; |
|
|
|
chosen { |
|
zephyr,console = &uartlite0; |
|
zephyr,shell-uart = &uartlite0; |
|
zephyr,sram = &hrmem; |
|
}; |
|
|
|
cpus { |
|
#address-cells = <1>; |
|
#size-cells = <0>; |
|
|
|
cpu0: cpu@0 { |
|
device_type = "cpu"; |
|
compatible = "arm,cortex-m3"; |
|
reg = <0>; |
|
#address-cells = <1>; |
|
#size-cells = <1>; |
|
|
|
mpu: mpu@e000ed90 { |
|
compatible = "arm,armv7m-mpu"; |
|
reg = <0xe000ed90 0x40>; |
|
}; |
|
}; |
|
}; |
|
|
|
soc { |
|
hrmem: memory@0 { |
|
compatible = "sc,hrmem"; |
|
reg = <0x00000000 DT_SIZE_K(128)>; |
|
}; |
|
|
|
uartlite0: uartlite@50010000 { |
|
compatible = "xlnx,xps-uartlite-1.00.a"; |
|
interrupts = <0 0>; |
|
reg = <0x50010000 0x10000>; |
|
}; |
|
}; |
|
}; |
|
|
|
&nvic { |
|
arm,num-irq-priority-bits = <3>; |
|
};
|
|
|