arch/arm64/boot/dts/freescale/imx8mn-vhip4-evalboard-v2.dts

Source file repositories/reference/linux-study-clean/arch/arm64/boot/dts/freescale/imx8mn-vhip4-evalboard-v2.dts

File Facts

System
Linux kernel
Corpus path
arch/arm64/boot/dts/freescale/imx8mn-vhip4-evalboard-v2.dts
Extension
.dts
Size
4633 bytes
Lines
222
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 MIT)
/*
 * Copyright 2024 Fedor Ross <fedor.ross@ifm.com>
 */

/dts-v1/;

#include "imx8mn-vhip4-evalboard-common.dtsi"

/ {
	model = "ifm i.MX8MNano VHIP4 Evaluation Board v2";
	compatible = "ifm,imx8mn-vhip4-evalboard-v2", "ifm,imx8mn-vhip4-evalboard",
		     "ifm,imx8mn-vhip4", "fsl,imx8mn";

	multi-led {
		compatible = "leds-group-multicolor";
		color = <LED_COLOR_ID_RGB>;
		function = LED_FUNCTION_INDICATOR;
		leds = <&rgb_0>, <&rgb_1>, <&rgb_2>;
	};
};

&ifm_led {
	pinctrl-1 = <&pinctrl_gpio_led_v2>;

	rgb_0: rgb-led-red {
		color = <LED_COLOR_ID_RED>;
		gpios = <&gpio2 17 GPIO_ACTIVE_HIGH>;
		default-state = "keep";
	};

	rgb_1: rgb-led-green {
		color = <LED_COLOR_ID_GREEN>;
		gpios = <&gpio2 19 GPIO_ACTIVE_HIGH>;
		default-state = "keep";
	};

	rgb_2: rgb-led-blue {
		color = <LED_COLOR_ID_BLUE>;
		gpios = <&gpio2 20 GPIO_ACTIVE_HIGH>;
		default-state = "keep";
	};
};

&ecspi1 {
	cs-gpios = <&gpio5 9 GPIO_ACTIVE_LOW>, <&gpio1 11 GPIO_ACTIVE_LOW>;
	status = "okay";

	eeprom@0 {
		compatible = "fujitsu,mb85rs64", "atmel,at25";
		reg = <0>;
		spi-max-frequency = <20000000>;
		spi-cpha;
		spi-cpol;
		pagesize = <1>;
		size = <32768>;
		address-width = <16>;
	};
};

&ecspi3 {
	cs-gpios = <&gpio5 25 GPIO_ACTIVE_LOW>;
	status = "okay";

	can0: can@0 {
		compatible = "microchip,mcp2518fd";
		pinctrl-names = "default";
		pinctrl-0 = <&pinctrl_mcp2518>;
		reg = <0>;
		clocks = <&can_clk40m>;

Annotation

Implementation Notes