arch/arm64/boot/dts/marvell/armada-3720-gl-mv1000.dts

Source file repositories/reference/linux-study-clean/arch/arm64/boot/dts/marvell/armada-3720-gl-mv1000.dts

File Facts

System
Linux kernel
Corpus path
arch/arm64/boot/dts/marvell/armada-3720-gl-mv1000.dts
Extension
.dts
Size
3777 bytes
Lines
233
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 MIT)

/dts-v1/;
#include <dt-bindings/gpio/gpio.h>
#include <dt-bindings/input/input.h>
#include "armada-372x.dtsi"

/ {
	model = "GL.iNet GL-MV1000";
	compatible = "glinet,gl-mv1000", "marvell,armada3720", "marvell,armada3710";

	aliases {
		led-boot = &led_power;
		led-failsafe = &led_power;
		led-running = &led_power;
		led-upgrade = &led_power;
	};

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

	memory@0 {
		device_type = "memory";
		reg = <0x00000000 0x00000000 0x00000000 0x20000000>;
	};

	vcc_sd_reg1: regulator {
		compatible = "regulator-fixed";
		regulator-name = "vcc_sd1";
		regulator-min-microvolt = <3300000>;
		regulator-max-microvolt = <3300000>;
		regulator-boot-on;
	};

	keys {
		compatible = "gpio-keys";

		button-reset {
			label = "reset";
			linux,code = <KEY_RESTART>;
			gpios = <&gpionb 14 GPIO_ACTIVE_LOW>;
		};

		switch {
			label = "switch";
			linux,code = <BTN_0>;
			gpios = <&gpiosb 22 GPIO_ACTIVE_LOW>;
		};
	};

	leds {
		compatible = "gpio-leds";

		led-vpn {
			label = "green:vpn";
			gpios = <&gpionb 11 GPIO_ACTIVE_LOW>;
		};

		led-wan {
			label = "green:wan";
			gpios = <&gpionb 12 GPIO_ACTIVE_LOW>;
		};

		led_power: led-power {
			label = "green:power";
			gpios = <&gpionb 13 GPIO_ACTIVE_LOW>;
			default-state = "on";
		};
	};

Annotation

Implementation Notes