1/*
2 * Copyright (c) 2020 Nordic Semiconductor ASA
3 * Copyright (c) 2020 Intel Corporation
4 *
5 * SPDX-License-Identifier: Apache-2.0
6 *
7 * Application overlay for creating a fake device instance we
8 * can use to test DEVICE_MMIO APIs, which get raw data about
9 * memory ranges from DTS instances.
10 *
11 * Names in this file should be chosen in a way that won't conflict
12 * with real-world devicetree nodes, to allow these tests to run on
13 * (and be extended to test) real hardware.
14 */
15
16/ {
17	fakedriver@E0000000 {
18		compatible = "fakedriver";
19		reg = <0xE0000000 0x2000>;
20		status = "okay";
21	};
22	fakedriver@E1000000 {
23		compatible = "fakedriver";
24		reg = <0xE1000000 0x2000>;
25		status = "okay";
26	};
27	fakedriver@E2000000 {
28		compatible = "fakedriver";
29		reg = <0xE2000000 0x2000>;
30		status = "okay";
31	};
32	fakedriver@E3000000 {
33		compatible = "fakedriver";
34		reg = <0xE3000000 0x2000>;
35		status = "okay";
36	};
37	fakedriver@E4000000 {
38		compatible = "fakedriver";
39		reg = <0xE4000000 0x2000>;
40		status = "okay";
41	};
42};
43