1/* 2 * Copyright (c) 2019 Intel Corporation 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7/dts-v1/; 8 9#include <mem.h> 10 11#define DT_DRAM_SIZE DT_SIZE_K(8192) 12#define DT_DRAM_BASE 0 13 14#include <ia32.dtsi> 15 16/ { 17 model = "ACRN"; 18 compatible = "acrn"; 19 20 aliases { 21 uart-0 = &uart0; 22 uart-1 = &uart1; 23 }; 24 25 chosen { 26 zephyr,sram = &dram0; 27 zephyr,console = &uart0; 28 zephyr,shell-uart = &uart0; 29 }; 30}; 31 32&uart0 { 33 status = "okay"; 34 current-speed = <115200>; 35}; 36 37&uart1 { 38 status = "okay"; 39 current-speed = <115200>; 40}; 41