arch/arm64/boot/dts/st/stm32mp257f-ev1.dts

Source file repositories/reference/linux-study-clean/arch/arm64/boot/dts/st/stm32mp257f-ev1.dts

File Facts

System
Linux kernel
Corpus path
arch/arm64/boot/dts/st/stm32mp257f-ev1.dts
Extension
.dts
Size
10825 bytes
Lines
537
Domain
Architecture Layer
Bucket
arch/arm64
Inferred role
Architecture Layer: configuration, schema, or hardware description
Status
atlas-only

Why This File Exists

CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.

Dependency Surface

Detected Declarations

Annotated Snippet

// SPDX-License-Identifier: (GPL-2.0-or-later OR BSD-3-Clause)
/*
 * Copyright (C) STMicroelectronics 2023 - All Rights Reserved
 * Author: Alexandre Torgue <alexandre.torgue@foss.st.com> for STMicroelectronics.
 */

/dts-v1/;

#include <dt-bindings/gpio/gpio.h>
#include <dt-bindings/leds/common.h>
#include <dt-bindings/regulator/st,stm32mp25-regulator.h>
#include "stm32mp257.dtsi"
#include "stm32mp25xf.dtsi"
#include "stm32mp25-pinctrl.dtsi"
#include "stm32mp25xxai-pinctrl.dtsi"

/ {
	model = "STMicroelectronics STM32MP257F-EV1 Evaluation Board";
	compatible = "st,stm32mp257f-ev1", "st,stm32mp257";

	aliases {
		ethernet0 = &ethernet2;
		ethernet1 = &ethernet1;
		serial0 = &usart2;
		serial1 = &usart6;
	};

	chosen {
		stdout-path = "serial0:115200n8";
	};

	clocks {
		clk_ext_camera: clk-ext-camera {
			#clock-cells = <0>;
			compatible = "fixed-clock";
			clock-frequency = <24000000>;
		};

		pad_clk: pad-clk {
			#clock-cells = <0>;
			compatible = "fixed-clock";
			clock-frequency = <100000000>;
		};
	};

	gpio-leds {
		compatible = "gpio-leds";

		led_blue: led-blue {
			function = LED_FUNCTION_HEARTBEAT;
			color = <LED_COLOR_ID_BLUE>;
			gpios = <&gpioj 7 GPIO_ACTIVE_HIGH>;
			linux,default-trigger = "heartbeat";
			default-state = "off";
		};

		led-green {
			color = <LED_COLOR_ID_GREEN>;
			gpios = <&gpiod 8 GPIO_ACTIVE_HIGH>;
		};

		led-orange {
			color = <LED_COLOR_ID_ORANGE>;
			gpios = <&gpioj 6 GPIO_ACTIVE_HIGH>;
		};
	};

	ddr_channel: sdram-channel-0 {
		#address-cells = <1>;
		#size-cells = <0>;

Annotation

Implementation Notes