1/*
2 * Copyright (c) 2019 Linaro Limited
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7mhu0: mhu@3000 {
8	compatible = "arm,mhu";
9	reg = <0x3000 0x1000>;
10	interrupts = <6 3>;
11};
12
13mhu1: mhu@4000 {
14	compatible = "arm,mhu";
15	reg = <0x4000 0x1000>;
16	interrupts = <7 3>;
17};
18
19timer: timer@10c000 {
20	compatible = "arm,cmsdk-timer";
21	reg = <0x10c000 0x1000>;
22	interrupts = <3 3>;
23};
24
25uart0: uart@105000 {
26	compatible = "arm,pl011";
27	reg = <0x105000 0x1000>;
28	interrupts = <39 3 40 3 41 3 43 3>;
29	interrupt-names = "rx", "tx", "rxtim", "err";
30	clocks = <&sysclk>;
31	current-speed = <115200>;
32};
33
34uart1: uart@106000 {
35	compatible = "arm,pl011";
36	reg = <0x106000 0x1000>;
37	interrupts = <45 3 46 3 47 3 49 3>;
38	interrupt-names = "rx", "tx", "rxtim", "err";
39	clocks = <&sysclk>;
40	current-speed = <115200>;
41};
42
43gpio: gpio@1000000 {
44	compatible = "arm,cmsdk-gpio";
45	reg = <0x1000000 0x1000>;
46	interrupts = <67 3		    /* combined */
47		      51 3 52 3 53 3 54 3   /* PINS 0:3 */
48		      55 3 56 3 57 3 58 3   /* PINS 4:7 */
49		      59 3 60 3 61 3 62 3   /* PINS 8:11 */
50		      63 3 64 3 65 3 66 3>; /* PINS 12:15 */
51	gpio-controller;
52	#gpio-cells = <2>;
53};
54