1/* 2 * Copyright (c) 2024 MAKEEN Energy A/S 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7/* Follow the board's documentation to modify the Linux DT accordingly */ 8 9/ { 10 11 chosen { 12 /* Use OCRAM 128kB because TCM 32kB is too small for the sample */ 13 zephyr,flash = &ocram_code; 14 zephyr,ipc_shm = &ddr_shm; 15 zephyr,ipc = &mub; 16 }; 17 18 ddr_shm: memory1@90000000 { 19 compatible = "mmio-sram"; 20 /* use DDR_SYS area as mmio, 0x90000000 0x10000 */ 21 reg = <0x90000000 0x10000>; 22 status = "okay"; 23 }; 24}; 25 26&mub { 27 status = "okay"; 28}; 29