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 &{/interrupt-controller@50041000}, 14 &{/memory-controller@70019000}, /* SMMU */ 15 &{/timer}; 16 }; 17 18 memory@80000000 { 19 /* 1MiB carveout at 0xa7f00000 for the elfloader's monitor mode hooks */ 20 reg = <0x0 0x80000000 0x0 0x27f00000>; 21 }; 22 23 vm-memory { 24 /* Expose the second gigabyte of RAM as a device untyped. */ 25 reg = <0x0 0xb0000000 0x0 0x40000000>; 26 }; 27}; 28