1/*
2 * Copyright 2020 Broadcom
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#include <arm/armv7-m.dtsi>
8#include <broadcom/viper-common.dtsi>
9
10/ {
11	cpus {
12		#address-cells = <1>;
13		#size-cells = <0>;
14
15		cpu@0 {
16			device_type = "cpu";
17			compatible = "arm,cortex-m7";
18			reg = <0>;
19			#address-cells = <1>;
20			#size-cells = <1>;
21
22			mpu: mpu@e000ed90 {
23				compatible = "arm,armv7m-mpu";
24				reg = <0xe000ed90 0x40>;
25			};
26		};
27	};
28};
29
30&nvic {
31	arm,num-irq-priority-bits = <3>;
32};
33
34&uart0 {
35	interrupts = <1 3>;
36};
37
38&uart1 {
39	interrupts = <203 3>;
40};
41
42&pcie0_ep {
43	interrupt-parent = <&nvic>;
44	interrupts = <44 3>, <46 3>, <98 3>, <99 3>, <215 3>;
45	interrupt-names = "perst", "perst_inband", "flr",
46			  "snoop_irq1", "pcie_pmon_lite";
47};
48
49&paxdma {
50	interrupt-parent = <&nvic>;
51	interrupts = <228 3>;
52};
53