arch/arm/boot/dts/marvell/kirkwood-cloudbox.dts

Source file repositories/reference/linux-study-clean/arch/arm/boot/dts/marvell/kirkwood-cloudbox.dts

File Facts

System
Linux kernel
Corpus path
arch/arm/boot/dts/marvell/kirkwood-cloudbox.dts
Extension
.dts
Size
1671 bytes
Lines
102
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

// SPDX-License-Identifier: GPL-2.0
/dts-v1/;

#include "kirkwood.dtsi"
#include "kirkwood-6281.dtsi"

/ {
	model = "LaCie CloudBox";
	compatible = "lacie,cloudbox", "marvell,kirkwood-88f6702", "marvell,kirkwood";

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

	chosen {
		bootargs = "console=ttyS0,115200n8";
		stdout-path = &uart0;
	};

	ocp@f1000000 {
		pinctrl: pin-controller@10000 {
			pmx_cloudbox_sata0: pmx-cloudbox-sata0 {
				marvell,pins = "mpp15";
				marvell,function = "sata0";
			};
		};

		serial@12000 {
			status = "okay";
		};

		sata@80000 {
			pinctrl-0 = <&pmx_cloudbox_sata0>;
			pinctrl-names = "default";
			status = "okay";
			nr-ports = <1>;
		};

		spi@10600 {
			status = "okay";

			flash@0 {
				#address-cells = <1>;
				#size-cells = <1>;
				compatible = "mxicy,mx25l4005a", "jedec,spi-nor";
				reg = <0>;
				spi-max-frequency = <20000000>;
				mode = <0>;

				partition@0 {
					reg = <0x0 0x80000>;
					label = "u-boot";
				};
			};
		};
	};

	gpio_keys {
		compatible = "gpio-keys";

		key-power {
			label = "Power push button";
			linux,code = <KEY_POWER>;
			gpios = <&gpio0 16 GPIO_ACTIVE_LOW>;
		};
	};

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

Annotation

Implementation Notes