1/*
2 * Copyright 2020, Data61, CSIRO (ABN 41 687 119 230)
3 *
4 * SPDX-License-Identifier: GPL-2.0-only
5 */
6
7/ {
8	chosen {
9		seL4,elfloader-devices =
10		    "serial0";
11		seL4,kernel-devices =
12		    "serial0",
13		    &{/soc/interrupt-controller@31001000},
14		    &{/timer};
15	};
16	/* Upstream bug: the memory node doesn't have a device_type,
17	 * but there is an empty memory node with a device_type. */
18	/delete-node/ memory;
19	memory@80000000 {
20		device_type = "memory";
21		/* seL4 only uses the first gigabyte? */
22		reg = < 0x80000000 0x40000000 >;
23	};
24};
25