1/*
2 * Copyright (c) 2020 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_M(2048)
12
13#include <elkhart_lake.dtsi>
14
15&uart2 {
16	status = "disabled";
17};
18
19&uart2_fixed {
20	status = "okay";
21};
22
23/ {
24	model = "ehl_crb";
25	compatible = "intel,elkhart_lake_crb_sbl";
26
27	chosen {
28		zephyr,sram = &dram0;
29		zephyr,console = &uart2_fixed;
30		zephyr,shell-uart = &uart2_fixed;
31	};
32};
33