arch/arm/boot/dts/st/stm32h743i-eval.dts

Source file repositories/reference/linux-study-clean/arch/arm/boot/dts/st/stm32h743i-eval.dts

File Facts

System
Linux kernel
Corpus path
arch/arm/boot/dts/st/stm32h743i-eval.dts
Extension
.dts
Size
4690 bytes
Lines
186
Domain
Architecture Layer
Bucket
arch/arm
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

/dts-v1/;
#include "stm32h743.dtsi"
#include "stm32h7-pinctrl.dtsi"
#include <dt-bindings/gpio/gpio.h>
#include <dt-bindings/leds/common.h>

/ {
	model = "STMicroelectronics STM32H743i-EVAL board";
	compatible = "st,stm32h743i-eval", "st,stm32h743";

	chosen {
		bootargs = "root=/dev/ram";
		stdout-path = "serial0:115200n8";
	};

	memory@d0000000 {
		device_type = "memory";
		reg = <0xd0000000 0x2000000>;
	};

	aliases {
		serial0 = &usart1;
	};

	led {
		compatible = "gpio-leds";
		led_green: led-green {
			function = LED_FUNCTION_HEARTBEAT;
			color = <LED_COLOR_ID_GREEN>;
			gpios = <&gpiof 10 GPIO_ACTIVE_LOW>;
			linux,default-trigger = "heartbeat";
			default-state = "off";
		};

		led-red {
			color = <LED_COLOR_ID_RED>;
			gpios = <&gpioa 4 GPIO_ACTIVE_LOW>;
		};
	};

	options {
		u-boot {
			compatible = "u-boot,config";
			boot-led = <&led_green>;
		};
	};

	vdda: regulator-vdda {
		compatible = "regulator-fixed";
		regulator-name = "vdda";
		regulator-min-microvolt = <3300000>;
		regulator-max-microvolt = <3300000>;
		regulator-always-on;
	};

	v2v9_sd: regulator-v2v9_sd {
		compatible = "regulator-fixed";
		regulator-name = "v2v9_sd";
		regulator-min-microvolt = <2900000>;
		regulator-max-microvolt = <2900000>;
		regulator-always-on;
	};

	usbotg_hs_phy: usb-phy {
		#phy-cells = <0>;
		compatible = "usb-nop-xceiv";
		clocks = <&rcc USB1ULPI_CK>;
		clock-names = "main_clk";
	};
};

Annotation

Implementation Notes