mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-06 14:56:46 +00:00
This will help distinguish 64 and 32-bit platforms by tooling, following the pattern visible in e.g. RISC-V. Signed-off-by: Piotr Zierhoffer <pzierhoffer@antmicro.com> Signed-off-by: Mateusz Hołenko <mholenko@antmicro.com>
29 lines
335 B
Plaintext
29 lines
335 B
Plaintext
/*
|
|
* Copyright (c) 2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
#include <mem.h>
|
|
|
|
#define DT_DRAM_SIZE DT_SIZE_M(2048)
|
|
|
|
#include <intel/alder_lake.dtsi>
|
|
|
|
/ {
|
|
chosen {
|
|
zephyr,sram = &dram0;
|
|
};
|
|
|
|
aliases {
|
|
watchdog0 = &tco_wdt;
|
|
sdhc0 = &emmc;
|
|
};
|
|
};
|
|
|
|
&cpu {
|
|
compatible = "intel,x86_64";
|
|
};
|