1/* 2 * Copyright (c) 2025 Intel Corporation 3 * SPDX-License-Identifier: Apache-2.0 4 */ 5 6/dts-v1/; 7 8#include <mem.h> 9 10#define DT_DRAM_SIZE DT_SIZE_M(2048) 11 12#include <intel/panther_lake_h.dtsi> 13 14/ { 15 model = "intel_ptl_h_crb"; 16 compatible = "intel,panther-lake-crb"; 17 18 chosen { 19 zephyr,sram = &dram0; 20 zephyr,console = &uart_ec_0; 21 zephyr,shell-uart = &uart_ec_0; 22 }; 23 24 aliases { 25 watchdog0 = &tco_wdt; 26 rtc = &rtc; 27 i2c-0 = &i2c0; 28 }; 29}; 30 31&uart_ec_0 { 32 status = "okay"; 33}; 34 35&rtc { 36 status = "okay"; 37}; 38 39&smbus0 { 40 status = "okay"; 41}; 42 43&tco_wdt { 44 status = "okay"; 45}; 46