blob: a2679125659a2119b78f91b403d990e36c096906 [file] [log] [blame]
Per Åstrand87ca5da2021-04-15 09:47:03 +02001/*
2 * Copyright (c) 2021 Arm Limited. All rights reserved.
3 *
4 * This program is free software and is provided to you under the terms of the
5 * GNU General Public License version 2 as published by the Free Software
6 * Foundation, and any use by you of this program is subject to the terms
7 * of such GNU licence.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, you can access it online at
16 * http://www.gnu.org/licenses/gpl-2.0.html.
17 *
18 * SPDX-License-Identifier: GPL-2.0-only
19 */
20
21
22/{
23 /* Example for using reset driver dts entries for Ethos-U */
24 ethosu_reset: sgm775_ethosu_bridge@0x500f0000 {
25 compatible ="arm,ethosu-bridge-reset";
26 #reset-cells = <1>;
27 reg = <0x0 0x500f0000 0x0 0x00001000>;
28 };
29
Per Åstrand2cd53972021-04-12 13:46:04 +020030 /* configuration for the remote proc driver. */
31 ethosu_cpu {
32 #address-cells = <2>;
33 #size-cells = <2>;
34 range;
Per Åstrand9f36f2e2021-09-30 09:57:34 +020035 compatible ="arm,ethosu-rproc";
Per Åstrand2cd53972021-04-12 13:46:04 +020036 reg = <0x0 0x50100000 0x0 0x00100000>,
37 <0x0 0x84000000 0x0 0x00100000>;
38 reg-names = "rom", "shared";
39 resets = <&ethosu_reset 0>;
40 #ethosu,rproc-address-cells = <1>;
41 ethosu,rproc-ranges = <0x0 0x50100000 0x00000000 0x0 0x00100000
42 0x0 0x84000000 0x64000000 0x0 0x00100000>;
43 ethosu,rproc-names = "rom", "shared";
44 };
Per Åstrand87ca5da2021-04-15 09:47:03 +020045};
46