Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 | /* * Copyright (c) 2019 Intel Corporation * * SPDX-License-Identifier: Apache-2.0 */ #include <xtensa/xtensa.dtsi> #include <dt-bindings/i2c/i2c.h> #include <mem.h> / { cpus { #address-cells = <1>; #size-cells = <0>; cpu0: cpu@0 { device_type = "cpu"; compatible = "cadence,tensilica-xtensa-lx4"; reg = <0>; }; cpu1: cpu@1 { device_type = "cpu"; compatible = "cadence,tensilica-xtensa-lx4"; reg = <1>; }; }; sram0: memory@be000000 { compatible = "mmio-sram"; reg = <0xbe000000 DT_SIZE_K(512)>; }; sram1: memory@be800000 { compatible = "mmio-sram"; reg = <0xbe800000 DT_SIZE_K(128)>; }; soc { core_intc: core_intc@0 { compatible = "xtensa,core-intc"; reg = <0x00 0x400>; interrupt-controller; #interrupt-cells = <3>; }; cavs0: cavs@1600 { compatible = "intel,cavs-intc"; reg = <0x1600 0x10>; interrupt-controller; #interrupt-cells = <3>; interrupts = <6 0 0>; interrupt-parent = <&core_intc>; label = "CAVS_0"; }; cavs1: cavs@1610 { compatible = "intel,cavs-intc"; reg = <0x1610 0x10>; interrupt-controller; #interrupt-cells = <3>; interrupts = <0xA 0 0>; interrupt-parent = <&core_intc>; label = "CAVS_1"; }; cavs2: cavs@1620 { compatible = "intel,cavs-intc"; reg = <0x1620 0x10>; interrupt-controller; #interrupt-cells = <3>; interrupts = <0XD 0 0>; interrupt-parent = <&core_intc>; label = "CAVS_2"; }; cavs3: cavs@1630 { compatible = "intel,cavs-intc"; reg = <0x1630 0x10>; interrupt-controller; #interrupt-cells = <3>; interrupts = <0x10 0 0>; interrupt-parent = <&core_intc>; label = "CAVS_3"; }; idc: idc@1200 { compatible = "intel,cavs-idc"; label = "CAVS_IDC"; reg = <0x1200 0x80>; interrupts = <8 0 0>; interrupt-parent = <&cavs0>; }; mailbox: mailbox@1180 { compatible = "intel,adsp-mailbox"; reg = <0x1180 0x20>; interrupts = <0x7 0 3>; interrupt-parent = <&cavs0>; label = "IPM_0"; }; ipm_console: ipm_console { compatible = "zephyr,ipm-console"; label="IPM_0"; }; }; }; |