|
| 1 | +/* Copyright (c) 2025 Texas Instruments Incorporated |
| 2 | + * |
| 3 | + * SPDX-License-Identifier: Apache-2.0 |
| 4 | + */ |
| 5 | + |
| 6 | +/dts-v1/; |
| 7 | + |
| 8 | +#include <zephyr/dt-bindings/gpio/gpio.h> |
| 9 | +#include <ti/am64x_r5.dtsi> |
| 10 | +#include "am243x_evm_am2434_r5f0_0-pinctrl.dtsi" |
| 11 | + |
| 12 | +/ { |
| 13 | + model = "TI AM243x EVM R50 Core 0"; |
| 14 | + compatible = "ti,am243x-evm-r5"; |
| 15 | + |
| 16 | + chosen { |
| 17 | + zephyr,sram = &sram; |
| 18 | + zephyr,sram1 = &atcm; |
| 19 | + zephyr,console = &uart0; |
| 20 | + zephyr,shell-uart = &uart0; |
| 21 | + zephyr,ipc = &ipc0; |
| 22 | + zephyr,ipc-shm = &ipc_shm0; |
| 23 | + }; |
| 24 | + |
| 25 | + aliases { |
| 26 | + led0 = &ld26; |
| 27 | + }; |
| 28 | + |
| 29 | + leds: leds { |
| 30 | + compatible = "gpio-leds"; |
| 31 | + |
| 32 | + ld26: led_0 { |
| 33 | + gpios = <&mcu_gpio0 5 GPIO_ACTIVE_HIGH>; |
| 34 | + }; |
| 35 | + }; |
| 36 | + |
| 37 | + rsc_table: memory@a0100000 { |
| 38 | + compatible = "zephyr,memory-region", "mmio-sram"; |
| 39 | + reg = <0xa0100000 DT_SIZE_K(4)>; |
| 40 | + zephyr,memory-region = "RSC_TABLE"; |
| 41 | + zephyr,memory-attr = <( DT_MEM_ARM(ATTR_MPU_RAM) )>; |
| 42 | + }; |
| 43 | + |
| 44 | + ipc_shm0: memory@a5000000 { |
| 45 | + compatible = "zephyr,memory-region", "mmio-sram"; |
| 46 | + reg = <0xa5000000 DT_SIZE_M(8)>; |
| 47 | + zephyr,memory-region = "IPC_SHM"; |
| 48 | + zephyr,memory-attr = <( DT_MEM_ARM(ATTR_MPU_IO) )>; |
| 49 | + }; |
| 50 | + |
| 51 | + ipc0: ipc { |
| 52 | + compatible = "zephyr,mbox-ipm"; |
| 53 | + mboxes = <&mbox6 0>, <&mbox6 1>; |
| 54 | + mbox-names = "rx", "tx"; |
| 55 | + }; |
| 56 | +}; |
| 57 | + |
| 58 | +/* system timer */ |
| 59 | +&timer8 { |
| 60 | + status = "okay"; |
| 61 | +}; |
| 62 | + |
| 63 | +&uart0 { |
| 64 | + status = "okay"; |
| 65 | + pinctrl-0 = <&uart0_tx &uart0_rx>; |
| 66 | + pinctrl-names = "default"; |
| 67 | + current-speed = <115200>; |
| 68 | +}; |
| 69 | + |
| 70 | +&mcu_gpio0 { |
| 71 | + pinctrl-0 = <&mcu_gpio0_led>; |
| 72 | + pinctrl-names = "default"; |
| 73 | + status = "okay"; |
| 74 | +}; |
| 75 | + |
| 76 | +&i2c0 { |
| 77 | + pinctrl-0 = <&i2c0_scl &i2c0_sda>; |
| 78 | + pinctrl-names = "default"; |
| 79 | + status = "okay"; |
| 80 | +}; |
| 81 | + |
| 82 | +&mbox6 { |
| 83 | + usr-id = <0>; |
| 84 | + status = "okay"; |
| 85 | +}; |
0 commit comments