arch/arm/boot/dts/st/stm32f769-disco.dts

Source file repositories/reference/linux-study-clean/arch/arm/boot/dts/st/stm32f769-disco.dts

File Facts

System
Linux kernel
Corpus path
arch/arm/boot/dts/st/stm32f769-disco.dts
Extension
.dts
Size
5574 bytes
Lines
244
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 "stm32f769.dtsi"
#include "stm32f769-pinctrl.dtsi"
#include <dt-bindings/input/input.h>
#include <dt-bindings/gpio/gpio.h>
#include <dt-bindings/leds/common.h>

/ {
	model = "STMicroelectronics STM32F769-DISCO board";
	compatible = "st,stm32f769-disco", "st,stm32f769";

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

	memory@c0000000 {
		device_type = "memory";
		reg = <0xC0000000 0x1000000>;
	};

	reserved-memory {
		#address-cells = <1>;
		#size-cells = <1>;
		ranges;

		linux,dma {
			compatible = "shared-dma-pool";
			linux,dma-default;
			no-map;
			size = <0x100000>;
		};
	};

	aliases {
		serial0 = &usart1;
	};

	leds {
		compatible = "gpio-leds";
		led_usr2: led-usr2 {
			function = LED_FUNCTION_HEARTBEAT;
			color = <LED_COLOR_ID_GREEN>;
			gpios = <&gpioj 5 GPIO_ACTIVE_HIGH>;
			linux,default-trigger = "heartbeat";
		};
		led-usr1 {
			color = <LED_COLOR_ID_RED>;
			gpios = <&gpioj 13 GPIO_ACTIVE_HIGH>;
		};
		led-usr3 {
			color = <LED_COLOR_ID_GREEN>;
			gpios = <&gpioa 12 GPIO_ACTIVE_HIGH>;
		};
	};

	gpio-keys {
		compatible = "gpio-keys";
		autorepeat;
		button-0 {
			label = "User";
			linux,code = <KEY_HOME>;
			gpios = <&gpioa 0 GPIO_ACTIVE_HIGH>;
		};
	};

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

Annotation

Implementation Notes