You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
1.2 KiB
73 lines
1.2 KiB
/* |
|
* Copyright (c) 2024-2025 Analog Devices, Inc. |
|
* |
|
* SPDX-License-Identifier: Apache-2.0 |
|
*/ |
|
|
|
#include <adi/max32/max32657-pinctrl.dtsi> |
|
#include <zephyr/dt-bindings/gpio/gpio.h> |
|
#include <zephyr/dt-bindings/gpio/adi-max32-gpio.h> |
|
#include <zephyr/dt-bindings/input/input-event-codes.h> |
|
|
|
/ { |
|
model = "Analog Devices MAX32657EVKIT"; |
|
compatible = "adi,max32657evkit"; |
|
|
|
chosen { |
|
zephyr,console = &uart0; |
|
zephyr,shell-uart = &uart0; |
|
}; |
|
|
|
leds { |
|
compatible = "gpio-leds"; |
|
|
|
led1: led_1 { |
|
gpios = <&gpio0 13 GPIO_ACTIVE_HIGH>; |
|
label = "Green LED"; |
|
}; |
|
}; |
|
|
|
buttons { |
|
compatible = "gpio-keys"; |
|
|
|
pb1: pb1 { |
|
gpios = <&gpio0 12 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>; |
|
label = "SW2"; |
|
zephyr,code = <INPUT_KEY_0>; |
|
}; |
|
}; |
|
|
|
/* These aliases are provided for compatibility with samples */ |
|
aliases { |
|
led0 = &led1; |
|
sw0 = &pb1; |
|
watchdog0 = &wdt0; |
|
}; |
|
}; |
|
|
|
&uart0 { |
|
pinctrl-0 = <&uart0_tx_p0_9 &uart0_rx_p0_5>; |
|
pinctrl-names = "default"; |
|
current-speed = <115200>; |
|
data-bits = <8>; |
|
parity = "none"; |
|
status = "okay"; |
|
}; |
|
|
|
&clk_ipo { |
|
status = "okay"; |
|
}; |
|
|
|
&gpio0 { |
|
status = "okay"; |
|
}; |
|
|
|
&wdt0 { |
|
status = "okay"; |
|
}; |
|
|
|
&spi0 { |
|
status = "okay"; |
|
pinctrl-0 = <&spi0_mosi_p0_2 &spi0_miso_p0_4 &spi0_sck_p0_6 &spi0_ss0_p0_3>; |
|
pinctrl-names = "default"; |
|
};
|
|
|