1/* 2 * Copyright (c) 2023 Microchip Technology Inc 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7/dts-v1/; 8#include <microchip/mpfs.dtsi> 9#include <zephyr/dt-bindings/input/input-event-codes.h> 10#include <mem.h> 11 12/ { 13 model = "beagle,beaglev-fire"; 14 compatible = "beagle,beaglev-fire", "microchip,mpfs"; 15 aliases { 16 }; 17 18 beaglev { 19 #address-cells = <2>; 20 #size-cells = <1>; 21 22 ddr_cached_high: memory@1000000000 { 23 compatible = "mmio-sram"; 24 reg = <0x10 0x00000000 0x80000000>; /* 2GB */ 25 }; 26 }; 27 28 chosen { 29 zephyr,console = &uart0; 30 zephyr,shell-uart = &uart0; 31 zephyr,sram = &ddr_cached_high; 32 }; 33}; 34 35&uart0 { 36 status = "okay"; 37 current-speed = <115200>; 38 clock-frequency = <150000000>; 39}; 40 41&gpio2 { 42 status = "okay"; 43}; 44