|
| 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_am243x_r5.dtsi> |
| 10 | +#include "am243x_evm_am2434_r5f0_0-pinctrl.dtsi" |
| 11 | + |
| 12 | +/ { |
| 13 | + model = "TI AM243x AM2434 R5"; |
| 14 | + compatible = "ti,am2434"; |
| 15 | + |
| 16 | + chosen { |
| 17 | + zephyr,sram = &sram; |
| 18 | + zephyr,sram1 = &btcm; |
| 19 | + zephyr,console = &uart0; |
| 20 | + zephyr,shell-uart = &uart0; |
| 21 | + }; |
| 22 | + |
| 23 | + aliases { |
| 24 | + led0 = &ld26; |
| 25 | + }; |
| 26 | + |
| 27 | + leds: leds { |
| 28 | + compatible = "gpio-leds"; |
| 29 | + |
| 30 | + ld26: led_0 { |
| 31 | + gpios = <&mcu_gpio0 5 GPIO_ACTIVE_HIGH>; |
| 32 | + }; |
| 33 | + }; |
| 34 | + |
| 35 | + rsc_table: memory@a0100000 { |
| 36 | + compatible = "zephyr,memory-region", "mmio-sram"; |
| 37 | + reg = <0xa0100000 DT_SIZE_M(1)>; |
| 38 | + zephyr,memory-region = "RSC_TABLE"; |
| 39 | + zephyr,memory-attr = <( DT_MEM_ARM(ATTR_MPU_RAM) )>; |
| 40 | + }; |
| 41 | +}; |
| 42 | + |
| 43 | +&uart0 { |
| 44 | + status = "okay"; |
| 45 | + pinctrl-0 = <&uart0_tx &uart0_rx>; |
| 46 | + pinctrl-names = "default"; |
| 47 | + current-speed = <115200>; |
| 48 | +}; |
| 49 | + |
| 50 | +&mcu_gpio0 { |
| 51 | + pinctrl-0 = <&mcu_gpio0_led>; |
| 52 | + pinctrl-names = "default"; |
| 53 | + status = "okay"; |
| 54 | +}; |
| 55 | + |
| 56 | +&i2c0 { |
| 57 | + pinctrl-0 = <&i2c0_scl &i2c0_sda>; |
| 58 | + pinctrl-names = "default"; |
| 59 | + status = "okay"; |
| 60 | +}; |
0 commit comments